/* global box-sizing */
*,
*:after,
*:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    font: 400 14px/1.5 "Roboto", sans-serif;
    color: #545454;
    margin: 0;
}

.btn-menu,
.desktop-hidden {
    display: none;
}

.wrapper {
    max-width: 1140px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}

.wrapper.fullwidth {
    max-width: 100%;
}

.flex {
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex.center {
    align-items: center;
}

.flex.justify-end {
    justify-content: end;
}

.width-9 {
    width: 9%;
}

.width-9 {
    width: 12%;
}

.width-23 {
    width: 23%;
}

.width-77 {
    width: 77%;
}

.width-87 {
    width: 87%;
}

.width-90 {
    width: 90%;
}

.ml-20 {
    margin-left: 20px;
}

a {
    color: #135ac2;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

a:hover,
a:active {
    outline: 0;
}

.btn {
    display: inline-block;
    vertical-align: top;
    position: relative;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    border: 1px solid #f4b800;
    border-radius: 3px;
    outline: 0;
    background: #f4b800;
    padding: 9px 20px;
    transition: all 0.3s ease 0s;
}

.btn:hover {
    color: #fff;
    border: 1px solid #f4b800;
    opacity: 0.8;
    text-decoration: none;
}

.btn.red,
.btn.red:hover {
    background-color: #e20000;
    border-color: #e20000;
    color: #fff;
}

.header {
    width: 100%;
    position: relative;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
}

.header .logo {
    font-size: 0;
}

.header .logo svg {
    width: 100%;
    max-width: 81px;
}

.header .logo span {
    font-size: 12px;
    font-weight: 500;
    color: #3b3b3b;
}

.header .nav {
    height: 60px;
}

.header .nav.has-form {
    font-size: 0;
    width: 100%;
}

.header form {
    font-size: 0;
    margin-right: auto;
}

.header form label {
    display: inline-block;
    vertical-align: top;
    position: relative;
    font-size: 0;
    color: #898989;
    line-height: 45px;
    background: #e7e7e7;
    padding: 0 10px;
    height: 45px;
    width: 100%;
    max-width: 220px;
    margin-right: 10px;
}

.header form label:last-child {
    margin-right: 0;
}

.header form label span,
.header form label input {
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    font-weight: 500;
}

.header form label input {
    color: #000;
    background: none;
    border: 0;
    outline: 0;
    height: 100%;
    width: auto;
    max-width: 75%;
    padding: 0 0 0 10px;
}

.nav ul {
    font-size: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li {
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0 20px;
}

.nav > ul,
.nav > ul > li,
.nav > ul > li > a {
    height: 100%;
}

.nav li.sep-right {
    margin-right: 5px;
}

.nav li.sep-right::after {
    content: '';
    display: inline-block;
    vertical-align: top;
    width: 1px;
    height: 32px;
    background: #e7e7e7;
    margin-left: 20px;
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
}

.nav > ul > li > a {
    line-height: 60px;
}

.nav a {
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    font-weight: 500;
    color: #3b3b3b;
    position: relative;
}

.nav a:hover {
    color: #ec2028;
}

.nav > ul > li > a > svg {
    width: 12px;
    height: 7px;
    margin: 0 0 0 3px;
    transition: all 0.3s ease 0s;
}

.nav > ul > li > a:hover > svg{
    fill: #ec2028;
}

.nav > ul > li > a::after {
    content: '';
    width: 100%;
    height: 1px;
    background: none;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease 0s;
}

.nav > ul > li > a:hover::after {
    background: #ec2028;
}

.nav .submenu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 230px;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.1);
}

.nav li:hover .submenu {
    display: block;
}

.nav .submenu li {
    display: block;
    margin: 0;
    border-bottom: 1px solid #e8e8e8;
}

.nav .submenu li:last-child {
    border: 0;
}

.nav .submenu a {
    display: block;
    font-size: 14px;
    background: #fff;
    padding: 9px 20px;
    position: relative;
}

.nav .submenu a:hover {
    color: #3b3b3b;
    text-decoration: none;
    background: #e8e8e8;
}

@media only screen and (max-width: 1340px) {
    .header .logo span {
        display: block;
    }
}

@media only screen and (max-width: 1140px) {
    .mobile-1140-width-100 {
        width: 100%;
    }

    .mobile-1140-width-82 {
        width: 82%;
    }

    .mobile-1140-text-right {
        text-align: right;
    }

    .nav li {
        margin: 0 7px;
    }
}

@media only screen and (max-width: 800px) {
    .nav li.sep-right::after,
    .nav > ul > li > a:hover::after,
    .nav li:hover .submenu,
    .header .btn.red {
        display: none;
    }

    .desktop-hidden {
        display: block;
    }

    body.active-header .btn.red {
        display: block;
        position: fixed;
        bottom: 20px;
        width: 94%;
        left: 3%;
        margin: 0;
        padding: 10px 20px;
    }

    body.active-header::after {
        content: '';
        background: #fff;
        opacity: 1;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .nav .btn-menu {
        display: block;
        background: url('../img/icon-open.png') no-repeat scroll center center transparent;
        background-size: cover;
        width: 30px;
        height: 30px;
        position: absolute;
        right: 15px;
        top: 16px;
        cursor: pointer;
        border: 0;
        outline: 0;
        padding: 0;
    }

    .nav.active .btn-menu {
        background-image: url('../img/icon-close.png');
        background-size: 90%;
    }

    .nav ul {
        display: none;
        position: absolute;
        left: 0;
        top: 60px;
        width: 100%;
        height: auto;
        padding: 0;
        z-index: 99;
        background: #fff;
        text-align: left;
    }

    .nav.active > ul {
        display: block;
    }
	
    .nav > ul > li {
        display: block;
        width: 100%;
        height: auto;
        background: #fff;
        padding: 0;
        margin: 0;
        text-align: left;
        border-bottom: 1px solid #e7e7e7;
    }

    .header a > span.toggle {
        background: url('../img/icon-plus.png') no-repeat scroll center center transparent;
        background-size: 30px;
        width: 60px;
        height: 54px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 999;
    }

    .header a > span.toggle.active {
        background-image: url('../img/icon-minus.png');
    }

    .header .nav .submenu {
        position: relative;
        width: 100%;
        border: 0;
        padding: 0;
        margin: 0;
        border-radius: 0;
        border: 0;
        text-align: left;
        box-shadow: none;
    }

    .header .nav .submenu li {
        margin: 0;
        padding: 0;
        border-top: 1px solid #e7e7e7;
    }

    .header .nav .submenu li a {
        display: block;
        padding: 16px 30px;
        margin: 0;
    }

    .header .nav .submenu li a.has-svg {
        padding: 10px 30px 10px 60px;
    }

    .header form {
        margin: 0;
        padding: 18px 15px;
        border-top: 1px solid #e7e7e7;
        border-bottom: 1px solid #e7e7e7;
    }

    .header form label {
        max-width: 100%;
        margin: 0 0 10px;
        text-align: left;
    }

    .header form label span {
        width: auto;
    }

    .header form label input {
        font-size: 16px;
        width: 85%;
        max-width: 100%;
    }

    .header form .btn {
        width: 100%;
        padding: 11px 20px;
        border-radius: 0;
    }

    .nav > ul > li > a {
        display: block;
        line-height: 1.2;
        padding: 16px 15px;
        height: auto;
    }

    .nav > ul > li.profile > a {
        padding: 8px 15px;
    }

    .nav li.sep-right {
        margin-right: 0;
    }

    .nav > ul > li > a > svg {
        position: absolute;
        right: 15px;
        top: 22px;
    }

    .wrapper {
        padding: 0 15px;
    }

    .mobile-800-width-100 {
        width: 100%;
    }

    .mobile-800-width-50 {
        width: 50%;
    }

    .mobile-800-text-left {
        text-align: left;
    }
}

@media only screen and (max-width: 480px) {
    .header form label span {
        width: 15%;
    }
}