* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #388E3C;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

h2 {
    text-align: center;
    margin: 20px auto;
    color: #fff;
}

.accordion-menu {
    width: 100%;
    max-width: 100%;
    /*margin: 60px auto 20px;*/
    background: #fff;
    border-radius: 4px;
    padding-left: 0px;
}

    .accordion-menu li.open .dropdownlink {
        color: #a42024;
    }

        .accordion-menu li.open .dropdownlink .fa-chevron-down {
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }

    .accordion-menu li:last-child .dropdownlink {
        border-bottom: 0;
    }

.dropdownlink {
    cursor: pointer;
    display: block;
    padding: 10px 30px 10px 45px;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
    color: #005a9c;
    font-weight: bold;
    position: relative;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

    .dropdownlink i {
        position: absolute;
        top: 17px;
        left: 16px;
    }

    .dropdownlink .fa-chevron-down {
        right: 12px;
        left: auto;
    }

.submenuItems {
    display: none;
    /*background: #C8E6C9;*/
    padding-left: 0px;
}

    .submenuItems li {
        border-bottom: 1px solid #B6B6B6;
        list-style: none;
        border-bottom: 1px solid #c9c9c9;
        height: 30px;
        line-height: 30px;
    }

    .submenuItems a {
        display: block;
        color: #1b75bb;
        /*padding: 12px 12px 12px 45px;*/
        -webkit-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
    }

        .submenuItems a:hover {
            background-color: #d2e9f9;
            color: #fff;
        }
