@import url("https://lp.al.to/libs/fonts/CentraleSans.css");

* {
	margin: 0;
	padding: 0;
}

html{
	scroll-behavior: smooth;
}

body {
	background-color: #fdfdff;
	font-family: 'CentraleSansRnd', sans-serif;
	font-size: 18px;
	font-weight: 300;
	position: relative;
}

img {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
	user-drag: none;
	-webkit-touch-callout: none;
}

svg {
	object-fit: cover;
	width: 100%;
}

header {
	/* padding: 150px 0 50px; */
	padding-bottom: 35px;
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
}

header .brand {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}

header .logo.x-kom {
	height: 45px;
}

header .logo.kenwood{
	height: 25px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.container.fluid{
	max-width: 90%;
}

.cta{
	background: #00b1ed;
	color: #fff;
	border-radius: 3px;
	font-size: 1rem;
	padding: 8px 25px;
	text-decoration: none;
	transition: all 200ms ease-in-out;
}

.cta:hover{
	background: #0699ca;
}

.hero{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: center;
	width: calc(100% - 30px);
	margin: 15px;
	min-height: 720px;
	overflow: hidden;
	border-radius: 5px;
	position: relative;
	color: #fff;
}

.hero .background{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.hero p{
	font-size: 1.4rem;
}

.hero h2{
	font-size: 1.8rem;
	font-weight: 200;
	margin-top: 25px;
}

.hero h1{
	font-size: 2.2rem;
	font-weight: 400;
	margin-bottom: 25px;
}

.steps{
	position: relative;
}

.steps .cta.scroll{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -85px;
	width: 50px;
	height: 50px;
	padding: 0;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.steps .box{
	display: flex;
	flex-direction: column;
	padding: 50px;
	box-shadow: 0px 10px 130px 0px rgba(0, 0, 0, 0.06);
	border-radius: 5px;
	margin: 60px 0;
}

.title{
	display: flex;
	justify-content: center;
	width: 100%;
	padding-bottom: 30px;
	font-weight: 400;
	font-size: 1.6rem;
}

.steps .box .loop{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.steps .box .item{
	display: flex;
	flex-direction: column;
	text-align: center;
	align-content: center;
	align-items: center;
	width: 30%;
	position: relative;
}

.steps .box .item:after{
	content: '';
	width: 50px;
	height: 1px;
	background: rgb(223, 223, 223);
	position: absolute;
	right: -50px;
	top: 25px;
}

.steps .box .item:last-child:after{
	display: none;
}

.steps .box .item .icon.step{
	width: 55px;
	margin-bottom: 30px;
}

.products .loop{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.products .loop .item{
	display: flex;
	flex-direction: column;
	text-align: center;
	align-content: center;
	align-items: center;
	width: 30%;
	position: relative;
	box-shadow: 0px 10px 130px 0px rgba(0, 0, 0, 0.06);
	background: #fff;
	border-radius: 5px;
	padding: 30px 15px;
	width: 28%;
}

.products .loop .item a {
	text-decoration: none;
	width: 100%;
}

.products .loop .item .thumb{
	display: flex;
	width: 100%;
	padding-top: 80%;
	position: relative;
	overflow: hidden;
}

.products .loop .item .thumb img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	object-fit: cover;
	transition: all 250ms ease-in-out;
}

.products .loop .item:hover .thumb img{
	width: 85%;
}

.products .loop .item h5{
	font-size: 1.1rem;
	font-weight: 300;
	color: #000;
	text-decoration: none;
}

.products .loop .item .price{
	margin-bottom: 30px;
	font-size: 1.4rem;
	font-weight: 400;
}

.products .loop .item .price .old{
	font-size: 1rem;
	text-decoration: line-through;
	opacity: .6;
	font-weight: 300;
}

footer{
	padding: 40px 0;
}

footer p{
	display: flex;
	justify-content: center;
	font-size: .8rem;
	opacity: .7;
	text-align: center;
}

@media (max-width: 1360px) {
	.container {
		max-width: 1140px;
	}
}

@media (max-width: 1200px) {
	.container {
		max-width: 960px;
	}
}

@media (max-width: 1024px) {
	.container {
		max-width: 768px;
    }
    
}

@media (max-width: 800px) {
	html {
		font-size: 14px;
	}
	.container {
		max-width: 90%;
	}
	
}

@media (max-width: 768px) {
	header{
		z-index: 5;
		padding: 0 30px;
		width: calc(100% - 60px);
	}
	.hero{
		background: #000;
		min-height: 480px;
	}
	.hero .background{
		opacity: .5;
		z-index: 0;
	}
	.hero .container{
		position: relative;
		z-index: 2;
	}
}

@media (max-width: 620px) {
	.steps .box .loop{
		flex-direction: column;
	}
	.steps .box .loop .item{
		width: 100%;
		margin-bottom: 30px;
	}
	.steps .box .loop .item:last-child{
		margin-bottom: 0;
	}
	.steps .box .item:after{
		display: none;
	}
	.products .loop{
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
		align-content: center;
		flex-flow: wrap;
	}
	.products .loop .item{
		width: calc(50% - 50px);
		margin-bottom: 30px;
	}
}

@media (max-width: 570px){
	.products .loop .item .price{
		display: flex;
		flex-direction: column;
	}
}

@media (max-width: 480px){
	.products .loop .item{
		width: calc(100% - 50px);
		margin-bottom: 30px;
	}
}

@media (max-width: 380px) {
	html {
		font-size: 12px;
	}
}

@media (max-width: 320px){
	header .logo.x-kom {
		height: 35px;
	}
	
	header .logo.kenwood{
		height: 15px;
	}
}