@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kanit: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');

*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: "Bebas Neue", sans-serif;
}


/* width */
::-webkit-scrollbar {
    width: 0;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #8DC63F; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #8DC63F;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #5a7e28; 
  }


  a {
   text-decoration: none; 
   color: #fff;
  }

/* 
  body {
    height: 2000px;
  } */


#main-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }




.last-bg, .green-bg {
    position: absolute;
    width: 100%;
    height: 100vh;
}
.last-bg {
    background-color: #121212;
    /* height: 100%; */
    background: url('../img/main-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.green-bg {
    background: #265234;
    /* opacity: 0; */
}
section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
#text1, #text2, #text3, #text4 {
    position: absolute;
    font-weight: 400;
    color: #fff;
    text-align: center;
}
#text1{
    font-size: 200px;
    line-height: 480px;
}
#text2{
    font-size: 100px;
    line-height: 120px;
}
#text3{
    font-size: 130px;
    line-height: 156px;
}
#text4{
    font-size: 400px;
    line-height: 480px;
}

.button {
    position: absolute;
    padding: 8px 35px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #fff;
    transition: all 0.2s ease;
    bottom: 20px;
    right: 20px;
  }
  
  .button:active {
    transform: scale(0.96);
  }

#part2 , #part1 {
  display: flex;
  justify-content: center;
  align-items: center;
}


/* ------------ All Responsive Codes ----------- */

@media (min-width: 1281px) {
      /* Desktops , TV's*/
}

@media (min-width: 1025px) and (max-width: 1280px) {
      /*  Laptops, Desktops */
}

@media (min-width: 768px) and (max-width: 1024px) {
      /* Tablets, Ipads (portrait) */
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
      /* Tablets, Ipads (landscape) */
}

@media (min-width: 481px) and (max-width: 767px) {
      /* Low Resolution Tablets, Mobiles (Landscape) */
}

@media (min-width: 320px) and (max-width: 480px) {
      /* Most of the Smartphones Mobiles (Portrait) */
      #text4 {
        font-size: 150px;
      }
      #text3 {
        font-size: 100px;
        line-height: 120px;
      }
      #text2 {
        font-size: 60px;
        line-height: 80px;
      }#text1 {
        font-size: 100px;
        line-height: 120px;
      }
}

