/* Custom CSS for the Landing Page */



:root {
    --theme-color: #004d40;
    --theme-color-lt: rgba(1, 127, 63, 1);
    --primary-color: #00796b;
    --secondary-color: #00796b;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --font-family: 'Poppins', sans-serif;
    --light-dark: rgba(0, 77, 64, 0.42);
}

@font-face {
    font-family: 'TekoBold';
    src: url('./../webfonts/Teko-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'TekoBold', sans-serif;
}

.__font_size45 {
    font-size: 45px;
}


#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00796bd1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.spinner {
    border: 6px solid #fdd835;
    border-top: 6px solid #137796;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #495057;
}
.main-content {
    min-height: calc(100vh - 428px);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lead {
    font-weight: 400;
    color: #6c757d;
}


.__bg_dark {
    background-color: var(--theme-color)!important;
}

.main-logo {
    width: 130px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    text-transform: uppercase;
    color: #fff !important;
}

.social-icon {
    font-size: 1.2rem;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color) !important;
}

/* Banner Slider */
.banner-section {
    position: relative;
    overflow: hidden;
    margin-top: 145px;
}

.carousel-item img {
    object-fit: cover;
    filter: brightness(0.6);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.banner-content {
    max-width: 600px;
}

.banner-content h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.btn-explore {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-explore:hover {
    background-color: #ffc107;
}

/* General Buttons */
.btn-donate {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-donate:hover {
    background-color: #004d40;
}

/* Moments Section */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.position-relative:hover .image-overlay {
    opacity: 1;
}

/* Founder Speech Section */
#founder-speech-section {
    background-color: var(--theme-color);
    background-size: cover;
    background-position: center;
}

.founder-image {
    object-fit: cover;
    width: 100%;
}

/* Our Impact Section */
#impact-section {

}
#impact-section .impact-info{
    background-image: url("../img/impact.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px;
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.impact-text {
    font-size: 1.2rem;
    font-weight: 500;
}
.banner-section .item img {
    width: 100%;
    height: calc(100vh - 145px);
    object-fit: cover;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
}

.impact-text {
    font-size: 1.1rem;
    color: #f1f1f1;
}

/* Adjust overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Responsive text */
.banner-content h1 {
    font-size: 5rem;
    line-height: 1.2;
}
.banner-content p {
    font-size: 1rem;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-img {
    height: 300px!important;
}
.impact-counter .icon i {
    font-size: 50px;
    margin-bottom: 20px;
}

#working-area-section {
    background-image: url("../img/area.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Working Area Section */
#working-area-section img {
    width: 100%;
}
.map-section {
    width: 100%;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .banner-section .item img {
        height: 70vh;  /* Smaller height on tablets */
    }
    .banner-content h1 {
        font-size: 1.6rem;
    }
    .banner-content p {
        font-size: 0.9rem;
    }
}

/* Navigation arrows positioning */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 10px;
}

.owl-nav button {
    background: rgba(0,0,0,0.5);
    color: #fff !important;
    font-size: 28px !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    border: none;
    pointer-events: auto;
    transition: 0.3s;
}

.owl-nav button:hover {
    background: var(--secondary-color)
}

/* Footer */
#footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

#footer a:hover {
    color: #fff;
}

.footer-logo {
    width: 250px;
}

.__menu-top ul li {
    padding: 0 15px;
    position: relative;
}
.__menu-top ul li ul {
    display: none;
}
.__menu-top ul li:hover {
    cursor: pointer;
    color: var(--secondary-color)!important;
    background-color: transparent!important;
}
.navbar-nav .nav-item:hover .nav-link{
    cursor: pointer;
    color: var(--secondary-color)!important;
}


.__multi-submenu ul li {
    color: #fff!important;
}

.footer-text {
    color: #ccc;
}

.__theme-bg {
    background-color: var(--theme-color);
    color: var(--light-color);
}

.__theme-input {
    height: 50px;
}

.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.banner-content {
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-in-out;
}

.banner-content.active {
    opacity: 1;
    transform: translateY(0);
}

.btn-explore {
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-explore:hover {
    background: #e05500;
}

/* Custom nav arrows */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-nav button {
    background: rgba(0,0,0,0.5);
    color: #fff !important;
    font-size: 28px !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: none;
    pointer-events: auto;
    transition: 0.3s;
}

.owl-nav button:hover {
    background: #ff6600;
}
.banner-content h1,
.banner-content p,
.banner-content a {
    opacity: 0;
    transform: translateY(-20px);
}


.crss_card--1 .crss_card__img, .crss_card--1 .crss_card__img--hover {
    /*background-image: url('https://images.pexels.com/photos/45202/brownie-dessert-cake-sweet-45202.jpeg');*/
}

.crss_card__like {
    width: 18px;
}

.crss_card__clock {
    width: 15px;
    vertical-align: middle;
    fill: #AD7D52;
}
.crss_card__time {
    font-size: 12px;
    color: #AD7D52;
    vertical-align: middle;
    margin-left: 5px;
}

.crss_card__clock-info {
    float: right;
}

.crss_card__img {
    visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 235px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;

}

.crss_card__info-hover {
    position: absolute;
    padding: 16px;
    width: 100%;
    opacity: 0;
    top: 0;
}

.crss_card__img--hover {
    transition: 0.2s all ease-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: absolute;
    height: 235px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    top: 0;

}
.crss_card {
    margin-right: 25px;
    transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
    background-color: #fff;
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 13px 10px -7px rgba(0, 0, 0,0.1);
}
.crss_card:hover {
    box-shadow: 0px 30px 18px -8px rgba(0, 0, 0,0.1);
    /*transform: scale(1.10, 1.10);*/
}

.crss_card__info {
    z-index: 2;
    background-color: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 16px 24px 24px 24px;
    line-height: 1.2;
}

.crss_card__category {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #868686;
}

.crss_card__title {
    margin-top: 5px;
    margin-bottom: 10px;
    font-family: 'Roboto Slab', serif;
}

.crss_card__by {
    font-size: 12px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.crss_card__author {
    font-weight: 600;
    text-decoration: none;
    color: #AD7D52;
}

.crss_card:hover .crss_card__img--hover {
    height: 100%;
    opacity: 0.3;
}

.crss_card:hover .crss_card__info {
    background-color: transparent;
    position: relative;
}

.crss_card:hover .crss_card__info-hover {
    opacity: 1;
}
.lm2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.crss_card__info a{
    text-decoration: none;
}


/* Keyframes */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* When active, animate one by one */
.banner-content.active h1 {
    animation: fadeDown 1s ease forwards;
    animation-delay: 0.3s;
}

.banner-content.active p {
    animation: fadeDown 1s ease forwards;
    animation-delay: 0.8s;
}

.banner-content.active a {
    animation: fadeDown 1s ease forwards;
    animation-delay: 1.3s;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: left;
    height: 100%;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card .icon-wrapper {
    background-color: rgba(255, 62, 84, 0.15);
    border-radius: 10px;
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}
.feature-card .content-wrapper {
    flex-grow: 1;
}

.moments-info {
    margin-top: 10px;
    line-height: 0;
}

.__theme-color {
    color: var(--theme-color);
}

.__theme-color-lt {
    color: var(--theme-color-lt);
}


.page-header {
    background-image: url('../img/page-header-bg.png');
    background-size: cover;
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 145px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Puts the overlay on top of the background image */
}

.header-content {
    position: relative;
    color: #fff; /* Sets the text color to white */
    text-align: center;
    z-index: 2; /* Puts the text on top of the overlay */
}

.header-content h1 {
    font-size: 3em;
    font-weight: bold;
    margin: 0;
    color: #eee;
}

.header-content p {
    font-size: 1em;
    margin-top: 5px;
}
.header-content a {
    font-size: 1em;
    margin-top: 5px;
    font-weight: 600;
    text-decoration: none;
    color: #febe20;
}
.page-badge {
    background-color: rgba(255, 237, 230, 1);
    font-size: 18px;
    color: rgba(37, 37, 37, 1);
}
.page-title {
    color: rgba(37, 37, 37, 1);
    font-size: 48px;
}
.page-paragraph {
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
}

.page-bg1 {
    background-color: #eeeeee;
}
.page-bg2 {
    background-color: #cddce1;
}

.page-list {
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
    color: rgba(0, 0, 0, 1);
}

.__address_box {
    min-height: 200px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 51, 0.08);
    margin: 10px;
}
.__address_box a, .__address_box p {
    font-weight: 400;
    font-size: 18px;
    color: rgba(47, 47, 47, 1);
    text-decoration: none;
}

/* Media Queries for Responsiveness */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--dark-color);
        padding: 15px;
        margin-top: 10px;
        border-radius: 8px;
    }
    .navbar-nav .nav-link {
        color: #fff !important;
        margin-left: 0;
    }
    .social-icon {
        display: none;
    }
    .banner-content h1 {
        font-size: 3rem;
    }
}


/* Hover dropdowns only on desktop */
@media (min-width: 992px) {

}

/* Show submenu only when hovered (desktop view) */
@media (min-width: 992px) {

}

.mission-tab {
    border: none;
    margin: 30px 0;
    display: flex;
    gap: 20px;
}

.mission-tab .mission-btn{
    border-radius: 0px;
    padding: 5px 30px;
    font-weight: 600;
    background-color: rgba(199, 199, 199, 1);
    color: rgba(127, 127, 127, 1);
    border: none;
}

.mission-tab .mission-item .active{
    background-color: var(--theme-color-lt)!important;
    color: #fff!important;
}


/*
*-------------------------
* Menu Styles
*-------------------------
*/

/* Header
-------------------------------------------------------------- */
#header {
    z-index:999;
    background-color:#fff;
    font-weight: 500;
}

#header a {
    text-decoration: none!important;
}

/* Header Top */
.header-top {
    background-color: var(--theme-color);
    font-family: 'TekoBold', sans-serif;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 100!important;
}

.header-top dl, ol, ul{
    margin-top: 0;
    margin-bottom: 0;
}

.header-top.style1 {
    background-color:#f5f5f5;
    padding:6px 0;
}

.header-top.style2 {
    background-color:#ffa020;
    padding:0px 0;
    border-bottom:none;
}

.header-top.style2 ul.flat-support > li >
a {
    color:#fff;
}

.header-top.style2 ul.flat-support > li {
    border-color:#fec579;
}

.header-top.style2 ul.flat-infomation > li.phone {
    color:#fff;
}

.header-top.style2 ul.flat-infomation > li.phone > a {
    color:#Fff;
}

.header-top.style2 ul.flat-unstyled > li > a {
    color:#fff;
}

.header-top.style3 {
    background-color:#f5f5f5;
    padding:0px 0;
    border-bottom:none;
}

.header-top.style4 {
    background-color:#f5f5f5;
    padding:6px 0 6px;
    border-bottom:none;
}

/* Flat Support */
ul.flat-support li {
    display:inline-block;
    line-height:38px;
    height:37px;
}

ul.flat-support li a {
    border-right:1px solid #e5e5e5;
    padding-right:10px;
    padding-left:7px;
    font-weight:600;
}

ul.flat-support li:first-child > a {
    padding-left:0;
}

ul.flat-support li:last-child > a {
    padding-right:0;
    border-right:none;
}

ul.flat-support.style1 > li,
ul.flat-unstyled.style2 > li {
    display:inline-block;
    line-height:27px;
    height:24px;
}

/* Flat Infomation */
ul.flat-infomation {
    text-align:center;
}

ul.flat-infomation li.phone {
    color: var(--theme-color-lt);
    line-height:38px;
    height:37px;
    letter-spacing:-0.5px;
}

.grid-right ul.flat-infomation li.phone {
    height:55px;
    line-height:59px;
    font-size:15px;
}

/* Flat Unstyled */
ul.flat-unstyled {
    text-align:right;
    margin-right:3px;
}

ul.flat-unstyled > li {
    display:inline-block;
    line-height:38px;
    height:37px;
    position:relative;
    list-style: none!important;
}

ul.flat-unstyled > li > a {
    border-left:1px solid #e5e5e5;
    line-height:1;
    padding-left:9px;
    padding-right:6px;
    letter-spacing:-0.5px;
}

ul.flat-unstyled > li:last-child > a {
    padding-right:0;
}

ul.flat-unstyled > li:first-child > a {
    border-left:none;
}

ul.flat-unstyled > li > a i {
    padding-left:10px;
    padding-right:4px;
}

ul.flat-unstyled > li:last-child > a i {
    padding-right:0px;
}

ul.flat-unstyled > li > ul {
    background-color:#fff;
    border-radius:10px;
    padding:10px 0;
    box-shadow:0px 2px 3px 0px rgba(72, 72, 72, 0.15);
    opacity:0;
    visibility:hidden;
    position:absolute;
    left:0;
    z-index:99;
    width:130px;
    text-align:left;
    top:100px;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

ul.flat-unstyled > li > ul:before {
    content:'';
    position:absolute;
    left:30px;
    top:-8px;
    border-left:8px solid transparent;
    border-right:8px solid transparent;
    border-bottom:8px solid #e5e5e5;
    z-index:100;
}

ul.flat-unstyled > li:hover > ul {
    opacity:1;
    visibility:visible;
    top:38px;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

ul.flat-unstyled li > ul > li > a {
    display:block;
    padding:1px 15px;
    line-height:24px;
    font-size:12px;
}

.flat-unstyled.style1 {
    float:right;
    line-height:102px;
    height:101px;
    margin-right:3px;
}

/* Header Middle */
.header-middle #logo {
    line-height:97px;
    margin-left:-2px;
    margin-bottom:7px;
}

.header-middle .grid-left #logo {
    margin-bottom:0px;
}

.header-middle .logo.style1 {
    float:left;
    width:23%;
    margin-right:0px;
}

.header-middle.style1 {
    background-color: var(--theme-color-lt);
}

/* Show Search */
.show-search {
    display:none;
}

.show-search button {
    content:'';
    background:#fff;
    color: var(--theme-color-lt);
    border-color:transparent;
    height:45px;
    line-height:45px;
    width:45px;
    display:block;
    padding:0;
    border-radius:50%;
    position:relative;
}

.show-search button:before {
    content:"\f002";
    font-family:fontawesome;
    position:absolute;
    font-size:18px;
    line-height:45px;
    left:50%;
    top:0px;
    transform:translateX(-50%);
}

.show-search > button.active:before {
    content:"\f00d";
}

/* Top Search */
.top-search {
    padding:27px 0;
    padding-left:47px;
    margin-right:-21px;
}

.top-search form.form-search {
    position:relative;
}

.top-search form.form-search .cat-wrap {
    position:absolute;
    z-index:9;
    padding:15px 0;
}

.top-search form.form-search .cat-wrap-v1 {
    position:absolute;
    z-index:9;
    padding:12px 0;
}

.top-search form.form-search .cat-wrap select {
    height:20px;
    line-height:20px;
    padding:1px 63px 0 36px;
    border-radius:0px;
    border-right:1px solid #e5e5e5;
}

.top-search form.form-search .cat-wrap span {
    position:absolute;
    top:14px;
    right:22px;
    color:#1b1b19;
    font-size:14px;
}

.top-search form.form-search .cat-wrap-v1 span {
    top:11px !important;
}

.top-search form.form-search .cat-wrap .all-categories {
    position:absolute;
    top:80px;
    left:0;
    width:215px;
    border:2px solid #484848;
    border-radius:10px;
    height:287px;
    background:#fff;
    padding:10px 20px;
    z-index:9;
    opacity:0;
    visibility:hidden;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

.top-search form.form-search .cat-wrap .all-categories.show {
    top:55px;
    opacity:1;
    visibility:visible;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

.top-search form.form-search .cat-wrap .all-categories:before {
    content:'';
    position:absolute;
    border-bottom:5px solid #484848;
    border-left:5px solid transparent;
    border-right:5px solid transparent;
    top:-7px;
    left:57px;
}

.top-search form.form-search .cat-wrap .all-categories .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: var(--theme-color-lt);
}

.top-search form.form-search .cat-wrap .all-categories .cat-list-search .title {
    color: var(--theme-color-lt);
    line-height:30px;
}

.top-search form.form-search .cat-wrap .all-categories .cat-list-search ul {
    margin-bottom:5px;
}

.top-search form.form-search .cat-wrap .all-categories .cat-list-search ul li {
    padding-left:9px;
    line-height:20px;
    cursor:pointer;
}

.top-search form.form-search .cat-wrap .all-categories .cat-list-search ul li:hover {
    color: var(--theme-color-lt);
}

.top-search form.form-search .box-search input {
    padding-left:191px;
    padding-top:11px;
    height:49px;
}

.top-search form.form-search .box-search .btn-search {
    position:absolute;
    top:0;
    right:0;
}

.top-search form.form-search .box-search .search-suggestions {
    width:800px;
    overflow:hidden;
    position:absolute;
    top:100px;
    left:0;
    z-index:9;
    opacity:0;
    visibility:hidden;
    border-bottom-left-radius:10px;
    border-bottom-right-radius:10px;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

.top-search form.form-search .box-search .search-suggestions.show {
    opacity:1;
    visibility:visible;
    top:77px;
}

/* Top Search Style1 */
.top-search.style1 {
    width:610px;
    padding:5px 0px 5px 1px;
    float:left;
}

.top-search.style1 form.form-search .box-search input {
    background-color:#fff;
    border-color:#fff;
    height:45px;
    padding-left:188px;
}

.top-search.style1 form.form-search .box-search .btn-search button {
    background:#484848;
    padding:0px 27px 0 32px;
    height:45px;
    line-height:43px;
}

.top-search.style1 form.form-search .box-search .btn-search button img {
    margin-top:-3px;
}

/* Top Search Style2 */
.top-search.style2 {
    padding:28px 0 26px 48px;
    float:left;
    width:68%;
}

.top-search.style2 form.form-search .box-search .btn-search button {
    background:#484848;
    padding:0 29px 0 30px;
    height:49px;
    line-height:39px;
}

.top-search.style2 form.form-search .box-search input {
    background-color:#fff;
    border-color:#fff;
}

/* Top Search Style3 */
.top-search.style3 {
    padding-left:93px;
    margin-right:-37px;
}

/* Search Sugguestions */
.search-suggestions .box-suggestions {
    width:55%;
    float:left;
    background:#fff;
    padding:20px 30px;
}

.search-suggestions .box-suggestions .title,
.search-suggestions .box-cat .title {
    color: var(--theme-color-lt);
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.search-suggestions .box-suggestions ul li {
    margin-bottom:28px;
    overflow:hidden;
}

.search-suggestions .box-suggestions ul li .image {
    width:40px;
    float:left;
    height:40px;
    line-height:50px;
    margin-right:20px;
}

.search-suggestions .box-suggestions ul li .info-product {
    overflow:hidden;
}

.search-suggestions .box-suggestions ul li .info-product .name a:not(:hover) {
    color:#484848;
}

.search-suggestions .box-suggestions ul li .info-product .price .sale {
    color:#484848;
    font-size:16px;
    font-weight:500;
    font-family:'Nunito';
    margin-right:15px;
}

.search-suggestions .box-suggestions ul li .info-product .price .regular {
    font-size:13px;
}

.search-suggestions .box-cat {
    width:45%;
    float:left;
    background:#f5f5f5;
    padding:20px 30px;
    height:541px;
    overflow:hidden;
}

.search-suggestions .box-cat li a {
    color:#484848;
    line-height:30px;
}

/* Box Cart */
.box-cart {
    text-align:right;
    padding:27px 0;
}

.box-cart .inner-box {
    display:inline-block;
    position:relative;
}

.box-cart .inner-box > a > div {
    display:inline-block;
}

.box-cart .inner-box > a > div.icon-cart {
    height:48px;
    line-height:40px;
    width:48px;
    text-align:center;
    border:2px solid #e5e5e5;
    border-radius:50%;
    position:relative;
}

.box-cart .inner-box > a:hover > div.icon-cart {
    border-color: var(--theme-color-lt);
}

.box-cart .inner-box > a > div.icon-cart span {
    position:absolute;
    top:-3px;
    right:-8px;
    background-color: var(--theme-color-lt);
    width:20px;
    height:20px;
    line-height:18px;
    color:#f4f4f4;
    font-size:11px;
    border-radius:50%;
}

.box-cart .inner-box > a > .price {
    font-weight:600;
    font-size:16px;
    margin-left:8px;
}

.box-cart .inner-box ul.menu-compare-wishlist li {
    display:inline-block;
    margin-right:19px;
}

.box-cart .inner-box ul.menu-compare-wishlist li a {
    display:inline-block;
    height:48px;
    width:48px;
    line-height:40px;
    text-align:center;
    border:2px solid #e5e5e5;
    border-radius:50%;
}

.box-cart .inner-box ul.menu-compare-wishlist li a:hover {
    border-color: var(--theme-color-lt);
}

.box-cart .inner-box .dropdown-box {
    padding:25px 20px 32px;
    position:absolute;
    background-color:#fff;
    border-radius:8px;
    top:150px;
    width:332px;
    right:0;
    opacity:0;
    visibility:hidden;
    z-index:99;
    box-shadow:0px 2px 3px 0px rgba(72, 72, 72, 0.15);
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

.box-cart .inner-box .dropdown-box:before {
    content:'';
    position:absolute;
    top:-7px;
    right:70px;
    border-left:7px solid transparent;
    border-right:7px solid transparent;
    border-bottom:7px solid #e5e5e5;
}

.box-cart > .inner-box:hover > .dropdown-box {
    top:55px;
    opacity:1;
    visibility:visible;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

.box-cart .inner-box .dropdown-box > ul > li {
    position:relative;
    margin-bottom:30px;
}

.box-cart .inner-box .dropdown-box > ul > li .img-product {
    float:left;
    margin-right:20px;
    width:64px;
    height:64px;
    border:2px solid transparent;
    border-radius:8px;
    text-align:center;
}

.box-cart .inner-box .dropdown-box > ul > li:hover .img-product {
    border-color:#e5e5e5;
}

.box-cart .inner-box .dropdown-box > ul > li .info-product {
    text-align:left;
}

.box-cart .inner-box .dropdown-box > ul > li .info-product .name {
    margin-bottom:3px;
    color:#484848;
    font-size:12px;
    line-height:20px;
}

.box-cart .inner-box .dropdown-box > ul > li .info-product .price {
    color: var(--theme-color-lt);
}

.box-cart .inner-box .dropdown-box > ul > li span.delete {
    position:absolute;
    top:0;
    right:0;
    font-size:18px;
    cursor:pointer;
}

.box-cart .inner-box .dropdown-box .total {
    text-align:left;
}

.box-cart .inner-box .dropdown-box .total span {
    color:#484848;
    font-weight:bold;
    font-size:14px;
}

.box-cart .inner-box .dropdown-box .total span.price {
    color: var(--theme-color-lt);
    font-size:22px;
    font-weight:500;
    float:right;
}

.box-cart .inner-box .dropdown-box .btn-cart {
    margin-top:30px;
    overflow:hidden;
}

.box-cart .inner-box .dropdown-box .btn-cart a.view-cart {
    padding:10px 33px;
    color: var(--theme-color-lt);
    border:2px solid  var(--theme-color-lt);
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    float:left;
    position:relative;
    overflow:hidden;
    z-index:5;
}

.box-cart .inner-box .dropdown-box .btn-cart a.view-cart:hover {
    color:#fff;
}

.box-cart .inner-box .dropdown-box .btn-cart a.view-cart:before,
.box-cart .inner-box .dropdown-box .btn-cart a.check-out:before {
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:-1;
    background: var(--theme-color-lt);
    -webkit-transform:scaleX(0);
    transform:scaleX(0);
    -webkit-transform-origin:0 50%;
    transform-origin:0 50%;
    -webkit-transition-property:transform;
    transition-property:transform;
    -webkit-transition-duration:0.4s;
    transition-duration:0.4s;
    -webkit-transition-timing-function:ease-out;
    transition-timing-function:ease-out;
}

.box-cart .inner-box .dropdown-box .btn-cart a.view-cart:hover:before,
.box-cart .inner-box .dropdown-box .btn-cart a.check-out:hover:before {
    -webkit-transform:scaleX(1);
    transform:scaleX(1);
    -webkit-transition-timing-function:cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function:cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.box-cart .inner-box .dropdown-box .btn-cart a.check-out {
    padding:12px 35px;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    background-color:#484848;
    float:right;
    position:relative;
    overflow:hidden;
    z-index:5;
}

.box-cart .inner-box .dropdown-box .btn-cart a.check-out:hover {
    border-color:transparent;
}

/* Header Bottom */
.header-bottom {
    background-color:#fff;
    padding: 20px 0;
}

.header-bottom > .container > .row {
    position:relative;
}

/* Menu Mega
-------------------------------------------------------------- */
#mega-menu {
    position:relative;
    top:-10px;
    height:55px;
    width:250px;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

#mega-menu > .btn-mega {
    font-weight:600;
    font-size:16px;
    color:#fefefe;
    height:65px;
    padding-left:87px;
    line-height:65px;
    background-color:#484848;
    border-top-left-radius:9px;
    border-top-right-radius:9px;
    position:relative;
    z-index:98;
    cursor:pointer;
}

#mega-menu:hover ul.menu {
    top:-1px;
    visibility:visible;
    opacity:1;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

#mega-menu > .btn-mega > span {
    position:absolute;
    height:2px;
    width:18px;
    left:46px;
    top:31px;
    background-color:#fff;
    display:inline-block;
}

#mega-menu > .btn-mega > span:before {
    content:'';
    position:absolute;
    height:2px;
    width:24px;
    top:-7px;
    background-color:#fff;
}

#mega-menu > .btn-mega > span:after {
    content:'';
    position:absolute;
    height:2px;
    width:24px;
    top:7px;
    background-color:#fff;
}

#mega-menu > ul.menu {
    position:relative;
    z-index:90;
    background-color:#fff;
    border:1px solid #484848;
    border-bottom-left-radius:8px;
    border-bottom-right-radius:8px;
    top:-40px;
    opacity:0;
    visibility:hidden;
    height:516px;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

#mega-menu > ul.menu > li > a {
    height:50px;
    line-height:51px;
    padding:0 24px;
    border-bottom:1px solid #e5e5e5;
    display:block;
    position:relative;
}

#mega-menu > ul.menu > li:last-child > a {
    border-bottom:none;
}

#mega-menu > ul.menu > li:hover > a .menu-title {
    color: var(--theme-color-lt);
}

#mega-menu > ul.menu > li > a.dropdown:after {
    content:'\f105';
    position:absolute;
    font-family:'fontawesome';
    right:29px;
    font-size:14px;
    color:#484848;
}

#mega-menu > ul.menu > li > a .menu-img {
    margin-right:18px;
    min-width:30px;
    display:inline-block;
    text-align:center;
}

#mega-menu > ul.menu > li > a .menu-title {
    color:#484848;
}

#mega-menu.style1 > ul.menu {
    transform:translateY(0%);
    opacity:1;
    top:-1px;
    visibility:visible;
    border-width:1px;
    border-bottom-left-radius:10px;
    border-bottom-right-radius:10px;
}

#mega-menu > ul.menu > li:hover > .drop-menu {
    opacity:1;
    visibility:visible;
    transform:translateX(0%);
}

#mega-menu > ul.menu > li .drop-menu {
    transform:translateX(-10%);
    opacity:0;
    visibility:hidden;
    padding:27px 7px 27px 0;
    position:absolute;
    top:-1px;
    left:270px;
    width:875px;
    border-radius:10px;
    z-index:-1;
    height:516px;
    background-color:#fff;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

#mega-menu > ul.menu > li .drop-menu > .one-third {
    width:33.3%;
    float:left;
    padding-left:42px;
    padding-right:15px;
}

#mega-menu > ul.menu > li .drop-menu > .one-third .cat-title {
    color: var(--theme-color-lt);
    font-size:16px;
    font-weight:bold;
    margin-bottom:20px;
}

#mega-menu > ul.menu > li .drop-menu > .one-third ul li {
    margin-bottom:5px;
}

#mega-menu > ul.menu > li .drop-menu > .one-third ul li a:not(:hover) {
    color:#484848;
}

#mega-menu > ul.menu > li .drop-menu > .one-third .show a {
    color: var(--theme-color-lt);
    font-weight:bold;
    position:relative;
}

#mega-menu > ul.menu > li .drop-menu > .one-third .show a:before {
    content:'';
    position:absolute;
    width:0;
    height:2px;
    bottom:-4px;
    right:0;
    background: var(--theme-color-lt);
    -webkit-transition:width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
    -o-transition:width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
    transition:width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
}

#mega-menu > ul.menu > li .drop-menu > .one-third .show a:hover:before {
    width:100%;
    left:0;
}

#mega-menu > ul.menu > li .drop-menu > .one-third ul.banner li {
    border:2px solid #e5e5e5;
    border-radius:5px;
    background-color:#e5e5e5;
    height:110px;
    padding:30px 10px 30px 18px;
    margin-bottom:20px;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

#mega-menu > ul.menu > li .drop-menu > .one-third ul.banner li:hover {
    background-color:#fff;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

#mega-menu > ul.menu > li .drop-menu > .one-third ul.banner li .banner-text {
    float:left;
}

#mega-menu > ul.menu > li .drop-menu > .one-third ul.banner li .banner-text .banner-title {
    font-weight:bold;
    font-size:18px;
    color: var(--theme-color-lt);
}

#mega-menu > ul.menu > li .drop-menu > .one-third ul.banner li .banner-text .more-link a img {
    margin-left:10px;
}

#mega-menu > ul.menu > li .drop-menu > .one-third ul.banner li .banner-img {
    float:right;
}

/* Main Navigation
-------------------------------------------------------------- */
#mainnav {
    float:left;
    margin: 5px 0 0 0;
}
#mainnav ol, #mainnav ul{
    padding: 0;
}

#mainnav > ul.menu {
    word-spacing:-4px;
}

#mainnav > ul.menu > li {
    display:inline-block;
    line-height:57px;
    height:55px;
}

#mainnav ul.menu > li > a {
    display:inline-block;
    color: rgba(66, 66, 66, 1);
    font-size:18px;
    font-weight:500;
    padding:0 21px;
    border-right:1px solid #000;
    line-height:1;
    position:relative;
    z-index:8;
}

#mainnav ul.menu > li > a:after {
    content:'';
    position:absolute;
    bottom:-20px;
    left:-1px;
    opacity:0;
    background-color:#fff;
    height:48px;
    width:calc(100% + 2px);
    z-index:-3;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
}

#mainnav ul.menu > li:hover > a {
    color: var(--theme-color-lt);
}

#mainnav ul.menu > li:hover > a:after {
    opacity:1;
}

#mainnav ul.menu > li:last-child > a {
    border-right:none;
}

#mainnav.style1 {
    padding-left:4px;
    line-height:104px;
}

#mainnav.style1 ul.menu > li > a {
    color:#484848;
    border:none;
    padding:0;
    font-weight:500;
    margin-right:33px;
}

#mainnav.style2 {
    padding-left:55px;
}

#mainnav.style2 ul.menu > li {
    margin-top:24px;
}

#mainnav.style2 ul.menu > li > a {
    margin-right:43.5px;
    text-transform:uppercase;
    font-weight:bold;
    color:#656565;
    padding:0;
    border-right:0px;
}

#mainnav.style2 ul.menu > li:last-child > a {
    margin-right:0px;
}

#mainnav.style2 ul.menu > li.has-mega-menu:hover > .submenu {
    top:80px;
}

#mainnav.style3 ul.menu > li > a {
    color:#484848;
    border-color:#c9c9c9;
}

#mainnav.style4 {
    padding-left:72px;
}

#mainnav ul.menu > li:hover > .submenu {
    opacity:1;
    visibility:visible;
    top:55px;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}

#mainnav.style1 ul.menu > li.column-1:hover > .submenu {
    top:55px;
}

#mainnav.style1 ul.menu > li:hover > .submenu {
    top:80px;
}

/* Today Deal */
.today-deal {
    float:right;
}

.today-deal a {
    line-height:55px;
    color:#ffffff;
    font-size:14px;
    font-weight:600;
    position:relative;
}

.today-deal a:before {
    content:'';
    position:absolute;
    width:0;
    height:2px;
    bottom:-4px;
    right:0;
    background:#fff;
    -webkit-transition:width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
    -o-transition:width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
    transition:width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
}

.today-deal a:hover:before {
    width:100%;
    left:0;
}

.today-deal.style1 > a {
    color: var(--theme-color-lt);
}

/* Sub Menu */
ul.menu li.column-1 {
    position:relative;
}

ul.menu li.column-1 .submenu {
    width:263px;
    left:-1px;
    padding:18px 0;
}

ul.menu li.column-1 .submenu > li {
    line-height:30px;
    list-style: none;
}
ul.flat-unstyled > li:hover > ul li {
    list-style: none!important;
}

ul.menu li.column-1 .submenu > li:last-child {
    border-bottom:none;
}

ul.menu li.column-1 .submenu > li > a {
    display:block;
    font-size:15px;
    padding-left:22px;
    position:relative;
    font-weight:500;
    color:#484848;
}

ul.menu li.column-1 .submenu > li > a:hover {
    color: var(--theme-color-lt);
}

ul.menu li.column-1 .submenu > li > a i {
    padding-right:15px;
}

.submenu .row:not(:last-child) {
    margin-bottom:30px;
}

.submenu .col-md-4 {
    padding-left:50px;
}

.submenu .cat-title {
    color: var(--theme-color-lt);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

.submenu ul > li {
    margin-bottom:5px;
    line-height:24px;
    list-style: none;
}

.submenu .show {
    line-height:24px
}

.submenu .show a {
    color: var(--theme-color-lt);
    font-weight:700;
    position:relative;
}

.submenu .show a:before {
    content:'';
    position:absolute;
    width:0;
    height:2px;
    bottom:-4px;
    right:0;
    background: var(--theme-color-lt);
    -webkit-transition:width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
    -o-transition:width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
    transition:width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
}

.submenu .show a:hover:before {
    width:100%;
    left:0;
}

/* Main Navigation Mobile
-------------------------------------------------------------- */
#mainnav-mobi {
    display:block;
    margin:0 auto;
    width:100%;
    position:absolute;
    left:0;
    z-index:1000;
    background-color:#222222;
}

#mainnav-mobi > ul {
    display:block;
    list-style:none;
    margin:0;
    padding:0;
}

#mainnav-mobi ul li {
    margin:0;
    position:relative;
    text-align:left;
    border-top:1px solid #333333;
    cursor:pointer;
    display:block;
}

#mainnav-mobi ul > li > a {
    text-decoration:none;
    height:50px;
    line-height:50px;
    padding:0 20px;
    color:#fff;
    border:none;
}

#mainnav-mobi ul.submenu {
    top:100%;
    left:0;
    z-index:2000;
    position:relative;
    background-color:#222222;
}

#mainnav-mobi > ul > li > ul > li {
    position:relative;
    border-top:1px solid #333333;
}

#mainnav-mobi ul.submenu > li > a {
    display:block;
    text-decoration:none;
    padding:0 50px;
    border-top-color:rgba(255,255,255,.1);
    -webkit-transition:all 0.2s ease-out;
    -moz-transition:all 0.2s ease-out;
    -o-transition:all 0.2s ease-out;
    transition:all 0.2s ease-out;
}

#mainnav-mobi > ul > li > ul > li:first-child a {
    border-top:none;
}

#mainnav-mobi ul.submenu > li > a:hover,
#mainnav-mobi > ul > li > ul > li.active > a {
    color:#fff;
}

#mainnav-mobi ul.menu li.has-mega-menu .submenu {
    background:#222222;
    right:0px;
    width:100%;
    position:relative;
}

#mainnav-mobi ul.menu li.has-mega-menu h3.cat-title {
    color:#fff;
    padding-left:50px;
    cursor:pointer;
}

#mainnav-mobi ul.menu li.has-mega-menu .submenu .row:not(:last-child) {
    margin:0;
}

/* Button Menu */
.btn-menu,
.btn-menu-mega {
    display:none;
    position:relative;
    background: var(--theme-color);
    cursor:pointer;
    float:right;
    top:17px;
    width:25px;
    height:25px;
    border:2px solid #fff;
    padding:15px 18px 17px;
    border-radius:4px;
    z-index:8;
    -webkit-transition:all ease .238s;
    -moz-transition:all ease .238s;
    transition:all ease .238s;
}

.btn-menu-mega {
    background:#484848;
    border-color:#484848;
}

.btn-menu:before,
.btn-menu:after,
.btn-menu span,
.btn-menu-mega:before,
.btn-menu-mega:after,
.btn-menu-mega span {
    background-color:#fff;
    -webkit-transition:all ease .238s;
    -moz-transition:all ease .238s;
    transition:all ease .238s;
}

.btn-menu:before,
.btn-menu:after,
.btn-menu-mega:before,
.btn-menu-mega:after {
    content:'';
    position:absolute;
    height:2px;
    width:25px;
    left:5px;
    top:50%;
    -webkit-transform-origin:50% 50%;
    -ms-transform-origin:50% 50%;
    transform-origin:50% 50%;
}

.btn-menu span,
.btn-menu-mega span {
    position:absolute;
    width:25px;
    height:2px;
    left:5px;
    top:50%;
    overflow:hidden;
    text-indent:200%;
}

.btn-menu-mega span {
    width:20px;
}

.btn-menu:before,
.btn-menu-mega:before {
    -webkit-transform:translate3d(0, -7px, 0);
    transform:translate3d(0, -7px, 0);
}

.btn-menu:after,
.btn-menu-mega:after {
    width:25px;
    -webkit-transform:translate3d(0, 7px, 0);
    transform:translate3d(0, 7px, 0);
}

.btn-menu.active:after,
.btn-menu-mega.active:after {
    width:25px;
}

.btn-menu.active span,
.btn-menu-mega.active span {
    opacity:0;
}

.btn-menu.active:before,
.btn-menu-mega.active:before {
    -webkit-transform:rotate3d(0, 0, 1, 45deg);
    transform:rotate3d(0, 0, 1, 45deg);
}

.btn-menu.active:after,
.btn-menu-mega.active:after {
    -webkit-transform:rotate3d(0, 0, 1, -45deg);
    transform:rotate3d(0, 0, 1, -45deg);
}

.btn-submenu,
.btn-submenu-child {
    position:absolute;
    right:0px;
    top:-1px;
    font:20px/51px 'FontAwesome';
    text-align:center;
    cursor:pointer;
    width:51px;
    height:50px;
    background:#333;
}

.btn-submenu-child {
    right:57px;
    top:0px;
    height:45px;
    line-height:46px;
}

.btn-submenu:before {
    content:"\f107";
    color:#ffffff;
}

.btn-submenu-child:before {
    content:"\f107";
    color:#fff;
}

.btn-submenu.active:before,
.btn-submenu-child.active:before {
    content:"\f106"
}

/* Mega Mobile
-------------------------------------------------------------- */
#mega-mobile {
    display:block;
    margin:0 auto;
    width:100%;
    position:absolute;
    left:0;
    z-index:1000;
    background-color:#222222;
}

#mega-mobile > ul.menu > li > a {
    color:#fff;
    display:block;
    cursor:pointer;
    padding: 15px 0 15px 15px;
    border-bottom:1px solid #333;
    position:relative;
}

#mega-mobile > ul.menu > li > a .menu-img {
    margin-right:18px;
    min-width:30px;
    display:inline-block;
    text-align:center;
}

#mega-mobile > ul.menu > li > a.dropdown .btn-dropdown,
.btn-dropdown-child {
    position:absolute;
    top:0;
    right:0;
    width:54px;
    height:54px;
    background:#262626;
    text-align:center;
    cursor:pointer;
    line-height: 54px;
    font-size: 20px;
    font-family: 'FontAwesome', serif;
}
#mega-mobile > ul.menu > li > a.dropdown .btn-dropdown:after,
.btn-dropdown-child:after {
    content:'\f107';
}

#mega-mobile > ul.menu > li > a.dropdown .btn-dropdown.active:after,
.btn-dropdown-child.active:after {
    content:'\f106';
}

#mega-mobile > ul.menu > li > .drop-menu {
    padding:0 54px 0 50px;
}

#mega-mobile > ul.menu > li > .drop-menu .cat-title {
    position:relative;
    color:#f5f5f5;
    padding:10px 0;
    border-bottom:1px solid #333;
}

#mega-mobile > ul.menu > li > .drop-menu ul {
    padding-left:20px;
}

#mega-mobile > ul.menu > li > .drop-menu ul li {
    border-bottom:1px solid #333;
}

#mega-mobile > ul.menu > li > .drop-menu ul li a {
    color:#f5f5f5;
    font-size:12px;
    padding:8px 0;
    display:block;
}

#mega-mobile > ul.menu > li > .drop-menu .show,
#mega-mobile > ul.menu > li > .drop-menu .one-third:nth-child(3) {
    display:none;
}


/* This css for Responsive*/
@media only screen and (max-width:1900px) {

    footer.style1 {
        margin:0px;
    }


    .header-bottom.style1 .grid-right ul.flat-infomation {
        margin-right:5px;
    }

    .header-bottom.style1 .grid-right .top-search.style1 {
        width:53%;
    }

    .header-bottom.style1 .grid-left #mega-menu {
        width:100%;
    }

    .banner-box.style1 {
        width:50%;
    }

    .banner-box.style1.v1 .inner-box {
        display:none;
    }

    #mainnav.style2 {
        float:right;padding-left:0px;
    }

    #mainnav.style2 ul.menu > li.has-mega-menu:hover > .submenu {
        top:90px;
    }
}

@media only screen and (min-width:1200px) and (max-width:1366px) {

    #mega-menu > ul.menu > li .drop-menu {
        left:258px;width:879px;
    }
}

@media only screen and (max-width:1199px) {
    #mega-menu > ul.menu > li .drop-menu {
        width:704px;left:255px;
    }

    #mega-menu > ul.menu > li .drop-menu > .one-third {
        padding-left:0px;padding-right:3px;
    }

    .mainnav {
        padding-left:0px;
    }

    .mainnav ul.menu > li > a {
        padding:0 20px;
    }

    #mega-menu {
        width:250px;
    }
    .mainnav.style1 ul.menu > li > a {
        margin-right:22px;
    }


}

@media only screen and (min-width:992px) and (max-width:1199px) {

    #mainnav ul.menu > li > a {
        padding:0 18px;
    }
    #mainnav.style1 ul.menu > li > a {
        padding:0 12px 0 12.5px;margin-right:0px;
    }

    #mainnav.style1 ul.menu > li.has-mega-menu .submenu {
        width:97%;
    }

    #mainnav.style2 ul.menu > li.has-mega-menu .submenu {
        width:97%;
    }
    #mega-menu > ul.menu > li .drop-menu {
        padding-left: 15px;
    }

}



@media only screen and (min-width:992px) {
    ul.submenu {
        word-spacing:2px;
    }
    .submenu {
        position:absolute;top:100px;right:15px;width:1140px;background-color:#fff;opacity:0;visibility:hidden;z-index:99;padding:30px;word-spacing:2px;border-bottom-left-radius:10px;border-bottom-right-radius:10px;box-shadow:0px 2px 3px 0px rgba(0, 0, 0, 0.3);-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    ul.menu > li.has-mega-menu .submenu {
        width: 130%;
    }
}

@media only screen and (max-width:991px) {
    .btn-menu,
    .btn-menu-mega {
        display:block;
    }

    .btn-menu-mega {
        float:left;
    }

    .mainnav > ul.menu > li {
        height:auto;
    }

    .mainnav ul.menu > li > a:after {
        width:0px;
    }

    .mainnav ul.menu > li:hover > .submenu {
        top:100%;
    }

    #mainnav-mobi ul > li > a >.submenu {
        position:relative;top:0px;right:0px;width:100%;background-color:#222222;opacity:1;visibility:visible;z-index:99;padding:30px;word-spacing:4px;border-bottom-left-radius:10px;border-bottom-right-radius:10px;box-shadow:0px 2px 3px 0px rgba(0, 0, 0, 0.3);-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;
    }

    #mainnav-mobi ul.menu li.has-mega-menu .submenu .row h3 {
        word-spacing:2px;cursor:pointer;font-weight:400;font-size:15px;margin-bottom:0px;padding:15px 0 15px 20px;
    }

    #mainnav-mobi ul.menu li.has-mega-menu .submenu .row .btn-submenu {
        top:-15px;
    }

    #mainnav-mobi ul.menu li.has-mega-menu .submenu .row ul {
        padding-left:30px;word-spacing:2px;padding-right:40px;
    }

    #mainnav-mobi ul.menu li.has-mega-menu .submenu .row ul li {
        border-top:none;border-bottom:1px solid #333;
    }

    #mainnav-mobi ul.menu li.has-mega-menu .submenu .row ul li > a {
        padding-left:5px;
    }

    #mainnav-mobi ul.menu li.has-mega-menu .submenu .row:nth-child(2),
    #mainnav-mobi ul.menu li.has-mega-menu .submenu .row .show,
    .box-right .img-line img:first-child,
    .box-left .img-line img:first-child,
    .flat-newsletter .form-newsletter .right {
        display:none;
    }

    #mainnav-mobi ul > li > a >.submenu li a {
        color:#484848;
    }

    ul.menu li.column-1 .submenu {
        width:100%;background:#222222;border-radius:0px;position:relative;top:-3px;opacity:1;word-spacing:2px;visibility:visible;padding:0;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {

}

@media only screen and (max-width:767px) {
    .header-middle #logo {
        text-align:center;line-height:60px;margin:0px;
    }
}

@media only screen and (max-width:575px) {

    .container {
        max-width:100%;
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {

}

@media only screen and (min-width:480px) {

}

@media only screen and (max-width:480px) {
}

@media (max-width:320px) {

}

.text-justify {
    text-align: justify;
}
