@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Barlow:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
/* CSS Document */
:root {
    --main-bg-color: #FF631B;
    --main-txt-color: #FE5B27; 
    --main-padding: 10px;
	--main-font-family: "Barlow", Helvetica, Arial, "sans-serif";
	--main-header-height: 120px;
	--gallery-icon-top-padding: 130px;
}

::selection {
  background: #FFB795; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #FFB795; /* Gecko Browsers */
}

/* Container */
.container {
	margin: 0;
	padding: 0;
	height: auto;
	width: 100%;
	background-color: #FFFFFF;
	scroll-behavior: smooth;
	
	scroll-snap-type: mandatory;
	-webkit-scroll-snap-type: mandatory;
	-webkit-scroll-snap-points-y: repeat(100%);
	
	/* older spec implementation */
	scroll-snap-destination: 0% 100%;
	scroll-snap-points-y: repeat(100%);
}

.page {
	position: relative;
	margin: 0;
	padding: 0;
	scroll-snap-align: start;
	scroll-behavior: smooth;
	width: 100%;
	min-height: 100vh;
}

.page h1 {
	font-size: 60px;
	letter-spacing: 5px;
	color: var(--main-txt-color);
	font-weight: 300;
	padding: 0;
	margin: 0;
}

.hideme {
	opacity: 0;
}

/* Header */
header {
	font-family: var(--main-font-family);
	height: 120px;
	width: 100%;
	margin: 0;
	padding: 0;
	display: block;
	overflow: hidden;
}

.fancy-img {
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
	opacity: 1;
}

#logo {
	position: absolute;
	top: 35px;
	left: 20px;
}

.fancy-img:hover {
	opacity: 0.75;
}

/* Navigation */
nav {
	position: absolute;
	right: 20px;
	top: 65px;
	width: 50%;
	text-align: right;
}

header nav ul {
	list-style: none;
	float: right;
	margin-bottom: 0px;
}

nav ul li {
	float: left;
	font-size: 14px;
	text-align: left;
	margin-right: 10px;
	letter-spacing: 2px;
	font-weight: 500;
	transition: all 0.3s linear;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
}

ul li:hover a {
	opacity: 0.5;
}

ul li a {
	color: var(--main-txt-color);
	font-family: var(--main-font-family);
	padding: 10px;
	text-decoration: none;
	transition: all 0.3s linear;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
}

/* Hero Section */
.hero {
	height: calc(100vh - 120px);
	margin: 0;
	padding: 0;
	background-image: linear-gradient(rgba(107, 36, 0, 0.8), rgba(0, 0, 32, 0.4)), url(../images/board_2.jpg);
	background-size: cover;
	background-color: #AAAAAA;
	text-align: center;
	min-height: 600px;
}

.hero h1 {
	font-size: 72px;
	color: #FFFFFF;
	font-weight: 300;
	letter-spacing: 4px;
	padding: 0;
}

.hero-rotation {
	position: relative;
	top: 40%;
	padding: 0;
	margin: 0;
}

.hero-header {
	position: relative;
	top: calc(45%);
	padding: 0;
	margin: 0;
	font-size: 36px;
	color: #FFFFFF;
	font-weight: 200;
	letter-spacing: 3px;
}

.panel-banner {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	min-height: 800px;
	display: flex;
  	align-items: center;
}

.panel-banner h1 {
	font-weight: 400;
	font-size: 48px;
	color: #fff;
}

.panel-banner p {
	font-size: 20px;
	letter-spacing: 2px;
	line-height: 28px;
}

.panel-txt {
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: calc(100% - 400px);
}

.gallery-banner {
	min-height: 750px;
	display: flex;
}

.gallery-column {
	position: relative;
	padding-top: var(--gallery-icon-top-padding);
	width: 25%;
	margin: 0 auto;
	text-align: center;
}

.gallery-column h1 {
	font-weight: 600;
	color: var(--main-txt-color);
	font-size: 24px;
	letter-spacing: 5px;
}

.gallery-column p {
	font-weight: 300;
	color: #878787;
	font-size: 14px;p
	letter-spacing: 1px;
	text-align: left;
	line-height: 20px;
}

.gallery-column ul li {
	font-weight: 200;
	color: #878787;
	font-size: 18px;
	letter-spacing: 1.2px;
	padding: 5px 0px;
	text-align: left;
}

.hvac-icon:hover {
	opacity: 1;
	-webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.contact {
	background-color: var(--main-bg-color), FF631B;
	min-height: 800px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.contact h1 {
	color: #FFFFFF;
	letter-spacing: 5px;
	font-size: 84px;
	font-weight: 300;
}

.contact h2 {
	color: #FFFFFF;
	letter-spacing: 2px;
	margin-top: 40px;
}

.contact p {
	color: #FFFFFF;
	font-weight: lighter;
	line-height: 23px;
	letter-spacing: 2px;
}

.back-to-top a {
	position: relative;
	float: right;
	right: 0;
	top: 40px;
	font-weight: 300;
	text-decoration: none;
	letter-spacing: 1px;
	font-size: 20px;
	color: #FFFFFF;
	opacity: 1;
	transition: 0.3s ease;
}

.back-to-top:hover a {
	opacity: 0.5;
}

.scroll-down {
  opacity: 1;
  -webkit-transition: all .5s ease-in 3s;
  transition: all .5s ease-in 3s;
}
.scroll-down {
	position: absolute;
	left: calc(50% - 10px);
	bottom: 10%;
	width: 32px;
	height: 32px;
	-webkit-animation: bounce 2s infinite 2s;
	animation: bounce 2s infinite 2s;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
	transform: scale(1)
}

.scroll-down:before {
    transform: rotate(-45deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 2px solid var(--main-txt-color);
    border-width: 0px 0 2px 2px;
}

.scroll-down:hover {
	opacity: 0.5;
}

#white.scroll-down:before {
    transform: rotate(-45deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 2px solid white;
    border-width: 0px 0 2px 2px;
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

/* Body */
body {
	font-family: var(--main-font-family);
	background-color: #ffffff;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding: 0;
}

table {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}

#panel {
	font-weight: 200;
	font-size: 40px;
	color: #FFFFFF;
	letter-spacing: 0.6px;
	vertical-align: middle;
	align-items: center;
	background: linear-gradient(-45deg, #FF5216, #FF9216, #E4F15A);
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

#contact {
	background-color: var(--main-bg-color);
}

#copyright {
	text-align: right;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 2px;
}

#panel-td-two {
	padding-right: 60px;
}

#content {
	width: 100%;
	position: relative;
}

#static {
	position: absolute;
	top: var(--gallery-icon-top-padding);
	background: white;
	margin: auto;
}

#static:hover {
	opacity: 0;
}

#active {
	position: absolute;
	top: 0;
	margin: auto;
	background: white;
	opacity: 0;
}

#active:hover {
	opacity: 1;
}

#b {
	font-weight: 400;
	color: #414141;
	transition: 0.2s ease;
}

#b:hover {
	color: var(--main-txt-color);
}

#animated {
    animation: fadein 1s;
    -moz-animation: fadein 1s; /* Firefox */
    -webkit-animation: fadein 1s; /* Safari and Chrome */
    -o-animation: fadein 1s; /* Opera */
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

#arrow-label {
	position: absolute;
	top: 30px;
	width: 200px;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2px;
	text-align: center;
}

/* Mobile */
@media (max-width : 320px) {
	:root {
		--main-bg-color: #FF631B;
		--main-txt-color: #FE5B27; 
		--main-padding: 10px;
		--main-font-family: "Barlow", Helvetica, Arial, "sans-serif";
		--main-header-height: 120px;
		--gallery-icon-top-padding: 40px;
	}
	
	.container header nav {
		position: relative;
		margin: 0 auto;
		padding: 0;
		width: 100%;
		display: block;
	}
	
	/* Navigation */
	header {
		height: 137px;
	}
	
	nav {
		position: relative;
		right: 0;
		left: 0;
		top: 0;
		width: 100%;
		margin: 0 auto;
		padding: 0;
		text-align: center;
		display: block;
	}

	header nav ul {
		position: relative;
		background-color: #FF5025;
		top: 100px;
		width: 100%;
		text-align: center;
		margin: 0 auto;
		padding: 0;
		list-style: none;
	}

	nav ul li {
		font-size: 14px;
		text-align: center;
		letter-spacing: 2px;
		font-weight: 500;
		position: relative;
		float: none;
		display: inline-block;
		transition: all 0.3s linear;
		-webkit-transition: .3s ease;
		-moz-transition: .3s ease;
		-o-transition: .3s ease;
	}

	ul li:hover a {
		opacity: 0.5;
	}

	ul li a {
		color: #ffffff;
		font-family: var(--main-font-family);
		display: block;
		text-decoration: none;
		transition: all 0.3s linear;
		-webkit-transition: .3s ease;
		-moz-transition: .3s ease;
		-o-transition: .3s ease;
	}
	
	.txt-rotate {
		font-size: 36px;
	}
	
	.hero-header {
		font-size: 28px;
		position: relative;
		top: calc(42%);
		padding: 0;
		margin: 0;
		
	}
	
	#logo {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		padding: 0;
	}
	
	#panel p {
		font-size: 14px;
	}
	
	.panel-banner {
		text-align: center;
		min-height: 550px;
	}
	
	.panel-banner h1 {
		font-size: 28px;
	}
	
	.panel-banner p {
		font-size: 20px;
	}
	
	#panel-img {
		display: none;
	}
	
	#panel-td-one {
		width: 0;
	}
	
	#panel-td-two {
		width: 100%;
		text-align: center;
		padding: 20px;
	}
	
	.hvac-icon {
		width: 30%;
	}
	
	#gallery-img {
		width: 30%;
	}
	
	#static {
		width: 30%;
	}
	
	.gallery-banner {
		height: 1550px;
		display: block;
	}
	
	.gallery-column {
		position: relative;
		top: 40px;
		display: block;
		width: 90%;
	}
	
	#gallery-scroll {
		bottom: 60px;
	}
	
	.contact h1 {
		font-size: 48px;
	}
	
	.contact h2 {
		font-size: 16px;
	}
	
	.contact p {
		font-size: 14px;
	}
	
	iframe {
		display: none;
	}
}
