@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body{
	line-height: 1.5;
	font-family: sans-serif,'Poppins';
	font-weight: 400;
	overflow-x: hidden;
}
*{
	margin:0;
	box-sizing: border-box;
}
.capitalize{
	text-transform: capitalize;
}
:before,:after{
	box-sizing: border-box;
}
.container{
	max-width: 1200px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
.v-center{
	align-items: center;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
.redcolor{
   background-color: #093b6f;
}
/* topbar */
.topbar{
	background-color: #093b6f;
	color: white;
}
.topbar a{
	color: white;
	text-decoration: none;
}
/* endtopbar */
/* header */
.header{
	display: block;
	width: 100%;
	position: relative;
	z-index: 100;
	position: sticky;
	padding-right: 15px;
	top: 0;
	background-color: #ffffff;
}
.header .item-left{
	flex:0 0 10%;
	/* background-color: rgb(1,42,126); */
}
.header .logo a{
	font-size: 30px;
	color:#000000;
	font-weight: 700;
	text-decoration: none;
}
.logo-web-set{
	max-width: 100px;
	padding: 5px;
}
.header .item-center{
	flex:0 0 75%;
}
.header .item-right{
	flex:0 0 15%;
	display: flex;
	justify-content: flex-end;
}
.header .item-right a{ 
     text-decoration: none;
     font-size: 20px;
     color:#555555;
     display: inline-block;
     margin-left: 16px;
     transition: color 0.3s ease;
}
.header .menu > ul > li{
	display: inline-block;
	line-height: 50px;
	margin-left: 25px;
}
.header .menu > ul > li > a{
	font-size: 15px;
	font-weight: 500;
	color:#000000;
	position: relative;
	text-transform: capitalize;
	transition: color 0.3s ease;
	letter-spacing:1px;
}
.header .menu > ul > li .sub-menu{
	position: absolute;
	z-index: 500;
	background-color:#ffffff;
	box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3); 
	padding: 20px 30px;
	transition: all 0.5s ease;
	margin-top:25px;
	opacity:0;
	visibility: hidden;
}

.header .menu > ul > li .sub-menu > ul > li{
	line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a{
	display: inline-block;
	padding: 10px 0;
	font-size: 15px;
	color: #555555;
	transition: color 0.3s ease;
	text-decoration: none;
	text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu{
	min-width: 300px;
	max-width: 300px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li{
   line-height: 1;
   display: block; 
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
	padding:10px 0;
	display: inline-block;
	font-size: 15px;
	color:#555555;
	transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu.mega-menu{ 
    left: 50%;
    transform: translateX(-50%);	
}

.header .menu > ul > li .sub-menu.mega-menu-column-4{
  max-width: 1100px;
  width: 100%; 	
  display: flex;
  flex-wrap: wrap;
  padding:20px 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
  flex:0 0 25%;
  padding:0 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title{
	font-size: 16px;
	color:#ea4636;
	font-weight: 500;
	line-height: 1;
	padding:10px 0;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
	text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
	max-width: 100%;
	width: 100%;
	vertical-align: middle;
	margin-top: 10px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a{
	color:#ea4636;
}

.header .menu > ul > li.menu-item-has-children:hover .sub-menu{
	margin-top: 0;
	visibility: visible;
	opacity: 1;
}

.mobile-menu-head,
.mobile-menu-trigger{
	display: none;
}

/*responsive*/



.menu .menu-main{
	text-align: center;
}
.sub-menu .list-item{
	text-align: left !important;
}
.sub-menu.single-column-menu{
	text-align: left !important;
}

footer{
	background:linear-gradient(0deg, rgba(44, 44, 44, 0.9), rgba(35, 35, 36, 0.9)), url(../img/oldbreadcrum.jpg);
	background-size:cover;
	padding-top: 20px;
	color: white;
	text-align: center;
}
.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ed1a23!important;
}

.title{
    color:black;
}

.carousel-item img{
    max-height: 600px;
}
.carousel-caption{
    top:0;
    left:0;
    bottom:0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}
.carousel-control-prev{
    width: 70px;
    height: 70px;
    right: 50px;
}