/* Font Add */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a,a:hover{
	text-decoration: none;
	color: #000;
}
img{
	width: 100%;
	height: 100%;
}
html{
	scroll-behavior: smooth;
}
body{
	font-family: 'Oswald', sans-serif;
}

/* Header Section Start  */
#header{
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
	z-index: 100;
}
#header .navbar-brand img{
	width: 300px;
    height: 167px;
    margin: -35px 0 -24px 0px;
}
/* Menu */
/* Toggele Bar Color Change */
.navbar-toggler {
    border: 1px solid rgba(255,255,255,1);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
#header ul li{
	margin-right: 20px;
}
#header ul li a{
    color: #fff;
    font-size: 1.2rem;
    border-bottom: 2px solid transparent;
    transition: 0.3s ease;
}
#header ul li:hover a{
    border-bottom: 2px solid #fff;
}
/* Header Section End  */


/* Bannar Section Start */
#bannar{
	height: 80vh;
	width: 100%;
	background-image: url("../img/bannar/bannar.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	z-index: 1;
	position:relative;
	display: flex;
	align-items: center;
	color: #fff;
	text-align: right;
}
#bannar::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.6);
	width: 100%;
	height: 100%;
	z-index: -1;
}
#bannar .bannar_info h1{
    font-size: 4rem;
    margin: 0 0 20px 0;
    font-weight: 700;
}
#bannar .bannar_info h2{
    font-size: 2.4rem;
}
/* Bannar Section End */


/* Fake Add Section Start */
#fake_add{
	width: 100%;
	height: auto;
	margin: 60px 0 60px 0;
	padding: 50px 5px;
}
#fake_add .single_fake_add_margin{
	margin: 5px auto 20px auto !important;
}
#fake_add .single_fake_add{
	box-shadow: -9px 13px 8px #ddd;
    padding: 20px 10px;
    border-radius: 10px;
}
#fake_add .single_fake_add img{
    width: 100%;
    height: 175px;
    border-radius: 11px;
}
#fake_add .single_fake_add h2{
	font-size: 1.6rem;
}
#fake_add .single_fake_add p{
	font-size: 1.2rem;
    text-align: justify;
    line-height: 1.9rem;
}
#fake_add .single_fake_add a.read_more{
	text-transform: uppercase;
    font-size: 1.1rem;
    text-align: center;
    display: inline-block;
    width: 100%;
    height: 30px;
    background: #ccc;
    font-weight: 600;
    transition: 0.3s ease;
}
#fake_add .single_fake_add a.read_more:hover{
	background: #ddd;
}

/* Fake Add Section End */

/* Contact Us Section Start */

#contact_us{
	height: 100vh;
	width: 100%;
	background-image: url("../img/contact_us/contact_us.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	z-index: 1;
	position:relative;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	color: #fff;
	text-align: center;
	margin-bottom: 100px;
}
#contact_us::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.6);
	width: 100%;
	height: 100%;
	z-index: -1;
}
#contact_us .contact_us_info h1{
    font-size: 4rem;
    margin: 0 0 20px 0;
    font-weight: 700;
}
#contact_us .contact_us_info h2{
    font-size: 2.4rem;
}

/* Contact Us Section End */

/* Footer Section Start */
#footer{
	width: 100%;
    height: 87px;
    padding: 32px 0 8px 5px;
    background: #192c40;
    text-align: center;
    color: #fff;
}
#footer p{
	font-size: 17px;
    letter-spacing: 2px;
}

/* Footer Section End */