*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
	list-style: none;
	text-decoration: none;
	scroll-behavior: smooth;
}
:root{
	--bg-color: #fff;
	--main-color: #D2042D;
	--text-color: #010101;
	--2nd-color: #434343;
	--other-color: #666666;
	--big-font: 5rem;
	--h2-font: 2.3rem;
	--p-font: 1.3rem;
}
body{
	color: var(--text-color);
	background: var(--bg-color);
}
/* --------------------header-------------------- */
header{
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 1000;
	background: var(--bg-color);
	box-shadow: 0 1px 6px 0 rgb(32 33 36 / 10%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 14%;
	transition: all .50s ease;
}
.logo img{
	width: 100%;
	height: auto;
}
.company-name{
	font-size: 25px;
	font-family: 'Quicksand' sans-serif;
	font-weight: bold;
	margin-right: 180px;
}
.navbar{
	display: flex;
}
.navbar a{
	color: var(--text-color);
	font-size: 15px;
	font-weight: 500;
	margin: 10px 22px;
	transition: all .50s ease;
}
.navbar a:hover{
	color: var(--main-color);
}
.h-icons{
	display: flex;
	align-items: center;
}
.h-icons i{
	font-size: 25px;
	color: var(--text-color);
	margin-left: 5px;
	margin-right: 20px;
	transition: all .50s ease;
}
.h-icons i:hover{
	transform: translateY(-4px);
	color: var(--main-color);
}
#menu-icon{
	height: 30px;
	width: 30px;
	background: var(--text-color);
	color: var(--bg-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	border-radius: 50%;
	z-index: 10001;
	cursor: pointer;
	display: none;
}

section{
	padding: 60px 14% 70px;
}
/* --------------------home-------------------- */
.home{
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.home .home-slide{
	z-index: 1;
	position: absolute;
	width: 100%;
	clip-path: circle(0% at 0 50%);
}
.home .home-slide.active{
	clip-path: circle(150% at 0 50%);
	transition: 1s;
	transition-property: clip-path;
}

.home .home-slide img{
	z-index: 1;
	width: 100%;
	height: 105vh;
	object-fit: cover
}

.home-text{
	position: absolute;
	top: 25%;
	padding: 15px 30px;
	left: 12%;
	animation-name: floating;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
}
@keyframes floating{
    0% { transform: translate(0,  30px); }
    100%   { transform: translate(0, 0px); }   
}
.home-text h1{
	font-family: 'Poppins', sans-serif;
	font-size: var(--big-font);
	color: var(--bg-color);
	line-height: 1.3;
	margin-bottom: 25px;
}
.home-text p{
	color: var(--bg-color);
	font-size: var(--p-font);
	line-height: 33px;
	margin-bottom: 60px;
}
.home .navigation{
	z-index: 2;
	position: absolute;
	display: flex;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
  }
  
  .home .navigation .btn-slider{
	background: var(--2nd-color);
	width: 12px;
	height: 12px;
	margin: 10px;
	border-radius: 50%;
	cursor: pointer;
  }
  
.home .navigation .btn-slider.active{
	background: var(--main-color);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  }
.btn{
	padding: 20px 35px;
	background: var(--main-color);
	color: var(--bg-color);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	border-radius: 30px;
	transition: all .50s ease;
	position: absolute;
}
.btn:hover{
	background: var(--2nd-color);
}
/* --------------------banner-------------------- */
.banner{
	position: relative;
	width: 100%;
	height: 40vh;
	background-image: url(../img/banner.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.banner-text h1{
	font-family: 'Poppins', sans-serif;
	font-size: var(--h2-font);
	color: var(--bg-color);
	margin-top: 25%;
	animation-name: floating;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
}
/* --------------------company profile-------------------- */
.content-row{
	display: grid;
	grid-template-columns: repeat(2, 2fr);
	align-items: center;
	grid-gap: 2rem;
}
.content-img img{
	max-width: 100%;
	width: 540px;
	height: auto;
}
.content-text h2{
	font-size: var(--h2-font);
	font-weight: 500;
	margin: 8px 0px 25px;
	line-height: 1.1;
}
.content-text h3{
	color: var(--main-color);
	font-size: 20px;
	font-weight: 500;
}
.content-text p{
	max-width: 550px;
	font-size: var(--p-font);
	color: var(--secound-color);
	line-height: 28px;
	margin-bottom: 45px;
	text-align: justify;
  	text-justify: inter-word;
}
.company p{
	font-size: var(--p-font);
	color: var(--secound-color);
	line-height: 28px;
	margin-bottom: 45px;
	text-align: justify;
  	text-justify: inter-word;
}
.content-text ul{
	margin-top: -30px;
  }
.content-text ul li{
	list-style-type: circle;
	max-width: 550px;
	font-size: var(--p-font);
	color: var(--secound-color);
	line-height: 30px;
	margin-bottom: 10px;
	text-align: justify;
  	text-justify: inter-word;
	margin-left: 15px;
  }
/* --------------------quality-------------------- */
.quality-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 10px;
    margin-top: 10px;
}
.quality-list div{
    background: var(--bg-color);
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 10px;
    transition: background 0.5s, transform 0.5s;
}
.quality-list div i{
    font-size: 50px;
    margin-bottom: 30px;
}
.quality-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}
.quality-list div p{
	text-align: justify;
	text-justify: inter-word;
}
.quality-list div a{
    text-decoration: none;
    color: var(--bg-color);
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
}
.quality-list div:hover{
    background: var(--main-color);
    transform: translateY(-10px);
}
/* --------------------------- product ------------------------*/
.product{
	background-color: var(--main-color);
}
.center-text h2{
	text-align: center;
	font-size: var(--h2-font);
	font-weight: 800;
	color: var(--bg-color);
}
.new-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, auto));
	align-items: center;
	gap: 2.5rem;
	margin-top: 4.5rem;
	text-align: center;
}
.row{
	position: relative;
	cursor: pointer;
	background: var(--bg-color);
}
.row img{
	width: 100%;
	height: 250px;
	margin-bottom: 15px;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
	mix-blend-mode: multiply;
	-webkit-transform: scale(0.875);
  	transform: scale(0.75);
}
.row:hover img{
    transform: scale(0.875);
}
.row h4{
	color: var(--other-color);
	font-size: var(--p-font);
	font-weight: 600;
}
.row h4:hover{
	color: var(--main-color);
	cursor: pointer;
}
.row h5{
	font-size: 14px;
	margin-bottom: 5px;
	text-transform: uppercase;
	font-weight: 400;
	transition: all .50s ease;
}
.btn-more{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid var(--text-color);
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-color);
    transition: background 0.5s;
	background: var(--bg-color);
}
.btn-more:hover{
    background: var(--main-color);
}
/* --------------------------- customers ------------------------*/
.customers{
	background-color: var(--main-color);
}
.customers .text{
	color: var(--bg-color);
}
.text h2{
	font-size: var(--h2-font);
	line-height: 1.1;
}
.row-items{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, auto));
	grid-gap: 2rem;
	align-items: center;
	text-align: center;
	margin-top: 5rem;
}
.container-box{
	background: var(--bg-color);
	border: 1px solid var(--bg-color);
	padding: 50px 10px;
	border-radius: 4px;
	transition: all 1s ease 0s;
	cursor: pointer;
}
.container-box-more{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid var(--text-color);
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-color);
    transition: background 0.5s;
	background: var(--bg-color);
}
.container-box-more:hover{
	background: var(--main-color);
}
.container-img img{
	height: 85px;
	width: 85px;
	padding: 15px;
	background: var(--bg-color);
	box-shadow: 5px 10px 30px rgb(85 85 85 / 20%);
	border-radius: 4px;
	margin-bottom: 15px;
	cursor: pointer;
}
.container-box h4{
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 8px;
}
.container-box p{
	font-size: 15px;
	color: var(--second-color);
}
.container-box h3{
	font-size: 40px;
	color: var(--second-color);
}
.container-box:hover{
	box-shadow: 5px 30px 56.1276px rgb(55 55 55 / 12%);
	border: 1px solid transparent;
	transform: translateY(-3px);
}
/* --------------------------- map ------------------------*/
iframe{
	width: 100%;
	height: 500px;
	justify-content: center;
	align-items: center;
}
/* --------------------------- contact us ------------------------*/
.contact-us{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, auto));
	gap: 2rem;
}
.contact-us-box h4{
	margin-bottom: 1.5rem;
	font-size: 18px;
	color: var(--text-color);
}
.contact-us-box li{
	margin-bottom: 18px;
}
.contact-us-box li a{
	display: block;
	color: #999999;
	font-size: 15px;
	font-weight: 500;
	transition: all .50s ease;
}
.contact-us-box li a:hover{
	transform: translateX(-7px);
	color: var(--main-color);
}
.contact-us-box h5{
	font-size: 16px;
	font-weight: 600;
	color: #999999;
}
/* -------------------------- projects ------------------------- */
.projects .center-text h2{
	color: var(--2nd-color);
}
.projects .new-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, auto));
	grid-gap: 0.5rem;
	align-items: center;
	margin-top: 0.5rem;
}
.projects .new-content .row{
	position: relative;
}
.projects .new-content .row img{
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 10px;
	filter: brightness(80%);
	transition: all .3s cubic-bezier(.495,.05,.55,.95);
	will-change: filter;
}
.projects .new-content .row img::hover{
	filter: brightness(100%) hue-rotate(45deg);
	transform: scale(1.04);
	cursor: pointer;
}

.projects .container-box-more:hover{
	background: var(--bg-color);
}
/* --------------------------- contact ------------------------*/
.contact{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, auto));
	gap: 2rem;
	background: #272829;
}
.contact-box h4{
	margin-bottom: 1.5rem;
	font-size: 18px;
	color: var(--bg-color);
}
.contact-box li{
	margin-bottom: 18px;
}
.contact-box li a{
	display: block;
	color: #999999;
	font-size: 15px;
	font-weight: 500;
	transition: all .50s ease;
}
.contact-box li a:hover{
	transform: translateX(-7px);
	color: var(--main-color);
}
.contact-box h5{
	font-size: 16px;
	font-weight: 600;
	color: #999999;
}

.end-text p{
	text-align: center;
	background: #272829;
	color: var(--other-color);
	font-size: 15px;
	letter-spacing: 1px;
	padding: 20px;
}

.whatsapp-contact{
	position: fixed;
	bottom: 2.3rem;
	right: 2.3rem;
	z-index: 2;
}
.whatsapp-contact i{
	background: #25D366;
	color: var(--bg-color);
	font-size: 37px;
	padding: 12px;
	border-radius: 30px;
}

@media (max-width: 1280px){
	header{
		padding: 12px 3%;
	}
	section{
		padding: 40px 3% 50px;
	}

}
@media (max-width: 920px){
	#menu-icon{
		display: block;
		height: 30px;
	    width: 30px;
	    background: var(--text-color);
	    color: var(--bg-color);
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    font-size: 20px;
	    border-radius: 50%;
	    cursor: pointer;
	}
	.navbar{
		position: absolute;
		top: -800px;
		left: 0;
		right: 0;
		display: flex;
		flex-direction: column;
		text-align: left;
		background: var(--main-color);
		transition: all .50s ease;
	}
	.navbar a{
		display: block;
		padding: 5px;
		margin: 15px;
		font-size: 20px;
		font-weight: 600;
		transition: all .50s ease;
	}
	.navbar a:hover{
		color: var(--bg-color);
	}
	.navbar.active{
		top: 100%;
	}
}
@media (max-width: 640px){
	:root{
		--big-font: 3.8rem;
	    --h2-font: 2rem;
	    --p-font: 1.1rem;
	}
	.home-text h1{
		line-height: 1.1;
	}
	.home{
		height: 85vh;
	}
}