*{
    padding :0;
    margin : 0;
    box-sizing : border-box;
    font-family: 'Poppins', sans-serif;
    list-style :none;
    text-decoration :none;

}
.container {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
}

.hero, .drag {
  scroll-snap-align: start;
  height: 100vh;
}
header{
    position : fixed;
    right :0;
    top :0;
    z-index: 1000;
    width : 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding : 33px 9%;
    background: transparent;
}
.logo{
    font-size: 30px;
    font-weight: 700;
    color: white;
}
.navlist{
    display : flex;

}

.navlist a{
    color:white;
    margin-left:60px;
    font-size:15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all .55s ease;
}
.navlist a:hover{
    border-bottom: 2px solid white;
}
#menu-icon{
    color: white;
    font-size: 30px; 
    z-index: 10001;
    cursor: pointer;
    display: none;
}
.hero{
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(245.59deg, #4d9599 0%, #38703d 28.53%, #1339);
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 2rem;
}

section{
    padding: 0 19%;
}
.hero-img {
    /* Make the image container take up the full width */
    width: 100%;
    /* Set a maximum height to prevent the image from overflowing */
    max-height: 500px; /* adjust this value as needed */
    /* Center the image horizontally */
    margin: 0 auto;
    /* Add some padding to create some space around the image */
    padding: 20px;
  }
  
 
  .hero-text h5{
    font-size: 14px;
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
  }
  .hero-text h1{
    font-family: "Press Start 2P", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 1;
    color: white;
    margin:0 0 35px;

  }
  .hero-text h4{
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 40px;
  }
  .hero-text p{
    color:white;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
  }
   .hero-img img {
    width: 700px;
    height: auto;
  }
.hero-img img {
  width: auto;
  height: auto;
  max-width: 400px;
}.hero-img img {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin: 0 auto;
}
  .hero-text a{
    display: inline-block;
    color: white;
    background: #4d9599;
    border: 1px solid transparent;
    padding: 12px  30px;
    line-height: 1.4;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all .55s ease;
  }
  .hero-text a:hover{
    background:transparent;
    border: 1px solid white;
    transform: translateX(8px);
  }
  .hero-text a.ctaa{
    background:transparent;
    border: 1px solid white;
    margin-left:20px;

  }
  .hero-text a.ctaa i{
    vertical-align: middle;
    margin-right: 5px;

  }
  .drag{
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(245.59deg, #4d9599 0%, #38703d 28.53%, #1339);
    display: flex;
    align-items: center;
    justify-content: center;
}
.drag-area{
    border: 2px dashed #fff;
    height: 500px;
    width: 700px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.drag-area h1{
    font-size: 2.5em;
    color:white;
}
.drag-area span{
    font: 20px;
    color: white;
}
.drag-area.active {
    border-color: #aaa;
    background-color: #043537;
  }
.drag-area .icon{
    font-size: 100px;
    color: #fff;
}
.drag button{
    display: inline-block;
    color: white;
    background: #4d9599;
    border: 1px solid transparent;
    padding: 12px  30px;
    line-height: 1.4;
    font-size: 20px;
    font-weight: 500;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all .55s ease;
    margin-top: 20px;
  }
  .drag button:hover{
    background:transparent;
    border: 1px solid white;
    transform: translateX(8px);
  }