html {
    height: 100%;
}
body {
    margin: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    background-color: #fff;
    font-size: 18px;
    line-height: 30px;
}
.page {
    margin: 0 auto;
    padding: 20px;
    min-height: 100%;
    overflow: hidden;
}
@media only screen and (min-width: 769px) {
    .page {
        display: flex;
        padding: 0;
    }
}
.page h1 {
    font-size: 44px;
    line-height: 50px;
    font-family: 'Merriweather', serif;
    font-weight: 400;
    color: #231F20;
}
@media only screen and (min-width: 769px) {
    .page h1 {
        font-size: 68px;
        line-height: 76px;
    }
}
.page-content {
    margin: 60px 0;
    color: #46485C;
}
@media only screen and (min-width: 1440px) {
    .page-content {
        padding: 60px 170px 170px 100px;
    }
}
.page-content p {
    max-width: 360px;
}
.page-content a {
    position: relative;
    display: inline-block;
    margin: 10px 0;
    color: inherit;
    text-decoration: none;
    transition: all 0.2s;
}
.page-content a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 100%;
    content: '';
    background-color: #EF9811;
}
.page-content a:hover {
    color: #EF9811;
}
@media only screen and (min-width: 1024px) {
    .page .logo {
        margin: 0;
    }
}
.page .logo svg {
    width: 250px;
}
.page-left {
    position: relative;
    z-index: 2;
}
@media only screen and (max-width: 768px) {
    .page-left {
        min-height: 100%;
    }
}
@media only screen and (min-width: 650px) {
    .page-left {
        padding: 35px 0 0 100px;
    }
}
@media only screen and (min-width: 769px) {
    .page-left {
        width: calc(57% - 100px);
    }
}
.page-right {
    display: none;
}
@media only screen and (min-width: 769px) {
    .page-right {
        display: block;
        width: 43%;
    }
}
.page-right img {
    object-fit: cover;
    display: block;
    height: 100%;
    width: 100%;
}
.page__arrow--top {
    position: absolute;
    left: -100px;
    top: 90px;
    z-index: -1;
}
@media only screen and (min-width: 769px) {
    .page__arrow--top {
        left: -45px;
    }
}
.page__arrow--top svg {
    width: 200px;
}
@media only screen and (min-width: 769px) {
    .page__arrow--top svg {
        width: 335px;
    }
}
.page__arrow--bottom {
    position: absolute;
    right: -30px;
    top: 500px;
    z-index: -1;
}
.page__arrow--bottom svg {
    width: 150px;
    z-index: 1;
}
@media only screen and (min-width: 769px) {
    .page__arrow--bottom svg {
        width: 200px;
    }
}