@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: #7AE1FF;
    font-family: 'Open Sans', sans-serif;
}
a{
    color: black;
}
a:hover{
    text-decoration: none;
    color: black;
}
.custom-container{
    max-width: 1600px;
}
.header-container{
    position: relative;
}
.menu-option{
    height: 80px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.header-menu{
    background: #7AE1FF;
}
.menu-option a{
    color: #46646D;
    font-size: 20px;
    text-decoration: none;
    padding: 23px;
}
.section-bg{
    display: flex;
}
.bg-img{
    background: url(../images/header-bg.jpg);
    width: 100%;
    height: 320px;
    background-position: center top;
}
.title-box{
    text-align: center;
    font-size: 23px;
    font-weight: bold;
    color: #fff;
    padding: 15px 0;
    display: block;
}

/* product-section */
.single-product{
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    width: 187px;
    padding: 12px;
    display: block;
    text-decoration: none;
    position: relative;
    margin-right: 15px;
    position: relative;
}
.single-product img{
    width: 163px;
    height: 163px;
    border-radius: 4px;
    filter: brightness(96%);
    margin-bottom: 12px;
    object-fit: contain;
}
.single-product .new{
    border: 4px solid #3DD293;
    position: absolute;
    font-size: 21px;
    font-weight: bold;
    color: #3DD293;
    border-radius: 6px;
    text-align: center;
    height: 33px;
    width: 68px;
    background: #F5FDFA;
    left: -6px;
    transform: scale(0.5, 0.5);
    line-height: 27px;
    top: 155px;
}
.single-product .text{
    display: block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    color: black;
    font-style: italic;
    line-height: 24px;
}
.price-off{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price-off .del-text{
    display: block;
    text-decoration: line-through;
    font-size: 13px;
    color: #999999;
    font-style: italic;
}
.price-off .off-count {
    font-size: 12px;
    font-weight: 600;
    background: #FF4747;
    color: white;
    height: 20px;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
.product-wrapper{
    display: flex;
    margin-bottom: 15px;
}
/* product-section */
/* slider */
.single-option img{
    width: 72px;
    filter: brightness(96%);
}
.slider-wrapper {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 9px 0;
    margin-bottom: 15px;
    overflow: hidden;
}
.product-title {
    position: absolute;
    top: 82px;
    text-align: center;
    left: 0;
    right: 0;
    font-size: 14px;
    display: flex;
    justify-content: space-around;
}
.single-option {
    padding: 0 32px;
    text-align: center;
    line-height: 17px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.owl-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.no-js .owl-carousel, .owl-carousel.owl-loaded {
    display: flex;
}
.navbar{
    padding: 0;
    top: -1px;
}
.owl-stage-outer{
    padding: 0 16px;
}
.owl-prev{
    position: absolute;
    left: 0;
    line-height: 117px;
    padding: 0 9px;
    background: #fff;
}
.owl-next{
    line-height: 117px;
    padding: 0 9px;
}

/* add-class-via-jquey */
.item.active{
    font-weight: bold;
}
.product-img.img-border {
    border: 2px solid black;
    border-radius: 50%;
    padding: 2px;
}
/* add-class-via-jquey */
/* slider */