/*
*** 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: 0;
    left: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
/* Default CSS ENDS */

/* Logo STARTS */

/* Logo ENDS */

/* Menubar Full Design STARTS */
.top-side-menu {
    width: 100%;
    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;
}

/* Menubar Full Design 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: end;
        -ms-flex-pack: end;
            justify-content: end;
    list-style: none;
    z-index: 2;
    position: relative;
}
.top-side-menu > .menuwrapper .main-menu > ul {
    padding: 0 0px;
	
}
@media all and (max-width: 1180px){
    .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;
    }
    .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;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
@media all and (max-width: 1180px){
    .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 a.caret {
    position: relative;
}
.main-menu ul li a.caret:before {
    content: " ";
    position: absolute;
    top: 41%;
    right: 3px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    z-index: 1;
    -webkit-transform: translateX(-45%) rotate(135deg);
        -ms-transform: translateX(-45%) rotate(135deg);
            transform: translateX(-45%) rotate(135deg);
}
@media all and (max-width: 1180px){
    .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: 2px solid #1f4a9e;
    border-right: 2px solid #1f4a9e;
}
.main-menu ul li a {
    position: relative;
	
}
.top-side-menu > .menuwrapper > .main-menu > ul > li > a {
    padding: 25px 25px;
    display: block;
    text-decoration: none;
    color: #000;
	
	 
	font-size:16px;
    text-transform: capitalize;
}
@media all and (max-width: 1180px){
    .top-side-menu > .menuwrapper > .main-menu > ul > li > a {
        padding: 15px;
		
    }
}
@media all and (max-width: 1180px){
    .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: 0;
    min-width: 300px;
    background-color: #fff;
    -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: #1f4a9e;
}
.menuwrapper > .main-menu > ul > li.active:not(.blinging) > a {
    color: #1f4a9e;
  
}
.main-menu > ul > li .sub-menu > li {
    width: 100%;
    border-bottom: 1px solid #e3e3e3;
	
}
.main-menu > ul > li .sub-menu > li:last-child {
    border-bottom: none;
}
.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: 1180px){
    .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: 1180px){
    .main-menu ul li:hover > .sub-menu {
        -webkit-transform: rotateX(0deg);
                transform: rotateX(0deg);
        position: relative !important;
    }
}
.sub-menu li:hover > a {
    color: #1f4a9e;
  
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.sub-menu li:hover > a.caret:before {
    border-top: 3px solid #fff;
    border-right: 3px solid #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: 1180px) {
    .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: 50px;
	min-height:300px;
    -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;
	border-radius:10px;
	
}
.main-menu > ul > li:hover > .mega-menu-1 {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
}
@media all and (max-width: 1180px){
    .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: 1180px) {
    .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%;
	border-radius:5px;
}
.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: 18px;
    text-transform: capitalize;
}
.mega-menu-1 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-content p {
	color:#999
}
.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;
	font-size:16px;
    border-bottom: 1px solid #eee;
}
.mega-menu-3 > .mega-menu-items > a > img {
    width: 100%;
}
.main-menu > ul > li.mega-menu > .mega-menu-3 {
    position: absolute;
    top: 137%;
    width: 100%;
    left: 0;
    background-color: #fff;
    padding: 50px;
    -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;
	border-radius:0 0 10px 10px;
	/* 添加阴影效果 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.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: #e74c3c;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}
/* Mega Menu 4 ENDS */
/* Mega Menu 5 STARTS */
.main-menu > ul > li.mega-menu > .mega-menu-5 {
    position: absolute;
    top: 137%;
    width: 100%;
    left: 0;
    background-color: #fff;
    padding: 50px;
	min-height:300px;
    -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;
	border-radius:0 0 10px 10px;
	/* 添加阴影效果 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.main-menu > ul > li:hover > .mega-menu-5 {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
}
@media all and (max-width: 992px){
    .main-menu > ul > li:hover > .mega-menu-5 {
        -webkit-transform: rotateX(0deg);
                transform: rotateX(0deg);
        position: relative;
    }
}

.mega-menu-5 > .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-5 > .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-5 > .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-5 > .mega-menu-items > a {
    display: block;
    width: 100%;
}
.mega-menu-5 > .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-5 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-img {
    width: 30%;
}
.mega-menu-5 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-img img {
    width: 90%;
	border-radius:5px;
}
.mega-menu-5 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-content {
    width: 70%;
    padding-bottom: 10px;
}
.mega-menu-5 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-content h5 {
    font-size: 18px;
    text-transform: capitalize;
}
.mega-menu-5 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-content p {
	color:#999
}
@media (min-width:1200px){
	.mega-menu-5 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-img {
    width: 35%;
}
.mega-menu-5 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-img img {
    width: 90%;
	border-radius:5px;
}
.mega-menu-5 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-content {
    width: 65%;
    padding-bottom: 10px;
}
.mega-menu-5 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-content h5 {
    font-size: 18px;
    text-transform: capitalize;
}
.mega-menu-5 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-content p {
	color:#999
}
	}
@media screen and (min-width: 1600px) {
	.mega-menu-5 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-img {
    width: 25%;
}
.mega-menu-5 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-img img {
    width: 90%;
	border-radius:5px;
}
.mega-menu-5 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-content {
    width: 75%;
    padding-bottom: 10px;
}
.mega-menu-5 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-content h5 {
    font-size: 18px;
    text-transform: capitalize;
}
.mega-menu-5 > .mega-menu-items > a > .mega-menu-item > .mega-menu-items-content p {
	color:#999
}} 
	
/* Mega Menu 5 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 */


	.logo > a > img {
    width: 150px;
}

@media (max-width: 1180px) {
	.logo > a > img {
    width: 150px; margin-top:30px;
}
	}
@media (max-width: 768px) {
	.logo > a > img {
    width: 150px; margin-top:20px;
}
	}