@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v27/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
    font-family: 'Roboto', sans-serif;
    position: relative;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 0.3em;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #eee;
}

body::-webkit-scrollbar-thumb {
    background-color: #fcd34d;
}

svg * {
    fill: currentColor;
}

.z-60 {
    z-index: 60;
}


/*Swiper*/

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #000;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .banner .bannerswiper .swiper-slide img {
    transition: all 7s ease-in-out;
    -webkit-transition: all 7s ease-in-out;
    -moz-transition: all 7s ease-in-out;
    opacity: 0.5;
}

header .banner .bannerswiper .swiper-slide-active img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

header .banner .bannerswiper .swiper-slide .description .title {
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    transform: translateY(10px);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

header .banner .bannerswiper .swiper-slide.swiper-slide-active .description .title {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}

header .banner .bannerswiper .swiper-slide .description .desc {
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    transform: translateY(10px);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition-delay: 0.3s;
}

header .banner .bannerswiper .swiper-slide.swiper-slide-active .description .desc {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}


/* End */


/* Menu */

header .menubar,
header .menubar .menuicon .showmenu {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

header .menubar .menuicon .showmenu {
    color: #000;
    background-color: #fff;
    box-shadow: 0 2px 5px #ccc;
    padding: 5px;
    width: 40px;
}

header .menubar.fixedmenu {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 2px 5px #eee;
}

header .menubar.fixedmenu .fullbox {
    padding-top: 5px;
    padding-bottom: 5px;
}

header .menubar.fixedmenu .logo img {
    width: 70px;
}

header .menubar.fixedmenu .order a {
    padding: 5px 10px;
}

header .menubar.fixedmenu li a {
    color: #000;
    font-size: 0.8rem;
}

header .menubar.fixedmenu li:hover a {
    color: #fcd34d;
}

header .menubar .menulist li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: auto;
    left: -100%;
    width: 100%;
    height: 1px;
    background-color: #fcd34d;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

header .menubar .menulist li:hover a::before,
header .menubar .menulist li a.active::before {
    left: 0;
}

header .menubar .menulist li.dropdown a::before {
    display: none;
}

header .menubar .menulist li.dropdown:hover>a,
header .menubar .menulist li .active {
    color: #fcd34d;
}

header .menubar .menulist li.dropdown ul {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

header .menubar .menulist li.dropdown:hover ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}


/* End */


/* Main */

main section .maintitle p .titleline {
    width: 100px;
}
main section .maintitle p .line {
    width: 0;
    height: 2px;
    background-color: #fcd34d;
    transition: all 2s ease-in-out;
    -webkit-transition: all 2s ease-in-out;
    -moz-transition: all 2s ease-in-out;
}

main section.active .maintitle p .line {
    width: 100%;
}


/* About Us */

main .aboutus .bgimg1 {
    position: absolute;
    right: 0;
    top: 10px;
    z-index: 1;
}

main .aboutus .bgimg2 {
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: 1;
}


/* End */


/* Products */

main .products .item {
    background-color: #000;
}

main .products .item>img {
    opacity: 0.5;
}


/* main .products .item .caption .fullbox {
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    transform: translateY(40px);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition-delay: 0.3s;
}

main .products .item:hover .caption .fullbox {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
    transition-delay: 0s;
}

main .products .item .caption .ordernow {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition-delay: 0s;
}

main .products .item:hover .caption .ordernow {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
    transition-delay: 0.3s;
} */

main .products .item .caption .ordernow {
    overflow: hidden;
    max-height: 0px;
    opacity: 0;
    padding: 0 1rem;
    display: block;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

main .products .item:hover .caption .ordernow {
    max-height: 500px;
    opacity: 1;
    padding: 0.5rem 1rem;
}

main .products .smallitem.oneitem{
    width: 100%;
}


/* End */


/* Discount */

main .discount {
    background-image: url(https://landingstorage.orderiom.io/landing-2/img/dis-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

main .discount .bgimg1 {
    position: absolute;
    background-size: contain;
    right: 0;
    bottom: 0;
    z-index: 0;
}

main .discount .bgimg2 {
    position: absolute;
    left: 0;
    top: 10px;
    z-index: 0;
}

main .discount .item {
    background-color: #000;
}

main .discount .item img {
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

main .discount .item:hover img {
    opacity: 0.2;
}

main .discount .item .caption,
main .discount .item .discountnum {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

main .discount .swiper-container {
    padding-bottom: 70px;
}

main .discount .swiper-button-next,
main .discount .swiper-button-prev {
    position: relative;
    inset: 0;
    width: auto;
    height: auto;
}

main .discount .swiper-button-next:after,
main .discount .swiper-button-prev:after {
    font-size: 20px;
    color: #fff;
}

main .discount .swiper-container,
main .discount .swiper-container .swiper-wrapper,
main .discount .swiper-container .swiper-wrapper .swiper-slide,
main .discount .swiper-container .swiper-wrapper .swiper-slide .item,
main .discount .swiper-container .swiper-wrapper .swiper-slide .item img {
    height: auto !important;
}


/* End */


/* Services*/

main .services .item .icon img {
    margin: auto;
}


/* End */


/* Team */

main .team .item {
    background-color: #000;
}

main .team .item .image img {
    opacity: 0.7;
}


/* End */


/* Gallery */

.lg-backdrop {
    background-color: rgb(0 0 0 / 96%);
}

main .gallery .bgimg1 {
    position: absolute;
    background-size: contain;
    right: 0;
    top: 20%;
    z-index: 1;
}

main .gallery .bgimg2 {
    position: absolute;
    left: 0;
    bottom: 20%;
    z-index: 1;
}

main .gallery .item .view {
    top: 50%;
    transform: translateY(-50%);
}

main .gallery .item .view span {
    opacity: 0;
    display: block;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

main .gallery .item:hover .view span {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}

main .gallery .item img {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

main .gallery .item {
    background-color: #000;
}

main .gallery .item:hover img {
    opacity: 0.5;
}


/* End */


/* .bgtransparent {
    background-color: transparent !important;
}

.whitecolor {
    color: #fff !important;
}

.blackcolor {
    color: #000 !important;
}

.graycolor {
    color: #9ca3af !important;
}

.lightgraycolor {
    color: #d1d5db !important;
} */


/* End */

@media (min-width: 460px) {
    .xs\:inset-x-0 {
        left: 0px;
        right: 0px;
    }
    .xs\:top-0 {
        top: 0px;
    }
    .xs\:justify-center {
        justify-content: center;
    }
    .xs\:hidden {
        display: none;
    }
    .xs\:block {
        display: block;
    }
    .xs\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .xs\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .xs\:order-3 {
        order: 3;
    }
    .xs\:order-4 {
        order: 4;
    }
    .xs\:order-2 {
        order: 2;
    }
    .xs-w-50per {
        width: 50%;
    }
    .xs-w-33per {
        width: 33.333333%;
    }
    .xs-w-66per {
        width: 66.666667%;
    }
}

@media (min-width: 640px) {
    .sm\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .sm-w-50per{
        width: 50%;
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .md\:order-2 {
        order: 2;
    }
    .md\:order-3 {
        order: 3;
    }
    .md\:order-4 {
        order: 4;
    }
    .md-w-25per {
        width: 25%;
    }
    .md-w-60per {
        width: 60%;
    }
    .md-w-40per {
        width: 40%;
    }
    .md-w-50per{
        width: 50%;
    }
    main .gallery .halfheight {
        height:50%;
    }
}

@media (min-width: 1024px) {
    .lg\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .lg-w-25per {
        width: 25%;
    }
    .lg-w-50per {
        width: 50%;
    }
}

@media (max-width:1025px) {
    .container {
        overflow: hidden;
    }
    main .aboutus::before,
    main .aboutus::after,
    main .discount::before,
    main .discount::after,
    main .gallery::before,
    main .gallery::after {
        display: none;
    }
    main .services {
        transform: none !important;
        background-position: center !important;
    }
    main .products .item .caption .ordernow,
    main .products .item .caption .fullbox {
        visibility: visible;
        opacity: 1;
        transform: none !important;
        max-height: 500px !important;
        padding: 0.5rem 1rem !important;
    }
    main .discount .item .order {
        opacity: 1;
        top: auto;
        right: 0;
        bottom: 1rem;
        left: 1rem;
        background: transparent;
        height: auto;
        transform: none;
    }
    main .discount .item .order button {
        opacity: 1;
        transform: none;
    }
}


/* Images Resize */

header .banner .bannerswiper .swiper-slide img,
main .products .item>img,
main .discount .item img,
main .services .total>img,
main .team .item .image img,
main .gallery .item img {
    width: auto !important;
    height: auto !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover;
    object-position: center;
}


/*End*/


/*lightbox style*/

.lightbox .lb-dataContainer {
    margin: 0 auto;
    padding-top: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 10;
}

.lightbox .lb-data {
    padding: 0.5rem 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    background: rgb(0 0 0 / 50%);
    border: solid 4px #fff;
    border-top: 0;
    border-radius: 4px;
}

.lightbox .lb-data .lb-number {
    padding-bottom: 0;
    color: #fff;
}

.lightbox .lb-data .lb-close {
    width: 20px;
    height: 20px;
    background-size: contain;
    opacity: 1;
}


/*End*/


/* mobile menu */

@media (max-width: 1024px) {
    .mobilemenu {
        right: -100000px;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }
    .mobilemenu.active {
        right: 0;
    }
}