*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Target scrollbar */
::-webkit-scrollbar {
  width: 8px;            /* vertical scrollbar */
  height: 8px;           /* horizontal scrollbar */
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Thumb (handle) */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}


  :root{
    --Almost-White: hsl(0, 0%, 98%);
    --Medium-Gray: hsl(0, 0%, 41%);
    --Almost-Black: hsl(0, 0%, 8%);
  }


  body{
    font-family: "Epilogue", sans-serif;
    margin: 20px 50px;
    background-color: var(--Almost-White);
  }


  header{

  }

  header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header nav .left-seaction{
    display: flex;
    align-items: center;
    width: 300px;
    justify-content: space-between;
  }

  header nav .logo{
    margin-right: 65px;
  }
  header nav ul{
    display: flex;
    align-items: center;
    gap: 45px;
    color: var(--Medium-Gray);
    font-size: 14px;
    font-weight: 700;
  }
  header nav ul li{
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  header nav ul li:hover{
    color: var(--Almost-Black);
  }

  header nav ul li .arrow-down1:hover,
  header nav ul li .arrow-down2:hover{
    filter: grayscale(100%) brightness(60%);
  }
  

  header nav ul li .arrowup,
  header nav ul li .arrowup2{
    filter: grayscale(100%) brightness(60%);
    display: none;
  }




  header nav .right-seaction{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 155px;
    font-size: 14px;
    font-weight: 500;
    color: var(--Medium-Gray);
  }

  header nav .right-seaction span{
    cursor: pointer;
  }

  header nav .right-seaction span:hover{
    color: var(--Almost-Black);
  }
  header nav .right-seaction .Register{
    padding: 11px 15px;
    border: 1px solid var(--Medium-Gray);
    border-radius: 10px;
  }

  header nav .right-seaction .Register:hover{
    border-color: var(--Almost-Black) ;
  }


  .features{
    width: fit-content;
    padding: 16px 24px;
    border-radius: 12px;
    background-color: var(--Almost-White);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    height: 173px;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 115px;
    padding-bottom: 10px;
    top: 65px;
    display: none;
  }
  
  .features ul{
    gap: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--Medium-Gray);
    font-size: 16px;
    font-weight: 500;
    width: 72px;
    margin-right: 15px;
  }
  
  .features ul li{
    cursor: pointer;
  }

  .features .image-conatiner{
    display: flex;
    width: fit-content;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    margin-right: 15px;

  }
  
  .company {
    background-color: var(--Almost-White);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: max-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  left: 323px;
  top: 65px;
  display: none;
  }

  .company ul{
    font-size: 16px;
    font-weight: 500;
    color: hsl(0, 0%, 41%); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    
  }
  
  
  .company ul li{
    cursor: pointer;
  }

  .mobile{
    display: none;
  }

  .menu{
    display: none;
  }

  .close{
    display: none;
  }

  .overley{
    display: none;
  }


  .container{
    display: flex;
    flex-direction: row-reverse;
    padding-top: 100px;
    padding: 90px 53px;
    justify-content: space-between;
  }


  .container .image .pc-image{
    width: 524px;
    height: 623px;
  }

  .container .content h1{
    width: 525px;
    font-size: 80px;
    font-weight: 700;
    color: var(--Almost-Black);
    margin-bottom: 45px;
    margin-top: 100px;
  }
  .content{
    padding-left: 50px;
  }

  .container .content p{
    font-size: 18px;
    font-weight: 500;
    color: var(--Medium-Gray);
    margin-bottom: 75px;
    width: 437px;
    line-height: 1.6;
  }

  .container .content .button{
    padding: 20px 40px;
    background: var(--Almost-Black);
margin-bottom: 115px;
    display: block;
    width: fit-content;
    border-radius: 20px;
    color: var(--Almost-White);
    cursor: pointer;
    transition: .3s;
    border: 2px solid var(--Almost-Black); 
  }

  .container .content .button:hover{
    border: 2px solid var(--Almost-Black); 
    color: var(--Almost-Black);
    background-color: var(--Almost-White);
  }

  .container .content .company-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 515px;
  }

  .mob-image{
    display: none;
  }

  @media (max-width:767px){
    .seaction-menu{
      display: none;
    }
    header nav .right-seaction{
      display: none;
    }
    .pc-image{
      display: none;
    }
    .mob-image{
      display: block;
      width: 440px;
    }

    body{
      margin: 20px 0;
      height: auto;
    }

    header{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin: 0 auto;
    }

    .container .image{
      width: 379px;
    }

    header nav .logo{
      width: 90px;
    }

    .menu{
      display: block;
      margin-right: 25px
    }

    .left-seaction{
      padding-left: 20px;
    }

    .container{
      display: block;
      padding: 0;
      padding-top: 40px;
    }

    .container .content h1{
      font-size: 40px;
      margin: 0;
      margin-top: 54px;
      text-align: center;
      width: auto;
    }

    .container .content p{
      text-align: center;
      width: 375px;
      margin: 0 auto;
      margin-top: 20px;
    }
    .container .content .button{
      margin: 0 auto;
      margin-top: 40px;
      margin-bottom: 46px;
    }

    .container .content .company-logo{
      width: 389px;
      margin: 0 auto;
    }

    .overley{
      background: var(--Almost-White);
      position: absolute;
      z-index: 300;
      width: 70%;
      height: 105%;
      left: 148px;
      top: 0;
      display: block;
    }
    .close{
      display: block;
      position: relative;
      left: 230px;
      top: 30px;
    }

    .close:hover{
      filter: grayscale(1) brightness(0.7) sepia(1) hue-rotate(-10deg) saturate(100) contrast(1.2);
    }

    .mob-menu{
      display: flex;
      flex-direction: column;
      gap: 45px;
      color: var(--Medium-Gray);
      font-size: 19px;
      font-weight: 700;
      margin-top: 130px;
      margin-left: 30px;
    }

    .features-container{
      display: flex;
      margin-top: 25px;
      margin-left: 22px;
      display: none;
    }
    
    .image-conatiner{
      display: flex;
      align-items: center;
      flex-direction: column;
      gap: 10px;
      margin-right: 10px;
    }
    .featuresul{
      display: grid;
      gap: 6px;
    }
    .featuresarrows{
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .down,
    .down2,
    .up,
    .up2{
      width: 14px;
    }
    .up,
    .up2{
      display: none;
    }

    .Companyarrow{
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .Companyul{
      display: flex;
      margin-top: 25px;
      margin-left: 22px;
      flex-direction: column;
      gap: 6px;

      display: none;
    }

    .overley .right-seaction{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-top: 55px;
      gap: 30px;
      font-size: 14px;
      font-weight: 500;
      color: var(--Medium-Gray);
    }
    .overley .right-seaction span{
      cursor: pointer;
    }
    .overley .right-seaction span:hover{
      color: var(--Almost-Black);
    }
    .overley .Register{
      padding: 11px 15px;
      border: 1px solid var(--Medium-Gray);
      border-radius: 10px;
      width: 237px;
      text-align: center;
    }
  
    .overley .Register:hover{
      border-color: var(--Almost-Black) ;
    }
    content{
      padding-left: 0;
    }
  }

