/* Base CSS Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    font-size: 62.5%;
  }
  
  body {
    scroll-behavior: smooth;
    background-color: #fff;

  }
  
  /* Adding Fonts */
  
  /* Sailec Font */
  
  @font-face {
    font-family: Sailec;
    src: url(../fonts/SailecLight.otf);
    font-weight: 300;
  }
  @font-face {
    font-family: Sailec;
    src: url(../fonts/SailecRegular.otf);
    font-weight: 400;
  }
  @font-face {
    font-family: Sailec;
    src: url(../fonts/SailecMedium.otf);
    font-weight: 500;
  }
  @font-face {
    font-family: Sailec;
    src: url(../fonts/SailecBold.otf);
    font-weight: 700;
  }
  
  /* Graphik Font */
  
  @font-face {
    font-family: Graphik;
    src: url(../fonts/GraphikRegular.otf);
    font-weight: 400;
  }
  @font-face {
    font-family: Graphik;
    src: url(../fonts/GraphikMedium.otf);
    font-weight: 500;
  }
  @font-face {
    font-family: Graphik;
    src: url(../fonts/GraphikSemibold.otf);
    font-weight: 600;
  }
  @font-face {
    font-family: Graphik;
    src: url(../fonts/GraphikBold.otf);
    font-weight: 700;
  }
  
  /* :root {
                                  --gray: #f5f5f5;
                                } */
  
  a {
    text-decoration: none;
  }
  
  ul li {
    list-style: none;
  }
  
  img {
    max-width: 100%;
  }
  
  p {
    font-size: 1.6rem;
    color: var(--secondary-color);
  }
  
  /* Base Style End */
  
  /* Header Section CSS Start */
  
  .header-wrapper {
    background-image: url(../images/Vector\ 1.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  a.login-btn {
    background: #8a20dc;
    color: #fff !important;
    font-weight: 300 !important;
    padding: 1.1rem 2.7rem;
    margin-left: 18rem;
    border-radius: 2.5rem;
    transition: all 250ms;
  }
  a.login-btn:hover {
    opacity: 0.8;
  }
  a.login-btn {
    margin-left: 0;
  }
  
  /* Header Section CSS End */
  
  /* Home Hero Section CSS Start */
  section#Home-hero {
    padding-top: 18rem;
    padding-bottom: 23rem;
  }
  .home-hero-content h1 {
    font-family: "Sailec";
    font-size: 4rem;
    font-weight: 700;
    line-height: 5rem;
    color: #fff;
  }
  
  .home-hero-content p {
    font-family: "Graphik";
    font-weight: 300;
    line-height: 3rem;
    padding: 2rem 0;
  }
  
  .home-hero-img {
    max-width: 65%;
    margin: auto;
  }
  
  .home-button a.home-btn1 {
    width: 16rem;
    display: block;
    font-family: "Graphik";
    font-size: 1.7rem;
    font-weight: 500;
    background: linear-gradient(90deg, #ffa15e 0%, #ff4f22 100%);
    box-shadow: 2px 10px 50px rgba(209, 44, 0, 0.15);
    border-radius: 5rem;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
  }
  
  .home-button {
    display: flex;
  }
  
  .home-button a.home-btn1,
  .home-button a.home-btn2 {
    width: 16.5rem;
    display: block;
    font-family: "Graphik";
    font-size: 1.7rem;
    font-weight: 500;
    background: linear-gradient(90deg, #ffa15e 0%, #ff4f22 100%);
    box-shadow: 2px 10px 50px rgba(209, 44, 0, 0.15);
    border-radius: 5rem;
    color: #fff;
    text-align: center;
    padding: 1.4rem 0;
    transition: all 250ms;
  }
  .home-button a.home-btn2 {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.7);
    margin-left: 1.5rem;
  }
  
  .home-button a.home-btn1:hover,
  .home-button a.home-btn2:hover {
    opacity: 0.8;
  }
  
  /* Home Hero Section CSS End */
  
  /* Home Section CSS Start */
  
  .home-wrapper {
    margin-top: 15rem;
  }
  
  .arena-bg {
    background: url(../images/Arena-SDK-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
  }
  .reward-bg {
    background: url(../images/Rewards-Platform-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
  }
  .growkit-bg {
    background: url(../images/GrowthKit-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
  }
  .home-img img {
    max-width: 52%;
    padding-top: 2.5rem;
    margin-left: 2rem;
  }
  
  .arena-h2 h2,
  .reward-h2 h2,
  .grwokit-h2 h2 {
    position: relative;
    font-family: "Sailec";
    font-size: 3rem;
    font-weight: 600;
    color: #2d3740;
  }
  
  .arena-h2 h2::before {
    position: absolute;
    content: "";
    width: 4rem;
    height: 4rem;
    border: 0.5rem solid #ffca7d;
    border-radius: 5rem;
    left: -2.5rem;
    top: -1rem;
    z-index: -1;
  }
  
  .arena-h2 h2::after,
  .reward-h2 h2::after,
  .grwokit-h2::after {
    position: absolute;
    content: "";
    width: 3.5rem;
    height: 3.5rem;
    background: #e7fcff;
    border-radius: 5rem;
    left: -1rem;
    top: 0;
    z-index: -2;
  }
  .reward-h2 h2::before {
    position: absolute;
    content: "";
    width: 4rem;
    height: 4rem;
    border: 0.5rem solid #e4e5ff;
    border-radius: 5rem;
    left: -2.5rem;
    top: -1rem;
    z-index: -1;
  }
  .home-img.reward-bg img {
    max-width: 56%;
  }
  .home-img.growkit-bg img {
    margin-top: -7rem;
  }
  .grwokit-h2 h2::before {
    position: absolute;
    content: "";
    width: 4rem;
    height: 4rem;
    border: 0.5rem solid #7db1ff;
    border-radius: 5rem;
    left: -2.5rem;
    top: -1rem;
    z-index: -1;
  }
  
  .home-top p {
    font-family: "Graphik";
    color: #2d3740;
    padding-top: 1rem;
  }
  
  .home-box {
    margin-top: 3rem;
    transition: 250ms;
  }
  
  .home-box-top {
    display: flex;
    align-items: center;
  }
  .home-box-top img {
    width: 5.5%;
  }
  
  .home-box-top h3 {
    font-family: "Sailec";
    font-size: 1.8rem;
    padding-top: 0.7rem;
    padding-left: 1.2rem;
  }
  .home-btn {
    margin-top: 5rem;
  }
  .home-btn a {
    font-family: "Graphik";
    font-size: 1.5rem;
    padding: 1.4rem 2.4rem;
    background: rgba(27, 198, 239, 0.1);
    border: 1px solid #1bc6ef;
    color: #1bc6ef;
    box-sizing: border-box;
    border-radius: 5rem;
    transition: all 250ms;
  }
  .home-btn a:hover {
    background: #1bc6ef;
    color: #ffffff;
  }
  
  /* Home Section CSS End */
  
  /* Featured Section CSS Start */
  
  #Featured {
    background: url(../images/featured-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 17rem 0;
    margin-top: 10rem;
  }
  
  .featured-title h2 {
    font-family: Graphik;
    font-size: 3rem;
    font-weight: 600;
    color: #2d3740;
    text-align: center;
    padding-bottom: 2rem;
  }
  
  .featured-item {
    padding-top: 5rem;
  }
  img.featured-img {
    max-width: 60%;
    margin: auto;
  }
  .owl-dots {
    display: none;
  }
  .owl-nav {
    display: none;
  }
  
  /* Featured Section CSS End */
  
  /* Home Blog Section CSS Start */
  
  section#Home-blog {
    margin-top: 10rem;
  }
  .home-blog-post {
    padding: 0 5rem;
  }
  .blog-post-img img {
    filter: drop-shadow(0px 4px 60px rgba(113, 113, 113, 0.13));
  }
  
  .blog-post-content {
    padding: 3rem 0;
  }
  
  .blog-post-content i {
    font-size: 1.8rem;
  }
  
  .blog-post-content span {
    font-family: "Graphik";
    font-weight: 300;
    font-size: 1.8rem;
    padding-left: 1rem;
    color: #545454;
  }
  
  .blog-post-content h2 {
    font-family: "Sailec";
    font-size: 2.2rem;
    line-height: 3rem;
    padding-top: 1.5rem;
    padding-right: 4rem;
  }
  
  .blog-post-content p {
    font-family: "Graphik";
  }
  
  /* Home Blog Section CSS End */
  
  /* ============================= */
  /* Home Page Responsive CSS */
  /* ============================= */
  
  @media (min-width: 300px) and (max-width: 767px) {
    /* Nav Css */
    .logo img {
      max-width: 8rem;
    }
    .home-hero-img {
      padding-bottom: 5rem;
    }
    .home-hero-content {
      padding: 3rem 0;
      text-align: center;
    }
    .home-hero-content h1 {
      font-size: 4rem;
      text-align: center;
      padding-left: 0;
    }
    .home-button {
      display: flex;
      justify-content: center;
    }
    .home-content {
      margin-top: 5rem;
      margin-left: 5rem;
    }
    .home-blog-post {
      padding: 0 0;
    }
    .blog-post-content h2 {
      padding-right: 0rem;
    }
    .blog-post-content p {
      padding: 0 5rem;
    }
    section#Home-blog {
      text-align: center;
    }
    .home-blog-post:first-child {
      margin-bottom: 5rem;
    }
  }
  
  @media (max-width: 500px) {
    .arena-bg,
    .reward-bg,
    .growkit-bg {
      max-width: 80%;
      margin: auto;
    }
  }
  @media (min-width: 500px) and (max-width: 767px) {
    .arena-bg,
    .reward-bg,
    .growkit-bg {
      max-width: 65%;
      margin: auto;
    }
    .blog-post-img {
      max-width: 50%;
      margin: auto;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    .logo img {
      max-width: 9rem;
    }
    .home-hero-content {
      padding-left: 3rem;
    }
    .home-hero-content h1 {
      font-size: 4rem;
    }
    .blog-post-content h2 {
      padding-right: 0rem;
    }
  }
  
  @media (min-width: 1380px) {
    .home-hero-content h1 {
      font-size: 4rem;
      line-height: 6rem;
    }
    section#Home-hero {
      padding-bottom: 27rem;
    }
    #Featured {
      padding: 28rem 0;
    }
  }
  @media (min-width: 1550px) {
    section#Home-hero {
      padding-top: 30rem;
      padding-bottom: 36rem;
    }
  }
  
  @media screen and (max-width: 540px) {
    .arena-bg, .reward-bg, .growkit-bg {
      max-width: 80%;
      margin: auto;
  }
  }