/*--------------------------------------------------------------
 Index
--------------------------------------------------------------*/
/* 
    primary: #444
    secondary: #fff
    tertiary: #ffa042
    hover: #fff
    
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: #444;
  background-color: #fff;
}

a {
  color: #444;
}

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

*,
::after,
::before {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
  padding: 8px 50px;
  margin-bottom: 5px;
  font-size: 12px;
  background: #fff;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.25);
}

#topbar .logo {
  max-width: 15px;
  margin-right: 10px;
}

#topbar .contact a {
  line-height: 1;
  color: #444;
  transition: 0.3s;
}

#topbar .contact a:hover {
  color: #ffa042;
}

#topbar .contact i {
  color: #444;
  padding: 4px;
}

#topbar .contact .icon {
  padding-left: 20px;
  padding-right: 10px;
  margin-left: 20px;
  border-left: 1px solid #e9e9e9;
  color: #444;
}

#topbar .social a {
  color: #444;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
  border-left: 1px solid #e9e9e9;
}

#topbar .social a:hover {
  color: #ffa042;
}

#topbar .social a:first-child {
  border-left: 0;
}

@media (max-height: 992px) {
  #topbar {
    padding: 0px;
    margin: 0px;
    height: 0px;
    width: 0px;
  }
}
/*--------------------------------------------------------------
# End Top Bar
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
#navigation {
  height: 40px;
  padding: 15px;
  padding-top: 0px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: rgba(255, 255, 255, 0.85);
  text-align: center;
}

#navigation .nav-logo h1 {
  font-size: 18px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  display: inline-block;
  position: relative;
  color: #444;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 400;
}

#navigation .nav-logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

#navigation .mobile-detail {
  visibility: hidden;
}

@media (max-width: 992px) {
  #navigation {
    height: 20px;
    padding: 30px;
    margin: 0px;
    background: #f9f9f9;
    top: 5px;
  }
  #navigation .nav-logo .img-fluid {
    margin-top: 15px;
    margin-left: 50px;
  }
}

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

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #444;
  padding: 10px 15px;
  transition: 0.2s;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.nav-menu a:hover {
  background-color: #f5f5f5;
  border-radius: 5px;
  color: #444;
  transform: scale(1.03, 1.03);
}

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

.nav-menu .drop-down i {
  padding-left: 15px;
  float: right;
  padding-top: 3px;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 20px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(161, 137, 127, 0.25);
  transition: ease all 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: 400;
  text-transform: none;
  color: #444;
}

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

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

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

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

.nav-menu .drop-down .drop-down li {
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}

.nav-menu .drop-down .drop-down i {
  padding-left: 50px;
}

.nav-menu .mobile-header-img img {
  /* visibility: hidden; */
  max-height: 0px;
  width: auto;
  padding: 0;
  margin: 0;
  display: block;
  position: relative;
}

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

/* Mobile Navigation  */
.mobile-nav-toggle {
  position: fixed;
  left: 25px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 20px;
  font-weight: 100;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
}

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

.mobile-nav {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  right: 0px;
  bottom: 0px;
  left: 0px;
  top: 60px;
  z-index: 9999;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  padding: 0px 0;
  height: 75%;
  background-color: rgba(255, 255, 255, 0.85);
  transition: ease-in-out 0.3s;
}

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

.mobile-nav a {
  top: calc(-0.5%);
  display: block;
  position: relative;
  color: #444;
  padding: 15px 20px;
  font-weight: 400;
  outline: none;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  text-align: center;
}

.mobile-nav .mobile-detail {
  color: #fff;
  font-weight: 200;
  font-size: 10px;
  text-align: center;
}

.mobile-nav .mobile-detail img {
  height: 60px;
  border-top: none;
}

.mobile-nav .mobile-detail .row a {
  border-top: 0.5px solid rgba(0, 0, 0, 0.25);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.25);
}

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

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

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

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

.mobile-nav i {
  padding-right: 30px;
  padding-left: 25px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 60px;
  left: 0;
  position: fixed;
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.3s;
  background-color: rgba(255, 255, 255, 0.85);
}

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

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

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

.mobile-nav .mobile-header-img img {
  height: 200px;
  width: auto;
  padding: 5px;
  margin: 5px;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: ease-in-out 0.3s;
}
@media (max-width: 992px) {
  #navigation .mobile-detail {
    visibility: visible;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header .header-img {
  background-image: url(../../assets/img/header.jpg);
  height: 600px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  image-rendering: -webkit-optimize-contrast;
}

#header .header-title {
  color: #444;
  height: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 0.75;
}

#header .header-title h1 {
  font-weight: 300;
  font-size: 2.5em;
}

#header .header-title p {
  font-weight: 300;
  font-size: 1.25em;
}

#header .header-title p span {
  text-decoration: underline;
}

@media (max-width: 992px) {
  #header .header-img {
    height: 100vh;
  }
  #header {
    height: 100vh;
  }
}

/*--------------------------------------------------------------
# Intro
--------------------------------------------------------------*/
#intro {
  margin-top: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#intro p,
#intro h3 {
  color: #444;
}

#intro .what-we-do .title {
  padding: 15px;
  display: inline-block;
  font-weight: 300;
  font-size: 1.75em;
}

#intro img {
  max-height: 250px;
  transition: ease-in-out 0.3s;
}

#intro img:hover {
  transform: scale(1.1, 1.1);
  filter: grayscale(100%);
}

#intro .box {
  text-align: center;
  padding: 30px;
  background-color: #fefefe;
  margin-bottom: 30px;
  border-radius: 10px;
}

#intro .head {
  font-weight: 400;
  margin-top: 28px;
  margin-bottom: 5px;
}

#intro .detail {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 300;
}

/*--------------------------------------------------------------
# Work
--------------------------------------------------------------*/
#work {
  margin-top: 15px;
  margin-bottom: 50px;
  text-align: center;
  background-color: #f9f9f9;
  height: 100%;
}

#work p,
#work h3 {
  color: #444;
}

#work .title {
  padding: 15px;
  display: inline-block;
  font-weight: 300;
  font-size: 1.75em;
}

#work .detail {
  display: block;
  font-weight: 300;
  font-size: 1em;
  text-align: center;
}

#work p {
  text-align: left;
}

#work img {
  max-width: 100%;
}

#work .work-img {
  padding: 0;
  background-image: url(../../assets/img/work.jpg);
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  image-rendering: -webkit-optimize-contrast;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  text-align: center;
  background-color: #f9f9f9;
  border-top: 0.5px solid #e5e5e5;
  visibility: visible;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

#footer p {
  padding: 5px;
  color: #444;
  font-weight: 300px;
  font-size: 12px;
  line-height: 1.8;
}

#footer span {
  text-decoration: underline;
  color: #444;
}

/*--------------------------------------------------------------
# Mobile-Header
--------------------------------------------------------------*/
#mobile-header .header-img {
  background-image: url(../../assets/img/header2.jpg);
  height: 600px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  image-rendering: -webkit-optimize-contrast;
}

#mobile-header .header-title {
  color: #fff;
  height: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 0.75;
}

#mobile-header .header-title h1 {
  font-weight: 300;
  font-size: 2.5em;
}

#mobile-header .header-title p {
  font-weight: 300;
  font-size: 1.25em;
}

#mobile-header .header-title p span {
  text-decoration: underline;
}

@media (max-width: 992px) {
  #mobile-header .header-img {
    height: 100vh;
  }
  #mobile-header {
    height: 100vh;
  }
}

/*--------------------------------------------------------------
# Mobile-Header
--------------------------------------------------------------*/
#mobile-info * {
  padding: 0px;
  margin: 0px;
}
#mobile-info .spread img {
  height: 250px;
  width: auto;
  position: relative;
  top: 25%;
  left: 40%;
}
#mobile-info .box-1 {
  background-color: #eee;
  height: 400px;
}
#mobile-info .box-2 {
  background-color: rgb(39, 39, 39);
  height: 400px;
}
#mobile-info .box-3 {
  background-color: #eee;
  height: 400px;
}

#mobile-info p {
  color: #444;
  font-weight: 300;
  font-size: 1.5em;
  padding: 30px;
  text-align: center;
}
