@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 1440px;
    margin: 0 auto;
    background: #FFF;
    font-family: 'Montserrat', sans-serif;
}

header {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    width: 240px;
    height: 75px;
}

.header__nav {
    width: 580px;
}

.menu__span {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.2px;
    text-align: center;
    margin-right: 110px;
}
.menu__span:last-child {
    margin-right: 0;
}

.menu__link {
    text-decoration: none;
    color: #252B42;
    transition: color 0.3s ease;
}

.menu__link:hover{
    color: #FA4A0C;
}

.restaurant{
    background-image: url("../img/bg1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container {
    width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0 160px;
}

.app{
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 24px;
    line-height: 36px;
    color: #F7F7F7;
}

.app__title {
    max-width: 800px;
    margin: 10px auto;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 58px;
    line-height: 80px;
    color: #FFFFFF;
}

.app__about {
    line-height: 38px;
    color: #F7F7F7;
    margin-bottom: 50px;
}

button {
    border: 1px solid #FFFFFF;
    border-radius: 30px;
    font-size: 24px;
    line-height: 36px;
    font-weight: bold;
    color: #FFFFFF;
    background: transparent;
    padding: 16px 80px;
    transition: background-color 0.3s ease-out;
}

.button__list > button:first-of-type {
    margin-right: 65px;
}

.mobile__app__title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 44px;
    line-height: 36px;
    color: #000000;
    text-align: center;
    margin-top: 55px;
}

.mobile__app,
.mobile__app_two {
    width: 1200px;
    margin: 70px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile__app-color {
    font-weight: bold;
    font-size: 24px;
    line-height: 36px;
    color: #FA4A0C;
    margin-bottom: 15px;
}

.mobile__app-title {
    font-family: 'Montserrat', sans-serif;
    max-width: 560px;
    font-weight: bold;
    font-size: 40px;
    line-height: 57px;
    letter-spacing: 0.2px;
    color: #252B42;
    margin-bottom: 25px;
}

.mobile__app-text {
    max-width: 470px;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: 0.2px;
    color: #737373;
}

.order {
    background-image: url("../img/bg2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 40px;
    line-height: 57px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.accessible {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 38px;
    color: #FFFFFF;
}

.button__list-order {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    padding: 80px 0 0;
}

.button__list-order > button {
    padding: 15px 45px;
    border: 1px solid #FFF;
    border-radius: 10px;
}

.button__list-order > button:first-of-type {
    margin-right: 15px;
}

button:hover {
    background: #FA4A0C;
    border: 1px solid transparent;
    cursor: pointer;
}

.footer__content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.copywright {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 12px;
    line-height: 76px;
    color: #5C5C5C;
}