body {
    /* background: #fff9e3; */
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

.loader {
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: grid;
    place-content: center;
    transition: 0.5s all ease;
}

#loader-container {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-div {
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border: 8px solid #fff9e3;
    border-top: 8px solid #ff7d01;
    border-radius: 50%;
    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}


.header{
    position: sticky;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 99999999999999;
    box-shadow: 0 0 10px #ddd;
}
.header .headerUp {
    padding: 5px 0px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    width: 100%;
}

.header .headerUp .phoneMail .phone {
    margin-left: 20px;
}

.header .headerUp .phoneMail .phone span {
    font-size: 13px;
    color: #000;
}

.header .headerUp .phoneMail .mail span.icon-envelope,
.header .headerUp .phoneMail .phone span.icon-room {
    color: #ff7d01;
}

.header .headerUp .phoneMail .mail span {
    font-size: 13px;
    color: #000;
}

.header .headerUp .social ul {
    display: flex;
}

.header .headerUp .social ul li {
    font-size: 13px;
    margin-left: 10px;
}

.header .headerUp .social ul li a {
    color: #ff7d01;
}

.dropDown {
    position: relative;
    width: 110px;
    margin-left: 12px;
    cursor: pointer;
    z-index: 111111;
}

.dropDown input[name="DropDown"] {
    background: #ff7d01;
    outline: none;
    border: 1px solid #ff7d01;
    font-size: 15px;
    /*box-shadow: 0px -5px 5px #00515e;*/
    padding: 4px 7px;
    font-size: 14px;
    width: calc(100% - 24px);
    border-radius: 2px;
    cursor: pointer;
    color: #fff;
}

.dropDown input[name="DropDown"]::placeholder {
    color: #fff;
}

.optionUpDown {
    height: 5px;
    border: 5px solid;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    top: 10px;
    right: 11px;
    cursor: pointer;
}

.options {
    background: #fff;
    cursor: pointer;
    /* box-shadow: 0px 0px 10px #ddd; */
    /*margin-top: 2px;*/
    transform: rotateX(90deg);
    transform-origin: top;
    transition: 0.5s all ease;
    position: absolute;
    width: calc(96% - 6px);
    z-index: 9999;
    top: 100%;
    border: 1px solid #ff7d0126;
    z-index: 111111111111111111;
}

.dropDown.active .options {
    transform: rotateX(0deg);
    transform-origin: top;
    transition: 0.5s all ease;
    z-index: 111111111111111111;
}

.options p.option {
    outline: none;
    border-bottom: 1px solid #fff9e3;
    font-size: 14px;
    padding: 6px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 111111111111111111;
}

.options p.option img {
    width: 20px;
}







.icon-close2 {
    display: none!important;
}

.icon-menu {
    display: none!important;
}

.header .logoMenu {
    padding: 8px 0;
    background: #fff;
    z-index: 9999;
}

.header .logoMenu .logo {
    width: 15%;
}

.header .logoMenu .logo a {
    display: block;
    height: 48px;
}

.searchBox {
    width: 50%;
    background: #000;
    padding: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 3px;
}

.searchBox input {
    padding: 8px 10px;
    width: 94%;
    border: none;
}

.searchBox i {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
}



.help {
    margin-right: 10px;
}

.help i {
    font-size: 30px;
    color: #ff7d01;
    margin-right: 10px;
    display: inline-block;
}

.help h6 {
    text-align:right;
}

.help h4 {}

.help a {
    /* color: #ff7d01; */
    color: #000;
}



nav {
    background: #ff7d01;
    padding: 5px 0;
}

nav .menu ul li {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    transition: 0.5s all ease;
    position: relative;
}

nav .menu ul li a {
    color: #fff;
}

nav .menu ul li.active,
nav .menu ul>li:hover {
    transition: 0.5s all ease;
    box-shadow: inset 0px 0px 15px #ff7d01;
    border-radius: 5px;
}

nav .menu ul li ul {
    position: absolute;
    left: 0;
    z-index: 9999;
    background: #fff;
    top: 100%;
    border-radius: 4px;
    /* padding: 10px; */
    width: 300px;
    transform: rotateX(90deg);
    transform-origin: top;
    transition: 0.5s all ease;
    height: 70vh;
    overflow-y: scroll;
}

body::-webkit-scrollbar,
nav .menu ul li ul::-webkit-scrollbar,
.ourProducts .left ul li ul::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-track,
nav .menu ul li ul::-webkit-scrollbar-track,
.ourProducts .left ul li ul::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #fff;
}

body::-webkit-scrollbar-thumb,
nav .menu ul li ul::-webkit-scrollbar-thumb,
.ourProducts .left ul li ul::-webkit-scrollbar-thumb {
    background-color: #ff7d01;
    outline: 1px solid #ff7d01;
    border-radius: 5px;
}

nav .menu ul li:hover ul {
    transform: rotateX(0deg);
    transition: 0.5s all ease;
}

nav .menu ul li ul li {
    border-bottom: 1px solid #ff7d0133;
}

nav .menu ul li ul li:last-child {
    border-bottom: none;
}

nav .menu ul li ul li:hover {
    transition: 0.5s all ease;
    box-shadow: inset 0px 0px 15px transparent;
    border-radius: 5px;
}

nav .menu ul li ul li a {
    color: #000;
}

nav .menu ul li ul li:hover a {
    color: #ff7d01;
}

nav .menu ul li a {
    color: #fff;
}

nav .menu ul li a {}

nav .login {
    margin-left: 15px;
}

nav .login .openEnq {
    padding: 8px 30px;
    background: #000;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #d96b00;
    border-radius: 4px;
    transition: 0.5s all ease;
    cursor: pointer;
}

nav .login .openEnq:hover {
    background: #fff;
    color: #000;
}


.carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin: 0 auto;
    height: 80vh;
}

.carousel .carousel-item {
    position: relative;
}

.carousel .carousel-item,
.carousel-item-visible {
    display: none;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    animation: sliderzoom 20s linear infinite;
}

@keyframes sliderzoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.5);
    }
}


.carousel .carousel-item-visible {
    display: block;
    animation: fadeVisibility 0.5s;
}

.carousel .carousel-item .carDetails {
    background: #00000082;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    height: 80vh;
    display: flex;
    align-items: center;
}

.carousel .carousel-item .carDetails .container {
    /* padding-left: 250px; */
}

.carousel .carousel-item .carDetails h4 {
    display: inline-block;
    padding: 10px 35px;
    color: #fff;
    margin: 35px 0px 25px 0;
    background-color: #000;
    line-height: 32px;
    letter-spacing: 2.3133px;
    font-weight: 400;
    font-size: 16px;

}

.carousel .carousel-item .carDetails h4 a {
    color: #fff;
}

.carousel .carousel-item .carDetails h1.stroke {
    font-size: 48px;
    font-weight: 900;
    color: transparent;
    margin-bottom: 15px;
    fill: none;
    font-family: "Roboto", Sans-serif;
    -webkit-text-stroke: 1px #fff;
    letter-spacing: 2px;
}

.carousel .carousel-item .carDetails h1.aes {
    font-size: 55px;
    font-weight: 700;
    color: transparent;
    margin-bottom: 20px;
    font-family: "Roboto", Sans-serif;
    color: #fff;
    letter-spacing: 2px;
}

.carousel .carousel-item .carDetails h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;

}

.carousel .carousel-item .carDetails img {
    width: 120px;
    height: 120px;
    margin-bottom: 80px;
    margin-top: 30px;
}

.carousel .carousel-item .carDetails p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.carousel .carousel-item .carDetails p a {
    display: inline-block;
    background: #ff7d01;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 99;
    transition: 1s all ease;
    margin-right: 15px;
}

.carousel .carousel-item .carDetails p a:hover {
    background: #16243d;
    color: #fff;
}

.carousel .carousel-item .carDetails p a::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #16243d;
    color: #fff;
    transform: rotateX(90deg);
    transform-origin: bottom;
    transition: 0.4s all ease;
    z-index: 1;
    border-radius: 50% 50% 0% 0%;
}

.carousel .carousel-item .carDetails p a:hover::before {
    transform: rotateX(0deg);
    transform-origin: bottom;
    border-radius: 0%;
    bottom: 100%;
}

.carousel .carousel-item .carDetails p a.getOffer {
    background: none;
    border: 1px solid #fff;
    display: inline-block;
    padding: 11px 38px;
}

.carousel .carousel-item .carDetails p a.getOffer:hover {
    background: #fff;
    color: #ff7d01;
}

.carousel .carousel-actions {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel .carousel-actions div {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-indent: 0;
    outline: none;
    border: 2px solid #ff7d01;
    background: none;
    color: #ff7d01;
    display: grid;
    place-content: center;
    margin: 0px 10px;
}

.carousel .carousel-actions button:focus {
    border: none;
}

.carousel .carousel-actions button#carousel-prev {
    margin-left: 20px;
}

.carousel .carousel-actions button#carousel-next {
    margin-right: 20px;
}

@keyframes fadeVisibility {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
        transform: opacity linear;
    }
}



.aboutUs {
    padding: 90px 0;
}

.aboutUs .container {
    gap: 3.5%;
}

.aboutUs .left {
    width: 46%;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.aboutUs .left img {
    border-radius: 10px;
}

.aboutUs .left .img1{
    width: 48%;
    height: 400px;
}
.aboutUs .left .img2{
    width: 48%;
    height: 400px;
    margin-top: 25px;
}

.aboutUs .right {
    position: relative;
    width: 46%;
}

.aboutUs .right h4 {
    font-weight: 500;
    font-style: normal;
    color: #ff7d01;
    font-size: 22px;
    margin-bottom: 20px;
    background: #fff9e3;
    display: inline-block;
    padding: 5px 12px;
}

.aboutUs .right h1 {
    font-weight: 500;
    font-style: normal;
    color: #202020;
    font-size: 32px;
    margin-bottom: 20px;
}

.aboutUs .right h1 span {
    color: #ff7d01;
}

.aboutUs .right p {
    color: #000;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 25px;
}

.aboutUs .right .year {
    margin-right: 20px;
}

.aboutUs .right .year h2 {
    font-size: 22px;
    color: #ff7d01;
}

.aboutUs .right .year p {
    font-size: 11px;
    color: #000;
}





.ourProducts {
    padding: 70px 0px;
    background: #f1f1f1;
}

.ourProducts .container {}

.ourProducts .left {
    width: calc(23% - 40px);
    padding: 20px;
    background: #fff9e3;
    border-radius: 10px 0 0 10px;
    box-shadow: -1px 0px 1px #ddd;
    z-index: 1111;
}

.ourProducts .left h5 {
    color: #ff7d01;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.ourProducts .left h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}

.ourProducts .left p {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 20px;
}

.ourProducts .left ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ourProducts .left ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ff7d01;
    border-radius: 25px;
    padding: 6px 15px;
    font-size: 14px;
    cursor: pointer;
    position: relative;
}

.ourProducts .left ul li ul {
    position: absolute;
    background: #fff;
    top: 100%;
    z-index: 11;
    padding: 12px;
    width: calc(100% - 24px);
    left: 0;
    transform: rotateX(90deg);
    transform-origin: top;
    transition: 0.5s all ease;
    box-shadow: 0 0 5px #ddd;
    height: 265px;
    overflow-y: scroll;
    z-index: 999999;
}

.ourProducts .left ul li ul.active {
    transform: rotateX(0deg);
    transition: 0.5s all ease;
    z-index: 999999;
}

.ourProducts .left ul li ul li {
    font-size: 12px;
}

.ourProducts .left ul li ul li a {
    color: #000;
}

.ourProducts .left ul li.active {
    background: #ff7d01;
}

.ourProducts .left ul li.active span {
    color: #fff;
}

.ourProducts .left ul li i {
    background: #ff7d01;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    color: #fff;
}

.ourProducts .left ul li.active i {
    background: #ffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    color: #ff7d01;
}

.ourProducts .right {
    width: calc(77% - 20px);
    border: 1px solid #ffeba3;
    padding: 20px;
    background: #fff;
    box-shadow: 1px 0px 1px #ddd;
    z-index: 1;
}

.ourProducts .allProducts {
    display: flex;
    gap: 2.2%;
    row-gap: 25px;
    flex-wrap: wrap;
}

.ourProducts .allProducts .singleSer {
    width: calc(23% - 30px);
    background: #fff;
    padding: 15px;
    box-shadow: 0 0 5px #ff7d0126;
    border: 1px solid #ffeba3;
    border-radius: 3px;
    transition: 0.5s all ease;
}

.ourProducts .allProducts .singleSer:hover {
    transform: scale(1.05);
    transition: 0.5s all ease;
}

.ourProducts .allProducts .singleSer img {
    border: 1px solid #ff7d0133;
    margin-bottom: 12px;
    transition: 1s all ease;
}

.ourProducts .allProducts .singleSer:hover img {
    transform: rotateY(360deg);
    margin-bottom: 20px;
    transition: 1s all ease;
}

.ourProducts .allProducts .singleSer .data {}

.ourProducts .allProducts .singleSer .data h4 {
    text-align: center;
}

.ourProducts .allProducts .singleSer .data h4 a {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ff7d01;
    text-align: center;
}

.ourProducts .allProducts .singleSer .data p {
    color: #fff;
    text-align: center;
}

.ourProducts .allProducts .singleSer .data p a {
    font-size: 11px;
    font-weight: normal;
    line-height: 1em;
    letter-spacing: 2px;
    background: #ff7d01;
    color: #FFFFFF;
    border-radius: 25px;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 10%);
    padding: 10px 20px 10px 20px;
    border: 1px solid #fff;
    transition: 0.5s all ease;
    display: inline-block;
    margin-bottom: 10px;
}

.ourProducts .allProducts .singleSer .data p a:hover {
    background: transparent;
    color: #ff7d01;
    border: 1px solid #ff7d01;
}








.letestOffer {
    display: none;
    gap: 3%;
    row-gap: 35px;
    flex-wrap: wrap;
}

.letestOffer .singleSer {
    width: calc(48% - 30px);
    /*background: #fff9e3;*/
    padding: 15px;
    /* box-shadow: 0 0 5px #ddd; */
    border: 1px solid #ffeba3;
    border-radius: 3px;
    transition: 0.5s all ease;
}

.letestOffer .singleSer:hover {
    transform: scale(1.05);
    transition: 0.5s all ease;
}

.letestOffer .singleSer img {
    /* border: 1px solid #ff7d0133; */
    margin-bottom: 12px;
    transition: 1s all ease;
    /*height: 300px;*/
}

.letestOffer .singleSer:hover img {
    transform: rotateY(360deg);
    margin-bottom: 20px;
    transition: 1s all ease;
}

.letestOffer .singleSer .data {
    background: #ff7d01;
    padding: 10px 0;
    border-radius: 2px;
}

.letestOffer .singleSer .data h4 {
    text-align: center;
    color: #fff;
}

.letestOffer .singleSer .data h4 a {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
    text-align: center;
}

.letestOffer .singleSer .data p {
    color: #fff;
    text-align: center;
}

.letestOffer .singleSer .data p a {
    font-size: 11px;
    font-weight: normal;
    line-height: 1em;
    letter-spacing: 2px;
    background: #ff7d01;
    color: #FFFFFF;
    border-radius: 25px;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 10%);
    padding: 10px 20px 10px 20px;
    border: 1px solid #fff;
    transition: 0.5s all ease;
    display: inline-block;
    margin-bottom: 10px;
}

.letestOffer .singleSer .data p a:hover {
    background: transparent;
    color: #ff7d01;
    border: 1px solid #ff7d01;
}



/* history */
.history {
    width: 100%;
    padding: 70px 0px;
    background: #000;
    background: linear-gradient(#00000066, #00000066), url('img/bg.jpg') no-repeat center / cover;
    position: relative;
    /* clip-path: polygon(0 0, 0 51%, 0 85%, 50% 100%, 100% 85%, 100% 48%, 100% 0, 50% 15%); */
}

.history .shape1 {
    width: 300px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.5;
    animation: shape 2s infinite alternate-reverse;
}

.history .shape2 {
    width: 300px;
    position: absolute;
    right: 0;
    bottom: 0;
    animation: shape 2s infinite alternate-reverse;
}

.history span {
    font-size: 30px;
    border: 4px solid #d96b00;
    padding: 20px;
    border-radius: 50%;
    background: #ff7d01;
    display: inline-block;
    margin-right: 12px;
    width: 35px;
    height: 35px;
    display: grid;
    place-content: center;
}

.history h2 {
    font-size: 25px;
    text-align: left;
}

.history h5 {
    font-size: 15px;
}



.gotop {
    background: #ff7d01;
    position: fixed;
    top: 90vh;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 20px;
    cursor: pointer;
    display: grid;
    place-content: center;
    opacity: 0;
    -webkit-transition: .5s ease;
    transition: .5s ease;
    z-index:9999;
}

.gotop.sticky {
    opacity: 1;
}

.gotop p {
    text-align: center;
}

.gotop p a {
    color: #000;
    font-size: 15px;
}






/* .popup{ */
.popup {
    background: #0000008c;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999999999999;
    display: grid;
    place-content: center;
    transform: scale(0);
    transition: 0.5s all ease;
}

.popup.active {
    transition: 0.5s all ease;
    transform: scale(1);
}

.popup .inqure {
    background: #ffffff;
    width: 360px;
    /* height: 560px; */
    position: relative;
    border-radius: 10px;
    border: 5px solid #ff7d01;
}

.popup .inqure .left {
    width: calc(100% - 100px);
    padding: 15px 50px;
}

.popup .inqure .left .log {
    text-align: center;
    margin-bottom: 20px;
}

.popup .inqure .left .log img {
    width: 120px;
}

.popup .inqure .left form {}

.popup .inqure .left form h3 {
    text-align: center;
    font-size: 18px;
    color: #ff7d01;
    margin-bottom: 15px;
    font-weight: 500;
}

.popup .inqure .left form .controll {
    margin-bottom: 15px;
}

.popup .inqure .left form .controll label {
    display: block;
    font-size: 14px;
}

.popup .inqure .left form .controll input,
.popup .inqure .left form .controll textarea {
    width: calc(100% - 30px);
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.popup .inqure .left form input[type="submit"] {
    width: 100%;
    background: #ff7d01;
    padding: 12px 0;
    border-radius: 3px;
    border: none;
    color: #fff;
    font-size: 13px;
}

.popup .inqure .add {
    background: #f5f5f5;
}

.popup .inqure .add .left {
    width: calc(50% - 60px);
    padding: 15px 30px;
}

.popup .inqure .add .left h2 {
    font-size: 26px;
    font-weight: 600;
}

.popup .inqure .add .left h4 {
    font-size: 20px;
    font-weight: 400;
}

.popup .inqure .add .right {
    width: calc(50% - 60px);
    padding: 15px 20px;
    text-align: right;
}

.popup .inqure .add .right p {
    font-size: 18px;
    line-height: 36px;
}

.popup .inqure .add .right p b {
    color: #ff7d01;
    display: inline-block;
}

.popup .inqure .add .right p a {
    font-size: 12px;
    display: inline-block;
    padding: 5px 22px;
    background: #ff7d01;
    border-radius: 3px;
    color: #fff;
    margin-left: 10px;
}

.popup .icon-close2 {
    color: #ff7d01;
    font-size: 20px;
    background: #ff7d0130;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 8px;
    cursor: pointer;
    display: inline-block!important;
}





.bestSelling{
    padding: 70px 0;
}
.bestSelling .left{
    width: 25%;
}
.bestSelling .left img{}
.bestSelling .right{
    padding: 0 20px 20px 20px;
    width: calc(75% - 40px);
}
.bestSelling .right h2{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #f1f1f1;
    border-bottom: 1px solid #ffeba3;
    padding-bottom: 15px;
}
.bestSelling .right .bestSell{
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    row-gap: 20px;
}
.bestSelling .right .bestSell .sinSel{
    width: calc(29.6% - 30px);
    padding: 15px;
    display: flex;
    align-items: center;
    border: 1px solid #f1f1f1;
    border: 1px solid #ffeba3;
    border-radius: 3px;
    gap: 3%;
    /* background: #fff9e3; */
}
.bestSelling .right .bestSell .sinSel .img{
    width: 40%;
    /* background: #fff9e3; */
    padding: 5px;
}
.bestSelling .right .bestSell .sinSel .img img{}
.bestSelling .right .bestSell .sinSel .info{}
.bestSelling .right .bestSell .sinSel .info h4{
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ff7d01;
    color: #000;
}
.bestSelling .right .bestSell .sinSel .info p{
    font-size: 12px;
    background: #000;
    background: #ff7d01;
    display: inline-block;
    padding: 5px 12px;
    cursor: pointer;
    color: #fff;
    border-radius: 2px;
}







.testimonial{
    padding: 70px 0;
    background: #f1f1f1;
}
.testimonial h2{
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}
.testimonial h2::before{
    content: "";
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, #fff, #ff7d01, #fff);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.testimonial h2::after{
    content: "";
    width: 10px;
    height: 10px;
    background: #ff7d01;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #fff;
    border-radius: 50%;
}
.testimonial .slider{}
.testimonial .slider .item{
    margin: 0 8px;border: 1px solid #ffeba3;padding: 20px;height: 220px;border-radius: 5px;
    background: #fff;
}
.testimonial .slider .item .head{display: flex;justify-content: space-between;align-items: flex-start;margin-bottom: 15px;}
.testimonial .slider .item .head img{width: 55px;}
.testimonial .slider .item .head .data{margin-left: 8px;}
.testimonial .slider .item .head .data h3{font-size: 14px;color: #5d6f80;font-weight: 600;}
.testimonial .slider .item .head .data ul{display: flex;}
.testimonial .slider .item .head .data ul li{color: #ea7000;}
.testimonial .slider .item .head .data h6{font-size: 10px;font-weight: 500;}
.testimonial .slider .item .head img.location{width: 20px;}
.testimonial .slider .item p{font-size: 13px;line-height: 24px;}

.testimonial .slick-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
}
.testimonial .slick-dots li button {
    padding: 4px;

}
.testimonial .slick-dots li.slick-active button {
   background: #ff7d01;

}








.wholesale{
    padding: 65px 0;
    text-align: center;
}
.wholesale h2{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #ff7d01;
}
.wholesale p{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 30px;
    color: #737373;
}

.logoSlider .item{
    /* box-shadow: 0px 0px 10px #ddd; */
    /* height: 120px; */
    border-radius: 5px;
    display: flex;
    justify-content: center;
}
.logoSlider .item img{
    width: 80%;
}
.logoSlider .slick-slide{
    margin: 10px;
}











/* Footer */
.footer{
	background: #000000;
	padding: 50px 0px 0px 0px;
}
.footer .container{
    gap: 3%;
}
.flogo{
    flex: 1.5;
}
.flogo a{
    display: block;
    margin-bottom: 20px;
}
.flogo img{
    width: 200px;
}
.flogo p,
.fSocial p{
    color: #c7c7c7;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 15px;
}
.flogo ul li a span{
    font-size: 13px;
    color: #c7c7c7;
}

.Company, 
.account, 
.fSocial{
    flex: 1;
    margin-bottom: 20px;
}
.kuteShop h4, 
.Company h4, 
.account h4, 
.fSocial h4{
	margin-bottom: 20px;
	color: #f1f1f1;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
}
.Company ul, 
.account ul{
	display: block;
} 
.Company ul li, 
.account ul li{
	display: flex;
    align-items: center;
	font-size: 13px;
	margin: 8px 0px;
    line-height: 24px;
}

.Company ul li a, 
.account ul li a{
	color: #c7c7c7;
}

.Company ul li i, 
.account ul li i{
	color: #ff7d01;
    margin-right: 10px;
}
ul.socialIcon{
	margin-bottom: 10px;
    display: flex;
}
ul.socialIcon li a{
    background: #fff;
	color: #ff7d01!important;
	display: grid;
	place-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	font-size: 13px;
    margin-right: 10px;
}
ul.socialIcon li a span{
	color: #000;
}


.fSocial ul.contactDetails{
    justify-content: left;
    margin-bottom: 10px;
}
.fSocial ul.contactDetails li{
    font-size: 13px;
    margin-bottom: 10px;
}
.fSocial ul.contactDetails li a{
    color: #fff;
    display: flex;
    align-items: center;
}
.fSocial ul.contactDetails li a i{
    color: #000;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    margin-right: 10px;
}



.copyRight{
	padding: 12px 0px;
	color: #000;
	font-size: 14px;
    background-color: #ff7d01;
}


.whatsapp{
    position: fixed;
    top: 90vh;
    left: 20px;
    cursor: pointer;
    display: grid;
    place-content: center;
    -webkit-transition: .5s ease;
    transition: .5s ease;
    z-index:9999;
}
.whatsapp p{
    display: flex;
    align-items: center;
}
.whatsapp p i{
    width: 50px;
    height: 50px;
    background: #49e670;
    display: grid;
    place-content: center;
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
    margin-right: 15px;
    position: relative;
}
.whatsapp p i::after{
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #49e670;
}
.whatsapp p span{
    background: #fff;
    padding: 5px 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px #000;
    color: #000;
}
/* Footer */






/* Products Page */
.banner{
    width: 100%;
    padding: 70px 0px;
    background: #000;
    background: linear-gradient(#00000066, #00000066), url('img/bg.jpg') no-repeat center center / cover;
}
.banner h2{
    color: #fff;
    font-size: 25px;
    text-align: center;
    font-weight: 500;
}


.productList{
    padding: 70px 0;
    background: #fcfcfc;
}
.productList .container{
    align-items: flex-start;
    gap: 2%;
}
.productList .left{
    width: 23%;
    background: #fff9e3;
    background: #fff;
    border-radius: 10px 0 0 10px;
    border: 1px solid #ffeba3;
    border: 1px solid #ddd;
    /* box-shadow: 0 0 5px #ff7d0126; */
    overflow: hidden;
}
.productList .left .category{}
.productList .left .category h4{
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    background: #ff7d01;
    padding: 8px 0;
    color: #fff;
}
.productList .left .category ul{
    background: #fff;
    margin: 15px;
    border: 1px solid #ddd;
    border: 1px solid #ffeba3;
    /* box-shadow: 0 0 5px #ff7d0126; */
}
.productList .left .category ul li a{
    font-size: 12px;
    font-weight: 400;
    color: #000;
    padding: 5px 12px;
    display: block;
    border-top: 1px solid #ddd;
    border-top: 1px solid #ffeba3;
    background: #fff9e3;
}
.productList .left .category ul li.active a{
    color: #fff;
    background: #ff7d01;
}
.productList .left .category ul li:first-child a{
    border-top:  none;
}
.productList .right {
    width: calc(77% - 20px);
    /* border: 1px solid #ffeba3; */
    /* background: #fff; */
}

.productList .allProducts {
    display: flex;
    gap: 2.2%;
    row-gap: 25px;
    flex-wrap: wrap;
}

.productList .allProducts .singleSer {
    width: calc(23% - 30px);
    background: #fff;
    padding: 15px;
    /* box-shadow: 0 0 5px #ff7d0126; */
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: 0.5s all ease;
}

.productList .allProducts .singleSer:hover {
    transform: scale(1.05);
    transition: 0.5s all ease;
}

.productList .allProducts .singleSer img {
    border: 1px solid #ff7d0133;
    margin-bottom: 12px;
    transition: 1s all ease;
}

.productList .allProducts .singleSer:hover img {
    transform: rotateY(360deg);
    margin-bottom: 20px;
    transition: 1s all ease;
}

.productList .allProducts .singleSer .data {}

.productList .allProducts .singleSer .data h4 {
    text-align: center;
}

.productList .allProducts .singleSer .data h4 a {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ff7d01;
    text-align: center;
}

.productList .allProducts .singleSer .data p {
    color: #fff;
    text-align: center;
}

.productList .allProducts .singleSer .data p a {
    font-size: 11px;
    font-weight: normal;
    line-height: 1em;
    letter-spacing: 2px;
    background: #ff7d01;
    color: #FFFFFF;
    border-radius: 25px;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 10%);
    padding: 10px 20px 10px 20px;
    border: 1px solid #fff;
    transition: 0.5s all ease;
    display: inline-block;
    margin-bottom: 10px;
}

.productList .allProducts .singleSer .data p a:hover {
    background: transparent;
    color: #ff7d01;
    border: 1px solid #ff7d01;
}
/* Products Page */









.newCustomers{
    padding: 75px 0;
    background: #fcfcfc;
}
.newCustomers .getInTouch{
    display: flex;
    gap: 3%;
    border: 1px solid #ddd;
    padding: 20px;
    background: #fff;
}
.newCustomers .getInTouch .left{
    border: 4px solid #ff7d01;
    padding: 10px;
    border-radius: 5% 50% 50% 50%;
    width: 47%;
}
.newCustomers .getInTouch .left img{
    border-radius: 5% 50% 50% 50%;
}
.newCustomers .getInTouch .right{
    width: 47%;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}
.newCustomers .getInTouch .right h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.newCustomers .getInTouch .right p{
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 10px;
    color: #111111;
}
.newCustomers .getInTouch .right form{}
.newCustomers .getInTouch .right form input,
.newCustomers .getInTouch .right form select,
.newCustomers .getInTouch .right form textarea{
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}
.newCustomers .getInTouch .right form input[type="text"]{
    width: calc(48% - 30px);
}
.newCustomers .getInTouch .right form input[type="email"]{
    width: calc(48% - 30px);
}
.newCustomers .getInTouch .right form input[type="tel"]{
    width: calc(100% - 30px);
}
.newCustomers .getInTouch .right form select{
    width: 100%;
}
.newCustomers .getInTouch .right form textarea{
    width: calc(100% - 30px);
}
.newCustomers .getInTouch .right form input[type="submit"]{
    background: #ff7d01;
    border: 1px solid #ff7d01;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
}






.contactUs{
    padding: 100px 0;
    background: #fafafa;
}
.contactUs .container{
    gap: 5%;
}
.contactUs .left{
    width: 25%;
    background: #fff;
    border: 1px solid #ddd;
    padding: 25px;
}
.contactUs .left h4{
    color: #081640;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contactUs .left p{
    display: flex;
    align-items: flex-start;
    color: #6D6F72;
    margin-bottom: 15px;
}
.contactUs .left p i{
    color: #ff7d01;
    display: inline-block;
    margin-top: 5px;
    margin-right: 15px;
    font-size: 20px;
}
.contactUs .left p span{
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
}
.contactUs .left p a,
.contactUs .left h3 a{
    display: flex;
    align-items: center;
}
.contactUs .left p a i{
    color: #ff7d01;
    display: inline-block;
    margin-top: 0px;
    margin-right: 15px;
    font-size: 20px;
}
.contactUs .left p a span{
    color: #6D6F72;
}
.contactUs .left h3 a i{
    color: #ff7d01;
    display: inline-block;
    margin-top: 0px;
    margin-right: 15px;
    font-size: 20px;
}
.contactUs .left h3 a span{
    color: #081640;
}
.contactUs .right{
    width: 70%;
    background: #fff;
    border: 1px solid #ddd;
    padding: 25px;
}
.contactUs .right form{}
.contactUs .right form .flex-between-center.column{
    gap: 4%;
    margin-bottom: 20px;
}
.contactUs .right form .input-control{
    border-bottom: 1px solid #ddd;
    width: 50%;
    display: flex;
    padding-bottom: 5px;
    position: relative;
}
.contactUs .right form .input-control::after{
    content: "";
    position: absolute;
    height: 1px;
    width: 0%;
    background: #ff7d01;
    left: 0;
    bottom: 0;
    transition: 0.5s ease;
}
.contactUs .right form .input-control:hover::after{
    width: 100%;
    transition: 0.5s ease;
}
.contactUs .right form .input-control.textarea{
    width: 100%;
}
.contactUs .right form .input-control i{
    display: inline-block;
    padding: 6px;
    color: #ff7d01;
}
.contactUs .right form .input-control input{
    width: 100%;
    padding: 6px;
    border: none;
}
.contactUs .right form .input-control input::placeholder,
.contactUs .right form .input-control textarea::placeholder{
    color: #000;
}
.contactUs .right form .input-control textarea{
    width: 100%;
    padding: 6px;
    border: none;
}
.contactUs .right form .submit{
    background: #ff7d01;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    border: none;
}
.contactUs .right form .submit i{
    margin-right: 15px;
}
.contactUs .right form .submit input[type="submit"]{
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}


.loc{
    padding: 50px 0;
}
/* .gp2{
    gap: 4%;
} */
.loc .left{
    /* width: calc(48% - 60px); */
    width: calc(100% - 60px);
    box-shadow: 0 0 5px #ddd;
    padding: 15px 30px 30px 30px;
}
.loc h4{
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    color: #ff7d01;
}
.loc iframe{
    width: 100%;
}



.footermenu {
    display: none;
}