html, body {
    max-width: 1920px;
    width: 100%;
    height: 100%;
    position: relative;
}

.desktop-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: #ffffff;
    z-index: 99;
    display: flex;
    flex-direction: column;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
    -o-box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
}

.scrolling-header {
    flex-direction: row!important;
    align-items: center!important;
    justify-content: center!important;
}

.scrolling-logo-holder {
    padding-bottom: unset!important;
    padding-top: unset!important;
}

.scrolling-nav {
    margin-right: unset!important;
    margin-left: unset!important;
    padding-bottom: unset!important;
    padding-top: unset!important;
}

.mobile-header {
    display: none;
}

.logo-holder {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.logo-holder img {
    max-width: 190px;
}

.desktop-header nav {
    max-width: 870px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    padding-top: 10px;
    padding-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.desktop-header nav a {
    font-family: 'Raleway-Regular', sans-serif;
    font-size: 14px;
    text-decoration: none;
    color: #2a2a2a;
    line-height: 30px;
    padding: 0 10px;
}

footer {
    width: 100%;
    background: #ffffff;
}

.social-icons {
    max-width: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 35px;
    margin-right: auto;
    margin-left: auto;
}

.social-icons img {
    cursor: pointer;
}

.copyright-footer {
    width: 100%;
    background: #ddd;
    text-align: center;
    padding: 15px 0;
}

.copyright-footer p {
    color: #181818;
    font-family: 'Raleway-Regular', sans-serif;
    font-size: 15px;
}

.order-call-button {
    background: #eb6906;
    color: #ffffff!important;
}

.modal-title {
    font-family: 'Oswald-Regular', sans-serif;
    text-align: center;
    font-size: 36px;
    color: #181818;
    line-height: 1.35em;
}

.modal-body {
    text-align: center;
}

.modal-body p {
    font-family: 'Raleway-Light', sans-serif;
    font-size: 15px;
    color: #181818;
    text-align: center;
    line-height: 1.875em;
}

.modal-body p b {
    font-family: 'Raleway-Medium', sans-serif;
}

.square-input-holder {
    text-align: center;
    margin-bottom: 10px;
}

.square-input-holder p {
    margin: 0;
}

.square-input-holder input {
    font-family: 'Raleway-Light', sans-serif;
    font-size: 15px;
    color: #181818;
    padding: 6px 14px;
    line-height: 1.875em;
    border: 1px solid #181818;
    background: transparent;
}

.modal {
    z-index: 9999;
}

.modal-footer {
    justify-content: center;
}

.submit-form-button {
    font-family: 'Raleway-Regular', sans-serif;
    font-size: 15px;
    color: #ffffff;
    padding: 6px 14px;
    line-height: 1.875em;
    border: 1px solid green;
    background: green;
}

.close-modal-button {
    font-family: 'Raleway-Regular', sans-serif;
    font-size: 15px;
    color: #ffffff;
    padding: 6px 14px;
    line-height: 1.875em;
    border: 1px solid gray;
    background: gray;
}

.modal-body img {
    max-width: 120px;
}

.social-buttons-fixed {
    position: fixed;
    right: 1%;
    bottom: 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.social-buttons-fixed a {
    margin-bottom: 15px;
    background: #eb6906;
    padding: 8px;
    border-radius: 3px;
}

.social-buttons-fixed a img {
    max-width: 35px;
    width: 100%;
}


@media only screen and (max-width: 1024px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
        position: relative;
        background: #fff;
        z-index: 1;
    }

    .mobile-header .logo-holder {
        padding-bottom: 30px;
    }

    #mobile-button {
        position: absolute;
        max-width: 45px;
        left: 23px;
        top: 50%;
        margin-top: -23px;
    }
    .mobile-menu {
        width: 0px;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        height: 100vh;
        background: #eb6906;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        overflow-x: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .mobile-menu nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-menu nav a {
        text-decoration: none;
        color: #ffffff;
        padding: 10px 0;
    }

    #close-mobile-menu {
        position: absolute;
        max-width: 40px;
        right: 10px;
        top: 10px;
    }

    .order-call-button {
        background: #ffffff;
        color: #eb6906!important;
        padding: 5px 10px!important;
        cursor: pointer;
    }

}

@media only screen and (max-width: 400px) {
    .fifth-block-content-holder {
        margin-top: -240px;
    }
}

@media only screen and (max-width: 350px) {
    #mobile-button {
        position: absolute;
        max-width: 34px;
        left: 10px;
        top: 50%;
        margin-top: -17px;
    }

    .fifth-block-content-holder {
        margin-top: -260px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-body p {
        line-height: 1.5em;
    }
}