/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&amp;display=swap');

/* Body */
body {
	position: relative;
	background-color: #171717 !important;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

/* Scroll */
::-webkit-scrollbar {
  width: 4px;      
}
::-webkit-scrollbar-track {
  background: #181818; 
}
::-webkit-scrollbar-thumb {
  background: #FBFBFB;  
}
::-webkit-scrollbar-thumb:hover {
  background: #CFCAC0;  
}
.scrollbar-hide::-webkit-scrollbar {
  width: 0px !important;     
}

/* Selection Text Color */
::selection {
  background-color: #631227;
  color: #FBFBFB;
}

/*  Preloader */
.preloader {
  position: fixed; 
  top: 0;
  right: 0; 
  width: 100vw;
  height: 100vh;
  padding: 0 8vw;
  overflow: hidden;
  z-index: 99999999 !important;
}
.preloader-inner {
  position: absolute; 
  top: 0;
  left: 0; 
  width:100vw;
  height:100vh;    
  background-color: #141414;   
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 400px;
  border: 0px;
  height: 3px;
  overflow: hidden;
  border-radius: 100px;   
  z-index: 999999 !important;   
  background: #202021;      
}
#loader-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;  
  height: 3px;
  display: block;
  border-radius: 100px;  
  transition: all 0.4s linear;  
  background: #fbfbfb;   
}
.preload-entry {
  position: absolute;
  top: 45%;
  left: 0;  
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 2px;
  color: #fbfbfb;
  text-align: center;
  width: 90%;
  transform: translate(5%, -50%);
  z-index: 99999 !important; 
}
.preloader img {
  opacity: 0;
  pointer-events: none;
  z-index: -9; 
}
.preloader-hide {
  right: -101vw;
  transition: 0s;
  transition-delay: 2.2s;  
}
.preloader-hide .preloader-inner {
  animation-duration: 0.8s;
  animation-delay: 1.5s;
  animation-name: p-hide;      
}
@keyframes p-hide {
  0% {  
    opacity: 1; 
  }
  98% { 
    opacity: 0; 
  } 
  100% { 
    opacity: 0; 
  }    
}
.preloader-hide .loader {
  width: 0px; 
  transition: all 0.4s linear;   
  transition-delay: 0.6s;
}
.preloader-hide .preload-entry {
  top: 35%;
  opacity: 0;  
  transition: 1.8s;
  transition-delay: 0.8s;   
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);  
}

/* Transition Page Animation */
.transition-page {
  position: fixed;
  top: 0;
  right: -101vw;
  width: 100vw;
  height: 100vh;
  display: block;
  background-color: #181818;
  z-index: 999999999;
}
.transition-page-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0vw;
  height: 100%;
  background-color: #141414;
}
.active.transition-page {
  right: 0vw;
  transition: all 700ms ease; 
}
.active.transition-page .transition-page-inner {
  width: 100vw;
  transition: all 700ms ease; 
  transition-delay: 700ms;      
}

/* Background Lines */
.bg-lines {
  position: fixed;
  top: 0;
  left: 50vw;
  transform: translateX(-50%);
  width: 65.7vw;
  height: 100vh;
  z-index: -9999;
}
.bg-lines-inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(65.7vw / 3);
  height: 100%;
}
.bg-shadow {
  width: 100%;
  height: 100%; 
}
.bg-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  width: 50px;
  height: 100%;
  display: block;
  background: rgb(15,15,15);
  background: -moz-linear-gradient(-90deg, rgba(15,15,15,1) 0%, rgba(20,20,20,0) 100%);
  background: -webkit-linear-gradient(-90deg, rgba(15,15,15,1) 0%, rgba(20,20,20,0) 100%);
  background: linear-gradient(-90deg, rgba(15,15,15,1) 0%, rgba(20,20,20,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0f0f0f",endColorstr="#141414",GradientType=1); 
}
.bg-shadow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 50px;
  height: 100%;
  display: block;
  background: rgb(15,15,15);
  background: -moz-linear-gradient(90deg, rgba(15,15,15,1) 0%, rgba(20,20,20,0) 100%);
  background: -webkit-linear-gradient(90deg, rgba(15,15,15,1) 0%, rgba(20,20,20,0) 100%);
  background: linear-gradient(90deg, rgba(15,15,15,1) 0%, rgba(20,20,20,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0f0f0f",endColorstr="#141414",GradientType=1); 
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 12.3vh;
  padding: 0 2.6vw;
  z-index: 500;
}
header .row {
  height: 100%;
}
header .col-auto:nth-of-type(1) {
  z-index: 2;
}

/* Content Area */
.content-area-h100 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  z-index: 10;  
}

/* Logo */
.logo {
  position: relative;
  padding: 5px; 
}
.logo-inner {
  position: relative;
  overflow: hidden;   
}
.logo img {
  width: auto;
  height: 22px;
}

/* Menu Button */
.menu-btn {
  position: relative;
  cursor: pointer;
  padding: 5px;  
  z-index: 2;
}
.menu-btn-inner {
  position: relative;
  overflow: hidden;
}
.menu-btn-inner div {
  width: 18px;
  height: 2px;
}
.menu-btn-inner div:nth-of-type(2) {
  width: 14px;  
  margin-top: 7px;
  transition: 500ms all ease;   
}
.menu-btn-inner div span {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #FBFBFB;
}
.active.menu-btn .menu-btn-inner div:nth-of-type(2) {
  margin-top: -2px;
  transition: 500ms all ease;
  transition-delay: 500ms;  
}
.active.menu-btn .menu-btn-inner  div:nth-of-type(2) span {
  width: 18px; 
  transition: 500ms all ease;
}

/* Menu */
.menu-area {
  position: fixed;
  top: 0;
  right: -101vw;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  background-color: #181818;
  transition: all 700ms ease;
  transition-delay: 2300ms;   
}
.active.menu-area {
  right: 0vw;
  transition: all 700ms ease;
  transition-delay: 0ms;      
}
.menu {
  position: relative;
  width: 0vw;
  height: 100%;
  float: left;
  background-color: #141414;
  transition: all 700ms ease;
  transition-delay: 1600ms; 
}
.active.menu-area .menu {
  transition: all 700ms ease;
  transition-delay: 700ms;  
}
.menu .row {
  height: 100%;
}

/* Menu List */
.menu-items {
  position: relative;
  width: 64vw;
  height: 84vh;
  transform: translateY(3vh);
  overflow-x: hidden;
  overflow-y: auto; 
}
.menu-items ul {
  position: fixed;
  top: 50%;
  left: 0;
  width: 62vw;
  max-height: 84vh;
  padding-left: 18vw;
  transform: translateY(-50%);
  list-style: none;
}
.menu-items ul li ul {
  position: fixed;
  top: 50%;
  left: 0;  
  width: 62vw;
  height: auto;
  transform: translateY(-50%);
  z-index: 99999;
}
.menu-items ul li {
  padding: 15px 0;
}
.menu-items ul li a {
  position: relative;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 2px;
  color: #CDCDCD;
  display: inline-block;
}
.menu-items ul li a:hover {
  text-decoration-color: #BC2E2C;
}
.menu-items ul li ul {
  pointer-events: none;
}
.menu-items ul li ul li a {
  opacity: 0; 
  pointer-events: none;
}
.active.dropdown ul {
  pointer-events: visible;
}
.dropdown > a::after {
  font-family: "Font Awesome 5 Free";
  color: #CDCDCD;
  font-weight: 900;
  font-size: 14px;
  content: "\f0d7";
  position: absolute;
  top: 60%;
  right: -30px;
  transform: translateY(-50%);
  display: inline-block;
  border-radius: 3px;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: all 300ms ease;
}
.dropdown > a:hover::after {
  top: 50%;
  opacity: 1; 
}
.active.dropdown a:hover::after {
  top: 20%; 
  opacity: 0;
}
.m-back {
  position: absolute;
  top: 0;
  left: 18vw;
  height: 13vh;
  transform: translateX(7px);
  cursor: pointer;
  display: block;
  z-index: 9999999;
  transition: all 300ms ease;
}
.hide.m-back {
  opacity: 0;
  transform: translateX(-7px);
}
.m-back-inner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);  
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 2px;
  color: #CDCDCD;   
}

/* Menu Contacts */
.menu-contacts {
  position: relative;
  width: 36vw;
  height: 100%;
  padding-left: 8%;
  float: left;
  background-color: transparent;
}
.menu-contacts .row {
  height: 100%;
}
.menu-contacts-item  {
  margin: 45px 0;
}
.menu-contacts-item > span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 2px;
  color: #343434; 
  display: block;   
  pointer-events: none;
  opacity: 0;
}
.menu-contacts-item div {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 2px;
  color: #CDCDCD; 
  opacity: 0; 
}

/* Head Button */
.head-button {
  position: absolute;
  top: 0;
  width: auto;
  height: 12.3vh;
  display: inline-block;
  overflow: hidden;
  z-index: 1000; 
}
.head-button .row {
  height: 100%;
}
.head-button .col-auto {
  overflow: hidden;
}
.head-button a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 2px;
  color: #FBFBFB;   
  display: block;
}
.head-button a:hover {
  color: #FBFBFB; 
  text-decoration-color: #631227;
}
.head-button--center {
  left: 50%;
  transform: translateX(-50%);
}
.head-button--left {
  left: 28.3%;
  transform: translateX(-50%);
}
.head-button--right {
  left: 72.1%;
  transform: translateX(-50%);
}

/* Follow */
.follow {
  position: absolute;
  bottom: 4.5vh;
  left: 0;
  padding-left: 2.85vw;
  z-index: 20;
}
.follow::before {
  content: "";  
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);  
  width: 2px;
  height: 14px;
  display: block;
  background-color: #FBFBFB;   
}
.follow-inner {
  position: relative;
  overflow: hidden; 
}
.follow-inner span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 2px;
  color: #FBFBFB;
  display: inline-block;
  cursor: default;  
  transition: all 400ms ease;  
  transition-delay: 300ms;          
}
.follow-inner div {
  position: absolute;
  bottom: 0;
  left: 0;  
  transform: translateY(15px);  
  display: inline-flex;
  pointer-events: none;
  opacity: 0;   
  transition: all 400ms ease;  
  transition-delay: 0ms;          
}
.follow-inner div a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 2px;
  color: #FBFBFB;
  padding: 0 15px;
  float: left;  
}
.follow-inner div a:first-child {
  padding-left: 0;  
}
.follow-inner div a:last-child {
  padding-right: 0; 
}
.follow-inner div a:hover {
  color: #FBFBFB;  
  text-decoration-color: #631227; 
}
.active.follow-inner span {
  transform: translateY(-15px);
  opacity: 0;
  pointer-events: none;
  transition: all 400ms ease;  
  transition-delay: 0ms;  
}
.active.follow-inner div {
  transform: translateY(0px);
  opacity: 1;   
  transition: all 400ms ease;  
  transition-delay: 300ms;    
}

/* Footer */
footer {
  position: relative;
  width: 100%;
  height: 100px;
  padding: 0 2.85vw;
  z-index: 100;
  background-color: #181818;
}
footer .row {
  height: 100%;
}

/* Footer Copyright */
.copyright {
  position: relative;
  transform: translateY(2px);
}
.copyright i {
  font-size: 16px;
  color: #FBFBFB;
  opacity: 0.1; 
}
.copyright span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 2px;
  color: #FBFBFB;
  margin-left: 16px;
  display: inline-block;  
}

/* Footer Menu */
.footer-menu {
  position: relative;
  transform: translateY(-5px);  
}
.footer-menu ul {
  list-style: none; 
  padding: 0;
}
.footer-menu ul li {
  padding: 0 25px;
  float: left;
}
.footer-menu ul li:first-child {
  padding-left: 0;
}
.footer-menu ul li:last-child {
  padding-right: 0;
}
.footer-menu ul li a {
  position: relative;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 2px;
  color: #FBFBFB;
}
.footer-menu ul li a:hover {
  color: #FBFBFB; 
  text-decoration-color: #631227; 
}

/* Footer Up Top */
.up-top-footer {
  margin-right: 50px;
  display: block;
  cursor: pointer;
}
.up-top-footer rect {
  fill: #FBFBFB;
  transition: all 500ms ease; 
}

/*  Background Video  */
.background-video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
.background-video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.js .background-video {
  opacity: 0;
  -webkit-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}
.js .background-video.is-visible {
  opacity: 1;
}

/*  Project Intro  */
.project-intro {
  position: relative;
  width: 65.7vw;
  height: calc(100vh - 70px);
  margin: 0 auto;
  z-index: 9;
}

/*  Project Entry  */
.project-entry {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 65.7vw;
  height: auto;
  text-align: center;
  padding: 0 7vw;
  z-index: 99;
}
.project-entry-inner {
  position: relative;
  display: inline-block;
  overflow: hidden; 
  background-color: #181818;
}
.project-entry-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 19px 35px 19px 36px;   
}
.project-entry-content span {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 62px;
  font-weight: 900;
  line-height: 74px;
  letter-spacing: 4px;
  color: #CDCDCD;     
  word-wrap: break-word;  
  text-transform: uppercase;
  cursor: default; 
}
.project-entry-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #631227;
  z-index: 9999;
}

/*  Project Additional Text  */
.project-add-text-left {
  position: absolute;
  bottom: 9vh;
  left: 29px;
  max-height: 70vh;
  transform:  rotate(-180deg);
  cursor: default;
  overflow: hidden;
  pointer-events: none;
}
@-moz-document url-prefix() {
  .project-add-text-left {
    min-width: 70px;
  }
}
.project-add-text-left span {
  font-family: 'Poppins', sans-serif;
  font-size: 62px;
  font-weight: 900;
  line-height: 74px;
  letter-spacing: 6px;  
  text-transform: uppercase;
  -webkit-text-fill-color: transparent; 
  -webkit-text-stroke-color: #CDCDCD;
  -webkit-text-stroke-width: 1.5px;  
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.08;
}
.project-add-text-right {
  position: absolute;
  top: 19.5vh;
  right: -3px;
  max-height: 65vh;
  transform:  rotate(-180deg);
  padding-left: 29px; 
  cursor: default;
  overflow: hidden;
  pointer-events: none;
}
@-moz-document url-prefix() {
  .project-add-text-right {
    right: -10px;
    min-width: 70px;
  }
}
.project-add-text-right::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0px;
  width: 2px;
  height: 18px;
  display: block;
  background-color: #CDCDCD;
  transition: all 300ms ease;
}
.hide.project-add-text-right::before {
  height: 0px;
  transition: all 0ms ease;
}
.project-add-text-right span {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 4px;  
  text-transform: uppercase;  
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #CDCDCD;
  -webkit-text-stroke-width: 1px; 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Project Down Button */
.project-down-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateY(50%) translateX(-50%);  
  width: 62px;
  height: 62px;
  border-radius: 100px;
  overflow: hidden;
  border: 6px solid #141414;
}
.project-down-btn-inner {
  width: 100%;
  height: 100%;
  background-color: #631227;
}
.project-down-btn svg {
  position: absolute;
  top: 52.5%;
  left: 50.3%;
  transform: translateY(-50%) translateX(-50%); 
}
.project-down-btn rect {
  fill: #CDCDCD;
  transition: all 700ms ease; 
}

/*  Project Descrition  */
.project-desc {
  position: relative;
  width: 100vw;
  height: auto;
  background-color: #181818;
}
.project-desc-text {
  position: relative;
  width: 65.7vw;
  height: auto;
  margin: 0 auto;
  text-align: center; 
}
.project-desc-text-content {
  position: relative;
  max-width: 710px;
  height: auto; 
  display: inline-block;
  text-align: left;
  padding: 165px 0 160px 0;
}
.project-desc-text-content p {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 34px;
  letter-spacing: 2px;
  display: block;
  color: #CDCDCD;
  text-transform: uppercase;
}
.project-desc-text-content span {
  position: relative;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 2px;
  display: block;
  color: #CDCDCD;
}

/*  Project Gallery  */
.project-gallery {
  position: relative;
  width: 100vw;
  height: auto;
  margin: 90px 0 0 0;
}
.project-gallery-inner {
  position: relative;
  width: 65.7vw;
  height: auto;
  margin: 0 auto;
  transform: translateX(0px);
}
.project-gallery-item {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px;
}
.project-gallery-item-inner {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 2px;
  overflow: hidden; 
  background-color: #141414;
}
.col-lg-12 .project-gallery-item-inner {
  height: 600px;  
}
.project-gallery-item-inner img ,.project-gallery-item-inner .background-video-wrapper {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8; 
  transition: all 400ms ease;
}
.project-gallery-item-inner:hover img ,.project-gallery-item-inner:hover .background-video-wrapper {
  transform: scale(1.11) rotate(1deg);
  opacity: 1; 
  transition: all 400ms ease;
}

/*  Next Project */
.project-next {
  position: relative;
  width: 100vw;
  height: auto;
  margin-top: 90px;
  background-color: #181818;
}
.project-next::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 2px;
  display: block;
  background-color: #141414;
}
.project-next-content-link div {
  position: absolute;
  top: 2px;
  left: 0;
  transform: translateY(-100%); 
  width: 100%;
}
.project-next-content-link div span { 
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 26px;
  letter-spacing: 4px;
  text-transform: uppercase;  
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #CDCDCD;
  -webkit-text-stroke-width: 1px;
}
.project-next-link {
  position: relative;
  width: 65.7vw;
  height: auto;
  margin: 0 auto;
  padding: 167px 30px 160px 30px; 
  text-align: center; 
}
.project-next-content-link {
  position: relative;
  width: 100%;
  height: auto; 
  display: inline-block;
  text-align: center; 
}
.project-next-content-link a {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 62px;
  font-weight: 900;
  line-height: 74px;
  letter-spacing: 4px;
  color: #CDCDCD;     
  text-transform: uppercase;
  padding: 10px 30px 14px 30px;
  display: inline-block;
  overflow: hidden;
}
.project-next-content-link a:hover {
  color: #CDCDCD; 
  text-decoration: underline;
  text-decoration-color: #631227;     
}
.project-next-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #631227;
  z-index: 9999;
}

/*  Section Name  */
.section-name-area {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 120px;
  display: block;
}
.section-name-area-inner {
  position: relative;
  width: 65.7vw;
  height: auto;
  margin: 0 auto;
  padding: 0 31px;
  transform: translateX(2px);
}
.section-name {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.section-name-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #CDCDCD;  
}
.section-name-inner span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 2px;
  color: #181818;
  display: block;   
}
.left.section-name-area-inner {
  text-align: left;
}
.right.section-name-area-inner {
  text-align: right;
}
.center.section-name-area-inner {
  text-align: center;
}
.text-left.section-name-inner {
  padding: 13px 68px 12px 35px;
}
.text-right.section-name-inner {
  padding: 13px 35px 12px 68px;
}
.text-center.section-name-inner {
  padding: 13px 54px 12px 54px;
}

/*  About Intro  */
.about-intro-area {
  position: relative;
  width: 100vw;
  height: auto;
  z-index: 99; 
}
.section-name-about-intro {
  margin-top: 20.6vh;
}

/*  About Intro Content  */
.about-intro {
  position: relative;
  width: 65.7vw;
  margin: 0 auto;
  padding: 0 30px;
  transform: translateX(1px);
  z-index: 99;
}
.about-intro-photo {
  position: relative;
  width: 100%;
  float: left;
  overflow: hidden;
  border-radius: 2px;
}
.about-intro-photo-inner {
  position: relative;
  width: 100%;
}
.about-intro-photo-content {
  position: relative;
  width: 100%;
  background-color: #141414;
  padding:40px 0 40px 0;
}
.about-intro-photo-inner img ,.about-intro-photo-inner .background-video-wrapper {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: all 400ms ease; 
}
.about-intro-photo-inner:hover img ,.about-intro-photo-inner:hover .background-video-wrapper {
  transform: scale(1.11) rotate(1deg);
  opacity: 1; 
  transition: all 400ms ease;
}
.about-intro-name-area {
  position: relative;
  width: 60%;
  height: 100%;
  float: left;
}
.about-intro-name {
  position: absolute;
  top: 39%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  display: inline-block;
  text-align: center;
  padding: 0 10px 0 40px;
}
.about-intro-name-inner {
  position: relative;
  display: inline-block;
  background-color: #CDCDCD;
}
.about-intro-name-inner::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 15px;
  width: 100%;
  height: 100%;
  display: block;
  border: 1.5px solid #CDCDCD;
  opacity: 1;
  z-index: -9999;
  transition: all 400ms ease-in;
  transition-delay: 400ms;
}
.hide.about-intro-name-inner::before {
  width: 0%;
  border: 0px solid #CDCDCD;
}
.about-intro-name-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px 34px 16px 40px;
  overflow: hidden; 
}
.about-intro-name-content span {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 56px;
  font-style: italic;
  letter-spacing: 4px;  
  color: #1A1A1A;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent; 
  -webkit-text-stroke-color: #1A1A1A;
  -webkit-text-stroke-width: 2.5px;
}
.about-entry-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #631227;
  z-index: 9999;
}
.about-intro-occupation-content {
  position: absolute;
  bottom: 30px;
  left: 0px;
  transform: translateX(-50%);
  max-height: 55vh;
  overflow: hidden;
}
.about-intro-occupation-content-inner {
  position: relative;
  width: 100%;
  height: 100%; 
  padding: 18px 13px 12px 8px; 
  border-radius: 2px;
  background-color: #631227;  
}
@-moz-document url-prefix() {
  .about-intro-occupation-content-inner {
    min-width: 44px;
  }
}
.about-intro-occupation-content span {
  position: relative;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 2px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #CDCDCD;
  -webkit-text-stroke-width: 1px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;  
}
.about-intro-desc {
  position: relative;
  width: 100vw;
  height: auto;
  margin-top: -8vh;
  background-color: #181818;  
  z-index: 9;
}
.about-intro-text {
  position: relative;
  width: 65.7vw;
  height: auto;
  margin: 0 auto;
  text-align: center; 
}
.about-intro-text-content {
  position: relative;
  max-width: 710px;
  height: auto; 
  display: inline-block;
  text-align: left;
  padding: 146px 0 160px 0;
}
.about-intro-text-content p {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 34px;
  letter-spacing: 2px;
  display: block;
  color: #CDCDCD;
  text-transform: uppercase;
}
.about-intro-text-content span {
  position: relative;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 2px;
  display: block;
  color: #CDCDCD;
}

/*  Info Box  */
.info-box-area {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 50px;
  display: block;
}
.info-box-area-inner {
  position: relative;
  width: 65.7vw;
  height: auto;
  margin: 0 auto;
  transform: translateX(2px);
}
.info-box-item {
  position: relative;
  width: 100%;
  height: 27vh;
  padding: 1px;
}
.info-box-item-inner {
  position: relative;
  width: 100%;
  height: 100%; 
  background-color: #181818;    
}
.owl-item:nth-of-type(2n) .info-box-item-inner {
  background-color: #CDCDCD !important;   
}
.info-box-item-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  text-align: center;
  display: block;
}
.info-box-item-content span {
  position: relative;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 2px;
  color: #CDCDCD;
  padding: 12px 18px 8px 20px;  
  max-width: 90%;
  display: inline-block;
  word-break: break-word;
}
.owl-item:nth-of-type(2n) .info-box-item-content span {
  color: #181818;   
}
.info-box-item-content span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  
  display: block;
  border: 1px solid #CDCDCD;  
}
.hide.info-box-item-content span::before {
  border: 1px solid transparent;  
}
.owl-item:nth-of-type(2n) .info-box-item-content span::before { 
  border: 1px solid #181818;  
}
.owl-item:nth-of-type(2n) .hide.info-box-item-content span::before {
  border: 1px solid transparent;  
}
.info-box-area .owl-item {
  position: relative;
  float: left;
  text-align: center;
  transform: translateY(5px); 
}
.info-box-area .owl-carousel .owl-nav.disabled {
  display: none; 
}
.info-box-area .owl-stage-outer {
  overflow: hidden;
}
.info-box-area .owl-carousel .owl-dots {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 5px;
  overflow: hidden;
}
.info-box-area .owl-carousel .owl-dots .owl-dot {
  width: 5px !important;
  height: 20px;
  border: 0px;
  display: block;
  background-color: #CDCDCD;
  opacity: 0.1;
}
.info-box-area .owl-carousel .owl-dots .owl-dot:hover {
  opacity: 0.2;
}
.info-box-area .owl-carousel .owl-dots .active.owl-dot {
  background-color: #CDCDCD;
  opacity: 1;   
}
.owl-item:nth-of-type(2n) .info-box-animation {
  background-color: #181818;    
}

/*  About Video  */
.about-video {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 120px;
  display: block;
}
.about-video-inner {
  position: relative;
  width: 65.7vw;
  height: 63vh;
  margin: 0 auto;
  padding: 0 30px;
  transform: translateX(2px);
}
.about-video-content {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1px;
  overflow: hidden;
  background-color: #141414;
}
.about-video-content .background-video-wrapper {
  opacity: 0.8;
}
.about-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 65px; 
  transform: translateY(-50%) translateX(-50%);
  overflow: hidden;
  display: inline-block;
  border-radius: 100px;
  background-color: #181818;
}
.about-video-play i {
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 14px;
  color: #CDCDCD; 
}

/*  Awards  */
.awards-area {
  position: relative;
  width: 100%;
  height: auto;
  margin: 60px 0 85px 0;
  display: block;
}
.awards-area-inner {
  position: relative;
  width: 65.7vw;
  height: auto;
  margin: 0 auto;
  transform: translateX(2px);
}
.awards-item {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 60px;
}
.awards-item-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
  text-align: center;
}
.awards-item-inner > div {
  position: relative;
  border: 2px solid #CDCDCD;
  border-radius: 100px;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  overflow: hidden;
}
.awards-item-inner > div span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(1px);
  width: 100%;
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 34px;
  letter-spacing: 4px;  
  color: #CDCDCD;
}
.awards-item-inner > span {
  position: relative;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 2px;
  color: #181818;
  background-color: #CDCDCD;
  padding: 12px 18px 8px 20px;
  max-width: 90%;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 1px;
  display: inline-block;
}

/*  Questions? */
.questions {
  position: relative;
  width: 100vw;
  height: auto;
  margin-top: 120px;
}
.questions::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 2px;
  display: block;
}
.questions-content-link div {
  position: absolute;
  top: 2px;
  left: 0;
  transform: translateY(-100%); 
  width: 100%;
}
.questions-content-link div span {  
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 26px;
  letter-spacing: 4px;
  text-transform: uppercase;  
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #CDCDCD;
  -webkit-text-stroke-width: 1px;
}
.questions-link {
  position: relative;
  width: 65.7vw;
  height: auto;
  margin: 0 auto;
  padding: 70px 30px 25px 30px; 
  text-align: center; 
}
.questions-content-link {
  position: relative;
  width: 100%;
  height: auto; 
  display: inline-block;
  text-align: center; 
}
.questions-content-link a {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 62px;
  font-weight: 900;
  line-height: 74px;
  letter-spacing: 4px;
  color: #CDCDCD;     
  text-transform: uppercase;
  padding: 10px 30px 14px 30px;
  display: inline-block;
  overflow: hidden;
}
.questions-content-link a:hover {
  color: #CDCDCD; 
  text-decoration: underline;
  text-decoration-color: #631227;     
}
.questions-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #631227;
  z-index: 9999;
}
.questions-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #BC2E2C;
  z-index: 9999;
}

/*  Contacts  */
.contacts-area {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 32vh;
}
.section-name-contacts {
  margin-top: 0;
}
.contacts {
  position: relative;
  width: 100%;
  height: auto;
  display: inline-block;
  margin-top: 20vh;
}
.contacts-inner {
  position: relative;
  width: 65.7vw;
  height: auto;
  margin: 0 auto;
  transform: translateX(2px); 
}
.contacts-item {
  position: relative;
  width: calc(100% / 3);
  height: 27vh;
  padding: 1px;
  float: left;
}
.contacts-item-inner {
  position: relative;
  width: 100%;
  height: 100%; 
  background-color: #181818;    
}
.contacts-item:nth-of-type(2n) .contacts-item-inner {
  background-color: #CDCDCD !important;   
}
.contacts-item-content {
  position: absolute;
  top: 55%;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
  display: block;
}
.contacts-item-content span {
  position: relative;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 2px;
  color: #CDCDCD;
  max-width: 90%;
  display: inline-block;
}
.contacts-item:nth-of-type(2n) .contacts-item-content span {
  color: #181818;   
}
.contacts-item-inner i {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);  
  font-size: 16px;
  color: #CDCDCD;
}
.contacts-item:nth-of-type(2n) .contacts-item-inner i {
  color: #181818;   
}

/* Medium devices (tablets) */
@media  (max-width: 1024px) { 
/*  Preloader */
.loader {
  width: 400px;     
}
.preload-entry {
  top: 45%;
}
/* Background Lines */
.bg-lines {
  display: none;
}
/* Header */
header {
  position: absolute;
  height: 11vh;
  padding: 0 5.3vw;
}
/* Logo */
.logo img {
  width: auto;
  height: 22px;
}
/* Menu */
.active.menu-area .menu {
  width: 100vw;
}
/* Menu List */
.menu-items { 
  width: 100vw;
  height: 70vh;
  transform: translateY(0vh);
}
.menu-items ul {
  width: 100vw;
  max-height: 70vh; 
  padding-left: 0vw;
  text-align: center;
}
.menu-items ul li ul {
  width: 100vw;
}
.menu-items ul li a {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 2px;
}
.m-back {
  top: calc(var(--vh, 1vh) * 100);
  left: calc(50vw - 20px);
  height: 8vh;
  transform: translateX(-50%) translateY(-100%);
}
.m-back-inner {
  top: 0;
  transform: translateY(0);
}
.hide.m-back {
  opacity: 0;
  transform: translateX(-50%) translateY(-100%);
}
/* Menu Contacts */
.menu-contacts {
  display: none;
}
/* Footer */
footer {
  height: 100px;
  padding: 0 6vw;
}
/* Content Area */
.content-area-h100 {
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}
/* Head Button */
.head-button {
  display: none;
}
/* Follow */
.follow {
  bottom: 5vh;
  padding-left: 6vw;  
}
/*  Project Intro  */
.project-intro {
  width: 88vw;
  height: calc(var(--vh, 1vh) * 100 - 70px);
}
/*  Project Entry  */
.project-entry {
  width: 100%;
  padding: 0 4vw; 
}
.project-entry-content {
  padding: 19px 35px 19px 36px;     
}
.project-entry-content span {
  font-size: 52px;
  font-weight: 900;
  line-height: 56px;
  letter-spacing: 4px;
  overflow: hidden;
  word-break: break-word;
}
/*  Project Additional Text  */
.project-add-text-left {
  bottom: 9vh;
  left: -2px;
}
.project-add-text-left span {
  font-size: 58px;
  font-weight: 900;
  line-height: 50px;
  letter-spacing: 6px;    
}
.project-add-text-right {
  top: 19.5vh;
  right: -3px;
  padding-left: 0px; 
}
.project-add-text-right::before {
  display: none;
}
.project-add-text-right span {
  font-size: 20px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 4px;  
}
/*  Project Descrition  */
.project-desc-text {
  width: 75vw;  
}
.project-desc-text-content {
  max-width: 100%;
  padding: 145px 0 140px 0;
}
.project-desc-text-content span {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 2px;
}
/*  Project Gallery  */
.project-gallery {
  margin: 90px 0 0 0;
}
.project-gallery-inner {
  width: 75vw;
  transform: translateX(0px);
}
.project-gallery-item {
  padding: 30px 0;
}
.project-gallery-item-inner {
  height: auto;
  border-radius: 2px;
}
.col-lg-12 .project-gallery-item-inner {
  height: auto;  
}
.project-gallery-item-inner .background-video-wrapper {
  height: 384px;  
}
.project-gallery-item-inner img ,.project-gallery-item-inner .background-video-wrapper {
  opacity: 0.8; 
}
/*  Next Project */
.project-next {
  margin-top: 90px;
}
.project-next-content-link div {
  top: -10px;
}
.project-next-content-link div span { 
  font-size: 20px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 4px;
  -webkit-text-stroke-width: 1px;
}
.project-next-link {
  width: 75vw;
  padding: 130px 0 120px 0; 
}
.project-next-content-link {
  max-width: 100%;
}
.project-next-content-link a {
  font-size: 52px;
  font-weight: 900;
  line-height: 56px;
  letter-spacing: 4px; 
  text-transform: uppercase;
}
/*  Section Name  */
.section-name-area {
  padding-top: 120px;
  margin-top: 0;
}
.section-name-area-inner {
  width: 75vw;
  padding: 0 0px;
}
.left.section-name-area-inner {
 text-align: center;
}
.right.section-name-area-inner {
 text-align: center;
}
.center.section-name-area-inner {
  text-align: center;
}
.text-left.section-name-inner {
  padding: 13px 54px 12px 54px;
}
.text-right.section-name-inner {
  padding: 13px 54px 12px 54px;
}
.text-center.section-name-inner {
  padding: 13px 54px 12px 54px;
}
/*  About Intro  */
.about-intro-area {
  margin-top: 45px;
}
.section-name-about-intro {
  padding-top: 20.6vh;
}
/*  About Intro Content  */
.about-intro {
  width: 75vw;
  height: calc(var(--vh, 1vh) * 66);
  padding: 0 0px;
}
.about-intro-photo {
  width: 100%;
}
.about-intro-name-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-intro-name {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 40px 0 40px;
}
.about-intro-name-content {
  padding: 16px 24px 16px 28px;
}
.about-intro-name-inner::before {
  display: none;
}
.about-intro-name-content span {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 56px;
  font-style: italic;
  letter-spacing: 4px;  
  text-transform: uppercase;
  -webkit-text-fill-color: transparent; 
  -webkit-text-stroke-color: #1A1A1A;
  -webkit-text-stroke-width: 2.5px;
  word-break: break-word;
}
.about-entry-animation {
  background-color: #181818;
}
.about-intro-occupation-content {
  position: absolute;
  bottom: 30px;
  left: 100%;
  transform: translateX(-50%);
}
.about-intro-text {
  width: 75vw;  
}
.about-intro-text-content {
  max-width: 100%;
  padding: 126px 0 140px 0;
}
.about-intro-text-content span {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 2px;
}
/*  Info Box  */
.info-box-area {
  margin-top: 50px;
}
.info-box-area-inner {
  width: 75vw;
}
.info-box-item {
  height: 30vh;
  padding: 1px;
}
.info-box-area .owl-item {
  float: none; 
}
.info-box-area .owl-carousel .owl-dots .owl-dot {
  display: none !important;
}
/*  About Video  */
.about-video {
  margin-top: 120px;
}
.about-video-inner {
  width: 75vw;
  height: 63vh;
  padding: 0 0px;
}
/*  Awards  */
.awards-area {
  margin: 20px 0 115px 0;
}
.awards-area-inner {
  width: 75vw;
}
.awards-item {
  margin-top: 100px;
}
.awards-item-inner > div {
  width: 150px;
  height: 150px;
}
/*  Questions? */
.questions {
  margin-top: 90px;
}
.questions-content-link div {
  top: -10px;
}
.questions-content-link div span {  
  font-size: 20px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 4px;
  -webkit-text-stroke-width: 1px;
}
.questions-link {
  width: 75vw;
  padding: 130px 0 120px 0; 
}
.questions-content-link {
  max-width: 100%;
}
.questions-content-link a {
  font-size: 52px;
  font-weight: 900;
  line-height: 56px;
  letter-spacing: 4px; 
  text-transform: uppercase;
}
/*  Contacts  */
.contacts-area {
  height: auto;
  padding-top: 12vh;
  padding-bottom: 120px;
}
.contacts {
  margin-top: 18vh;
}
.contacts-inner {
  width: 75vw;
}
.contacts-item {
  width: 100%;
  height: 30vh;
  padding: 1px;
}

.p-events ,.p-events a ,.p-events a::after{
  pointer-events: none !important;
}

/* Hide md */
.hide-md {
  display: none !important;
}

}

/* Small devices (Smartphone) */
@media  (max-width: 767px) { 
/*  Preloader */
.loader {
  width: 300px;     
}
.preload-entry {
  top: 45%;
} 
/* Header */
header {
  height: 11vh;
  padding: 0 5.8vw;
}
/* Menu List */
.menu-items { 
  height: 65vh;
  transform: translateY(-4vh);
}
.menu-items ul {
  max-height: 65vh; 
}
.menu-items ul li {
  padding: 10px 0;
}
.menu-items ul li a {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 2px;
}
.m-back {
  left: calc(50vw - 20px);
  height: 8vh;
}
/* Footer */
footer {
  padding: 0 7vw;
}
/* Footer Up Top */
.up-top-footer {
  transform: translateY(1px);
}
/* Follow */
.follow {
  bottom: 5vh;
  padding-left: 7vw;  
}
/*  Project Intro  */
.project-intro {
  width: 86vw;
  height: calc(var(--vh, 1vh) * 100 - 70px);
}
/*  Project Entry  */
.project-entry {
  width: 100%;
  padding: 0 6vw; 
}
.project-entry-content {
  padding: 16px 30px 16px 31px;     
}
.project-entry-content span {
  font-size: 34px;
  font-weight: 900;
  line-height: 38px;
  letter-spacing: 4px;
}
/*  Project Additional Text  */
.project-add-text-left {
  bottom: 7vh;
  left: -2px;
}
.project-add-text-left span {
  font-size: 52px;
  font-weight: 900;
  line-height: 44px;
  letter-spacing: 6px;    
}
.project-add-text-right {
  top: 15vh;
  right: -3px;
  padding-left: 0px; 
}
.project-add-text-right::before {
  display: none;
}
.project-add-text-right span {
  font-size: 20px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 4px;  
}
/*  Project Descrition  */
.project-desc-text {
  width: 86vw;  
}
.project-desc-text-content {
  padding: 125px 0 120px 0;
}
.project-desc-text-content span {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 2px;
}
/*  Project Gallery  */
.project-gallery {
  margin: 50px 0 0 0;
}
.project-gallery-inner {
  width: 86vw;
}
.project-gallery-item {
  padding: 15px 0;
}
.project-gallery-item-inner {
  height: auto;
  border-radius: 2px;
}
.col-lg-12 .project-gallery-item-inner {
  height: auto;  
}
.project-gallery-item-inner .background-video-wrapper {
  height: 250px;  
}
.project-gallery-item-inner img ,.project-gallery-item-inner .background-video-wrapper {
  opacity: 0.8; 
}
/*  Next Project */
.project-next {
  margin-top: 50px;
}
.project-next-content-link div {
  top: -3px;
}
.project-next-content-link div span { 
  font-size: 16px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 4px;
  -webkit-text-stroke-width: 1px;
}
.project-next-link {
  width: 86vw;
  padding: 110px 0 100px 0; 
}
.project-next-content-link {
  max-width: 100%;
}
.project-next-content-link a {
  font-size: 34px;
  font-weight: 900;
  line-height: 38px;
  letter-spacing: 4px;
}
/*  Section Name  */
.section-name-area {
  padding-top: 100px;
  margin-top: 0;
}
.section-name-area-inner {
  width: 86vw;
}
/*  About Intro  */
.about-intro-area {
  margin-top: 45px;
}
.section-name-about-intro {
  padding-top: 18vh;
}
/*  About Intro Content  */
.about-intro {
  width: 86vw;
  height: calc(var(--vh, 1vh) * 64);
}
.about-intro-name-content {
  padding: 16px 18px 16px 22px;
}
.about-intro-name-content span {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 38px;
  font-style: italic;
  letter-spacing: 4px;  
  text-transform: uppercase;
  -webkit-text-fill-color: transparent; 
  -webkit-text-stroke-color: #1A1A1A;
  -webkit-text-stroke-width: 2.5px;
}
.about-intro-text {
  width: 86vw;  
}
.about-intro-text-content {
  padding: 106px 0 120px 0;
}
.about-intro-text-content span {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 2px;
}
.about-intro-occupation-content {
  position: absolute;
  bottom: 30px;
  left: 100%;
  transform: translateX(-70%);
}
/*  Info Box  */
.info-box-area {
  margin-top: 50px;
}
.info-box-area-inner {
  width: 86vw;
}
.info-box-item {
  height: 27vh;
}
/*  About Video  */
.about-video {
  margin-top: 100px;
}
.about-video-inner {
  width: 86vw;
  height: 60vh;
}
/*  Awards  */
.awards-area {
  margin: 20px 0 80px 0;
}
.awards-area-inner {
  width: 86vw;
}
.awards-item {
  margin-top: 80px;
}
.awards-item-inner > div {
  width: 150px;
  height: 150px;
}
/*  Questions? */
.questions {
  margin-top: 100px;
}
.questions-content-link div {
  top: -3px;
}
.questions-content-link div span {  
  font-size: 16px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 4px;
  -webkit-text-stroke-width: 1px;
}
.questions-link {
  width: 86vw;
  padding: 110px 0 100px 0; 
}
.questions-content-link {
  max-width: 100%;
}
.questions-content-link a {
  font-size: 34px;
  font-weight: 900;
  line-height: 38px;
  letter-spacing: 4px; 
  text-transform: uppercase;
}
/*  Contacts  */
.contacts-area {
  height: auto;
  padding-top: 12vh;
  padding-bottom: 120px;
}
.contacts {
  margin-top: 16vh;
}
.contacts-inner {
  width: 86vw;
}
.contacts-item {
  height: 27vh;
}
.contacts-item-inner i {
  top: 50px;
}
/* Hide sm */
.hide-sm {
  display: none !important;
}

}