.d-none {
	display : none !important;
}
.main_search {

	height: 32px !important;
    width: 180px !important;
    background: #fff !important;
    color: #000;
    margin: 2px;
}

.topUl li{
	display : inline-block;
	
}
.topUl .sw-odd {
	padding: 0;
    background: transparent;
	margin-left: 20px;
}
.topUl .sw-odd .ws-colors a{
	border : 1px solid #fff;
	overflow: unset;
	line-height: 29px;
}
.topUl .button {
	height :32px !important;
	line-height :32px !important;
	border:1px solid #fff;
}
.sw-odd .ws-colors a.current:before {
    position: absolute;
    left: 6px !important;
    top: 1px !important;
    font-family: FontAwesome;
    content: "\f00c";
    color: #fff;
    z-index: 999;
    text-shadow: 0 0 2px rgba(0, 0, 0, 1);
}
.switcher-container, .sw-click {
	display :none;
}
.logo img {
	width : 570px;
}
.site-brand {
    background-color: #fff;
    color: #fff !important;
}
.header {
	background : linear-gradient(to right, #FE8F27 23%, #efb075 100%);
}
.site-brand .header-widgets .widget  {
	color : #fff !important;
	padding-right:0px !important;
    margin-right: 0px !important;
}



#mainnav > ul > li.has-children > a:after {
    
    bottom: 45%;
    right: 0% !important;
	left : unset !important;
    margin-left: 0px;
}

#mainnav .mega-menu { 
    background-color: #fff !important;  
	top : 44px !important; 
}

#mainnav > ul > li > a {
	line-height: 35px;
	font-size:16px;
}
.mega-menu ul li a {
	color:#000;
}
.mega-menu ul li a:hover {
	color:#fff;
}
#mainnav .mega-menu .menu-item > a {
    font-weight: 600 !important;  
}

/* -------------top hearder mobile vieww css------------------ */

/* General Styling */
.topUl {
    list-style: none; /* Remove default list styling */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    display: flex; /* Enable flexbox for alignment */
    align-items: center; /* Align items vertically in the center */
    justify-content: flex-start; /* Default alignment for desktop */
    gap: 10px; /* Add spacing between list items */
}

/* Center the ul and its content on mobile */
@media (max-width: 768px) {
    .topUl {
        padding-top: 10px;
        justify-content: center; /* Center-align the list items */
        flex-wrap: wrap; /* Allow items to wrap on smaller screens */
        text-align: center; /* Ensure text alignment in case flex fails */
    }

    .topUl li {
        margin-bottom: 10px; /* Optional: Add spacing between items */
        width: 100%; /* Ensure list items take full width */
    }

    .topUl .main_search {
        width: 90%; /* Responsive input width */
        margin: 0 auto; /* Center input */
        display: block; /* Ensure proper block layout for input */
    }

    .topUl .button {
        display: block; /* Ensure button centers properly */
        margin: 0 auto; /* Center button */
    }
}
/* -------------end header mobile view css--------------------- */


/* -----------------------logo responsive mobile view-------------- */

/* General Styling for Desktop and Mobile */
.logo {
    display: flex; /* Ensure both columns are in the same row */
    flex-wrap: nowrap; /* Prevent wrapping on mobile */
    justify-content: space-between; /* Space out items evenly */
    align-items: center; /* Align items vertically */
}

.logo img,
.header-widgets img {
    width: 100%; /* Make the image responsive */
    max-width: 570px; /* Prevent the image from growing too large */
    height: auto; /* Maintain the aspect ratio */
    display: block; /* Prevent inline spacing issues */
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .logo {
        display: flex; /* Ensure the flex layout remains */
        flex-wrap: nowrap; /* Keep items side by side */
    }

    .col-sm-6, .col-xs-6 {
        flex: 1 1 50%; /* Make both columns take equal width */
    }

    .logo img,
    .header-widgets img {
        max-width: 90%; /* Slightly reduce size for smaller screens */
        margin: 0 auto; /* Center the images horizontally if needed */
    }
}

/* ---------------------end logo rsponsive for mobile view ------------------ */