#banner {
  /*   min-height: 800px; */
    height: fit-content;
    width: 100%;
    overflow: hidden;
  }
  
  #banner .down-arrow {
    grid-area: da;
    top: 3%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding: 0;
  }
  #banner .arrow-text,
  .arrow-text {
    position: relative;
    font-family: "Open Sans", verdana, sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    color: var(--clr-ylw-1);
    box-sizing: border-box;
  }
  
  
  
  
  
  #banner article {
    width: 80%;
    height: calc(100% - 300px);
    margin: auto;
    margin-top: 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "img slogans"
      "img buttons"
      "da da";
    grid-gap: 0 10%;
  }
  
  #banner article .img-container {
    position: relative;
    grid-area: img;
    min-width: 500px;
  }
  
  #banner article .img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  #banner article .slogans {
    grid-area: slogans;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-ylw-1);
    font-size: 1.8rem;
    padding: 6%;
    padding-left: 0;
  }
  
  #banner article .buttons {
    grid-area: buttons;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
  #banner article .buttons button {
    outline: 0;
    border: 2px solid var(--clr-ylw-1);
    border-radius: 10px;
    color: var(--clr-ylw-1);
    cursor: pointer;
    font-size: 1.3em;
    position: relative;
    width: 12rem;
    height: 5.5rem;
    min-width: 180px;
    min-height: 60px;
    background: var(--clr-overlay-1);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    box-sizing: content-box;
    margin-right: 3%;
  }
  
  @media (max-width: 1360px) {
    #banner article {
      height: 100vh;
      width: 80%;
      grid-template-areas:
        "img slogans"
        "buttons buttons"
        "da da";
      grid-gap: 5%;
    }
  
    #banner article .buttons {
      margin-top: 3%;
      justify-content: center;
    }
    #banner article .buttons button {
      margin: 0 3%;
    }
  }
  
  @media (max-width: 1000px) {
    #banner article {
      margin-top: 7%;
      width: 90%;
      grid-template-areas:
        "img img"
        "slogans slogans"
        "buttons buttons"
        "da da";
    }
  
    #banner article .buttons {
      margin-top: unset;
    }
  
    #banner article .buttons button {
      margin: 0 3%;
    }
  
    #banner article .slogans {
      padding: unset;
      padding-bottom: 3%;
      text-align: center;
    }
  
    #banner article .img-container img {
      max-height: 400px;
      height: 70vw;
    }
  }
  
  @media (max-width: 500px) {
    #banner article {
      margin-top: 15%;
    }
  
    #banner article .img-container img {
      width: 90vw;
    }
  
    #banner article .buttons button{
      margin: 10px;
    }
  }