:root {
    --main-color--: #099aa7;
    /* --main-color--: #0a5a62cc; */
    --main2-color--: #278359;
    --heading-color--: #1f2f31;

}

* {
    box-sizing: border-box;
}
body {
    font-family: 'Nunito', sans-serif;
}
.logo {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color--);
}
.c-btn{
    background-color: var(--heading-color--);
    color: white;
}
.logo span {
    color: var(--main-color--);
}
.badeg {
    background: color-mix(in srgb, var(--main-color--), transparent 85%);
    color: var(--main-color--);
    font-size: 1.5rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
}
.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.light {
    background-color: #fff;
}



.packet {
  background-color: var(--main-color--);
  /* background-color: #00c7ff; */
  padding: 10px;
  color: #fff;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 100;
  display:none; 
}
.show {
    display: block;
}
.packet .box i{
  color: #fff;
  font-size:  45px;
}
.packet .input-group input{
    min-width: 50px;
}
.packet .input-group .input-group-text,.packet .input-group input{    
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 0;
}
.packet .input-group .input-group-text{
  border:none;
}    

.slider {
    height: calc(100vh - 75px);
}

.landing-page .box {
    position: relative;
}

.overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000ad;
    z-index: 4;
    top: 0;
}

.carousel-control button span {
    color: #fff
}

/* contact info */
.contact-info{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    color: #fff;
}
/* contact info */

/* start logo */
.logo {
    font-size: 30px;
    font-weight: bold;
    color: var(--main-color--);
}

/* end logo */

.light-section {
    background-color: #fff;
    padding: 20px 0;
}

.dark-section {
    background-color: #ddd;
    padding: 20px 0;
}

.heading h4 {
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 10px;
    color: var(--main-color--);
}

@media(max-width:575px) {
    .heading h4 {
        font-size: 26px;
    }
}

/* start about us */
.about-us {
    display: flex;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media(max-width:767px) {
    .about-us {
        display: block;
        text-align: center;
    }
}

.about-us .info-box {
    flex: 1;
    padding: 30px;
}

@media(max-width:767px) {
    .about-us .info-box {
        padding: 0;
    }
}

.about-us .info-box h4 {
    font-size: 45px;
    font-weight: bold;
    margin: 0 0 10px;
    color: var(--main-color--);
}

@media(max-width:575px) {
    .about-us .info-box h4 {
        font-size: 26px;
    }
}

.about-us .info-box p {
    color: #777;
    line-height: 1.6;
    margin: 0;
}

.about-us .image-box {
    flex: 1;
    text-align: center;

}

.about-us .image-box img {
    width: 250px;
}

/* end about us */


/* categories us */
.categories-container{
    display: flex;
    flex-direction: row;
    overflow-x: auto;
}
.categories-container .category-box{
    /* width: */
}
.categories-container .category-box img{
}
.category-box{
    padding: 5px;
    position: relative;
    overflow: hidden;
    /* max-height: calc(250px - 10px); */
}
/* .category-box::before{
    content: attr(data-name);
    position: absolute;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    transform: translateX(-100%);
    background-color: #3771a9db;
    
}
.category-box:hover::before{
    transform: translateX(0);
    transition-duration: 0.3s;
} */
/* .box .category-overlay span{
    position: absolute;
    left: calc(100% - 60%);
    top: calc(100% - 55%);
    color: #fff;
} */

@keyframes apper{
    from{
        opacity: 0;
        scale: 0.5;
        /* clip-path: inset(100% 100% 0 0); */
    }
    to{
        opacity: 1;
        scale: 1;
        /* clip-path: inset(0 0 0 0); */
    }

}
/* .item{
    animation: apper linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
} */
/* end about us */