/*
*   1- variables
*   2- custom class
*   3- navbar
*   4- slider
*/

/* -----------  variables ------------ */
:root{
    --color-main-darker: #f4e100;
    --color-main: #fdf033;
    --color-main-lighter : #fff396;
    --color-second-darker: #4bdcdc;
    --color-second: #96eae3;
    --color-second-lighter : #b5f4ef;
}


body{
    font-family: 'Nunito', sans-serif;
    /* santral */
    position: relative;
}
body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1; }
body.offcanvas-menu:before {
    opacity: 1;
    visibility: visible;
}


/* ------------ custom class ----------- */
.btn-main{
    color: black;
    border-color: var(--color-main-darker);
    background-color: var(--color-main);
    border-radius: 50px;
    font-weight: bold;

}
.btn-md{
    font-size: 28px !important;
    font-weight: 600 !important;
    line-height: 1;
}
.btn-lg{
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1;
}
.btn-main:hover , .btn-main:focus{
    color: var(--color-second-darker);
    border-color: var(--color-main-darker);
    background-color: var(--color-main);
}
.btn-main:not(:disabled):not(.disabled).active,
 .btn-main:not(:disabled):not(.disabled):active,
 .show > .btn-main.dropdown-toggle{
    background-color: var(--color-main);
    border-color: var(--color-main-darker);
 }
 .btn-main.btn-main:focus , .btn-main:focus{
    color: var(--color-second-darker);
    background-color: var(--color-main);
    border-color: var(--color-main-darker);
    box-shadow: 0 0 0 .2rem rgba(var(--color-main-darker),.5);
 }


 .form-control:focus{
     box-shadow: none;
 }


/* ------------ top section ------------ */
#top-section{
    background-color: #4bdcdc;
}
#lang-select{
    width: 30px;
}
.select2-container--default .select2-selection--single{
    height: 30px ;
    outline: none ;
    border: none ;
    border-radius: 50% ;
    overflow : hidden;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single{
    border-radius: 50%;
}
.select2-selection__arrow b {
    display: none;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    padding-left: 0 ;
    padding-right: 0;
}
.select2-dropdown{
    border: 0;
}
.select2-container--default .select2-results > .select2-results__options{
    overflow-y: hidden;
    background-color: white;
    margin-top: 5px;
}
.select2-results__option{
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-top: 0;
    background-color: white;
}
.select2-results__option p{
    margin-bottom: 0;
}
.select2-results__option--highlighted{
    background-color: yellow;
}
.select2-results{
    position: absolute;
    left: -20px;
}
/* ------------ end top section ------------ */
/* ------------ navbar ------------ */
#home-top-nav{
    min-height: 50px;
    background-color: var(--color-second-darker);
    /* border-bottom: 2px solid var(--color-main); */
}
#home-top-nav .nav-item{
    margin-left: 8px;
    margin-right: 8px;
}
#home-top-nav .nav-link
{
    color: white;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
}

#home-top-nav .nav-link:hover , #home-top-nav .nav-link:focus , #home-top-nav .nav-item.active .nav-link{
    color: var(--color-main);
    transition: color .4s ease;
    /* border-bottom: 1px solid var(--color-main); */
}
#home-top-nav .navbar-toggler , #home-top-nav .navbar-toggler:active , #home-top-nav .navbar-toggler:focus{
    border: 0;
}
#home-top-nav .navbar-toggler span{
    border: 0;
    color: white;
    font-size: 24px;
}
#home-top-nav .nav-item.has-children {
    position: relative;
}
#home-top-nav .nav-item.has-children .dropdown {
    visibility: hidden;
    opacity: 0;
    top: 100%;
    position: absolute;
    text-align: left;
    border-top: 2px solid #fdf033;
    -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    margin-top: 20px;
    margin-left: 0px;
    background: #fff;
    -webkit-transition: 0.2s 0s;
    -o-transition: 0.2s 0s;
    transition: 0.2s 0s;
}
#home-top-nav .nav-item.has-children:hover > .dropdown, #home-top-nav .nav-item.has-children:focus > .dropdown, #home-top-nav .nav-item.has-children:active > .dropdown {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
}
#home-top-nav .nav-item.has-children .dropdown > li {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
}
#home-top-nav .nav-item.has-children .dropdown a {
    text-transform: none;
    letter-spacing: normal;
    -webkit-transition: 0s all;
    -o-transition: 0s all;
    transition: 0s all;
    color: #343a40;
  }

.logo{
    width: 50px;
    height: 50px;
}
/* ------------ slider ------------ */
#home-slider .carousel-item img{
    object-fit: cover;
    height: 56vw;
    width: 100%;
    max-height: calc(100vh - 50px);
    min-height: 250px;
}
#home-slider .carousel-item{
    position: relative;
}
.img-overlay-color{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-second-darker);
    opacity: 0.7;
}
.carousel-control-next,
.carousel-control-prev{
    filter: invert(100%);
}
.img-overlay-text{
    position: absolute;
    top:0;
    bottom:0;
    left: 12%;
    right: 12%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.img-overlay-text h2{
    color: white;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1.5em;
    text-transform: uppercase;
    font-family: 'Fredoka One', cursive;
    background-color: rgba(0, 0, 0, 0.7);
    padding: .25em;
}
#home-slider .carousel-item  .img-overlay-text a{
    text-transform: capitalize;
}

/* ******** product-section ********** */
.product-img{
    /* min-height: 400px; */
    /* max-height: 600px; */
    /* background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */
}
/* .product-img.p-img-1{
    background-image: url('/images/IMG_7183-1.jpg');
}
.product-img.p-img-2{
    background-image: url('/images/IMG_7192-1.jpg');
}
.product-img.p-img-3{
    background-image: url('/images/IMG_7043-1.jpg');
} */
/* .product-img img{
    width: 100%;
    height: 100%;
    max-height:  800px;
    object-fit: cover;
    object-position: center;
} */
.product-card{
    /* padding : 3em 4em 1em 4em; */
}
.product-card h2{
    color: black;
    font-weight: bold;
}
.product-card > span{
    color: black;
    font-size: 26px;
    font-weight: bold;
    border-bottom: 4px solid var(--color-second-darker);
    display: inline-block;
    margin-bottom: 24px;
}
.product-card p{
    text-align: justify;
    line-height: 2;
}

.product-feature-wrapper{
    margin-top: 16px;
    padding: 1rem;
    position: relative;
}
.product-feature-wrapper:before {
    content: "";
    position: absolute;
    left: 0;
    z-index: 100;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--color-main);
}
/* .product-feature-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 100;
    top: 0;
    width: 50%;
    height: 3px;
    background: var(--color-second-darker);
} */
.product-feature-item span:first-child{
    text-transform: capitalize;
    font-weight: bold;
    display: inline-block;
    margin: 4px 8px 4px 0 ;
}
.product-feature-item span:last-child{
    margin-left: 4px;
}

.texture-grains-size{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.texture-grains-size .toop {
    background: var(--color-second-darker);
    border-radius: 50%;
    height: 6px;
    margin: 0 5px;
    opacity: .2;
    width: 6px;
    display: inline-block;
}
.texture-grains-size .toop.active {
    background-color: black;
}
.texture-grains-size .toop:nth-child(2){
    width: 10px;
    height: 10px;
}
.texture-grains-size .toop:nth-child(3){
    width: 14px;
    height: 14px;
}
.texture-grains-size .toop:nth-child(4){
    width: 18px;
    height: 18px;
}
.texture-grains-size .toop:nth-child(5){
    width: 22px;
    height: 22px;
}
/* **********fixed banner********** */
.fixed-banner{
    height: 400px;
    width: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* background-size: 100vw auto; */
    position: relative;
}
/* .fixed-banner::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: var(--color-second-darker);
    opacity: 0.6;
} */
/* .fixed-banner .circles{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('/images/circle.png');
    opacity: 0.9;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 110;
    display: none;

} */
/* .fixed-banner .brush{
    position: absolute;
    top: 80px;
    bottom: 20px;
    left: 0;
    right: 0;
    background-image: url('/images/brush.png');
    opacity: 0.9;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 110;
    display: none;
} */
.fixed-banner h2{
    color: white;
    position: absolute;
    top: calc(50% - 82px );
    right: 0;
    left: 0;
    text-align: center;
    z-index: 120;
    font-size: 82px;
    font-weight: 500;
    font-family: 'Oleo Script Swash Caps', cursive;
}

.fixed-banner.banner-1{
    background-image: url('/images/banner1.jpg');
}
.fixed-banner.banner-2{
    background-image: url('/images/banner2.jpg');
}

/* ********* lidform ************* */
#lid_form h2{
    color: black;
    font-weight: bold;
    text-align: center;
}
#lid_form  p{
    display: block;
    text-align: center;
    color: black;
    font-size: 26px;
    font-weight: bold;
    border-bottom: 4px solid var(--color-second-darker);
    padding-bottom: 8px;
}


/* ********* contact_section ************* */
#contact_section h2{
    color: black;
    font-weight: bold;
    text-align: center;
    border-bottom: 4px solid var(--color-second-darker);
    padding-bottom: 8px;

}
#contact_section  p{
    display: block;
    text-align: center;
    color: black;
    font-size: 26px;
    font-weight: bold;
    padding-bottom: 8px;
}
#contact_section  span{
    display: block;
    text-align: center;
    color: black;
    font-size: 26px;
    font-weight: bold;
    padding-bottom: 8px;
}

/* ==============================================================
     # footer
=================================================================== */
.img-overlay-color.op-low{
    opacity: 0.6;
}
.footer-04 {
    color: white;
    padding: 3em 0;
    position: relative;
    background-image: url('/images/footer.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.footer-04 .footer-heading {
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.footer-04 .list-unstyled a {
    color: white;
}

.footer-04 .copyright a {
    color: white;
}

.footer-04 a {
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

.footer-04 i {
    color: rgb(43, 43, 43);
    font-size: 18px ;
    font-weight: 500;
}

.footer-04 .social-media a {
    width: 34px;
    height: 34px;
    background: var(--color-main);
    margin-left: 4px;
    color: white;
}
.footer-04 .social-media a:hover i{
    color: var(--color-second-darker);
    transition: color 0.3s  ease;
}

.line-bottom {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.line-bottom::after {
    bottom: -1px;
    content: "";
    height: 4px;
    right: 0;
    position: absolute;
    width: 100%;
    background-color: rgb(43, 43, 43);
}

.footer-04 i.fa-lg{
    font-size: 28px;
    color: white;
}
/******** end footer ********/



/****************** media query ***************/
@media only screen and (min-width : 576px) {
    #home-slider .carousel-item  .img-overlay-text h2{
        font-size: 28px;
    }
    #home-slider .carousel-item  .img-overlay-text a{
        font-size: 24px !important;
        font-weight: 400 !important;
        line-height: 1;
        color: white;
    }

    #home-slider .carousel-item  .img-overlay-text a:hover,
    #home-slider .carousel-item  .img-overlay-text a:active,
    #home-slider .carousel-item  .img-overlay-text a:focus
    {
        color: var(--color-second-darker);
    }
    .fixed-banner h2{
    top: calc(50% - 41px );
    }

}
@media only screen and (min-width:768px) {

    /* navbar */
    #home-top-nav .nav-link
    {
        font-size: 20px;
        font-weight: 600;
    }

    /* slider */
    #home-slider .carousel-item  .img-overlay-text h2{
        font-size: 46px;
    }
    #home-slider .carousel-item  .img-overlay-text a{
        font-size: 34px !important;
        font-weight: 700 !important;
        line-height: 1;
        padding: 10px 20px;
    }
    .fixed-banner .circles{
        display: block;
    }
    .fixed-banner .brush{
        display: block;
    }
}
@media only screen and (min-width : 992px) {
    #home-slider .carousel-item  .img-overlay-text h2{
        font-size: 48px;
    }
    #home-slider .carousel-item  .img-overlay-text a{
        font-size: 36px !important;
        font-weight: 700 !important;
        line-height: 1;
    }
}
