/** {*/
/*margin: 0;*/
/*padding: 0;*/
/*}*/

/*body {*/
/*font-family: 'Montserrat', sans-serif;*/
/*background: #388E3C;*/
/*}*/

.menuleftContainer {
    position: fixed;
    min-height: 100vh;
    padding-right: 0;
    z-index: 999;
    padding-left: 0;
    top: 0;
    left: 0;
}

.menuleft {
    background: #007c96;
    height: 85vh;
    padding: 25px 15px 0;
    display: block;
    width: 100%;
    -webkit-transition: transform .2s;
    -moz-transition: transform .2s;
    -ms-transition: transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    overflow-y: auto;
}


.menuleft.active {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

/*h2 {*/
/*text-align: center;*/
/*margin: 20px auto;*/
/*color: #fff;*/
/*}*/

.accordion-menu {

    background: #007c96;
    /*margin: 10px auto 20px;*/
    border-radius: 4px;
    margin: auto;
    margin-top: 50px;
    position: relative;
    width: 100%;

}

.accordion-menu a, .accordion-menu a:hover, .accordion-menu a:active, .accordion-menu a:focus {
    color: #fff;
    text-decoration: none;
}

#logo {
    border-radius: 10px;
    display: block;
    /*margin-left: -2%;*/
    margin: 0 auto;
    width: 80%;

}

.accordion-menu li.open .dropdownlink {
    color: #CDDC39;
}

.accordion-menu li.open .dropdownlink i {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.accordion-menu li:last-child .dropdownlink {
    border-bottom: 0;
}

.dropdownlink {
    border-bottom: 1px solid #ccc;
    color: #212121;
    /*padding: 10px 10px 10px 0px;*/
    cursor: pointer;
    display: block;
    font-size: 14px;
    padding: 10px 0;
    height: 64px;
    position: relative;
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
}

.dropdownlink i {
    left: 16px;
    position: absolute;
    top: 17px;
    transition: transform .2s;
    -moz-transition: transform .2s;
    -ms-transition: transform .2s;
    -o-transition: transform .2s;
    -webkit-transition: transform .2s;
}

.dropdownlink img {
    margin-left: -5px;
    margin-right: 1px;
    position: relative;
    top: 2px;
    /*width: 26%;*/
    width: 100%;

}

.dropdownlink .fa-chevron-down {
    left: auto;
    right: 12px;
}

.submenuItems {
    display: none;
    /*background: #C8E6C9;*/
}

.submenuItems li {
    /*border-bottom: 1px solid #B6B6B6;*/
}

.submenuItems a {
    color: #fff;;
    display: block;
    font-size: 12px;
    padding: 12px 12px 12px 45px;
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
}

.submenuItems a:hover {
    /*background-color: #CDDC39;*/
    color: #fff;
}

i.arrow-down {
    background: url(../images/down-arrow.png) center center no-repeat transparent;
    background-size: 100% 100%;
    display: block;
    height: 16px;
    left: auto;
    right: 1px;
    top: 28%;
    width: 16px;

}

/*--------backtoTop--------*/
#back {
    border: none;
    bottom: 30px;
    color: white;
    cursor: pointer;
    display: none;
    left: 5%;
    opacity: 0.5;
    outline: none;
    position: fixed;
    width: 5%;
    z-index: 99;
}

#back:hover {
    opacity: 1;
}

/*-----------------------------*/
/*--------slide--------*/
.slide {
    border: none;
    bottom: 50%;
    cursor: pointer;
    /*max-width: 40px;*/
    min-width: 30px;
    opacity: 0.3;
    /*left: -2%;*/
    outline: none;
    position: fixed;
    width: 5%;
    z-index: 1001;
}

.slide:hover {
    opacity: 1;
}

#slide-left {
    left: 14%;
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

#slide-right {
    left: -1.5%;
}

@media (max-width: 991.98px) {
    .slide {
        display: block;
    }
}

/*-----------------------------*/