* {
    box-sizing: border-box;
}

html {
    font-size: 100%;
}

body {
    font-family: cairo, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 18px;
}

header {
    min-height: 150px;
}

header .logo {
    text-align: center;
}

main {
    width: 100%;
}

main .inside {
    background-image: url(../images/sub_bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    max-width: 1280px;
    margin: 0 auto;
    background-size: contain;
}

h1 {
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1.25rem;
}

body.start main {
    background-color: #beaf89;
}

body.start main .inside {
    background-image: url(../images/start_bg.jpg);
    background-attachment: scroll;
    background-position: right 126% bottom;
    background-size: 126%;
}

.text-container {
    max-width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 75%);
}

body.start .text-container {
    font-family: trajan-pro-3, serif;
    max-width: 980px;
    margin: 0 auto;
    color: #fff;
    font-size: 1.25rem;
    line-height: 30px;
    display: flex;
    align-items: start;
    justify-content: space-around;
    min-height: 450px;
    overflow: visible;
    background-color: transparent;
}

.text-block {
    padding: 0 2rem;
}

body.start .text-block {
    max-width: 235px;
    margin-top: 2rem;
    padding: 0;
}

footer {
    padding-top: 1.25rem;
    padding-bottom: 3rem;
}

footer nav {
    max-width: 1280px;
    margin: 0 auto;
}

footer nav ul {
    margin: 0 auto;
    padding: 0;
    display: flex;
    max-width: 320px;
    justify-content: space-around;
}

footer nav ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer nav ul li a {
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    color: #9c978d;
}

@media (min-width: 1200px) {
    main .inside {
        background-position: left top;
        background-attachment: scroll;
        min-height: 563px;
    }
    .text-container {
        max-width: 50%;
        margin-left: auto;
        margin-right: 1.5rem;
        height: 100%;
        max-height: 540px;
        overflow-y: scroll;
        background-color: transparent;
    }
    .text-container::-webkit-scrollbar {
        width: 12px;
        background-color: #fff;
    }
    .text-container::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: #ded7c4;
    }
}

@media (min-width: 576px) {
    body.start main .inside {
        background-size: contain;
        background-position: center center;
    }
    body.start .text-container {
        justify-content: flex-end;
        min-height: 563px;
        align-items: center;
    }
    body.start .text-block {
        margin-top: 0;
    }
    footer nav ul {
        margin: 0 1rem 0 auto;
    }
}