* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #ddd;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    touch-action: manipulation;
}

main {
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.headerImg {
    display: flex;
    width: 100%;
    background-color: #fff;
    justify-content: space-between;
    height: auto;
    z-index: 1;
}

.headerImg h2 {
    position: absolute;
    top: 15rem;
    left: 0;
    width: 100%;
    text-align: center;
    height: max-content;
    background-color: rgba(0, 0, 0, 0.5);
    color: #f2f2f2;
    opacity: 0.8;
    font-size: clamp(1.5rem, 2.5vw, 3.5rem);
}

.header-video {
    width: 100%;
    opacity: 0.7;
    object-fit: cover;
    height: 30rem;
}

.header-video video {
    position: absolute;
    top: 0;
}

.logo-opacity {
    margin-top: 6px;
    margin-left: 10px;
    position: absolute;
    z-index: 1;
    left: 0;
    opacity: 0.5;
}

.logo-opacity img {
    width: clamp(120px, 55vw, 20rem);
    height: 6.5rem;
}

.nav-wide-links {
    margin-right: 20px;
    margin-top: 20px;
    font-size: 20px;
    position: absolute;
    z-index: 1;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    right: 0;
}

.nav-wide-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.nav-wide-links div {
    display: inline-block;
    transition: translate 0.5s;
    margin-left: 10px;
}

.nav-wide-links div:hover {
    translate: 0 10px;
}

.nav-mobile-links {
    height: 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    text-align: left;
    overflow-y: hidden;
    background-color: #ffff;
    transition: 0.5s;
}

.btns {
    text-align: left;
    height: 20px;
    width: 100%;
}

.links {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.links a {
    text-decoration: none;
    color: #150505;
    box-shadow: 10px 10px 5px #666;
    margin-left: 20px;
    margin-top: 10px;
    font-weight: bold;
    border: 2px solid #000;
    height: 30px;
    align-content: center;
    width: clamp(150px, 60vw, 20rem);
    margin-left: 40px;
}

.links a:hover {
    background-color: #777;
}

@media (max-width: 1000px) {
    .nav-wide-links {
        display: none;
    }
}

.openBtn {
    text-align: center;
    position: absolute;
    right: 0;
    top: 25px;
    z-index: 1;
    font-size: 40px;
    border: none;
    border-radius: 5px;
    height: auto;
    width: 50px;
    margin-right: 10px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 1000px) {
    .openBtn {
        display: none;
    }
}

.openBtn:hover {
    cursor: pointer;
    translate: 0 -5px;
    transition: 0.5s;
}

.closeBtn {
    position: absolute;
    right: 5px;
    background: none;
    font-size: 40px;
    border: none;
    margin-left: 20px;
    color: #150505;
    height: max-content;
}

.closeBtn:hover {
    cursor: pointer;
    color: #999;
}

.paragraphs {
    width: 90%;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: clamp(1rem, 2.5vw, 2.5rem);
    margin: auto;
}

.customHr {
    border-bottom: 3px solid #444;
    width: 70%;
    border-radius: 20px;
    margin: auto;
    margin-bottom: 20px;
    height: fit-content;
}

.header-content h2 {
    text-align: center;
    margin: auto;
    display: block;
    margin: auto;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
    margin-top: 20px;
}

.container img {
    width: 30rem;
    height: 40rem;
    display: block;
    margin: auto;
    margin-bottom: 20px;
}

.container p {
    display: block;
    margin: auto;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
    font-size: 18px;
}

.content-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 20px;
    margin-top: 20px;
}

.content-text-header {
    text-align: center;
}

.content-text a {
    color: #000;
    text-decoration: none;
}

.content-text li {
    font-size: 18px;
    color: #000;
    margin-left: 50px;
    width: 80%;
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.image-slider {
    box-sizing: border-box;
    display: block;
    text-align: center;
    height: auto;
    width: 80%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.image-slider img {
    width: clamp(100%, 30vw, 70%);
    height: clamp(20rem, 40vw, 50rem);
    display: none;
    box-shadow: 10px 10px 5px 5px #555;
}

.slides button {
    position: absolute;
    translate: 0 -250px;
    width: 30px;
    height: max-content;
    color: #000;
    background: none;
    border: none;
    font-size: 50px;
}

.next {
    right: 15%;
}

.prev {
    left: 15%;
}

.slides button:hover {
    color: #444;
    cursor: pointer;
}

img.displayImg {
    display: block;
}

@media (max-width: 640px) {
    .content img {
        width: 100%;
    }

    .image-slider {
        width: 100%;
    }

    .image-slider img {
        height: 20rem;
    }

    .slides button {
        translate: 0 -200px;
    }
}

.footer-content-container {
    background-color: #444;
    height: 20rem;
    display: flex;
    flex-wrap: wrap;
    height: 15rem;
    justify-content: space-between;
    color: #f2f2f2;
    padding: 20px;
}

.footer-content-container a {
    text-decoration: underline;
    color: #f2f2f2;
}

.center-content {
    flex: 50%;
    margin-left: 20px;
    margin-top: 20px;
}

.bottom-content {
    flex: 30%;
}

.bottom-content p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.footer-content-container img {
    width: 10rem;
}