/* By Dominik Biedebach @domobch */

/*.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}*/

small {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
}



.sections {
    height: 10vh;
    font: 15px/65px "OpenSans-Bold", Helvetica, Arial, sans-serif;
}

/* .navssIGATION */
.navss {
    width: 99%;
    /*width: 100%;*/
    height: 50px;
    margin: 0 auto;
    background: #fff;
    /*padding: 50px 0;*/
   /* box-shadow: 0px 5px 0px #dedede;*/
}

/* By Dominik Biedebach @domobch */
.navss ul {
    list-style: none;
    /*text-align: center;*/
}
.navss ul li {
    display: inline-block;
}
.navss ul li a {
    display: block;
    /*padding: 0px;*/
    text-decoration: none;
    color: #545c6a;
    font-weight: normal;
    /*text-transform: uppercase;*/
    margin: 0 10px;
}
.navss ul li a,
.navss ul li a:after,
.navss ul li a:before {
    transition: all .5s;
}
.navss ul li a:hover {
    color: #f97624;
}

.active-menu-tache{
    /*position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    background: #f97624;
    height: 2px;*/
    color: #f97624 !important;

}

/* By Dominik Biedebach @domobch */


/* stroke */
.navss.stroke ul li a,
.navss.fill ul li a {
    position: relative;
    top: -5px;
}
.navss.stroke ul li a:after,
.navss.fill ul li a:after {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #f97624;
    height: 2px;
}
.navss.stroke ul li a:hover:after {
    width: 100%;
}

.navss.fill ul li a {
    transition: all 2s;
}
/* By Dominik Biedebach @domobch */

.navss.fill ul li a:after {
    text-align: left;
    content: '.';
    margin: 0;
    opacity: 0;
}
.navss.fill ul li a:hover {
    color: #023f1c;
    z-index: 1;
}
.navss.fill ul li a:hover:after {
    z-index: -10;
    animation: fill 1s forwards;
    -webkit-animation: fill 1s forwards;
    -moz-animation: fill 1s forwards;
    opacity: 1;
}

/* Circle */
.navss.circle ul li a {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
/* By Dominik Biedebach @domobch */
.navss.circle ul li a:after {
    display: block;
    position: absolute;
    margin: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '.';
    color: transparent;
    width: 1px;
    height: 1px;
    border-radius: 50%;
    background: transparent;
}
.navss.circle ul li a:hover:after {
    -webkit-animation: circle 1.5s ease-in forwards;
}

/* SHIFT */
.navss.shift ul li a {
    position:relative;
    z-index: 1;
}
.navss.shift ul li a:hover {
    color: #91640F;
}
.navss.shift ul li a:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    content: '.';
    color: transparent;
    background: #F1C40F;
    visibility: none;
    opacity: 0;
    z-index: -1;
}
.navss.shift ul li a:hover:after {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

/* By Dominik Biedebach @domobch */

/* Blend */
.navss.blend ul li a {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
}
.navss.blend ul li a:hover {
    color: #fff;
}
.navss.blend ul li a:before,
.navss.blend ul li a:after {
    position: absolute;
    width: 0px;
    height: 100%;
    top: 0;
    bottom: 0;
    background: #D35400;
    transition: all .5s;
    margin: auto;
    content: '.';
    color: transparent;
    z-index: -1;
    opacity: 0.75;
}
.navss.blend ul li a:before {
    left: 0;
}
.navss.blend ul li a:after {
    right: 0;
}

.navss.blend ul li a:hover:after,
.navss.blend ul li a:hover:before {
    width: 100%;
}

/* DROWN */

.navss.drown ul li a {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.navss.drown ul li a:hover {
    color: #fff;
}

.navss.drown ul li a:before {
    background: #fff;
    content: '.';
    color: transparent;
    position: absolute;
    width: 500%;
    top: 100px;
    right: 300px;
    height: 300px;
    z-index: -1;
}
.navss.drown ul li a:hover:before {
    left: auto;
    bottom: auto;
    right: -50%;
    top: 0;
    background: #89C52B;
}



/* Keyframes */
@-webkit-keyframes fill {
    0% {
        width: 0%;
        height: 1px;
    }
    50% {
        width: 100%;
        height: 1px;
    }
    100% {
        width: 100%;
        height: 100%;
        background: #2ECC71;
    }
}

/* Keyframes */
@-webkit-keyframes circle {
    0% {
        width: 1px;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        height: 1px;
        z-index: -1;
        background: #eee;
        border-radius: 100%;
    }
    100% {
        background: #aaa;
        height: 5000%;
        width: 5000%;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        border-radius: 0;
    }
}

/* By Dominik Biedebach @domobch */
