body {
    font-size: 10px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
}

.container {
    width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.flex_wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex_top {
    -ms-align-items: flex-start;
    align-items: flex-start;
}

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

.flex_center {
    justify-content: center;
}

.flex_start {
    justify-content: flex-start;
}

.flex_stretch {
    -ms-align-items: stretch;
    align-items: stretch;
}

.flex_bottom {
    -ms-align-items: flex-end;
    align-items: flex-end;
}

.button {
    text-transform: uppercase;
    color: #000;
    display: inline-block;
    background-color: #f1cc00;
    text-decoration: none;
    font-weight: 700;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.button_hero {
    color: #fff;
    padding: 1em 2em;
    font-size: 3em;
    margin-top: 15px;
}

.button_hero:hover {
    background-color: #e4a300;
}

.button_blue {
    background-color: #00aeef;
}

.button_blue:hover {
    background-color: #0077e0;
}

.button_bike {
    padding: 15px 35px 15px 25px;
    margin-top: 15px;
    font-size: 2.5em;
}

.button_bike > span {
    vertical-align: middle;
}

.button_bike:hover {
    color: #fff;
    background-color: #00aeef;
}

.arrow {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.button_bike .arrow {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    background-image: url('../img/arrow-bike.png');
    -webkit-background-size: 100%;
    background-size: 100%;
}

.button_bike:hover .arrow {
    background-image: url('../img/arrow-bike-hover.png');
}

.button_hardware {
    padding: 10px 25px 10px 15px;
    font-size: 2em;
}

.button_hardware:hover {
    color: #fff;
    background-color: #00aeef;
}

.button_hardware > span {
    vertical-align: middle;
}

.button_hardware .arrow {
    width: 26px;
    height: 26px;
    margin-right: 15px;
    background-image: url('../img/arrow-hardware.png');
}

.button_hardware:hover .arrow {
    background-image: url('../img/arrow-hardware-hover.png');
}

.button_clothes {
    margin-left: 28px;
    padding: 8px 16px 8px 12px;
    font-size: 1.8em;
}

.button_clothes:hover {
    color: #fff;
    background-color: #00aeef;
}

.button_clothes > span {
    vertical-align: middle;
}

.button_clothes .arrow {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url('../img/arrow-clothes.png');
}

.button_clothes:hover .arrow {
    background-image: url('../img/arrow-clothes-hover.png');
}

.heading {
    padding: 40px 0;
}

.heading_inverse h3 {
    color: #fff !important;
}

.heading h3 {
    line-height: 1.4;
    font-weight: 700;
    color: #00aeef;
    text-transform: uppercase;
    font-size: 3.6em;
}

.heading img {
    margin: 0 40px;
}

.heading__yellow {
    color: #000;
    background-color: #f1cc00;
    padding: 5px 10px;
}
::-moz-selection {color: #000;background-color: #f1cc00;}
::selection {color: #000;background-color: #f1cc00;}
@media (max-width: 1400px) {
    .container {
        width: 1170px;
        padding-left: 15px;
        padding-right: 15px;
    }
    body {
        font-size: 8px;
    }
}
@media (max-width: 1170px) {
    .container{
        width: 100%;
    }

}
@media (max-width: 790px) {
        .heading h3{
        font-size: 3em;
    }
    .heading h3 br{
        display: none;
    }
}
@media (max-width: 640px) {
    .button_hero{
        width: 50%;
        text-align: center;
        padding: 1em 0;
        font-size: 2.5em;
    }
}
@media (max-width: 480px) {
    .button_hero{
        width: 80%;
        text-align: center;
        padding: 1em 0;
        font-size: 2.5em;
        margin: 0;
    }
    .heading{
        text-align: center;
        display: block;
    }
    .heading h3{
        font-size: 2.5em;
    }
    .heading img{
        margin: 10px;
        max-width: 150px;
    }
}