/*! Swipebox v1.3.0 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
html.swipebox-html.swipebox-touch {
  overflow: hidden !important;
}

#swipebox-overlay img {
  border: none !important;
}

#swipebox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#swipebox-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#swipebox-slider {
  -webkit-transition: -webkit-transform 0.4s ease;
          transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  display: none;
  cursor: pointer;
}
#swipebox-slider .slide {
  height: 100%;
  width: 100%;
  line-height: 1px;
  text-align: center;
  display: inline-block;
}
#swipebox-slider .slide:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle;
}
#swipebox-slider .slide .swipebox-video-container {
  background: none;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
#swipebox-slider .slide-loading {
  background: url(/Assets/Static/loader.gif) no-repeat center center;
}

#swipebox-bottom-bar,
#swipebox-top-bar {
  -webkit-transition: 0.5s;
          transition: 0.5s;
  position: absolute;
  left: 0;
  z-index: 999;
  height: 50px;
  width: 100%;
}

#swipebox-bottom-bar {
  bottom: -50px;
}
#swipebox-bottom-bar.visible-bars {
  -webkit-transform: translate3d(0, -50px, 0);
          transform: translate3d(0, -50px, 0);
}

#swipebox-top-bar {
  top: -50px;
}
#swipebox-top-bar.visible-bars {
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
}

#swipebox-title {
  display: block;
  width: 100%;
  text-align: center;
}

#swipebox-prev,
#swipebox-next,
#swipebox-close {
  background-image: url(/Assets/Static/swipeboxicons.png);
  background-repeat: no-repeat;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  width: 50px;
  height: 50px;
  top: 0;
}

#swipebox-arrows {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 50px;
}

#swipebox-prev {
  background-position: -32px 13px;
  float: left;
}

#swipebox-next {
  background-position: -78px 13px;
  float: right;
}

#swipebox-close {
  top: 0;
  right: 0;
  position: absolute;
  z-index: 9999;
  background-position: 15px 12px;
}

.swipebox-no-close-button #swipebox-close {
  display: none;
}

#swipebox-prev.disabled,
#swipebox-next.disabled {
  opacity: 0.3;
}

.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
  -webkit-animation: rightSpring 0.3s;
          animation: rightSpring 0.3s;
}
.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
  -webkit-animation: leftSpring 0.3s;
          animation: leftSpring 0.3s;
}

.swipebox-touch #swipebox-container:before, .swipebox-touch #swipebox-container:after {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all .3s ease;
          transition: all .3s ease;
  content: ' ';
  position: absolute;
  z-index: 999;
  top: 0;
  height: 100%;
  width: 20px;
  opacity: 0;
}
.swipebox-touch #swipebox-container:before {
  left: 0;
  -webkit-box-shadow: inset 10px 0px 10px -8px #656565;
          box-shadow: inset 10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-container:after {
  right: 0;
  -webkit-box-shadow: inset -10px 0px 10px -8px #656565;
          box-shadow: inset -10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {
  opacity: 1;
}
.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
  opacity: 1;
}

@-webkit-keyframes rightSpring {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes rightSpring {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}
@-webkit-keyframes leftSpring {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
@keyframes leftSpring {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
@media screen and (min-width: 800px) {
  #swipebox-close {
    right: 10px;
  }

  #swipebox-arrows {
    width: 92%;
    max-width: 800px;
  }
}
/* Skin 
--------------------------*/
#swipebox-overlay {
  background: #0d0d0d;
}

#swipebox-bottom-bar,
#swipebox-top-bar {
  text-shadow: 1px 1px 1px black;
  background: #000;
  opacity: 0.95;
}

#swipebox-top-bar {
  color: white !important;
  font-size: 15px;
  line-height: 43px;
  font-family: Helvetica, Arial, sans-serif;
}

/* Custom CSS */
/* Variables */
/* End Variables */
/* HTML Defaults */
body {
  width: 100%;
  height: 100%;
  font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  color: #b0e5b3;
  background-color: #040a04;
  webkit-tap-highlight-color: rgba(255, 255, 255, 0.2); }

html {
  width: 100%;
  height: 100%; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px; }

p {
  margin: 0 0 25px;
  font-size: 18px;
  line-height: 1.5; }

/* End HTML Defaults */
/* Bootstrap overrides */
.bg-contact {
  background-color: #141414;
  /*border:0;*/ }

.btn {
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 400;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }

.btn-default {
  border: 1px solid #42dca3;
  color: #42dca3;
  background-color: transparent; }

.btn-default:hover, .btn-default:focus {
  border: 1px solid #42dca3;
  outline: 0;
  color: #000;
  background-color: #42dca3; }

/* End Bootstrap overrides */
#gall h2, .contactForm h3, .loginForm h3, .errorPage h3 {
  color: #fff; }

.errorPage h3 {
  margin-top: 30px; }

/* Front page portfolio thumbnails */
.flex-item img {
  width: 100%; }

/* /Front page portfolio thumbnails */
@media (min-width: 768px) {
  p {
    margin: 0 0 35px;
    font-size: 20px;
    line-height: 1.6; }
  /* Front page portfolio thumbnails */
  .imgContainer {
    overflow: hidden; }
  .flex-item {
    padding: 20px; }
  .flex-item img {
    width: 300px;
    height: 200px;
    -moz-opacity: 0.70;
    opacity: 0.70;
    -webkit-transition: all .5s ease;
    /* Safari and Chrome */
    -moz-transition: all .5s ease;
    /* Firefox */
    -ms-transition: all .5s ease;
    /* IE 9 */
    -o-transition: all .5s ease;
    /* Opera */
    transition: all .5s ease; }
  .flex-item img:hover {
    -moz-opacity: 1.0;
    opacity: 1.0;
    -webkit-transform: scale(1.15);
    /* Safari and Chrome */
    -moz-transform: scale(1.15);
    /* Firefox */
    -ms-transform: scale(1.15);
    /* IE 9 */
    -o-transform: scale(1.15);
    /* Opera */
    transform: scale(1.15); }
  /* /Front page portfolio thumbnails */ }

/* Legacy Firefox implementation treats all flex containers as inline-block elements. */
@-moz-document url-prefix() {
  .flex-container {
    width: 100%;
    -moz-box-sizing: border-box; } }

a {
  color: #42dca3;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out; }

a:hover, a:focus {
  text-decoration: none;
  color: #1d9b6c; }

.light {
  font-weight: 400; }

.navbar-custom {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  background-color: #141414;
  /* mobile */ }

.navbar-custom .shade1 {
  color: #b0e5b3; }

.navbar-custom .shade2 {
  color: #8db78f; }

.navbar-custom .navbar-brand {
  /*font-weight: 700;*/
  font-size: 18px; }

@media (max-width: 768px) {
  .navbar-custom .navbar-brand {
    padding: 18px 10px 15px 10px; }
  .notMob {
    display: none; } }

.navbar-custom .navbar-brand:focus {
  outline: 0; }

.navbar-custom .navbar-brand .navbar-toggle {
  padding: 4px 6px;
  font-size: 16px;
  color: #fff; }

.navbar-custom .navbar-brand .navbar-toggle:focus, .navbar-custom .navbar-brand .navbar-toggle:active {
  outline: 0; }

.navbar-custom a {
  color: #b0e5b3 !important; }

.navbar-custom .nav li a {
  -webkit-transition: background .3s ease-in-out;
  -moz-transition: background .3s ease-in-out;
  transition: background .3s ease-in-out; }

.navbar-custom .nav li a:hover {
  outline: 0;
  color: #8db78f !important;
  background-color: transparent; }

.navbar-custom .nav li a:focus, .navbar-custom .nav li a:active {
  outline: 0;
  background-color: transparent; }

.navbar-custom .nav li.active {
  outline: 0; }

.navbar-custom .nav li.active a {
  /*background-color: rgba(255,255,255,.3);*/
  background-color: rgba(176, 229, 179, 0.4); }

.navbar-custom .nav li.active a:hover {
  color: #bef7c1; }

@media (min-width: 768px) {
  .navbar-custom {
    padding: 20px 0;
    border-bottom: 0;
    letter-spacing: 1px;
    background: 0 0;
    -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
    -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
    transition: background .5s ease-in-out,padding .5s ease-in-out; }
  .navbar-custom.top-nav-collapse {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: #0b1c0b; }
  .navbar-custom .shade1, .navbar-custom .shade2 {
    letter-spacing: -1px;
    font-weight: 400;
    font-size: 20px; }
  #contact {
    background: url(/Assets/Frontpage/fpbg_2.jpg) no-repeat top center scroll; }
  #copyr {
    background: url(/Assets/Frontpage/fpbg_1.jpg) no-repeat top center scroll; } }

@media (max-width: 768px) {
  .navbar-custom {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: #0b1c0b; }
  /*.navbar-custom.top-nav-collapse {
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,.3);
        background: #0b1c0b;
    }*/
  /*.navbar-custom .shade1, .navbar-custom .shade2 {
        letter-spacing: -1px;
        font-weight: 400;
        font-size: 20px;
    }

    #contact {
        background: url(/Assets/Frontpage/fpbg_2.jpg) no-repeat top center scroll;
    }

    #copyr {
        background: url(/Assets/Frontpage/fpbg_1.jpg) no-repeat top center scroll;
    }*/ }

.intro {
  background: url(/Assets/Frontpage/intro-bg_2.jpg) no-repeat bottom center scroll; }

#contact {
  background: url(/Assets/Frontpage/fpbg_2.jpg) no-repeat 70% 0% scroll; }

#copyr {
  background: url(/Assets/Frontpage/fpbg_1.jpg) no-repeat 60% 0% scroll; }

.intro, #contact, #copyr {
  display: table;
  width: 100%;
  height: auto;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  background-color: #040a04;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  font-size: 16px; }

.intro {
  color: #b0e5b3; }

.intro .intro-body, #contact .contact-body, #copyr .copyr-body {
  display: table-cell;
  vertical-align: middle; }

.intro .intro-body .brand-heading {
  font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 40px;
  color: rgba(176, 229, 179, 0.4);
  font-weight: 700; }

@media (min-width: 320px) {
  .intro .intro-body .brand-heading {
    font-size: 34px; } }

/* Really small mobiles */
.intro .intro-body .intro-text {
  font-size: 18px; }

@media (min-width: 768px) {
  .intro {
    height: 100%;
    padding: 0; }
  .intro .intro-body .brand-heading {
    font-size: 80px; }
  .intro .intro-body .intro-text {
    font-size: 26px; } }

@media (min-width: 1100px) {
  .intro .intro-body .brand-heading {
    font-size: 120px; } }

/*.btn-circle {
    width: 50px;
    height: 50px;
    margin-top: 5px;
    padding: 0px 6px;
    font-size: 40px;
    color: $light;
    background: 0 0;
    border: 0px solid $light;
    border-radius: 100% !important;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle:hover, .btn-circle:focus {
    outline: 0;
    color: $light;
    background: rgba(255,255,255,.1);
}

.btn-circle i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 2.0s;
    -moz-animation-duration: 2.0s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}*/
.content-section {
  padding-top: 60px; }

@media (min-width: 767px) {
  .content-section {
    padding-top: 80px; }
  .download-section {
    padding: 100px 0; } }

footer {
  padding: 50px 0; }

footer p {
  margin: 0; }

::-moz-selection {
  text-shadow: none;
  background: #fcfcfc;
  background: rgba(255, 255, 255, 0.2); }

::selection {
  text-shadow: none;
  background: #fcfcfc;
  background: rgba(255, 255, 255, 0.2); }

img::selection {
  background: 0 0; }

img::-moz-selection {
  background: 0 0; }

/** My Custom  **/
#portWrap {
  color: #fff;
  min-height: 100%; }

.portHd {
  font-family: 'Open Sans', sans-serif;
  text-align: left;
  font-size: 26px;
  padding-bottom: 10px;
  text-rendering: optimizelegibility;
  letter-spacing: -1px;
  color: #8db78f; }

#gallery {
  width: 100%;
  margin: 0 auto; }

.imgPort {
  width: 48%;
  margin: 1px 1% 1px 1%; }

/* Port section wrap overlays contact bg when too small */
@media (min-width: 768px) {
  #port, #contact, #copyr {
    height: 100%; }
  .imgPort {
    display: block;
    width: 182px;
    margin: 2px;
    float: left;
    opacity: .75;
    transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -webkit-transition: opacity .2s ease-in-out; }
  .imgPort:hover {
    opacity: 1.0; }
  .imgPort.imgLazy {
    opacity: 0;
    transition: opacity .3s ease-in;
    display: block;
    float: left;
    /*min-height: 100px;
        min-width: 100px;*/ } }

/*.contactForm label {
    text-align:left;
}*/
.contactForm div {
  margin-bottom: 10px; }

.contactForm div.form-instructions {
  text-align: center;
  margin-bottom: 25px;
  color: #fff; }

.contactForm h3 {
  margin: 20px 0 10px 0; }

/*@media(min-width:768px) {
    .contactForm label {
        text-align: right;
    }
}*/
#ty {
  font-size: 16px;
  text-align: center;
  padding: 10px; }

#call {
  display: none;
  text-align: center; }

/* Icon pulse */
.fa-pulse {
  display: inline-block;
  -moz-animation: pulse 3s infinite linear;
  -o-animation: pulse 3s infinite linear;
  -webkit-animation: pulse 3s infinite linear;
  animation: pulse 3s infinite linear; }

@-webkit-keyframes pulse {
  0% {
    opacity: 1; }
  50% {
    opacity: .25; }
  100% {
    opacity: 1; } }

@-moz-keyframes pulse {
  0% {
    opacity: 1; }
  50% {
    opacity: .25; }
  100% {
    opacity: 1; } }

@-o-keyframes pulse {
  0% {
    opacity: 1; }
  50% {
    opacity: .25; }
  100% {
    opacity: 1; } }

@-ms-keyframes pulse {
  0% {
    opacity: 1; }
  50% {
    opacity: .25; }
  100% {
    opacity: 1; } }

@keyframes pulse {
  0% {
    opacity: 1; }
  50% {
    opacity: .25; }
  100% {
    opacity: 1; } }

.goDown {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.25);
  position: relative; }

.goDown:hover, .goDown:focus {
  outline: 0;
  color: #fff;
  /*background: rgba(255,255,255,.1);*/ }

/* Custom Font Awesome 5.0.9 below */
@font-face {
  font-family: 'icomoon';
  src: url("/fonts/icomoon.eot?4vp0ti");
  src: url("/fonts/icomoon.eot?4vp0ti#iefix") format("embedded-opentype"), url("/fonts/icomoon.ttf?4vp0ti") format("truetype"), url("/fonts/icomoon.woff?4vp0ti") format("woff"), url("/fonts/icomoon.svg?4vp0ti#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-chevron-down:before {
  content: "\f078"; }

.icon-copyright:before {
  content: "\f1f9"; }

.icon-copyright.cp1 {
  font-size: 12px; }

.icon-copyright.cp2 {
  font-size: 10px; }

.icon-copyright.cp3 {
  font-size: 16px; }

#swipebox-title {
  display: none; }

/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../../fonts/open-sans-v18-latin-regular.woff2") format("woff2"), url("../../fonts/open-sans-v18-latin-regular.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap; }

/* montserrat-regular - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../../fonts/montserrat-v15-latin-regular.woff2") format("woff2"), url("../../fonts/montserrat-v15-latin-regular.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap; }

/* montserrat-700 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../../fonts/montserrat-v15-latin-700.woff2") format("woff2"), url("../../fonts/montserrat-v15-latin-700.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap; }
