/* BANNER */
.banner-section {
	position: relative;
	background-image: url('/src/assets/img/banner.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
}
.banner-section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background-color: rgba(0,0,0,0.8);
}
.banner-section > * {
	position: relative;
	z-index: 2;
}
.banner-section .inner::before {
	content: '';
	position: absolute;
	left: -180rem;
	bottom: -1px;
	display: block;
	height: 2rem;
	width: 200rem;
	background-color: #eee;
	background-color: #fff; /* TEMP */
	clip-path: polygon(
		0 0,
		calc(100% - 1rem) 0,
		100% 100%,
		0 100%
	);
}
.banner-section h1 {
	margin-bottom: 2rem;
	font-family: 'Walkway Black';
	font-size: 7.2rem;
	letter-spacing: 4px;
}
.banner-section h1 span {
	color: #a7c7e7;
}
.banner-section p {
	margin-bottom: 2rem;
	font-size: 2.2rem;
}
.banner-section .price {
	color: #a7c7e7;
}
@media screen and (max-width: 768px) {
	.banner-section {
		text-align: center;
	}
	.banner-section h1 {
		font-size: 4rem;
	}
	.banner-section h1 i,
	.banner-section h1 span {
		display: none;
	}
}

/* SECTIONS */
.banner-section .inner {
	padding: 10rem 2rem 6rem;
	padding: 10rem 4rem; /* TEMP */
}
.solutions-section {
	background-color: #eee;
}
.solutions-section .inner {
	padding: 8rem 0;
}
@media screen and (max-width: 768px) {
	.banner-section .inner {
		padding: 8rem 4rem; /* TEMP */
	}
}

/* PRODUCTS SECTION */
.products-section h2 {
	text-align: center;
}
.products-section .inner {
	padding-bottom: 4rem;
}
.products-list {
	margin: 0 -1rem;
	padding-top: 4rem;
}
.products-list::after {
	content: '';
	display: table;
	clear: both;
}
.products-list > li {
	float: left;
	width: 33.33%;
	padding: 1rem;
	margin-bottom: 5rem;
}
.products-list .product {
	position: relative;
	/* padding: 6rem 3rem 5rem; */
	padding: 6rem 3rem 3rem;
	border: 1px solid #ddd;
}
.products-list .product .product-icon {
	position: absolute;
	top: -4rem;
	left: 3rem;
	width: 10rem;
	height: 8rem;
	background: #000;
	font-size: 3.5rem;
	color: #fff;
	clip-path: polygon(
		0 0,
		calc(100% - 2.5rem) 0,
		100% 100%,
		0 100%
	);
}
.products-list li:nth-child(1) .product .product-icon {
	background-color: #B97A7A;
}
.products-list li:nth-child(2) .product .product-icon {
	background-color: #C88F6A;
}
.products-list li:nth-child(3) .product .product-icon {
	background-color: #CFC27A;
}
.products-list li:nth-child(4) .product .product-icon {
	background-color: #A3B37C;
}
.products-list li:nth-child(5) .product .product-icon {
	background-color: #7FAF9A;
}
.products-list li:nth-child(6) .product .product-icon {
	background-color: #6BAFB1;
}
.products-list li:nth-child(7) .product .product-icon {
	background-color: #6F94B2;
}
.products-list li:nth-child(8) .product .product-icon {
	background-color: #7C7BAA;
}
.products-list li:nth-child(9) .product .product-icon {
	background-color: #9B7F9E;
}
.products-list .product .product-icon i {
	position: absolute;
	top: 50%;
	left: calc(50% - 1rem);
	transform: translate(-50%,-50%);
}
.products-list .product h3 {
	margin-bottom: 1rem;
	font-size: 3rem;
}
.product-features-list li {
	margin-bottom: 0.8rem;
}
.product-features-list li::before {
	content: '» ';
}
.products-list .product a {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 1rem 1rem 1rem 3rem;
	background-color: #eee;
	font-size: 1.6rem;
	clip-path: polygon(
		1.5rem 0,
		100% 0,
		100% 100%,
		0 100%
	);
}
@media screen and (max-width:768px) {
	.products-list > li {
		width: 50%;
	}
}
@media screen and (max-width:425px) {
	.products-list > li {
		width: 100%;
	}
}

/* WHY CHOOSE US */
.why-choose-us-section {
	position: relative;
	background-color: #c00;
	color: #ddd;
}
.why-choose-us-section::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 50%;
	width: 20rem;
	height: 2rem;
	transform: translateX(-50%);
	background-color: #fff;
	clip-path: polygon(
		0 0,
		100% 0,
		calc(100% - 1rem) 100%,
		1rem 100%
	);
}
.why-choose-us-section h2 {
	text-align: center;
}
.why-choose-us-list {
	margin: 0 -2rem;
	overflow: hidden;
}
.why-choose-us-list li {
	position: relative;
	float: left;
	width: 25%;
	padding: 2rem 3rem;
	text-align: center;
}
.why-choose-us-list li p {
	color: #ccc;
	-webkit-transition: all 250ms ease;
	-moz-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	transition: all 250ms ease;
}
.why-choose-us-list li::after {
	content: '';
	position: absolute;
	right: 3rem;
	bottom: 1rem;
	width: 0;
	height: 0;
	border-top: 1rem solid transparent;
	border-left: 1rem solid transparent;
	border-bottom: 1rem solid rgba(255,255,255,0.2);
	border-right: 1rem solid rgba(255,255,255,0.2);
	-webkit-transition: all 250ms ease;
	-moz-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	transition: all 250ms ease;
}
.why-choose-us-list li i {
	font-size: 5rem;
}
.why-choose-us-list li h3 {
	margin: 3rem 0 2rem;
	font-size: 2rem;
	font-weight: 600;
}
@media screen and (min-width:769px) {
	.why-choose-us-list li:hover * {
		color: #fff;
	}
	.why-choose-us-list li:hover::after {
		border-bottom-color:rgba(255,255,255,1);
		border-right-color:rgba(255,255,255,1);
	}
}
@media screen and (max-width:1024px) {
	.why-choose-us-list li {
		margin-bottom: 2rem;
		width: 50%;
	}
}
@media screen and (max-width:768px) {
	.why-choose-us-list li {
		width: 100%;
	}
}

/* SKILLS SECTION */
.skills-section {
	position: relative;
	background: #eee;
}
.skills-section::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 50%;
	width: 20rem;
	height: 2rem;
	transform: translateX(-50%);
	background-color: #c00;
	clip-path: polygon(
		0 0,
		100% 0,
		calc(100% - 1rem) 100%,
		1rem 100%
	);
}
.skills-list {
	text-align: center;
}
.skills-list li {
	display: inline-block;
	width: 10%;
	padding: 2rem;
}
.skills-list li img {
	width: 100%;
}
@media screen and (max-width:1024px) {
	.skills-list li {
		width: 20%;
	}
}
@media screen and (max-width:768px) {
	.skills-list li {
		width: 20%;
	}
}
@media screen and (max-width:425px) {
	.skills-list li {
		width: 30%;
	}
}

/* CONTACT SECTION */
.contact-section {
	position: relative;
}
.contact-section::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 50%;
	width: 20rem;
	height: 2rem;
	transform: translateX(-50%);
	background-color: #eee;
	clip-path: polygon(
		0 0,
		100% 0,
		calc(100% - 1rem) 100%,
		1rem 100%
	);
}
.contact-section h2 {
	margin-bottom: 1rem;
}
.contact-section p {
	margin-bottom: 3rem;
}
.contact-section .inner > .col-2 > div:last-child {
	position: relative;
}
.contact-section .contact-photo {
	position: absolute;
	top: 0;
	left: 2rem;
	right: 0;
	bottom: 0;
	background: url('/src/assets/img/bg-contact.jpg') no-repeat center center;
	background-size: cover;
}
.contact-photo::before {
	content: '';
	position: absolute;
	top: -1px;
	right: -1px;
	width: 20rem;
	height: 2rem;
	background-color: #fff;
	clip-path: polygon(
		0 0,
		100% 0,
		100% 100%,
		1rem 100%
	);
}
.contact-photo::after {
	content: '';
	position: absolute;
	bottom: -1px;
	right: -1px;
	width: 2rem;
	height: 2rem;
	background-color: #fff;
	clip-path: polygon(
		100% 0,
		100% 100%,
		1rem 100%
	);
}
.contact-photo-corners {
	position: relative;
	height: 100%;
}
.contact-photo-corners::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	width: 2rem;
	height: 2rem;
	background-color: #fff;
	clip-path: polygon(
		0 0,
		calc(100% - 0.75rem) 0,
		0 100%
	);
}
.contact-photo-corners::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: -1px;
	width: 2rem;
	height: 2rem;
	background-color: #fff;
	clip-path: polygon(
		0 0,
		calc(100% - 0.75rem) 100%,
		0 100%
	);
}
.contact-photo-inner {
	position: absolute;
	top: 1.8rem;
	right: -1px;
	width: 1rem;
	height: 2rem;
	background-color: #fff;
	clip-path: polygon(
		0 0,
		100% 0,
		1rem 100%
	);
}
@media screen and (max-width: 768px) {
	.contact-photo {
		display: none;
		position: relative !important;
		left: 0 !important;
		margin-top: 2rem;
		height: 20rem;
	}
	.contact-photo-inner {
		top: 1.8rem;
	}
}