
.menu-link {
    font-size: 120% !important;
}

.main-wrapper img {
    width: 100%;
    display: block;
}

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

.main-wrapper ul li {
    list-style-type: none;
}

.navbar {
    background: white;
    border: none;
    padding: 0 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.navbar-toggler {
    display: block;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    transition: all 0.4s ease;
    border: 2px solid #000;
    border-radius: 4px;
}

    .navbar-toggler:hover {
        opacity: 0.7;
    }

.navbar-collapse {
    overflow-y: scroll;
    display: none;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    /*opacity:.9;*/
    height: 50px;
}

    .navbar-nav > li > a {
        text-transform: uppercase;
        font-size: 90% !important;
        font-weight: 800;
        display: block;
        padding: 0.6rem 0;
        margin: 0.2rem 0;
        border-bottom: 1px solid #ddd;
        border-radius: 1px;
        position: relative;
        transition: all 0.4s ease;
    }

.drop-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.navbar-nav > li > a:hover {
    opacity: 0.7;
}

.sub-menu {
    display: none;
    background-color: white !important;
    margin-top: 2px;
}

.sub-menu-item {
    padding-left: 1.2rem;
}

.sub-menu h4 {
    text-transform: capitalize;
    font-size: 1rem;
    padding: 0.5rem 0;
}

.sub-menu ul li {
    text-transform: capitalize;
    padding: 0.2rem 0;
    margin: 0.2rem 0;
    font-size: 90%;
}

    .sub-menu ul li a {
        opacity: 0.8;
        transition: all 0.5s ease;
        font-size: 90%;
    }

        .sub-menu ul li a:hover {
            padding-left: 14px;
            opacity: 0.9;
            color: blue !important;
            font-weight: bold !important;
        }

/*.sub-menu-item:nth-child(3){
    background: #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.sub-menu-item:nth-child(3) h2{
    text-transform: capitalize;
    margin: 1.5rem 0;
}
.sub-menu-item:nth-child(3) .btn{
    border: 1px solid #000;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    cursor: pointer;
    background: #000;
    color: #fff;
    transition: all 0.5s ease;
}
.sub-menu-item:nth-child(3) .btn:hover{
    background: transparent;
    color: #000;
}
.sub-menu-item:nth-child(4){
    width: 50%;
    margin: 0 auto;
    padding: 2rem 0;
}*/
/*
.header{
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(https://source.unsplash.com/g-kNBpqMIs4/1920x1400) center/cover no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header h2{
    margin: 1rem;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}
.header p{
    margin: 1rem auto;
    color: #fff;
    width: 60%;
    opacity: 0.8;
    font-weight: 300;
    font-size: 1.2rem;
    text-align: center;
}
.header button{
    margin: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    transition: all 0.5s ease;
    cursor: pointer;
}
.header button:hover{
    background: #fff;
    color: #000;
}
*/

@media screen and (max-width: 580px) {
    #divMenuHeader {
        display: none !important;
    }
}

@media screen and (min-width: 580px) {
    @media screen and (min-width: 580px) {
        #divMenuHeader {
            display: none;
        }

        .navbar {
            flex-direction: row;
            flex-wrap: wrap;
            align-items: center;
            /*border-bottom: 1px solid #ddd;*/
            padding: 0 5rem;
            position: relative;
        }

        .navbar-toggler {
            display: none;
        }

        .navbar-collapse {
            display: block !important;
            overflow-y: hidden;
            flex: 1 0 auto;
        }

        .navbar-nav > li > a {
            border-bottom: none;
            margin: 0 1rem;
            padding: 1.7rem 1.8rem 1.7rem 0.8rem;
            font-size: 0.8rem;
        }

        .sub-menu {
            position: absolute;
            left: 0;
            width: 100%;
            top: 100%;
            background: #f8f8f8;
        }

        .navbar-nav > li:hover .sub-menu {
            display: grid !important;
            grid-template-columns: repeat(3, 1fr);
            divid to 3 column padding: 0 2rem;
        }

        .navbar-nav > li {
            border-bottom: 3px solid transparent;
            transition: border-bottom 0.4s ease;
        }

            .navbar-nav > li:hover {
                border-bottom-color: green;
            }

        .sub-menu-item {
            padding-left: 0;
        }
    }
}
