@import 'fontello.css';
*{
  outline: none !important;
}
html,
body {
  height: 100%;
}
body {
  font-family: 'Barlow Condensed', sans-serif;
  color: #000;
  background-color: #000;
  font-size: 0.75vw;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::-moz-selection {
  background-color: #000;
  color: #fff;
}
::selection {
  background-color: #000;
  color: #fff;
}
img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  margin: 0;
}
h1,
.h1 {
  font-size: 38px;
}
h2,
.h2 {
  font-size: 32px;
}
h3,
.h3 {
  font-size: 26px;
}
h4,
.h4 {
  font-size: 20px;
}
h5,
.h5 {
  font-size: 16px;
}
h6,
.h6 {
  font-size: 0.7vw;
  font-weight: 600;
}
a {
  color: #000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #000;
  text-decoration: none;
}
a:focus {
  color: #1b0207;
  text-decoration: none;
}
p {
  color: #000;
  margin: 0;
}
.form-group:last-child {
  margin-bottom: 0;
}
.form-control {
  padding: 0.75vw 1vw;
  height: auto;
  border-radius: 0;
  background-color: #fff;
  font-size: 0.95vw;
  box-shadow: none;
  border: none;
  border-bottom: 2px solid #000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #eee;
}
.form-select {
  border-bottom: 2px solid #000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.form-select:after {
  content: "\e8f1";
  font-family: 'fontello';
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -9px;
  font-size: 13px;
}
.form-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
}
.form-container {
  padding: 3vw;
  background-color: #fff;
  margin-top: 3vw;
  position: relative;
}
.form-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.75vw;
}
.form-full {
  grid-column: span 2;
}
.form-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.75vw;
}
.form-right{
  text-align: right;
}
.form-control [disabled]{
  display: none;
}
.form-control::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.form-control::-moz-placeholder {
  color: #000;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.form-control:-ms-input-placeholder {
  color: #000;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.form-control::placeholder {
  color: #000;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
textarea.form-control {
  height: 150px;
}
section {
  padding: 5vw 0;
  position: relative;
  z-index: 10;
  background-color: #000;
}
.title {
  margin: 0 0 1.5vw 0;
  position: relative;
  z-index: 10;
}
.title.right {
  text-align: right;
}
.title.center {
  text-align: center;
}
.title h1{
  margin: 0;
  font-size: 4vw;
}
.title h2 {
  margin: 0;
  font-weight: 700;
  font-size: 3.5vw;
}
.title h3 {
  margin: 0;
  font-weight: 700;
  font-size: 2.5vw;
}
.title h4 {
  font-size: 2vw;
  margin: 0 0 1vw 0;
}
.title p {
  font-size: 1vw;
  margin: 0.75vw 0 0 0;
  font-weight: 500;
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20000;
  text-align: center;
  background-color: #000;
}
#mask {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
#mask img{
  width: 280px;
}
.loader-1 {
	margin-top: 40px;
	height: 2.5vw;
	width: 2.5vw;
	-webkit-animation: loader-1-1 4.8s linear infinite;
	animation: loader-1-1 4.8s linear infinite;
}
.loader-1 span {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	height: 2.5vw;
	width: 2.5vw;
	clip: rect(0, 2.5vw, 2.5vw, 25px);
	-webkit-animation: loader-1-2 1.2s linear infinite;
	animation: loader-1-2 1.2s linear infinite;
}
@-webkit-keyframes loader-1-2 {
0% {
	-webkit-transform: rotate(0deg);
	}
100% {
	-webkit-transform: rotate(220deg);
	}
}
@keyframes loader-1-2 {
0% {
	transform: rotate(0deg);
	}
100% {
	transform: rotate(220deg);
	}
}
.loader-1 span::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	height: 2.5vw;
	width: 2.5vw;
	clip: rect(0, 2.5vw, 2.5vw, 25px);
	border: 3px solid #fff;
	border-radius: 50%;
	-webkit-animation: loader-1-3 1.2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
	animation: loader-1-3 1.2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@-webkit-keyframes loader-1-3 {
0% {
	-webkit-transform: rotate(-140deg);
	}
	50% {
	-webkit-transform: rotate(-160deg);
	}
	100% {
	-webkit-transform: rotate(140deg);
	}
}
@keyframes loader-1-3 {
	0% {
	transform: rotate(-140deg);
	}
	50% {
	transform: rotate(-160deg);
	}
	100% {
	transform: rotate(140deg);
	}
}
@-webkit-keyframes loader-1-1 {
	0% {
	-webkit-transform: rotate(0deg);
	}
	100% {
	-webkit-transform: rotate(360deg);
	}
	}
	@keyframes loader-1-1 {
	0% {
	transform: rotate(0deg);
	}
	100% {
	transform: rotate(360deg);
	}
}
#topnav {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 1030;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
#topnav.scroll{
  background-color: #000;
}
#topnav .nav-social {
  position: absolute;
  right: 2vw;
  display: flex;
  height: 100%;
  align-items: center;
}
#topnav .nav-social a{
  opacity: 1;
  margin-left: 1px;
  display: inline-flex;
  width: 2.5vw;
  height: 2.5vw;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1vw;
  line-height: 1;
}
#topnav .nav-social a:hover{
  opacity: 0.6;
  color: #fff;
}
#topnav .navbar-toggle {
  border: 0;
  position: relative;
  width: 2.5vw;
  height: 2.5vw;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
#topnav .navbar-toggle.open span {
  position: relative;
  background-color: #000;
}
#topnav .navbar-toggle.open span:first-child {
  top: 4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#topnav .navbar-toggle.open span:nth-child(2) {
  display: none;
}
#topnav .navbar-toggle.open span:last-child {
  width: 100%;
  top: -3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#topnav .navbar-toggle span {
  padding: 0 10px;
  height: 2px;
  width: 100%;
  background-color: #fff;
  display: block;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#topnav .navbar-toggle span:last-child {
  width: 75%;
  margin-bottom: 0;
}
#topnav .navbar-toggle:focus {
  background-color: transparent;
}
#topnav .navigation-menu {
  float: right;
  list-style: none;
  margin: 0;
  padding: 0;
}
#topnav .navigation-menu > li {
  display: inline-flex;
  position: relative;
}
#topnav .navigation-menu > li > a {
  display: flex;
  align-items: center;
  color: #fff;
  background-color: initial !important;
  font-size: 0.95vw;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 6;
  font-weight: 600;
  padding: 0 1vw;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#topnav.scroll .navigation-menu > li > a{
  line-height: 4;
}
#topnav .navigation-menu > li > a:before{
  opacity: 0;
  content: '';
  width: 0;
  height: 3px;
  background-color: #fff;
  position: absolute;
  bottom: 25px;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#topnav.scroll .navigation-menu > li > a:before {
  bottom: 0px;
}
#topnav .navigation-menu li:hover a:before {
  opacity: 1;
  width: 100%;
}
#topnav .navigation-menu li.active a:before{
  opacity: 1;
}
#topnav .logo {
  position: absolute;
  left: 1.5vw;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#topnav .logo img {
  height: 4vw;
  padding: 0.75vw 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#topnav .logo .logo-light {
  display: block;
}
#topnav .logo .logo-dark {
  display: none;
}
.menu-extras {
  display: none;
}
#home {
  padding: 0;
  height: 100%;
  border: 0;
  background-color: #000;
}
#home .pp-tableCell{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#home .btn-mid{
  margin-top: 1.5vw;
  position: relative;
  bottom: -200px;
  opacity: 0;
  background-color: #fff;
  transition: all 2s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 2s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: all 2s cubic-bezier(0.86, 0, 0.07, 1);
  z-index: 20;
}
#home .btn-mid span{
  color: #000 !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#home .btn-mid:hover span{
  color: #fff !important;
}
#home .btn-mid:after{
  background-color: #000;
}
#home .section{
  overflow: hidden;
  background-color: #000;
}
#home .section.active .btn-mid{
  opacity: 1;
  bottom: 0;
}
#home .section .cover-bg{
  transform: scale(1.4);
  background-position: center;
}
#home .section.active .cover-bg{
  transform: scale(1);
  background-position: 0 0;
}
.work-title {
  width: 100%;
  left: 12vw;
  position: absolute;
  z-index: 20;
  text-align: left;
  margin-bottom: -200px;
  opacity: 0;
  transition: all 2s cubic-bezier(0.86, 0, 0.07, 1);
}
.work-title h2{
  color: #fff;
  font-size: 4vw;
  font-style: italic;
  margin: 0 0 0.5vw 0;  
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.work-title.active h2{
  letter-spacing: 1px;
}
.work-title p{
  color: #fff;
  font-weight: 500;
  font-size: 2vw;
}
.work-content{
  position: absolute;
  top: 0;
  left: 0;
  width: 25vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  background-color: rgba(0,0,0,0.85);
}
#home .section.active .work-title {
  margin-bottom: 0;
  opacity: 1;
}
.fp-section.fp-table{
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fp-section.fp-table.active{
  opacity: 1;
}
.alert {
  border-radius: 0;
  font-size: 16px;
  background-color: transparent;
}
.alert.alert-danger {
  border-color: #e74c3c;
  color: #e74c3c;
}
.alert.alert-success {
  border-color: #2ecc71;
  color: #2ecc71;
}
.centrize {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
  position: relative;
}
.upper {
  text-transform: uppercase;
}
.ov-v {
  overflow: visible;
}
.ov-h {
  overflow: hidden;
}
.b-0 {
  border: 0!important;
}
.bt-0 {
  border-top: 0!important;
}
.br-0 {
  border-right: 0!important;
}
.bb-0 {
  border-bottom: 0!important;
}
.bl-0 {
  border-left: 0!important;
}
.border-top {
  border-top: 1px solid #e7e7e7;
}
.border-right {
  border-right: 1px solid #e7e7e7;
}
.border-bottom {
  border-bottom: 1px solid #e7e7e7;
}
.border-left {
  border-left: 1px solid #e7e7e7;
}
.m-0 {
  margin: 0!important;
}
.mb-0 {
  margin-bottom: 0!important;
}
.mt-0 {
  margin-top: 0!important;
}
.mr-0 {
  margin-right: 0!important;
}
.ml-0 {
  margin-left: 0!important;
}
.mb-10 {
  margin-bottom: 10px!important;
}
.mr-10 {
  margin-right: 10px!important;
}
.ml-10 {
  margin-left: 10px!important;
}
.mt-10 {
  margin-top: 10px!important;
}
.mb-15 {
  margin-bottom: 0.75vw!important;
}
.mr-15 {
  margin-right: 0.75vw!important;
}
.ml-15 {
  margin-left: 0.75vw!important;
}
.mt-15 {
  margin-top: 0.75vw!important;
}
.mb-25 {
  margin-bottom: 25px!important;
}
.mr-25 {
  margin-right: 25px!important;
}
.ml-25 {
  margin-left: 25px!important;
}
.mt-25 {
  margin-top: 25px!important;
}
.mb-50 {
  margin-bottom: 2.5vw!important;
}
.mr-50 {
  margin-right: 2.5vw!important;
}
.ml-50 {
  margin-left: 2.5vw!important;
}
.mt-50 {
  margin-top: 2.5vw!important;
}
.p-0 {
  padding: 0!important;
}
.pb-0 {
  padding-bottom: 0!important;
}
.pt-0 {
  padding-top: 0!important;
}
.pr-0 {
  padding-right: 0!important;
}
.pl-0 {
  padding-left: 0!important;
}
.pb-15 {
  padding-bottom: 0.75vw;
}
.pr-15 {
  padding-right: 0.75vw;
}
.pl-15 {
  padding-left: 0.75vw;
}
.pt-15 {
  padding-top: 0.75vw;
}
.pb-25 {
  padding-bottom: 25px;
}
.pr-25 {
  padding-right: 25px;
}
.pl-25 {
  padding-left: 25px;
}
.pt-25 {
  padding-top: 25px;
}
.pb-50 {
  padding-bottom: 2.5vw;
}
.pr-50 {
  padding-right: 2.5vw;
}
.pl-50 {
  padding-left: 2.5vw;
}
.pt-50 {
  padding-top: 2.5vw;
}
.white{
  color: #fff;
}
.home-overlay{
  display: block;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%);
}
.top-overlay{
  display: block;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 100%);
}
.about-overlay{
  display: block;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}
.overlay{
  display: block;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: rgba(0,0,0,0.4);
}
.cover-bg {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1);
  -webkit-transform: scale(1);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cover-blur {
  filter: blur(4px);
}
.services-bg {
  opacity: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1);
  -webkit-transform: scale(1);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.services-bg.active{
  opacity: 1;
}
.btn-mid {
  border: none;
  outline: none;
  padding: 1vw 1.5vw;
  background-color: #000;
  display: inline-block;
  cursor: pointer;
  font-size: 1vw;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  color: #fff !important;
  z-index: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-mid i{
  margin-left: 0.4vw;
}
.btn-mid span{  
  position: relative;
  z-index: 10;
}
.btn-mid:hover{
  color: #fff;
  opacity: 1;
}
.btn-mid:after {
  content: '';
  width: 0;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-dark:hover:after{
  background-color: #e4e4e4;
}
.btn-dark:hover span{
  color: #000;
}
.btn-mid:hover:after{
  width: 100%;
}
.btn-outline{
  border: 2px solid #fff;
}
.btn-outline span{
  color: #fff;
}
.btn-mid.btn-outline::after{
  background-color:rgba(255, 255, 255, 0.4);
}
#top{
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 15;
  padding: 0;
  height: 100%;
  position: relative;
}
#top .cover-bg{
  transform: none;
  -webkit-transform: none;
  background-attachment: fixed;
}
.top-cover{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.top-container{
  position: absolute;
  left: 0;
  right: 0;
  padding: 6vw 10vw;
  width: 100%;
  z-index: 20;
}
.top-container .title{
  margin: 0;
}
.top-container h1, 
.top-container p{
  color: #fff;
}
.top-container h1 {
  font-size: 3vw;
  font-weight: 700;
  margin: 0 0 1vw 0;
}
.top-container p{
  font-size: 2vw;
  font-weight: 600;
  font-style: italic;
}
#services{
  height: 80%;
  padding: 0;
  background-color: #fff;
}
.services-grid{
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-gap: 1px;
}
.services-box{
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 2.5vw;
  background-color: transparent;
  border-right: 1px solid #fff;
}
.services-box.active{
  background-color: #000;
}
.services-box .cover-bg{
  display: none;
}
.services-title{
  position: relative;
  z-index: 15;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.services-box.active .services-title{
  opacity: 1;
}
.services-title h3,
.services-title p{
  color: #fff;
}
.services-title h3{
  font-size: 2vw;
  margin: 0 0 1vw 0;
}
.services-number{
  position: absolute;
  top: 2vw;
  font-size: 3.5vw;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 1vw 0;
  line-height: 1;
  color: #fff;
}
.services-title p{
  font-size: 1vw;
  line-height: 1.6;
}
.services-box ul{
  padding-left: 0.75vw;
  margin-top: 1vw;
}
.services-box li{
  color: #fff;
  font-size: 0.95vw;
}
.services-box .btn-mid{
  margin-top: 1.5vw;
}
.down-container{
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3vw;
  height: 3vw;
  background-color: #fff;
  position: absolute;
  left: 10vw;
  bottom: 0;
  z-index: 20;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.down-container:hover{
  opacity: 0.6;
}
.down-container a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#projects{
  padding: 0;
}
#projects-info .container{
  display: grid;
  grid-template-columns: 1fr;
}
.projects-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.projects-2{
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
.projects-box {
  position: relative;
  overflow: hidden;
  height: 20vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projects-box img {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.projects-box:hover img{
  opacity: 0.5;
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}
.projects-content{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 0.2s;
}
.projects-title {
  position: relative;
  margin-bottom: -5vw;
  z-index: 20;
  text-align: center;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.projects-box:hover .projects-title{
  opacity: 1;
  margin-bottom: 0;
}
.projects-title h2{
  line-height: 1;
  color: #fff;
  font-size: 2.5vw;
  font-style: italic;
  margin: 0 0 0.5vw 0;  
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.projects-title p{
  color: #fff;
  font-weight: 600;
  font-size: 2vw;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.projects-box .cover-bg{
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.projects-box:hover .cover-bg{
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}
.project-detail{
  width: 100%;
  background-color: #fff;
  margin-top: 3vw;
}
.project-detail h2{
  margin: 0 0 1.5vw 0;
  font-size: 3vw;
  text-align: center;
}
.project-detail ul{
  padding: 0 0 0 1vw;
  margin: 0;
}
.project-detail li{
  margin: 0.3vw 0;
  font-size: 1.05vw;
}
#projects-info{
  padding: 4vw 0;
  margin-top: 3.8vw;
  background-color: #fff;
}
.project-gallery{
  display: block;
  width: 100%;
  overflow: hidden;
  grid-row-start: 1;
}
.slider-single a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 30vw;
}
.slider-single .slick-list,
.slider-nav .slick-list{
  padding: 0;
  margin: 0;
}
.slider-nav{
  margin-left: -0.5vw;
  margin-right: -0.5vw;
  margin-top: 1vw;
}
.slider-nav div{
  position: relative;
  display: block;
  overflow: hidden;
  height: 5vw;
  margin: 0;
  cursor: pointer;
}
.slider-nav .slick-slide{
  margin: 0 0.5vw;
}
.slider-nav .slick-slide.is-active .cover-bg{
  opacity: 0.7;
}
.slider-single .slick-arrow {
  opacity: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  width: 2.5vw;
  height: 2.5vw;
  border: none;
  cursor: pointer;
  outline: none !important;
  font-size: 0;
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.slider-single .slick-prev{
  left: 0;
  margin: auto;
}
.slider-single .slick-next{
  right: 0;
  margin: auto;
}
.slider-single .slick-prev:before{
  content: '\e927';
  font-size: 1vw;
  font-family: 'fontello';
}
.slider-single .slick-next:before{
  content: '\e928';
  font-size: 1vw;
  font-family: 'fontello';
}
.project-gallery a:hover .cover-bg{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.fancybox-content{
  background-color: #fff !important;
}
.tab-pane {
  pointer-events: none;
  width: 100%;
  display: none;
  opacity: 0;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.tab-pane.active {
  pointer-events: visible;
  opacity: 1;
  display: block;
}
.category-tabs{
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.category-tabs li{
  list-style: none;
  margin: 0 0.5vw;
}
.category-tabs li a{
  border: none;
  outline: none;
  padding: 0.75vw 1.5vw;
  background-color: transparent;
  border: 2px solid #fff;
  display: inline-block;
  cursor: pointer;
  font-size: 0.85vw;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  color: #fff;
  z-index: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.category-tabs li:hover a{
  background-color: #fff;
  color: #000;
}
.category-tabs li.active a{
  background-color: #fff;
  color: #000;
}
#news{
  padding: 0;
}
.news-title {
  width: 30vw;
  left: 12vw;
  position: absolute;
  z-index: 20;
  text-align: left;
}
.news-title h2{
  color: #fff;
  font-size: 2.5vw;
  font-style: italic;
  margin: 0 0 0.5vw 0;  
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.news-title p{
  color: #fff;
  font-weight: 500;
  font-size: 1.2vw;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-title span{
  display: block;
  margin-top: 1vw;
  font-size: 1vw;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  z-index: 10;
}
.news-content{
  position: absolute;
  top: 0;
  left: 0;
  width: 25vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  background-color: rgba(0,0,0,0.85);
}
.news-box {
  position: relative;
  overflow: hidden;
  height: 20vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-box .cover-bg{
  transform: scale(1);
  -webkit-transform: scale(1);
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.news-box:hover .cover-bg{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}
.news-box:hover .top-overlay{
  opacity: 0;
}
#top-article{
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 15;
  padding: 0;
  height: 60vh;
  position: relative;
}
#article{
  position: relative;
  background-color: #fff;
  z-index: 20;
}
#article .article-container{
  z-index: 10;
  background-color: #fff;
  padding: 3vw 3vw 0 3vw;
  width: 100%;
  max-width: 55vw;
  margin: 0 auto;
  margin-top: -45vh;
}
.article-cover .article-title{
  position: absolute;
  padding: 0 2vw;
  z-index: 10;
}
.article-cover h1{
  text-align: center;
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 3vw;
}
.article-cover{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-left: -3vw;
  margin-right: -3vw;
  margin-top: -3vw;
  margin-bottom: 1.5vw;
  height: 25vw;
}
.article-text a{
  text-decoration: underline;
  font-weight: 700;
}
.article-text h2{
  line-height: 1.4;
  font-size: 1.4vw;
  font-weight: 600;
  margin: 0 0 1.5vw 0;
}
.article-text p{
  line-height: 1.6;
  margin-bottom: 1vw;
  font-size: 1vw;
  color: #000;
}
.article-text h6{
  margin: 2vw 0 0 0;
  font-weight: 400;
  font-size: 0.95vw;
  text-align: center;
}
.article-text img{
  display: block;
  width: 100%;
  margin: 2.5vw 0;
}
.article-share{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}
.article-share a{
  opacity: 1;
  width: 2.5vw;
  height: 2.5vw;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1vw;
  border-radius: 100%;
  margin-right: 0.2vw;
}
.article-share a:last-child{
  margin-right: 0
}
.article-share a:hover{
  opacity: 0.6;
}
.article-date{
  text-align: right;
  font-size: 0.95vw;
  color: #999;
}
.facebook {
  background-color: #3b5998;
  opacity: 1;
}
.twitter {
  background-color: #1da1f2;
  opacity: 1;
}
.article-gallery{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 1vw;
  margin-top: 3vw;
}
.article-gallery a{
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}
.article-gallery a .cover-bg{
  transform: scale(1);
  -webkit-transform: scale(1);
}
.article-gallery a:hover .cover-bg{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.about-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-gap: 5vw;
}
.about-text{
  display: block;
  padding: 3vw 0;
}
.about-text h3{
  color: #fff;
  font-weight: 700;
  font-size: 2.5vw;
  margin: 0 0 2vw 0;
}
.about-text p{
  color: #fff;
  font-size: 1vw;
  margin: 0 0 1.5vw 0;
}
.about-text p:last-child{
  margin: 0
}
.about-img{
  position: relative;
  overflow: hidden;
}
#top.top-contact{
  height: 70vh;
}
.contact-info{
	position: relative;
	display: grid;
	grid-template-columns: auto repeat(3, 1fr);
	grid-gap: 2.5vw;
}
.contact-box{
	border-left: 2px solid #fff;
	padding-left: 2vw;
  display: flex;
  flex-direction: column;
}
.contact-box:first-of-type{
  border: none;
  padding-left: 0;
}
.contact-box h3{
  font-size: 1.6vw;
	margin: 0 0 1vw 0;
  color: #fff;
}
.contact-box a{
  font-size: 1vw;
  color: #fff;
}
.contact-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 100%;
  background-color: #fff;
  color: #000 !important;
}
.contact-icon:hover{
  background-color: rgba(255,255,255,0.4);
}
body.compensate-for-scrollbar{
  overflow: initial !important;
  height: 100% !important;
  margin: 0 !important;
}
.memoir-text{
  display: block;
  margin-top: 2.5vw;
}
.memoir-text h3{
  font-weight: 700;
  font-size: 3vw;
  text-align: center;
  margin: 0 0 1.5vw 0;
}
.memoir-text p{
  font-size: 1vw;
  margin: 0 0 1vw 0;
}
.memoir-text .quote{
  text-align: center;
  font-style: italic;
  font-weight: 700;
  margin: 2vw 0;
}
.memoir-text .quote p{
  margin: 0;
  font-size: 1.2vw;
}
.memoir-text h4{
  font-size: 1.4vw;
  margin: 2vw 0 0.75vw 0;
}
.memoir-text ul{
  margin-bottom: 1.5vw;
}
footer{
  position: relative;
  z-index: 100;
  overflow: hidden;
}
.footer-grid{
  display: grid;
  grid-template-columns: 0.8fr repeat(3, 1fr);
  grid-gap: 2vw;
  align-items: center;
}
.footer-top{
  padding: 3vw 0 0 0;
}
.footer-logo img{
  width: 8vw;
}
.footer-column{
  color: #fff;
}
.footer-title{
  font-weight: 700;
  font-size: 1.2vw;
  margin: 0 0 0.75vw 0;
}
.footer-column a{
  display: grid;
  grid-template-columns: 2vw 1fr;
  grid-gap: 0.5vw;
  align-items: center;
  font-size: 1vw;
  font-weight: 500;
  color: #fff;
  opacity: 1;
}
.footer-column a:hover{
  opacity: 0.6;
}
.footer-column i{
  margin-right: 0.7vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2vw;
  height: 2vw;
}
.footer-bottom .container{
  display: block;
  text-align: center;
  margin-top: 3vw;
  padding-top: 2vw;
  padding-bottom: 2vw;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.footer-bottom p{
  color: #fff;
  text-align: center;
  font-size: 1vw;
}