:root {
    --beige: #FDF7EB;
    --black: #000000;
    --white: #FFFFFF;
    --dark: #17171A;
    --gold: #C29641;
    --max-width: 1300px;
    --poppins: 'Poppins', sans-serif;
    --roboto: 'Roboto', sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-size: 16px;
    font-family: var(--roboto);
    background-color: var(--beige);
    margin: 0;
}

nav {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 0;
}

header {
    background-color: #0D0B0A;
    min-height: 559px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .background {
    background: linear-gradient(90deg, #0D0B0A 2.61%, rgba(13, 11, 10, 0) 22.27%), url('../img/background-fp.png');
    position: absolute;
    background-repeat: no-repeat;
    height: 100%;
    top: 0;
    right: 0;
    width: 100%;
    background-position: center right;
}

.page--title {
    font-family: var(--roboto);
    width: 100%;
    max-width: var(--max-width);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page--title h1 {
    font-family: var(--poppins);
    font-size: 48px;
    line-height: 56px;
    font-weight: 300;
    margin: 0;
}

.page--title p {
    font-family: inherit;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
}

.page--title a {
    font-family: inherit;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
    color: var(--gold);
    text-decoration: none;
}

.page--title a:hover {
    text-decoration: underline;
}

strong {
    font-weight: 600;
}

.footer--bottom {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 0 auto;
    padding: 40px 0;
}

.footer--left-title {
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
}

.footer--right,
.footer--left {
    width: 100%;
}

.footer--left-contact {
    display: flex;
    justify-content: space-between;
    line-height: 25px;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--roboto);
}

.footer--list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.address {
    margin: 0;
}

.footer--list-link {
    color: var(--gold);
    text-decoration: none;
}

.footer--list-link:hover {
    text-decoration: underline;
}

.footer--right-list {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.footer--right {
    display: flex;
    justify-content: flex-end;
}

.footer--right-listitem {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.footer--right-listitem img {
    width: 100%;
    max-width: 150px;
}

.middle {
    width: 100%;
}

.footer--bottom-content {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid #E1D7C6;
    padding: 25px 0;
}

.footer--bottom-content p {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
}

@media screen and (max-width: 1330px) {
    .footer--bottom-content,
    .footer--bottom,
    .page--title,
    nav {
        padding: 20px 15px;
    }
}

@media screen and (max-width: 1024px) {
    .middle {
        display: none;
    }

    .footer--left,
    .footer--right {
        padding: 0 15px;
    }
}

@media screen and (max-width: 950px) {
    header .background {
        background: linear-gradient(90deg, #0D0B0A 2.61%, rgba(13, 11, 10, 0) 280.27%), url('../img/background-fp.png');
    }
}

@media screen and (max-width: 768px) {
    .page--title h1 {
        font-size: 35px;
    }

    .footer--left,
    .footer--right {
        padding: 0;
        margin: 30px 0;
    }

    .footer--bottom {
        flex-direction: column;
    }

    .footer--right-list,
    .footer--left-contact {
        flex-direction: column;
    }

    .footer--right-listitem + .footer--right-listitem {
        margin-top: 20px;
    }

    .footer--right-listitem,
    .footer--left-top,
    .footer--left-contact {
        justify-content: center;
        text-align: center;
    }
}