@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Teko:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Farsan&family=Fugaz+One&family=Michroma&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nabla&family=Red+Rose:wght@300..700&display=swap");
* {
  margin: 0px;
  padding: 0px;
  outline: none;
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

@font-face {
  font-family: CustomFont;
  src: url("..//fonts/custom-font-bold.otf");
}

:root {
  /* --main-color: #ec3237; */
  --main-color: #0778e2;
  --main-bg: #1d1d1d;
  --main-bg-lite: #292929;
  --border-color: #b6b6b6;
  --white: #ffffff;
  --black: #000000;
}

.main-page {
  min-width: 100% !important;
  min-height: 100% !important;
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 1;
  .container {
    display: flex;
    height: 100%;
  }
}
.tus_catwdth{margin:0px auto; padding:0px; width:85%;}
.main-page::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  bottom: 0%;
  right: 0%;
  left: 0%;
  background-image: url("..//img/body-bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.page-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-around;
}

.cate-item {
  position: relative;
  z-index: 2;
  span1 {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 100px solid #0778e2;
    border-right: 100px solid transparent;
    z-index: 2;
  }
  .item-name {
    background-color: var(--main-color);
    color: var(--white);
    padding: 8px 16px;
    display: inline-block;
    position: absolute;
    bottom: 0%;
    right: 0%;
    font-size: 16px;
    text-transform: capitalize;
    font-family: "Poppins";
    font-weight: 500;
    transition: all 0.25s ease-in-out;
  }
  img {
    transition: all 0.25s ease-in-out;
  }
  span2 {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--main-color);
    z-index: -1;
    bottom: -10px;
    right: -10px;
    transition: all 0.25s ease-in-out;
  }
}
.cate-item h5{
    margin:0px 0 10px 0; padding:0px; color:#fff; font-size:20px; text-align:center; text-transform: uppercase; font-weight:600;}
/*.cate-item:hover {
  img {
    scale: 1.05;
  }
}*/

.enty-cont {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: "poppins";
  li {
    display: flex;
    align-items: flex-end;
    justify-content: start;
    gap: 10px;
    .icon {
      padding: 6px;
      position: relative;
      z-index: 2;
      &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--white);
        border-radius: 5px;
        transform: skewX(-10deg);
        top: 0%;
        left: 0%;
        z-index: -1;
      }
      i {
        height: 25px;
        width: 25px;
        aspect-ratio: 1/1;
        background: var(--main-color);
        color: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        font-size: 14px;
      }
    }
    span {
      padding: 6px 15px;
      position: relative;
      z-index: 2;
      &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--white);
        border-radius: 5px;
        transform: skewX(-10deg);
        top: 0%;
        left: 0%;
        z-index: -1;
      }
      a {
        font-size: 14px;
        line-height: 1;
        margin: 0;
        padding: 0;
        color: var(--black);
        font-weight: 500;
        display: block;
        &:hover {
          text-decoration: underline;
        }
      }
    }
  }
}
/* responsive */

@media screen and (max-width: 800px) {
  .page-container {
    gap: 2rem;
  }
  .main-page {
    min-height: 100% !important;
    padding: 2rem 0;
  }
}

@media screen and (max-width: 750px) {
  .main-page {
    height: 100% !important;
  }
}
