@font-face {
  font-family: 'Lufga';
  font-weight: 100;
  src: url('./fonts/lufga-thin.ttf') format('truetype');
}
@font-face {
  font-family: 'Lufga';
  font-weight: 300;
  src: url('./fonts/lufga-light.ttf') format('truetype');
}
@font-face {
  font-family: 'Lufga';
  font-weight: 400;
  src: url('./fonts/lufga-regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Lufga';
  font-weight: 500;
  src: url('./fonts/lufga-medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Lufga';
  font-weight: 600;
  src: url('./fonts/lufga-semibold.ttf') format('truetype');
}
@font-face {
  font-family: 'Lufga';
  font-weight: 700;
  src: url('./fonts/lufga-bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Lufga';
  font-weight: 900;
  src: url('./fonts/lufga-black.ttf') format('truetype');
}

:root {
  --main-color: #c39551;
  --second-color: #828282;
  --third-color: #d2d2d2;
  --font-color: #222223;
}

body{
	font-size: 14px;
	padding: 0;
	margin: 0;
	background: var(--third-color);
	font-family: Lufga;
	color: var(--font-color);
	background-image: url(../img/bg.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
a{
	text-decoration: none;
}
img{
	max-width: 100%;
}
ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

header{
	text-align: center;
	padding: 40px 0;
	background: transparent;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 3;
}

header .logo img{
	max-width: 220px;
}

section.slider-area{
	position: relative;
}

.slider-area .slide{
	height: calc(100vh);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: center;
}
.slider-area .slide:after{
	background-image: url(../img/cover.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.slider-area .container{
	position: relative;
	z-index: 2;
}
.slider-area h2{
	font-size: 56px;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 12%;
}
.slider-area h2 span{
	font-weight: 400;
	display: block;
}
.slider-area p{
	font-size: 16px;
	font-weight: 500;
}

.slider-area .buttons{
	display: flex;
	gap: 50px;
	align-items: center;
	padding-top: 10px;
}
.slider-area .buttons img{
	transition: all .2s ease;
}
.slider-area .buttons img:hover{
	scale: 1.1;
}
.slider-area .down{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	z-index: 2;
	text-align: center;
}
.slider-area .down img{
	transition: all .2s ease;
}
.slider-area .down:hover img{
	scale: 1.1;
}

.mt-30{
	margin-top: 30px;
}
.mt-40{
	margin-top: 40px;
}
.mt-50{
	margin-top: 50px;
}
.mt-70{
	margin-top: 70px;
}
.mb-30{
	margin-bottom: 30px;
}
.mb-40{
	margin-bottom: 40px;
}
.mb-50{
	margin-bottom: 50px;
}
.mb-70{
	margin-bottom: 70px;
}

.pt-30{
	padding-top: 30px;
}
.pt-40{
	padding-top: 40px;
}
.pt-50{
	padding-top: 50px;
}
.pt-70{
	padding-top: 70px;
}
.pb-30{
	padding-bottom: 30px;
}
.pb-40{
	padding-bottom: 40px;
}
.pb-50{
	padding-bottom: 50px;
}
.pb-70{
	padding-bottom: 70px;
}

h3.title{
	font-size: 36px;
	position: relative;
	width: max-content;
}
h3.title:before{
	content: "";
	position: absolute;
	right: 105%;
	top: -10px;
	width: 3px;
	height: 40px;
	transform: rotate(30deg);
	background: var(--main-color);
}
h3.title span{
	font-weight: 300;
}

section.products .product{
	display: flex;
	align-items: flex-end;
	gap: 10px;
}
section.products .product h4{
	writing-mode: vertical-rl;
	transform: scale(-1, -1);
	text-wrap: nowrap;
	margin: 0;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 500;
	position: relative;
	margin-bottom: 30px;
}
section.products .product h4:before{
	position: absolute;
	content: "";
	left: 50%;
	transform: translateX(-50%);
	top: -30px;
	width: 1px;
	height: 20px;
	background: var(--main-color);
}
section.products .product .box{
	display: block;
	position: relative;
}
section.products .product .box h5{
	position: absolute;
	bottom: 30px;
	left: 50px;
	right: 50px;
	color: #fff;
	font-size: 40px;
}
section.products .product .box img.line{
	position: absolute;
	bottom: 50px;
	right: 50px;
}
section.products .product .box{
	overflow: hidden;
}
img.zoom-effect{
	transition: all .2s ease;
}
section.products .product .box:hover img.zoom-effect{
	scale: 1.1;
}

section.products{
	padding: 70px 0;
}

section.about{
	color: #fff;
	background: linear-gradient(to left, var(--second-color) 60%, transparent 40%);
}
section.about .bg{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 120px 0 120px 35%;
	position: relative;
}
section.about .bg:before {
    content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: var(--main-color);
	-webkit-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0;
	-webkit-transform: skewX(-20deg);
	-ms-transform: skewX(-20deg);
	transform: skewX(-20deg);
	z-index: 1;
	transform-origin: bottom;
}
section.about h4{
	position: relative;
	z-index: 2;
	font-size: 36px;
	font-weight: 400;
}
section.about h5{
	position: relative;
	z-index: 2;
	font-size: 40px;
	font-weight: 100;
}
div.line{
	width: 20%;
	background: var(--main-color);
	height: 5px;
	margin: 30px 0;
}
section.about p{
	font-size: 16px;
}
.f-16{
	font-size: 16px;
}

section.slogan{
	background: linear-gradient(to right, var(--main-color) 75%, transparent 25%);
	color: #fff;
}
section.slogan h3{
	font-size: 50px;
	font-weight: 200;
	text-transform: uppercase;
}
section.slogan h4{
	font-weight: 300;
}
section.slogan h5{
	margin: 0;
}
section.slogan a{
	margin-left: 20px;
	border: 1px solid #fff;
	border-radius: 50px;
	padding: 10px 20px;
	color: #fff;
	transition: all .2s ease;
}
section.slogan a:hover{
	background: var(--second-color);
}
section.slogan a img{
	vertical-align: unset;
}

footer{
	padding: 70px 0;
	text-align: center;
}
footer .copyright{
	padding: 50px 0 0 0;
}
footer .copyright img{
	padding: 50px 0;
}
footer .d-flex{
	gap: 15px;
}
footer h3,
footer h4,
footer h5,
footer h6,
footer p{
	margin: 0;
}

footer p{
	font-weight: 500;
	font-size: 16px;
}
footer h3{
	font-weight: 700;
}
.f-400{
	font-weight: 400;
}
footer h6{
	font-weight: 700;
}

@media(max-width:768px){
	.slider-area h2{
		font-size: 32px;
		margin-top: 0;
	}
	.slider-area p{
		font-size: 15px;
	}
	.slider-area{
		text-align: center;
	}
	.slider-area .buttons{
		justify-content: center;
	}
	header .logo img{
		max-width: 190px;
	}
	section.products .product{
		margin-bottom: 30px;
	}
	section.about{
		background: var(--second-color);
	}
	section.about .bg:before{
		transform:none;
	}
	section.about .bg{
		padding: 30px;
		margin-bottom: 30px;
		margin-top: 30px;
	}
	section.about p{
		margin-bottom: 30px;
	}
	section.slogan{
		background: var(--main-color);
		padding: 30px 0;
		text-align: center;
	}
	section.slogan .d-flex{
		margin: 15px 0;
		justify-content: center;
	}
	footer{
		text-align: center;
	}
	footer .d-flex{
		display: block !important;
		margin-bottom: 30px;
	}
	footer .d-flex img{
		margin: 10px 0;
	}
	footer .copyright{
		padding: 0;
	}
	footer .copyright img{
		padding: 30px 0 50px 0;
	}
	section.products{
		padding: 70px 0 0 0;
	}
}