@font-face {
  font-family: 'OPTIBodoni-Antiqua';
  src: url('../fonts/OPTIBodoni-Antiqua.eot');
  src: url('../fonts/OPTIBodoni-Antiqua.eot?#iefix') format('embedded-opentype'),
      url('../fonts/OPTIBodoni-Antiqua.woff2') format('woff2'),
      url('../fonts/OPTIBodoni-Antiqua.woff') format('woff'),
      url('../fonts/OPTIBodoni-Antiqua.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {font-family: "Gill Sans Nova Inline W07 Rg";
  src: url("../fonts/GillSansNovaInline.eot");
  src: url("../fonts/GillSansNovaInline.eot?#iefix") format("embedded-opentype"),
  url("../fonts/GillSansNovaInline.woff2") format("woff2"),
  url("../fonts/GillSansNovaInline.woff") format("woff"),
  url("../fonts/GillSansNovaInline.ttf") format("truetype"),
  url("../fonts/GillSansNovaInline.svg#Gill Sans Nova Inline W07 Rg") format("svg");
}
body{
  font: 300 14px/21px 'Open Sans', sans-serif, Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  min-height: 101vh;
}
body:not(.loaded){
  /* overflow: hidden; */
  position: fixed;
  overflow-y: scroll;
}
a,
a:visited{
  color: #ab8100;
}
a:hover,
a:active{
  color: #ab8100;
  text-decoration: underline;
}
header{
  position: relative;
}
.home-section{
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
.regular-section{
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  background-image: url('../img/no-image.jpg');
  background-attachment: fixed;
  background-size: cover;
  /* background-position: 50% 50%; */
  background-position: center;
  background-repeat: no-repeat;
}
.regular-section::before{
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  height: 100%;
  background-color: rgba(12, 12, 23, 0.5);
}
.regular-section > .header-title{
  position: absolute;
  align-self: center;
  width: 100%;
  padding: 0 30px;
  margin-top: -28px;
}
.header-title > h1{
  color: #FFF;
  font-size: 75px;
  line-height: 70px;
}
.font-13rem{
  font-size: 1.3rem;
}
/* 
 * ======================================== 
 * Preloader 
 * ======================================== 
 */
 #loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
}
/* #loader {
  display: block;
  display: none;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
} */
/* #loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e74c3c;

  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
} */

/* #loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f9c922;

  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
} */
#loader-square{
  z-index: 1001;
  align-self: center;
  margin: 0 auto;
}
#loader-square img{
  -webkit-animation: fadeInLogo 2s ease-in-out infinite;
  animation: fadeInLogo 2s ease-in-out infinite;
}

/* @-webkit-keyframes spin {
  0%   { 
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}
@keyframes spin {
  0%  { 
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
} */
@-webkit-keyframes fadeInLogo{
  0% {
    opacity: 0;
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}
@keyframes fadeInLogo{
  0% {
    opacity: 0;
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #FFFFFF;
  z-index: 1000;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
  left: 0;
}
#loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;

  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;

  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-square {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
  visibility: hidden;

  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);

  -webkit-transition: all 0.3s 1s ease-out;  
  transition: all 0.3s 1s ease-out;
}
/* 
 * ======================================== 
 * Navbar 
 * ======================================== 
 */
nav.navbar{
  position: absolute !important;
  bottom: 0;
  width: 100%;
  background-color: #0000002b;
  color: #FFF;
}
nav.navbar.sticky {
  position: fixed !important;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  height: 56px;
  z-index: 10;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.navbar-dark .navbar-nav .nav-link{
  text-transform: uppercase;
  font-weight: 500;
}
.navbar-brand{
  padding: 0;
}
.navbar-brand img{
  height: 40px;
}
.navbar.sticky .navbar-brand img{
  height: 40px;
}
.navbar-dark .navbar-nav .active>.nav-link{
  color: #ffbe0d;
}
/* 
 * ======================================== 
 * Navbar close button animation
 * ======================================== 
 */
.navbar-toggler{
  position: relative;
  border: none;
}
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: 0;
}
.navbar-toggler span {
  display: block;
  background-color: #FFF;
  height: 2px;
  width: 28px;
  margin-top: 5px;
  margin-bottom: 5px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  position: relative;
  left: 0;
  opacity: 1;
}
.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
   -webkit-transition: transform .35s ease-in-out;
   -moz-transition: transform .35s ease-in-out;
   -o-transition: transform .35s ease-in-out;
   transition: transform .35s ease-in-out;
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
  position: absolute;
  left: 12px;
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  opacity: 0.9;
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  height: 12px;
  visibility: hidden;
  background-color: transparent;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
  position: absolute;
  left: 12px;
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  opacity: 0.9;
}
/* 
 * ======================================== 
 * Home Slideshow
 * ======================================== 
 */
.cb-slideshow,
.cb-slideshow::after {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
  margin: 0;
  padding-left: 0;
}
.cb-slideshow{
  list-style: none;
}
.cb-slideshow::after {
  content: '';
  background-color: rgba(12, 12, 23, 0.3);
  display: block;
  position: relative;
}
body.loaded .cb-slideshow li span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: transparent;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: none;
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* body.loaded .cb-slideshow li:nth-child(2) span {
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  -o-animation-delay: 6s;
  -ms-animation-delay: 6s;
  animation-delay: 6s;
}
body.loaded .cb-slideshow li:nth-child(3) span {
  -webkit-animation-delay: 12s;
  -moz-animation-delay: 12s;
  -o-animation-delay: 12s;
  -ms-animation-delay: 12s;
  animation-delay: 12s;
} */

/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation { 
	0% {
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
  }
  5% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  41% {
    opacity: 0;
    -webkit-transform: scale3d(1.3, 1.3, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes imageAnimation { 
	0% {
    opacity: 0;
    -moz-transform: scale3d(1, 1, 1);
  }
  5% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  41% {
    opacity: 0;
    -moz-transform: scale3d(1.3, 1.3, 1);
  }
  100% {
    opacity: 0;
    -moz-transform: scale3d(1, 1, 1);
  }
}
@-o-keyframes imageAnimation { 
	0% {
    opacity: 0;
    -o-transform: scale3d(1, 1, 1);
  }
  5% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  41% {
    opacity: 0;
    -o-transform: scale3d(1.3, 1.3, 1);
  }
  100% {
    opacity: 0;
    -o-transform: scale3d(1, 1, 1);
  }
}
@-ms-keyframes imageAnimation { 
  0% {
    opacity: 0;
    -ms-transform: scale3d(1, 1, 1);
  }
  5% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  41% {
    opacity: 0;
    -ms-transform: scale3d(1.3, 1.3, 1);
  }
  100% {
    opacity: 0;
    -ms-transform: scale3d(1, 1, 1);
  }
}
@keyframes imageAnimation { 
	/* 0% {
	    opacity: 0;
	    animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    transform: scale(1.05);
	    animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    transform: scale(1.1);
	}
	25% {
	    opacity: 0;
	    transform: scale(1.1);
	}
  100% { opacity: 0 } */
  0% {
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  5% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  41% {
    opacity: 0;
    -webkit-transform: scale3d(1.3, 1.3, 1);
    transform: scale3d(1.3, 1.3, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}


/* 
 * ======================================== 
 * Parallax
 * ======================================== 
 */
.parallax-window{
  height: 500px;
  background: transparent; 
  width: 100%;
}
.parallax-window h1{
  text-align: right;
  padding: 100px 45px 20px 0;
  margin: 0;
  color: #FFF;
  /* text-shadow: #CCC 0px 1px 10px; */
  /* font-family: 'OPTIBodoni-Antiqua'; */
  font-size: 110px;
}
.parallax-window h1 a{
  color: #FFF;
  opacity: 1;
  transition: opacity .4s;
}
.parallax-window h1 a:hover,
.parallax-window h1 a:active{
  color: #FFF;
  text-decoration: none;
  opacity: 0.5;
}

/* 
 * ======================================== 
 * Home
 * ======================================== 
 */
.home-h2{
  /* font-family: "Gill Sans Nova Inline W07 Rg" !important; */
  /* font-family: "OPTIBodoni-Antiqua" !important; */
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  letter-spacing: .05em;
  line-height: 1.4em;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
.home-h2 > a,
.home-h2 > a:visited{
  padding-bottom: .05em;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #000; /* rgba(158,79,36,.3); */
  text-decoration: none;
  color: #000; /* #9e4f24; */
  -webkit-transition: border-color .15s ease-out,color .15s ease-out;
  -moz-transition: border-color .15s ease-out,color .15s ease-out;
  -ms-transition: border-color .15s ease-out,color .15s ease-out;
  -o-transition: border-color .15s ease-out,color .15s ease-out;
  transition: border-color .15s ease-out,color .15s ease-out;
}
.home-h2 > a:hover,
.home-h2 > a:active{
  color: rgba(0,0,0,.6); /* rgba(158,79,36,.6); */
  border-color: rgba(0,0,0,.15); /* rgba(158,79,36,.15); */
}


/* 
 * ======================================== 
 * Portfolio
 * ======================================== 
 */
.portfolio-gallery .card{
  margin-bottom: 30px;
  border: none;
  border-radius: 0;
  overflow: hidden;
}
.portfolio-gallery .card > img{
  transition: transform 0.25s ease-out;
  transform: scale(1.07);
}
.portfolio-gallery .card:hover > img{
  transform: scale(1);
}
.portfolio-gallery .card .card-body{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.85);
}
.portfolio-gallery .card:hover .card-body{
  /* display: flex; */
  opacity: 1;
  padding-top: 20px;
  transition: all 0.25s ease-out;
}

.portfolio-gallery .card .card-title{
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 0;
}
.portfolio-gallery .card .card-text{
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 0;
  color: #ffbe0d;
}
.portfolio-gallery .card .link{
  position: absolute;
  width: 100%;
  height: 100%;
}
.filter-options > .btn{
  flex: none;
}
.filter-options .btn-light,
.filter-options .btn-light.active,
.filter-options .btn-light:focus{
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-transform: uppercase;
  border-radius: 0;
  transition: color .2s linear;
}
.filter-options .btn-light:hover,
.filter-options .btn-light.active:hover{
  text-decoration: none;
  color: #6d6d6d;
}
.filter-options .btn-light span{
  position: relative;
  color: #000 !important;
}
.filter-options .btn-light::after{
  display: block;
  content: '';
  border-bottom: 2px solid transparent;
  width: 100%;
  left: 0;
  bottom: 0;
}
.filter-options .btn-light:hover::after,
.filter-options .btn-light.active::after{
  border-bottom: 2px solid #000;
}


/* 
 * ======================================== 
 * Project
 * ======================================== 
 */
.project-gallery .card{
  margin-bottom: 30px;
  border: none;
  border-radius: 0;
  overflow: hidden;
}
.project-gallery .card > img{
  transition: transform 0.25s ease-out;
  transform: scale(1.07);
}
.project-gallery .card:hover > img{
  transform: scale(1);
}
.project-gallery .card .card-body{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.85);
}
.project-gallery .card:hover .card-body{
  /* display: flex; */
  opacity: 1;
  padding-top: 20px;
  transition: all 0.25s ease-out;
}
.project-gallery .card .link{
  position: absolute;
  width: 100%;
  height: 100%;
}
/* Simple Lightbox */
.sl-overlay{
  opacity: 1;
}
.sl-wrapper .sl-close{
  width: auto;
  color: #999;
  font-size: 17px;
  height: 17px;
  line-height: 17px;
  font-weight: 300;
  font-family: inherit;
  text-transform: uppercase;
  z-index: 999999;
  margin: 0;
  top: 15px;
  right: 15px;
}
.sl-wrapper .sl-counter{
  color: #999;
  margin: 0;
  top: 15px;
  left: 15px;
  font-family: inherit;
  font-size: 17px;
}
.sl-wrapper .sl-navigation button{
  display: block !important;
  width: 20%; /* 50%; */
  height: 100vh;
  top: 0;
  margin-top: 0;
  z-index: 99999;
}
.sl-wrapper .sl-navigation button.sl-prev{
  text-align: left;
  color: transparent;
  background: url('../img/icos.png') no-repeat left center;
}
.sl-wrapper .sl-navigation button.sl-next{
  text-align: right;
  color: transparent;
  background: url('../img/icor.png') no-repeat right center;
}
.sl-wrapper .sl-bullets{
  position: fixed;
  z-index: 999999;
  display: flex;
  bottom: 40px;
  width: 100%;
  height: 8px;
  justify-content: center;
}
.sl-wrapper .sl-bullets > span{
  width: 8px;
  height: 8px;
  margin: 0 3px;
  background-color: rgba(0,0,0,.2);
  border-radius: 50%;
}
.sl-wrapper .sl-bullets > span.current{
  background-color: #000;
}
.sl-wrapper .sl-bullets > span:hover{
  cursor: pointer;
  background-color: #000;
}
.project-nav-links > div:first-child{
  border-right: 1px solid rgba(0,0,0,.1);
}
.project-nav-links > div:last-child{
  border-left: 1px solid rgba(0,0,0,.1);
}
.project-nav-links a{
  text-decoration: none;
  font-weight: 300;
  color: #000;
  transition: background-color .5s;
}
.project-nav-links a:hover{
  background-color: #f4f4f4;
  text-decoration: none;
  color: #000;
}


/* 
 * ======================================== 
 * Blog
 * ======================================== 
 */
 .blog-gallery .card{
  margin-bottom: 30px;
  border: none;
  border-radius: 0;
  overflow: hidden;
}
.blog-gallery .card > img{
  transition: transform 0.25s ease-out;
  transform: scale(1.07);
}
.blog-gallery .card:hover > img{
  transform: scale(1);
}
.blog-gallery .card .card-body{
  padding: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  /* padding-top: 100px; */
  opacity: 1;
  /* background-color: rgba(255, 255, 255, 0.85); */
}
.blog-gallery .card:hover .card-body{
  /* display: flex; */
  /* opacity: 1; */
  /* padding-top: 20px; */
  /* justify-content: center; */
  transition: all 0.25s ease-out;
}

.blog-gallery .card .card-title{
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 0;
  padding: 15px 15px 0px 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-gallery .card .card-text{
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 0;
  color: #333;
  padding: 0px 15px 5px 15px;
  font-size: 12px;
}
.blog-gallery .card .card-title,
.blog-gallery .card .card-text,
.blog-gallery .card .read-more{
  background-color: rgba(255, 255, 255, 0.85);
  width: 100%;
}
.blog-gallery .card .link{
  position: absolute;
  width: 100%;
  height: 100%;
}
.blog-gallery .read-more{
  color: #ffbe0d;
  padding-top:0px;
  padding-bottom:5px;
  padding-left: 15px;
  padding-right: 15px;
  height: 25px;
  margin-bottom: -25px;
  transition: all 0.25s ease-out;
}
.blog-gallery .card:hover .read-more{
  margin-bottom: 0px;
}
.article-content,
.article-content p{
  font-size: 1.1rem !important;
  line-height: 1.6rem !important;
}
.blog-article-content img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 5px auto;
}


/* 
 * ======================================== 
 * Contact
 * ======================================== 
 */
.captcha-container{
  width: 100%;
  background-color: #e3e3e3;
  text-align: center;
 }
#captcha-image{
  height: calc(2.25rem + 2px);
}

.reveal{
  visibility: hidden;
}
.reveal.d-none{
  visibility: hidden !important;
}
.btn-send{
  background-color: #3e3e3e;
  color: #ffbe0d;
}
.btn-send:hover{
  background-color: #090909;
  color: #ffbe0d;
}

/* 
 * ======================================== 
 * Contact
 * ======================================== 
 */
.btn-accept-cookie{
  background-color: #ffbe0d;
  border-color: #ffbe0d;
  color: #333;
}
.btn-accept-cookie:hover{
  background-color: #e2a706;
  border-color: #e2a706;
  color: #333;
}


/* 
 * ======================================== 
 * Responsive Design
 * ======================================== 
 */
@media screen and (max-width: 992px){
  .navbar .navbar-collapse{
    margin: 0.5rem -1rem -0.5rem;
    padding: 0px 1rem;
    background-color: rgba(0, 0, 0, 0.9);
  }
}
@media screen and (max-width: 768px){
  .sl-wrapper .sl-bullets{
    bottom: 10px;
  }
}
@media screen and (max-width: 576px){
  /* Fix Android bug for viewport height */
  .home-section {
    height: calc(var(--vhAndroid, 1vh) * 100);
  }
  .parallax-window h1{
    font-size: 65px;
  }
  .header-title > h1{
    font-size: 50px;
  }
  .sl-wrapper .sl-navigation button{
    display: none !important;
  }
  .btn-xs-block {
    display: block;
    width: 100%;
  }
  .project-nav-links > div:first-child{
    border-right: none;
  }
  .project-nav-links > div:last-child{
    border-left: none;
  }
}
@media screen and (max-width:350px){
  .parallax-window h1{
    font-size: 40px;
  }
  .navbar-brand{
    display: block;
    margin: 0 auto;
  }
  .navbar-toggler{
    margin: 0 auto;
  }
  
}