﻿.sticky {
    position: fixed;
    top: 0;
    width: 100%; 
} 

.navbar {
    color: transparent !important;
    border-bottom: solid 3px #ccc;
}


.navbar-toggler-icon {
    background-color: #14806c;
    background-image: none !important;
}

.navbar-toggler {
    background-color: transparent; 
    border: none;
}

.nav-link {
    color: #000;
}

.navbar-nav {
    background-color: transparent;
} 

.navbar-nav li a:hover {
    color: #fff;
    background-color: #19aa90;
}

.animated-icon {
    width: 30px;
    height: 30px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

    .animated-icon span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
      /*  background-color: #0a4137;*/
        border-radius: 1px;
        opacity: 1;
        left: 0;
        right: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

        .animated-icon span:nth-child(1) {
            top: 5px;
        }

        .animated-icon span:nth-child(2),
        .animated-icon span:nth-child(3) {
            top: 15px;
        }

        .animated-icon span:nth-child(4) {
            top: 25px;
        }

    .animated-icon.open span:nth-child(1) {
        top: 10px;
        width: 0%;
        left: 50%;
    }

    .animated-icon.open span:nth-child(2) {
        transform: rotate(45deg);
    }

    .animated-icon.open span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .animated-icon.open span:nth-child(4) {
        top: 10px;
        width: 0%;
        left: 50%;
    }

 

