/*======================
   01.fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap');
:root{
	--dark: #222221;
	--red: #C6342C;
	--cyan: #98DCFF;
}

/*======================
   02. Basic css
========================*/
::-moz-selection{
	background-color: var(--red);
	color: #fff;
}
::selection{
	background-color: var(--red);
	color: #fff;
}
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.6;
	font-family: "Gabarito", sans-serif;
	background-color: #fff;
	color: var(--dark);
	font-weight: 400;
	font-size: 2.2rem;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}
p a{
	color: var(--red);
}
p a:hover{
	color: var(--dark);
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus{
	outline: none;
}
h1{
	font-size: 7rem;
	font-weight: 700;
	line-height: 1;
}
h2{
	font-size: 7rem;
	font-weight: 700;
	line-height: 1.2;
}
h1 span, h2 span{
	color: var(--red);
}
h3{
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.18;
	padding-top: 5rem;
}
h3 span{
	color: var(--red);
}
h4{
	font-size: 3.6rem;
	font-weight: 700;
}
h5{
	font-size: 3rem;
	font-weight: 700;
}


/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader3 {
	width: 5.0rem;
	height: 5.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5.0rem;
	height: 5.0rem;
	border-radius: 100%;
	background: var(--red);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
header{
	padding: 3rem 0;
}
header .container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
header ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 6.5rem;
	   -moz-column-gap: 6.5rem;
	        column-gap: 6.5rem;
}
header ul li a{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 1.5rem;
	   -moz-column-gap: 1.5rem;
	        column-gap: 1.5rem;
	color: inherit;
}
header ul li a:hover{
	color: var(--red);
}
header ul li a img{
	width: 4rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

/*home area*/
.home_box{
	height: 83.7rem;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	color: #fff;
	position: relative;
	z-index: 1;
	padding: 5.3rem 6rem;
}
.home_box::before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	z-index: -1;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,1)), to(rgba(246,119,2,0)));
	background: -o-linear-gradient(bottom, rgba(0,0,0,1) 0%, rgba(246,119,2,0) 100%);
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(246,119,2,0) 100%);
}
.home_content{
	width: 100%;
	max-width: 81rem;
}
.home_content p{
	text-transform: uppercase;
	font-size: 2.4rem;
	font-weight: 500;
}
.home_content h2{
	font-size: 9rem;
	font-weight: 700;
	line-height: 1;
}

/*about area*/
.about_area{
	padding: 5rem 0 12rem;
	position: relative;
}
.about_area::before {
	position: absolute;
	content: '';
	bottom: 0rem;
	left: 0;
	width: 100%;
	height: 140%;
	background-color: rgba(34, 34, 33, 0.1);
}
.about_area p{
	margin-top: 3rem;
	max-width: 113rem;
}

/*footer area*/
footer{
	color: #fff;
	position: relative;
	z-index: 2;
	background-color: rgba(34, 34, 33, 0.1);
}
footer::before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	height: calc(100% - 17rem);
	background-color: #000;
	z-index: -1;
}
footer a{
	color: inherit;
}
footer a:hover{
	color: var(--red);
}
.footer_box{
	background-color: var(--dark);
}
.footer_content{
	padding: 6rem;
}
.footer_content p{
	margin-top: 3rem;
}
.box_img{
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	opacity: 0.5;
}
.footer_bottom{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-size: 2rem;
	padding: 5rem 0 7rem;
}
.footer_bottom ul{
	list-style: disc;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 3.5rem;
	   -moz-column-gap: 3.5rem;
	        column-gap: 3.5rem;
}
.footer_bottom ul li:first-child{
	list-style: none;
}