@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	margin : 0;
	padding: 0;
	box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;

}


/* -------------- Header ------------------- */
#header{
	padding: 10px 0;
	background: #222;
}
.hero-slider {
	width: 100%;
	height: 375px;
	display: block;
	background-color: #fd0303;
	
}

.hero-slider img {
	width: 100%;
	height: 70vh !important;

}

@media (max-width: 767px) {
	    .hero-slider {
			width: 100%;
			height: 30vh !important;
			background-color: green;
			margin-bottom: 30px;
		}
        .hero-slider img {
            width: 100%;
            height: 35vh !important;
			}
        
    }


/* -------------- Menu ------------------- */
#menu{
	background: #222;
	/* margin-bottom: 20px; */

}
#menu .container .navbar {
	display: flex;
	justify-content: flex-end;
	margin: 0;
	padding: 0;
}
#menu .navbar{
	margin-bottom: 0;
	border-right: none;
	border-left: none;
	
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}
#menu .dropdown-menu{
	background: #000;
}
#menu .dropdown-menu a{
	color: #888;
	padding: 10px;
}
#menu .dropdown-menu a:hover{
	background: #222;
	color: #fff;
}
#menu .search{
	margin: 10px -20px 10px 0;
}

/* -------------- Sidebar ------------------- */

.nav-tabs{
	background: #ddd;
	padding-top: 5px;
	padding-left: 5px;
	margin-top: 10px;
}
.tab-content{
	border: 1px solid #ccc;
	border-top: none;
	margin-bottom: 20px;
}
.tab-content ul{
	padding: 0;
}
.tab-content li{
	list-style: none;
	border-bottom: 1px solid #eee;
	padding: 10px;
	overflow: hidden;
}
.tab-content img{
	width: 80px;
	height: 60px;
	float: left;
	margin-right: 10px;
}
/* -------------- Footer ------------------- */
#footer{
	background: #222;
	padding: 10px;
	margin-top: 20px;
	color: #555;	
}