body {
    background-color: #F4F4F4;
}

.navigation {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 266px;
    height: 100%;
    background-color: #343433;
}


.navigation .logo {
    margin-top:35px;
}

.navigation .mini {
    position: absolute;
    bottom:20px;
    width:100%; text-align: center;
    font-size: 12px;
}

.navigation .mini a {
    padding-left:5px;
    padding-right:5px;
    color: #F4F4F4;
}

.navigation .main ul {
    list-style: none;
    padding-left: 50px;
    margin-top:calc(50vh - 250px)
}

.navigation .main ul li {
    padding-top:8px;
    padding-bottom:8px;
}

.navigation .main ul li a {
    font-size: 18px;
    color: #F4F4F4;
    text-transform: uppercase;
    font-weight: 300;
}

.navigation .main ul li a:hover,
.navigation .main ul li a.active {
    color: #85BB41;
    text-decoration: none;
}

.content {
    padding-left: 271px;
}

.wrapper {
    padding:40px;
}

h1 {
    color: #85BB41;
    font-size: 40px;
    margin-top:30px;
    margin-bottom:30px;
}

p {
    font-size: 18px;
    line-height:30px;
    font-weight:200;
}

ol li {
    font-size: 18px;
    line-height:30px;
    font-weight:200;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    right: 0;
    height: 100%;
    width: calc(100% - 30px);
    transition: .5s ease;
    background-color: rgba(0, 0, 0, 0.4);
}

.overlay-container:hover .overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.text {
    color: white;
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.cont {
    transition: opacity 1s ease-out;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.cont.active {
    opacity: 1;
    height: auto;
}

/*.carousel-control-prev {
    left: 266px;
}*/
.hamburger  {
    float: right;
    margin-top: -70px;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    position: absolute;
    width: 30px;
    height: 4px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: #F4F4F4;
}

.hamburger {
    display:none;
}

.collapse:not(.show) {
    display: block;
}

@media (max-width: 991px) {
    body {
        margin-top:-35px;
    }

    .navigation {
        position: inherit;
        top: inherit;
        left: inherit;
        width: 100%;
        background-color: #343433;
    }

    .content {
        padding-left: 0px;
    }

    .navigation .main ul {
        list-style: none;
        padding-left: 20px;
        margin-top: 0px;
    }

    .navigation .mini {
        position: inherit;
        text-align: left;
    }

    .navigation .mini a {

        display:block;
        width: 100%;
        font-size: 18px;
        color: #F4F4F4;
        text-transform: uppercase;
        font-weight: 300;
        margin-top:-10px;
        padding-bottom:25px;
        padding-left:20px;
    }

    .pad-mob {
        margin-bottom:20px;
    }

    .hamburger {
        display: inline-block;
    }

    .collapse:not(.show) {
        display: none;
    }
}