/* ========== Nav bar ========== */

.navbar {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 100px;
    z-index: 999;
}

.open-modal-btn{
    cursor: pointer;
}

.navbar .nav_top {
    position: relative;
    width: 100%;
    height: 70px;
    background: var(--grey-background-1);
    border: 1px solid var(--light-border);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 0 35px;
    padding-right: 0;
}
.navbar .nav_top .top_inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.navbar .nav_top .top_inner .offer_sec {
    position: relative;
    display: flex;
    align-items: center;
}
.navbar .nav_top .top_inner .offer_sec img {
    position: relative;
    width: 25px;
    height: auto;
    margin-right: 15px;
}
.navbar .nav_top .top_inner .offer_sec p {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
}
.navbar .nav_top .top_inner .offer_sec p a {
    position: relative;
    font-weight: 700;
    color: var(--theme-color);
}

.navbar .nav_top .top_inner .top_item_sec {
    position: relative;
    height: 100%;
    margin-left: auto;
    display: flex;
    align-items: center;
}
.navbar .nav_top .top_inner .top_item_sec .location_sec {
    position: relative;
    display: flex;
    align-items: center;
}
.navbar .nav_top .top_inner .top_item_sec .location_sec img {
    position: relative;
    width: 25px;
    height: auto;
}
.navbar .nav_top .top_inner .top_item_sec .location_sec p {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 10px;
}
.navbar .nav_top .top_inner .top_item_sec .location_sec a {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--theme-color);
    cursor: pointer;
}

.navbar .nav_top .top_inner .top_item_sec .cart_sec {
    position: relative;
    margin-left: 60px;
    height: 70px;
    display: flex;
    background: rgba(2, 134, 67, 1);
    border-radius: 0 0 12px 12px;
    transition: all 0.5s;
}
.navbar.scrolled .nav_top .top_inner .top_item_sec .cart_sec {
    position: fixed;
    top: 0;
    right: 100px;
    box-shadow: 0 4px 8px rgba(94, 94, 94, 0.295);
    transition: all 0.5s;
}
.navbar .nav_top .top_inner .top_item_sec .cart_sec .cart_btn {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.425);
}
.navbar .nav_top .top_inner .top_item_sec .cart_sec .cart_btn img {
    position: relative;
    width: 40px;
    height: auto;
    cursor: pointer;
}
.navbar .nav_top .top_inner .top_item_sec .cart_sec .cart_item_count,
.navbar .nav_top .top_inner .top_item_sec .cart_sec .cart_price {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.425);
}
.navbar .nav_top .top_inner .top_item_sec .cart_sec .cart_item_count p,
.navbar .nav_top .top_inner .top_item_sec .cart_sec .cart_price p {
    font-size: 16px;
    font-weight: 600;
    color: var(--light-color);
     cursor: pointer;
}
.navbar .nav_top .top_inner .top_item_sec .cart_sec .forward_btn {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.425);
}
.navbar .nav_top .top_inner .top_item_sec .cart_sec .forward_btn img {
    position: relative;
    width: 38px;
    height: auto;
    cursor: pointer;
}


.navbar .nav_bottom {
    position: relative;
    width: 100%;
    padding: 30px 0;
}
.navbar .nav_bottom .bottom_inner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}
.navbar .nav_bottom .bottom_inner .logo_sec {
    position: relative;
    display: flex;
    flex-direction: column;
}
.navbar .nav_bottom .bottom_inner .logo {
    position: relative;
    display: flex;
}
.navbar .nav_bottom .bottom_inner .logo img {
    position: relative;
    height: 50px;
    width: auto;
}

.navbar .nav_bottom .bottom_inner .logo_sec .res_location_sec {
    position: relative;
    margin-top: 6px;
    display: none;
    align-items: center;
}

.navbar .nav_bottom .bottom_inner .logo_sec .res_location_sec img {
    position: relative;
    width: 20px;
    height: auto;
}

.navbar .nav_bottom .bottom_inner .logo_sec .res_location_sec p {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    max-width: 350px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 10px;
}

.navbar .nav_bottom .bottom_inner .res_nav_toggle_btn {
    position: relative;
    margin-left: 25px;
    display: none;
}

.navbar .nav_bottom .bottom_inner .res_nav_toggle_btn a {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    color: var(--dark-color-1);
    text-decoration: none;
}
.navbar .nav_bottom .bottom_inner .res_cart_btn {
    position: relative;
    margin-left: auto;
    display: none;
}
.navbar .nav_bottom .bottom_inner .res_cart_btn a {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    color: var(--dark-color-1);
    text-decoration: none;
}


.navbar .nav_bottom .bottom_inner .nav_items {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item {
    position: relative;
    list-style: none;
    margin: 0 2px;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .item_link {
    position: relative;
    text-decoration: none;
    cursor: pointer;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    border-radius: 120px;
    transition: all 0.5s;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .item_link:hover {
    color: var(--theme-color);
    transition: all 0.5s;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .item_link.active {
    background: var(--theme-color);
    color: var(--light-color);
    transition: all 0.5s;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown {
    position: absolute;
    top: 40px;
    left: 0;
    width: 225px;
    z-index: 15;
    background: #FFF;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 30%;
    width: 20px;
    height: 20px;
    background: #FFF;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 0 0 15px 4px rgba(94, 94, 94, 0.295);
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item:hover .menu_dropdown {
    box-shadow: 0 0 15px 4px rgba(94, 94, 94, 0.295);
    max-height: 400px;
    overflow: unset;
    transition: all 0.6s ease-in-out;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #FFF;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu {
    position: relative;
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--light-border);
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu:last-child {
    border-bottom: none;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu .menu_link {
    position: relative;
    width: 100%;
    text-decoration: none;
    padding: 20px 25px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--dark-color-1);
    transition: all 0.5s;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu:hover .menu_link {
    background: var(--theme-color);
    color: var(--light-color);
    transition: all 0.5s;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu .sub_menu_dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    width: 225px;
    background: #FFF;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu:hover .sub_menu_dropdown {
    max-height: 600px;
    overflow-y: auto;
    box-shadow: 0 0 15px 4px rgba(94, 94, 94, 0.295);
    transition: all 0.6s ease-in-out;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu .sub_menu_dropdown .sub_menu_dropdown_inner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu .sub_menu_dropdown .sub_menu_dropdown_inner .sub_item {
    position: relative;
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--light-border);
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu .sub_menu_dropdown .sub_menu_dropdown_inner .sub_item:last-child {
    border-bottom: none;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu .sub_menu_dropdown .sub_menu_dropdown_inner .sub_item .sub_item_link {
    position: relative;
    width: 100%;
    text-decoration: none;
    padding: 20px 25px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--dark-color-1);
    transition: all 0.5s;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu .sub_menu_dropdown .sub_menu_dropdown_inner .sub_item .sub_item_link:hover {
    background: var(--theme-color);
    color: var(--light-color);
    transition: all 0.5s;
}



.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu .sub_menu_dropdown .sub_menu_dropdown_inner .sub_item .sub_menu_dropdown2 {
    position: absolute;
    top: 0;
    left: 100%;
    width: 225px;
    background: #FFF;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 15px 4px rgba(94, 94, 94, 0.295);
    transition: all 0.6s ease-in-out;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu .sub_menu_dropdown .sub_menu_dropdown_inner .sub_item:hover .sub_menu_dropdown2 {

    opacity: 1;
    visibility: visible;
    transition: all 0.6s ease-in-out;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu .sub_menu_dropdown .sub_menu_dropdown_inner .sub_item .sub_menu_dropdown2 .sub_menu_dropdown2_inner {
    position: relative;
    width: 100%;
    max-height: 600px;
    /* overflow-y: auto; */
    display: flex;
    flex-direction: column;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu .sub_menu_dropdown .sub_menu_dropdown_inner .sub_item .sub_menu_dropdown2 .sub_menu_dropdown2_inner .sub_item2 {
    position: relative;
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--light-border);
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu .sub_menu_dropdown .sub_menu_dropdown_inner .sub_item .sub_menu_dropdown2 .sub_menu_dropdown2_inner .sub_item2:last-child {
    border-bottom: none;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu .sub_menu_dropdown .sub_menu_dropdown_inner .sub_item .sub_menu_dropdown2 .sub_menu_dropdown2_inner .sub_item2 .sub_item_link2 {
    position: relative;
    width: 100%;
    text-decoration: none;
    padding: 20px 25px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--dark-color-1);
    transition: all 0.5s;
}
.navbar .nav_bottom .bottom_inner .nav_items .nav_item .menu_dropdown .menu_dropdown_inner .item_menu .sub_menu_dropdown .sub_menu_dropdown_inner .sub_item .sub_menu_dropdown2 .sub_menu_dropdown2_inner .sub_item2 .sub_item_link2:hover {
    background: var(--theme-color);
    color: var(--light-color);
    transition: all 0.5s;
}

.navbar .nav_bottom .bottom_inner .auth_btn {
    position: relative;
    margin-left: 25px;
}
.navbar .nav_bottom .bottom_inner .auth_btn a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 35px;
    background: var(--dark-color);
    border-radius: 120px;
    cursor: pointer;
    text-decoration: none;
}
.navbar .nav_bottom .bottom_inner .auth_btn a img {
    position: relative;
    width: 30px;
    height: auto;
}
.navbar .nav_bottom .bottom_inner .auth_btn a span {
    position: relative;
    margin-left: 8px;
    font-size: 18px;
    font-weight: 500;
    color: var(--light-color);
}


/* ================ responsive start ============== */

@media (max-width: 1499px) {
    .navbar {
        padding: 0 50px;
    }
    .navbar.scrolled .nav_top .top_inner .top_item_sec .cart_sec {
        right: 50px;
    }
    .navbar .nav_top .top_inner .top_item_sec .location_sec {
        display: none;
    }
    .navbar .nav_bottom .bottom_inner .logo_sec .res_location_sec {
        display: flex;
    }
    /* .navbar .nav_bottom .bottom_inner .auth_btn {
        margin-left: auto;
    } */
}
@media (max-width: 1399px) {
    .navbar .nav_bottom .bottom_inner .logo_sec {
        width: max-content;
    }
    .navbar .nav_bottom .bottom_inner .logo img {
        height: 30px;
    }
    .navbar .nav_bottom .bottom_inner .nav_items .nav_item .item_link {
        padding: 6px 15px;
        font-size: 15px;
    }
    .navbar .nav_bottom .bottom_inner .auth_btn a {
        padding: 8px 10px;
    }
    .navbar .nav_bottom .bottom_inner .auth_btn a span {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .navbar {
        border-bottom: 1px solid var(--light-border);
        margin-bottom: 25px;
    }
    .navbar .nav_top {
        display: none;
    }
    .navbar .nav_bottom {
        padding: 15px 0;
    }
    .navbar .nav_bottom .bottom_inner .logo img {
        height: 30px;
    }
    .navbar .nav_bottom .bottom_inner .nav_items {
        display: none;
    }
    .navbar .nav_bottom .bottom_inner .res_nav_toggle_btn {
        display: flex;
    }
    .navbar .nav_bottom .bottom_inner .res_cart_btn {
        display: flex;
    }
    .navbar .nav_bottom .bottom_inner .auth_btn {
        display: none;
    }
}

@media (max-width: 575px) {
    .navbar {
        position: fixed;
        background-color: var(--light-color);
        padding: 0 35px;
        z-index: 9999;
        top: 0;
        left: 0;
    }
    .navbar .nav_bottom {
        padding: 10px 0;
    }
    /* .navbar .nav_bottom .bottom_inner .logo img {
        height: 25px;
    } */
    .navbar .nav_bottom .bottom_inner .logo_sec .res_location_sec {
        margin-top: 10px;
    }
    .navbar .nav_bottom .bottom_inner .logo_sec .res_location_sec img {
        width: 15px;
    }
    .navbar .nav_bottom .bottom_inner .logo_sec .res_location_sec p {
        margin-left: 4px;
        font-size: 12px;
        max-width: 300px;
    }
    .navbar .nav_bottom .bottom_inner .res_cart_btn a {
       font-size: 17px;
    }
    .navbar .nav_bottom .bottom_inner .res_nav_toggle_btn a {
       font-size: 17px;
    }
}

@media (max-width: 450px) {
    .navbar {
        padding: 0 25px;
    }
    .navbar .nav_bottom .bottom_inner .logo_sec .res_location_sec p {
        max-width: 175px;
    }
}

/* ================ responsive end ============== */





/* ========== Footer ========== */
.show {
    position: relative;
    display: none;
    width: 100%;
    background: #e1ecf1;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
}
.show p {
    position: relative;
    color: var( --dark-color);
    font-size: 15px;
    font-weight: 500;
}

.show a {
    position: relative;
    display: flex;
    font-size: 17px;
    color: var( --dark-color);
    font-weight: 500;
    cursor: pointer;
}
.footer {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}
.footer .footer_top {
    position: relative;
    width: 100%;
    padding: 80px 100px;
    padding-bottom: 50px;
    background: var(--grey-background-3);
}

.footer .footer_top .top_inner {
    position: relative;
    width: 100%;
    display: flex;
}
.footer .footer_top .top_inner .left_part {
    position: relative;
    width: 450px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
}
.footer .footer_top .top_inner .left_part .footer_logo {
    position: relative;
    display: flex;
}
.footer .footer_top .top_inner .left_part .footer_logo img {
    position: relative;
    height: 65px;
    width: max-content;
}
.footer .footer_top .top_inner .left_part .btn_sec {
    position: relative;
    margin-top: 25px;
    display: flex;
}
.footer .footer_top .top_inner .left_part .btn_sec a {
    position: relative;
    cursor: pointer;
    display: flex;
}
.footer .footer_top .top_inner .left_part .btn_sec a:last-child {
    position: relative;
    margin-left: 5px;
}
.footer .footer_top .top_inner .left_part .btn_sec a img {
    position: relative;
    height: 50px;
}
.footer .footer_top .top_inner .left_part p {
    position: relative;
    margin-top: 20px;
    font-size: 15px;
    color: var(--dark-color);
}
.footer .footer_top .top_inner .left_part .address_sec {
    position: relative;
    width: 100%;
    display: flex;
    margin-top: 10px;
}
.footer .footer_top .top_inner .left_part .address_sec a {
    position: relative;
    font-size: 15px;
    color: var(--dark-color-1);
    text-decoration: none;
    font-weight: 500;
}
.footer .footer_top .top_inner .left_part .address_sec a span {
    text-decoration: none;
    font-weight: 600;
}

.footer .footer_top .top_inner .right_part {
    position: relative;
    width: calc(100% - 450px);
    padding-left: 50px;
    display: flex;
}
.footer .footer_top .top_inner .right_part .subscribe_sec {
    position: relative;
    width: 50%;
    padding-right: 25px;
}
.footer .footer_top .top_inner .right_part .subscribe_sec h4 {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color-1);
}
.footer .footer_top .top_inner .right_part .subscribe_sec .input_sec {
    position: relative;
    margin-top: 25px;
    width: 100%;
    height: 60px;
}
.footer .footer_top .top_inner .right_part .subscribe_sec .input_sec input {
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 10px 30px;
    padding-right: 210px;
    border-radius: 120px;
    background: var(--grey-background-5);
    font-size: 15px;
    color: var(--dark-color-1);
}
.footer .footer_top .top_inner .right_part .subscribe_sec .input_sec button {
    position: absolute;
    top: 0;
    right: 0;
    width: 190px;
    height: 100%;
    border-radius: 120px;
    border: none;
    background: var(--theme-color);
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: var(--light-color);
}
.footer .footer_top .top_inner .right_part .subscribe_sec p {
    position: relative;
    padding-left: 25px;
    margin-top: 15px;
    font-size: 13px;
    color: var(--dark-color-1);
}
.footer .footer_top .top_inner .right_part .subscribe_sec p a {
    color: var(--dark-color-1);
}
.footer .footer_top .top_inner .right_part .subscribe_sec .social_media {
    position: relative;
    padding-left: 20px;
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.footer .footer_top .top_inner .right_part .subscribe_sec .social_media a {
    position: relative;
    display: flex;
    cursor: pointer;
    margin-right: 15px;
}
.footer .footer_top .top_inner .right_part .subscribe_sec .social_media a img {
    position: relative;
    width: 45px;
}
.footer .footer_top .top_inner .right_part .subscribe_sec .btn_sec a img {
    position: relative;
    height: 50px;
}
.footer .footer_top .top_inner .right_part .links_sec {
    position: relative;
    width: 50%;
    display: flex;
}
.footer .footer_top .top_inner .right_part .links_sec .link_box {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 0 25px;
}
.footer .footer_top .top_inner .right_part .links_sec .link_box h5 {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color-1);
}
.footer .footer_top .top_inner .right_part .links_sec .link_box ul {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5px;
}
.footer .footer_top .top_inner .right_part .links_sec .link_box ul a {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 15px;
    text-decoration: none;
    font-size: 15px;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.5s;
}
.footer .footer_top .top_inner .right_part .links_sec .link_box ul a:hover {
    color: var(--theme-color);
    transition: all 0.5s;
}
.footer .footer_top .top_inner .right_part .links_sec .link_box ul a i {
    position: relative;
    font-size: 15px;
    margin-right: 5px;
    transition: all 0.5s;
}
.footer .footer_top .top_inner .right_part .links_sec .link_box ul a:hover i {
    margin-right: 15px;
    transition: all 0.5s;
}
.footer .footer_top .top_inner .right_part .links_sec .link_box ul li {
    position: relative;
    width: 100%;
    display: flex;
    list-style: none;
    align-items: center;
    margin-top: 15px;
}
.footer .footer_top .top_inner .right_part .links_sec .link_box ul li i {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--theme-color);
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.5s;
}
.footer .footer_top .top_inner .right_part .links_sec .link_box ul li:hover i {
    margin-right: 15px;
    transition: all 0.5s;
}
.footer .footer_top .top_inner .right_part .links_sec .link_box ul li p {
    position: relative;
    display: flex;
    font-size: 15px;
    color: var(--dark-color);
    cursor: pointer;
    cursor: pointer;
    transition: all 0.5s;
}
.footer .footer_top .top_inner .right_part .links_sec .link_box ul li p:hover {
    color: var(--theme-color);
    transition: all 0.5s;
}

.footer .footer_bottom {
    position: relative;
    width: 100%;
    padding: 25px 100px;
    background: var(--dark-color-1);
}
.footer .footer_bottom .bottom_inner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .footer_bottom .bottom_inner p {
    position: relative;
    font-size: 15px;
    color: var(--light-color);
}
.footer .footer_bottom .bottom_inner ul {
    position: relative;
    display: flex;
    align-items: center;
}
.footer .footer_bottom .bottom_inner ul a {
    position: relative;
    text-decoration: none;
    color: var(--light-color);
    margin-right: 50px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.5s;
}
.footer .footer_bottom .bottom_inner ul a:hover {
    color: var(--theme-color);
}
.footer .footer_bottom .bottom_inner ul span {
    position: relative;
    text-decoration: none;
    color: var(--light-color);
    font-size: 15px;
}


/* ============== responsive start ================ */

@media (max-width: 1499px) {
    .footer .footer_top {
        padding: 25px 50px;
    }
    .footer .footer_bottom {
        padding: 25px 50px;
    }
    .footer .footer_top .top_inner {
        flex-direction: column;
    }
    .footer .footer_top .top_inner .left_part {
        width: 100%;
        padding-right: 0;
    }
    .footer .footer_top .top_inner .right_part {
        width: 100%;
        padding-left: 0;
        margin-top: 50px;
    }
}

@media (max-width: 1299px) {
    .footer .footer_top .top_inner .right_part {
        flex-direction: column;
    }
    .footer .footer_bottom .bottom_inner p {
        margin-bottom: 10px;
    }
    .footer .footer_top .top_inner .right_part .subscribe_sec {
        position: relative;
        width: 100%;
        padding-right: 0;
    }
    .footer .footer_top .top_inner .right_part .links_sec {
        width: 100%;
        margin-top: 50px;
    }
    .footer .footer_bottom .bottom_inner {
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    .show {
        display: flex;
    }
    .footer {
        display: none;
        margin-top: 0;
    }
    .footer .footer_top {
        padding: 25px 30px;
    }
    .footer .footer_bottom {
        padding: 25px 30px;
    }
    .footer .footer_top .top_inner .right_part .links_sec {
        width: 100%;
        margin-top: 0;
        flex-direction: column;
    }
    .footer .footer_top .top_inner .right_part .links_sec .link_box {
        position: relative;
        width: 100%;
        margin-top: 50px;
    }
    .footer .footer_bottom .bottom_inner {
        align-items: flex-start;
    }
    .footer .footer_bottom .bottom_inner ul {
        /* align-items: flex-start; */
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .show {
        margin-bottom: 65px;
    }
}


/* ============== responsive end ================ */



.sideber_popup_section {
    position: fixed;
    top: 0;
    right: -110%;
    width: 350px;
    height: 100vh;
    z-index: 10000;
    display: flex;
    transition: right 0.6s ease-in-out;
}
.sideber_popup_section.active {
    /* display: block; */
    right: 0;
    transition: right 0.6s ease-in-out;
}
.sideber_popup_section .popup_inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #cbc8c8;
    padding: 25px;
    background: #fff;
}
.sideber_popup_section .popup_inner .back_btn {
    position: absolute;
    top: 30px;
    left: -14px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    border-radius: 5px;
}
.sideber_popup_section .popup_inner .back_btn a {
    position: relative;
    font-size: 16px;
    color: var(--dark-color-1);
    text-decoration: none;
    cursor: pointer;
    color: var(--light-color);
}
.sideber_popup_section .popup_inner .head_sec {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px 15px;
    border-bottom: 1px solid var(--light-border);
}
.sideber_popup_section .popup_inner .head_sec img {
    position: relative;
    width: 50px;
    display: flex;
    border-radius: 50%;
}
.sideber_popup_section .popup_inner .head_sec h5 {
    position: relative;
    width: calc(100% - 50px);
    display: flex;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color-1);
}
.sideber_popup_section .popup_inner .menu_sec {
    position: relative;
    width: 100%;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
}
.sideber_popup_section .popup_inner .menu_sec li {
    position: relative;
    width: 100%;
    list-style: none;
    margin-bottom: 10px;
}
.sideber_popup_section .popup_inner .menu_sec li:last-child {
    margin-bottom: 0;
}
.sideber_popup_section .popup_inner .menu_sec li a {
    position: relative;
    width: 100%;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--dark-color-1);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
}
.sideber_popup_section .popup_inner .account_sec {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.sideber_popup_section .popup_inner .account_sec li {
    position: relative;
    width: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.sideber_popup_section .popup_inner .account_sec li:last-child {
    margin-bottom: 0;
}
.sideber_popup_section .popup_inner .account_sec li a {
    position: relative;
    width: 100%;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--dark-color-1);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
}
.sideber_popup_section .popup_inner .account_sec li a i {
    margin-right: 20px;
}


/* ==================== Mobile Bottom Navigation ==================== */

.mob_bottom_navigation {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 65px;
    background: #fff;
    padding: 15px 25px;
    z-index: 1000;
    display: none;
    border-radius: 12px 12px 0px 0px;
    box-shadow: -5px 0px 15px 5px rgba(0, 0, 0, 0.158);
    background: var(--theme-color);
}

.mob_bottom_navigation .navigation_inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.mob_bottom_navigation .navigation_inner li {
    position: relative;
    height: 100%;
    width: auto;
    list-style: none;
}

.mob_bottom_navigation .navigation_inner li a {
    position: relative;
    text-decoration: none;
    cursor: pointer;
    color: var(--light-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mob_bottom_navigation .navigation_inner li a i {
    position: relative;
    font-size: 18px;
}

.mob_bottom_navigation .navigation_inner li a span {
    position: relative;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
}


@media (max-width: 575px) {
    .mob_bottom_navigation {
        display: block;
    }
}

@media (max-width: 450px) {
    .mob_bottom_navigation {
        height: 60px;
    }
    .mob_bottom_navigation .navigation_inner li a i {
        font-size: 15px;
    }
    .mob_bottom_navigation .navigation_inner li a span {
        font-size: 9px;
    }
}
