body {
    overflow-x: hidden;
}

/*MENU BUTTON*/
.menu-button {
    position: absolute;
    top: 80px;
    right: 0;
    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;
}

/*First Container*/
.el-h1 {
    font-family: 'Azo Sans', Helvetica, sans-serif;
    font-weight: bold;
    font-size: 80px;
    line-height: 1.2em;
    text-transform: none;
    color: #fff;
}

.inner, p {
    font-size: 12px;
    line-height: 2em;
    color: #fff;
}

a {
    text-decoration: none;
}

#header {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    z-index: 1;
}

.logo-container > h1  {
    color: #fff;
    text-shadow: 0 0 3px #000;
}

.block-main-media > .bg[style] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: no-repeat center center;
    background-size: cover;
}

.block-main-media > .inner {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
}

/*second container*/
.custom-offset {
    margin-top: 50px;
}

.custom-description-text {
    font-size: 25px;
    line-height: 1.3em;
}


@media screen and (max-width: 1399px){
    .el-h1 {
        font-family: 'Azo Sans', Helvetica, sans-serif;
        font-weight: bold;
        font-size: 60px !important;
    }
    .custom-description-text {
        font-size: 25px;
        line-height: 1.2em;
    }
}

@media screen and (max-width: 1100px){
    .el-h1 {
        font-family: 'Azo Sans', Helvetica, sans-serif;
        font-weight: bold;
        font-size: 55px !important;
    }
    .custom-description-text {
        font-size: 25px;
        line-height: 1.22em;
    }
}

@media screen and (max-width: 992px){
    .el-h1 {
        font-family: 'Azo Sans', Helvetica, sans-serif;
        font-weight: bold;
        font-size: 40px !important;
    }
    .custom-description-text {
        font-size: 22px;
        line-height: 1.08em;
    }
}

@media screen and (max-width: 767px){
    .el-h1 {
        font-family: 'Azo Sans', Helvetica, sans-serif;
        font-weight: bold;
        font-size: 56px !important;
    }
    .menu-button {
        transform: translate(-20%, -50%);
    }
}

@media screen and (max-width: 480px){
    .el-h1 {
        font-family: 'Azo Sans', Helvetica, sans-serif;
        font-weight: bold;
        font-size: 50px !important;
    }
    .logo-container > h1  {
        font-size: 28px !important;
    }
    .custom-offset {
        margin-top: 30px;
    }
    .block-main-media {
        height: 870px !important;
    }
}

@media screen and (max-width: 360px){
    .block-main-media {
        height: 800px !important;
    }
    .el-h1 {
        font-family: 'Azo Sans', Helvetica, sans-serif;
        font-weight: bold;
        font-size: 72px;
    }
    .logo-container > h1  {
        font-size: 26px !important;
    }
}

@media screen and (max-width: 280px){
    .block-main-media {
        height: 700px !important;
    }
    .el-h1 {
        font-family: 'Azo Sans', Helvetica, sans-serif;
        font-weight: bold;
        font-size: 40px !important;
    }
    .custom-offset {
        margin-top: 0;
    }
    .logo-container > h1  {
        font-size: 24px !important;
    }
}

