@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;800;900&display=swap');

:root {
    --main-color: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
}

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
}

header {
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
    padding: 10px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

header img {
    width: auto;
    height: 50px;
    /* padding: 10px; */
    border-radius: 5px;
    display: flex;
    margin-top: 13px;
    opacity: 25%;
    position: absolute;
    left: 177px;
    z-index: -1;
}

header span {
    color: #fff;
}

header .navigation a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 2px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

header .logo {
    position: relative;
    color: rgb(0, 0, 0);
    font-size: 45px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
    display: flex;
}

/* header .navigation a:not(:last-child) {
    margin-right: 30px;
} */

header .navigation a:hover {
    background: var(--main-color);
    color: rgb(255, 255, 255);
}

.content {
    max-width: 1330px;
    margin: auto;
}

.content .info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.content .info h2 {
    color: #000000;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 60px;
    text-align: center;
}

.content .info p {
    text-align: left;
    font-size: 1rem;
    color: #000000;
    font-weight: 400;
}

.media-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 30px 0px;
}

.media-icons p {
    text-align: center;
    font-size: 1rem;
    color: #000000;
    font-weight: 100;
    margin: 30px 100px;
}

.media-icons a {
    position: relative;
    color: #111;
    font-size: 25px;
    transition: 0.3s;
    text-align: center;
}

.media-icons a:not(:last-child) {
    margin-right: 60px;
}

.media-icons a:hover {
    transform: scale(1.5);
}

label {
    display: none;
}

#check {
    z-index: 3;
    display: none;
}

/* @media(max-width: 1400px) {
    header {
        padding: 30px 30px;
    }
} */

.hyperlink-1 {
    color: black;
}


@media(max-width: 1500px) {

    header {
        padding: 20px 30px;
    }

    header .navigation {
        display: none;
    }

    label {
        display: block;
        font-size: 25px;
        cursor: pointer;
        transition: 0.3s;
        transition-property: color;
    }

    label .close-btn {
        display: none;
    }

    #check:checked~header .navigation {
        z-index: 5;
        position: fixed;
        background: rgba(255, 255, 255, 0.9);
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    #check:checked~header .navigation a {
        font-weight: 700;
        margin-right: 0;
        /* margin-bottom: 50px; */
        letter-spacing: 2px;
    }

    #check:checked~header label .menu-btn {
        display: none;
    }

    #check:checked~header label .close-btn {
        z-index: 5;
        display: block;
        position: relative;
    }

    header {
        padding: 20px 30px;
        min-width: 380px;
    }

    .content {
        margin: 0px auto;
        /* max-width: 100%; */
    }

    /* .content .info { */
    /* margin: 0px 30px; */
    /* } */

    .content .info h2 {
        line-height: 50px;
    }

    .content .info p {
        font-size: 1rem;
        color: #000000;
        font-weight: 400;
        /* margin: 30px 0px; */
    }

    .content .info img {
        /* width: 99.9%; */
    }

    .media-icons p {
        text-align: center;
        font-size: 1rem;
        color: #000000;
        font-weight: 100;
        margin: 30px 50px;
    }

    .dropdown .dropbtn {
        font-weight: 700;
    }
}