body {
    margin: 0;
    padding: 0;
    background: url("../images/background.png") no-repeat;
    background-position: 0 -600px;
}

header {
    font-family: Poppins_SemiBold, sans-serif;
    height: 100vh;
    color: #585858;
}
.topHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1170px;
    margin: 0 auto;
    padding-top: 30px;
}

.topHeader a {
    text-decoration: none;
    color: #585858;
    transition: .3s;
}

.topHeader a:hover {
    color: #FB9333FF;
}

.topHeader__logo {
    font-weight: bold;
    font-family: Roboto, sans-serif;
    font-size: 24px;
}

.topHeader__logo span {
    color: #FB9333;
}

.menu {
    width: 422px;
    font-size: 16px;
    cursor: pointer;
}

.current {
    color: #FB9333;
}

.menu__list {
    padding: 0 0 0 0;
    margin: 0;
    width: 100%;
    display: flex;
    list-style-type: none;
    justify-content: space-between;
    align-items: center;
}

.menu__item {
    box-sizing: border-box;
    padding: 10px;
}

.button {
    box-sizing: border-box;
    width: 130px;
    line-height: 48px;
    background-size: 150% 100% !important;
    background-position: 100% 0 !important;
    transition: background-position .5s !important;
    background: -webkit-linear-gradient(45deg, rgb(255, 117, 12) 6%, rgb(251, 147, 51) 40%);
    background: -moz-linear-gradient(45deg, rgb(255, 117, 12) 6%, rgb(251, 147, 51) 40%);
    background: linear-gradient(45deg, rgb(255, 117, 12) 6%, rgb(251, 147, 51) 40%);
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50px;
}

.button:hover {
    background-position: 0 0 !important;
}

