
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;
}


/*Contacts container*/
.contacts-container {
    width: 35%;
    height: 60%;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-20%, -50%);
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

/*COMPANY's ADDRESS*/
.contacts-container h1{
    font-family: 'Azo Sans', Helvetica, sans-serif;
    color: #eee;
    font-size: 50px;
    width: 80%;
    text-shadow: 0 1px 5px #333;
    line-height: 1.2em;
}

.contacts-address {
    text-shadow: 0 1px 5px #333;
    font-family: sans-serif;
    color: #eee;
}

/*PHONE AND MAIL INFO*/
.contacts-info {
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.contacts-info a {
    font-size: 18px;
    text-decoration: none;
    font-family: sans-serif;
    color: #efbc31;
    text-shadow: 0 1px 5px #333;
}

/*SOCIAL MEDIA LINKS*/
.contacts-links {
    display: flex;
    flex-direction: column;
    position: relative;
}

.contacts-links a {
    font-size: 18px;
    text-decoration: none;
    font-family: sans-serif;
    color: #efbc31;
    margin: 10px;
    text-shadow: 0 1px 5px #333;
}

.contacts-links a::after {
    background-color: #efbc31;
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    float: left;
    transform: translate(-5px, 8px);
    transition: .5s ease;
}

.contacts-links a:hover::after {
    width: 0;
}

@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;
    }
    .contacts-container h1 {
        font-size: 50px;
    }
    .contacts-container {
        width: 40%;
    }
}

@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;
    }
    .contacts-container h1 {
        font-size: 50px;
    }
    .contacts-container {
        width: 40%;
    }
}

@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;
    }
    .contacts-container h1 {
        font-size: 45px;
    }
    .contacts-container {
        width: 45%;
    }
}

@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%);
    }
    .contacts-container h1 {
        font-size: 40px;
    }
    .contacts-container {
        width: 55%;
    }
}

@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;
    }
    .contacts-container h1 {
        font-size: 35px;
    }
    .contacts-container {
        width: 65%;
    }
}

@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;
    }
    .contacts-container h1{
        font-family: 'Azo Sans', Helvetica, sans-serif;
        color: #eee;
        font-size: 30px;
        width: 80%;
    }
    .contacts-container {
        width: 80%;
    }
}

@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;
    }
    .contacts-container h1{
        font-family: 'Azo Sans', Helvetica, sans-serif;
        color: #eee;
        font-size: 30px;
        width: 80%;
    }
}