/* =========== FONTS IMPORT =========== */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Dosis:300,400,600,700,900");

html,body{
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    color: #c2ad0e;
    margin: 0;
}
a {
    font-family: "Poppins",sans-serif;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}
a:hover {    
    
    text-decoration: none;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Poppins",sans-serif;
    margin-bottom: 0;
}

button{
    outline: none;
}
button:hover,.btn:focus {
    box-shadow: none;
}
::selection {
    background: #c2ad0e ;
    text-shadow: none;
    color: #ffffff;
}
img{
    width: 100%;
}
.web-shadow{
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, .08);
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, .08);
}

/* :root{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
} */

/*=========== header section css ===========*/
.my-logo span{
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border: 2px solid #25262a;
    color: #000 !important;
}

.my-logo img {
    width: 150px;
}


.main-header {
    max-height: 100px;
    padding: 0px 0;

}

.header-part-2{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    background: #fff;
    box-shadow: 0 0px 10px 2px rgba(0, 0, 0, 0.1);
    z-index: 222;
    opacity: .8;

}

.main-header .navbar {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.main-header .navbar-nav .nav-item .nav-link {
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 0.2px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 10px 15px;
    color: #fff;
    border: solid 1px transparent;
}

.main-header .navbar-nav .active .nav-link,
.main-header .navbar-nav .nav-item:hover .nav-link {
    color: #c2ad0e ;
}


.cart-btn {
    display: inline-block;
    text-align: center;
    color: #495057;
    margin-right: 10px;
}

.cart-btn:hover {
    color: #c2ad0e;
}

.cart-btn i {
    display: block;
    height: 40px;
    width: 40px;
    line-height: 40px;
}

@media (max-width: 991.98px) {
    .cart-btn i {
        width: 24px;
    }
}

.bag {
    position: relative;
}

.bag .number {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 20px;
    color: #fff;
    font-size: 12px;
    background: rgba(150, 3, 8, 0.8);
    right: -5px;
}

/*=================Search box css====================*/
.search-box {
    display: none;
    align-items: center;
    border: 1px solid #dee2e6;
    /* background-color: #f8f9fa; */
    background-color: #fff;
    /* border-radius: 30px; */
}

.search-box {
    display: flex;
    flex-wrap: nowrap;
    height: 44px;
    border-radius: 4px;
}

.search-box .form-control {
    border: 0;
    font-size: 13px;
    background-color: transparent;
    padding-left: 15px;
}

.search-box .form-control:focus {
    box-shadow: none;
}

.search-box .btn {
    width: 44px;
    height: 44px;
    margin-right: -1px;
    /* border-radius: 30px; */
    text-align: center;
    font-size: 14px;
    color: #fff;
    padding-left: 12px;
    border: 0;
    background-color: #282828;
}


/*=========== Menu toggle Css ===========*/
.menu-toggle {
    position: relative;
    top: -1px;
    left: 3px;
    width: 37px;
    min-width: 37px;
    height: 37px;
    cursor: pointer
}

.menu-toggle span {
    transition: .25s ease-in-out;
    transition-property: top, left, width, height;
    background: #c2ad0e ;
}

.menu-toggle .hamburger {
    position: absolute;
    width: 37px;
    height: 37px
}

.menu-toggle .hamburger span {
    position: absolute;
    right: 4px;
    width: 30px;
    height: 2px
}

.menu-toggle .hamburger span:nth-child(1) {
    top: 8px;
    transition-delay: .5s
}

.menu-toggle .hamburger span:nth-child(2) {
    top: 17px;
    width: 20px;
    transition-delay: .625s
}

.menu-toggle .hamburger span:nth-child(3) {
    bottom: 8px;
    width: 24px;
    transition-delay: .75s
}

.menu-toggle .cross {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.menu-toggle .cross span {
    position: absolute
}

.menu-toggle .cross span:nth-child(1) {
    top: 0;
    left: 17px;
    width: 2px;
    height: 0;
    transition-delay: 0s
}

.menu-toggle .cross span:nth-child(2) {
    top: 17px;
    left: 0;
    width: 0;
    height: 2px;
    transition-delay: .25s
}

.menu-toggle.open .hamburger span {
    width: 0
}

.menu-toggle.open .hamburger span:nth-child(1) {
    transition-delay: 0s
}

.menu-toggle.open .hamburger span:nth-child(2) {
    transition-delay: .1s
}

.menu-toggle.open .hamburger span:nth-child(3) {
    transition-delay: .2s;
}

.menu-toggle.open .cross span {
    background: #c2ad0e ;
}

.menu-toggle.open .cross span:nth-child(1) {
    height: 36px;
    transition-delay: .5s;
}

.menu-toggle.open .cross span:nth-child(2) {
    width: 36px;
    transition-delay: .3s;
}


/*=========== heading Css ===========*/
.web-heading {
    margin-bottom: 25px;
    z-index: 1;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.web-heading>h1::after,
.web-heading>h2::after,
.web-heading>h3::after,
.web-heading>h4::after,
.web-heading>h5::after,
.web-heading>h6::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    z-index: -2;
    width: 40px;
    height: 3px;
    background-color: #c2ad0e ;
}

.web-heading>h1::before,
.web-heading>h2::before,
.web-heading>h3::before,
.web-heading>h4::before,
.web-heading>h5::before,
.web-heading>h6::before {
    content: "";
    position: absolute;
    left: 55px;
    bottom: -9px;
    z-index: -2;
    width: 50%;
    height: 1px;
    background-color: #c2ad0e;
}


/*=========== button Css ===========*/
.web-btn {
    display: inline-block;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    font-family: "Poppins",
    sans-serif !important;
    font-size: 12px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    color: #fff;
    border-radius: 5px !important;
    background-color: #c2ad0e;
    border-color: #c2ad0e;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-top: 5px;
}

.web-btn:hover {
    color: #ffffff;
    background-color: #5c0404;
    border-color: #c2ad0e;
}


/*=========== foooter section Css ===========*/
/*=========== foooter section Css ===========*/
.footer-block {
    background: url(../image/footer.gif),
        rgba(0, 0, 0, 0.75);
    background-blend-mode: darken;
    background-attachment: fixed;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    font-size: 1rem;
}

.footer-block .web-heading>h5::before,
.footer-block .web-heading>h5::after {
    background: #fff;
}

.widget-box {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    color: #fff;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.widget-box .web-heading {
    margin-bottom: 30px;
    color: #fff;
}

.widget-box .web-heading>span::after {
    width: 30px;
}

.widget-box .web-heading>span::before {
    left: 40px;
    width: 50px;
}

.widget-box .widget-text ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.widget-box .widget-text .widget-links li {
    padding: 0 0 10px;
}

.widget-box .widget-text ul li a {
    color: #fff;
}

.widget-box .widget-text ul li a:hover {
    color: #c2ad0e;
}

.widget-box .widget-text .widget-links li a {
    position: relative;
    display: inline-block;
    padding-left: 25px;
}

.widget-box .widget-text .widget-links li a::before {
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 0;
}

.widget-box .widget-text .socials {
    margin-top: 30px;
}

.widget-box .widget-text .socials a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: #000;
    vertical-align: middle;
    color: #fff;
    line-height: 38px;
    text-align: center;
    margin-right: 3px;
    margin-bottom: 10px;
    z-index: 1;
}

.widget-box .widget-text .socials a:hover {
    background-color: #c2ad0e;
    border-color: #c2ad0e;
}

.footer-block .copyright {
    margin-top: 50px;
    color: #fff;
    font-size: 0.9rem;
    background: #000;
    padding: 15px 0;
}

.footer-block .copyright a {
    color: #c2ad0e
}


/*====================Social Media icon code=============================== */
.social-media {
    display: block;
}

.social-media ul {
    padding-left: 0px;
}
.social-media li {
    display: inline-block;
    padding-right: 5px;
}

.social-media li a {
    position: relative;
    display: flex;
    justify-content: center;
    width: 28px;
    height: 28px;
    align-items: center;
    color: #fff;
    background: #c2ad0e;
    border: solid 1px #c2ad0e;
    border-radius: 50%;
    font-size: 13px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 30px 0px rgba(255, 255, 255, 0.2);
}

.social-media li a i {
    line-height: 35px;
}

.social-media a:hover {
    background: rgb(0, 161, 130, 0.7);
    background-color: #5c0404;
    border-color: #c2ad0e;
}

/*=========== Bootom Fixed button Css ===========*/
.fixed-bottom a {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c2ad0e;
    color: #fff;
    font-size: 2rem;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
}

.fixed-bottom a:hover{
    background: rgb(0, 161, 130,0.8) !important;
    border-color: #c2ad0e;
}





/*=========== Dropdown multipal Css ===========*/
.main-header .nav-item {
    flex: 1 1 0;
    text-align: center;
    position: static;
}

@media (min-width: 992px) {
    .main-header .nav-item {
        flex: 1 1 auto;
        position: relative;
    }
}

.main-header .nav-item.active+.nav-item .nav-link {
    border-left-width: 0;
}

.main-header .nav-item:last-child .nav-link {
    border-right-width: 1px;
}

.main-header .nav-item.with-sub>a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 4px;
    margin-top: 0;
    opacity: .7;
}

@media (min-width: 992px) {
    .main-header .nav-item.with-sub>a::after {
        margin-left: 8px;
    }
}

.main-header .nav-item.with-sub:hover>.sub-item,
.main-header .nav-item.with-sub:focus>.sub-item {
    display: block;
}

.main-header .nav-link {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .7px;
    font-weight: 500;
    color: #fff;
    height: 46px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right-width: 0;
}


.main-header .nav-link:hover,{
    border: 2px solid #c2ad0e;
}
.main-header .nav-link:focus {
    color: #343a40;
    /*background-color: #fff;*/

}

.main-header .nav-link.active {
    border-color: #c2ad0e ;
}

.main-header .nav-link .square-8 {
    margin-left: 3px;
    background-color: #c2ad0e ;
    border-radius: 100%;
}

@media (min-width: 992px) {
    .main-header .nav-link .square-8 {
        margin-left: 5px;
    }
}

@media (min-width: 992px) {
    .main-header .nav-link span:not(.square-8) {
        display: block;
    }
}

.main-header .sub-item {
    background-color: #fff;
    position: absolute;
    top: 46px;
    left: 0;
    padding: 10px 0;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(115, 115, 115, 0.2);
    box-shadow: 0px 10px 30px 0px rgba(115, 115, 115, 0.2);
    border-color: transparent;
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    z-index: 1000;
    display: none;
}

@media(max-width: 991px) {
    .main-header .sub-item {
        background-color: #fff;
        position: relative;
        width: 300px;
        top: 0;
        left: auto;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}
@media (min-width: 992px) {
    .main-header .sub-item {
        width: 200px;
    }
}

.main-header .sub-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.main-header .sub-item ul a {
    display: block;
    padding: 6px 10px;
    margin: 0 10px;
    color: #495057;
}

.main-header .sub-item ul a:hover,
.main-header .sub-item ul a:focus {
    color: #c2ad0e ;
    background-color: #f2f4f6;
}

.main-header .sub-item .sub-with-sub {
    position: relative;
}

.main-header .sub-item .sub-with-sub::after {
    content: '\f125';
    font-family: "Ionicons";
    font-size: 10px;
    position: absolute;
    top: 9px;
    right: 20px;
    color: #adb5bd;
}

.main-header .sub-item .sub-with-sub ul {
    display: none;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .main-header .sub-item .sub-with-sub ul {
        padding-left: 0;
        position: absolute;
        top: 0;
        right: -200px;
        width: 200px;
        background-color: #fff;
        border: 1px solid #ced4da;
        padding: 10px 0;
        box-shadow: 0 2px 3px rgba(108, 117, 125, 0.16);
    }
}

.main-header .sub-item .sub-with-sub ul a {
    display: block;
    padding: 6px 10px;
}

.main-header .sub-item .sub-with-sub:hover ul,
.main-header .sub-item .sub-with-sub:focus ul {
    display: block;
}

/* =========== RTL SUPPORT ===========*/
[dir="rtl"] .main-header .nav-item.active+.nav-item .nav-link {
    border-right-width: 0;
}

[dir="rtl"] .main-header .nav-item:last-child .nav-link {
    border-left-width: 1px;
}

[dir="rtl"] .main-header .nav-item.with-sub>a::after {
    margin-left: 0;
    margin-right: 4px;
}

@media (min-width: 992px) {
    [dir="rtl"] .main-header .nav-item.with-sub>a::after {
        margin-right: 8px;
    }
}

[dir="rtl"] .main-header .nav-item.with-sub:hover>.sub-item,
[dir="rtl"] .main-header .nav-item.with-sub:focus>.sub-item {
    display: block;
}

[dir="rtl"] .main-header .nav-link {
    border-right-width: 1px;
    border-left-width: 0;
}

@media (min-width: 992px) {
    [dir="rtl"] .main-header .nav-link .icon {
        margin-right: 0;
        margin-left: 8px;
    }
}

[dir="rtl"] .main-header .nav-link .square-8 {
    margin-left: 0;
    margin-right: 3px;
}

@media (min-width: 992px) {
    [dir="rtl"] .main-header .nav-link .square-8 {
        margin-left: 0;
        margin-right: 5px;
    }
}

[dir="rtl"] .main-header .mega-dropdown .sub-item .section-label {
    text-align: right;
}

[dir="rtl"] .main-header .sub-item {
    left: auto;
    right: 0;
}

[dir="rtl"] .main-header .sub-item ul {
    text-align: right;
}

[dir="rtl"] .main-header .sub-item .sub-with-sub::after {
    left: 20px;
    right: auto;
}

[dir="rtl"] .main-header .sub-item .sub-with-sub ul {
    padding-left: 0;
    padding-right: 15px;
}

@media (min-width: 992px) {
    [dir="rtl"] .main-header .sub-item .sub-with-sub ul {
        padding-right: 0;
        right: auto;
        left: -200px;
    }
}

