/* basic setting start  */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200;300;400;500;600;700&display=swap');

:root {
  --primary: #1cb098;
}

.primary-color {
  color: var(--primary) !important;
}

.primary-bg {
  background-color: var(--primary) !important;
}

body {
  font-family: 'Josefin Sans', sans-serif !important;
}

.container {
  padding: 10px 150px !important;
}

.menu ul li a {
  font-size: 28px !important;
  font-weight: 500;
}

@media (max-width:768px) {
  .container {
    padding: 10px 20px !important;
  }

}

.shadow {
  -webkit-box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.75);
  margin-bottom: 1px;
}
.title-text{
  width: 100%;
  text-align: center;
}
.title-text .title span{
  position: relative;
}
.title{
  font-size: 38px;
}
.title-text .title span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -25px;
  background-image: url(../images/text-shape2.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 100%;
  height: 100%;
}
.section{
  min-height: 100vh;
  padding: 50px 0;
}
.category-item{
  padding: 15px 30px;
  display: flex;
  align-items: center;
  border-radius: 30px;
}
.category-item span{
  margin-left: 10px ;
  font-weight: 600;
}

.cate-icon{
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cate-icon img{
  width: 50%;

}

.cate-section{
  min-height: 50vh;
}

.banner-one{
  height: 100%;
  padding: 20px;
  background-image: url('../images/offer-1.jpg');
}
.banner-two{
  height: 100%;
  padding: 20px;
  background-image: url('../images/offer-2.jpg');
}
.banner-section{
  min-height: 50vh;
}
/* basic setting end  */