
body,
html,
* {
    font-family: 'Muli', sans-serif;
}
body{
    width: 100%;
}
a,
a:hover,
a:focus,
button {
    text-decoration: none !important;
    outline: none !important;
}

button,
input[type="submit"] {
    cursor: pointer;
}


img {
    max-width: 100%;
}

textarea {
    resize: none;
}

body,
div,
a,
span,
ul,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
figure,
header,
label,
img,
::before,
::after {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}


.loader {
    position: fixed;
    background: #fff;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}


.navbar {
    transition: 500ms ease;
    opacity: 0.97;
    background: none;
}

.scrolled {
    box-shadow: 0 2px 4px 0 #FFA300;
    z-index: 2;
    padding: 4px 0px;
    background: #FFA300;
}

nav {
    background: #FFA300;
}

nav .nav-link {
    font-family: Muli;
    font-size: 17px;
    color: #000;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand img {
    width: 160px;
    height: 59px;
}

.nav-item {
    padding-right: 0.2em;
    padding-left: 0.2em;
}

.active>.active-underline {
    position: relative;
    font-weight: 600;
    border-color: #000;
}

.active>.active-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    left: 0;
    bottom: -8px;
    border-bottom: 2px solid;
}

.underline-white {
    display: inline;
    position: relative;
    overflow: hidden;
}

.underline-white:after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    width: 0;
    bottom: -8px;
    background: #fff;
    height: 2px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.underline-white:hover:after,
.underline-white:focus:after,
.underline-white:active:after {
    left: 0;
    right: auto;
    width: 100%;
}



.underline-black {
    display: inline;
    position: relative;
    overflow: hidden;
}

.underline-black:after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    width: 0;
    bottom: -8px;
    background: #000;
    height: 2px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.underline-black:hover:after,
.underline-black:focus:after,
.underline-black:active:after {
    left: 0;
    right: auto;
    width: 100%;
}

