@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap');

*{
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body { 
    height: 100%;
    font-family: 'Nunito', sans-serif;
  }

  .background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    opacity: 0.3; 
    z-index: -1;  

  }
  @media (max-width: 768px) {
    .background-image {
      background-position: top;
      width: 100vh;
      height: 100%;
    }
  }


  nav {
    display: flex;
    height: 10vh;
    width: auto;
    background: #ffffffd4;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px 0 100px;
    flex-wrap: wrap;
    z-index: 1;
  }
  
  nav .logo {
    color: #000000;
    font-size: 35px;
    font-weight: 600;
  }
  
  nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    margin: 0 5px;
  }
  
  nav ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-weight: bold;
  }
  
  nav ul li a.active,
  nav ul li a:hover {
    color: #000;
    background: #efab1b;
    border-radius: 30px;
  }
  
  nav .menu-btn i {
    color: #000000;
    font-size: 22px;
    cursor: pointer;
    display: none;
  }
  
  input[type="checkbox"] {
    display: none;
  }
  
  @media (max-width: 1000px) {
    nav {
      padding: 0 30px 0 0px;
      width: 100%;
  }
}
  @media (max-width: 920px) {
    nav .menu-btn i {
      display: block;
    }
  
    #click:checked ~ .menu-btn i:before {
      content: "\f00d";
    }
    nav ul {
      position: fixed;
      top: 10vh;
      left: -100%;
      background: #eee;
      height: 90vh;
      width: 100%;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      transition: all 0.3s ease;
      padding: 0;
    }
    #click:checked ~ ul {
      left: 0;
    }
    nav ul li {
      width: 100%;
      margin: 20px 0;
    }
    nav ul li a {
      width: 100%;
      margin-left: 0;
      display: block;
      font-size: 20px;
      transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    #click:checked ~ ul li a {
      margin-left: 0;
    }
    nav ul li a.active,
    nav ul li a:hover {
      background: none;
      color: #ed7704;
    }
  }
  
  h1 {
    color: #000000;
    font-size: 70px;
    font-weight: bold;
  }
  @media (max-width: 768px) {
    h1 {
      font-size: 50px;
      height: 6vh;
    }
  }
  @media (max-width: 480px) {
    h1 {
      font-size: 40px;
      height: 5vh;
    }
  }
  h2 {
    color: #000000;
    text-align: center;
    font-weight: bold;
    font-size: 7vh;
    margin-top: 0px;
  }
  @media (max-width: 768px) {
    h2 {
      font-size: 50px;
      height: 30vh;
    }
  }
  @media (max-width: 480px) {
    h2 {
      font-size: 40px;
      height: 20vh;
    }
  }
  .home-text{
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4vh;
    text-align: center;
    margin-top: 30vh;
  }
  .container {
    width: 80%;
    margin: 0 auto;
  }
  .ab-text {
    color: #000;
    font-size: 3vh;
    text-align: center;
    margin-top: 13vh;
}
  .ab-h1 {
    color: #000000;
    font-size: 6vh;
    font-weight: bold;
  }
  .p-ab {
    font-size: 3vh;
    margin: 0 5%;
    margin-top: 5vh;
    text-align: center;
    height: auto;
  }
  .ab-btn {
    font-size: 2vh;
    width: 20vh;
    height: 6vh;
    background-color: #efab1b;
    color: white;
    margin-top: 4vh;
    border: 0px solid transparent;
    border-radius: 1pc;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .ab-text {
      font-size: 18px;
      margin-top: 8vh;
      font-weight: bold;
  }
    .ab-h1 {
      font-size: 4vh;
    }
    .p-ab {
      margin-top: 8vh;
    }
    .ab-btn {
      font-size: 2.5vh;
      margin-top: 3vh;
    }
  }
  span{
    color: #efab1b;
  }
  .c-h1 {
    color: #000000;
    font-size: 6vh;
    font-weight: bold;
  }
  footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    color: #000000;
    font-weight: bold;
  }
  footer p {
    margin: 0;
  }