* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #090023;
    font-family: "Roboto", sans-serif;
    font-style: normal;
}


.content {
  margin-left: 50px;
  padding: 20px;
  flex-grow: 1; /* Allow content to grow */
}

.hamburger {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333; /* Change color as needed */
  position: absolute;
  top: 20px;
  left: 20px; /* Position it in the top-left corner */
}

@media (max-width: 768px) {
  body {
      margin-left: 0; /* Reset margin for mobile */
  }

  .content {
      margin-left: 0; /* Reset margin for mobile */
  }

  .hamburger {
      font-size: 30px; /* Increase the icon size for better visibility */
  }

  .sidebar {
      width: 100%; /* Full width on mobile */
      left: -100%; /* Hidden off-screen initially */
  }

  .sidebar.active {
      left: 0; /* Show when active */
  }
}

.content {
  margin-left: 50px;
  padding: 20px;
}

.hamburger {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 20px;
  color: #333; /* Change color as needed */
}

.mainCont{
  padding: 0px 24px;
}

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
  }

  
.title {
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 0px 24px 0px;
}

.title2{
    color: white;
   width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  font-size: 12px;
    padding: 12px 4px 12px 0px;
}

.card {
    width: 100%;
    height: auto;
    border-radius: 24px;
    padding: 16px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden; 

    margin: 12px 0px;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover; 
    background-position: center; 
    opacity: 1; 
    z-index: 0;
}


.card.image1::before {
    background-image: url('logo.png'); 
}

.card.image2::before {
    background-image: url('images/img1.jpg'); 
}

.card.image3::before {
    background-image: url('images/img2.jpg'); 
}

.card.image4::before {
  background-image: url('images/img3.png'); 
}

.card.image5::before {
  background-image: url('images/img4.jpg'); 
}

.card.image6::before {
  background-image: url('images/img5.jpg'); 
}

.card.image7::before {
  background-image: url('images/img6.jpg'); 
}

.card.image8::before {
  background-image: url('images/img7.jpg'); 
}

.card.image9::before {
  background-image: url('images/img8.jpg'); 
}

.card.image10::before {
  background-image: url('images/img9.jpg'); 
}

.card.image11::before {
  background-image: url('images/img10.jpg'); 
}

.card.image12::before {
  background-image: url('images/img11.jpg'); 
}

.card.image13::before {
  background-image: url('images/img12.jpg'); 
}

.card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%,#387E03 60%);
    z-index: 1; 
}

.text {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    position: relative; 
    z-index: 2; 
}

.text h2 {
    color: white;
    font-size: 22px;
}

.text {
    color: #eaeaea;
    font-size: 16px;
}

.info {
    display: flex;
    color: white;
    font-weight: 500;
    align-items: center;
    gap: 12px;
}

.button {
    padding: 8px 0px 8px 0px;
}

.button button {
    width: 60%;
    height: 48px;
    border-radius: 8px;
    outline: none;
    border: none;
    font-weight: 700;
    transition: all ease-in-out 0.2s;
}

button:hover {
    color: white;
    background-color: #003d15;
    transform: scale(1.1);
}

.pageUp{
    padding: 16px;
    font-size: large;
    position: fixed;
    border-radius: 100%;
    border: none;
    right: 24px;
    z-index: 1000;
}

.cov{
  width: 140px;
}

.repoCov{
  width: 200px;
  height: 200px;
  display: flex;
  align-items: flex-end;
}

.cardM{
  width: 100%;
  height: auto;
  border-radius: 24px;
  margin: 0px 0px 24px 0px;
  padding: 24px;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  animation: gradient-flow 8s linear infinite; 
          background: linear-gradient(90deg,#069640, #006C26, #1c1c1c);
      }




      
.mainCont{
  padding-top: 16px;
  display: flex;
  flex-direction: column;
}


nav{
  position: fixed;
  background-color: #090023;
  width: 100%;
  height: 76px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.316);
  z-index: 1000;
}

.cart{
width: 38px;
height: 38px;
}

nav a{
  display: flex;
  color: white;
  flex-grow: 0;
  text-decoration: none;
}

a:active{
  color: rgb(44, 124, 0);
}

nav i{
font-size: 33px;
}

/* nav img{
margin-right: none;
} */

.s{
  padding-top: 76px;
}

.slider{
  width: 1300px;
  max-width: 100vw;
  height: 420px;
  margin: auto;
  position: relative;
  overflow: hidden;
}
.slider .list{
  position: absolute;
  width: max-content;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  transition: 1s;
}
.slider .list img{
  width: 1300px;
  max-width: 100vw;
  height: 100%;
  object-fit: cover;
}


.slider .buttons{
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
}
.slider .buttons button{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff5;
  color: #fff;
  border: none;
  font-family: monospace;
  font-weight: bold;
  opacity: 0%;
}


.slider .dots{
  position: absolute;
  bottom: 10px;
  left: 0;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.slider .dots li{
  list-style: none;
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: 10px;
  border-radius: 20px;
  transition: ease-in-out all 0.5s;
}
.slider .dots li.active{
  width: 20px;
  transition: ease-in-out all 0.5s;
  background-color: #07a914;
}
@media screen and (max-width: 768px){
  .slider{
      height: 216px;
  }
}