body {
    overflow-x: hidden;
}

/*Menu Button*/
.menu-button {
    position: fixed;
    top: 70px;
    right: 10%;
    transform: translate(-150%, -50%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 7;
    width: 80px;
    height: 30px;
    display: block;
    cursor: pointer;
}

.menu-button::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 30px;
    display: block;
    transition: .5s ease-in;
}

.menu-button::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 60px;
    display: block;
    transition: .5s ease-in;
}

body.menu-button-active .menu-button::after,  body.menu-button-active .menu-button::before{
    width: 20px;
    height: 20px;
    background-color: #111;
    z-index: 7;
    display: block;
    position: absolute;
    top: 20%;
}

body.menu-button-active .menu-button::after {
    width: 40px;
    height: 10px;
    transform: translate(-50%, 50%) rotate(45deg);
}

body.menu-button-active .menu-button::before {
    width: 40px;
    height: 10px;
    transform: translate(25%, 50%) rotate(135deg);
}

body.menu-button-active span {
    transform: translateX(50%);
}

body:not(.menu-button-active) .menu-button::after, body:not(.menu-button-active) .menu-button::before, body:not(.menu-button-active) .menu-button span{
    width: 20px;
    height: 20px;
    background-color: #efbc31;
    z-index: 7;
    display: block;
    position: absolute;
    top: 20%;
    transition: .5s ease-in;
}

/*BACKGROUND*/
.bg[style] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: no-repeat center center;
    background-size: cover;
    background-position: top;
}

/*WEBSITE LOGO*/
a {
    text-decoration: none;
    color: #eee;
}

.el-h4 {
    font-family: 'Azo Sans', Helvetica, sans-serif;
    font-weight: bolder;
    line-height: 1.5em;
    letter-spacing: 3px;
    font-size: 15px;
    text-transform: uppercase;
}

.custom-stages-text {
    font-family: 'Azo Sans', Helvetica, sans-serif;
    font-weight: bold;
    font-size: 40px;
    color: #eee;
    text-shadow: 0 0 3px #666;
}

/*STAGE 1*/
.stage-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('/static/images/what_we_are_doing_stage_1.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: grayscale(100%);
    margin-top: 5%;
}

/*STAGE 2*/
.stage-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../../what_are_we_doin/images/what_are_we_doing_stage_2_bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: grayscale(100%);
    margin-top: 5%;
}

/*STAGE 3*/
.stage-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../../what_are_we_doin/images/what_are_we_doing_stage_3_bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: grayscale(100%);
    margin-top: 5%;
}

.stage p {
    width: 300px;
    color: #eee;
    margin-left: 150px !important;
    text-shadow: 0 0 3px #000;
}

.offer-list {
    list-style-type: none;
    align-items: left;
}

.offer-list li {
    position: relative;
    margin-left: 14px;
}

.offer-list li::before {
    content: ' ';
    position: absolute;
    top: 12px;
    left: -45px;
    width: 30px;
    background-color: #000;
    background-position: top;
    padding-top: 2px;
    height: 1%;
    min-height: .2rem;
}

.icho-number {
    font-size: 12px;
    line-height: 2em;
    color: #fff;
}

@media screen and (min-width: 280px ) {
    .custom-logo {
        font-size: 24px !important;
    }

    .menu-button {
        position: absolute;
        top: 58px;
        right: -25%;
    }

    .custom-stages-text {
        font-size: 30px;
        color: #eee;
        margin-left: 5px !important;
    }

    .stage-3 p {
        font-size: 12px;
        margin-left: -50px !important;
    }
}

@media screen and (min-width: 360px ) {
    .custom-logo {
        font-size: 26px !important;
    }

    .menu-button {
        position: absolute;
        top: 58px;
        right: -25%;
    }

    .custom-stages-text {
        font-size: 35px;
        color: #eee;
        margin-left: 10px !important;
    }

    .stage p {
        font-size: 15px;
        margin-left: 30px !important;
    }
}

@media screen and (min-width: 380px ) {
    .custom-logo {
        font-size: 28px !important;
    }

    .menu-button {
        position: absolute;
        top: 58px;
        right: -25%;
    }

    .custom-stages-text {
        font-size: 45px;
        color: #eee;
        margin-left: 20px !important;
    }

    .stage p {
        margin-left: 30px !important;
    }
}

@media screen and (min-width: 576px ) {
    .custom-logo {
        font-size: 28px !important;
    }

    .custom-stages-text {
        font-size: 55px;
        color: #eee;
    }

    .menu-button {
        position: absolute;
        top: 70px;
        right: -10%;
    }

    .stage p {
        margin-left: 40px !important;
    }
}

@media screen and (min-width: 768px ) {
    .custom-logo {
        font-size: 22px !important;
    }

    .custom-stages-text {
        font-size: 55px;
        color: #eee;
    }

    .menu-button {
        position: absolute;
        top: 70px;
        right: -10%;
    }

    .stage p {
        margin-left: 50px !important;
    }
}

@media screen and (min-width: 992px ) {
    .custom-logo {
        font-size: 24px !important;
    }

    .custom-stages-text {
        font-size: 60px;
        color: #eee;
    }

    .menu-button {
        position: absolute;
        top: 70px;
        right: 5%;
    }

    .stage p {
        margin-left: 70px !important;
    }
}

@media screen and (min-width: 1200px ) {
    .custom-logo {
        font-size: 27px !important;
    }

    .custom-stages-text {
        font-size: 72px;
        color: #eee;
    }

    .menu-button {
        position: absolute;
        top: 70px;
        right: 10%;
    }
}