@import url('https://fonts.googleapis.com/css?family=Montserrat');

body,
html {
    /* background-color: #fff; */
    height: 100%;
    /* width: 100%; */
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

main {
    height: 100vh;
    width: 1%;
    top: 0;
    right: 0;
    position: fixed;
    /* overflow: hidden; */
    z-index: 1010;
}

.aside-section {
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 999;
}

.aside-left {
    display: none;
    width: 40%;
    left: 0;
    background-color: #ff5964;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

.aside-right {
    width: 3800%;
    right: 0;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.aside-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 150px;
    text-align: left;
    padding-left: 50px;
}

.aside-content {
    margin-top: 150px;
    padding: 0 40px;
    position: relative;
    color: white;
    text-align: center;
}

.aside-list li {
    margin-bottom: 30px;
}

.aside-anchor::after {
    /* content: "";
    position: absolute;
    bottom: 0;
    
    background-color: #05304b50;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.3px);
    -webkit-backdrop-filter: blur(6.3px);
  
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 3px; */
}

.aside-anchor::before {
    /* border-radius: 3px;
    content: "";
    position: absolute;
    bottom: 0;
    background-color: #fff;
    left: 0;
    height: 3px;
    z-index: 1;
    width: 100%;
    -webkit-transition: transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out; */
}

.aside-anchor:hover:before {
    /* -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%); */
    height: 5px;
}

.aside-anchor {
    padding-bottom: 7px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 30px;
    position: relative;
    font-family: "gill_sans_nova_light";

}

.aside-anchor:hover {
    font-weight: 600;

}


input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked ~ aside .aside-left {
    transform: translateY(30%);
}

input[type="checkbox"]:checked ~ aside .aside-right {
    transform: translateX(30%);
}

input[type="checkbox"]:checked ~ label .bar {
    background-color: #fff;
}

input[type="checkbox"]:checked ~ label .top {
    -webkit-transform: translateY(0px) rotateZ(45deg);
    -moz-transform: translateY(0px) rotateZ(45deg);
    -ms-transform: translateY(0px) rotateZ(45deg);
    -o-transform: translateY(0px) rotateZ(45deg);
    transform: translateY(0px) rotateZ(45deg);
}

input[type="checkbox"]:checked ~ label .bottom {
    -webkit-transform: translateY(-15px) rotateZ(-45deg);
    -moz-transform: translateY(-15px) rotateZ(-45deg);
    -ms-transform: translateY(-15px) rotateZ(-45deg);
    -o-transform: translateY(-15px) rotateZ(-45deg);
    transform: translateY(-15px) rotateZ(-45deg);
}

input[type="checkbox"]:checked ~ label .middle {
    width: 0;
}

.middle {
    margin: 0 auto;
}

label {
    right: 20px;
    top: 24px;
    /* display: inline-block; */
    /* padding: 7px 10px; */
    /* background-color: transparent;/ */
    cursor: pointer;
    /* margin: 10px; */
    /* z-index: 3; */
    /* position: fixed; */
    position: absolute;
    /* transform: translate(15rem, 10px); */
    z-index: 9999;
}

.bar {
    display: block;
    background-color: #ffffff;
    width: 30px;
    height: 3px;
    border-radius: 5px;
    margin: 5px auto;
    transition: background-color 0.4s ease-in, transform 0.4s ease-in,
    width 0.4s ease-in;
}

h1 {
    margin: 0;
    position: relative;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    font-size: 30px;
}

h1 span {
    font-size: 20px;
    display: block;
}

p {
    font-size: 24px;
}

.button {
    display: inline-block;
    background-image: none;
    border: none;
    background-color: transparent;
    padding-bottom: 7px;
    position: relative;
    cursor: pointer;
    font-size: 20px;
    color: white;
    padding: 7px 50px;
    border: 2px solid white;
}

@media (min-width: 992px) {
    h1 {
        font-size: 40px;
    }

    .aside-left {
        display: block;
    }

    .aside-right {
        width: 3800%;
    }
}

a:hover {
    color: white;
}

main > label {
    margin: 25px !important;
}