html {
      overflow-y: scroll;
    background-color: #fbfaf6;
    }
.hamburger-menu {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.hamburger-menu span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 3px 0;
    background: #bbb;
    border-radius: 2px;
    transition: background 0.2s;
}
.hamburger-menu:focus span,
.hamburger-menu:hover span {
    background: #444;
}
.menu-content {
    display: none;
    position: absolute;
    top: 44px;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border-radius: 6px;
    min-width: 140px;
    padding: 10px 0;
}
.hamburger-menu.open .menu-content {
    display: block;
}
.menu-content a {
    display: block;
    padding: 10px 24px;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}
.menu-content a:hover,
.menu-content a:focus {
    background: #f0f0f0;
    color: #000;
}

@font-face {
    font-family: 'P22MackinacProBold';
    src: url('P22MackinacPro-Bold_16.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'P22MackinacProBook';
    src: url('P22MackinacPro-Book_25.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'P22MackinacProBook', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fbfaf6;
    min-height: 100vh;
}
.heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-family: P22MackinacProBook, Arial, sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.02rem;
}
.heading h2 {
    font-family: p22MackinacProBold, Arial, sans-serif;
    font-size: 2rem;
    margin: 2.5rem 0 0.2rem 0;
}
.heading a {
    color: #000;
    text-decoration: none;
}
.heading .logo {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}
.title {
    padding: 1rem;
}
.g {
        padding-right: 1rem;
}
.g img {
    width: 100%;
    height: auto;
    display: block;
}
.sub {
    font-size: 0.95rem;
}
p.and {
    font-size: 0.85rem;
    margin: 7vh 0 10vh 0;
}
.container-wrapper {
    position: relative;
    max-width: 450px;
    margin: auto;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.container {
    max-width: 450px;
    text-align: left;
    margin: 0;
    padding: 1rem 0 1rem 1rem;
    font-size: 1.05rem;
    line-height: 1.25;
    flex: 1 1 auto;
}
.container h1 {
    font-family: 'P22MackinacProBold';
    font-size: 1.5rem;
    margin:0.7rem 0 0rem 0;
}


.arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 31px;
    height: 70px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 100;
    opacity: 0.4;
    transition: opacity 0.2s, filter 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-left {
        left: calc(50% - 225px - 45px);
        margin-left: 0;
}
.arrow-right {
        right: calc(50% - 225px - 45px);
        margin-right: 0;
}

@media (max-width: 500px) {
    .arrow-left {
        left: 0;==
    }
    .arrow-right {
        right: 0;
    }

}

@media (max-width: 539px) {
    .container {
        margin:1.5rem;
    }
    .hamburger-menu {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
    }
    .heading {
        font-size: 0.7rem !important;
    }
    .heading h2 {
        font-size: 1.5rem !important;
    }
}

.arrow::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
}

.arrow-left::before {
    border-width: 45px 24px 45px 0;
    border-color: transparent #bbb transparent transparent;
}
.arrow-right::before {
    border-width: 45px 0 45px 24px;
    border-color: transparent transparent transparent #bbb;
}

.arrow:hover, .arrow:focus {
    opacity: 0.85;
    filter: brightness(0.7);
}

.arrow:active {
    opacity: 1;
    filter: brightness(0.5);
}

.arrow-disabled,
.arrow-disabled:hover,
.arrow-disabled:focus,
.arrow-disabled:active {
    visibility: hidden;
    pointer-events: none;
    opacity: 0.2;
    filter: none;
    cursor: default;
}