.navbar{
    padding: 0px;
}

.navbar-brand {
    display: none;
}

.nav-header {
    background-color: #fff;
}

.wrapper-logo {
    position: absolute;
    width: 37%;
    background-color: #1B6F45;
    padding: 29.5px 150px 29.5px 35px;
    text-align: right;
}

.wrapper-logo img {
    z-index:1;
    position:relative;
    width: 300px;
}

.wrapper-logo:after {
    position: absolute;
    right: -104px;
    top: -10px;
    content: "";
    width: 0;
    height: 0;
    border-top: 110px solid #1B6F45;
    border-right: 105px solid transparent;
}

.wrapper-information {
    background-color: #1B6F45;
}

.information {
    float: right;
    padding: 6px 0px;
}

.information .nav {
    justify-content: end;
}

.information ul li div {
    color: white;
}

.information ul {
    float: right;
}

.information ul li, .menu ul li {
    display: inline-block;
}

.information ul li div {
    color: white;
    font-size: 16px;
    display: inline-block;
    position: relative;
}


.menu ul li a {
    padding: 12px 22px;
}

.menu ul li a:hover{
    color: white;
}

.menu ul li a.active{
    color:#fba62f;
}

.information ul > li > div:after{
    position: absolute;
    width: 2px;
    height: 17px;
    background-color: white;
    content: "";
    right: 0px;
    top: 12px;
}

.information ul li:last-child div{
    padding-right:0px;
}
.information ul li:last-child div:after{
    display:none;
}
   

/* Hamburger Icon */
.nav-icon-custom {
    width: 20px;
    height: 15px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.nav-icon-custom span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: black;
    border-radius: 10px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.nav-icon-custom span:nth-child(1) {
    top: 0px;
}

.nav-icon-custom span:nth-child(2),
.nav-icon-custom span:nth-child(3) {
    top: 7px;
}

.nav-icon-custom span:nth-child(4) {
    top: 14px;
}

.nav-icon-custom.open span:nth-child(1) {
    top: 7px;
    width: 0%;
    left: 50%;
}

.nav-icon-custom.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-icon-custom.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav-icon-custom.open span:nth-child(4) {
    top: 7px;
    width: 0%;
    left: 50%;
}

.navbar-toggler {
    border: transparent !important;
}

button:focus, a:focus, a, a:active {
    outline: none;
}

@media (max-width: 1199px) {

}

/* Large Devices Bootstrap */
@media (max-width: 991px) {
    .navbar{
        padding: 0.5rem 1rem;
    }

    .wrapper-logo {
       display: none;
    }

    .information ul li div {
        font-size: 12px;
    }

    .navbar-brand {
        display: block;
    }
}


/* Medium Devices Bootstrap */
@media (max-width: 767px) {
    #navbar .container {
        margin: 0px;
        padding: 0px;
    }
}

/* Small Devices Bootstrap */
@media (max-width: 575px) {
    .navbar{
        padding: 0.5rem 1rem;
    }

    .wrapper-logo {
       display: none;
    }
    
    .information {
        float: none;
        padding: 0px 0px;
    }
    
    .information .nav {
        justify-content: center;
    }

    .information ul {
        float: none;
    }
    
    .information ul li div {
        color: white;
        font-size: 12px;
        padding: 0px 0.5rem !important;
        display: inline-block;
        position: relative;
    }

    .information ul > li > div:after{
        position: initial;
    }
    
    .information ul li:last-child div{
        padding-right: initial;
    }
    .information ul li:last-child div:after{
        display: initial;
    }
    
}
