body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

#welcome {
    background: #FFC244;
    padding: 0 0 80px;
}
.button {
    padding: 13.5px 20px;
    font-size: 14px;
    line-height: 16px;
    background-color: #FFF;
    color: #4A4A4A;
    border: 0;
    border-radius: 100px;
    box-shadow: 3px 3px 5px 0 rgba(0,0,0,.1);
    font-family: 'Roboto', sans-serif;

}
    font-weight: 700;
    min-width: 120px;
    margin-left: 10px;
}

.button:hover {
    transition: .3s;
    background-color: #F5F5F5;
    cursor: pointer;
}

.button--green {
    color: white;
    background-color: #2ABB9B;
    font-family: 'Roboto', sans-serif;
}

.button--green:hover {
    transition: .3s;
    background-color: #00A082;
    cursor: pointer;
}

.header {
    padding:35px 0;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 25px;
    max-width: 90%;
}

.header__button {
    background: transparent;
    border: none;
    color: white;
    font-size: 14px;
    padding: 10px 0 10px 50px;
    font-family: 'Roboto', sans-serif;
    display: flex;
}

.header__button-text {
    padding: 10px;
    margin: 0 0 0 10px;
}

.header__button:hover {
    opacity: .8;
    cursor: pointer;

}

.welcome__logo {
    margin: 0 auto 40px;
    display: block;
    width: 150px;
}

.welcome__title {
    color: white;
    text-align: center;
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

.welcome__city {
    color: #00a082;
    font-size: 60px;
    border: none;
    background:transparent;
    font-weight: 600;
    position: relative;
}

/*.welcome__city:after {
    content: '';
    width: 24px;
    height: 24px;
    margin-top: .2em;
    background: url("images/dropdown.svg");
    position: absolute;


    content: '>';
    width: 24px;
    height: 24px;
    margin-top: .2em;
    position: absolute;
    font-size: 20px;
    transform: rotate(90deg);
}*/

.welcome__subtitle {
    color: white;
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 50px;
}

.categories {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.category {
    width: 115px;
    height: 115px;
    background: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 17px 0 #E19F17;
    margin: 12.5px;
}

.category__image {
    width: 60px;
    height: 60px;
    display: block;
    margin: 5px auto 0;
}

.category__text {
    margin-top: 9px 0 0;
    font-size: 13.5px;
    font-weight: 300;
    text-align: center;
    color: black;
}

@media (max-width: 600px) {
    .header {
        display: flex;
        flex-direction: column;
    }
}

#moto {
    position: relative;
    min-height: 100px;
}

.moto_dude {
    position: absolute;
    left: 0;
    top: 0;
    animation: myAnimation 10s infinite;
}

@keyframe myAnimation {
    0% {
        left: 0;
        transform: rotateY(0);
    }
    49% {
        transform: rotateY(0);
    }
    50% {
        transform: rotateY(180deg);
        left: calc(100% - 70px);
    }
    99% {
        transform: rotateY(180deg);
    }
    100% {
        left: 0;
        transform: rotateY(0);
    }
}

#stores {
    display: flex;
    flex-wrap: wrap;
}

.stores__item {
    border-radius: 10px;
    box-shadow: 0 2px 20px 0 rgba(0,0,0,.1);
    margin-bottom: 40 px;
    min-width: 260px;
    background: white;
}

.stores__image {
    height: 168px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.stores__text {
    font-size: 20px;
    padding: 20px;
}



