@import url('https://fonts.googleapis.com/css2?family=Gotu&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

body {
    padding:0px;
    margin:0px;
    font-family: 'Plus Jakarta Sans';
    background:#f7ede8;
}

.wrapperContainer {
    max-width:480px; min-width:360px; min-height: 100vh;
  height: auto; background-color:#fff;width:100%;
  background:url('../images/bg1.webp');
}

.topBar {
    display:flex;flex-direction: row;align-items: center; padding:10px;
}
#logo {
    width:100%;
    text-align: center;
}
#logo h1 {
    font-family: "Gotu";
    color: #75187b;
    font-weight: 700;
}
.topBarRightNav {
          padding: 0px;
          margin: 0px;
          list-style: none;
          display: flex;
          align-items: center;
          justify-content: flex-end;
        }
        .topBarRightNav li a {
          display: block;
          padding: 5px;
          font-size: 24px;
          color: #000;
          text-decoration: none;
        }
        .topBarRightNav li a:hover {
          color: #e64e10 !important;
        }
        
        .animated {
            padding: 30px;
    display: flex
;
    align-items: center;
    justify-content: center;
        }
        
        
#navbar {
          position: fixed;
          bottom: 0;
          left: 0;
          width: 100%;
          background: transparent;
          z-index: 100;
          padding: 0px;
          margin: 0px;
          box-sizing: border-box;
        }
        
        #navbar_items {
              display: flex;
    min-width: 320px;
    max-width: 480px;
    width: 100%;
    background-color: #f8ddc9;
    justify-content: space-around;
    padding: 7px 5px;
    margin: 0px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
        }
        #navbar a {
          color: #000;
          text-decoration: none;
          font-size: 13px;
          font-family: verdana;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          font-family:'Plus Jakarta Sans';
        }
        .bottom_navbar_icon {
          width: 24px;
          height: 24px;
          display: block;
          background-size: contain;
          background-repeat: no-repeat;
          margin-bottom: 4px;
        }
        
        .home {
          background-image: url(../images/home-black.png);
        }
        .asan {
          background-image: url(../images/yoga-black.png);
        }
        .category {
          background-image: url(../images/category-black.png);
        }
        .profile {
          background-image: url(../images/user-black.png);
        }
        
        #navbar a:hover,
        .bottom_nav_active {
          color: #75187b !important;
          text-decoration: none;
          font-weight:700;
        }
        #navbar a:hover > .home,
        .home_active {
          background-image: url(../images/home-purple.png);
        }
        
        #navbar a:hover > .asan,
        .asan_active {
          background-image: url(../images/yoga-purple.png);
        }
        #navbar a:hover > .category,
        .category_active {
          background-image: url(../images/category-purple.png);
        }
        #navbar a:hover > .profile,
        .profile_active {
          background-image: url(../images/user-purple.png);
        }
        .center-container {
          display: flex;
          justify-content: center;
          align-items: center;
        }
        
.pageHeadings {
            font-family: "Gotu";
    color: #75187b;
    font-weight: 700;
    font-size: 24px;
    padding: 2px 5px;
    border-bottom: 1px solid;
    display: inline-block;
    margin: 0px;
    text-align: center;
}  
.yogaCategory {
    margin:0px;
    padding:0px;
    list-style: none;
}
.yogaCategory li a {
        display: block;
    text-align: center;
    margin: 15px;
    padding: 5px 15px;
    text-decoration: none;
    background: #ead9cf;
    border-radius: 35px;
    color: #81287e;
    font-size: 14px;
    font-weight: 600;
}
.grid-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap:5px;
}

.grid-item {
  width: 49%;
  box-sizing: border-box;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 24px;
}
.grid-item a {
    display: block;
    position: relative;
    color: #fff;
}
.gridAbsPar{
        position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
}
.gridAbsPar i {
    color: #ffffff;
    font-size: 38px;
}
.gridGif  {
    max-width: 100%;
}
.subHeadings {
        font-family: "Gotu";
    color: #75187b;
    font-weight: 700;
    font-size: 16px;
    padding: 2px 5px;
    display: block;
    margin: 0px 0px 5px 0px;
    text-align: center;
    border-bottom: 1px solid;
}
.proItemCont {
    width:100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 15px;
}
.vertiList {
    margin:0px;
    padding:0px;
    list-style: none;
    display: flex;
    gap:5px;
}
.vertiList li {
    position:relative;
}
.vertiList li::after {
  content: '|';
  margin: 0px 5px 0px 10px;
}
.vertiList li:last-child::after {
  content: '';
}
.vertiList li a {
    color:#783c10;
    text-decoration: none;
    display:inline-block;
}