@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

*{
    font-family: 'Roboto', sans-serif;
}

html{
    scroll-behavior: smooth;
}

header.sticky{
    padding: 0px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 80px;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,.1), 0 0 2px 0 rgba(0,0,0,.06);
    transition: 0.4s all ease-in-out;
    background: hsla(0,0%,100%,.85);
    -webkit-backdrop-filter: saturate(180%) blur(32px);
    backdrop-filter: saturate(180%) blur(32px);
}

header{
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.1), 0 0 2px 0 rgba(0,0,0,.06); 
}

.hide_s{
    display: none;
}
#stages_slab:hover > .hide_s{
    display: block;
}

.cart_b #num{
    content: "1";
    width: 8px;
    height: 8px;
    position: absolute;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -10px;
    border-radius: 100%;
    top: -10px;
    background-color: red;
    color: white;
}

.right_ui{
    right: 0px;
}

.type_badge:before{
    position: absolute;
    right: -12px;
    top: 0;
    content: "";
    height: 0%;
    width: 0;
    border-left: 8px solid transparent;
    border-top: 8px solid transparent;
    border-color: #007d28 transparent transparent #007d28;
    border-style: solid;
    border-width: 15px 8px 8px 5px;
}

          .swiper-button-next,
          .swiper-button-prev {
            background-color: white;
            background-position: center;
            background-size: 12px;
            width: 18px;
            height: 18px;
            background-repeat: no-repeat;
            padding: 15px;
            border-radius: 100%;
            border: 2px solid #007d28;
          }

          .swiper-button-prev {
            background-image: url("./img/angle-left-solid.svg");
            box-shadow: 0 1px 4px hsla(0,0%,100%,.36);
            margin-right: 20px;
          }

          .swiper-button-next {
            background-image: url("./img/angle-right-solid.svg");
            box-shadow: 0 1px 4px hsla(0,0%,100%,.36);
          }

          .swiper-button-next::after,
          .swiper-button-prev::after {
            content: "";
          }


#logo-cloud{
    animation: logoAnimation 22s linear infinite;
}


@keyframes logoAnimation {
    0% {
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}

.leftd{
    background: linear-gradient(90deg,#ffffff,rgba(11,14,31,0));
}

.rightd{
    background: linear-gradient(90deg,rgba(11,14,31,0),#ffffff);
}

.header_top{
    background-image: url("./img/aboutus_banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

/* for dotted border on cart summary */
.right_summary::before{
    position: absolute;
    content: "";
    background-image: url("./img/dotted-line.svg");
    height: 10px;
    width: 100%;
    left: 0;
    top: -5px;
}

.right_summary::after{
    position: absolute;
    content: "";
    background-image: url("./img/dotted-line.svg");
    height: 10px;
    width: 100%;
    left: 0;
    bottom: -5px;
}


.view-btn{
    display: flex;
text-align: center;
}
.view-btn a{
    background-color: #007D28;
}

.line_line{
    display: none;
}

.product_img{
    height: 200px;
}
.product_img img{
    height:100%;
    width: auto;
    object-fit: contain;
}

.cart_empty_section{
    max-width: 1280px;
    margin: auto;
    width: 85%; 
    background-color: #e3788a;
    color: #ffffff;
    padding: 15px 0px;
    text-align: center;
    font-size:30px;
  }
.add-to-cart-detail-button{
    background-color: darkslateblue;
}

.f-section{
    margin-bottom: 30px;
}
.add-to-cart-detail-button:hover{
    color: #ffffff;
}

.plus-minus-height{
    height: 100%;
}

.cart-section{
    padding-bottom: 50px;
}
.fa-circle-check{
    font-size: 60px;
}
.quantity-button-height{
    height: 100%;
}
.btn-text-center{
    text-align: center;
}
.stage-top-margin{
    margin-top: 60px;
}


/* media query */
  @media screen and (min-width: 1100px) {
    .line_line {
        display: block;
    }
  }