html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

html {
    -ms-content-zooming: none;
    /* Disables zooming */
    touch-action: none;
    /* Disable any special actions on tap/touch */
}

section,
header,
footer,
nav,
div,
span,
ul,
li,
a {
    box-sizing: border-box;
}

header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background-color: #f2f2f2;
    z-index: 999;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header ul li {
    display: inline-block;
    padding: 0 20px;
}

header ul a {
    font-weight: 700;
    text-decoration: none;
    color: #4d4d4d;
    height: 60px;
    display: block;
    position: relative;
}

header ul a span {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
}

section {
    float: left;
    width: 100%;
    display: block;
    height: 100vw;
    padding: 90px 0 0 0;
    margin: 0;
    height: 100vh;
    overflow: auto;
    z-index: 1 !important;
}

.mymenu a {
    color: white;
}

.mymenu {
    background-color: #1d415a;
    width: 100%;
}

#section-section1 {
    background: #1B2631;
}

#section-section2 {
    background: #414a3d;
}

#section-section3 {
    background: #2c3129;
}

#section-section4 {
    background: #1b1f1a;
}

#section-section5 {
    background: #2f392c;
}

#section-section6 {
    background: #1b1f1a;
}

.horizon-prev,
.horizon-next {
    position: fixed;
    top: 50%;
    margin-top: -24px;
    z-index: 9999;
}

.horizon-prev {
    left: 20px;
}

.horizon-next {
    right: 20px;
}

.c1 {
    text-align: center;
}

.title1 {
    color: #e5e8dc !important;
    font-size: 24px;
}

.info {
    /* background-color: rgba(67, 158, 169, .6) !important; */
    /* margin-top: -90px; */
}

.bigf {
    color: #FFF !important;
    font-size: 1.5em !important;
}

.mynav {
    overflow: hidden;
    background-color: black !important;
    color: white !important;
    width: 100%;
    max-width: 100%;
    padding: 5px;
    position: absolute;
    bottom: 50px !important;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 999;
}

.mynava {
    /* display: none !important; */
    text-decoration: none !important;
}

.myfooter {
    overflow: hidden;
    background-color: black !important;
    color: gray !important;
    width: 100%;
    max-width: 100%;
    padding: 5px;
    position: absolute;
    bottom: 0px !important;
    text-align: center;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 999;
    font-size: 12px;
}

.mynav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.mynav a:hover {
    background-color: black;
    color: white;
}

.mynav a.active {
    background-color: #04AA6D;
    color: white;
}

.menu {
    display: block;
    position: absolute;
    cursor: pointer;
    overflow: hidden;
    background-color: black !important;
    color: white !important;
    width: 100%;
    max-width: 100%;
    padding: 5px;
    position: absolute;
    bottom: 0px !important;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 999;
}

.menu__line {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background-color: #fff;
    border-radius: 13px;
    transition-duration: 0.4s;
}

.menu__line:nth-child(1) {
    top: 14px;
}

.menu__line:nth-child(2) {
    top: 23px;
}

.menu__line:nth-child(3) {
    bottom: 14px;
}

.menu.active {
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
}

.menu.active .menu__line:nth-child(1) {
    transform: translate(-12px, 9px) rotate(-45deg);
}

.menu.active .menu__line:nth-child(2) {
    transition-duration: 0s;
    opacity: 0;
}

.menu.active .menu__line:nth-child(3) {
    transform: translate(-12px, -9px) rotate(45deg);
}

.nav {
    display: block;
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: #222;
    height: 500px;
    width: 320px;
    border-radius: 50%;
    z-index: 9999;
    transition-duration: 0.4s;
}

.aw {
    color: white;
}

.nav.open {
    background-color: rgba(0, 0, 0, 0.6);
    width: 320px;
    height: 400px;
    padding: 10px;
    font-size: 20px;
    position: absolute;
    right: 0px;
    bottom: 0px;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: top;
    z-index: 9999;
}

.nav__list {
    display: none;
}

.nav__list.show {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    width: 100%;
    opacity: 0;
    animation-name: fadein;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.nav__item:nth-child(1) {
    animation-delay: 0.2s;
}

.nav__item:nth-child(2) {
    animation-delay: 0.3s;
}

.nav__item:nth-child(3) {
    animation-delay: 0.4s;
}

.nav__item:nth-child(4) {
    animation-delay: 0.5s;
}

.nav__item:not(:last-child) {
    margin-bottom: 32px;
}

.nav__link {
    font-size: 24px;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #fff;
}

@keyframes fadein {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
    }
}

.a {
    background-color: rgba(97, 211, 189, .6);
    padding: 10px;
    border-radius: 15px;
    color: white;
    margin: 8px 3px;
    line-height: 250%;
}

.b {
    background-color: rgba(108, 175, 211, .6);
    padding: 10px;
    border-radius: 15px;
    color: white;
    margin: 8px 3px;
    line-height: 250%;
}

.c {
    background-color: rgba(94, 105, 211, .6);
    padding: 10px;
    border-radius: 15px;
    color: white;
    margin: 8px 3px;
    line-height: 250%;
}

.d {
    background-color: rgba(153, 93, 211, .6);
    padding: 10px;
    border-radius: 15px;
    color: white;
    margin: 8px 3px;
    line-height: 250%;
}

.e {
    background-color: rgba(211, 89, 154, .6);
    padding: 10px;
    border-radius: 15px;
    color: white;
    margin: 8px 3px;
    line-height: 250%;
}

.f {
    background-color: rgba(211, 110, 103, .6);
    padding: 10px;
    border-radius: 15px;
    color: white;
    margin: 8px 3px;
    line-height: 250%;
}

.g {
    background-color: rgba(211, 202, 91, .6);
    padding: 10px;
    border-radius: 15px;
    color: white;
    margin: 8px 3px;
    line-height: 250%;
}

.h {
    background-color: rgba(99, 211, 85, .6);
    padding: 10px;
    border-radius: 15px;
    color: white;
    margin: 8px 3px;
    line-height: 250%;
}

.i {
    background-color: rgba(77, 179, 162, .6);
    padding: 10px;
    border-radius: 15px;
    color: white;
    margin: 8px 3px;
    line-height: 250%;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    text-decoration: none;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }
    .sidenav a {
        font-size: 18px;
    }
}