.indexes {
    display: none;
    flex-direction: row;
    justify-content: space-evenly;
    background-color: var(--soft-black);
    position: fixed;
    height: 25px;
    padding: 5px;
    z-index: 99;
    right: 0;
    left: 0;
    top: 0;
}

.indexes a {
    font-size: 16px;
    font-weight: 600;
    color: var(--soft-white) !important;
    transition: all 0.25s ease;
    cursor: pointer;
}

nav {
    user-select: none;
    position: fixed;
    padding: 2% 6%;
    height: 100px;
    z-index: 99;
    right: 0;
    left: 0;
    top: 0;
}

nav .logo {
    float: left;
    display: flex;
    align-items: center;
    height: 100%;
    width: 40%;
}

.adjust-nav {
    top: 35px;
}

.logo-image {
    content: url(../images/Logo.png);
    transition: 1s;
    width: 30%;
}

.logo-image-transparent {
    content: url(../images/Logo-T.png);
    transition: 1s;
    width: 30%;
}

nav #nav-list {
    padding: 0;
    width: 50%;
    height: 100%;
    float: right;
    display: flex;
    margin: 0 -50px;
    align-items: center;
    justify-content: space-around;
    transition: all ease-in-out 0.5s;
}

nav #nav-list li {
    list-style: none;
}

nav #nav-list a {
    padding: 10px;
    display: block;
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
    text-decoration: none;
    color: var(--soft-white);
    text-transform: capitalize;
    white-space: nowrap;
    transition: all 0.5s;
}

nav #nav-list a::after {
    content: '';
    width: 0;
    height: 2px;
    display: block;
    margin: 4px auto;
    transition: all 0.5s;
    background: var(--soft-white);
}

nav #nav-list a:hover::after {
    width: 100%;
}

nav #nav-list a:hover {
    color: var(--soft-blue);
}

#nav-toggle {
    top: -100px;
    position: absolute;
}

nav .menu-icon {
    top: 50%;
    right: 5%;
    display: none;
    position: absolute;
    transform: translateY(-50%);
    transition: all ease-in-out 0.5s;
}

nav .menu-icon .line {
    width: 30px;
    height: 4px;
    margin: 6px;
    border-radius: 5px;
    background: var(--soft-white);
    transition: all ease-in-out 0.5s;
}

nav .menu-icon .line:hover {
    transform: scale(1.2);
}

.navbar-scrolling {
    color: var(--soft-black);
    background: var(--soft-white);
    box-shadow: 0 5px 5px 0 var(--soft-black-background);
}

.nav-scrolling-resize {
    padding: 0 5%;
}

.nav-link:hover {
    color: var(--soft-blue) !important;
}

.nav-icons {
    display: flex;
    flex-direction: row;
    padding-left: 20px;
}

/* footer */

#trademark {
    font-size: 20px;
}

.footer {
    width: 100%;
    padding: 10px 0;
    user-select: none;
    text-align: center;
    color: var(--soft-white);
    background: var(--soft-black);
}

.footer span {
    margin: 0;
    font-weight: 500;
    color: var(--soft-white);
    text-transform: capitalize;
}

.footer-links p {
    margin: -5px;
    padding: 10px;
    font-size: 20px;
    display: inline-block;
}

.socials,
.socials i {
    font-size: 25px;
    transition: 0.5s;
    margin: 10px 10px 5px;
    color: var(--soft-white);
    background: var(--soft-black);
}

.socials i {
    cursor: pointer;
}

.linkedin-fill:hover,
.waze-fill:hover {
    color: var(--soft-blue) !important;
}

.facebook-fill:hover {
    color: var(--soft-dark-blue) !important;
}

.instagram-fill:hover {
    color: var(--soft-yellow) !important;
}

.youtube-fill:hover {
    color: var(--soft-red) !important;
}

.email-fill:hover {
    color: var(--soft-orange) !important;
}

.whatsapp-fill:hover,
.phone-fill:hover {
    color: var(--soft-green) !important;
}

@media screen and (min-width: 1980px) {
    .nav-scrolling-resize {
        padding: 1% 5% 1%;
    }
}

@media screen and (max-width: 1690px) {
    .adjust-nav {
        margin-top: 20px;
    }

    .indexes {
        height: 45px;
    }

    .indexes a {
        width: 370px;
        text-align: center;
    }

    .line-break::before {
        content: 'hiddentext';
        line-height: 0;
        display: block;
        font-size: 0;
    }
}

@media screen and (max-width: 1350px) {
    nav #nav-list {
        float: left;
    }

    #trademark,
    .footer-links p {
        font-size: 15px;
    }

    .socials,
    .socials i {
        font-size: 20px;
    }
}

@media screen and (max-width: 1150px) {
    .adjust-nav {
        margin-top: 40px;
    }

    .indexes {
        height: 65px;
        align-items: center;
        flex-direction: column;
    }

    .indexes a {
        width: 100%;
    }

    .line-break::before {
        display: none;
    }
}

@media screen and (max-width: 650px) {
    .adjust-nav {
        margin-top: 40px;
    }

    .indexes {
        height: 65px;
    }

    .indexes a {
        font-size: 9px;
    }
}

@media screen and (max-width: 900px) {
    .navbar-scrolling {
        border-bottom: 2px solid var(--soft-white);
    }

    .nav-scrolling-resize {
        padding: 2% 5%;
    }

    nav #nav-list {
        left: 0;
        right: 0;
        top: 120px;
        float: none;
        width: auto;
        height: auto;
        bottom: 100%;
        position: fixed;
        overflow: hidden;
        flex-direction: column;
        justify-content: space-evenly;
        background: var(--soft-white);
    }

    nav #nav-list a {
        font-size: 25px;
        color: var(--soft-black);
    }

    nav #nav-list a::after {
        background: var(--soft-black);
    }

    nav .logo {
        float: none;
        width: auto;
    }

    .logo-image,
    .logo-image-transparent {
        width: 20% !important;
        display: block;
        margin: 0 auto;
        z-index: 999;
    }

    nav .menu-icon {
        display: block;
        cursor: pointer;
    }

    nav .menu-icon .line {
        background: var(--soft-white);
    }

    nav :checked~#nav-list {
        bottom: 0;
    }

    nav :checked~.menu-icon .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }

    nav :checked~.menu-icon .line:nth-child(2) {
        opacity: 0;
    }

    nav :checked~.menu-icon .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }
}

@media screen and (max-width: 500px) {

    .logo-image,
    .logo-image-transparent {
        width: 20% !important;
    }

    .adjust-nav {
        height: 70px;
    }

    nav #nav-list {
        top: 83px;
    }

    nav #nav-list a {
        font-size: 20px;
    }

    nav .menu-icon .line {
        height: 2px;
        margin: 8px;
        border-radius: 5px;
    }
}