@import url("https://fonts.googleapis.com/css?family=Maven+Pro:400,500,900&subset=latin-ext");
/* #1: Declare variables
--------------------------------------------------------- */
/* width to begin showing full menu */
/* #2: Original CSS from Codrops article
--------------------------------------------------------- */
/* Common styles of menus */
#header {
  position: absolute;
  width: 100%;
  top: 15px;
  z-index: 99;
  /*max-width: 1600px;*/
  margin: auto;
  left: 0;
  right: 0; }
  #header.active {
    position: fixed;
    z-index: 9999;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background-color: #fff; }
    #header.active .logoimg {
      height: 60px;
      position: relative;
      top: -4px; }
  #header.top {
    top: 0 !important;
    -webkit-transition: top .5s;
    -moz-transition: top .5s;
    -o-transition: top .5s;
    transition: top .5s; }

.dl-menuwrapper {
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  perspective: 1000px;
  -webkit-perspective-origin: 50% 200%;
  -moz-perspective-origin: 50% 200%;
  perspective-origin: 50% 200%; }

.dl-menuwrapper button {
  border: none;
  overflow: hidden;
  cursor: pointer;
  outline: none; }

.dl-menuwrapper ul {
  padding: 0;
  list-style: none;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.dl-menuwrapper li {
  position: relative; }

.dl-menuwrapper li a {
  display: block;
  position: relative;
  outline: none; }

.no-touch .dl-menuwrapper li a:hover {
  background: rgba(255, 248, 213, 0.1); }

.dl-menuwrapper li.dl-back > a {
  background: rgba(0, 0, 0, 0.2); }

.dl-menuwrapper li.dl-back > a:after,
.dl-menuwrapper li > a:not(:only-child):after {
  position: absolute;
  content: '>';
  speak: none;
  -webkit-font-smoothing: antialiased; }

.dl-menuwrapper li.dl-back > a:after {
  left: 10px;
  right: auto;
  color: white;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg); }

.dl-menuwrapper li > a:after {
  right: 10px;
  color: white; }

.dl-menuwrapper .dl-menu {
  margin: 0;
  position: absolute;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #fff;
  top: 50px; }

.dl-menuwrapper .dl-menu.dl-menu-toggle {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.dl-menuwrapper .dl-menu.dl-menuopen {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px); }

/* Hide the inner submenus */
.dl-menuwrapper li .dl-submenu {
  display: none; }

/*
When a submenu is openend, we will hide all li siblings.
For that we give a class to the parent menu called "dl-subview".
We also hide the submenu link.
The opened submenu will get the class "dl-subviewopen".
All this is done for any sub-level being entered.
*/
.dl-menu.dl-subview li,
.dl-menu.dl-subview li.dl-subviewopen > a,
.dl-menu.dl-subview li.dl-subview > a {
  display: none; }

.dl-menu.dl-subview li.dl-subview,
.dl-menu.dl-subview li.dl-subview .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
  display: block; }

/* Dynamically added submenu outside of the menu context */
.dl-menuwrapper > .dl-submenu {
  position: absolute;
  width: 100%;
  top: 50px;
  left: 0;
  margin: 0; }

/* Animation classes for moving out and in */
.dl-menu.dl-animate-out-1 {
  -webkit-animation: MenuAnimOut1 0.4s;
  -moz-animation: MenuAnimOut1 0.4s;
  animation: MenuAnimOut1 0.4s; }

.dl-menu.dl-animate-out-2 {
  -webkit-animation: MenuAnimOut2 0.3s ease-in-out;
  -moz-animation: MenuAnimOut2 0.3s ease-in-out;
  animation: MenuAnimOut2 0.3s ease-in-out; }

.dl-menu.dl-animate-out-3 {
  -webkit-animation: MenuAnimOut3 0.4s ease;
  -moz-animation: MenuAnimOut3 0.4s ease;
  animation: MenuAnimOut3 0.4s ease; }

.dl-menu.dl-animate-out-4 {
  -webkit-animation: MenuAnimOut4 0.4s ease;
  -moz-animation: MenuAnimOut4 0.4s ease;
  animation: MenuAnimOut4 0.4s ease; }

.dl-menu.dl-animate-out-5 {
  -webkit-animation: MenuAnimOut5 0.4s ease;
  -moz-animation: MenuAnimOut5 0.4s ease;
  animation: MenuAnimOut5 0.4s ease; }

@-webkit-keyframes MenuAnimOut1 {
  50% {
    -webkit-transform: translateZ(-250px) rotateY(30deg); }
  75% {
    -webkit-transform: translateZ(-372.5px) rotateY(15deg);
    opacity: .5; }
  100% {
    -webkit-transform: translateZ(-500px) rotateY(0deg);
    opacity: 0; } }
@-webkit-keyframes MenuAnimOut2 {
  100% {
    -webkit-transform: translateX(-100%);
    opacity: 0; } }
@-webkit-keyframes MenuAnimOut3 {
  100% {
    -webkit-transform: translateZ(300px);
    opacity: 0; } }
@-webkit-keyframes MenuAnimOut4 {
  100% {
    -webkit-transform: translateZ(-300px);
    opacity: 0; } }
@-webkit-keyframes MenuAnimOut5 {
  100% {
    -webkit-transform: translateY(40%);
    opacity: 0; } }
@-moz-keyframes MenuAnimOut1 {
  50% {
    -moz-transform: translateZ(-250px) rotateY(30deg); }
  75% {
    -moz-transform: translateZ(-372.5px) rotateY(15deg);
    opacity: .5; }
  100% {
    -moz-transform: translateZ(-500px) rotateY(0deg);
    opacity: 0; } }
@-moz-keyframes MenuAnimOut2 {
  100% {
    -moz-transform: translateX(-100%);
    opacity: 0; } }
@-moz-keyframes MenuAnimOut3 {
  100% {
    -moz-transform: translateZ(300px);
    opacity: 0; } }
@-moz-keyframes MenuAnimOut4 {
  100% {
    -moz-transform: translateZ(-300px);
    opacity: 0; } }
@-moz-keyframes MenuAnimOut5 {
  100% {
    -moz-transform: translateY(40%);
    opacity: 0; } }
@keyframes MenuAnimOut1 {
  50% {
    transform: translateZ(-250px) rotateY(30deg); }
  75% {
    transform: translateZ(-372.5px) rotateY(15deg);
    opacity: .5; }
  100% {
    transform: translateZ(-500px) rotateY(0deg);
    opacity: 0; } }
@keyframes MenuAnimOut2 {
  100% {
    transform: translateX(-100%);
    opacity: 0; } }
@keyframes MenuAnimOut3 {
  100% {
    transform: translateZ(300px);
    opacity: 0; } }
@keyframes MenuAnimOut4 {
  100% {
    transform: translateZ(-300px);
    opacity: 0; } }
@keyframes MenuAnimOut5 {
  100% {
    transform: translateY(40%);
    opacity: 0; } }
.dl-menu.dl-animate-in-1 {
  -webkit-animation: MenuAnimIn1 0.3s;
  -moz-animation: MenuAnimIn1 0.3s;
  animation: MenuAnimIn1 0.3s; }

.dl-menu.dl-animate-in-2 {
  -webkit-animation: MenuAnimIn2 0.3s ease-in-out;
  -moz-animation: MenuAnimIn2 0.3s ease-in-out;
  animation: MenuAnimIn2 0.3s ease-in-out; }

.dl-menu.dl-animate-in-3 {
  -webkit-animation: MenuAnimIn3 0.4s ease;
  -moz-animation: MenuAnimIn3 0.4s ease;
  animation: MenuAnimIn3 0.4s ease; }

.dl-menu.dl-animate-in-4 {
  -webkit-animation: MenuAnimIn4 0.4s ease;
  -moz-animation: MenuAnimIn4 0.4s ease;
  animation: MenuAnimIn4 0.4s ease; }

.dl-menu.dl-animate-in-5 {
  -webkit-animation: MenuAnimIn5 0.4s ease;
  -moz-animation: MenuAnimIn5 0.4s ease;
  animation: MenuAnimIn5 0.4s ease; }

@-webkit-keyframes MenuAnimIn1 {
  0% {
    -webkit-transform: translateZ(-500px) rotateY(0deg);
    opacity: 0; }
  20% {
    -webkit-transform: translateZ(-250px) rotateY(30deg);
    opacity: 0.5; }
  100% {
    -webkit-transform: translateZ(0px) rotateY(0deg);
    opacity: 1; } }
@-webkit-keyframes MenuAnimIn2 {
  0% {
    -webkit-transform: translateX(-100%);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0px);
    opacity: 1; } }
@-webkit-keyframes MenuAnimIn3 {
  0% {
    -webkit-transform: translateZ(300px);
    opacity: 0; }
  100% {
    -webkit-transform: translateZ(0px);
    opacity: 1; } }
@-webkit-keyframes MenuAnimIn4 {
  0% {
    -webkit-transform: translateZ(-300px);
    opacity: 0; }
  100% {
    -webkit-transform: translateZ(0px);
    opacity: 1; } }
@-webkit-keyframes MenuAnimIn5 {
  0% {
    -webkit-transform: translateY(40%);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1; } }
@-moz-keyframes MenuAnimIn1 {
  0% {
    -moz-transform: translateZ(-500px) rotateY(0deg);
    opacity: 0; }
  20% {
    -moz-transform: translateZ(-250px) rotateY(30deg);
    opacity: 0.5; }
  100% {
    -moz-transform: translateZ(0px) rotateY(0deg);
    opacity: 1; } }
@-moz-keyframes MenuAnimIn2 {
  0% {
    -moz-transform: translateX(-100%);
    opacity: 0; }
  100% {
    -moz-transform: translateX(0px);
    opacity: 1; } }
@-moz-keyframes MenuAnimIn3 {
  0% {
    -moz-transform: translateZ(300px);
    opacity: 0; }
  100% {
    -moz-transform: translateZ(0px);
    opacity: 1; } }
@-moz-keyframes MenuAnimIn4 {
  0% {
    -moz-transform: translateZ(-300px);
    opacity: 0; }
  100% {
    -moz-transform: translateZ(0px);
    opacity: 1; } }
@-moz-keyframes MenuAnimIn5 {
  0% {
    -moz-transform: translateY(40%);
    opacity: 0; }
  100% {
    -moz-transform: translateY(0);
    opacity: 1; } }
@keyframes MenuAnimIn1 {
  0% {
    transform: translateZ(-500px) rotateY(0deg);
    opacity: 0; }
  20% {
    transform: translateZ(-250px) rotateY(30deg);
    opacity: 0.5; }
  100% {
    transform: translateZ(0px) rotateY(0deg);
    opacity: 1; } }
@keyframes MenuAnimIn2 {
  0% {
    transform: translateX(-100%);
    opacity: 0; }
  100% {
    transform: translateX(0px);
    opacity: 1; } }
@keyframes MenuAnimIn3 {
  0% {
    transform: translateZ(300px);
    opacity: 0; }
  100% {
    transform: translateZ(0px);
    opacity: 1; } }
@keyframes MenuAnimIn4 {
  0% {
    transform: translateZ(-300px);
    opacity: 0; }
  100% {
    transform: translateZ(0px);
    opacity: 1; } }
@keyframes MenuAnimIn5 {
  0% {
    transform: translateY(40%);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }
.dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
  -webkit-animation: SubMenuAnimIn1 0.4s ease;
  -moz-animation: SubMenuAnimIn1 0.4s ease;
  animation: SubMenuAnimIn1 0.4s ease; }

.dl-menuwrapper > .dl-submenu.dl-animate-in-2 {
  -webkit-animation: SubMenuAnimIn2 0.3s ease-in-out;
  -moz-animation: SubMenuAnimIn2 0.3s ease-in-out;
  animation: SubMenuAnimIn2 0.3s ease-in-out; }

.dl-menuwrapper > .dl-submenu.dl-animate-in-3 {
  -webkit-animation: SubMenuAnimIn3 0.4s ease;
  -moz-animation: SubMenuAnimIn3 0.4s ease;
  animation: SubMenuAnimIn3 0.4s ease; }

.dl-menuwrapper > .dl-submenu.dl-animate-in-4 {
  -webkit-animation: SubMenuAnimIn4 0.4s ease;
  -moz-animation: SubMenuAnimIn4 0.4s ease;
  animation: SubMenuAnimIn4 0.4s ease; }

.dl-menuwrapper > .dl-submenu.dl-animate-in-5 {
  -webkit-animation: SubMenuAnimIn5 0.4s ease;
  -moz-animation: SubMenuAnimIn5 0.4s ease;
  animation: SubMenuAnimIn5 0.4s ease; }

@-webkit-keyframes SubMenuAnimIn1 {
  0% {
    -webkit-transform: translateX(50%);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0px);
    opacity: 1; } }
@-webkit-keyframes SubMenuAnimIn2 {
  0% {
    -webkit-transform: translateX(100%);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0px);
    opacity: 1; } }
@-webkit-keyframes SubMenuAnimIn3 {
  0% {
    -webkit-transform: translateZ(-300px);
    opacity: 0; }
  100% {
    -webkit-transform: translateZ(0px);
    opacity: 1; } }
@-webkit-keyframes SubMenuAnimIn4 {
  0% {
    -webkit-transform: translateZ(300px);
    opacity: 0; }
  100% {
    -webkit-transform: translateZ(0px);
    opacity: 1; } }
@-webkit-keyframes SubMenuAnimIn5 {
  0% {
    -webkit-transform: translateZ(-200px);
    opacity: 0; }
  100% {
    -webkit-transform: translateZ(0);
    opacity: 1; } }
@-moz-keyframes SubMenuAnimIn1 {
  0% {
    -moz-transform: translateX(50%);
    opacity: 0; }
  100% {
    -moz-transform: translateX(0px);
    opacity: 1; } }
@-moz-keyframes SubMenuAnimIn2 {
  0% {
    -moz-transform: translateX(100%);
    opacity: 0; }
  100% {
    -moz-transform: translateX(0px);
    opacity: 1; } }
@-moz-keyframes SubMenuAnimIn3 {
  0% {
    -moz-transform: translateZ(-300px);
    opacity: 0; }
  100% {
    -moz-transform: translateZ(0px);
    opacity: 1; } }
@-moz-keyframes SubMenuAnimIn4 {
  0% {
    -moz-transform: translateZ(300px);
    opacity: 0; }
  100% {
    -moz-transform: translateZ(0px);
    opacity: 1; } }
@-moz-keyframes SubMenuAnimIn5 {
  0% {
    -moz-transform: translateZ(-200px);
    opacity: 0; }
  100% {
    -moz-transform: translateZ(0);
    opacity: 1; } }
@keyframes SubMenuAnimIn1 {
  0% {
    transform: translateX(50%);
    opacity: 0; }
  100% {
    transform: translateX(0px);
    opacity: 1; } }
@keyframes SubMenuAnimIn2 {
  0% {
    transform: translateX(100%);
    opacity: 0; }
  100% {
    transform: translateX(0px);
    opacity: 1; } }
@keyframes SubMenuAnimIn3 {
  0% {
    transform: translateZ(-300px);
    opacity: 0; }
  100% {
    transform: translateZ(0px);
    opacity: 1; } }
@keyframes SubMenuAnimIn4 {
  0% {
    transform: translateZ(300px);
    opacity: 0; }
  100% {
    transform: translateZ(0px);
    opacity: 1; } }
@keyframes SubMenuAnimIn5 {
  0% {
    transform: translateZ(-200px);
    opacity: 0; }
  100% {
    transform: translateZ(0);
    opacity: 1; } }
.dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
  -webkit-animation: SubMenuAnimOut1 0.4s ease;
  -moz-animation: SubMenuAnimOut1 0.4s ease;
  animation: SubMenuAnimOut1 0.4s ease; }

.dl-menuwrapper > .dl-submenu.dl-animate-out-2 {
  -webkit-animation: SubMenuAnimOut2 0.3s ease-in-out;
  -moz-animation: SubMenuAnimOut2 0.3s ease-in-out;
  animation: SubMenuAnimOut2 0.3s ease-in-out; }

.dl-menuwrapper > .dl-submenu.dl-animate-out-3 {
  -webkit-animation: SubMenuAnimOut3 0.4s ease;
  -moz-animation: SubMenuAnimOut3 0.4s ease;
  animation: SubMenuAnimOut3 0.4s ease; }

.dl-menuwrapper > .dl-submenu.dl-animate-out-4 {
  -webkit-animation: SubMenuAnimOut4 0.4s ease;
  -moz-animation: SubMenuAnimOut4 0.4s ease;
  animation: SubMenuAnimOut4 0.4s ease; }

.dl-menuwrapper > .dl-submenu.dl-animate-out-5 {
  -webkit-animation: SubMenuAnimOut5 0.4s ease;
  -moz-animation: SubMenuAnimOut5 0.4s ease;
  animation: SubMenuAnimOut5 0.4s ease; }

@-webkit-keyframes SubMenuAnimOut1 {
  0% {
    -webkit-transform: translateX(0%);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(50%);
    opacity: 0; } }
@-webkit-keyframes SubMenuAnimOut2 {
  0% {
    -webkit-transform: translateX(0%);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100%);
    opacity: 0; } }
@-webkit-keyframes SubMenuAnimOut3 {
  0% {
    -webkit-transform: translateZ(0px);
    opacity: 1; }
  100% {
    -webkit-transform: translateZ(-300px);
    opacity: 0; } }
@-webkit-keyframes SubMenuAnimOut4 {
  0% {
    -webkit-transform: translateZ(0px);
    opacity: 1; }
  100% {
    -webkit-transform: translateZ(300px);
    opacity: 0; } }
@-webkit-keyframes SubMenuAnimOut5 {
  0% {
    -webkit-transform: translateZ(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateZ(-200px);
    opacity: 0; } }
@-moz-keyframes SubMenuAnimOut1 {
  0% {
    -moz-transform: translateX(0%);
    opacity: 1; }
  100% {
    -moz-transform: translateX(50%);
    opacity: 0; } }
@-moz-keyframes SubMenuAnimOut2 {
  0% {
    -moz-transform: translateX(0%);
    opacity: 1; }
  100% {
    -moz-transform: translateX(100%);
    opacity: 0; } }
@-moz-keyframes SubMenuAnimOut3 {
  0% {
    -moz-transform: translateZ(0px);
    opacity: 1; }
  100% {
    -moz-transform: translateZ(-300px);
    opacity: 0; } }
@-moz-keyframes SubMenuAnimOut4 {
  0% {
    -moz-transform: translateZ(0px);
    opacity: 1; }
  100% {
    -moz-transform: translateZ(300px);
    opacity: 0; } }
@-moz-keyframes SubMenuAnimOut5 {
  0% {
    -moz-transform: translateZ(0);
    opacity: 1; }
  100% {
    -moz-transform: translateZ(-200px);
    opacity: 0; } }
@keyframes SubMenuAnimOut1 {
  0% {
    transform: translateX(0%);
    opacity: 1; }
  100% {
    transform: translateX(50%);
    opacity: 0; } }
@keyframes SubMenuAnimOut2 {
  0% {
    transform: translateX(0%);
    opacity: 1; }
  100% {
    transform: translateX(100%);
    opacity: 0; } }
@keyframes SubMenuAnimOut3 {
  0% {
    transform: translateZ(0px);
    opacity: 1; }
  100% {
    transform: translateZ(-300px);
    opacity: 0; } }
@keyframes SubMenuAnimOut4 {
  0% {
    transform: translateZ(0px);
    opacity: 1; }
  100% {
    transform: translateZ(300px);
    opacity: 0; } }
@keyframes SubMenuAnimOut5 {
  0% {
    transform: translateZ(0);
    opacity: 1; }
  100% {
    transform: translateZ(-200px);
    opacity: 0; } }
/* No JS Fallback */
.no-js .dl-menuwrapper .dl-menu {
  position: relative;
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  transform: none; }

.no-js .dl-menuwrapper li .dl-submenu {
  display: block; }

.no-js .dl-menuwrapper li.dl-back {
  display: none; }

.no-js .dl-menuwrapper li > a:not(:only-child) {
  background: rgba(0, 0, 0, 0.1); }

.no-js .dl-menuwrapper li > a:not(:only-child):after {
  content: ''; }

/* #3: CSS added for override at widths above mobile menu
--------------------------------------------------------- */
@media only screen and (max-width: 821px) {
  #header {
    top: 20px; }

  .dl-menuwrapper .dl-menu {
    top: 35px; }

  .l-header.active .dl-menuwrapper .dl-menu {
    top: 25px; } }
@media only screen and (min-width: 821px) {
  .dl-menuwrapper .dl-menu {
    opacity: 1;
    pointer-events: initial; }

  .dl-menuwrapper li > a:not(:only-child):after {
    display: none; } }
.logo {
  float: left; }
  .logo__title {
    margin: 0; }
  .logo__link {
    display: inline-block;
    text-decoration: none;
    padding: 0 10px;
    line-height: 75px;
    height: 75px;
    color: #474747;
    word-wrap: no-wrap; }
    .logo__link .logoimg {
      max-width: 250px; }

/* #4: CSS Styling for Menu
--------------------------------------------------------- */
a {
  text-decoration: none; }

/* #Navigation
================================================== */
/* Main nav menu */
.nav-main {
  width: 96.91358%;
  position: absolute;
  right: 1.54321%;
  top: 50px;
  text-align: center; }

@media only screen and (min-width: 821px) {
  .nav-main {
    position: relative;
    width: 100%;
    right: auto;
    top: 16px;
    margin: 0 auto;
    /*max-width: 1600px;*/
    background: transparent; } }
.nav-main-list, .nav-sub-list {
  list-style: none;
  padding: 0; }

.nav-main-list {
  width: calc(100% - 270px);
  margin: 0 auto;
  background: transparent;
  float: right; }

.nav-main-item {
  display: block;
  width: 100%;
  border-bottom: 1px solid #6aa1a5; }

.nav-main-item:first-child {
  border-top: 1px solid #6aa1a5; }

@media only screen and (min-width: 821px) {
  .nav-main-item:first-child {
    border-top: none; } }
.nav-main-item > a {
  display: block;
  color: #474747;
  text-decoration: none;
  padding: 9px 0;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px; }

.nav-main-item > a:hover {
  background: transparent; }

@media only screen and (min-width: 821px) {
  .nav-main-item {
    float: right;
    position: relative;
    width: auto;
    padding: 0 2em;
    border-bottom: none;
    text-align: center; }

  .nav-main-item:first-child {
    border-top: none; }

  .nav-main-item > a {
    display: block; } }
@media only screen and (min-width: 821px) {
  .nav-main-item {
    font-size: 12.25px;
    font-size: 0.875rem; } }
@media only screen and (min-width: 821px) {
  .nav-main-item {
    font-size: 14px;
    font-size: 1rem; } }
/* nav icon */
.nav-handle {
  position: absolute;
  right: 0;
  top: -40px;
  display: block;
  cursor: pointer;
  width: 50px;
  height: 50px;
  padding: 5px;
  background: #92cb67;
  color: white;
  font-size: 9px;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 30px;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4); }

.nav-handle:after {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  top: 22px;
  left: 13px;
  position: absolute;
  background: white;
  -webkit-box-shadow: 0 8px 0 0 white, 0 16px 0 0 white;
  box-shadow: 0 8px 0 0 white, 0 16px 0 0 white; }

.nav-handle:hover {
  background: #18696c; }

@media only screen and (min-width: 821px) {
  .nav-handle {
    display: none; } }
.nav-sub-list {
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  background: #6aa1a5;
  white-space: nowrap; }

@media only screen and (min-width: 821px) {
  .nav-sub-list {
    display: block;
    max-height: 0;
    width: auto;
    overflow: hidden;
    text-align: left;
    min-width: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; } }
.nav-main-item:last-child > .nav-sub-list {
  left: auto;
  right: 0; }

@media only screen and (min-width: 821px) {
  .nav-main-item:hover > .nav-sub-list {
    height: auto;
    max-height: 500px;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out; } }
.nav-sub-item, .dl-back {
  border-bottom: 1px solid #6aa1a5; }

.nav-sub-item:first-child, .dl-back {
  border-top: 1px solid #6aa1a5; }

.nav-sub-item > a, .dl-back > a {
  color: white;
  display: block;
  padding: 8px 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 1px; }

.nav-sub-item > a:hover {
  background: #18696c; }

@media only screen and (min-width: 821px) {
  .dl-back {
    display: none; }

  .nav-sub-sub {
    display: none; }

  .mobile-main-item {
    display: none; } }
/* specific to this pen */
body {
  font-family: 'Maven Pro'; }

h2 {
  margin-top: 3em;
  text-align: center; }
  h2 > a {
    color: #92cb67; }
    h2 > a:hover {
      color: #6aa1a5; }

.m-t-5 {
  margin-top: 5px !important; }

.p-t-5 {
  padding-top: 5px !important; }

.m-b-5 {
  margin-bottom: 5px !important; }

.p-b-5 {
  padding-bottom: 5px !important; }

.m-l-5 {
  margin-left: 5px !important; }

.p-l-5 {
  padding-left: 5px !important; }

.m-r-5 {
  margin-right: 5px !important; }

.p-r-5 {
  padding-right: 5px !important; }

.m-t-10 {
  margin-top: 10px !important; }

.p-t-10 {
  padding-top: 10px !important; }

.m-b-10 {
  margin-bottom: 10px !important; }

.p-b-10 {
  padding-bottom: 10px !important; }

.m-l-10 {
  margin-left: 10px !important; }

.p-l-10 {
  padding-left: 10px !important; }

.m-r-10 {
  margin-right: 10px !important; }

.p-r-10 {
  padding-right: 10px !important; }

.m-t-15 {
  margin-top: 15px !important; }

.p-t-15 {
  padding-top: 15px !important; }

.m-b-15 {
  margin-bottom: 15px !important; }

.p-b-15 {
  padding-bottom: 15px !important; }

.m-l-15 {
  margin-left: 15px !important; }

.p-l-15 {
  padding-left: 15px !important; }

.m-r-15 {
  margin-right: 15px !important; }

.p-r-15 {
  padding-right: 15px !important; }

.m-t-20 {
  margin-top: 20px !important; }

.p-t-20 {
  padding-top: 20px !important; }

.m-b-20 {
  margin-bottom: 20px !important; }

.p-b-20 {
  padding-bottom: 20px !important; }

.m-l-20 {
  margin-left: 20px !important; }

.p-l-20 {
  padding-left: 20px !important; }

.m-r-20 {
  margin-right: 20px !important; }

.p-r-20 {
  padding-right: 20px !important; }

.m-t-25 {
  margin-top: 25px !important; }

.p-t-25 {
  padding-top: 25px !important; }

.m-b-25 {
  margin-bottom: 25px !important; }

.p-b-25 {
  padding-bottom: 25px !important; }

.m-l-25 {
  margin-left: 25px !important; }

.p-l-25 {
  padding-left: 25px !important; }

.m-r-25 {
  margin-right: 25px !important; }

.p-r-25 {
  padding-right: 25px !important; }

.m-t-30 {
  margin-top: 30px !important; }

.p-t-30 {
  padding-top: 30px !important; }

.m-b-30 {
  margin-bottom: 30px !important; }

.p-b-30 {
  padding-bottom: 30px !important; }

.m-l-30 {
  margin-left: 30px !important; }

.p-l-30 {
  padding-left: 30px !important; }

.m-r-30 {
  margin-right: 30px !important; }

.p-r-30 {
  padding-right: 30px !important; }

.m-t-35 {
  margin-top: 35px !important; }

.p-t-35 {
  padding-top: 35px !important; }

.m-b-35 {
  margin-bottom: 35px !important; }

.p-b-35 {
  padding-bottom: 35px !important; }

.m-l-35 {
  margin-left: 35px !important; }

.p-l-35 {
  padding-left: 35px !important; }

.m-r-35 {
  margin-right: 35px !important; }

.p-r-35 {
  padding-right: 35px !important; }

.m-t-40 {
  margin-top: 40px !important; }

.p-t-40 {
  padding-top: 40px !important; }

.m-b-40 {
  margin-bottom: 40px !important; }

.p-b-40 {
  padding-bottom: 40px !important; }

.m-l-40 {
  margin-left: 40px !important; }

.p-l-40 {
  padding-left: 40px !important; }

.m-r-40 {
  margin-right: 40px !important; }

.p-r-40 {
  padding-right: 40px !important; }

.m-t-45 {
  margin-top: 45px !important; }

.p-t-45 {
  padding-top: 45px !important; }

.m-b-45 {
  margin-bottom: 45px !important; }

.p-b-45 {
  padding-bottom: 45px !important; }

.m-l-45 {
  margin-left: 45px !important; }

.p-l-45 {
  padding-left: 45px !important; }

.m-r-45 {
  margin-right: 45px !important; }

.p-r-45 {
  padding-right: 45px !important; }

.m-t-50 {
  margin-top: 50px !important; }

.p-t-50 {
  padding-top: 50px !important; }

.m-b-50 {
  margin-bottom: 50px !important; }

.p-b-50 {
  padding-bottom: 50px !important; }

.m-l-50 {
  margin-left: 50px !important; }

.p-l-50 {
  padding-left: 50px !important; }

.m-r-50 {
  margin-right: 50px !important; }

.p-r-50 {
  padding-right: 50px !important; }

.m-t-60 {
  margin-top: 60px !important; }

.p-t-60 {
  padding-top: 60px !important; }

.m-b-60 {
  margin-bottom: 60px !important; }

.p-b-60 {
  padding-bottom: 60px !important; }

.m-l-60 {
  margin-left: 60px !important; }

.p-l-60 {
  padding-left: 60px !important; }

.m-r-60 {
  margin-right: 60px !important; }

.p-r-60 {
  padding-right: 60px !important; }

.m-t-70 {
  margin-top: 70px !important; }

.p-t-70 {
  padding-top: 70px !important; }

.m-b-70 {
  margin-bottom: 70px !important; }

.p-b-70 {
  padding-bottom: 70px !important; }

.m-l-70 {
  margin-left: 70px !important; }

.p-l-70 {
  padding-left: 70px !important; }

.m-r-70 {
  margin-right: 70px !important; }

.p-r-70 {
  padding-right: 70px !important; }

.m-t-75 {
  margin-top: 75px !important; }

.p-t-75 {
  padding-top: 75px !important; }

.m-b-75 {
  margin-bottom: 75px !important; }

.p-b-75 {
  padding-bottom: 75px !important; }

.m-l-75 {
  margin-left: 75px !important; }

.p-l-75 {
  padding-left: 75px !important; }

.m-r-75 {
  margin-right: 75px !important; }

.p-r-75 {
  padding-right: 75px !important; }

.m-t-80 {
  margin-top: 80px !important; }

.p-t-80 {
  padding-top: 80px !important; }

.m-b-80 {
  margin-bottom: 80px !important; }

.p-b-80 {
  padding-bottom: 80px !important; }

.m-l-80 {
  margin-left: 80px !important; }

.p-l-80 {
  padding-left: 80px !important; }

.m-r-80 {
  margin-right: 80px !important; }

.p-r-80 {
  padding-right: 80px !important; }

.m-t-100 {
  margin-top: 100px !important; }

.p-t-100 {
  padding-top: 100px !important; }

.m-b-100 {
  margin-bottom: 100px !important; }

.p-b-100 {
  padding-bottom: 100px !important; }

.m-l-100 {
  margin-left: 100px !important; }

.p-l-100 {
  padding-left: 100px !important; }

.m-r-100 {
  margin-right: 100px !important; }

.p-r-100 {
  padding-right: 100px !important; }

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
  z-index: 0; }
.owl-carousel .owl-animated-out {
  z-index: 1; }
.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

/* width to begin showing full menu */
html {
  height: 100%; }
  html body {
    font-family: 'Maven Pro', sans-serif;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    /*padding-bottom: calc(30px + 70px);*/
    height: 100%; }
    html body .page-container {
      min-height: 100%;
      position: relative; }
      html body .page-container #body {
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        padding-bottom: calc(30px + 70px); }

.container-fluid {
  /*max-width: 1200px;*/ }

.banner {
  position: relative;
  width: 100%;
  height: 98vh;
  background-image: url("../img/banner.jpg");
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  background-size: cover; }

.box-area {
  position: relative;
  z-index: 1;
  top: -25vh;
  margin-bottom: -30vh;
  /*max-width: 1200px;*/
  overflow: hidden; }

.banner-box {
  width: calc(50% - 5px);
  float: left;
  padding: 40px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  height: 350px;
  justify-content: flex-start;
  margin-bottom: 10px; }
  .banner-box:after {
    float: none;
    clear: both; }
  .banner-box.full {
    width: 100%; }
  .banner-box h1 {
    font-size: 55px;
    font-weight: bold;
    margin: 0 0 30px 0;
    padding: 0; }
  .banner-box p {
    font-size: 18px;
    margin: 0 0 10px 0;
    padding: 0;
    max-width: 100%; }
  .banner-box.grey {
    border-radius: 5px;
    background-color: #e4e4e4;
    box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.11); }
    .banner-box.grey h1 {
      color: #474747; }
    .banner-box.grey p {
      color: #5a5a5a; }
  .banner-box.white {
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.11); }
    .banner-box.white h1 {
      color: #474747; }
    .banner-box.white p {
      color: #5a5a5a; }
  .banner-box.green {
    background: #206c6d;
    background: -moz-radial-gradient(circle, #206c6d 0%, #165c5e 30%, #084347 70%, #053c40 100%);
    background: -webkit-radial-gradient(circle, #206c6d 0%, #165c5e 30%, #084347 70%, #053c40 100%);
    background: radial-gradient(circle, #206c6d 0%, #165c5e 30%, #084347 70%, #053c40 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#206c6d", endColorstr="#053c40", GradientType=1);
    margin-right: 5px; }
    .banner-box.green h1 {
      color: #fff; }
    .banner-box.green p {
      color: #fff; }
    .banner-box.green ul {
      list-style: none;
      margin: 0;
      padding: 0; }
      .banner-box.green ul li {
        color: #fff;
        font-size: 22px; }
  .banner-box.projects {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/box_projects.jpg);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 5px; }
    .banner-box.projects h1 {
      color: #1b686c; }
    .banner-box.projects p {
      color: #000; }

.parallax-bg {
  background: url(../img/parallax.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

.projects-area {
  position: relative; }
  .projects-area .project-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap; }
    .projects-area .project-boxes .project-box {
      position: relative;
      width: 25%;
      -webkit-transition-duration: .7s;
      -webkit-transition-property: -webkit-transform, opacity;
      -webkit-transition-delay: .15s;
      -webkit-transition-timing-function: 'ease-in-out';
      -moz-transition-duration: .7s;
      -moz-transition-property: all;
      -moz-transition-delay: .15s;
      -moz-transition-timing-function: 'ease-in-out';
      -o-transition-duration: .7s;
      -o-transition-property: transform, opacity;
      -o-transition-delay: .15s;
      -o-transition-timing-function: 'ease-in-out';
      -ms-transition-duration: .7s;
      -ms-transition-property: transform, opacity;
      -ms-transition-delay: .15s;
      -ms-transition-timing-function: 'ease-in-out';
      transition-duration: .7s;
      transition-property: transform, opacity;
      transition-delay: .15s;
      transition-timing-function: 'ease-in-out';
      -webkit-transform: rotatex(-80deg) translateZ(0);
      -ms-transform: rotatex(-80deg) translateZ(0);
      transform: rotatex(-80deg) translateZ(0);
      -webkit-transform-origin: 0 0 0;
      -ms-transform-origin: 0 0 0;
      transform-origin: 0 0 0;
      opacity: 0;
      transition-delay: .1s; }
      .projects-area .project-boxes .project-box.aos-animate {
        -webkit-transform: rotatex(0deg) translateZ(0);
        -ms-transform: rotatex(0deg) translateZ(0);
        transform: rotatex(0deg) translateZ(0);
        opacity: 1; }
      .projects-area .project-boxes .project-box .project-img {
        overflow: hidden; }
        .projects-area .project-boxes .project-box .project-img img {
          transition: -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
          transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
          -webkit-transform: scale(1) translatez(0);
          -ms-transform: scale(1) translatez(0);
          transform: scale(1) translatez(0); }
      .projects-area .project-boxes .project-box .project-detail {
        opacity: 0;
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 999;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        flex-direction: column;
        background-image: -moz-linear-gradient(90deg, rgba(237, 241, 196, 0.56) 0%, rgba(0, 155, 79, 0.56) 67%, rgba(0, 95, 48, 0.57) 100%);
        background-image: -webkit-linear-gradient(90deg, rgba(237, 241, 196, 0.56) 0%, rgba(0, 155, 79, 0.56) 67%, rgba(0, 95, 48, 0.57) 100%);
        background-image: -ms-linear-gradient(90deg, rgba(237, 241, 196, 0.56) 0%, rgba(0, 155, 79, 0.56) 67%, rgba(0, 95, 48, 0.57) 100%);
        transition: opacity 0.5s ease; }
        .projects-area .project-boxes .project-box .project-detail h3 {
          color: #edf1c4;
          font-weight: bold;
          font-size: 45px;
          margin: 0; }
        .projects-area .project-boxes .project-box .project-detail h4 {
          color: #edf1c4;
          font-weight: bold;
          font-size: 26px;
          margin: 0 0 15px 0; }
        .projects-area .project-boxes .project-box .project-detail img {
          -webkit-transform: scale(0.8) translatez(0);
          -ms-transform: scale(0.8) translatez(0);
          transform: scale(0.8) translatez(0);
          transition: all 1.2s ease; }
      .projects-area .project-boxes .project-box:hover .project-img img {
        -webkit-transform: scale(1.1) translatez(0);
        -ms-transform: scale(1.1) translatez(0);
        transform: scale(1.1) translatez(0); }
      .projects-area .project-boxes .project-box:hover .project-detail {
        opacity: 1; }
        .projects-area .project-boxes .project-box:hover .project-detail img {
          -webkit-transform: scale(1) translatez(0);
          -ms-transform: scale(1) translatez(0);
          transform: scale(1) translatez(0); }
  .projects-area .curtain {
    pointer-events: none;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 888;
    height: 100%;
    display: flex;
    width: 100%;
    background: rgba(255, 255, 255, 0.76);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 1s ease;
    cursor: pointer; }
    .projects-area .curtain.active {
      opacity: 1;
      pointer-events: inherit; }
    .projects-area .curtain.hide-curtain {
      opacity: 0;
      pointer-events: none; }
    .projects-area .curtain h1 {
      color: #44b16c;
      font-size: 72px;
      font-weight: bold;
      margin: 0 0 30px 0; }
    .projects-area .curtain ul {
      list-style: none;
      padding: 0; }
      .projects-area .curtain ul li {
        display: inline-block;
        margin: 0 30px 0 0;
        color: #28673f;
        font-weight: bold; }
        .projects-area .curtain ul li:last-child {
          margin-right: 0; }

.clear {
  clear: both;
  width: 100%; }

.footer-wrap {
  background-color: #185d61;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0; }

footer {
  background-color: #185d61;
  color: #fff;
  padding: 15px 0; }
  footer .footer-cols {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
    footer .footer-cols .footer-logo {
      min-height: 70px;
      display: flex;
      justify-content: center;
      align-items: center; }
      footer .footer-cols .footer-logo .img {
        max-width: 196px; }
        footer .footer-cols .footer-logo .img img {
          max-width: 100%; }
    footer .footer-cols .footer-menu {
      display: flex;
      flex-direction: column;
      min-height: 70px;
      justify-content: space-between;
      align-items: center; }
      footer .footer-cols .footer-menu p {
        text-align: center;
        margin-bottom: 0; }
      footer .footer-cols .footer-menu .footer-menu-ul {
        margin: 0;
        padding: 0;
        list-style: none; }
        footer .footer-cols .footer-menu .footer-menu-ul li {
          display: inline-block;
          margin-right: 0px; }
          footer .footer-cols .footer-menu .footer-menu-ul li:after {
            content: ' | ';
            margin: 0 15px; }
          footer .footer-cols .footer-menu .footer-menu-ul li:last-child {
            margin-right: 0; }
            footer .footer-cols .footer-menu .footer-menu-ul li:last-child:after {
              content: '';
              margin-right: 0; }
          footer .footer-cols .footer-menu .footer-menu-ul li a {
            color: #fff; }
            footer .footer-cols .footer-menu .footer-menu-ul li a:hover {
              text-decoration: none; }
    footer .footer-cols .footer-social {
      display: flex;
      align-items: flex-end;
      min-height: 70px;
      justify-content: flex-end; }
      footer .footer-cols .footer-social .social {
        margin-top: 15px;
        align-items: flex-end;
        width: 100%; }
        footer .footer-cols .footer-social .social .footer-menu-ul {
          margin: 0;
          padding: 0;
          list-style: none; }
          footer .footer-cols .footer-social .social .footer-menu-ul li {
            display: inline-block;
            margin-right: 5px; }
            footer .footer-cols .footer-social .social .footer-menu-ul li:after {
              content: ' ';
              margin: 0 5px; }
            footer .footer-cols .footer-social .social .footer-menu-ul li:last-child {
              margin-right: 0; }
              footer .footer-cols .footer-social .social .footer-menu-ul li:last-child:after {
                content: '';
                margin-right: 0; }
            footer .footer-cols .footer-social .social .footer-menu-ul li a {
              color: #fff; }
              footer .footer-cols .footer-social .social .footer-menu-ul li a:hover {
                text-decoration: none; }
            footer .footer-cols .footer-social .social .footer-menu-ul li img {
              max-width: 24px; }

.project-slider-area {
  position: relative;
  width: 100%;
  float: left;
  z-index: 0;
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.45);
  border-radius: 5px; }
  .project-slider-area .owl-carousel .owl-nav {
    width: 100%;
    margin: 0; }
    .project-slider-area .owl-carousel .owl-nav .owl-next {
      padding: 0;
      margin: 0;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      height: 154px;
      right: 5%;
      background-color: transparent; }
    .project-slider-area .owl-carousel .owl-nav .owl-prev {
      padding: 0;
      margin: 0;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      height: 154px;
      left: 5%;
      background-color: transparent; }
  .project-slider-area .owl-carousel .item .slider-item {
    background: url("../img/blank.png") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 70vh; }

.referance-slider-area {
  padding: 40px 0;
  background-color: #fff;
  float: none; }
  .referance-slider-area #slider2 {
    max-width: 80%;
    margin: auto; }
  .referance-slider-area .owl-carousel .owl-nav {
    left: 0;
    width: 100%;
    margin: 0; }
    .referance-slider-area .owl-carousel .owl-nav .owl-next {
      padding: 0;
      margin: 0;
      position: absolute;
      right: -5%;
      top: 50%;
      transform: translateY(-50%);
      height: 82px;
      background-color: transparent; }
    .referance-slider-area .owl-carousel .owl-nav .owl-prev {
      padding: 0;
      margin: 0;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      height: 82px;
      left: -5%;
      background-color: transparent; }
  .referance-slider-area .owl-carousel .item .referance-item img {
    max-width: 60%;
    margin: auto; }
  .referance-slider-area .referance-item img {
    max-width: 100%; }

.errorinput {
  border: 2px solid #ff0000 !important; }

.detroit {
  text-decoration: none !important; }

.detroit:hover, .detroit:active, .detroit:focus {
  text-decoration: none !important; }

.detroit span:first-child {
  color: #faf8e7; }

.detroit span:last-child {
  color: #7b7652; }

/* width to begin showing full menu */
.fullpage-bg {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding-top: calc(15px + 75px + 50px);
  min-height: calc(100vh - (75px + 25px));
  padding-bottom: 50px; }
  .fullpage-bg.corporate, .fullpage-bg.contact {
    background: url(../img/bg/kurumsal.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center; }
    .fullpage-bg.corporate .container-fluid, .fullpage-bg.corporate .container, .fullpage-bg.contact .container-fluid, .fullpage-bg.contact .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      /*width: 100%;*/ }
      .fullpage-bg.corporate .container-fluid .corporate-boxes, .fullpage-bg.corporate .container .corporate-boxes, .fullpage-bg.contact .container-fluid .corporate-boxes, .fullpage-bg.contact .container .corporate-boxes {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        /*overflow: hidden;*/ }
        .fullpage-bg.corporate .container-fluid .corporate-boxes .col, .fullpage-bg.corporate .container .corporate-boxes .col, .fullpage-bg.contact .container-fluid .corporate-boxes .col, .fullpage-bg.contact .container .corporate-boxes .col {
          flex: 1; }
          .fullpage-bg.corporate .container-fluid .corporate-boxes .col:nth-child(1), .fullpage-bg.corporate .container .corporate-boxes .col:nth-child(1), .fullpage-bg.contact .container-fluid .corporate-boxes .col:nth-child(1), .fullpage-bg.contact .container .corporate-boxes .col:nth-child(1) {
            order: 1;
            padding-right: 5px; }
            .fullpage-bg.corporate .container-fluid .corporate-boxes .col:nth-child(1) .box, .fullpage-bg.corporate .container .corporate-boxes .col:nth-child(1) .box, .fullpage-bg.contact .container-fluid .corporate-boxes .col:nth-child(1) .box, .fullpage-bg.contact .container .corporate-boxes .col:nth-child(1) .box {
              height: 100%; }
          .fullpage-bg.corporate .container-fluid .corporate-boxes .col:nth-child(2), .fullpage-bg.corporate .container .corporate-boxes .col:nth-child(2), .fullpage-bg.contact .container-fluid .corporate-boxes .col:nth-child(2), .fullpage-bg.contact .container .corporate-boxes .col:nth-child(2) {
            padding-left: 5px;
            order: 2; }
            .fullpage-bg.corporate .container-fluid .corporate-boxes .col:nth-child(2) .box, .fullpage-bg.corporate .container .corporate-boxes .col:nth-child(2) .box, .fullpage-bg.contact .container-fluid .corporate-boxes .col:nth-child(2) .box, .fullpage-bg.contact .container .corporate-boxes .col:nth-child(2) .box {
              height: auto; }
              .fullpage-bg.corporate .container-fluid .corporate-boxes .col:nth-child(2) .box:last-child, .fullpage-bg.corporate .container .corporate-boxes .col:nth-child(2) .box:last-child, .fullpage-bg.contact .container-fluid .corporate-boxes .col:nth-child(2) .box:last-child, .fullpage-bg.contact .container .corporate-boxes .col:nth-child(2) .box:last-child {
                margin-bottom: 0; }
          .fullpage-bg.corporate .container-fluid .corporate-boxes .col .box, .fullpage-bg.corporate .container .corporate-boxes .col .box, .fullpage-bg.contact .container-fluid .corporate-boxes .col .box, .fullpage-bg.contact .container .corporate-boxes .col .box {
            background-color: #fff;
            box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.45);
            border-radius: 5px;
            padding: 40px;
            width: 100%;
            height: 100%;
            margin-bottom: 10px; }
            .fullpage-bg.corporate .container-fluid .corporate-boxes .col .box h1, .fullpage-bg.corporate .container .corporate-boxes .col .box h1, .fullpage-bg.contact .container-fluid .corporate-boxes .col .box h1, .fullpage-bg.contact .container .corporate-boxes .col .box h1 {
              color: #474747;
              font-size: 55px;
              font-weight: bold;
              margin: 0 0 30px 0;
              padding: 0; }
            .fullpage-bg.corporate .container-fluid .corporate-boxes .col .box p, .fullpage-bg.corporate .container .corporate-boxes .col .box p, .fullpage-bg.contact .container-fluid .corporate-boxes .col .box p, .fullpage-bg.contact .container .corporate-boxes .col .box p {
              color: #5a5a5a;
              font-size: 16px;
              margin: 0 0 10px 0;
              padding: 0;
              max-width: 100%; }
  .fullpage-bg.contact {
    background: url(../img/bg/iletisim.jpg) no-repeat center center;
    background-size: cover; }
    .fullpage-bg.contact .corporate-boxes {
      width: 100%; }
      .fullpage-bg.contact .corporate-boxes .col:nth-child(1) {
        order: 2 !important;
        padding-left: 5px !important; }
        .fullpage-bg.contact .corporate-boxes .col:nth-child(1) .box {
          height: auto !important; }
          .fullpage-bg.contact .corporate-boxes .col:nth-child(1) .box:last-child {
            margin-bottom: 0px !important; }
      .fullpage-bg.contact .corporate-boxes .col:nth-child(2) {
        padding-right: 5px !important;
        order: 1 !important; }
        .fullpage-bg.contact .corporate-boxes .col:nth-child(2) .box {
          height: 100% !important;
          display: flex !important;
          flex-direction: column !important;
          justify-content: center !important; }
          .fullpage-bg.contact .corporate-boxes .col:nth-child(2) .box:last-child {
            margin-bottom: 10px !important; }
      .fullpage-bg.contact .corporate-boxes .col .contact-box, .fullpage-bg.contact .corporate-boxes .col .form-area {
        background-color: #f2f2f2;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        border-radius: 5px;
        margin-bottom: 10px;
        padding: 20px 50px;
        box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.45); }
        .fullpage-bg.contact .corporate-boxes .col .contact-box img, .fullpage-bg.contact .corporate-boxes .col .form-area img {
          margin-right: 15px; }
        .fullpage-bg.contact .corporate-boxes .col .contact-box p, .fullpage-bg.contact .corporate-boxes .col .form-area p {
          margin: 0;
          padding: 0;
          font-size: 13.679px;
          color: #474747; }
      .fullpage-bg.contact .corporate-boxes .col h2 {
        font-size: 35px;
        font-weight: bold;
        margin: 0 0 30px 0;
        padding: 0;
        color: #474747;
        text-align: left; }
      .fullpage-bg.contact .corporate-boxes .col .contact-box-form form {
        display: flex;
        justify-content: flex-start;
        align-items: flex-end; }
      .fullpage-bg.contact .corporate-boxes .col .contact-box-form .form-area {
        margin-bottom: 0;
        width: 80%;
        display: block; }
        .fullpage-bg.contact .corporate-boxes .col .contact-box-form .form-area input, .fullpage-bg.contact .corporate-boxes .col .contact-box-form .form-area textarea {
          resize: none;
          background-color: transparent;
          border: none;
          border-bottom: 2px solid #474747;
          border-radius: 0;
          box-shadow: none;
          font-size: 13.679px;
          color: #474747; }
          .fullpage-bg.contact .corporate-boxes .col .contact-box-form .form-area input::-webkit-input-placeholder, .fullpage-bg.contact .corporate-boxes .col .contact-box-form .form-area textarea::-webkit-input-placeholder {
            /* Chrome/Opera/Safari */
            font-size: 13.679px;
            color: #474747; }
          .fullpage-bg.contact .corporate-boxes .col .contact-box-form .form-area input::-moz-placeholder, .fullpage-bg.contact .corporate-boxes .col .contact-box-form .form-area textarea::-moz-placeholder {
            /* Firefox 19+ */
            font-size: 13.679px;
            color: #474747; }
          .fullpage-bg.contact .corporate-boxes .col .contact-box-form .form-area input:-ms-input-placeholder, .fullpage-bg.contact .corporate-boxes .col .contact-box-form .form-area textarea:-ms-input-placeholder {
            /* IE 10+ */
            font-size: 13.679px;
            color: #474747; }
          .fullpage-bg.contact .corporate-boxes .col .contact-box-form .form-area input:-moz-placeholder, .fullpage-bg.contact .corporate-boxes .col .contact-box-form .form-area textarea:-moz-placeholder {
            /* Firefox 18- */
            font-size: 13.679px;
            color: #474747; }
      .fullpage-bg.contact .corporate-boxes .col .contact-box-form .button-area {
        width: 20%;
        text-align: right; }
        .fullpage-bg.contact .corporate-boxes .col .contact-box-form .button-area button {
          padding: 15px;
          width: calc(100% - 10px);
          background-color: #f2f2f2;
          font-size: 15.389px;
          color: #474747;
          border-radius: 5px;
          border: none;
          box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.45); }
    .fullpage-bg.contact .map {
      height: 100%;
      box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.45); }
      .fullpage-bg.contact .map iframe {
        width: 100%;
        height: 100%; }
  .fullpage-bg.services {
    background: url(../img/bg/hizmetlerimiz.jpg) no-repeat center center;
    background-size: cover; }
    .fullpage-bg.services .services-boxes {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      align-items: flex-start; }
      .fullpage-bg.services .services-boxes .col:nth-child(1) {
        order: 1;
        padding-right: 0px;
        width: calc(30% - 19px);
        background-color: #fff;
        box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.45);
        border-radius: 5px; }
        .fullpage-bg.services .services-boxes .col:nth-child(1) .box {
          height: 100%; }
        .fullpage-bg.services .services-boxes .col:nth-child(1) .panel-group {
          margin-bottom: 0px;
          width: 100%; }
          .fullpage-bg.services .services-boxes .col:nth-child(1) .panel-group .panel-default {
            border: none;
            box-shadow: none; }
            .fullpage-bg.services .services-boxes .col:nth-child(1) .panel-group .panel-default .panel-heading {
              border-color: transparent;
              background-color: transparent;
              padding: 0; }
              .fullpage-bg.services .services-boxes .col:nth-child(1) .panel-group .panel-default .panel-heading .panel-title a {
                font-size: 18px;
                display: block;
                width: 100%;
                padding: 7px 15px;
                text-decoration: none !important; }
                .fullpage-bg.services .services-boxes .col:nth-child(1) .panel-group .panel-default .panel-heading .panel-title a:hover, .fullpage-bg.services .services-boxes .col:nth-child(1) .panel-group .panel-default .panel-heading .panel-title a[aria-expanded="true"] {
                  background-color: #f2f2f2;
                  text-decoration: none !important; }
              .fullpage-bg.services .services-boxes .col:nth-child(1) .panel-group .panel-default .panel-heading .panel-body {
                border-top-color: transparent;
                padding-top: 0;
                font-size: 16px;
                padding-bottom: 0; }
            .fullpage-bg.services .services-boxes .col:nth-child(1) .panel-group .panel-default .panel-collapse .panel-body {
              border-top-color: transparent;
              padding-top: 0;
              padding-bottom: 0; }
      .fullpage-bg.services .services-boxes .col:nth-child(2) {
        width: 70%;
        padding-left: 19px;
        order: 2; }
        .fullpage-bg.services .services-boxes .col:nth-child(2) img {
          width: 100%;
          box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.45); }
        .fullpage-bg.services .services-boxes .col:nth-child(2) .box {
          height: auto; }
          .fullpage-bg.services .services-boxes .col:nth-child(2) .box:last-child {
            margin-bottom: 0; }
      .fullpage-bg.services .services-boxes .col .box {
        background-color: #fff;
        box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.45);
        border-radius: 5px;
        padding: 40px;
        width: 100%;
        height: 100%;
        margin-bottom: 10px; }
        .fullpage-bg.services .services-boxes .col .box h1 {
          color: #474747;
          font-size: 55px;
          font-weight: bold;
          margin: 0 0 30px 0;
          padding: 0; }
        .fullpage-bg.services .services-boxes .col .box p {
          color: #5a5a5a;
          font-size: 16px;
          margin: 0 0 10px 0;
          padding: 0;
          max-width: 100%; }
  .fullpage-bg.projects {
    background: url(../img/bg/projeler.jpg) no-repeat center center;
    background-size: cover; }
    .fullpage-bg.projects .project-boxes {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      align-items: flex-start; }
      .fullpage-bg.projects .project-boxes .col:nth-child(1) {
        order: 1;
        padding-right: 0px;
        width: 40%; }
        .fullpage-bg.projects .project-boxes .col:nth-child(1) .box {
          height: 100%; }
        .fullpage-bg.projects .project-boxes .col:nth-child(1) .panel-group {
          margin-bottom: 0px; }
          .fullpage-bg.projects .project-boxes .col:nth-child(1) .panel-group .panel-default {
            border: none;
            box-shadow: none; }
            .fullpage-bg.projects .project-boxes .col:nth-child(1) .panel-group .panel-default .panel-heading {
              border-color: transparent;
              background-color: transparent;
              padding: 0; }
              .fullpage-bg.projects .project-boxes .col:nth-child(1) .panel-group .panel-default .panel-heading .panel-title a {
                font-size: 18px;
                display: block;
                width: 100%;
                padding: 7px 15px;
                text-decoration: none !important; }
                .fullpage-bg.projects .project-boxes .col:nth-child(1) .panel-group .panel-default .panel-heading .panel-title a:hover, .fullpage-bg.projects .project-boxes .col:nth-child(1) .panel-group .panel-default .panel-heading .panel-title a[aria-expanded="true"] {
                  background-color: #f2f2f2;
                  text-decoration: none !important; }
              .fullpage-bg.projects .project-boxes .col:nth-child(1) .panel-group .panel-default .panel-heading .panel-body {
                border-top-color: transparent;
                padding-top: 0;
                font-size: 16px;
                padding-bottom: 0; }
            .fullpage-bg.projects .project-boxes .col:nth-child(1) .panel-group .panel-default .panel-collapse .panel-body {
              border-top-color: transparent;
              padding-top: 0;
              padding-bottom: 0; }
      .fullpage-bg.projects .project-boxes .col:nth-child(2) {
        width: 60%;
        padding-left: 0px;
        order: 2; }
        .fullpage-bg.projects .project-boxes .col:nth-child(2) img {
          width: 100%; }
        .fullpage-bg.projects .project-boxes .col:nth-child(2) .box {
          height: auto; }
          .fullpage-bg.projects .project-boxes .col:nth-child(2) .box:last-child {
            margin-bottom: 0; }
      .fullpage-bg.projects .project-boxes .col .sub-cols {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        align-items: flex-start; }
        .fullpage-bg.projects .project-boxes .col .sub-cols .sub-col:nth-child(1) {
          width: 40%;
          order: 1;
          background-color: #fff;
          box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.45);
          border-radius: 5px; }
        .fullpage-bg.projects .project-boxes .col .sub-cols .sub-col:nth-child(2) {
          width: 60%;
          order: 2; }

.cities {
  list-style: none;
  margin: 0;
  padding: 0 0 0 15px; }
  .cities li {
    margin: 0;
    padding: 0; }
    .cities li a {
      font-size: 16px;
      color: #5c5e61;
      text-decoration: none !important; }
      .cities li a:hover, .cities li a.active, .cities li a:active {
        color: #30ad66; }

.submenu {
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.45);
  background-color: #fff;
  width: 90%;
  margin: auto;
  border-radius: 5px;
  padding: 5px 0; }
  .submenu ul {
    list-style: none;
    margin: 0;
    padding: 0 15px 0 15px;
    display: none; }
    .submenu ul.active {
      display: block; }
    .submenu ul li {
      margin: 0;
      padding: 0 0 5px 0; }
      .submenu ul li:last-child {
        padding-bottom: 0; }
      .submenu ul li a {
        font-size: 16px;
        color: #5c5e61;
        text-decoration: none !important; }
        .submenu ul li a:hover, .submenu ul li a.active, .submenu ul li a:active {
          color: #30ad66; }

.project-slider {
  display: none !important; }
  .project-slider.active {
    display: block !important; }

#servicesimg, .border-img {
  border-radius: 4px; }

@media only screen and (min-width: 1450px) {
  .container {
    width: 90%;
    margin: auto; } }
@media only screen and (max-width: 1500px) {
  .banner-box h1 {
    font-size: 45px; } }
@media only screen and (max-width: 1000px) {
  .nav-main-item {
    padding: 0 1em; }
    .nav-main-item a {
      font-size: 16px; } }
@media only screen and (max-width: 900px) {
  .nav-main-item {
    padding: 0 0.75em; }
    .nav-main-item a {
      font-size: 15px; }

  .banner-box h1 {
    font-size: 45px; }
  .banner-box p {
    font-size: 16px; }

  footer .footer-cols .footer-menu .footer-menu-ul li:after {
    margin: 0 7px; } }
@media only screen and (max-width: 820px) {
  html body .page-container #body {
    padding-bottom: 0; }

  .banner-box {
    width: 100%;
    height: auto;
    min-height: 355px; }
    .banner-box h1 {
      font-size: 35px; }
    .banner-box p {
      font-size: 16px; }

  .mobile-mt-80 {
    margin-top: 0px !important; }

  .footer-wrap {
    position: relative; }
    .footer-wrap footer .footer-cols {
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      .footer-wrap footer .footer-cols .footer-menu {
        min-height: 50px;
        text-align: center; }
      .footer-wrap footer .footer-cols .footer-logo .img {
        margin-bottom: 25px; }
      .footer-wrap footer .footer-cols .footer-social {
        min-height: 30px; }

  .fullpage-bg {
    /*  padding-top: calc(15px + 25px);
      min-height: calc(100vh - 25px);*/
    background-size: cover !important; }
    .fullpage-bg.corporate .container-fluid .corporate-boxes, .fullpage-bg.corporate .container .corporate-boxes, .fullpage-bg.contact .container-fluid .corporate-boxes, .fullpage-bg.contact .container .corporate-boxes {
      flex-direction: column; }
      .fullpage-bg.corporate .container-fluid .corporate-boxes .col:nth-child(2), .fullpage-bg.corporate .container .corporate-boxes .col:nth-child(2), .fullpage-bg.contact .container-fluid .corporate-boxes .col:nth-child(2), .fullpage-bg.contact .container .corporate-boxes .col:nth-child(2) {
        opacity: 1 !important;
        transform: translate3d(0px, 0, 0) !important; }
      .fullpage-bg.corporate .container-fluid .corporate-boxes .col .box h1, .fullpage-bg.corporate .container .corporate-boxes .col .box h1, .fullpage-bg.contact .container-fluid .corporate-boxes .col .box h1, .fullpage-bg.contact .container .corporate-boxes .col .box h1 {
        font-size: 35px; }
      .fullpage-bg.corporate .container-fluid .corporate-boxes .col .box p, .fullpage-bg.corporate .container .corporate-boxes .col .box p, .fullpage-bg.contact .container-fluid .corporate-boxes .col .box p, .fullpage-bg.contact .container .corporate-boxes .col .box p {
        font-size: 16px; }
    .fullpage-bg.contact .corporate-boxes .col .contact-box, .fullpage-bg.contact .corporate-boxes .col .form-area {
      padding: 20px; }
    .fullpage-bg.contact .corporate-boxes .col .contact-box-form form {
      flex-direction: column; }
    .fullpage-bg.contact .corporate-boxes .col .contact-box-form .form-area {
      width: 100%; }
    .fullpage-bg.contact .corporate-boxes .col .contact-box-form .button-area {
      width: 100%; }
      .fullpage-bg.contact .corporate-boxes .col .contact-box-form .button-area button {
        width: 100%;
        margin-top: 15px; }
    .fullpage-bg.contact .corporate-boxes .col:nth-child(2) {
      margin-top: 15px; }
    .fullpage-bg.services .services-boxes {
      flex-direction: column; }
      .fullpage-bg.services .services-boxes .col:nth-child(1) {
        width: 100%; }
      .fullpage-bg.services .services-boxes .col:nth-child(2) {
        width: 100%;
        padding-left: 0;
        margin-top: 15px;
        opacity: 1 !important;
        transform: translate3d(0px, 0, 0) !important; }
    .fullpage-bg.projects .project-boxes {
      flex-direction: column; }
      .fullpage-bg.projects .project-boxes .col:nth-child(1) {
        width: 100%; }
      .fullpage-bg.projects .project-boxes .col:nth-child(2) {
        width: 100%;
        padding-left: 0;
        margin-top: 15px;
        opacity: 1 !important;
        transform: translate3d(0px, 0, 0) !important; }

  .nav-main-list {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center; }

  .nav-main-item {
    float: left; }
    .nav-main-item:first-child {
      border-top: none; }
    .nav-main-item:last-child {
      border-top: 1px solid #6aa1a5; }
    .nav-main-item a {
      font-size: 13px; }

  #slider1 .owl-nav .owl-next, #slider1 .owl-nav .owl-prev, .project-slider .owl-nav .owl-next, .project-slider .owl-nav .owl-prev {
    height: 77px !important; }
  #slider1 .owl-nav img, .project-slider .owl-nav img {
    width: 40px !important; } }
@media only screen and (max-width: 500px) {
  .fullpage-bg.projects .project-boxes .col .sub-cols {
    flex-direction: column; }
    .fullpage-bg.projects .project-boxes .col .sub-cols .sub-col:nth-child(1) {
      width: 100%; }
    .fullpage-bg.projects .project-boxes .col .sub-cols .sub-col:nth-child(2) {
      width: 100%;
      margin-top: 15px; }
    .fullpage-bg.projects .project-boxes .col .sub-cols .sub-col .submenu {
      width: 100%; }

  footer .footer-cols .footer-menu .footer-menu-ul li a {
    font-size: 12px; }
  footer .footer-cols .footer-menu .footer-menu-ul li:after {
    margin: 0; }
  footer .footer-cols .footer-menu p {
    font-size: 12px; }

  .logo__link .logoimg {
    max-width: 200px; } }

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