/*
*** Default CSS
*** Logo
*** Menubar Full Design
*** Blinging Nav in Mobile Menu
*** Menubar Navs in Responsive from 992px
*** Menubar design
*** Submenu of Main Menu
*** Mega Menu 1
*** Mega Menu 2
*** Mega Menu 3
*** Mega Menu 4
*** Search bar
*/

/* Default CSS STARTS */
.solid-white {background-color: #fff !important;}
.solid-white-75 {background-color: rgba(255,255,255,.75) !important;}
.overflow-y-hidden {overflow-y: hidden;}
.right-0 {right: 0% !important;}
.position-fixed {
    position: sticky;
    top: 0%;
    left: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.position-absolute {
    position: static;
    top: 1;
    left: 100;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
/* Default CSS ENDS */

/* Logo STARTS */
.logo > a > img {
	width: auto;
	height: 60px;
}
.logo {
    text-align: center;
}
/* Logo ENDS */

/* Menubar Full Design STARTS */
.top-side-menu {
	position: fixed; /* or sticky, depending on behavior */
	width: 100%;;
	z-index: 1000; /* Set a high z-index to keep it above other elements */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 25px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.top-side-menu a {
    color: #000;
    text-decoration: none;
}
.top-side-menu > .menuwrapper {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	position: relative;
}
/* Blinging Nav in Mobile Menu STARTS */
.menuwrapper > .blinging {
    float: right;
    margin-right: 100px;
}
@-webkit-keyframes blinging {
    0% {
        background: #e74c3c; /* #e74c3c #FFFFFF*/
        color: #000000; /* #fff */
    }
    50% {
        background: #e74c3c; /* #e74c3c #FFFFFF*/
        color: #000000; /* #fff */
    }
    100% {
        background: #e74c3c; /* #e74c3c #FFFFFF*/
        color: #000000; /* #fff */
    }
}
@keyframes blinging {
    0% {
        background: #e74c3c; /* #e74c3c #FFFFFF*/
        color: #000000; /* #fff */
    }
    50% {
        background: #e74c3c; /* #e74c3c #FFFFFF*/
        color: #000000; /* #fff */
    }
    100% {
        background: #e74c3c; /* #e74c3c #FFFFFF*/
        color: #000000; /* #fff */
    }
}
.menuwrapper > .blinging {
    padding: 15px 20px !important;
    border-radius: 30px !important;
    border: 2px solid #FFFFFF !important; /* #e74c3c */
    -webkit-animation: blinging 3s linear infinite;
            animation: blinging 3s linear infinite;
    display: none;
}
@media all and (max-width: 992px){
    .menuwrapper > .blinging {
        display: block;
    }
}
/* Blinging Nav in Mobile Menu ENDS */
/* Menubar Full Design ENDS */

/* Menubar Navs in Responsive from 992px STARTS */
.menu-bars {
    width: 50px;
    height: 43px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 15px;
    overflow: hidden scroll;
    z-index: 1;
    cursor: pointer;
    display: none;
}
.mobile-menu-bar {
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 15px;
}
@media all and (max-width: 992px){
    .menu-bars {
        display: block;
    }
    .mobile-menu-bar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .main-menu > .mobile-menu-bar > .menu-bars {
        position: static;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }
}
.menu-bars span {
    width: 50px;
    height: 3px;
    background-color: #000;
    display: block;
    position: absolute;
    z-index: 999;
    right: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.menu-bars span:first-child {
    top: 0;
}
.menu-bars span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.menu-bars span:last-child {
    bottom: 0;
}
.menu-bars .first-bar {
    top: 19px !important;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.menu-bars .second-bar {
    right: 50px;
}
.menu-bars .thired-bar {
    bottom: 19px !important;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
/* Menubar Navs in Responsive from 992px ENDS */
/* Blinging Nav in desktop Menu STARTS */
@keyframes blinging {
    0% {
        background: #FFFFFF; /* #e74c3c */
        color: #000000; /* #fff */
    }
    50% {
        background: #FFFFFF; /* #e74c3c */
        color: #000000; /* #fff */
    }
    100% {
        background: #FFFFFF; /* #e74c3c */
        color: #000000; /* #fff */
    }
}
.main-menu > ul > li.blinging {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
}
.main-menu > ul > li.blinging > a {
    padding: 15px 20px !important;
    border-radius: 30px !important;
    border: 2px solid #cccccc !important; /* #e74c3c #FFFFFF #cccccc */
    -webkit-animation: blinging 3s linear infinite;
            animation: blinging 3s linear infinite;
}
/* Hover effect to change text color */
.main-menu > ul > li.blinging > a:hover {
	color: #E74C3C !important;
	text-decoration: underline !important;
}

@media all and (max-width: 992px){
    .main-menu > ul > li.blinging {
        display: none !important;
    }
}
/* Blinging Nav in desktop Menu ENDS */
/* Menubar design STARTS */
.top-side-menu > .menuwrapper .main-menu ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	list-style: none;
	z-index: 2;
	position: relative;
}
@media all and (max-width: 992px){
    .top-side-menu > .menuwrapper > .main-menu  {
	position: fixed;
	top: 0;
	right: 100%;
	width: 100%;
	height: 100%;
	z-index: 999;
	background-color: #fff;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	overflow: hidden scroll;	
    }
    .top-side-menu > .menuwrapper .main-menu ul  {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%;
    }
}
.top-side-menu > .menuwrapper > .main-menu ul > .indicator {
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    z-index: 1;
    background: #FFFFFF; /* #e74c3c */
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
@media all and (max-width: 992px){
    .top-side-menu > .menuwrapper > .main-menu ul > .indicator {
        width: 100%;
        height: 0;
    }
}
.main-menu ul li {
    position: relative;
    z-index: 2;
}
.main-menu ul li.blinging {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}




.main-menu ul li a.caret { 
    position: relative;
}
.main-menu ul li a.caret:before {
    content: " ";
    position: absolute;
    top: 45%;
    right: 8px;
    width: 5px;
    height: 5px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    z-index: 1;
    -webkit-transform: translateX(-45%) rotate(45deg);
        -ms-transform: translateX(-45%) rotate(45deg);
            transform: translateX(-45%) rotate(45deg);
} /*  135deg  */




@media all and (max-width: 1024px){
    .main-menu ul li a.caret:before {
        right: 0;
    }
}
.sub-menu li.caret:before {
    -webkit-transform: translateX(-45%) rotate(45deg) !important;
        -ms-transform: translateX(-45%) rotate(45deg) !important;
            transform: translateX(-45%) rotate(45deg) !important;
}
.main-menu > ul > li:hover > a.caret:before {
    border-top: 3px solid #000000; /* #e74c3c or #FFFFFF or #fff or #cccccc  or #000000 */
    border-right: 3px solid #000000; /* #e74c3c or #FFFFFF or #fff or #cccccc or #000000 */
}
.main-menu ul li a {
    position: relative;
}
.top-side-menu > .menuwrapper > .main-menu > ul > li > a {
    padding: 20px 25px; /* padding: 35px 25px;*/
    display: block;
    text-decoration: none;
	background-color: initial; /* Set the background color for top-level menu items *//* or initial; or #f9f9f9; */
    color: #000;
    text-transform: capitalize;
}
@media all and (max-width: 1024px){
    .top-side-menu > .menuwrapper > .main-menu > ul > li > a {
        padding: 15px;
    }
}
@media all and (max-width: 992px){
    .top-side-menu > .menuwrapper > .main-menu > ul > li > a {
        padding: 15px !important;
    }
}
/* Menubar design ENDS */




/* Submenu of Main Menu STARTS */
.main-menu > ul > li .sub-menu {
    position: absolute !important;
    top: 100%;
    left: 20;
    min-width: 300px;
    background-color: #fff; /* Changed from #fff to #f9f9f9 */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 11;
}
.menuwrapper > .main-menu > ul > li:hover:not(.blinging) > a {
	color: #e74c3c; /* #fff */
	text-decoration: underline;
	background-color: #fff; /* #e74c3c or #f9f9f9 or #FFFFFF */
}
.menuwrapper > .main-menu > ul > li.active:not(.blinging) > a {
	color: #e74c3c; /* #fff */
	text-decoration: underline;
	background-color: #fff; /* #e74c3c or #f9f9f9 or #FFFFFF */
}
.main-menu > ul > li .sub-menu > li {
    width: 100%;
    border-bottom: 1px solid #cccccc; /* Changed from #e3e3e3 to #cccccc */
}
.main-menu > ul > li .sub-menu > li:last-child {
    border-bottom: 1px solid #cccccc; /* Changed from none to #cccccc */ 
}
.main-menu > ul > li .sub-menu > li > a {
    width: 100%;
    display: block;
    padding: 15px 25px;
}
.main-menu > ul > li .sub-menu > li > .sub-menu {
    left: 100%;
    top: 0;
}
@media all and (max-width: 992px){
    .main-menu > ul > li .sub-menu > li > .sub-menu {
        left: 0%;
        top: 100%;
    }
}
.sub-menu {
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
}
.menuwrapper > .main-menu ul li:hover > .sub-menu {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
}
@media all and (max-width: 992px){
    .main-menu ul li:hover > .sub-menu {
        -webkit-transform: rotateX(0deg);
                transform: rotateX(0deg);
        position: relative !important;
    }
}
.sub-menu li:hover > a {
    color: #e74c3c; /* #fff */
	text-decoration: underline;	
    background-color: #fff; /* #e74c3c or #f9f9f9 or  #FFFFFF */
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.sub-menu li:hover > a.caret:before {
    border-top: 3px solid #000000; /* #000000 or #fff */
    border-right: 3px solid #000000; /* #000000 or #fff */
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
/* Submenu of Main Menu ENDS */



/* Mega Menu some default styles STARTS */
.main-menu > ul > li.mega-menu {
    position: static;
}
@media all and (max-width: 992px) {
    .main-menu > ul > li.mega-menu {
        position: relative;
    }
}
/* Mega Menu some default styles ENDS */

/* Mega Menu 1 STARTS */
.main-menu > ul > li.mega-menu > .mega-menu-1 {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    background-color: #fff;
    padding: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 10;
}
.main-menu > ul > li:hover > .mega-menu-1 {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
}
@media all and (max-width: 992px){
    .main-menu > ul > li:hover > .mega-menu-1 {
        -webkit-transform: rotateX(0deg);
                transform: rotateX(0deg);
        position: relative;
    }
}

.mega-menu-1 > .mega-menu-items {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(100% / 4);
            flex: 1 0 calc(100% / 4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
@media all and (max-width: 992px) {
    .mega-menu-1 > .mega-menu-items {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 50%;
                flex: 1 0 50%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}
@media all and (max-width: 575px) {
    .mega-menu-1 > .mega-menu-items {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 100%;
                flex: 1 0 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
.mega-menu-1 > .mega-menu-items > a {
    display: block;
    width: 100%;
}
.mega-menu-1 > .mega-menu-items > a > .mega-menu-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    padding: 10px 0;

}
.mega-menu-1 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-img {
    width: 25%;
}
.mega-menu-1 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-img img {
    width: 90%;
}
.mega-menu-1 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-content {
    width: 75%;
    padding-bottom: 10px;
}
.mega-menu-1 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-content h5 {
    font-size: 25px;
    text-transform: capitalize;
}
.mega-menu-1 > .mega-menu-items:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(100% / 6);
            flex: 1 0 calc(100% / 6);
}
.mega-menu-1 > .mega-menu-items:last-child > a > .mega-menu-item {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.mega-menu-1 > .mega-menu-items:last-child > a > .mega-menu-item > .mega-menu-items-img,
.mega-menu-1 > .mega-menu-items:last-child > a > .mega-menu-item > .mega-menu-items-img img,
.mega-menu-1 > .mega-menu-items:last-child > a > .mega-menu-item > .mega-menu-items-content {
    width: 100%;
}
@media all and (max-width: 992px) {
    .mega-menu-1 > .mega-menu-items:last-child {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 25%;
                flex: 1 0 25%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .mega-menu-1 > .mega-menu-items:last-child > a > .mega-menu-item {
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .mega-menu-1 > .mega-menu-items:last-child > a > .mega-menu-item > .mega-menu-items-img {
        width: 25%;
    }
    .mega-menu-1 > .mega-menu-items:last-child > a > .mega-menu-item > .mega-menu-items-img img {
        width: 90%;
    }
    .mega-menu-1 > .mega-menu-items:last-child > a > .mega-menu-item > .mega-menu-items-content {
        width: 75%;
        padding-bottom: 10px;
    }
}
/* Mega Menu 1 ENDS */

/* Mega Menu 2 STARTS */
.mega-menu-2 > .mega-menu-items > a > .mega-menu-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    padding: 10px 0;

}
.mega-menu-2 {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}
.mega-menu-2 > .mega-menu-items {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(100% / 6);
            flex: 1 0 calc(100% / 6);
}
.mega-menu-2 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-img {
    width: 100%;
}
.mega-menu-2 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-img img {
    width: 100%;
}
.mega-menu-2 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-content {
    width: 100%;
    padding-bottom: 10px;
}
.mega-menu-2 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-content h5 {
    font-size: 25px;
    text-transform: capitalize;
}
.main-menu > ul > li.mega-menu > .mega-menu-2 {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    background-color: #fff;
    padding: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 11;
}
.main-menu > ul > li:hover > .mega-menu-2 {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
}
@media all and (max-width: 992px){
    .main-menu > ul > li:hover > .mega-menu-2 {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .mega-menu-2 > .mega-menu-items {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 calc(100% / 4);
                flex: 1 0 calc(100% / 4);
    }
}
/* Mega Menu 2 ENDS */

/* Mega Menu 3 STARTS */
.mega-menu-3 > .mega-menu-items > a > .mega-menu-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    padding: 10px 0;

}
.mega-menu-3 {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}
.mega-menu-3 > .mega-menu-items {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(100% / 5);
            flex: 1 0 calc(100% / 5);
}
.mega-menu-3 > .mega-menu-items:nth-child(4n+0) {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(100% / 7);
            flex: 1 0 calc(100% / 7);
}
.mega-menu-3 > .mega-menu-items > h5 {
    font-size: 25px;
    text-transform: capitalize;
}
.mega-menu-3 > .mega-menu-items > a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px dotted #000;
}
.mega-menu-3 > .mega-menu-items > a > img {
    width: 100%;
}
.main-menu > ul > li.mega-menu > .mega-menu-3 {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    background-color: #fff;
    padding: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 11;
}
.main-menu > ul > li:hover > .mega-menu-3 {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
}
@media all and (max-width: 992px){
    .main-menu > ul > li:hover > .mega-menu-3 {
        position: relative;
    }
}
/* Mega Menu 3 ENDS */

/* Mega Menu 4 STARTS */

.main-menu > ul > li.mega-menu > .mega-menu-4 {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    background-color: #fff;
    padding: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 11;
}
.main-menu > ul > li:hover > .mega-menu-4 {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
}
@media all and (max-width: 992px){
    .main-menu > ul > li:hover > .mega-menu-4 {
        position: relative;
    }
}
.mega-menu form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.mega-menu form label {
    width: 50%;
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    padding: 10px 25px;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}
@media all and (max-width: 575px){
    .mega-menu form label {
        width: 100%;
        -webkit-box-flex: 1;
            -ms-flex: 1 0 100%;
                flex: 1 0 100%;
    }
}
.mega-menu form label input,
.mega-menu form label textarea {
    width: 100%;
    display: block;
    height: 50px;
    border: 1px solid #e3e3e3;
    margin-top: 5px;
    padding: 15px;
    font-family: 'Ubuntu', sans-serif;
}
.mega-menu form label textarea {
    height: 150px;
}
.mega-menu form label input:focus,
.mega-menu form label textarea:focus {
    outline: none;
}
.mega-menu form label:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
}
.mega-menu form label button {
    padding: 15px;
    background-color: #FFFFFF; /* #e74c3c */
    color: #e74c3c; /* #fff */
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}
/* Mega Menu 4 ENDS */




/* Search bar STARTS */
.search-bar {
    position: relative;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.search-bar > a {
    width: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
}
.search-bar form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 300px;
    position: absolute;
    top: 44px;
    right: 0;
    background: #fff;
    padding: 10px;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
@media all and (max-width: 1024px){
    .search-bar form {
        top: 40px;
    }
}
.search-bar form.show-in-slide {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.search-bar form input {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 80%;
            flex: 1 0 80%;
    width: 100%;
    height: 50px;
    padding: 0 15px;
}
.search-bar form button {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 20%;
            flex: 1 0 20%;
    width: 100%;
    height: 50px;
    background-color: #202020;
    color: #fff;
    border: none;
    cursor: pointer;
}
.search-bar form input:focus {
    outline: none;
}
/* Search bar ENDS */

/* .menu-separator {
/*     width: 100%; /* Adjust the width as needed */
 /*    margin: 0 auto; /* Centers the <hr> horizontally */
/* 	margin-top: 10px;
 /*    border: none; /* Remove default border */
 /*    height: 2px; /* Set the thickness of the line */
 /*    border-top: 1px solid #000000; /* #333 Adjust thickness and color */
 /*    background-color: #cccccc; /* #cccccc Choose a color */
/* } */

 .menu-separator {
     width: 100%; /* Adjust the width as needed */
     margin: 0 auto; /* Centers the <hr> horizontally */
 	margin-top: 10px;
     border: none; /* Remove default border */
     height: 1px; /* Set the thickness of the line */
     border-top: 1px solid #cccccc; /* #333 Adjust thickness and color */
     background-color: #cccccc; /* #cccccc Choose a color */
 } 

/* Main Menu container styling */
.main-menu {
    display: flex;
    justify-content: center; /* Centers the menu items */
    padding-bottom: 10px; /* Adds space below the menu items */
    border-bottom: 1px solid #cccccc; /* #333 Creates a line under the menu */
}

.main-menu a {
    text-decoration: none; /* Removes underline from each menu link */
    padding: 0 15px; /* Adds spacing between menu items */
    color: #000; /* #000 Adjust menu item color */
}
