/* top header started here */
header .top-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 5px 50px;
    background: var(--secondary-color);
    gap: 100px;
    align-items: center;
}

header .top-header ul {
    margin-bottom: 0px;
    padding-left: 0px;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

header .top-header ul li a {
    color: red;
}

header .top-header .top-header-contact p {
    margin-bottom: 0px;
    color: #fff;
}

header .top-header .top-header-contact p a {
    color: #fff;
}

.logo-search-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 8px 50px;
    background: #225460;
    padding-left: 250px;
}

.logo-search-container .logo-container {
    height: 80px;
    width: 180px;
    background: #14363e;
    box-shadow: 0 0 10px #0000004f;
    padding: 10px;
    position: absolute;
    z-index: 2;
    border-radius: 4px;
    left: 50px;
    bottom: 15px;
    border: 1px solid #e6d7b540;
}

.logo-search-container .logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-search-container .search-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
    /* width: calc(100% - 245px); */
}

.logo-search-container .search-container .login-cart-btn-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.logo-search-container .search-container button {
    background: linear-gradient(45deg, #a78c47, #14363e);
    color: #fff;
    height: 35px;
    font-size: 15px;
    padding: 5px 10px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    gap: 10px;
    transition: 0.4s all ease-in-out;
    text-transform: uppercase;
    box-shadow: 0 0 10px #00000075;
    border: 1px solid #e3ca934f;
}

.logo-search-container .search-container button.offers-home-btn {
    background: #c62772;
    border-radius: 18px;
    position: relative;
}

.logo-search-container .search-container button.offers-home-btn img {
    width: 20px;
    height: 20px;
    animation: zoom 1s infinite alternate;
}

.logo-search-container .search-container button.offers-home-btn::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 500px;
    animation: 2s ease 0s normal none infinite running playbutton1;
    z-index: 0;
}

.logo-search-container .search-container button.offers-home-btn::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 500px;
    animation: 2s ease 0s normal none infinite running playbutton;
    z-index: 0;
}

@keyframes playbutton1 {
    0% {
        box-shadow: 0 0 0 0 rgba(67, 5, 5, 0);
        opacity: 1;
    }

    100% {
        box-shadow: 0 0 0 20px rgb(230 215 181);
        opacity: 0;
    }
}

@keyframes playbutton {
    0% {
        box-shadow: 0 0 0 0 rgba(67, 5, 5, 0);
        opacity: 1;
    }

    100% {
        box-shadow: 0 0 0 10px rgb(230 215 181);
        opacity: 0;
    }
}

@keyframes zoom {
    0% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1.1);
    }
}

.logo-search-container .search-container button.web-cart-btn {
    position: relative;
    background: transparent;
    border-radius: 50%;
    font-size: 22px;
    color: #b39145;
    border: 1px solid #dfb55adb;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-search-container .search-container button.web-cart-btn span {
    position: absolute;
    background: red;
    color: #fff;
    font-size: 11px;
    padding: 2px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    top: -6px;
    right: -6px;
    box-shadow: 0 0 10px #14363e85;
}

.logo-search-container .search-container button:hover {
    background: var(--secondary-color);
}

.logo-search-container .search-container .search-bar-wrapper {
    display: flex;
    position: relative;
}

.logo-search-container .search-container .search-bar-wrapper .search-suggestion-container {
    border-radius: 0 0 4px 4px;
    position: absolute;
    background: #a1e4f4;
    width: 100%;
    left: 0;
    height: auto;
    top: 36px;
    z-index: 9;
    padding: 5px 10px;
    box-shadow: 0px 5px 10px #00000069;
    display: none;
    transition: 0.4s all ease-in-out;
    padding-bottom: 10px;
    max-height: 250px;
    overflow-y: scroll;
}

.logo-search-container .search-container .search-bar-wrapper .search-suggestion-container h2 {
    padding: 3px 15px;
    text-align: center;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.logo-search-container .search-container .search-bar-wrapper .search-suggestion-container .search-suggestion-item h4 {
    font-size: 17px;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.logo-search-container .search-container .search-bar-wrapper .search-suggestion-container .search-suggestion-item h3 {
    font-size: 20px;
    font-weight: 500;
    color: #dca323;
}

.logo-search-container .search-container .search-bar-wrapper .search-suggestion-container .search-suggestion-item {
    border-top: 1px solid #14363e7a;
    margin-bottom: 5px;
    padding-top: 5px;
    display: flex;
    flex-direction: row;
    gap: 11px;
}

.search-suggestion-item img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.logo-search-container .search-container .search-bar-wrapper .search-suggestion-container.show {
    display: block;
}

.logo-search-container .search-container .search-bar-wrapper input {
    border: 1px solid #ddd;
    height: 40px;
    width: 400px;
    padding: 7px;
    border-radius: 3px 0 0 3px;
}

.logo-search-container .search-container .search-bar-wrapper button {
    background: #b39145;
    color: #fff;
    font-size: 28px;
    width: 70px;
    height: 40px;
    border: none;
    border-radius: 0 5px 5px 0;
    transition: 0.4s all ease-in-out;
    box-shadow: 7px 0px 10px #225460;
}

.logo-search-container .search-container .search-bar-wrapper button i {
    text-shadow: 3px 4px 10px #225460ab;
}

.logo-search-container .search-container .search-bar-wrapper button:hover {
    background: var(--secondary-color);
}

/* top header ended here */

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none;
    
}

.main-menu {
    display: block;
    position: relative;
    background: #14363e;
}

.container-menu {
    width: 100%;
    margin: 0 auto;
}

.main-menu:before,
.main-menu:after {
    display: table;
    line-height: 0;
    content: "";
}

.core-menu {
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: end;
    padding: 0 50px;
    margin-bottom: 0px;
    box-shadow: 0px 2px 10px 0px #14363e94;
    border-bottom: 5px solid var(--secondary-color);
    padding-right: 115px;
    font-family: var(--font-2);
}

.core-menu li {
    list-style: none;
    display: inline-block;
    cursor: pointer;
}

.core-menu li a {
    display: inline-block;
    padding: 1em;
    text-decoration: none;
    color: #fff;
    font-family: var(--roboto-font);
    text-transform: uppercase;
    font-size: 14px;
}

.core-menu li a:hover {
    background: #b39145;
}

li span.toggle {
    padding-left: 1em;
}

.toggle:before {
    content: "\f078";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

.dropdown {
    position: absolute;
    width: 230px;
    /* background: #1a1a1a; */
    background: #fff;
    box-shadow: 0 0 10px #00000059;
    text-align: left;
    display: none;
    padding-left: 0px;
    z-index: 9;
}

.dropdown li {
    display: block;
}

.dropdown li a {
    display: block;
    padding-left: 15px;
}

.dropdown2 {
    position: absolute;
    width: 230px;
    background: #2d2d2d;
    text-align: left;
    display: none;
    right: -100%;
    top: 0;
    padding-left: 0px;
}

.dropdown2 li {
    display: block;
}

.dropdown2 li a {
    display: block;
    padding-left: 15px;
}

li span.toggle2 {
    position: absolute;
    right: 0;
    margin-right: 20px;
}

.toggle2:before {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: 900;
}

.hamburger-menu {
    padding: 1em;
    display: none;
    font: normal normal normal 16px/1 Roboto;
    text-transform: uppercase;
}

header .top-header ul {
    display: flex;
    padding-left: 0px;
    gap: 15px;
}

header .top-header ul li {
    list-style-type: none;
}

header .top-header ul li a {
    display: flex;
    border-radius: 100%;
    background-color: #fff;
    position: relative;
    text-align: center;
    height: 30px;
    width: 30px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

header .top-header ul li a.f-facebook {
    color: #3b5998;
    transition: 0.5s all ease-in-out;
}

header .top-header ul li a.f-linkedin {
    color: #3b5998;
    transition: 0.5s all ease-in-out;
}

header .top-header ul li a.f-insta {
    color: #ac2bac;
    transition: 0.5s all ease-in-out;
}

header .top-header ul li a.f-twitter {
    color: #55acee;
    transition: 0.5s all ease-in-out;
}

header .top-header ul li a.f-youtube {
    color: red;
    transition: 0.5s all ease-in-out;
}

/* on mouseover social icon */
header .top-header ul li a.f-facebook:hover {
    background-color: #3b5998;
    color: #fff;
}

header .top-header ul li a.f-linkedin:hover {
    background-color: #3b5998;
    color: #fff;
}

header .top-header ul li a.f-insta:hover {
    background-color: #ac2bac;
    color: #fff;
}

header .top-header ul li a.f-twitter:hover {
    background-color: #55acee;
    color: #fff;
}

header .top-header ul li a.f-youtube:hover {
    background-color: red;
    color: #fff;
}

header .top-header ul li a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 100%;
    transform: scale(0.8);
    opacity: 0;
}

/* after effect */
header .top-header ul li a.f-insta::after {
    border: 1px solid #ac2bac;
}

header .top-header ul li a:hover:after {
    opacity: 0.6;
    transform: scale(1.3);
}

/*  */
header .top-header ul li a.f-facebook::after {
    border: 1px solid #3b5998;
}

header .top-header ul li a.f-linkedin::after {
    border: 1px solid #3b5998;
}

header .top-header ul li a.f-twitter::after {
    border: 1px solid #55acee;
}

header .top-header ul li a.f-youtube::after {
    border: 1px solid red;
}

/* sticky menu started here */
header {
    /* padding-bottom: 103px; */
    padding-bottom: 135px;
}

header .header-container {
    position: fixed;
    z-index: 999;
    width: 100%;
    background: #fff;
}

.scrollable-text {
    background: #5d3084;
    padding: 5px 0px 0px;
}

.scrollable-text marquee {
    color: #fff;
}

/* mob responsive */
.only-for-mob {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #dddddd7a;
}

.only-for-mob .mob-btn-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 25px;
}

.only-for-mob .mob-btn-container button {
    background: linear-gradient(45deg, #14363e, #aa8351);
    font-size: 18px;
    padding: 5px 10px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    gap: 10px;
    transition: 0.4s all ease-in-out;
    color: #fff;
    box-shadow: 0 0 10px #ffffff70;
    border: 1px solid #ffffff69;
}

.only-for-mob h3 {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    text-align: start;
    margin-top: 15px;
    font-family: var(--poppins-font);
    margin-bottom: 0px;
}

.only-for-mob h3 a {
    color: #fff;
}

.only-for-mob h3 i {
    margin-right: 10px;
    font-size: 20px;
}

.only-for-mob ul.mob-menu-social-list {
    padding-left: 0px;
    margin-top: 17px;
    margin-bottom: 0px;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.only-for-mob ul.mob-menu-social-list li {
    background: linear-gradient(45deg, white, #e8d4b6);
    box-shadow: 0 0 10px #ffffff4a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.only-for-mob ul.mob-menu-social-list li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.only-for-mob ul.mob-menu-social-list li a.f-facebook {
    color: #3b5998;
    transition: 0.5s all ease-in-out;
}

.only-for-mob ul.mob-menu-social-list li a.f-youtube {
    color: red;
    transition: 0.5s all ease-in-out;
}

.only-for-mob ul.mob-menu-social-list li a.f-linkedin {
    color: #3b5998;
    transition: 0.5s all ease-in-out;
}

.only-for-mob ul.mob-menu-social-list li a.f-insta {
    color: #ac2bac;
    transition: 0.5s all ease-in-out;
}

.akash-header .search-icon-in-mob {
    position: absolute;
    top: 24px;
    z-index: 9999;
    right: 105px;
    display: none;
    transition: 0.4s all ease-in-out;
}

.akash-header .search-icon-in-mob button {
    background: transparent;
    color: #fff;
    font-size: 27px;
}

.akash-header.sticky-menu .search-icon-in-mob {
    display: block;
}

/* search bar suggestion box scroll bar design */
.search-suggestion-container::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

.search-suggestion-container::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f5;
}

.search-suggestion-container::-webkit-scrollbar-thumb {
    /* background-color: var(--secondary-color); */
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.home-my-profile-container {
    position: relative;
    margin-left: 10px;
}

.home-my-profile-container .profile-name-img-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

.home-my-profile-container .profile-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2aaccb, #b19045);
    padding: 2px;
    box-shadow: 0 0 10px #0000006b;
    cursor: pointer;
}

.home-my-profile-container .profile-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
}

.home-my-profile-container ul {
    list-style-type: none;
    position: absolute;
    z-index: 1;
    background: #e3d1a8;
    box-shadow: 0px 1px 10px #0000006b;
    width: 190px;
    padding: 15px;
    flex-direction: column;
    right: -30px;
    top: 48px;
    margin-bottom: 0px;
    gap: 10px;
    border-radius: 0 0 10px 10px;
    display: none;
    z-index: 2;
}

.home-my-profile-container ul h3 {
    font-size: 20px;
    margin-bottom: 0px;
}

.home-my-profile-container ul h3 span {
    font-size: 17px;
}

.home-my-profile-container ul.logged-in {
    display: flex;
}

.home-my-profile-container ul li a {
    background: var(--primary-color);
    width: 100%;
    display: block;
    text-align: center;
    padding: 3px;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s all ease-in-out;
}

.home-my-profile-container ul li a:hover {
    background: #99721b;
    box-shadow: 0 0 10px #00000087;
}

/* new */
.dropdown.dropdown-first-item {
    width: 400px;
    padding: 15px;
    border-radius: 0 0 10px 10px;
}

/* .dropdown.dropdown-first-item h2 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--primary-color);
    font-family: var(--font-2);
    position: relative;
} */

.dropdown-first-item .dropdown-item-container h3 {
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 1px solid #14363e;
    padding-bottom: 2px;
    margin-bottom: 3px;
}

.dropdown-first-item .dropdown-item-container h3 a {
    font-size: 18px;
    text-transform: uppercase;
    padding: 0;
    margin-bottom: 0px;
    color: #14363e;
}

.dropdown-first-item .dropdown-item-container .dropdown-item-ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 0px;
    border-radius: 0 0 5px 5px;
    justify-content: space-between;
}

.dropdown-first-item .dropdown-item-container .dropdown-item-ul a {
    color: #14363e;
    padding: 4px;
    font-weight: 500;
}

.dropdown-first-item .dropdown-item-container {
    background: #cedce0;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 10px;
}

.dropdown.cus-dropdown {
    padding: 10px;
    width: fit-content;
    border-radius: 0 0 10px 10px;
    min-width: 120px;
    text-align: center;
}

.dropdown.cus-dropdown li a {
    color: #14363e;
    padding: 4px;
    font-weight: 500;
}




/* .dropdown.dropdown-first-item {
    transition: 0.3s all ease-in-out;
}

.core-menu li:hover .dropdown.dropdown-first-item {
    display: block;
} */

@media (max-width: 1023px) {
    .home-my-profile-container {
        position: absolute;
        top: 22px;
        right: 55px;
    }

    .main-menu {
        height: 79px;
    }

    .container-menu {
        width: 100%;
    }

    .navigation {
        float: left;
        display: block;
        width: 100%;
    }

    .core-menu {
        float: right;
        width: 96%;
        margin: auto;
        display: none;
        background: #336774;
        margin-top: 47px;
        padding: 7px 10px;
        padding-bottom: 20px;
        padding-top: 20px;
        margin-right: 2%;
        border-radius: 0 0 10px 10px;
        z-index: 2;
        position: relative;
    }

    .core-menu li {
        width: 100%;
        background: var(--primary-color);
        margin-bottom: 7px;
        position: relative;
    }

    .core-menu li span.toggle {
        position: absolute;
        right: 10px;
    }

    .core-menu li a {
        display: block;
        margin: auto;
        text-align: start;
    }

    .hamburger-menu {
        display: block;
        text-align: center;
        padding-right: 60px;
        float: none;
        width: 100%;
    }

    .burger-1,
    .burger-2,
    .burger-3 {
        display: block;
        position: absolute;
        width: 20px;
        height: 3px;
        border-radius: 30px;
        right: 0;
        margin-right: 25px;
        background: #fff;
        -webkit-transition: 0.2s ease-in-out;
        -ms-transition: 0.2s ease-in-out;
        -moz-transition: 0.2s ease-in-out;
        -o-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
    }

    .burger-1 {
        top: 48px;
    }

    .burger-2 {
        top: 39px;
    }

    .burger-3 {
        top: 31px;
    }

    .burger-1.open,
    .burger-2.open,
    .burger-3.open {
        -webkit-transition: 0.2s ease-in-out;
        -ms-transition: 0.2s ease-in-out;
        -moz-transition: 0.2s ease-in-out;
        -o-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
        transform-origin: 50% 50%;
    }

    .burger-1.open {
        top: 38px;
        width: 23px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

    .burger-2.open {
        opacity: 0;
    }

    .burger-3.open {
        top: 38px;
        width: 23px;
        transform: rotate(-45deg);
    }

    .dropdown {
        width: 100%;
        /* background: #476c75; */
        background: #fff;
        text-align: center;
        position: relative;
        padding: 8px;
    }

    .dropdown.dropdown-first-item,
    .dropdown.cus-dropdown {
        width: 100%;
    }

    .dropdown.cus-dropdown li a {
        /* color: #fff; */
        padding: 8px;
        background: #cedce0;
    }

    .dropdown-first-item .dropdown-item-container .dropdown-item-ul {
        gap: 10px;
    }

    .dropdown-first-item .dropdown-item-container .dropdown-item-ul a {
        font-size: 13px;
    }

    .dropdown2 {
        right: 0;
        top: 0;
        width: 100%;
        position: relative;
        padding: 0 10px;
        background: #894e70b8;
    }

    .dropdown2 li {
        background: #5b1d9147;
    }

    .logo-search-container .logo-container {
        width: auto;
        height: 70px;
        padding: 4px;
        background: transparent;
        box-shadow: unset;
        bottom: 4px;
        left: 15px;
    }
}

/* marquee started */
header .header-container .header-marq {
    display: flex;
    flex-direction: row;
    background: #e6d7b5;
    color: #14363e;
    transition: 0.3s all ease-in-out;
}

header .header-container .header-marq .marq-heading {
    background: linear-gradient(84deg, #ff00a2, #0b917c, #3f3dce, #be289e);
    width: 180px;
    color: #fff;
    padding: 2px 12px;
    font-family: var(--font-1);
    background-size: 370px;
    animation: background-text-animation 15s linear infinite;
}

header .header-container .header-marq marquee span {
    margin-right: 100px;
    font-size: 14px;
    font-family: var(--font-1);
    font-weight: 600;
}

.akash-header.sticky-menu .header-container .header-marq {
    display: none;
}

@keyframes background-text-animation {
    0% {
        background-position: left 0px top 50%;
    }

    50% {
        background-position: left 1500px top 50%;
    }

    100% {
        background-position: left 0px top 50%;
    }
}

/* marquee ended */