/* 
    Theme name: BP Worksy s.r.o.
    Author: Petr Svoboda
    Version: 0.1
    Description: WordPress theme directly for company BP Worksy s.r.o. located in Rakovnik.
*/

:root {
    --gold: rgb(123, 105, 77);
    --yellow: #F5B100;
    --grayText: #717171;
    --lightgray: #f3f4f680;
    --gray: #E5E7EB;
    --black: #2A2A2A;
    --white: #f2f2f2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

:focus {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 10000;
}

.skip-link:focus {
    top: 20px;
}

a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}



html {
    font-size: 62.5%;
}

body {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;

    background-color: rgb(253, 253, 253);
}

a {
    text-decoration: underline;
    color: var(--yellow);
    transition: 0.3s;

    &:hover {
        color: #ffbb01;
    }
}


header {
    width: 100%;
    max-width: 2000px;

    nav {
        width: 100%;
        height: 70px;
        background-color: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        z-index: 1000;
        position: relative;

        img {
            height: 50px;
        }

        >ul {
            height: 100%;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;

            margin-left: auto;
            padding: 0 20px;

            li {
                height: 100%;
                display: flex;
                align-items: center;

                &.current-menu-item,
                &.current_page_parent {
                    >a {
                        color: var(--yellow);
                        font-weight: 700;
                    }
                }

                a {
                    text-decoration: none;
                    color: var(--grayText);
                    font-weight: 400;
                    transition: 0.3s;
                    font-size: 1.5rem;

                    &:hover {
                        cursor: pointer;
                        color: var(--yellow);
                    }
                }

                ul {
                    position: absolute;
                    background-color: var(--white);
                    padding: 10px;
                    border: 1px solid var(--gray);
                    border-radius: 5px;
                    display: none;
                    flex-direction: column;
                    gap: 10px;

                    li {
                        a {
                            font-weight: 400;

                            &:hover {
                                color: var(--yellow);
                            }
                        }
                    }
                }

                &:hover {
                    ul {
                        display: flex;
                        top: 55px;
                    }
                }
            }
        }

        #lang-selector {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.4rem;
            padding: 5px 10px;
            background-color: #f0f0f0;
            border-radius: 5px;
            width: 90px;
            height: 30px;

            border-radius: 5px;

            z-index: 1500;

            position: relative;

            .globe {
                font-size: 2.0rem;
                z-index: 500;
                color: #000;
                font-variation-settings:
                    'FILL' 0,
                    'wght' 600,
                    'GRAD' 0,
                    'opsz' 24;
            }

            .lang-options {
                width: 20px;
            }

            a {
                text-decoration: none;
                color: #000;
                font-weight: 700;
                transition: 0.3s;

                &:hover {
                    cursor: pointer;
                    color: var(--yellow);
                }
            }

            a:not(.gt-current-lang) {
                display: none;
            }

            .arrow {
                font-size: 1.4rem;
                color: var(--grayText);
                transform: rotate(-90deg);
            }

            &:hover {
                .gtranslate_wrapper {
                    display: flex !important;
                    align-items: center;
                    justify-content: center;
                    flex-direction: column;
                    gap: 10px;


                    position: absolute;
                    top: 0px;
                    left: 0;

                    background-color: #f0f0f0;
                    width: 90px;

                    border-radius: 5px;

                    padding: 8px 10px 10px 13px;


                    a {
                        display: inline;

                        &:not(.gt-current-lang) {
                            font-weight: 400;
                        }
                    }
                }
            }
        }
    }


    section {
        width: 100%;
        min-height: 400px;
        background-color: #1d1d1da2;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        padding: 50px 20px;
        overflow: hidden;

        position: relative;

        img {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            object-fit: cover;
            z-index: -1;

        }

        .header-hero {
            display: flex;
            align-items: center;
            flex-direction: column;
            gap: 20px;

            color: #fff;

            h1 {
                font-size: 3.2rem;
                display: none;
                text-align: center;
            }

            h2 {
                font-size: 6.4rem;
                text-align: center;
            }

            p {
                font-size: 2rem;
                text-align: center;
                line-height: 1.5;
            }

            div {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 40px;

                a {
                    text-decoration: none;
                    color: #000;
                    background-color: var(--yellow);
                    padding: 10px 20px;
                    border-radius: 5px;
                    font-size: 1.8rem;
                    transition: 0.3s;

                    text-align: center;

                    &:hover {
                        background-color: #ffbb01;
                    }
                }
            }
        }
    }
}


/* ? MOBILE NAV */


header nav .mobile {
    display: none;
}

header nav .menu-btn {
    display: none !important;
}

@media screen and (max-width: 1200px) {
    .mobile {
        display: block !important;
    }

    .menu-icon {
        height: 100%;
        width: 40px;
        display: flex !important;
        align-items: center;
        justify-content: center;

        margin-left: 20px;
        margin-right: 10px;

        order: 3;
    }

    #lang-selector {
        margin-left: auto;
    }

    header nav ul li ul {
        display: none !important;
    }

    header nav {
        position: relative !important;
    }

    header nav>ul {
        display: none !important;
        position: absolute;
        top: 70px;
        right: 0;

        /* width: 100%; */
        height: calc(100vh - 70px);
        align-items: stretch;
        flex-direction: column;
        gap: 0px !important;

        background-color: #ffffff;

        padding: 20px 10px !important;

        /* border: 2px solid black; */

        z-index: 500;
    }

    header nav>ul>li {
        width: 100%;
        height: auto !important;

        padding: 10px;
    }

    header nav>ul>li>a {
        width: 100%;
        display: block;
        padding: 5px 20px;

        text-align: center;
        text-decoration: none !important;
        color: black;

        background-color: white;
    }

    /* MOBILE MENU ICON LINES */

    header .menu-icon .nav-icon {
        background-color: var(--yellow);
        display: block;
        height: 2.5px;
        width: 15px;
        position: relative;
        transition: background .2s ease-out;
        border-radius: 2px;

        display: flex;
        justify-content: flex-end;
    }

    header .menu-icon .nav-icon:before {
        background-color: var(--yellow);
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        transition: all .2s ease-out;
        width: 150%;
        top: 5px;
        border-radius: 2px;

    }

    header .menu-icon .nav-icon:after {
        background-color: var(--yellow);
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        width: 150%;
        transition: all .2s ease-out;
        top: -5px;
        border-radius: 2px;

    }

    /* DISPLAING MOBILE MENU */

    header .menu-btn:checked~.menu {
        display: flex !important;
        transition: 0.5s;
        max-width: 100%;
    }

    /* MOBILE MENU ICON NAVIGATION */

    header .menu-btn:checked~.menu-icon .nav-icon {
        background-color: transparent;
    }

    header .menu-btn:checked~.menu-icon .nav-icon:before {
        transform: rotate(45deg);
        top: 0;
    }

    header .menu-btn:checked~.menu-icon .nav-icon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

@media screen and (max-width: 800px) {
    nav img {
        height: 30px !important;
    }
}

@media screen and (max-width: 530px) {
    header section {
        padding: 30px 10px;
    }

    header section .header-hero h2 {
        font-size: 4.8rem;
    }

    header section .header-hero p {
        font-size: 1.8rem;
    }

    header section .header-hero h1 {
        /* display: block; */
        font-size: 2.8rem;
    }

    header section .header-hero div {
        flex-direction: column;
        gap: 20px;
    }

    header section .header-hero div a {
        width: 100%;
    }

}


/* ! FRONT PAGE */

main.front-page-main {
    width: 100%;
    padding-top: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;


    #numbers {
        width: 100%;
        max-width: 2000px;
        padding: 0 10%;

        display: flex;
        align-items: flex-start;
        justify-content: space-evenly;
        gap: 30px;
        flex-wrap: wrap;

        div {
            width: 150px;
            display: flex;
            align-items: center;
            flex-direction: column;
            gap: 10px;

            span {
                font-size: 3rem;
                color: #fff;
                font-weight: 700;

                background: var(--yellow);
                padding: 15px;
                border-radius: 50%;
            }

            h3 {
                font-size: 2.8rem;
                color: var(--yellow);
            }

            p {
                font-size: 1.6rem;
                color: var(--grayText);
                text-align: center;
            }
        }
    }


    #positions {
        width: 100%;
        max-width: 2000px;
        padding: 0 10%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;

        h2 {
            font-size: 3.2rem;
            text-align: center;
        }

        article {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            place-items: center;

            >div {
                height: 100%;

                padding: 20px;
                border: 2px solid var(--gray);
                border-radius: 5px;
                display: flex;
                flex-direction: column;
                gap: 15px;

                max-width: 375px;

                h3 {
                    font-size: 2.4rem;
                    color: var(--black);
                }

                p {
                    font-size: 1.4rem;
                    color: var(--grayText);
                    line-height: 1.5;
                }

                .upps {
                    font-size: 1.6rem;
                    font-weight: 700;
                    color: var(--black);
                    margin-bottom: -10px;
                }

                ul {
                    list-style: none;

                    display: flex;
                    flex-wrap: wrap;
                    gap: 10px;


                    li {
                        font-size: 1.2rem;
                        background-color: var(--gray);
                        padding: 5px 10px;
                        border-radius: 15px;
                    }
                }

                .info-w-icon {
                    font-size: 1.3rem;
                    color: var(--grayText);
                    display: flex;
                    align-items: center;
                    gap: 5px;

                    .material-symbols-rounded {
                        font-size: 1.6rem;
                        color: var(--yellow);
                        font-variation-settings:
                            'FILL' 0,
                            'wght' 600,
                            'GRAD' 0,
                            'opsz' 24;
                    }
                }

                img {
                    width: 150px;
                    height: auto;
                    border-radius: 5px;
                }

                .firm-name {
                    font-size: 2rem;
                    font-weight: 700;
                    color: var(--black);
                }

                >div {
                    display: flex;
                    justify-content: space-between;
                    flex-wrap: wrap;
                    gap: 5px;
                    margin-top: auto;
                }

                >a {
                    width: 60%;
                    background-color: var(--yellow);
                    border-radius: 5px;
                    padding: 10px 20px;

                    color: #fff;
                    font-size: 1.6rem;
                    text-align: center;
                    text-decoration: none;

                    align-self: center;

                    transition: 0.3s;

                    &:hover {
                        background-color: #ffbb01;
                    }
                }
            }

            >div:nth-child(4) {
                display: none;
            }
        }

        >a {
            background-color: var(--yellow);
            padding: 10px 20px;
            border-radius: 5px;

            color: #fff;
            font-size: 1.3rem;
            text-decoration: none;

            align-self: center;

            transition: 0.3s;

            &:hover {
                background-color: #ffbb01;
            }
        }
    }

    #whyBP {
        width: 100%;
        position: relative;

        img {
            position: absolute;
            left: 0;
            top: 0;
            object-fit: cover;
            z-index: -1;

            width: 100%;
            height: 100%;
        }

        >div {
            padding: 40px 10%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            place-items: center;

            background-color: #1d1d1da2;

            #whyUsBox {
                color: #fff;
                display: flex;
                flex-direction: column;
                gap: 15px;

                h2 {
                    font-size: 2.2rem;
                }

                p {
                    font-size: 1.5rem;
                    color: var(--lightgray);
                }

                div {
                    display: grid;
                    grid-template-columns: 10px 1fr;
                    gap: 5px;

                    span {
                        background-color: var(--yellow);
                        height: 5px;
                        width: 5px;
                        border-radius: 50%;

                        place-self: center;
                    }

                    h4 {
                        font-size: 1.4rem;
                        color: #fff;
                    }

                    p {
                        font-size: 1.3rem;
                        color: var(--lightgray);

                        grid-column: 2;
                    }
                }

            }


            #startTodayBox {
                background-color: #fff;
                padding: 20px;
                border-radius: 5px;
                display: flex;
                flex-direction: column;
                gap: 10px;

                h3 {
                    font-size: 1.8rem;
                }

                p {
                    font-size: 1.4rem;
                    line-height: 1.5;
                    color: var(--grayText);

                    margin-bottom: 10px;
                }

                a {
                    text-decoration: none;
                    color: #fff;
                    background-color: var(--yellow);
                    padding: 7px 14px;
                    border-radius: 5px;
                    font-size: 1.3rem;
                    text-align: center;
                    transition: 0.3s;

                    &:hover {
                        background-color: #ffbb01;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 990px) {
    #whyBP>div {
        grid-template-columns: 1fr !important;
    }

}

@media screen and (max-width: 1450px) {
    #positions article {
        grid-template-columns: 1fr 1fr !important;
    }

    #positions article>div:nth-last-child(1) {
        display: flex !important;
    }
}


@media screen and (max-width: 925px) {
    #positions article {
        grid-template-columns: 1fr !important;
    }

    #positions article>div:nth-child(4) {
        display: none !important;
    }
}


main:not(.front-page-main, .error-page-main) {
    width: 100%;
    /* padding-top: 20px; */
    padding-bottom: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    #page-header {
        width: 100%;
        max-width: 2000px;
        padding: 50px 10%;
        background-color: rgba(29, 29, 29, 0.65);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;

        position: relative;

        img {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        h1 {
            font-size: 3.2rem;
            text-align: center;

            color: #fff;

            position: relative;

            &::after {
                content: "";
                position: absolute;
                bottom: -5px;
                left: 50%;
                transform: translateX(-50%);
                width: 60px;
                height: 2px;
                background-color: var(--yellow);
                border-radius: 2px;
            }
        }

        nav.breadcrumb {
            padding: 0 10%;
            font-size: 1.4rem;
            /* color: var(--grayText); */
            color: var(--white);

            margin-bottom: 10px;

            a {
                text-decoration: none;
                /* color: var(--grayText); */
                color: var(--white);
                transition: 0.3s;

                &:hover {
                    color: var(--yellow);
                }
            }

            span {
                margin: 0 5px;
            }
        }

        .subpages {
            width: 100%;
            max-width: 2000px;
            padding: 0 10%;

            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;

            list-style-type: none;

            margin-left: 0 !important;

            a {
                text-decoration: none;
                color: var(--grayText);
                background-color: var(--gray);
                font-size: 1.4rem;
                padding: 8px 12px;
                border: 1px solid var(--gray);
                border-radius: 5px;
                transition: 0.3s;

                &:hover {
                    background-color: var(--yellow);
                    color: #fff;
                    border-color: var(--yellow);
                }

                &.current-subpage {
                    background-color: var(--yellow);
                    color: #fff;
                    border-color: var(--yellow);
                    font-weight: 700;

                    &:hover {
                        cursor: default;
                        background-color: var(--yellow);
                        color: #fff;
                        border-color: var(--yellow);
                    }
                }
            }
        }
    }

    section {
        width: 100%;
        max-width: 1500px;
        padding: 0 10%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;

        h2 {
            font-size: 2.8rem;
            /* text-align: center; */
        }

        h3 {
            font-size: 2.4rem;
            /* text-align: center; */
        }

        h4 {
            font-size: 2.0rem;
        }

        h5 {
            font-size: 1.8rem;
        }

        p {
            font-size: 1.6rem;
            line-height: 1.5;
        }

        ul {
            font-size: 1.6rem;
            line-height: 1.75;
            margin-left: 35px !important;
        }

        a {
            text-decoration: underline;
            color: var(--yellow);
            transition: 0.3s;

            &:hover {
                color: #ffbb01;
            }
        }
    }










    #all-positions {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
        margin-bottom: 40px;


        >div:not(.pagination) {
            display: flex;
            align-items: stretch;
            flex-direction: column;
            gap: 15px;
            padding: 20px;
            border: 2px solid var(--gray);
            border-radius: 5px;
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;

            h3 {
                font-size: 2.4rem;
                /* color: var(--yellow); */
            }

            p {
                font-size: 1.4rem;
                color: var(--grayText);
                line-height: 1.5;
            }

            .upps {
                font-size: 1.6rem;
                font-weight: 700;
                color: var(--black);
                margin-bottom: -10px;
            }

            ul {
                list-style: none;

                display: flex;
                flex-wrap: wrap;
                gap: 10px;

                margin-left: 0 !important;


                li {
                    font-size: 1.2rem;
                    background-color: var(--gray);
                    padding: 5px 10px;
                    border-radius: 15px;
                }
            }

            .info-w-icon {
                font-size: 1.3rem;
                color: var(--grayText);
                display: flex;
                align-items: center;
                gap: 5px;

                .material-symbols-rounded {
                    font-size: 1.6rem;
                    color: var(--yellow);
                    font-variation-settings:
                        'FILL' 0,
                        'wght' 600,
                        'GRAD' 0,
                        'opsz' 24;
                }
            }

            img {
                width: 150px;
                height: auto;
                border-radius: 5px;
            }

            .firm-name {
                font-size: 2rem;
                font-weight: 700;
                color: var(--black);
            }

            >div {
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 5px;
                margin-top: auto;
            }

            a {
                /* width: 60%; */

                color: var(--yellow);
                font-size: 1.6rem;
                text-align: center;
                text-decoration: none;

                align-self: center;

                transition: 0.3s;

                &:hover {
                    color: #ffbb01;
                }
            }
        }

        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;

            a,
            span {
                text-decoration: none;
                color: var(--grayText);
                font-size: 1.4rem;
                padding: 8px 12px;
                border: 1px solid var(--gray);
                border-radius: 5px;
                transition: 0.3s;

                &:hover {
                    background-color: var(--yellow);
                    color: #fff;
                    border-color: var(--yellow);
                }
            }

            .current {
                background-color: var(--yellow);
                color: #fff;
                border-color: var(--yellow);
                font-weight: 700;

                &:hover {
                    cursor: default;
                    background-color: var(--yellow);
                    color: #fff;
                    border-color: var(--yellow);
                }
            }
        }
    }


    #nabizena-pozice-detail {
        padding-bottom: 20px;

        article {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 15px;

            p {
                font-size: 1.6rem;
                line-height: 1.5;
            }

            .upps {
                font-size: 1.6rem;
                font-weight: 700;
                color: var(--black);
                margin-bottom: -10px;
            }

            h3 {
                font-size: 2.4rem;
                /* color: var(--yellow); */
            }

            ul {
                list-style: none;

                display: flex;
                flex-wrap: wrap;
                gap: 10px;


                li {
                    font-size: 1.4rem;
                    background-color: var(--gray);
                    padding: 5px 10px;
                    border-radius: 15px;
                }
            }

            .info-w-icon {
                font-size: 1.6rem;
                color: var(--grayText);
                display: flex;
                align-items: center;
                gap: 5px;

                .material-symbols-rounded {
                    font-size: 1.8rem;
                    color: var(--yellow);
                    font-variation-settings:
                        'FILL' 0,
                        'wght' 600,
                        'GRAD' 0,
                        'opsz' 24;
                }
            }

            img {
                width: 150px;
                height: auto;
                border-radius: 5px;
            }

            >div {
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 5px;
                margin-top: auto;
            }


            a {
                /* width: 60%; */

                color: var(--yellow);
                font-size: 1.6rem;
                text-align: center;
                text-decoration: none;

                align-self: center;

                transition: 0.3s;

                &:hover {
                    color: #ffbb01;
                }
            }
        }
    }


    .contact-form {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 20px 0;


        form {
            width: 100%;
            max-width: 600px;
            display: flex;
            flex-direction: column;
            gap: 15px;

            p {
                display: flex;
                flex-direction: column;
                gap: 5px;

                label {
                    font-size: 1.4rem;
                    color: var(--black);

                    span {
                        color: red;
                    }
                }

                input,
                textarea {
                    font-size: 1.4rem;
                    padding: 10px;
                    border: 1px solid var(--gray);
                    border-radius: 5px;
                    resize: vertical;

                    &:focus {
                        outline: none;
                        border-color: var(--yellow);
                        box-shadow: 0 0 5px var(--yellow);
                    }
                }

                textarea {
                    min-height: 100px;
                }
            }

            input[type="submit"] {
                width: 30%;
                background-color: var(--yellow);
                border: none;
                color: #fff;
                font-size: 1.6rem;
                padding: 10px;
                border-radius: 5px;
                cursor: pointer;
                transition: 0.3s;

                align-self: center;


                &:hover {
                    cursor: pointer !important;
                    background-color: #ffbb01;
                }
            }
        }
    }

    .kontaktni-osoby {
        display: flex;
        align-items: flex-start;
        justify-content: stretch;
        gap: 20px;
        flex-wrap: wrap;

        padding: 15px 0;

        .kontaktni-osoba {
            width: 300px;
			height: 350px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 20px;
            border: 2px solid var(--gray);
            border-radius: 5px;

            img {
                width: 150px;
                height: 150px;
                object-fit: cover;
                border-radius: 50%;
            }

            h3 {
                font-size: 2.2rem;
                text-align: center;
            }

            p {
                font-size: 1.6rem;
                color: var(--black);
                text-align: center;
            }

            a {
                text-decoration: none;
                color: var(--yellow);
                font-size: 1.4rem;
                transition: 0.3s;

                &:hover {
                    color: #ffbb01;
                }
            }
        }
    }
}



footer {
    width: 100%;
    max-width: 2000px;
    background-color: #F3F4F6;
    padding: 40px 10% 30px 10%;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    section {
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;

        article {
            min-width: 250px;
            max-width: 500px;

            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;

            h2 {
                font-size: 2.4rem;
                margin-bottom: 10px;
                color: var(--yellow);
            }

            p {
                font-size: 1.6rem;
                color: var(--grayText);
            }

            div {
                display: flex;
                align-items: center;
                gap: 10px;

                span,
                p {
                    font-size: 1.5rem !important;
                    color: var(--grayText);
                }
            }

            .material-symbols-rounded {
                color: var(--yellow);
            }
        }

        div {
            h3 {
                font-size: 1.4rem;
                margin-bottom: 15px;
            }

            ul {
                list-style: none;
                display: flex;
                flex-direction: column;
                gap: 10px;

                li {
                    a {
                        text-decoration: none;
                        color: var(--grayText);
                        font-size: 1.3rem;
                        transition: 0.3s;

                        &:hover {
                            color: var(--yellow);
                        }
                    }
                }
            }
        }
    }

    hr {
        border: 1px solid var(--gray);
        margin: 20px auto 0 auto;
        max-width: 1200px;
        width: 90%;
    }

    #copyright {
        text-align: center;
        color: #6B7280;
        font-size: 1.2rem;
        margin-top: 30px;
    }
}