* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Futura Book font';
    src: url('/font/FuturaBookfont.ttf') format('truetype');
}

@font-face {
    font-family: 'Futura Bold';
    src: url('/font/FuturaBoldfont.ttf') format('truetype');
    font-weight: bold;
}

:root {
    --font: 'Futura Book font';
}

body {
    font-family: var(--font), sans-serif;
}

.top-menue {
    display: none;
}

@media (max-width:991px) {
    .top-menue {
        display: block;
        margin: 9px 0px;
    }

    .right-side {
        width: 100%;
    }
}

.bottom-nav {
    position: sticky;
    top: 0;
    z-index: 100000;

}

.navbar {
    padding: 10px 40px;
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.logo img {
    max-width: 100%;
    max-height: 100%;
}

.navbar-nav {
    width: 100%;
    display: flex;
    justify-content: center !important;
}

.menue-item:hover {
    background-color: rgb(238, 238, 238);
    font-weight: 500;
}

.nav-link {
    font-family: var(--font);
}

.collapse {
    padding-left: 10px;
}

.dropdown-menu {
    width: 800px;
    height: auto;
    border-radius: 0px;
    padding-bottom: 18px;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-item:active {
    background-color: rgb(117, 117, 117);
    color: #f1f1f1;
}

.navbar-toggler {
    border: 0px !important;
}

.navbar-toggler:focus {
    outline: 0 !important;
    box-shadow: none !important;
}
@media (max-width: 1199px) {
    .dropdown-menu {
        width: 580px;
    }
}
@media (max-width: 991px) {
    .navbar {
        padding: 5px 0px;
    }

    .logo img {
        width: 120px;
    }

    .nav-link {
        text-align: center;
    }
    .dropdown-menu {
        width: 100%;

    }
}




/* search box */

.button {
    display: inline-block;
    margin: 4px 2px;
    font-size: 14px;
    padding-left: 32px;
    padding-right: 32px;
    height: 41px;
    line-height: 39px;
    text-align: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button:hover {
    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    color: black;
}

.search-container {
    position: relative;
    display: inline-block;
    height: 37px;
    width: 56px;
    vertical-align: bottom;
}

.mglass {
    display: inline-block;
    pointer-events: none;
}

.mglass i {
    font-size: 18px;
}

.searchbutton {
    position: absolute;
    top: 8%;
    font-size: 17px;
    font-family: var(--font);
    width: 83px;
    height: 100%;
    margin: 0;
    padding: 0;
}

.search:focus+.searchbutton {
    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    color: black;
}

.search {
    position: absolute;
    left: 49px;
    background-color: white;
    outline: none;
    border: none;
    padding: 0;
    width: 0;
    height: 100%;
    z-index: 10;
    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    border-radius: 5px;
}

.search:focus {
    width: 241px;
    padding: 0 16px 0 0;
    border: 1px solid rgb(219, 218, 218);
}

.expandright {
    left: auto;
    right: 49px;
    margin-right: 10px;
}

.expandright:focus {
    padding: 0 0 0 16px;
}

.search-icon {
    font-size: 20px;
}

@media (max-width:991px) {
    .top-menue .search-container {
        height: 41px;
        width: 82px;
    }

    .top-menue .searchbutton {
        font-size: 14px;
        width: 87px;
    }

    .searchexpand {
        left: auto;
        right: 62px;
        margin-right: 10px;
    }

    .top-menue .mglass i {
        font-size: 14px;
    }

    .search {
        height: 88%;
        height: 88%;
        top: 3px;
    }
}

@media (max-width:576px) {
    .search:focus {
        width: 180px;
    }
}

/* end search box */

/* right side nemue */
.right-menue {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
}

.right-menue li {
    list-style: none;
    padding: 10px;
}

.right-menue li a {
    text-decoration: none;
    letter-spacing: -0.5px;
    font-family: var(--font);
    color: #444;
    font-size: 18px;
}

.right-menue li a i {
    padding-right: 7px;
    color: #000;
}

.mglass i {
    color: #000;
}

.right-menue .fa-cart-shopping {
    font-size: 20px !important;
}

@media (max-width:991px) {
    .menue-items {
        display: flex;
    }

    .right-menue {
        margin-left: 0px;
    }

    .right-menu-item {
        display: none !important;
    }

    .right-menue .fa-cart-shopping {
        font-size: 15px !important;
    }

    .right-menue li {
        padding: 5px;
    }

    .right-menue li a {
        text-decoration: none;
        letter-spacing: -0.8px;
        color: #444;
        font-size: 14px;
    }
}

/* end navbar */
.offer-card {
    position: relative;
    width: 100%;
    height: 500px;
}

.offer-card img {
    width: 100%;
    height: 100%;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0, 0, 0);
    background: rgb(34 33 33 / 33%);
    color: #f1f1f1;
    width: 100%;
    height: 100%;
    transition: .5s ease;
    opacity: 0;
    font-size: 35px;
    padding: 20px;
    text-align: center;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    width: 200px;
}

.offer-info p {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-family: var(--font);
    background-color: #ffffff;
    color: #141414;
    padding: 0px 5px;
}

.offer-card:hover .overlay {
    opacity: 1;
}

@media (max-width: 991px) {
    .offer-card {
        height: 400px;
    }

    .offer-card img {
        height: 100%;
    }
}

.card img {
    width: 100%;
    height: 400px;
}

.card-body a {
    background-color: black;
    color: #fff;
}

.card-body a:hover {
    background-color: black;
    color: #fff;

}

.card:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}


/* -----------------------------------------end offer section-------------------------- */
.page2,
.page3 {
    margin-top: 58px;
}

.page2 .container,
.page3 .container {
    margin-top: 12px;
}

.new-arrival {
    text-align: center;
}

.new-arrival h1.title {
    position: relative;
    line-height: 25px;
    display: inline-block;
    font-family: var(--font);
}

.new-arrival h1.title:before,
.new-arrival h1.title:after {
    position: absolute;
    content: "";
    width: 70px;
    height: 2px;
    background: #000;
    top: 56%;
}

.new-arrival h1.title:before {
    left: -76px;
}

.new-arrival h1.title:after {
    right: -76px;
}

.card-title,
.cart-button {
    font-family: var(--font);
}

.card-body .item-name,
.align-items-end .cart-icon {
    text-decoration: none;
    background-color: #fff;
    color: #000;
}

.card-body .item-name:hover,
.align-items-end .cart-icon:hover {
    background-color: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .card img {
        height: 510px;
    }
}


/* ---tranding products-- */
.trending {
    text-align: center;
}

.trending h1.title {
    position: relative;
    display: inline-block;
    font-family: var(--font);
}

.trending h1.title:before,
.trending h1.title:after {
    position: absolute;
    content: "";
    width: 121px;
    height: 2px;
    background: #000;
    top: 56%;
}

.trending h1.title:before {
    left: -141px;
}

.trending h1.title:after {
    right: -141px;
}

@media (max-width:600px) {
    .trending h1.title:before {
        display: none;
    }

    .trending h1.title:after {
        top: auto;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* end new arrival and tranding product sention */
.carousel .container {
    max-width: 100%;
    margin: 0 auto;
}

.home-carousel .item {
    overflow: hidden;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-carousel .item img {
    margin: 0 auto;
    width: 432px;
    min-height: 458px;
    max-height: 458px;
    /* min-height: 344px;
    max-height: 344px; */
}

.home-carousel .item p {
    margin-top: 10px;
    font-size: 18px;
    font-family: var(--font);
}

.home-carousel .item a {
    text-decoration: none;
    text-align: center;
    color: #000;
}

/* end carousel */
.footer {
    margin-top: 31px;
    background-color: #F8F9FA;
    padding: 40px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.footer:hover {
    background-color: rgb(75, 75, 75);
}

.footer-menue h5{
    color: #181818;
    font-family: var(--font);

}
.footer:hover .location-info li a,
.footer:hover .footer-menue li a,
.footer:hover .socil-icon li a,
.footer:hover .service li a,
.footer:hover .footer-menue h5 {
    color: white;
    font-family: var(--font);
}

.part1,
.part2,
.part3,
.part4 {
    width: 84%;
}

.location-info li,h5,
.footer-menue li,h5,
.socil-icon li,h5,
.service li, h5 {
    list-style: none;
    margin-left: 20px;
}

.footer-menue li a,
.socil-icon li a,
.service li a{
    text-decoration: none;
    color: #313131;
    font-size: 18px;
    font-family: var(--font);
    font-weight: 500;
    margin-left: 0px;
}

.footer:hover .service h5,
.footer:hover  .service li i{
    color: white;
}

.footer-menue li a:hover,.service li a:hover{
    color: #2ad50d  !important;
}

.socil-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.socil-icon li a i{
    font-size: 18px;
}

@media (max-width:1200px) {

    .part1,
    .part2,
    .part3,
    .part4 {
        width: 100%;
    }
}

@media (max-width:769px) {
    .footer {
        padding: 40px 10px;
    }
}

.cright {
    background-color: #1d1c1c;
}

.ctext {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    font-family: var(--font);
    color: #fff;
}

/* end footer section */

.actiondrp{
    width: 100px !important;
    left: -123px !important;
    z-index: 200000;
}
.actiondrp li a{
    background-color: #ffffff !important;
    color: #1b1b1b !important;
}
.actiondrp li a:hover{
    background-color: #e6e6e6 !important;
    color: #1b1b1b !important;
}
.actiondrp li{
    padding: 0px !important;
}
.actiondrp i{
    margin-right: 5px !important;
}

/* jquery ui*/
    .ui-menu{
        z-index: 999999 !important;
    }
    .ui-menu-item-wrapper:hover{
        background-color: rgb(126, 126, 126) !important;
        border: none !important;
    }
    .ui-menu-item:hover{
        background-color: rgb(126, 126, 126) !important;
    }
    .ui-menu-item::after{
        content: "" !important;
    }

/*about*/
.about-section {
    margin-top: 140px;
}

.about {
    min-height: 80vh;
    padding: 30px;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

/*contact */
.contact-section {
    padding: 10px;
    margin-top: 80px;
}

.call {
    margin-left: 31px;
}

.calnumber {
    font-size: 17px;
}

.calltext {
    font-weight: 500;
}

@media (min-width: 1200px){
.contact-call{
    width: 80%;
}
}
@media (max-width: 768px) {

    .contact-section {
        margin-top: 30px;
    }
    .message{
        margin-top: 35px;
        margin-left: 0px;

    }
    .message h3{
        text-align: center;
    }
}
/* user account sidebar */
.sidebar-item{
    list-style: none;
    padding: 5px 0;
}
.sidebar-item a{
    text-decoration: none;
    color: #444;
    font-size: 17px;
}

.welcome-user {
    padding-bottom: 36px
}

.web-user {
    color: rgb(34, 34, 34);
    background-color: rgb(226, 226, 226);
    padding: 5px;
}

.my-account2 {
    display: none;
}

.web-userinfo {
    margin-top: 91px;
}

@media (max-width: 992px) {
    .my-account2 {
        display: block;
    }

    .my-account {
        display: none;
    }
    .web-userinfo {
    margin-top: 50px;
}

}
.multi-px-slider {
    height: 623px !important;
}
