body {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 20px;
    margin: 0;
}

.bar-yellow {
    background-color: #FCE01B;
    background-size: cover;
    height: 5px;
    width: 100%;
}

header {
    background-image: url(../img/Banner_About.jpg);
    background-size: cover;
    background-position: center;
    height: 961px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    text-transform: uppercase;
}

h1 {
    font-family: TT Rounds Neue Trl Cnd, Arial Rounded MT Bold, Helvetica Rounded, Arial, sans-serif;
    font-size: 48px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-align: center;
}

h3 {
    font-size: 24px;
    max-width: 900px;
    text-align: center;
}

a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}

a:hover {
    color:  #FCE01B;
}

.line-header {
    background-color: #FCE01B;
    background-size: cover;
    height: 10px;
    width: 225px;
    margin-bottom: 28px;
    border-radius: 10px;
}

.logo {
    position: absolute;
    left: 75px;
    top: 58px;
}

.headline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
}

.navigation {
    height: 700px;
    background: rgba(0,0,0,.8);
    backdrop-filter: blur(15px);
    filter: drop-shadow(-20px 15px 8px rgba(0,0,0,.2));
    transform: scale(0,1);
    transform-origin: right;
    transition: transform 300ms ease-in-out;
    display: flex;
    align-items: flex-end;
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;
}

.navigation ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.navigation li {
    border-bottom: .1px solid rgba(255,255,255,.5);
    padding: 30px 70px;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 7px;
}

#navigation-contact {
    border-bottom: .1px solid rgba(255,255,255,0);
}

#menu:checked ~ .navigation {
    transform: scale(1,1);
}

#menu:checked ~ .navigation a {
    opacity: 1;
    transition: opacity 250ms ease-in-out 300ms;
}

#menu {
    display: none;
}

#hamburger {
    position: absolute;
    top: 90px;
    right: 75px;
    z-index: 10;
    transition: transform 500ms ease-in-out;
}

.hamburger, .hamburger::after {
    display: block;
    background: #FCE01B;
    width: 35px;
    height: 5px;
    transition: transform 500ms ease-in-out;
}

.hamburger{
    position: relative;
}

.bar1, .bar2 {
    display: block;
    background: #FCE01B;
    width: 35px;
    height: 5px;
    margin: 6px auto;
    transition: transform 500ms ease-in-out;
}

#hamburger.animate .bar1 {
    transform: translateY(5.5px) rotate(45deg);
}

#hamburger.animate .bar2 {
    transform: translateY(-5.5px) rotate(-45deg);
}

.current-page {
    color:  #FCE01B;
}

@media screen and (min-width: 1000px) {
    #hamburger {
      display: none;
    }

    header {
      display: grid;
      grid-template-columns: 60% 20%;
      place-items: center;
    }

    .headline {
      grid-column: 1;
    }

    .navigation {
      transform: scale(1,1);
      background: rgba(0,0,0,0);
      backdrop-filter: blur(0);
    }

    .navigation a {
      opacity: 1;
      transition: opacity 250ms ease-in-out 300ms;
    }

    #navigation-contact {
        border-bottom: .1px solid rgba(255,255,255,.5);
    }
}

@media screen and (max-width: 1000px) {
    header {
        height: 700px;
    }
    h1 {
        font-size: 38px;
    }
    h3 {
        font-size: 20px;
    }
    .headline {
        margin-top: 100px;
    }
}

@media screen and (max-width: 500px) {
    header {
        height: 500px;
    }
    h1 {
        font-size: 25px;
    }
    h3 {
        font-size: 16px;
    }
    .headline {
        margin-top: 100px;
    }
    .logo {
        left: 25px;
        top: 25px;
    }
    #hamburger {
        top: 40px;
        right: 25px;
    }
}

.gallery {
    background: #848484;
    display: flex;
    flex-direction: column;
    place-items: center;
    gap: 15rem;
    padding: 15rem 0;
}

video {
    margin: -10px auto;
    filter: drop-shadow(5px 5px 15px rgb(0,0,0,.3));
    width: 75%;
    max-width: 1172px;
}

@media screen and (max-width: 1600px) {
    video {
        width: 90%;
    }
}

.gallery p {
    color: white;
    line-height: 1.7;
}

h2 {
    font-family: TT Rounds Neue Trl Cnd, Arial Rounded MT Bold, Helvetica Rounded, Arial, sans-serif;
    font-size: 32px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-align: left;
    color: white;
}

.container1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "top bottom";
    align-items: center;
    position: relative;
    width: 1172px;
}

.image1 {
    filter: drop-shadow(5px 5px 15px rgb(0,0,0,.3));
    background-image: url(../img/About-1.jpg);
    background-size: cover;
    background-position: center;
    height: 675px;
    aspect-ratio: 1 / 1;
    grid-area: top;
}

.content1 {
    filter: drop-shadow(5px 5px 15px rgb(0,0,0,.3));
    background-color: black;
    width: 450px;
    position: absolute;
    right: 0;
    z-index: 3;
    padding: 1rem 3rem 2rem 3rem;
    grid-area: bottom;
}

h4 {
    color: white;
    text-transform: uppercase;
    font-weight: lighter;
    letter-spacing: 3px;
    margin-top: -20px;
}

.line-header1 {
    margin: 40px 0;
    background-color: #FCE01B;
    background-size: cover;
    height: 10px;
    width: 225px;
    border-radius: 10px;
}

@media screen and (max-width: 1200px) {
    .gallery {
        gap: 10rem;
        padding: 10rem 0;
    }
    .container1 {
        grid-template-columns: 1fr;
        grid-template-areas:
            "top"
            "bottom";
        width: 100%;
        margin-bottom: 15em;
    }
    .image1 {
        grid-area: top;
    }
    .content1 {
        grid-area: bottom;
        width: 80%;
        margin-top: 10em;
    }
}

@media screen and (max-width: 700px) {
    .gallery {
        gap: 7em;
        padding: 7rem 0;
    }
    .container1 {
        margin-bottom: 28em;
    }
    .image1 {
        height: 345px;
    }
    .content1 {
        width: 70%;
        margin-top: 25em;
    }
}

.container2 {
    border: 10px solid black;
    filter: drop-shadow(5px 5px 15px rgb(0,0,0,.3));
    display: flex;
    width: 80%;
    max-width: 1172px;
    height: 550px;
    position: relative;
}

.image2 {
    background-image: url(../img/About-2.png);
    background-size: cover;
    background-position: center;
    height: 650px;
    aspect-ratio: .76 / 1;
    align-self: end;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.content2 {
    padding: 1rem 3rem;
    align-self: center;
    width: 50%;
}

@media screen and (max-width: 1200px) {
    .container2 {
        width: 90%;
        height: auto;
    }
    .content2 {
        width: 40%;
    }
    .image2 {
        width: 50%;
        height: auto;
    }
}

@media screen and (max-width: 700px) {
    .container2 {
        height: 900px;
    }
    .content2 {
        width: 100%;
        padding: 0  2rem;
        align-self: start;
    }
    .image2 {
        width: 65%;
        z-index: -1;
    }
}

#image3 {
    background-image: url(../img/About-3.jpg);
}

#image4 {
    background-image: url(../img/About-4.png);
}

#image5 {
    background-image: url(../img/About-5.jpg);
}

#image6 {
    background-image: url(../img/About-6.png);
}

#image7 {
    background-image: url(../img/About-7.jpg);
}



@media screen and (max-width: 700px) {
    #content3 {
        margin-top: 24rem;
    }
    #container4 {
        margin-top: -9rem;
    }
}

footer {
    background-color: #B4B4B4;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-media-icons {
    display: flex;
    gap: 2em;
    margin-top: 25px;
}

.social-media-icons a:hover {
    opacity: 0.5;
}

.bottom-navigation{
    list-style-type: none;
    text-align: center;
    display: flex;
    gap: 3em;
    margin-top: 50px;
    letter-spacing: 4px;
  }

.bottom-nav-line-1, .bottom-nav-line-2 {
    display: flex;
    gap: 3em;
    align-items: center;
  }

.line-gray {
    height: 50px;
    width: .56px;
    background-color: #848484;
}

#current-page {
    color: black;
}

.copyright-info {
    color: white;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 35px;
}

@media screen and (max-width:1000px) {
    .line-gray-2 {
        opacity: 0;
        visibility: hidden;
    }
    .footer {
        height: 443px;
    }
    #line-gray-2 {
        opacity: 0;
        visibility: hidden;
    }
    .bottom-navigation {
          flex-direction: column;
          gap: 1em;
          align-items: center;
    }
    .bottom-nav-line-1 {
        margin-left: 50px;
    }
    .bottom-nav-line-2 {
        margin-left: -35px;
    }
    .bottom-nav-line-1, .bottom-nav-line-2 {
        gap: 2em;
    }
}
