/* Home Page - CSS */
/* Each Section has its own css and Comment at the top */

/* Hero */
.hero_text h1 br {
	display: none;
}
#home_hero {
	height: 80vw;
	position:relative;
}
#home_hero::after {
	content: " ";
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5088235977984944) 50%, rgba(255,255,255,1) 100%);
	width: 100%;
	height: 100px;
	position: absolute;
	left: 0;
	bottom: 0;
}
#home_hero video{
	position: absolute;
	left: 50%;
	top:50%;
	min-height: 100%;
	width: auto;
	max-width: 100%;
	-webkit-transform: translate(-50%,-50%) scale(1);
	-ms-transform: translate(-50%,-50%) scale(1);
	transform: translate(-50%,-50%) scale(1);
	max-width: unset;
	min-width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero_text {
	top: 45vh;
}
/* Projects */
#projects::before {
	content: " ";
	width: 100%;
	height: 150px;
	position: absolute;
	left: 0;
	top: 35px;
	background-image: linear-gradient(to top, #fff, transparent);
	z-index: -1;
}
.projects_swiper .swiper-button-next::after,
.projects_swiper .swiper-button-prev::after {
	display: none;
}
.available-projects-swiper .swiper-slide a.project_button {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
#terms-content .swiper-slide .project_details_wrapper {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
#terms-content .swiper-slide .unit-availability {
	opacity: 0;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
#terms-content .swiper-slide .project_details_wrapper p.medium-text {
	height: 0;
	padding-top: 0;
	overflow: hidden;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
#terms-content .swiper-slide:hover .unit-availability {
	opacity: 1;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
#terms-content .swiper-slide:hover .project_details_wrapper p.medium-text {
	height: 35px;
	padding-top: 10px;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
/* Cutting Edge */
.cutting_edge_title_wrapper,
.cutting_edge_rocks_wrapper {
	flex-shrink: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	min-width: 100%;
}
.cutting_edge_rocks_wrapper {
	max-width: unset;
	min-width: 200vw;
	flex-wrap: nowrap;
	justify-content: space-evenly;
	top: -100px;
	left: 0;
	z-index: -1;
}
.cutting_edge_title_wrapper p,
.cutting_edge_rocks_wrapper {
	white-space: nowrap;
	animation: scroll 60s linear infinite;
}
p#cutting_edge_title-2{
	animation: scrollto 60s linear infinite;

}
p#cutting_edge_title-2 {
	margin-left: -200%;
}
.cutting_edge_title_wrapper p:last-child {
	margin-right: 50%;
}
@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-25%);
	}
}
@keyframes scrollto {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(25%);
	}
}
.cutting-edge-image {
	height: 350px;
	width: auto;
	animation: rotate 10s linear infinite;
}
.cutting-edge-image.odd {
	margin-top: 400px;
}
.cutting-edge-image.even {
	margin-bottom: 400px;
	animation-direction: reverse;
}
@keyframes rotate {
	0% {
		transform: rotate(3deg);
	}
	25% {
		transform: rotate(-3deg);
	}
	50% {
		transform: rotate(3deg);
	}
	75% {
		transform: rotate(-3deg);
	}
	100% {
		transform: rotate(3deg);
	}
}
/* Tabs */
.tab_before
 {
	background-color: #d9d6d3;
	position: relative;
	
}
.tab_before::before {
	content: " ";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: #d9d6d3;
	z-index: -1;
}

#tabs .nav-item,
#tabs-areas .nav-item,
#terms .nav-item {
	background-color: transparent;
}
#tabs .nav-item button::before,
#tabs-areas .nav-item button::before,
#terms .nav-item button::before {
	content: " ";
	width: 0;
	height: 1px;
	position: absolute;
	left: 1.5rem;
	bottom: 1rem;
	background-color: #000;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
#tabs .nav-item:hover button::before,
#tabs .nav-item button.active::before,
#tabs-areas .nav-item:hover button::before,
#tabs-areas .nav-item button.active::before,
#terms .nav-item:hover button::before,
#terms .nav-item button.active::before {
	width: calc(100% - 3rem);
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
#tabs-content .tab-pane,
#tabs-area-content .tab-pane {
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#tabs-area-content .tab-pane .tab-content-inner:hover {
	opacity: 1;
}
#tabs-area-content .tab-pane .tab-content-inner::before {
	content: " ";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(255, 255, 255, 0.75);
	opacity: 1;
	z-index: 1;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
#tabs-area-content .tab-pane .tab-content-inner .container {
	z-index: 2;
}
.line-after {
	position: absolute;
	right: 0;
	top: calc(50% - 10px);
	width: 1px;
	height: 20px;
	background-color: #000;
	z-index: 1;
}
.tab_content_link_a {
	position: absolute;
	top: -40px;
	right: 0;
}
.tab_arrow{
	right:0;
}
.tab-content-inner::after {
	content: " ";
	position: absolute;
	left: 0;
	top: 0;
	background: #000;
	width: 100%;
	height: 100%;
	opacity: 0.2;
}
.tab-content-inner .container{
	position:relative;
	z-index: 9;
}

/* Coming Soon */
.coming-soon-project a {
	position: relative;
}
.coming-soon-project a::before {
	content: " ";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, .15);
	z-index: 0;
}
.coming-soon-project .swiper-slide .container {
	position: relative;
	z-index: 2;
}