/* 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: #fc0;
}
.banner-section p {
	margin-bottom: 2rem;
	font-size: 2.2rem;
}
.banner-section .price {
	color: #fc0;
}
@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 */
}
@media screen and (max-width: 768px) {
	.banner-section .inner {
		padding: 8rem 4rem; /* TEMP */
	}
}

/* SOLUTIONS SECTION */
.solutions-section {
	position: relative;
	z-index: 30;
	background-color: #f7f7f7;
}
.solutions-section::before {
	content: '';
	position: absolute;
	bottom: -2rem;
	left: 50%;
	width: 20rem;
	height: 2rem;
	transform: translateX(-50%);
	background-color: #f7f7f7;
	clip-path: polygon(
		0 0,
		100% 0,
		calc(100% - 1rem) 100%,
		1rem 100%
	);
}
.solutions-section h2 {
	text-align: center;
}
.solutions-list {
	margin: 0 -1rem;
	padding-top: 4rem;
}
.solutions-list::after {
	content: '';
	display: table;
	clear: both;
}
.solutions-list > li {
	float: left;
	width: 33.33%;
	padding: 1rem;
	margin-bottom: 5rem;
}
.solutions-list .solution {
	position: relative;
	padding: 6rem 3rem 3rem;
	background-color: #fff;
	border: 1px solid #ddd;
	-webkit-transition: all 250ms ease;
	-moz-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	transition: all 250ms ease;
}
.solutions-list .solution:hover {
	border-color: #aaa;
	box-shadow: 0 0 2rem rgba(0,0,0,0.1);
}
.solutions-list .solution .solution-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%
	);
}
.solutions-list li:nth-child(1) .solution .solution-icon {
	background-color: #B97A7A;
}
.solutions-list li:nth-child(2) .solution .solution-icon {
	background-color: #C88F6A;
}
.solutions-list li:nth-child(3) .solution .solution-icon {
	background-color: #CFC27A;
}
.solutions-list li:nth-child(4) .solution .solution-icon {
	background-color: #A3B37C;
}
.solutions-list li:nth-child(5) .solution .solution-icon {
	background-color: #7FAF9A;
}
.solutions-list li:nth-child(6) .solution .solution-icon {
	background-color: #6BAFB1;
}
.solutions-list li:nth-child(7) .solution .solution-icon {
	background-color: #6F94B2;
}
.solutions-list li:nth-child(8) .solution .solution-icon {
	background-color: #7C7BAA;
}
.solutions-list li:nth-child(9) .solution .solution-icon {
	background-color: #9B7F9E;
}
.solutions-list .solution .solution-icon i {
	position: absolute;
	top: 50%;
	left: calc(50% - 1rem);
	transform: translate(-50%,-50%);
}
.solutions-list .solution h3 {
	margin-bottom: 1rem;
	font-size: 3rem;
}
.solution-features-list li {
	margin-bottom: 0.8rem;
}
.solution-features-list li::before {
	content: '» ';
}
@media screen and (max-width:768px) {
	.solutions-list > li {
		width: 50%;
	}
}
@media screen and (max-width:425px) {
	.solutions-list > li {
		width: 100%;
	}
}

/* WHY RAITECH */
.why-raitech-section {
	position: relative;
	z-index: 20;
	margin-top: -12rem;
	padding-top: 12rem;
	background-color: #c00;
	color: #ddd;
}
.why-raitech-section::after {
	content: '';
	position: absolute;
	bottom: -2rem;
	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%
	);
}
.why-raitech-section h2 {
	text-align: center;
}
.why-raitech-list {
	margin: 0 -2rem;
	overflow: hidden;
}
.why-raitech-list li {
	position: relative;
	float: left;
	width: 25%;
	padding: 2rem 3rem;
	text-align: center;
}
.why-raitech-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-raitech-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-raitech-list li i {
	font-size: 5rem;
}
.why-raitech-list li h3 {
	margin: 3rem 0 2rem;
	font-size: 2rem;
	font-weight: 600;
}
@media screen and (min-width:769px) {
	.why-raitech-list li:hover * {
		color: #fff;
	}
	.why-raitech-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-raitech-list li {
		margin-bottom: 2rem;
		width: 50%;
	}
}
@media screen and (max-width:768px) {
	.why-raitech-list li {
		width: 100%;
	}
}

/* SKILLS SECTION */
.skills-section {
	position: relative;
	background: #eee;
}
.skills-section::after {
	content: '';
	position: absolute;
	bottom: -2rem;
	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%
	);
}
.skills-list {
	text-align: center;
}
.skills-list li {
	display: inline-block;
	width: 10%;
	padding: 2rem;
}
.skills-list li img {
	width: 100%;
	filter: grayscale(1) contrast(1.5) brightness(1);
	opacity: 0.5;
	-webkit-transition: all 250ms ease;
	-moz-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	transition: all 250ms ease;
}
.skills-list li img:hover {
	filter: none;
	opacity: 1;
	transform: scale(1.2);
}
@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%;
	}
}