:root {
  font-size: 10px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: #000000;
  color: white;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
*:focus {
  outline: none;
}
.nav {
  display: flex;
  align-items: center;
  padding: 0 4rem;
  justify-content: space-between;
  border-bottom: 2px solid #2c2e39;
}
.nav-title {
  font-size: 3.2rem;
  margin: 0;
}
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  align-self: center;
  margin-bottom: 0;
}
.nav-list .nav-item {
  display: inline-block;
  padding: 2rem 0;
  cursor: pointer;
  transition: all 0.3s;
}
.nav-list .nav-item:hover {
  background-color: white;
}
.nav-list .nav-item:hover a {
  color: #000000;
}
.nav-link {
  text-decoration: none;
  color: inherit;
  font-size: 1.5rem;
}
.login-btn {
  background-color: transparent;
  border: 1px solid #2c2e39;
  border-radius: 3rem;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.login-img {
  width: 30px;
  border-radius: 50%;
}
.login-name {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-left: 10px;
}
.login-icon {
  color: white;
  margin-left: 5px;
}
.dropdown-menu {
  background: #00000075;
}
.dropdown-item {
  color: white;
  font-size: 2rem;
}
.home-btn{
  background-color: transparent;
 cursor: pointer;
 border: none;
}
.flexy{
  display: flex;
  align-items: center;
  flex-direction: column;
}
.section-hero {
  height: calc(100vh - 7.5rem);
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr 1fr;
}
.hero-container-text {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 1.5rem;
  padding-left: 5rem;
}
.hero-title {
  font-size: 6rem;
}
.hero-description {
  font-size: 1.6rem;
  color: #78828a;
  line-height: 205x;
}
.hero-btn {
  width: fit-content;
  padding: 1rem 2rem;

  font-size: 1.5rem;
  background-color: #0094ff;
  color: white;
  border-radius: 6px;
  font-weight: 700;
}
.hero-btn:hover {
  background-color: #009fff;
}
.hero-container-img {
  position: relative;
  /* height: 100%; */
  /* flex-basis: 50%; */
  width: 100%;
  background-color: #0094ff;
}
.hero-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 85rem;
}
@media screen and (max-width: 1350px) {
  .hero-container-img {
    overflow: hidden;
  }
  :root {
    font-size: 9px;
  }
  .hero-container-img {
    overflow: hidden;
  }
}

@media screen and (max-width: 1090px) {
  :root {
    font-size: 8px;
  }
}
@media screen and (max-width: 960px) {
  :root {
    font-size: 7px;
  }
}




@media screen and (max-width: 800px) {
  .hero-container-img{
  width: 100%;
  }
  .hero-img {
    position: absolute;
    right: 1px;
    top: -1rem;
    /* bottom: 0; */
    height: 69rem;
    width: 55rem;
}
  }



@media screen and (max-width: 650px) {
  .section-hero{
    grid-template-rows: 1fr 1fr;
    grid-template-columns: none;
    
  }
  .hero-container-text{
    grid-row: 2/-1;
  }
  .hero-container-img{
  background-color: #0095ff5c;
    width: 70%;
    margin-top: 4rem;
    border-radius: 2rem;
  }

  .hero-img {
    position: absolute;
    right: 92px;
    top: -14rem;
    /* bottom: 0; */
    height: 62rem;
    width: 43rem;
}
.nav-list .nav-item {
  display: inline-block;
  padding: 2rem 0;
  cursor: pointer;
  transition: all 0.3s;
  display: none;
}
  
  /* .hero-container-text {
    flex-basis: 100%;
  } */
  /* .hero-container-img {
    flex-basis: 0%;
  } */
}
@media screen and (max-width: 560px) {
  .hero-container-img{
     width: 70%;
    }

    .hero-img {
      position: absolute;
      right: 41px;
      top: -14rem;
      /* bottom: 0; */
      height: 62rem;
      width: 43rem;
  }


    :root {
      font-size: 6.5px;
    }
    ol, ul {
      padding-left: 0rem;
  }
  }

  
  @media screen and (max-width: 450px) {
    :root {
      font-size: 6.5px;
    }
   
  .hero-container-img{
    width: 90%;
   }
  }
  @media screen and (max-width: 390px) {
    .hero-img {
      position: absolute;
      right: 49px;
      top: -10rem;
      /* bottom: 0; */
      height: 62rem;
      width: 43rem;
  }
   }

   @media screen and (max-width: 360px) {
  .hero-img {
      position: absolute;
      right: 30px;
      top: -14rem;
      /* bottom: 0; */
      height: 62rem;
      width: 43rem;
  }
   }





