/*Header*/
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica', sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
}

a {
     text-decoration: none;
}

img {
    max-width: 100%;
}

.wrapper {
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 29%, rgba(255, 134, 20, 1) 100%);
    width: 100%;
}

.container {
    width: 90%;
    margin: 0 auto;
}

header {
    padding: 50px 0;
}

header .logo, footer .blocks .logo {
    text-transform: uppercase;
    font-size: 29px;
    font-weight: 800;
}

header nav {
    float: right;
    width: 50%;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    /* z-index: 1; */
    position: relative;
}

header nav ul li {
    display: inline-block;
}

header  nav ul li a {
    color: #fff;
}

header  nav ul li.active::after {
    content: '';
    display: block;
    width: 40px;
    height: 5px;
    background: #DC7000;
    border-radius: 10px;
    position: relative;
    top: 10px;
}

header  nav ul li:not(.active):not(.btn) a:hover {
    border-bottom: 5px solid #DC7000;
}

header  nav ul li.btn a {
    background: #000;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 300ms ease;
}

header  nav ul li.btn a:hover {
    background: #eb5050;
}