html {
    overflow-x: hidden;
}

a {
    color: #000 !important;
}

a:hover {
   text-decoration: underline;
}

/* HEADER / MENU */
#header .navbar {
    background: #fff;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 25%);
    transition: all .5s;
}

#header .navbar-brand img {
    max-height: 70px;
    max-width: 300px;
}

#header .navbar-nav .nav-item {
    margin-right: 10px;
}

    #header .navbar-nav .nav-item:last-child {
        margin-right: 0;
    }

#header .nav-link {
    color: #101010;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
    background: transparent;
}

#header .dropdown-menu {
    border-top: 1px solid #e3e3e3 !important;
    box-shadow: 0px 1px 0 #e3e3e3;
}

.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus {
        border: none !important;
        box-shadow: none !important;
    }

    .navbar-toggler .icon-bar {
        background-color: #000;
    }

        .navbar-toggler .icon-bar + .icon-bar {
            margin-top: 4px;
        }

    .navbar-toggler .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

    .navbar-toggler:hover {
        background: transparent !important;
    }

    .navbar-toggler .icon-bar:nth-of-type(1) {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transform-origin: 10% 10%;
        -ms-transform-origin: 10% 10%;
        transform-origin: 10% 10%;
    }

    .navbar-toggler .icon-bar:nth-of-type(2) {
        opacity: 0;
    }

    .navbar-toggler .icon-bar:nth-of-type(3) {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 10% 90%;
        -ms-transform-origin: 10% 90%;
        transform-origin: 10% 90%;
    }

    .navbar-toggler.collapsed .icon-bar:nth-of-type(1) {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }

    .navbar-toggler.collapsed .icon-bar:nth-of-type(2) {
        opacity: 1;
    }

    .navbar-toggler.collapsed .icon-bar:nth-of-type(3) {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }
/* END HEADER / MENU */

/* CONTENT */
.title {
    font-size: 36px;
    line-height: 1;
    color: #000;
    position: relative;
}
section .container {
    border-bottom: 1px solid #e5e5e5;
}
    section .container * .container,
    section:last-of-type .container {
        border-bottom: 0;
    }
/* END CONTENT */
/* FOOTER */
footer a {
    font-weight: 400;
}

        footer a:hover {
            text-decoration: underline;
        }

.copyright {
    background: #dfdfdf;
}

.copyright {
    font-size: 14px;
}

    .copyright a {
        color: rgb(0 0 0 / 50%);
    }
/* END FOOTER */
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 992px;
    }
}
