html, body {
      cursor: url(resources/cursor.png), auto !important;
      background-color: #000000;
}

* {
      box-sizing: border-box;
      margin: 0%;
      padding: 0%;
      font-family: "Darker Grotesque" !important;
}

.video-container {
      position: absolute;
      width: 100%;
      height: 100vh;
      overflow: hidden;
}

video {
      object-fit: cover;
      width: 100vw;
      height: 100vh;
      position: absolute;
      top: 0;
      left: 0;
}

.video-container::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      opacity: 0.8;
}

.box {
	position: absolute;
	top: 93%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.box:hover {
	position: absolute;
	top: 93%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
}

.box span {
	display: block;
	width: 20px;
	height: 20px;
	border-bottom: 1px solid #fc0000;
	border-right: 1px solid #fc0000;
	transform: rotate(45deg);
	margin: -10px;
	animation: animate 2s infinite;
}

.box span:nth-child(2) {
	animation-delay: -0.2s;
}

.box span:nth-child(3) {
	animation-delay: -0.4s;
}

@keyframes animate {
	0% {
		opacity: 0;
		transform: rotate(45deg) translate(-20px, -20px);
	}
	50% {
		opacity: 1;		
	}
	100% {
		opacity: 0;
		transform: rotate(45deg) translate(20px, 20px);
	}
}
	
.header {
      position: absolute;
      top: 50%;
      left: 35%;
      transform: translate(-50%, -50%);
}

.header h1 {
      color: #dfdfdf;
      font-size: 80px !important;
      text-shadow: 4px 4px #fc0000;
      font-family: Darker Grotesque !important;
      font-weight: lighter !important;
}

@media(max-width: 900px) {
      .header {
            left: 50%;
      }

      .header h1 {
            font-size: 58px !important;
            text-align: center;
      }
}

body::-webkit-scrollbar {
    width: 0.35em;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(255, 255, 255), 0);
}

body::-webkit-scrollbar-thumb {
  background-color: #fc0000;
  border-radius: 2px;
}

.nav {
      width: 100%;
      height: 90px;
      position: fixed;
      z-index: 2;
}

.nav.scrolled {
      background-color: #000000 !important;
      transition: background-color 500ms linear;
}

.nav #brand {
      float: left;
      display: block;
      margin-left: 40px;
      line-height: 80px;
      font-weight: bold;
      text-transform: uppercase;
      font-size: 18px;
}

.nav #brand a {
      color: #fff;
      font-family: Darker Grotesque !important;
      transition: all 500ms ease-out;
}

.nav #brand a:hover {
      text-decoration: none;
}

.nav #menu {
      float: left;
      right: 40px;
      position: fixed;
}

.nav #menu li {
      padding-left: 40px;
      display: inline-block;
      text-transform: uppercase;
      font-size: 22px;
      line-height: 80px;
      position: relative;
      transition: all 500ms ease-out;
}

.nav #menu li a {
      font-family: Darker Grotesque !important;
      color: #d9d9d9;
      transition: all 500ms ease-out;
	   text-shadow: 2px 2px #fc0000;
	  font-family: Darker Grotesque !important;
}

.nav #menu li a:hover {
      text-decoration: none;
      color: #fc0000;
      transition: all 500ms ease-out;
}

#toggle {
      position: absolute;
      right: 40px;
      top: 20px;
      font-weight: 300;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 2px;
      z-index: 2;
      width: 30px;
      height: 30px;
      float: right;
      transition: all 0.3s ease-out;
      visibility: hidden;
      opacity: 0;
      cursor: pointer;
      text-shadow: 2px 2px #fc0000;
      font-family: Darker Grotesque !important;
      font-weight: lighter !important;
}

.close-btn {
      position: absolute;
      right: 30px;
      font-weight: 300;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 2px;
      z-index: 2;
      top: -2px;
      line-height: 80px;
      cursor: pointer;
      text-shadow: 2px 2px #fc0000;
      font-family: Darker Grotesque !important;
      font-weight: lighter !important;
}

#resize {
      z-index: 2;
      top: 0px;
      position: fixed;
      background: #000000;
      width: 100%;
      height: 100%;
      visibility: hidden;
      opacity: 0;
      transition: all 1s ease-out;
}

#resize #menu {
      height: 90px;
      position: absolute;
      left: 45%;
      transform: translateX(-40%);
      text-align: center;
      display: table-cell;
      vertical-align: center;
}

#resize #menu li {
      display: block;
      text-align: center;
      padding: 10px 0;
      font-size: 50px;
      text-transform: uppercase;
      min-height: 50px;
      font-weight: bold;
      transition: all 0.3s ease-out;
}

#resize li:nth-child(1) {
      margin-top: 60px;
}

#resize #menu li a {
      color: #fff;
      text-shadow: 1px 1px #fc0000;
      font-family: Darker Grotesque !important;
      font-weight: lighter !important;
}

#resize #menu li a:hover {
      text-decoration: none;
      color: #fc0000;
}

#resize.active {
      visibility: visible;
      opacity: 1;
}

@media(max-width: 900px) {
      #toggle {
            visibility: visible;
            opacity: 1;
            margin-top: 6px;
            margin-right: 4px;
            cursor: pointer;
      }
      nav #brand {
            margin-left: 10px;
      }
      #resize ul li a {
            font-size: 20px;
            font-family: "Poppins" !important;
            font-weight: lighter !important;
            color: rgb(156, 156, 156) !important;
            transition: all 500ms ease-out;
      }
      nav #menu {
            display: none;
      }
}

@media(min-width: 900px) {
      #resize {
            visibility: hidden !important;
      }
}

.content {
      position: absolute;
      margin-top: 100vh;
      width: 100%;
}

section {
      padding: 140px 0;
}

.section-index {
      color: #d3ae87;
      font-weight: bolder;
      font-size: 20px;
      font-family: Poppins !important;
}

.section-heading {
      color: #fc0000;
      text-transform: uppercase;
      letter-spacing: 4px;
      font-size: 22px;
}

.section-subheading {
      color: grey;
      margin: 10px 0;
}

.section-info {
      font-size: 24px;
      color: #d9d9d9;/*grey;*/
}

.more {
      margin: 40px 0;
}

button {
      background: none;
      border: .3pt solid rgba(252, 0, 0, 0.7);
      text-transform: uppercase !important;
      font-size: 14px !important;
      letter-spacing: 2px;
      padding: 18px 36px;
      color: #d9d9d9;
}

button:hover {
      background: none;
      border: .3pt solid rgba(217, 217, 217, 0.7);
      text-transform: uppercase !important;
      font-size: 14px !important;
      letter-spacing: 2px;
      padding: 18px 36px;
      color: #fc0000;
}

hr .redline {
	color: #fc0000;
	width: 20px;
	border: 0;
      height: 1px;
      background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

#myBtn {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 30px;
      z-index: 99;
      border: 1px solid #fc0000;
      outline: none;
      background-color: #000000;
      color: white;
      cursor: pointer;
      padding: 8px;
      border-radius: 3px;
      font-size: 26px;
}

#myBtn:hover {
      background-color: #555;
}

.story {
	background-color: #000000;
	color: #d9d9d9;
}

.services {
      background: #000000;
	color: #d9d9d9;
}

.realizations {
	background-color: #000000;
	color: #d9d9d9;
}

.service {
      margin: 30px 0;
}

.icon img {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: .9pt solid #fc0000;
	border-width: 3px;
}

.icon img:hover {
	border-style: 5px solid red;
      border-radius: 3px;
      box-shadow: inset 0 0 0 3px hsla(0,0%,100%,.15);
}

.icon ion-icon {
      font-size: 36px;
      color: #d3ae87;
}

.icon-title {
      font-size: 28px;
      margin-bottom: 4px;
      color: #d9d9d9;
      font-weight: lighter;
}

.service, .realization-img, .service-img {
      position: relative;
}

.realization-img {
      height: 340px;
}

.service-img {
      height: 340px;
}

.row-margin {
      margin: 50px 0;
}

.service-title {
      margin: 20px 0;
}

.service-title h5 {
      font-size: 28px;
}

.service-title span {
      font-size: 20px;
}

.service {
      overflow: hidden;
}

.service-one {
      background: url(resources/service1.jpg) no-repeat 50% 50%;
      background-size: cover;
      border: solid 2px #fc0000;
}

.service-two {
      background: url(resources/service2.jpg) no-repeat 50% 50%;
      background-size: cover;
      border: solid 2px #fc0000;
}

.service-three {
      background: url(resources/service3.jpg) no-repeat 50% 50%;
      background-size: cover;
      border: solid 2px #fc0000;
}

.service-four {
      background: url(resources/service4.jpg) no-repeat 50% 50%;
      background-size: cover;
      border: solid 2px #fc0000;
}

.realization-one {
      background: url(resources/realization1.jpg) no-repeat 50% 50%;
      background-size: cover;
      border: solid 2px #fc0000;
}

.realization-one:hover {
	background: url(resources/realization1-hover.jpg) no-repeat 50% 50%;
	cursor: pointer;
}

.realization-two {
      background: url(resources/realization2.jpg) no-repeat 50% 50%;
      background-size: cover;
      border: solid 2px #fc0000;
}

.realization-two:hover {
	background: url(resources/realization2-hover.jpg) no-repeat 50% 50%;
	cursor: pointer;
}

.realization-three {
      background: url(resources/realization3.jpg) no-repeat 50% 50%;
      background-size: cover;
      border: solid 2px #fc0000;
}

.realization-three:hover {
	background: url(resources/realization3-hover.jpg) no-repeat 50% 50%;
	cursor: pointer;
}

.realization-four {
      background: url(resources/realization4.jpg) no-repeat 50% 50%;
      background-size: cover;
      border: solid 2px #fc0000;
}

.realization-four:hover {
	background: url(resources/realization4-hover.jpg) no-repeat 50% 50%;
	cursor: pointer;
}

.footer {
      background: #000000;
}

#media, #address, #mail {
      text-align: center !important;
}

.footer .container {
      padding: 160px 0;
}

.footer li, p, h4 {
      font-size: 24px !important;
}

.footer h1 {
      color: #fc0000; /* grey; */
      font-weight: lighter;
}

.footer h4 {
      font-weight: lighter;
      color: #fff;
}

.footer a h4:hover {
	color: #fc0000;
}

.footer a:hover {
      font-weight: lighter;
      color: #fff;
      text-decoration: none;
}

.footer p {
      color: #fc0000; /* grey */
      font-weight: lighter;
}

.footer li {
      font-weight: lighter;
      color: #fff;
      padding-left: 20px;
      font-size: 38px !important;
}

.footer li:Hover {
	color: #fc0000;
}

#media ul {
      list-style: none;
}

#media ul li {
      display: inline-block;
}

@media(max-width: 900px) {
      .footer .container {
            width: 92% !important;
      }
}

#copyright {
	background-color: #000000;
	color: #dfdfdf;
	position: relative;
	cursor: default;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.075em;
	line-height: 1.5;
	text-align: center;
	text-transform: uppercase;
	margin: 2rem auto 2rem auto;
	width: calc(100% - 4rem);
	max-width: 72rem;
	z-index: 2;
	text-decoration: none;
}

#copyright input, #copyright select, #copyright textarea {
	color: #ffffff;
}

#copyright a {
	color: #ffffff;
	border-bottom-color: rgba(255, 255, 255, 0.5);
}

#copyright a:hover {
	border-bottom-color: transparent;
	color: #fc0000 !important;
	text-decoration: none;
}

#copyright strong, #copyright b {
	color: #ffffff;
}

#copyright h1, #copyright h2, #copyright h3, #copyright h4, #copyright h5, #copyright h6 {
	color: #ffffff;
}

#copyright blockquote {
	border-left-color: #ffffff;
}

#copyright code {
	background: rgba(255, 255, 255, 0.075);
	border-color: #ffffff;
}

#copyright hr {
	border-bottom-color: #ffffff;
}

#copyright a {
	color: inherit;
	border-bottom-color: inherit;
}

#copyright ul {
      list-style: none;
	margin: 0;
	padding-left: 0;
}

#copyright ul li {
	border-left: solid 2px;
	display: inline-block;
	line-height: 1;
	margin-left: 1rem;
	padding-left: 1rem;
}

#copyright ul li:first-child {
	border-left: 0;
	margin-left: 0;
	padding-left: 0;
}

@media screen and (max-width: 1280px) {
	#copyright {
	      margin: 4rem auto;
	}
      section {
            padding: 80px 0;
      }
}

@media screen and (max-width: 480px) {
	#copyright ul li {
		border-left: 0;
		margin: 1rem 0 0 0;
		padding-left: 0;
		display: block;
	}
	#copyright ul li:first-child {
		margin-top: 0;
	}
      section {
            padding: 15px 0;
      }
}	