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

a {
    text-decoration: none;
    color: white;
}

a:hover {
    color: Red;
}

ul,
ol,
li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1. h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

html,
body {
    scroll-behavior: smooth;
    height: 100%;
    line-height: 1;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    font-family: Arial, "Helvetica Neue", sans-serif;
}

body._lock {
    overflow: hidden;
}

.wrapper {
    min-height: 100%;
}

.page {
    padding: 90px 0px 30px 0px;
}

.page-section {
    padding: 30px;
    max-width: 1200px;
    margin: 0px auto;
}

.page-section-1 {
    background-color: #44889c;
    justify-content: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.page-section-2 {
    background-color: #a09534;
}

.page-section-3 {
    background-color: #44889c;
}

.page-section-4 {
    background-color: #a09534;
}

.page-section-5 {
    background-color: #44889c;
}

.page-section-6 {
    background-color: #a09534;
}

.page-section-7 {
    background-color: #44889c;
}

.page-section-8 {
    background-color: #a09534;
}

.page-section-9 {
    background-color: #720404;
    justify-content: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.page-title {
    font-size: 40px;
    margin: 0px 0px 20px 0px;
}

.page-text {
    font-size: 16px;
    line-height: 150%;
}

.page-text p {
    margin: 0px 0px 20px 0px;
}

.page-sub-title {
    font-size: 30px;
    margin: 0px 0px 20px 0px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: #912105;
}

.header-container {
    max-width: 1200px;
    margin: 0px auto;
    display: flex;
    padding: 0px 30px;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.header-logo {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #fff;
    position: relative;
    z-index: 5;
    width: 40px;
    height: 40px;
}

.header-menu {}

.menu {}

.menu-icon {
    display: none;
}

.menu-body {}

.menu-list {}

.menu-list>li {
    position: relative;
    margin: 0px 0px 0px 20px;
}

.menu-link {
    color: #fff;
    font-style: 18px;
}

.menu-link:hover {
    text-decoration: underline;
}

.menu-sub-list {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #000;
    padding: 15px;
    min-width: 200px;
}

.menu-sub-list>li {
    margin: 0px 0px 10px 0px;
}

.menu-sub-list>li:last-child {
    margin: 0;
}

.menu-sub-link {
    color: #fff;
}

.menu-sub-link:hover {
    text-decoration: underline;
    cursor: pointer;
}

.menu-arrow {
    display: none;
}


/* -------------------- */

body._pc .menu-list>li:hover .menu-sub-list {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    pointer-events: all;
}

body._touch .menu-list>li {
    display: flex;
    align-items: center;
}

body._touch .menu-link {
    flex: 1 1 auto;
}

body._touch .menu-arrow {
    display: block;
    width: 0;
    height: 0;
    margin: 0px 0px 0px 5px;
    transition: transform 0.3s ease 0s;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #fff;
    -webkit-transition: transform 0.3s ease 0s;
    -moz-transition: transform 0.3s ease 0s;
    -ms-transition: transform 0.3s ease 0s;
    -o-transition: transform 0.3s ease 0s;
}

body._touch .menu-list>li._active .menu-sub-list {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    pointer-events: all;
}

body._touch .menu-list>li._active .menu-arrow {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
}


/* -------------------- */

@media (min-width: 767px) {
    .menu-list {
        display: flex;
        align-items: center;
    }
    .menu-list>li {
        padding: 10px 0;
    }
    .menu-sub-list {
        transform: translate(0px, 10%);
        -webkit-transform: translate(0px, 10%);
        -moz-transform: translate(0px, 10%);
        -ms-transform: translate(0px, 10%);
        -o-transform: translate(0px, 10%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease 0s;
        ;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
    }
}

@media (max-width: 620px) {
    .page-section-1 {
        flex-direction: column;
    }
    .page-section-9 {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .menu-icon {
        z-index: 5;
        display: block;
        position: relative;
        width: 30px;
        height: 18px;
        cursor: pointer;
    }
    .menu-icon span,
    .menu-icon:before,
    .menu-icon:after {
        left: 0;
        position: absolute;
        height: 10%;
        width: 100%;
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        background-color: #fff;
    }
    .menu-icon:before,
    .menu-icon:after {
        content: "";
    }
    .menu-icon:before {
        top: 0;
    }
    .menu-icon:after {
        bottom: 0;
    }
    .menu-icon span {
        top: 50%;
        transform: scale(1) translate(0px, -50%);
        -webkit-transform: scale(1) translate(0px, -50%);
        -moz-transform: scale(1) translate(0px, -50%);
        -ms-transform: scale(1) translate(0px, -50%);
        -o-transform: scale(1) translate(0px, -50%);
    }
    .menu-icon._active span {
        transform: scale(0) translate(0px, -50%);
        -webkit-transform: scale(0) translate(0px, -50%);
        -moz-transform: scale(0) translate(0px, -50%);
        -ms-transform: scale(0) translate(0px, -50%);
        -o-transform: scale(0) translate(0px, -50%);
    }
    .menu-icon._active::before {
        top: 50%;
        transform: rotate(-45deg) translate(0px, -50%);
    }
    .menu-icon._active::after {
        top: 50%;
        transform: rotate(45deg) translate(0px, 50%);
    }
    .menu-body {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 100px 30px 30px 30px;
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        overflow: auto;
    }
    .menu-body._active {
        left: 0;
    }
    .menu-list>li {
        margin: 0px 0px 30px 0px;
    }
    .menu-list>li:last-child {
        margin-bottom: 0;
    }
    .menu-link {
        font-style: 24px;
    }
    .menu-body::before {
        content: "";
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        height: 70px;
        background-color: #912105;
        z-index: 2;
    }
    .menu-sub-list {
        position: relative;
        background-color: #fff;
        flex: 1 1 100%;
        margin: 20px 0px 0px 0px;
        display: none;
    }
    .menu-sub-link {
        font-style: 20px;
        color: #000;
    }
}

.responsive {
    width: 100%;
    height: auto;
}