/*
 * Author: 3D1go
 */
/* */
/* */
/* ---------------------------
  TABLE OF CONTENTS
  1. GENERAL STYLING
  2. TYPOGRAPHY
  3. CURSOR
  4. HERO
  5. MENU
  6. BUTTONS
  7. CARDS
  8. SECTIONS
  9. FOOTER
  10. SCROLL TO TOP
  11. PRELOADER
  12. BLOG
  13. PORTFOLIO
  14. SINGLE PROJECT
  --------------------------*/
/* */
/* */
/* */
/* */
/* ---------------------------
  1. GENERAL STYLING
  --------------------------*/
/* */
/* line 37, src/sass/style.sass */
* {
  outline: none !important;
}

/* line 40, src/sass/style.sass */
html, body {
  overflow-x: hidden !important;
}

/* line 43, src/sass/style.sass */
html {
  font-size: 16px;
}

/* line 46, src/sass/style.sass */
body {
  background-color: black;
  font-family: 'Open Sans', sans-serif;
  color: white;
}

/* header logo */
.nj-navbar-logo img{
max-width: 140px;
   width: 100%;
}
/* service icons */
.nj-service-icon img{
max-width: 140px;
   width: 100%;
}

/* */
/* ---------------------------
  Helpers
  --------------------------*/
/* */
/* line 55, src/sass/style.sass */
#nj-responsive-indicator {
  display: none;
}

@media only screen and (max-width: 1024px), only screen and (max-device-width: 1024px) {
  /* line 55, src/sass/style.sass */
  #nj-responsive-indicator {
    display: block;
  }
}

/* line 60, src/sass/style.sass */
.nj-clearfix {
  clear: both;
}

/* line 63, src/sass/style.sass */
.nj-image-decorated {
  position: relative;
}

/* line 65, src/sass/style.sass */
.nj-image-decorated img {
  width: 100%;
  height: auto;
  z-index: 3;
  display: block;
  position: relative;
  transition: all .3s ease;
}

/* line 72, src/sass/style.sass */
.nj-image-decorated:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 2;
  transition: all .3s ease;
  left: 31px;
  bottom: 31px;
}

/* line 83, src/sass/style.sass */
.nj-image-decorated:hover img {
  transform: scale(1.025);
}

/* line 85, src/sass/style.sass */
.nj-image-decorated:hover:before {
  transform: translate3d(-3px, -3px, 0);
}

/* line 88, src/sass/style.sass */
.nj-image-decorated.nj-image-decorated-dark:before {
  background-color: #F3F3F3;
}

/* line 91, src/sass/style.sass */
.nj-image-decorated.nj-image-decorated-small:before {
  left: 21px;
  bottom: 21px;
}

/* line 95, src/sass/style.sass */
.nj-demo-image {
  width: 80%;
  margin: auto;
}

/* Margins */
/* line 100, src/sass/style.sass */
.nj-mt-0 {
  margin-top: 0 !important;
}

/* line 102, src/sass/style.sass */
.nj-mb-0 {
  margin-bottom: 0 !important;
}

/* line 104, src/sass/style.sass */
.nj-mt-20 {
  margin-top: 20px !important;
}

/* line 106, src/sass/style.sass */
.nj-mt-40 {
  margin-top: 40px !important;
}

/* line 108, src/sass/style.sass */
.nj-mt-60 {
  margin-top: 60px !important;
}

/* line 110, src/sass/style.sass */
.nj-mt-80 {
  margin-top: 80px !important;
}

/* Paddings */
/* line 114, src/sass/style.sass */
.nj-pdt-0 {
  padding-top: 0 !important;
}

/* line 116, src/sass/style.sass */
.nj-pdb-0 {
  padding-bottom: 0 !important;
}

/* line 118, src/sass/style.sass */
.nj-pdt-60 {
  padding-top: 60px !important;
}

/* line 120, src/sass/style.sass */
.nj-pdb-60 {
  padding-bottom: 60px !important;
}

/* */
/* ---------------------------
  Scroll animation
  --------------------------*/
/* */
/* line 129, src/sass/style.sass */
.nj_animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes nj_fade_in_up {
  from {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 141, src/sass/style.sass */
.nj_animated.fade_in_up {
  animation-name: nj_fade_in_up;
}

/* */
/* */
/* ---------------------------
  2. TYPOGRAPHY
  --------------------------*/
/* */
/* line 149, src/sass/style.sass */
.nj-mono, .nj-hero-social-buttons > ul > li > a, .nj-news-wrapper .nj-news-image-wrapper .nj-date-wrapper span.nj-date {
  font-family: 'Roboto Mono', monospace;
}

/* line 152, src/sass/style.sass */
.has-text-weight-black {
  font-weight: 900 !important;
}

/* line 155, src/sass/style.sass */
a:hover, a:visited, a:active, a:focus-within, a:focus {
  text-decoration: none !important;
}

/* line 158, src/sass/style.sass */
p {
  font-size: 1.25rem;
}

/* line 161, src/sass/style.sass */
h1 {
  font-size: 3rem;
  font-weight: 900;
}

/* line 165, src/sass/style.sass */
h2 {
  font-size: 2.5rem;
}

/* line 168, src/sass/style.sass */
h3 {
  font-size: 2rem;
}

/* line 171, src/sass/style.sass */
h4 {
  font-size: 1.5rem;
}

/* line 174, src/sass/style.sass */
h5 {
  font-size: 1.25rem;
}

/* line 177, src/sass/style.sass */
h6 {
  font-size: 1rem;
}

/* line 180, src/sass/style.sass */
h1.nj-hero-title {
  font-size: 3.9rem;
  cursor: default;
}

@media (max-width: 768px) {
  /* line 180, src/sass/style.sass */
  h1.nj-hero-title {
    font-size: 3.3rem;
  }
}

/* line 186, src/sass/style.sass */
p.nj-hero-description {
  font-size: 1.25rem;
}

/* line 189, src/sass/style.sass */
h2.nj-section-header-title {
  font-weight: 900;
  text-transform: lowercase;
  font-size: 3rem;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  /* line 189, src/sass/style.sass */
  h2.nj-section-header-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1200px) {
  /* line 189, src/sass/style.sass */
  h2.nj-section-header-title {
    font-size: 4rem;
  }
}

/* line 201, src/sass/style.sass */
h3.nj-portfolio-item-title-text {
  font-weight: 900;
  font-size: 2.25rem;
}

@media (min-width: 992px) {
  /* line 201, src/sass/style.sass */
  h3.nj-portfolio-item-title-text {
    font-size: 2.75rem;
    margin-left: 40px;
  }
}

@media (min-width: 1200px) {
  /* line 201, src/sass/style.sass */
  h3.nj-portfolio-item-title-text {
    font-size: 3.25rem;
  }
}

/* line 211, src/sass/style.sass */
p.nj-portfolio-item-desc-text {
  font-size: 1.25rem;
}

@media (min-width: 992px) {
  /* line 211, src/sass/style.sass */
  p.nj-portfolio-item-desc-text {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  /* line 211, src/sass/style.sass */
  p.nj-portfolio-item-desc-text {
    font-size: 1.75rem;
  }
}

/* line 220, src/sass/style.sass */
p.nj-client-testimonial-text,
p.nj-client-name,
p.nj-crew-item-desc,
p.nj-section-content,
p.nj-news-body-text {
  font-size: 1.25rem;
}

@media only screen and (max-width: 740px), only screen and (max-device-width: 740px) {
  /* line 220, src/sass/style.sass */
  p.nj-client-testimonial-text,
  p.nj-client-name,
  p.nj-crew-item-desc,
  p.nj-section-content,
  p.nj-news-body-text {
    font-size: 1rem;
  }
}

/* line 229, src/sass/style.sass */
.nj-blockquote {
  margin-top: 70px;
  margin-bottom: 70px;
}

/* line 234, src/sass/style.sass */
.nj-blockquote span.nj-quote svg {
  position: absolute;
}

/* line 237, src/sass/style.sass */
.nj-blockquote span.nj-blockquote-quote {
  padding: 5px 20px 5px 60px;
  display: inline-block;
  font-style: italic;
}

/* line 243, src/sass/style.sass */
.nj-blockquote span.nj-blockquote-author {
  padding-left: 60px;
  font-size: 1.125rem;
}

/* line 247, src/sass/style.sass */
a.nj-social-icon {
  color: black;
}

/* line 250, src/sass/style.sass */
ul.nj-inline-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  cursor: default;
}

/* line 255, src/sass/style.sass */
ul.nj-inline-list li {
  margin: 0 15px 0 0;
  display: inline-block;
}

/* */
/* */
/* ---------------------------
  3. CURSOR
  --------------------------*/
/* */
/* line 264, src/sass/style.sass */
#nj-cursor-follower {
  pointer-events: none;
  position: fixed;
  height: 45px;
  width: 45px;
  border: 1px solid white;
  border-radius: 50%;
  z-index: 9999;
  background-color: transparent;
  transition: border-color 0.3s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease, margin 0.3s ease;
  transform: scale(0);
}

/* line 275, src/sass/style.sass */
#nj-cursor-follower.nj-cursor-follower-dark {
  border-color: black;
}

/* line 277, src/sass/style.sass */
#nj-cursor-follower.nj-cursor-follower-hover-effect {
  width: 80px;
  height: 80px;
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 282, src/sass/style.sass */
#nj-cursor-follower.nj-cursor-follower-hover-effect.nj-cursor-follower-dark {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 284, src/sass/style.sass */
#nj-cursor-follower.nj-cursor-follower-blend-effect {
  width: 80px;
  height: 80px;
  border-color: transparent;
  background-color: #F3F3F3;
  mix-blend-mode: saturation;
}

/* line 290, src/sass/style.sass */
#nj-cursor-follower.nj-cursor-follower-exclusion-effect {
  width: 80px;
  height: 80px;
  border-color: transparent;
  background-color: #FFFFFF;
  mix-blend-mode: exclusion;
}

@media only screen and (max-width: 1024px), only screen and (max-device-width: 1024px) {
  /* line 264, src/sass/style.sass */
  #nj-cursor-follower {
    display: none;
  }
}

/* */
/* */
/* ---------------------------
  4. HERO
  --------------------------*/
/* */
/* line 305, src/sass/style.sass */
.section.nj-hero {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  position: relative;
}

/* line 312, src/sass/style.sass */
.section.nj-hero .nj-hero-body {
  align-items: center;
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  padding: 3rem 1.5rem;
  margin-top: 91px;
}

/* line 319, src/sass/style.sass */
.section.nj-hero .nj-hero-body > .container {
  flex-grow: 1;
  flex-shrink: 1;
}

/* line 323, src/sass/style.sass */
.section.nj-hero.nj-hero-no-nav .nj-hero-body {
  margin-top: 0;
}

/* line 326, src/sass/style.sass */
#nj-tropical-image {
  position: fixed;
  top: 91px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
}

/* line 337, src/sass/style.sass */
#nj-tropical-image.nj-three-image-small {
  top: 0;
  height: 80%;
}

/* line 342, src/sass/style.sass */
.section.nj-hero .nj-hero-image {
  position: absolute;
}

/* line 346, src/sass/style.sass */
.section.nj-hero-small {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 60vh;
}

/* line 352, src/sass/style.sass */
.section.nj-hero-small .nj-hero-body {
  align-items: center;
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  padding: 3rem 1.5rem;
}

/* line 359, src/sass/style.sass */
.nj-hero-title-wrapper {
  margin-left: 55px;
}

@media only screen and (max-width: 1200px), only screen and (max-device-width: 1200px) {
  /* line 359, src/sass/style.sass */
  .nj-hero-title-wrapper {
    margin-left: 0;
  }
}

/* line 363, src/sass/style.sass */
.nj-hero-title-wrapper .nj-hero-title {
  font-weight: 900;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  position: relative;
  display: inline-block;
}

/* line 370, src/sass/style.sass */
.nj-hero-title-wrapper .nj-hero-title:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: 1.5px;
  left: -55px;
  width: 40px;
  height: 3px;
  background-color: white;
}

/* line 379, src/sass/style.sass */
.nj-hero-title-wrapper .nj-hero-title:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: 1.5px;
  right: -55px;
  width: 40px;
  height: 3px;
  background-color: white;
}

/* line 389, src/sass/style.sass */
.nj-hero-title-wrapper .nj-hero-description {
  margin-top: 14px;
  margin-bottom: 14px;
}

/* line 393, src/sass/style.sass */
.nj-hero-title-wrapper .nj-hero-action {
  margin-top: 20px;
}

/* line 395, src/sass/style.sass */
.nj-hero-title-wrapper .nj-hero-action > a.nj-button {
  margin-left: 0;
}

/* */
/* ---------------------------
  3D scene
  --------------------------*/
/* */
/* line 403, src/sass/style.sass */
#nj-three-block {
  position: fixed;
  z-index: 0;
}

/* line 406, src/sass/style.sass */
body.nj-mobile-three.nj-page-has-three #nj-three-block {
  z-index: 5;
}

/* line 409, src/sass/style.sass */
.section, footer {
  position: relative;
}

/* */
/* ---------------------------
  Hero social buttons
  --------------------------*/
/* */
/* line 417, src/sass/style.sass */
.nj-hero-social-buttons {
  position: absolute;
  top: 50%;
  right: 0;
  transform: rotate(-90deg) translateY(600%);
  z-index: 5;
}

/* line 423, src/sass/style.sass */
.nj-hero-social-buttons > ul {
  margin: 0 auto;
  padding: 0;
}

/* line 426, src/sass/style.sass */
.nj-hero-social-buttons > ul > li {
  display: inline-block;
  margin: 0 10px;
  padding: 0 15px;
  list-style: none;
}

/* line 431, src/sass/style.sass */
.nj-hero-social-buttons > ul > li > a {
  color: white !important;
  font-size: 1rem;
  position: relative;
  z-index: 5;
}

/* line 437, src/sass/style.sass */
.nj-hero-social-buttons > ul > li > a:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: 1.5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: all .3s ease;
}

/* line 447, src/sass/style.sass */
.nj-hero-social-buttons > ul > li > a:hover, .nj-hero-social-buttons > ul > li > a.is-active {
  background-color: transparent;
}

/* line 449, src/sass/style.sass */
.nj-hero-social-buttons > ul > li > a:hover:after, .nj-hero-social-buttons > ul > li > a.is-active:after {
  width: 100%;
}

@media only screen and (max-width: 1200px), only screen and (max-device-width: 1200px) {
  /* line 417, src/sass/style.sass */
  .nj-hero-social-buttons {
    display: none;
  }
}

/* */
/* */
/* ---------------------------
  5. MENU
  --------------------------*/
/* */
/* line 459, src/sass/style.sass */
#nj-mobile-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  z-index: 6;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

/* line 469, src/sass/style.sass */
#nj-mobile-menu:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

/* line 479, src/sass/style.sass */
body.nj-mobile-three-before.nj-page-has-three #nj-mobile-menu:before {
  opacity: 0.1;
}

/* line 481, src/sass/style.sass */
#nj-mobile-menu.show {
  left: 0;
}

/* line 483, src/sass/style.sass */
#nj-mobile-menu .nj-mobile-menu-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}

/* line 492, src/sass/style.sass */
#nj-mobile-menu .nj-mobile-menu-content .nj-mobile-menu-item-wrapper {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

/* line 498, src/sass/style.sass */
body.nj-mobile-three-before #nj-mobile-menu .nj-mobile-menu-content .nj-mobile-menu-item-wrapper {
  opacity: 1;
}

/* line 500, src/sass/style.sass */
#nj-mobile-menu .nj-mobile-menu-content .nj-mobile-menu-item-wrapper a.nj-mobile-menu-item {
  display: block;
  font-weight: 900;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  font-size: 2.5rem;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 8;
}

/* line 512, src/sass/style.sass */
.nj-show-menu-button {
  position: fixed;
  z-index: 100;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: none;
}

@media only screen and (max-width: 1024px), only screen and (max-device-width: 1024px) {
  /* line 512, src/sass/style.sass */
  .nj-show-menu-button {
    display: block;
  }
}

/* line 523, src/sass/style.sass */
.nj-show-menu-button .nj-lines {
  display: block;
  top: 50%;
  left: 10px;
  margin-top: -2px;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition: all .5s ease;
}

/* line 534, src/sass/style.sass */
.nj-show-menu-button .nj-lines::before, .nj-show-menu-button .nj-lines::after {
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition: all .5s ease;
}

/* line 540, src/sass/style.sass */
.nj-show-menu-button .nj-lines::before, .nj-show-menu-button .nj-lines::after {
  content: "";
  display: block;
}

/* line 543, src/sass/style.sass */
.nj-show-menu-button .nj-lines::before {
  top: -9px;
  width: 26px;
  margin-left: 4px;
}

/* line 547, src/sass/style.sass */
.nj-show-menu-button .nj-lines::after {
  bottom: -9px;
  width: 20px;
  margin-left: 10px;
}

/* line 552, src/sass/style.sass */
.nj-show-menu-button:hover .nj-lines::before, .nj-show-menu-button:hover .nj-lines::after {
  width: 30px;
  margin-left: 0;
}

/* line 555, src/sass/style.sass */
.nj-show-menu-button.active .nj-lines {
  transform: rotate(225deg);
  transition-delay: 0.12s;
}

/* line 558, src/sass/style.sass */
.nj-show-menu-button.active .nj-lines::before {
  top: 0;
  opacity: 0;
  width: 30px;
  margin-left: 0;
}

/* line 563, src/sass/style.sass */
.nj-show-menu-button.active .nj-lines::after {
  bottom: 0;
  width: 30px;
  margin-left: 0;
  transform: rotate(-90deg);
}

/* line 569, src/sass/style.sass */
.nj-navbar {
  background-color: black;
}

/* line 571, src/sass/style.sass */
.nj-navbar .nj-navbar-logo {
  font-size: 48px;
  line-height: 65px;
  color: white;
  font-weight: 900;
}

/* line 576, src/sass/style.sass */
.nj-navbar .nj-navbar-flex-wrapper {
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: space-between;
  align-items: center;
}

/* line 585, src/sass/style.sass */
.nj-navbar .nj-navbar-flex-wrapper .nj-navbar-flex-item {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}

@media only screen and (max-width: 1024px), only screen and (max-device-width: 1024px) {
  /* line 590, src/sass/style.sass */
  .nj-navbar #nj-navbar_basic {
    display: none;
  }
}

/* line 594, src/sass/style.sass */
.nj-navbar a.navbar-item:not(.nj-navbar-logo-wrapper) {
  color: white;
  font-style: normal;
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 41px;
  padding: 0 40px;
  position: relative;
}

/* line 602, src/sass/style.sass */
.nj-navbar a.navbar-item:not(.nj-navbar-logo-wrapper):after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: 1.5px;
  left: 25px;
  width: 0;
  height: 3px;
  background-color: white;
  transition: all .3s ease;
}

/* line 612, src/sass/style.sass */
.nj-navbar a.navbar-item:not(.nj-navbar-logo-wrapper):hover, .nj-navbar a.navbar-item:not(.nj-navbar-logo-wrapper).is-active {
  background-color: transparent;
}

/* line 614, src/sass/style.sass */
.nj-navbar a.navbar-item:not(.nj-navbar-logo-wrapper):hover:after, .nj-navbar a.navbar-item:not(.nj-navbar-logo-wrapper).is-active:after {
  width: calc(100% - 50px);
}

/* line 616, src/sass/style.sass */
.nj-navbar a.navbar-item:not(.nj-navbar-logo-wrapper):focus, .nj-navbar a.navbar-item:not(.nj-navbar-logo-wrapper):focus-within {
  background-color: transparent;
}

/* */
/* */
/* ---------------------------
  6. BUTTONS
  --------------------------*/
/* */
/* line 624, src/sass/style.sass */
.nj-button {
  font-family: 'Open Sans', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.25rem;
  position: relative;
  margin-left: 50px;
}

/* line 631, src/sass/style.sass */
.nj-button:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -3.5px;
  transform: translateY(50%);
  left: -50px;
  width: 40px;
  height: 4px;
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

/* line 642, src/sass/style.sass */
.nj-button:hover:before {
  width: calc(100% + 55px);
}

/* line 645, src/sass/style.sass */
.nj-button.nj-button-white {
  color: white;
}

/* line 647, src/sass/style.sass */
.nj-button.nj-button-white:before {
  background-color: white;
}

/* line 650, src/sass/style.sass */
.nj-button.nj-button-black {
  color: black;
}

/* line 652, src/sass/style.sass */
.nj-button.nj-button-black:before {
  background-color: black;
}

/* line 655, src/sass/style.sass */
.nj-button.nj-button-large {
  font-size: 1.75rem;
}

/* line 657, src/sass/style.sass */
.nj-button.nj-button-large:before {
  margin-top: -5px;
  height: 6px;
}

@media screen and (max-width: 1200px) {
  /* line 655, src/sass/style.sass */
  .nj-button.nj-button-large {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  /* line 655, src/sass/style.sass */
  .nj-button.nj-button-large {
    font-size: 1.25rem;
  }
  /* line 664, src/sass/style.sass */
  .nj-button.nj-button-large:before {
    margin-top: -3.5px;
    height: 4px;
  }
}

/* line 668, src/sass/style.sass */
.nj-button-wrapper {
  margin: auto;
}

/* */
/* */
/* ---------------------------
  7. CARDS
  --------------------------*/
/* */
/* line 676, src/sass/style.sass */
.nj-simple-card-wrapper {
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 40px;
  z-index: 3;
  position: relative;
}

/* line 683, src/sass/style.sass */
.nj-simple-card-wrapper .nj-simple-card {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  background-color: #F3F3F3;
  padding: 80px 40px 60px 40px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.25);
  transition: all .3s ease;
}

/* line 694, src/sass/style.sass */
.nj-simple-card-wrapper .nj-simple-card:hover {
  transform: scale(1.025);
}

/* line 696, src/sass/style.sass */
.nj-simple-card-wrapper .nj-simple-card .nj-simple-card-icon-wrapper {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}

/* line 700, src/sass/style.sass */
.nj-simple-card-wrapper .nj-simple-card .nj-simple-card-text-wrapper {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  margin-top: 20px;
  cursor: default;
}

/* line 706, src/sass/style.sass */
.nj-simple-card-wrapper .nj-simple-card .nj-simple-card-text-wrapper .nj-simple-card-text {
  color: black;
  text-align: center;
}

/* */
/* */
/* ---------------------------
  8. SECTIONS
  --------------------------*/
/* */
/* line 715, src/sass/style.sass */
main {
  margin-top: 91px;
}

/* line 718, src/sass/style.sass */
.section:not(.nj-hero) {
  padding-top: 120px;
  padding-bottom: 120px;
}

/* line 721, src/sass/style.sass */
.section.nj-dark-section {
  background-color: black;
}

/* line 723, src/sass/style.sass */
.section.nj-light-section {
  background-color: #F3F3F3;
  color: black;
}

/* line 726, src/sass/style.sass */
.section .container {
  padding-left: 20px;
  padding-right: 20px;
}

/* line 729, src/sass/style.sass */
.section .nj-section-header {
  margin-bottom: 80px;
}

/* line 731, src/sass/style.sass */
.section .nj-section-header.nj-nested-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: space-between;
  align-items: center;
}

/* line 738, src/sass/style.sass */
.section .nj-section-header.nj-nested-header .nj-section-header-left, .section .nj-section-header.nj-nested-header .nj-section-header-right {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}

@media screen and (max-width: 860px) {
  /* line 731, src/sass/style.sass */
  .section .nj-section-header.nj-nested-header {
    display: block;
  }
  /* line 744, src/sass/style.sass */
  .section .nj-section-header.nj-nested-header .nj-section-header-left, .section .nj-section-header.nj-nested-header .nj-section-header-right {
    display: block;
  }
  /* line 746, src/sass/style.sass */
  .section .nj-section-header.nj-nested-header .nj-section-header-right {
    margin-top: 20px;
  }
}

/* line 749, src/sass/style.sass */
.nj-half-light-section-wrapper {
  position: relative;
}

/* line 751, src/sass/style.sass */
.nj-half-light-section-wrapper .nj-half-light-section-wrapper-before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f3f3f3;
  content: "";
  top: 120px;
  bottom: 0;
}

/* */
/* ---------------------------
  SECTION [Who we are]
  --------------------------*/
/* */
/* line 764, src/sass/style.sass */
.section#nj-who-we-are {
  background-color: transparent;
}

/* line 766, src/sass/style.sass */
.section#nj-who-we-are .nj-section-content {
  font-style: normal;
  font-weight: normal;
}

/* */
/* ---------------------------
  SECTION [What we do]
  --------------------------*/
/* */
/* line 774, src/sass/style.sass */
.section#nj-what-we-do {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
}

/* line 778, src/sass/style.sass */
.section#nj-what-we-do .nj-section-header > h1 {
  color: white;
}

/* */
/* ---------------------------
  SECTION [Our works]
  --------------------------*/
/* */
/* line 785, src/sass/style.sass */
.nj-portfolio-item-wrapper {
  margin-top: 160px;
}

@media only screen and (max-width: 1024px), only screen and (max-device-width: 1024px) {
  /* line 785, src/sass/style.sass */
  .nj-portfolio-item-wrapper {
    margin-top: 40px;
  }
}

/* line 789, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-right {
  flex-direction: row-reverse;
}

/* line 791, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-left {
  flex-direction: row;
}

/* line 793, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-right, .nj-portfolio-item-wrapper .nj-portfolio-item-left {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}

/* line 799, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-text-wrapper, .nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-image-wrapper, .nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-text-wrapper, .nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-image-wrapper {
  order: 0;
  flex: 0 1 auto;
  align-self: center;
}

/* line 803, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-text-wrapper .nj-button-wrapper, .nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-image-wrapper .nj-button-wrapper, .nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-text-wrapper .nj-button-wrapper, .nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-image-wrapper .nj-button-wrapper {
  text-align: center;
}

/* line 805, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-image-wrapper, .nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-image-wrapper {
  max-width: 750px;
  min-width: 50%;
  position: relative;
}

/* line 809, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-image-wrapper img, .nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-image-wrapper img {
  width: 100%;
  height: auto;
  z-index: 3;
  display: block;
  position: relative;
  transition: all .3s ease;
}

/* line 816, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-image-wrapper:before, .nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-image-wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 2;
  transition: all .3s ease;
}

/* line 825, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-image-wrapper:hover img, .nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-image-wrapper:hover img {
  transform: scale(1.025);
}

/* line 827, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-text-wrapper, .nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-text-wrapper {
  color: black;
  z-index: 4;
}

/* line 830, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-text-wrapper .nj-button-wrapper, .nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-text-wrapper .nj-button-wrapper {
  margin-top: 70px;
}

/* line 834, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-text {
  position: relative;
  left: 0;
}

/* line 837, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-text .nj-portfolio-item-desc {
  text-align: center;
}

/* line 840, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-image-wrapper:before {
  left: 31px;
  bottom: 31px;
}

/* line 844, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-image-wrapper:hover:before {
  transform: translate3d(-3px, 3px, 0);
}

/* line 848, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-text {
  position: relative;
  left: 0;
}

/* line 851, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-text .nj-portfolio-item-desc {
  text-align: center;
}

/* line 854, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-image-wrapper:before {
  right: 31px;
  bottom: 31px;
}

/* line 858, src/sass/style.sass */
.nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-image-wrapper:hover:before {
  transform: translate3d(3px, 3px, 0);
}

@media only screen and (max-width: 1024px), only screen and (max-device-width: 1024px) {
  /* line 862, src/sass/style.sass */
  .nj-portfolio-item-wrapper .nj-portfolio-item-right, .nj-portfolio-item-wrapper .nj-portfolio-item-left {
    display: block;
  }
  /* line 864, src/sass/style.sass */
  .nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-image-wrapper, .nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-image-wrapper {
    margin: 40px auto 0 auto;
  }
  /* line 866, src/sass/style.sass */
  .nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-text-wrapper, .nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-text-wrapper {
    margin-bottom: 60px;
    margin-top: 20px;
  }
  /* line 869, src/sass/style.sass */
  .nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-text-wrapper .nj-button-wrapper, .nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-text-wrapper .nj-button-wrapper {
    margin-top: 20px;
  }
  /* line 872, src/sass/style.sass */
  .nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-text {
    left: 0;
    text-align: center;
  }
  /* line 876, src/sass/style.sass */
  .nj-portfolio-item-wrapper .nj-portfolio-item-right .nj-portfolio-item-image-wrapper:before {
    left: 13px;
    bottom: 13px;
  }
  /* line 880, src/sass/style.sass */
  .nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-text {
    left: 0;
    text-align: center;
  }
  /* line 884, src/sass/style.sass */
  .nj-portfolio-item-wrapper .nj-portfolio-item-left .nj-portfolio-item-image-wrapper:before {
    left: 13px;
    bottom: 13px;
  }
}

/* */
/* ---------------------------
  SECTION [Our crew]
  --------------------------*/
/* */
/* line 892, src/sass/style.sass */
.nj-crew-slider-wrapper {
  position: relative;
}

@media only screen and (max-width: 920px), only screen and (max-device-width: 920px) {
  /* line 894, src/sass/style.sass */
  .nj-crew-slider-wrapper .nj-crew-slider-arrows {
    display: none;
  }
}

/* line 897, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider-arrows .nj-crew-slider-prev-arrow,
.nj-crew-slider-wrapper .nj-crew-slider-arrows .nj-crew-slider-next-arrow {
  position: absolute;
  top: 50%;
  z-index: 999;
  margin-top: 24px;
  cursor: pointer;
}

/* line 904, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider-arrows .nj-crew-slider-prev-arrow > span,
.nj-crew-slider-wrapper .nj-crew-slider-arrows .nj-crew-slider-next-arrow > span {
  font-size: 48px;
  line-height: 48px;
}

/* line 907, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider-arrows .nj-crew-slider-prev-arrow {
  left: -60px;
}

/* line 909, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider-arrows .nj-crew-slider-next-arrow {
  right: -60px;
}

/* line 912, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100px;
  background: linear-gradient(90deg, #000000 10%, rgba(0, 0, 0, 0) 100%);
  z-index: 4;
}

@media only screen and (max-width: 740px), only screen and (max-device-width: 740px) {
  /* line 912, src/sass/style.sass */
  .nj-crew-slider-wrapper .nj-crew-slider:before {
    display: none;
  }
}

/* line 923, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 100px;
  background: linear-gradient(270deg, #000000 10%, rgba(0, 0, 0, 0) 100%);
  z-index: 4;
}

@media only screen and (max-width: 740px), only screen and (max-device-width: 740px) {
  /* line 923, src/sass/style.sass */
  .nj-crew-slider-wrapper .nj-crew-slider:after {
    display: none;
  }
}

/* line 934, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider .nj-crew-item {
  margin: 0 20px;
  position: relative;
}

/* line 937, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider .nj-crew-item .nj-crew-item-img-wrapper {
  position: relative;
}

/* line 940, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider .nj-crew-item .nj-crew-item-img-wrapper .nj-crew-item-img img {
  width: 100%;
  height: auto;
}

/* line 943, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider .nj-crew-item .nj-crew-item-img-wrapper .nj-crew-item-socials {
  position: absolute;
  bottom: 22px;
  left: 31px;
  opacity: 0;
  transition: all 0.3s ease;
}

/* line 949, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider .nj-crew-item .nj-crew-item-img-wrapper .nj-crew-item-socials > ul {
  padding-left: 0;
}

/* line 951, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider .nj-crew-item .nj-crew-item-img-wrapper .nj-crew-item-socials > ul > li {
  display: inline;
  margin-right: 30px;
}

@media only screen and (max-width: 740px), only screen and (max-device-width: 740px) {
  /* line 951, src/sass/style.sass */
  .nj-crew-slider-wrapper .nj-crew-slider .nj-crew-item .nj-crew-item-img-wrapper .nj-crew-item-socials > ul > li {
    margin-right: 10px;
  }
}

/* line 956, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider .nj-crew-item .nj-crew-item-img-wrapper .nj-crew-item-socials > ul > li > a > i {
  color: white;
  font-size: 24px;
}

@media only screen and (max-width: 1200px), only screen and (max-device-width: 1200px) {
  /* line 956, src/sass/style.sass */
  .nj-crew-slider-wrapper .nj-crew-slider .nj-crew-item .nj-crew-item-img-wrapper .nj-crew-item-socials > ul > li > a > i {
    font-size: 12px;
  }
}

@media only screen and (max-width: 740px), only screen and (max-device-width: 740px) {
  /* line 956, src/sass/style.sass */
  .nj-crew-slider-wrapper .nj-crew-slider .nj-crew-item .nj-crew-item-img-wrapper .nj-crew-item-socials > ul > li > a > i {
    font-size: 18px;
    margin-right: 10px;
  }
}

/* line 964, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider .nj-crew-item .nj-crew-item-desc-wrapper {
  opacity: 0;
  transition: all 0.3s ease;
}

/* line 967, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider .nj-crew-item .nj-crew-item-desc-wrapper .nj-crew-item-desc {
  margin-top: 12px;
}

/* line 970, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider .nj-crew-item.nj-slick-next-active .nj-crew-item-socials {
  opacity: 1;
}

/* line 972, src/sass/style.sass */
.nj-crew-slider-wrapper .nj-crew-slider .nj-crew-item.nj-slick-next-active .nj-crew-item-desc-wrapper {
  opacity: 1;
}

/* */
/* ---------------------------
  SECTION [Testimonials]
  --------------------------*/
/* */
/* line 979, src/sass/style.sass */
.nj-testimonials-wrapper {
  position: relative;
}

/* line 981, src/sass/style.sass */
.nj-testimonials-wrapper .nj-testimonials-slider-next-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  cursor: pointer;
  margin-top: -24px;
}

/* line 987, src/sass/style.sass */
.nj-testimonials-wrapper .nj-testimonials-slider-next-arrow > span {
  color: black;
  font-size: 48px;
  line-height: 48px;
}

/* line 991, src/sass/style.sass */
.nj-testimonials-wrapper .nj-testimonials {
  position: relative;
  border-left: 3px solid black;
  padding-left: 60px;
  min-height: 350px;
}

/* line 996, src/sass/style.sass */
.nj-testimonials-wrapper .nj-testimonials .nj-testimonial {
  padding-top: 10px;
  padding-left: 5px;
}

/* line 999, src/sass/style.sass */
.nj-testimonials-wrapper .nj-testimonials .nj-testimonial .nj-client-testimonial {
  margin-top: 35px;
  margin-bottom: 35px;
  max-width: 900px;
}

/* line 1004, src/sass/style.sass */
.nj-testimonials-wrapper .nj-testimonials-slider-arrows span {
  transition: all .3s ease;
}

/* line 1007, src/sass/style.sass */
.nj-testimonials-wrapper .nj-testimonials-slider-arrows:hover span {
  margin-right: -5px;
}

@media only screen and (max-width: 1200px), only screen and (max-device-width: 1200px) {
  /* line 1011, src/sass/style.sass */
  .nj-testimonials-slider-arrows {
    display: none !important;
  }
}

/* */
/* ---------------------------
  SECTION [What's new]
  --------------------------*/
/* */
/* line 1020, src/sass/style.sass */
.nj-news-wrapper {
  padding-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
}

/* line 1024, src/sass/style.sass */
.nj-news-wrapper .nj-news-image-wrapper {
  position: relative;
}

@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  /* line 1024, src/sass/style.sass */
  .nj-news-wrapper .nj-news-image-wrapper {
    margin-bottom: 40px;
  }
}

/* line 1029, src/sass/style.sass */
.nj-news-wrapper .nj-news-image-wrapper .nj-month-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(-65%, 255%, 0);
}

/* line 1034, src/sass/style.sass */
.nj-news-wrapper .nj-news-image-wrapper .nj-month-wrapper span.nj-month {
  display: block;
  font-size: 1.5rem;
  transform: rotate(90deg);
}

@media only screen and (max-width: 1200px), only screen and (max-device-width: 1200px) {
  /* line 1034, src/sass/style.sass */
  .nj-news-wrapper .nj-news-image-wrapper .nj-month-wrapper span.nj-month {
    font-size: 1.25rem;
  }
}

/* line 1040, src/sass/style.sass */
.nj-news-wrapper .nj-news-image-wrapper .nj-date-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(-20%, -60%, 0);
}

/* line 1045, src/sass/style.sass */
.nj-news-wrapper .nj-news-image-wrapper .nj-date-wrapper span.nj-date {
  display: block;
  font-size: 7.5rem;
  font-weight: 900;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000;
  letter-spacing: 2px;
  color: transparent;
}

/* line 1054, src/sass/style.sass */
.nj-news-wrapper .nj-news-image-wrapper .nj-author-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(42%, -120%, 0);
  max-width: 300px;
}

@media only screen and (max-width: 1240px) {
  /* line 1054, src/sass/style.sass */
  .nj-news-wrapper .nj-news-image-wrapper .nj-author-wrapper {
    transform: translate3d(52%, -120%, 0);
  }
}

@media only screen and (max-width: 500px) {
  /* line 1054, src/sass/style.sass */
  .nj-news-wrapper .nj-news-image-wrapper .nj-author-wrapper {
    max-width: 200px;
  }
}

/* line 1064, src/sass/style.sass */
.nj-news-wrapper .nj-news-image-wrapper .nj-author-wrapper span.nj-author {
  font-size: 1.5rem;
}

@media only screen and (max-width: 1200px), only screen and (max-device-width: 1200px) {
  /* line 1064, src/sass/style.sass */
  .nj-news-wrapper .nj-news-image-wrapper .nj-author-wrapper span.nj-author {
    font-size: 1.25rem;
  }
}

/* line 1068, src/sass/style.sass */
.nj-news-wrapper .nj-news-image-wrapper img {
  width: 100%;
  height: auto;
}

/* line 1071, src/sass/style.sass */
.nj-news-wrapper .nj-news-body-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: space-around;
  align-items: flex-start;
}

/* line 1079, src/sass/style.sass */
.nj-news-wrapper .nj-news-body-wrapper .nj-news-body {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}

/* line 1083, src/sass/style.sass */
.nj-news-wrapper .nj-news-body-wrapper .nj-news-body .nj-news-header {
  font-weight: 600;
  text-transform: uppercase;
}

/* line 1086, src/sass/style.sass */
.nj-news-wrapper .nj-news-body-wrapper .nj-news-body .nj-news-body-text {
  margin-top: 11px;
  margin-bottom: 11px;
}

/* line 1089, src/sass/style.sass */
.nj-news-wrapper .nj-news-body-wrapper .nj-read-more-button-wrapper {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  margin-bottom: 10px;
}

/* */
/* */
/* ---------------------------
  9. FOOTER
  --------------------------*/
/* */
/* footer logo */
.nj-footer-logo img{
max-width: 140px;
   width: 100%;
}

/* line 1100, src/sass/style.sass */
footer {
  padding: 3rem 1.5rem 3rem !important;
}

/* line 1102, src/sass/style.sass */
footer .container {
  padding-left: 20px;
  padding-right: 20px;
}

/* line 1105, src/sass/style.sass */
.nj-footer {
  background-color: black;
  color: white;
}

/* line 1108, src/sass/style.sass */
.nj-footer .nj-footer-logo-wraper {
  margin-top: 20px;
  margin-bottom: 50px;
}

/* line 1111, src/sass/style.sass */
.nj-footer .nj-footer-logo-wraper .nj-footer-logo {
  font-size: 48px;
  line-height: 65px;
  color: #fff;
  font-weight: 900;
}

/* line 1118, src/sass/style.sass */
.nj-footer .nj-footer-contacts-wrapper .nj-footer-contacts table tr td {
  padding-right: 20px;
  padding-bottom: 20px;
  max-width: 550px;
  min-width: 45px;
  font-size: 1.25rem;
}

/* line 1124, src/sass/style.sass */
.nj-footer .nj-footer-socials-wrapper {
  margin-top: 30px;
  margin-bottom: 10px;
  border-top: 1px solid #C4C4C4;
}

/* line 1129, src/sass/style.sass */
.nj-footer .nj-footer-socials-wrapper .nj-footer-socials > ul {
  text-align: left;
  margin-top: 30px;
}

/* line 1132, src/sass/style.sass */
.nj-footer .nj-footer-socials-wrapper .nj-footer-socials > ul > li {
  display: inline-block;
  margin: auto 8px;
}

/* line 1135, src/sass/style.sass */
.nj-footer .nj-footer-socials-wrapper .nj-footer-socials > ul > li > a {
  color: white !important;
  font-size: 1.25rem;
}

@media only screen and (max-width: 1200px), only screen and (max-device-width: 1200px) {
  /* line 1135, src/sass/style.sass */
  .nj-footer .nj-footer-socials-wrapper .nj-footer-socials > ul > li > a {
    font-size: 1rem;
  }
}

/* */
/* */
/* ---------------------------
  10. SCROLL TO TOP
  --------------------------*/
/* */
/* line 1147, src/sass/style.sass */
.nj-scroll-to-top-holder > a#nj-scroll-to-top {
  height: 120px;
  width: 50px;
  bottom: -100%;
  background: 0 0 !important;
  color: white;
  position: fixed;
  right: 20px;
  z-index: 100;
  text-indent: -9999px;
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

/* line 1158, src/sass/style.sass */
.nj-scroll-to-top-holder > a#nj-scroll-to-top:after {
  content: "top";
  color: white;
  transform: rotate(90deg) translateX(-100%);
  top: 95px;
  text-transform: lowercase;
  font-size: 13px;
  letter-spacing: 2px;
  left: 14px;
  font-weight: 600 !important;
  text-decoration: none !important;
  line-height: 1;
  position: absolute;
  text-indent: 0;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}

/* line 1175, src/sass/style.sass */
.nj-scroll-to-top-holder > a#nj-scroll-to-top:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  margin-left: 1px;
  height: 50px;
  background: white;
  transform-origin: center center;
  transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}

/* line 1187, src/sass/style.sass */
.nj-scroll-to-top-holder > a#nj-scroll-to-top:hover:after {
  top: 100px;
}

/* line 1189, src/sass/style.sass */
.nj-scroll-to-top-holder > a#nj-scroll-to-top:hover:before {
  top: -5px;
}

/* line 1191, src/sass/style.sass */
.nj-scroll-to-top-holder > a#nj-scroll-to-top.nj-dark {
  color: black;
}

/* line 1193, src/sass/style.sass */
.nj-scroll-to-top-holder > a#nj-scroll-to-top.nj-dark:after {
  color: black;
}

/* line 1195, src/sass/style.sass */
.nj-scroll-to-top-holder > a#nj-scroll-to-top.nj-dark:before {
  background: black;
}

/* line 1197, src/sass/style.sass */
.nj-scroll-to-top-holder.nj-appear > a#nj-scroll-to-top {
  bottom: 0;
}

/* */
/* */
/* ---------------------------
  11. PRELOADER
  --------------------------*/
/* */
/* line 1206, src/sass/style.sass */
#nj-preloader-wrapper {
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}

/* line 1221, src/sass/style.sass */
#nj-preloader-wrapper .nj-preloader-inner {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}

/* line 1225, src/sass/style.sass */
#nj-preloader-wrapper .nj-preloader-inner .nj-preloader-percentage {
  font-weight: 900;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  font-size: 4rem;
  text-transform: uppercase;
  text-align: center;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

/* line 1235, src/sass/style.sass */
#nj-preloader-wrapper .nj-preloader-inner .nj-preloader-percentage.nj-loaded {
  transform: translateY(-10%);
  opacity: 0;
}

/* line 1238, src/sass/style.sass */
#nj-preloader-wrapper.nj-loaded {
  transform: translateY(-100%);
}

/* */
/* */
/* ---------------------------
  12. BLOG
  --------------------------*/
/* */
/* line 1247, src/sass/style.sass */
.nj-post-holder .nj-post-inner {
  font-size: 1.5rem;
}

/* line 1249, src/sass/style.sass */
.nj-post-holder .nj-post-inner .nj-post-title {
  margin: 20px 0;
}

/* line 1251, src/sass/style.sass */
.nj-post-holder .nj-post-inner .nj-post-title > h2 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* line 1255, src/sass/style.sass */
.nj-post-holder .nj-post-inner .nj-post-thumbnail-holder {
  margin: 40px auto 50px auto;
}

/* line 1257, src/sass/style.sass */
.nj-post-holder .nj-post-inner .nj-post-thumbnail-holder > img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 740px), only screen and (max-device-width: 740px) {
  /* line 1255, src/sass/style.sass */
  .nj-post-holder .nj-post-inner .nj-post-thumbnail-holder {
    margin: 20px auto 30px auto;
  }
}

/* line 1262, src/sass/style.sass */
.nj-post-holder .nj-post-inner .nj-post-desc-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: baseline;
  margin-bottom: 40px;
}

@media only screen and (max-width: 740px), only screen and (max-device-width: 740px) {
  /* line 1262, src/sass/style.sass */
  .nj-post-holder .nj-post-inner .nj-post-desc-holder {
    margin-bottom: 30px;
  }
}

/* line 1272, src/sass/style.sass */
.nj-post-holder .nj-post-inner .nj-post-desc-holder .nj-post-desc-author, .nj-post-holder .nj-post-inner .nj-post-desc-holder .nj-post-desc-tags {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}

/* line 1276, src/sass/style.sass */
.nj-post-holder .nj-post-inner .nj-post-desc-holder .nj-post-desc-author {
  font-size: 1.5rem;
  font-weight: normal;
}

/* line 1279, src/sass/style.sass */
.nj-post-holder .nj-post-inner .nj-post-desc-holder .nj-post-desc-author span {
  font-weight: 900;
}

@media only screen and (max-width: 740px), only screen and (max-device-width: 740px) {
  /* line 1276, src/sass/style.sass */
  .nj-post-holder .nj-post-inner .nj-post-desc-holder .nj-post-desc-author {
    font-size: 1.125rem;
  }
}

/* line 1283, src/sass/style.sass */
.nj-post-holder .nj-post-inner .nj-post-desc-holder .nj-post-desc-tags {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media only screen and (max-width: 740px), only screen and (max-device-width: 740px) {
  /* line 1283, src/sass/style.sass */
  .nj-post-holder .nj-post-inner .nj-post-desc-holder .nj-post-desc-tags {
    font-size: 1rem;
  }
}

/* line 1290, src/sass/style.sass */
.nj-read-also-holder {
  display: block;
  margin-bottom: 20px;
}

/* line 1293, src/sass/style.sass */
.nj-read-also-holder .nj-read-also-header {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 33px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 33px;
}

/* line 1300, src/sass/style.sass */
.nj-read-also-left, .nj-read-also-right {
  position: relative;
  margin-bottom: 40px;
}

/* line 1304, src/sass/style.sass */
.nj-read-also-left .nj-read-also-right-image-wrapper img, .nj-read-also-left .nj-read-also-left-image-wrapper img, .nj-read-also-right .nj-read-also-right-image-wrapper img, .nj-read-also-right .nj-read-also-left-image-wrapper img {
  width: 100%;
  height: auto;
}

/* line 1307, src/sass/style.sass */
.nj-read-also-left a.nj-read-also-left-arrow, .nj-read-also-left .nj-read-also-right-arrow, .nj-read-also-right a.nj-read-also-left-arrow, .nj-read-also-right .nj-read-also-right-arrow {
  display: block;
  transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}

/* line 1310, src/sass/style.sass */
.nj-read-also-left .nj-read-also-left-text-header, .nj-read-also-left .nj-read-also-right-text-header, .nj-read-also-right .nj-read-also-left-text-header, .nj-read-also-right .nj-read-also-right-text-header {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 33px;
  text-transform: uppercase;
  margin-top: 20px;
}

/* line 1317, src/sass/style.sass */
.nj-read-also-left:hover .nj-read-also-left-arrow, .nj-read-also-left:hover .nj-read-also-right-arrow, .nj-read-also-right:hover .nj-read-also-left-arrow, .nj-read-also-right:hover .nj-read-also-right-arrow {
  transform: translateX(10px);
}

/* line 1320, src/sass/style.sass */
.nj-post-tags-wrapper {
  margin-top: 40px;
}

/* line 1323, src/sass/style.sass */
.nj-blog-afterline {
  margin-top: 77px;
  margin-bottom: 58px;
  width: 100%;
  height: 1px;
  background-color: black;
}

/* line 1331, src/sass/style.sass */
.nj-tag-cloud a.nj-tag {
  color: #0f0f0f;
  font-weight: 400;
  font-size: 14px;
  background-color: transparent;
  border: 1px solid black;
  display: inline-block;
  line-height: 20px;
  padding: 10px 15px;
  margin: 0 5px 10px 0;
  vertical-align: top;
  transition: all .5s;
}

/* line 1343, src/sass/style.sass */
.nj-tag-cloud a.nj-tag:hover {
  background-color: black;
  color: #fff;
}

/* line 1347, src/sass/style.sass */
.nj-author-description-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  background-color: #ececec;
  margin-top: 40px;
}

/* line 1354, src/sass/style.sass */
.nj-author-description-holder .nj-author-description-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  min-height: 142px;
  padding: 39px 28px 34px;
  box-sizing: border-box;
}

/* line 1362, src/sass/style.sass */
.nj-author-description-holder .nj-author-description-inner .nj-author-description-image-holder {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  float: left;
  border-radius: 100%;
  overflow: hidden;
  width: 140px;
  height: 140px;
}

@media only screen and (max-width: 740px), only screen and (max-device-width: 740px) {
  /* line 1362, src/sass/style.sass */
  .nj-author-description-holder .nj-author-description-inner .nj-author-description-image-holder {
    float: none;
    margin-bottom: 10px;
  }
}

/* line 1374, src/sass/style.sass */
.nj-author-description-holder .nj-author-description-inner .nj-author-description-image-holder img.nj-author-description-image {
  width: 100%;
  height: auto;
}

/* line 1377, src/sass/style.sass */
.nj-author-description-holder .nj-author-description-inner .nj-author-description-text-holder {
  position: relative;
  padding: 0 0 0 166px;
}

@media only screen and (max-width: 740px), only screen and (max-device-width: 740px) {
  /* line 1377, src/sass/style.sass */
  .nj-author-description-holder .nj-author-description-inner .nj-author-description-text-holder {
    padding: 0;
  }
}

/* line 1382, src/sass/style.sass */
.nj-author-description-holder .nj-author-description-inner .nj-author-description-text-holder .nj-author-name {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* line 1387, src/sass/style.sass */
.nj-author-description-holder .nj-author-description-inner .nj-author-description-text-holder .nj-author-text {
  margin: 10px 0;
  font-size: 1rem;
}

/* line 1391, src/sass/style.sass */
.nj-author-description-holder .nj-author-description-inner .nj-author-description-text-holder .nj-author-social-links ul.nj-inline-list > li {
  font-size: 1rem;
  color: black;
}

/* line 1394, src/sass/style.sass */
.nj-author-description-holder .nj-author-description-inner .nj-author-description-text-holder .nj-author-social-links ul.nj-inline-list > li > span {
  font-weight: 600;
  text-transform: uppercase;
}

/* */
/* */
/* ---------------------------
  13. PORTFOLIO
  --------------------------*/
/* */
/* line 1403, src/sass/style.sass */
.nj-portfolio-filters {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* line 1406, src/sass/style.sass */
.nj-portfolio-filters ul > li > a {
  color: black;
  font-style: normal;
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 41px;
  padding: 0 50px;
  position: relative;
}

/* line 1414, src/sass/style.sass */
.nj-portfolio-filters ul > li > a:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: 1.5px;
  left: 25px;
  width: 0;
  height: 3px;
  background-color: black;
  transition: all .3s ease;
}

/* line 1424, src/sass/style.sass */
.nj-portfolio-filters ul > li > a:hover, .nj-portfolio-filters ul > li > a.is-active {
  background-color: transparent;
}

/* line 1426, src/sass/style.sass */
.nj-portfolio-filters ul > li > a:hover:after, .nj-portfolio-filters ul > li > a.is-active:after {
  width: calc(100% - 50px);
}

/* line 1429, src/sass/style.sass */
.nj-grid-sizer, .nj-portfolio-item {
  width: 33.3333333333%;
}

@media only screen and (max-width: 1024px) {
  /* line 1429, src/sass/style.sass */
  .nj-grid-sizer, .nj-portfolio-item {
    width: 50%;
  }
}

@media only screen and (max-width: 740px) {
  /* line 1429, src/sass/style.sass */
  .nj-grid-sizer, .nj-portfolio-item {
    width: 100%;
  }
}

/* line 1436, src/sass/style.sass */
.nj-portfolio-item {
  overflow: hidden;
  position: relative;
  outline: 0;
  float: left;
  height: auto;
}

/* line 1442, src/sass/style.sass */
.nj-portfolio-item > a {
  display: block;
  position: relative;
}

/* line 1445, src/sass/style.sass */
.nj-portfolio-item > a img {
  display: block;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  width: 100%;
  height: auto;
}

/* line 1452, src/sass/style.sass */
.nj-portfolio-item > a .nj-portfolio-item-text-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

/* line 1459, src/sass/style.sass */
.nj-portfolio-item > a .nj-portfolio-item-text-wrapper .nj-portfolio-item-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

/* line 1464, src/sass/style.sass */
.nj-portfolio-item > a .nj-portfolio-item-text-wrapper .nj-portfolio-item-text span.nj-portfolio-item-name {
  position: relative;
  display: block;
  color: white;
  font-size: 2rem;
  font-weight: 900;
  z-index: 3;
  top: 0;
  left: 0;
  transform: translateY(20%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  padding-right: 20px;
  padding-left: 20px;
}

@media only screen and (max-width: 1440px) {
  /* line 1464, src/sass/style.sass */
  .nj-portfolio-item > a .nj-portfolio-item-text-wrapper .nj-portfolio-item-text span.nj-portfolio-item-name {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 1464, src/sass/style.sass */
  .nj-portfolio-item > a .nj-portfolio-item-text-wrapper .nj-portfolio-item-text span.nj-portfolio-item-name {
    font-size: 1.25rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media only screen and (max-width: 740px) {
  /* line 1464, src/sass/style.sass */
  .nj-portfolio-item > a .nj-portfolio-item-text-wrapper .nj-portfolio-item-text span.nj-portfolio-item-name {
    font-size: 1rem;
  }
}

/* line 1486, src/sass/style.sass */
.nj-portfolio-item > a .nj-portfolio-item-text-wrapper .nj-portfolio-item-text span.nj-portfolio-item-description {
  position: relative;
  display: block;
  left: 0;
  bottom: 0;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  z-index: 3;
  transform: translateY(20%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  padding-right: 20px;
  padding-left: 20px;
}

@media only screen and (max-width: 1440px) {
  /* line 1486, src/sass/style.sass */
  .nj-portfolio-item > a .nj-portfolio-item-text-wrapper .nj-portfolio-item-text span.nj-portfolio-item-description {
    font-size: 0.75rem;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 1486, src/sass/style.sass */
  .nj-portfolio-item > a .nj-portfolio-item-text-wrapper .nj-portfolio-item-text span.nj-portfolio-item-description {
    font-size: 0.75rem;
  }
}

@media screen and (min-width:140px){
  .nj-navbar-logo{
      width:140px;
      height:auto;
  }
}

/* line 1504, src/sass/style.sass */
.nj-portfolio-item > a .nj-portfolio-item-text-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}

/* line 1517, src/sass/style.sass */
.nj-portfolio-item > a:hover .nj-portfolio-item-text-wrapper:before {
  opacity: 0.7;
}

/* line 1519, src/sass/style.sass */
.nj-portfolio-item > a:hover .nj-portfolio-item-text-wrapper span.nj-portfolio-item-name,
.nj-portfolio-item > a:hover .nj-portfolio-item-text-wrapper span.nj-portfolio-item-description {
  transform: translateY(0);
  opacity: 1;
}

/* */
/* */
/* ---------------------------
  14. SINGLE PROJECT
  --------------------------*/
/* */
/* line 1530, src/sass/style.sass */
.nj-single-project-wrapper .nj-button-wrapper {
  margin-bottom: 52px;
}

/* line 1532, src/sass/style.sass */
.nj-single-project-title-wrapper {
  margin-bottom: 52px;
}

/* line 1534, src/sass/style.sass */
.nj-single-project-title-wrapper h1.nj-single-project-header {
  font-size: 2.7rem;
  color: black;
  text-transform: none;
}

/* line 1538, src/sass/style.sass */
.nj-single-project-title-wrapper h3.nj-single-project-header {
  font-size: 1.4rem;
  color: black;
  text-transform: uppercase;
  margin-top: 40px;
  font-weight: 900;
}

/* line 1544, src/sass/style.sass */
.nj-single-project-data-wrapper {
  margin-top: 52px;
  margin-bottom: 52px;
}

/* line 1547, src/sass/style.sass */
.nj-single-project-data-wrapper ul > li {
  text-transform: uppercase;
}

/* line 1549, src/sass/style.sass */
.nj-single-project-data-wrapper ul > li > span {
  font-weight: 900;
}

/* line 1552, src/sass/style.sass */
.nj-single-project-image-wrapper img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/*# sourceMappingURL=../../sass */