
:root{
	--red:#EE3623;
}


*{
	font-family: 'Roboto', sans-serif;
	margin:0;
	padding:0;
	box-sizing:border-box;
	border:none;
	outline:none;
	text-decoration: none;
	font-weight: 400;
	transition: .2s linear;
	text-transform: capitalize;
}


::selection{
	background:var(--red);
	color:#fff;
}


*::-webkit-scrollbar{

	width:1rem;
}


*::-webkit-scrollbar-track{
	background: transparent;
}


*::-webkit-scrollbar-thumb{
	background:var(--red);
}

section{
	padding:0 9%;
}

header{	
	width:100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background:#2c3a47;
	position: fixed;
	top:0;
	left:0;
	z-index:1000;


}



.logo{
     
	
	color:#fff;
}

.logo span{
	font-weight: bold;
	color:var(--red);
}

.menu ul li a{
	font-size: 1.2rem;
	margin-left: 1rem;
	font-weight: 400;
	color: #fff;

	
}


.menu ul li a:hover{
	background-color: var(--red);
	color: #fff;
}



.menu ul li:first-child a{
	color:#fff !important;
}

.menu ul li:first-child a:hover{
	color:#fff !important;
}


.navbar-toggler{
	background-color:var(--red) !important;
}

.btn{
height: 2.5rem;
width:8rem;
text-transform: capitalize;
background: var(--red);
color:#fff;
border-radius: .5rem;
font-size: 1rem;
cursor: pointer;
margin:.5rem 0;
box-shadow: 0 .3rem .5rem var(--red);
opacity:.7;
}

.btn:hover{
	opacity:1;
	background: var(--red) !important;
	color:#fff !important;
}

.heading{
	text-align: center;
	padding:.5rem 1rem;
	padding-top: 2rem;
	font-size: 2.5rem;
	color:var(--red);
	text-transform: uppercase;
}

.title{
	text-align: center;
	padding:0rem 1rem;
	
	font-size: 2rem;
	color:#666;
	font-weight: 300;
	
}
/*--home--*/


.home .video-container video{
	position:absolute;
	
	top:0;
	left:0;
	
	height:110%;
	width:100%;

	object-fit: cover;
	z-index: -1;
}

.home .content{
	min-height:95vh;
	width:30rem;
	margin-top: 5rem;
	background: rgba(255,255,255,.1);
	background-filter:blur(.5rem);
	text-align: center;
	padding:1rem 2rem;
}

.home .content h1{
	font-size: 2rem;
	padding-top: 0rem;
	color:#fff;
	text-transform: uppercase;
}


.home .content h3{
	font-size: 1.5rem;
	color:#eee;
	font-weight: lighter;
	text-transform: uppercase;
}


.home .content .form-container form{
	width:100%;
	background: #fff;
	padding: .5rem 1rem;
	margin-top:1rem;
	border-radius: 1rem;
	box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
}


.home .content .form-container form h3{
	font-size: 1.2rem;
	padding:1rem .5rem;
	color:#333;
	font-weight: 400;
	text-transform: uppercase;
}


.home .content .form-container form span{
	font-size: 1.2rem;
	display: block;
	padding:.5rem 0;
	color:var(--red);
	text-align: left;
}


.home .content .form-container form input{

height:2rem;
width:100%;
padding: 0 .5rem;
font-size: 1rem;
background: #eee;
}



.home .content .form-container form .btn{
	width:8rem;
	background: var(--red);
	margin: 1rem 0;
	color: #fff;
}

/*--home--*/

/*--feature--*/

.feature{
	background: #2c3a47;

}

.feature .title{
	color:#eee;
}

.feature .card-container{
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
	padding:1rem 0;
}

.feature .card-container .card{
	height: 25rem;
	width:20rem;
	margin:1rem .5rem;
	position:relative;
	overflow:hidden;
}

.feature .card-container .card img{
	height:100%;
	width:100%;
	object-fit: cover;
}

.feature .card-container .card .info{
	height: 100%;
	width:100%;
	position:absolute;
	bottom:-100%;
	left:0;
	background:linear-gradient(transparent,#000);
	padding:0 1rem;
	padding-top: 45%;
}

.feature .card-container .card:hover .info{
	bottom:0;
}

.feature .card-container .card .info h3{
	font-size: 1.5rem;
	color:#fff;
}


.feature .card-container .card .info .stars i{
	font-size: 1rem;
	color:var(--red);
	padding:.5rem 0;
}

.feature .card-container .card .info p {
font-size: 1rem;
color:#eee;
}


.feature .card-container .card .info .btn{
	box-shadow: none;
}

.feature .card-container .card .info .btn:hover{
	opacity: 1;
	color: #fff;
	background: var(--red);
}
/*--feature--*/


/*--about--*/
.about{
	background: #fff;
	min-height: 100vh;
}

.about .row{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding-top: 2rem;
}

.about .row .image{
	flex: 1 1 25rem;
	text-align: center;
}

.about .row .image img{
	width:85%;
	border-radius: .5rem;
}


.about .row .content{
	flex: 1 1 25rem;
	padding:2rem;
}



.about .row .content h3{
	font-size: 2rem;
	color:var(--red);
}


.about .row .content p{
	font-size: 1rem;
	color:#666;
	padding:1rem 0;
}

.about .box-container{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 3rem;
}


.about .box-container .box{
	margin:1rem;
	height: 10rem;
	width:15rem;
	border-radius: 1rem;
	background: var(--red);
	text-align: center;
	color:#fff;
}

.about .box-container .box i{
	font-size: 2rem;
	margin:2rem 0;
}

.about .box-container .box h3{
	font-size: 1.5rem;
	
}
/*--about--*/

/*gallery--*/
.gallery{
	background: #f9f9f9;
	min-height: 100vh;
}

.gallery .box-container{
	padding: 2rem 0;
}


.gallery .box-container .box{
	width:100%;
	margin: 2rem 0;
	border-radius: .5rem;
	box-shadow: 0 .3rem .5rem rgba(0, 0, 0, .3);
	display:flex;
	align-items: center;
	overflow: hidden;
	background: #fff;
}


.gallery .box-container .box .image{
	height: 20rem;
	width:50%;
}


.gallery .box-container .box .image img{
	height: 100%;
	width:100%;
	object-fit: cover;
}


.gallery .box-container .box .content{
	height: 100%;
	width:50%;
	padding:2rem;
}

.gallery .box-container .box:nth-child(even){
	flex-flow: row-reverse;
}

.gallery .box-container .box:nth-child(even) .content{
	text-align: right;
}


.gallery .box-container .box .content h3{
	color:var(--red);
	font-size: 2rem;
}

.gallery .box-container .box .content p{
	color:#666;
	font-size: 1rem;
	padding: 1rem 0;
}
/*gallery--*/


/*--review--*/

.review{
	background: #fff;
	min-height: 100vh;
}
.review .box-container{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding:1rem 0;
}


.review .box-container .box{
	width:20rem;
	text-align: center;
	padding:0 1rem;
	margin:3rem 1rem;
	box-shadow: 0 .3rem .5rem rgba(0, 0, 0, .3);
}

.review .box-container .box i{
	font-size: 4rem;
	margin-top: 1rem;
	color:var(--red);
	opacity: .4;
}


.review .box-container .box p{
	color: #666;
	font-size: 1rem;
	padding: 1rem 0;
}

.review .box-container .box .user{
	display: flex;
	align-items: center;
	text-align: left;
	padding: .5rem 0;
	border-top: .1rem solid #3334;

}
.review .box-container .box .user img{
	height:4rem;
	width:4rem;
	border-radius: 50%;
	object-fit: cover;
	margin:.8rem 1rem;
}

.review .box-container .box .user .info h3{
	color:var(--red);
	font-size: 1.5rem;
}


.review .box-container .box .user .info span{
	color:#666;
	font-size: 1.2rem;
}
/*--review--*/


/*--newsletter--*/

.newsletter{
	background: var(--red);
	padding:2rem;
}


.newsletter .box{
	width:100%;
	padding:2rem;
	text-align: center;
	border-radius: 1rem;
	background: #f9f9f9;
}


.newsletter .box h1{
	color:var(--red);
	font-size: 2rem;
}


.newsletter .box p{
	color:#666;
	font-size: 1rem;
}

.newsletter .box form{
	background:#eee;
	width:50%;
	margin: 1rem auto;
	padding: .5rem 0;
	height:4rem;
	border-radius: 5rem;

}


.newsletter .box form input[type="email"]{
	width:61%;
	background: none;
	padding:.5rem;
	text-align: center;
	font-size: 1rem;
}


.newsletter .box form .btn{
	height:90%;
	width:28%;
	border-radius: 5rem;
	margin: .1rem 0;
	box-shadow: none;
}
/*--newsletter--*/


/*--contact--*/

.contact{
	background:#2C3A47;
}

.contact .title{
	color:#eee;
}

.contact form{
	width:80%;
	text-align: center;
	padding:2rem 0;
	margin:0 auto;
}
.contact form .inputBox{
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.contact form .inputBox input{
	width:49%;
	height:3rem;
}

.contact form  input, textarea{
	padding: 0 1rem;
	font-size: 1.3rem;
	margin: 1rem 0;
	color:#333;
}

.contact form textarea{
	padding:1em;
	height:10rem;
	resize:none;
	width:100%;
}

.contact form .btn{
	box-shadow: none;
	color:#fff;
	opacity:1;
}

.contact form .btn:hover{
	opacity: .8;
}
/*--contact--*/


/*--footer--*/

.footer{
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
	padding:2rem 0;
	background: #fff;
}


.footer .box{
	width:20rem;
	margin: 2rem;
	text-align: center;
}

.footer .box:nth-child(1){
	text-align: left;
}

.footer .box h3{
	font-size: 2rem;
	color:var(--red);
	padding:1rem 0;
}


.footer .box p{
	font-size: 1rem;
	color:#666;
	
}


.footer .box a{
	color:#666;
	font-size: 1.2rem;
	display:block;
	padding:.2rem 0;
	color:#666;
	text-decoration: none;
	
}


.footer .box a:hover{
	text-decoration: underline;
    color:var(--red);
}


.footer .credit{
	width:75%;
	padding-top: 1rem;
	font-size: 1rem;
	color:#666;
	text-align: center;
	border-top: .2rem solid #333;
}

.footer .credit span{
	color:var(--red);
}
/*--footer--*/