@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('../node_modules/material-design-icons/iconfont/MaterialIcons-Regular.eot'); /* For IE6-8 */
    src: local('Material Icons'),
      local('MaterialIcons-Regular'),
      url('../node_modules/material-design-icons/iconfont/MaterialIcons-Regular.woff2') format('woff2'),
      url('../node_modules/material-design-icons/iconfont/MaterialIcons-Regular.woff') format('woff'),
      url('../node_modules/material-design-icons/iconfont/MaterialIcons-Regular.ttf') format('truetype');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
  
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
  
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
  
    /* Support for IE. */
    font-feature-settings: 'liga';
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
  }

  html, body {
    margin: 0;
    padding: 0;
  }

@media (max-width: 575.98px) {

    div#mainpage {
        width: 100%;
        min-height: 100vh;
    }
    
    nav#mainnav-menu {
        width: 100%;
        height: 60px;
        background-color: white;
        position: sticky;
        top: 0;
        z-index: 11;
        top: 0;
        border-bottom: 1px solid rgb(236, 236, 236);
    }
    
    ul#mainnav-list {
        width: 95%;
        height: 100%;
        margin: 0;
        padding: 0;
        margin-left: 2.5%;
        list-style-type: none;
    }
    
    li#mainnav-logo-li {
        width: 25%;
        height: 100%;
        float: left;
    }

    img#mainnav-logo-img {
        height: 40px;
        margin-top: 10px;
    }
    
    li#mainnav-buttons-li {
        width: 75%;
        height: 100%;
        float: left;
        display: none;

    }

    div#mainnav-button {
        min-width: 0px;
        height: 100%;
        float: left;
        cursor: pointer;
    }
    div#mainnav-button.mobile {
        display: block;
        margin: auto;
        float: none;
    }

    p#mainnav-button-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        color: rgb(0, 104, 0);
        text-align: center;
        margin: 0;
      }
    
    div#mainnav-button-effect {
        height: 3px;
    }
    
    div#mainnav-button-eff-bar {
        width: 0%;
        height: 100%;
        background-color: rgb(16, 155, 16);
        display: block;
        margin: auto;
        transition-duration: 300ms;
    }
    
    div#mainnav-button:hover div#mainnav-button-eff-bar {
        width: 100%;
        transition-duration: 300ms;
    }

    li#mobile-menu-button {
        width: 60px;
        height: 60px;
        float: right;
    }

    div#total-menu-icon {
        width: 40px;
        height: 30px;
        margin-left: 10px;
        margin-top: 17.5px;
        cursor: pointer;
    }
    
    div#menu-stripe-div {
        width: 100%;
        height: 2px;
        background-color: black;
    }

    div#menu-stripe-div.stripe01 {

    }

    div#menu-stripe-div.stripe02 {
        margin-top: 8px;
    }   

    div#menu-stripe-div.stripe03 {
        margin-top: 8px;
    }

    div#menu-stripe-div.stripe01.closed {
        transition: 500ms;
        transition-property: transform;
        transform: translateY(10px) rotate(45deg) ;
    }

    div#menu-stripe-div.stripe02.closed {
       transition: 500ms;
       transition-property: opacity, width;
       opacity: 0;
       width: 0%;
    }

    div#menu-stripe-div.stripe03.closed {
        transition: 500ms;
        transition-property: transform;
        transform: translateY(-10px) rotate(-45deg) ;
    }

    div#menu-overlay-div {
        width: 100%;
        height: calc(100vh - 60px);
        position: fixed;
        top: 60px;
        background-color: white;
        z-index: 10;
        display: none;
    }

    ul#menu-overlay-listing {
        width: 100%;
        margin: 0;
        padding: 0;
        margin-top: 50px;
    }

    li#menu-button-list {
        width: 100%;
        height: 25px;
        display: flex;
        margin-bottom: 10px;
    }

    a#menuhref {
        outline: none;
        border: none;
        text-decoration: none;
    }

    a#menuhref:hover {
        outline: none;
        border: none;
        text-decoration: none;
    }

    a#menuhref:active {
        outline: none;
        border: none;
        text-decoration: none;
    }

    div#inner-footer-main {
        width: 90%;
        height: 100%;
        margin-left: 5%;
        display: none;
    }
    
    div#footer-buttons-area {
        width: 40%;
        height: 100%;
        float: left;
    }
    
    div#footer-logo-area {
        width: 20%;
        height: 100%;
        float: left;
    }

    div#footer-logo-div {
        width: 100%;
        height: 100px;
    }
    
    div#footer-copyright-area {
        width: 40%;
        height: 100%;
        float: left;
        position: relative;
    }
    
    img#footer-logo-img {
        width: 110px;
        display: block;
        margin: auto;
        padding-top: 20px;

    }

    p#copyright-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin-top: 125px;
        float: right;
    }

    p#footer-logo-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bolder;
        bottom: 0;
        text-align: center;
        font-size: 20px;
        color: #13ca00;
    }

    div#footer-button-div {
        width: 100%;
        height: 50px;
        margin-top: 125px;
    }

    p#footer-button-txt {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        color: black;
    }

    p#footer-button-txt a {
        color: black;
        border: none;
        outline: none;
    }

    p#footer-button-txt-mobile {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        color: black;
        padding-top: 15px;
        text-align: center;
        margin: 0;
    }

    p#footer-button-txt-mobile a {
        color: black;
        border: none;
        outline: none;
    }

    a#footerhref {
        margin-left: 10px;
        margin-right: 10px;
    }

    div#inner-mobile-footer-main {
        width: 100%;
        min-height: 200px;
    }

    div#mobile-footer-logo-area {
        width: 100%;
        min-height: 100px;
    }
    
    div#mobile-inner-logo-block {
        width: 200px;
        height: 100px;
        display: block;
        margin: auto;
    }

    div#mobile-footer-buttons-area {
        width: 100%;
        min-height: 50px;
    }

    div#inner-block {
        width: 100%;
        height: 100%;
        display: block;
        margin: auto;
    }

    div#mobile-copyright-footer-area {
        width: 100%;
        height: 50px;
    }

    p#copyright-txt-p-mobile {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        padding-top: 15px;
        text-align: center;
        margin: 0;
    }

    footer#footer-main {
        width: 100%;
        min-height: 200px;
        background-color: rgb(232, 232, 232);
    }

    a#buttonhref {
        color: black;
        outline: none;
        border: none;
        display: block; 
        clear: left; 
    }
    
    a#buttonhref:hover {
        color: none;
        outline: none;
        border: none;
    }
    
    a#buttonhref:active {
        color: none;
        outline: none;
        border: none;
    }
    
    footer#main-new-footer {
        width: 100%;
        min-height: 300px;
        background-color: rgb(232, 232, 232);
        overflow: hidden;
    }
    
    div#inner-div {
        width: 90%;
        max-width: 1200px;
        min-height: 0px;
        overflow: hidden;
        display: block;
        margin: auto;
    }
    
    ul#main-web-footer-listing {
        width: 100%;
        min-height: 300px;
        margin: 0;
        padding: 0;
        list-style-type: none;
        margin-top: 50px;
        overflow: hidden;
        margin-bottom: 50px;
    }
    
    li#main-web-footer-li {
        width: 100%;
        min-height: 0px;
        float: left;
        margin-bottom: 20px;
    }
    
    ul#main-web-footer-inner-listing {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    
    li#main-web-footer-inner-li {
        width: 100%;
        min-height: 225px;
        overflow: hidden;
    }
    
    svg.footer-brummeronline-logo {
        width: 100px;
        fill: rgb(0, 0, 0);
        margin-bottom: 20px;
    }
    
    p#main-web-footer-adres-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin: 0;
        margin-bottom: 20px;
    }
    
    div#main-web-footer-info-bar {
        width: 100%;
        min-height: 0px;
        display: flex;
    }
    
    div#main-web-footer-info-icon-area {
        width: 50px;
        min-height: inherit;
        float: left;
    }
    
    span#main-web-footer-info-icon {
    
    }
    
    div#main-web-footer-info-txt-area {
        width: calc(100% - 50px);
        min-height: inherit;
        float: left;
    }
    
    p#main-web-footer-info-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
    }
    
    p#main-web-footer-icon-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        font-weight: bold;
    }
    
    p#main-web-footer-title-txt-p {
        font-family: 'SF Pro Display', sans-serif;
        font-weight: bold;
        margin: 0;
        margin-bottom: 15px;
    }
    
    p#main-web-footer-link-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        margin-bottom: 10px;
    }
    
    a#main-wenfooter-link-href {
        text-decoration: none;
        color: black;
    }
    
    div#main-web-footer-under-bar {
       width: 100%;
       height: 70px; 
    }
    
    ul#main-web-footer-under-listing {
        width: 90%;
        max-width: 1200px;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: block;
        margin: auto;
    }
    
    li#main-web-footer-under-logo-li {
        width: 100%;
        height: 100%;
        float: left;
    }
    
    p#main-web-footer-under-copyright-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        line-height: 70px;
    }
    
    li#main-web-footer-under-links-li {
        width: 80%;
        height: 100%;
        float: left;
        display: none;
    }
    
    ul#main-web-footer-under-links-listing {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    
    li#main-web-footer-under-link-li {
        min-width: 50px;
        height: 100%;
        float: left;
    }
    
    p#main-web-footer-under-link-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        line-height: 70px;
        font-size: 13px;
        margin-right: 20px;
    }
    
    div#inner-page {
        width: 100%;
        min-height: calc(100vh - 60px);
        margin-top: 60px;
        margin-bottom: 50px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {

    div#mainpage {
        width: 100%;
        min-height: 100vh;
    }
    
    nav#mainnav-menu {
        width: 100%;
        height: 60px;
        background-color: white;
        position: fixed;
        z-index: 11;
        border-bottom: 1px solid rgb(236, 236, 236);
        top: 0;
    }
    
    ul#mainnav-list {
        width: 90%;
        height: 100%;
        margin: 0;
        padding: 0;
        margin-left: 5%;
        list-style-type: none;
    }
    
    li#mainnav-logo-li {
        width: 15%;
        height: 100%;
        float: left;
    }

    img#mainnav-logo-img {
        height: 40px;
        margin-top: 10px;
    }

    div#mainnav-button {
        min-width: 0px;
        height: 100%;
        float: left;
        cursor: pointer;
    }
    
    div#mainnav-button-effect {
        height: 3px;
    }
    
    div#mainnav-button-eff-bar {
        width: 0%;
        height: 100%;
        background-color: rgb(16, 155, 16);
        display: block;
        margin: auto;
        transition-duration: 300ms;
    }
    
    div#mainnav-button:hover div#mainnav-button-eff-bar {
        width: 100%;
        transition-duration: 300ms;
    }
    
    div#mainnav-button:hover p#mainnav-button-txt-p {
        color: rgb(16, 155, 16);
        transition-duration: 500ms;
    }
    
    div#mainnav-button-effect.home {
        width: 110px;
        display: block;
        margin: auto;
    }
    
    div#mainnav-button-effect.portfolio {
        width: 72px;
        display: block;
        margin: auto;
    }
    
    div#mainnav-button-effect.watdoenwij {
        width: 112px;
        display: block;
        margin: auto;
    }
    
    div#mainnav-button-effect.contact {
        width: 68px;
        display: block;
        margin: auto;
    }
    
    li#mainnav-buttons-li {
        width: 85%;
        height: 100%;
        float: left;
        display: none;

    }

    div#mainnav-button.mobile {
        display: block;
        margin: auto;
        float: none;
    }
    
    p#mainnav-button-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        color: rgb(0, 104, 0);
        text-align: center;
        margin: 0;
    }
    
    div#mainnav-button-effect {
        height: 3px;
    }
    
    div#mainnav-button-eff-bar {
        width: 0%;
        height: 100%;
        background-color: rgb(16, 155, 16);
        display: block;
        margin: auto;
        transition-duration: 300ms;
    }
    
    div#mainnav-button:hover div#mainnav-button-eff-bar {
        width: 100%;
        transition-duration: 300ms;
    }
    
    div#mainnav-button:hover p#mainnav-button-txt-p {
        color: rgb(16, 155, 16);
        transition-duration: 500ms;
    }
    
    div#mainnav-button-effect.home {
        width: 110px;
        display: block;
        margin: auto;
    }
    
    div#mainnav-button-effect.portfolio {
        width: 72px;
        display: block;
        margin: auto;
    }
    
    div#mainnav-button-effect.watdoenwij {
        width: 112px;
        display: block;
        margin: auto;
    }
    
    div#mainnav-button-effect.contact {
        width: 68px;
        display: block;
        margin: auto;
    }

    li#mobile-menu-button {
        width: 60px;
        height: 60px;
        float: right;
    }

    div#total-menu-icon {
        width: 40px;
        height: 30px;
        margin-left: 10px;
        margin-top: 17.5px;
        cursor: pointer;
    }
    
    div#menu-stripe-div {
        width: 100%;
        height: 2px;
        background-color: black;
    }

    div#menu-stripe-div.stripe01 {

    }

    div#menu-stripe-div.stripe02 {
        margin-top: 8px;
    }   

    div#menu-stripe-div.stripe03 {
        margin-top: 8px;
    }

    div#menu-stripe-div.stripe01.closed {
        transition: 500ms;
        transition-property: transform;
        transform: translateY(10px) rotate(45deg) ;
    }

    div#menu-stripe-div.stripe02.closed {
       transition: 500ms;
       transition-property: opacity, width;
       opacity: 0;
       width: 0%;
    }

    div#menu-stripe-div.stripe03.closed {
        transition: 500ms;
        transition-property: transform;
        transform: translateY(-10px) rotate(-45deg) ;
    }

    div#menu-overlay-div {
        width: 100%;
        height: calc(100vh - 60px);
        position: fixed;
        top: 60px;
        background-color: white;
        z-index: 10;
        display: none;
    }

    ul#menu-overlay-listing {
        width: 100%;
        margin: 0;
        padding: 0;
        margin-top: 50px;
    }

    li#menu-button-list {
        width: 100%;
        height: 25px;
        display: flex;
        margin-bottom: 10px;
    }

    a#menuhref {
        outline: none;
        border: none;
        text-decoration: none;
    }

    a#menuhref:hover {
        outline: none;
        border: none;
        text-decoration: none;
    }

    a#menuhref:active {
        outline: none;
        border: none;
        text-decoration: none;
    }

    div#inner-footer-main {
        width: 90%;
        height: 100%;
        margin-left: 5%;
        display: none;
    }
    
    div#footer-buttons-area {
        width: 40%;
        height: 100%;
        float: left;
    }
    
    div#footer-logo-area {
        width: 20%;
        height: 100%;
        float: left;
    }

    div#footer-logo-div {
        width: 100%;
        height: 100px;
    }
    
    div#footer-copyright-area {
        width: 40%;
        height: 100%;
        float: left;
        position: relative;
    }
    
    img#footer-logo-img {
        width: 110px;
        display: block;
        margin: auto;
        padding-top: 20px;
    }

    p#copyright-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin-top: 125px;
        float: right;
    }

    p#footer-logo-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bolder;
        bottom: 0;
        text-align: center;
        font-size: 20px;
        color: #13ca00;
    }

    div#footer-button-div {
        width: 100%;
        height: 50px;
        margin-top: 125px;
    }

    p#footer-button-txt {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        color: black;
    }

    p#footer-button-txt a {
        color: black;
        border: none;
        outline: none;
    }

    p#footer-button-txt-mobile {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        color: black;
        padding-top: 15px;
        text-align: center;
    }

    p#footer-button-txt-mobile a {
        color: black;
        border: none;
        outline: none;
    }

    a#footerhref {
        margin-left: 10px;
        margin-right: 10px;
    }

    div#inner-mobile-footer-main {
        width: 100%;
        min-height: 200px;
    }

    div#mobile-footer-logo-area {
        width: 100%;
        min-height: 100px;
    }
    
    div#mobile-inner-logo-block {
        width: 200px;
        height: 100px;
        display: block;
        margin: auto;
    }

    div#mobile-footer-buttons-area {
        width: 100%;
        height: 50px;
    }

    div#inner-block {
        width: 500px;
        height: 100%;
        display: block;
        margin: auto;
    }

    div#mobile-copyright-footer-area {
        width: 100%;
        height: 50px;
    }

    p#copyright-txt-p-mobile {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        padding-top: 15px;
        text-align: center;
        margin: 0;
    }

    footer#footer-main {
        width: 100%;
        height: 200px;
        background-color: rgb(232, 232, 232);
    }
    
    a#buttonhref {
        color: black;
        outline: none;
        border: none;
        display: block; 
        clear: left; 
    }
    
    a#buttonhref:hover {
        color: none;
        outline: none;
        border: none;
    }
    
    a#buttonhref:active {
        color: none;
        outline: none;
        border: none;
    }
    
    footer#main-new-footer {
        width: 100%;
        min-height: 300px;
        background-color: rgb(232, 232, 232);
        overflow: hidden;
    }
    
    div#inner-div {
        width: 90%;
        max-width: 1200px;
        min-height: 0px;
        overflow: hidden;
        display: block;
        margin: auto;
    }
    
    ul#main-web-footer-listing {
        width: 100%;
        min-height: 300px;
        margin: 0;
        padding: 0;
        list-style-type: none;
        margin-top: 50px;
        overflow: hidden;
        margin-bottom: 50px;
    }
    
    li#main-web-footer-li {
        width: calc(100%/2);
        min-height: 0px;
        float: left;
    }
    
    ul#main-web-footer-inner-listing {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    
    li#main-web-footer-inner-li {
        width: 100%;
        min-height: 225px;
        overflow: hidden;
    }
    
    svg.footer-brummeronline-logo {
        width: 100px;
        fill: rgb(0, 0, 0);
        margin-bottom: 20px;
    }
    
    p#main-web-footer-adres-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin: 0;
        margin-bottom: 20px;
    }
    
    div#main-web-footer-info-bar {
        width: 100%;
        min-height: 0px;
        display: flex;
    }
    
    div#main-web-footer-info-icon-area {
        width: 50px;
        min-height: inherit;
        float: left;
    }
    
    span#main-web-footer-info-icon {
    
    }
    
    div#main-web-footer-info-txt-area {
        width: calc(100% - 50px);
        min-height: inherit;
        float: left;
    }
    
    p#main-web-footer-info-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
    }
    
    p#main-web-footer-icon-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        font-weight: bold;
    }
    
    p#main-web-footer-title-txt-p {
        font-family: 'SF Pro Display', sans-serif;
        font-weight: bold;
        margin: 0;
        margin-bottom: 15px;
    }
    
    p#main-web-footer-link-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        margin-bottom: 10px;
    }
    
    a#main-wenfooter-link-href {
        text-decoration: none;
        color: black;
    }
    
    div#main-web-footer-under-bar {
       width: 100%;
       height: 70px; 
    }
    
    ul#main-web-footer-under-listing {
        width: 90%;
        max-width: 1200px;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: block;
        margin: auto;
    }
    
    li#main-web-footer-under-logo-li {
        width: 200px;
        height: 100%;
        float: left;
    }
    
    p#main-web-footer-under-copyright-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        line-height: 70px;
    }
    
    li#main-web-footer-under-links-li {
        width: calc(100% - 200px);
        height: 100%;
        float: left;
        padding-left: 10px;
        box-sizing: border-box;
    }
    
    ul#main-web-footer-under-links-listing {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    
    li#main-web-footer-under-link-li {
        min-width: 50px;
        height: 100%;
        float: left;
    }
    
    p#main-web-footer-under-link-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        line-height: 70px;
        font-size: 13px;
        margin-right: 20px;
    }
    
    div#inner-page {
        width: 100%;
        min-height: calc(100vh - 60px);
        margin-top: 60px;
        margin-bottom: 50px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {

    div#mainpage {
        width: 100%;
        min-height: 100vh;
    }
    
    nav#mainnav-menu {
        width: 100%;
        height: 60px;
        background-color: white;
        position: fixed;
        z-index: 11;
        border-bottom: 1px solid rgb(236, 236, 236);
        top: 0;
    }
    
    ul#mainnav-list {
        width: 90%;
        height: 100%;
        margin: 0;
        padding: 0;
        margin-left: 5%;
        list-style-type: none;
    }
    
    li#mainnav-logo-li {
        width: 15%;
        height: 100%;
        float: left;
    }

    img#mainnav-logo-img {
        height: 40px;
        margin-top: 10px;
    }

    div#mainnav-button {
        min-width: 0px;
        height: 100%;
        cursor: pointer;
        display: inline-block;
        margin: auto;
    }
    
    p#mainnav-button-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        color: rgb(0, 104, 0);
        text-align: center;
        margin: 0;
    }
    
    div#mainnav-button-effect {
        height: 3px;
    }
    
    div#mainnav-button-eff-bar {
        width: 0%;
        height: 100%;
        background-color: rgb(16, 155, 16);
        display: block;
        margin: auto;
        transition-duration: 300ms;
    }
    
    div#mainnav-button:hover div#mainnav-button-eff-bar {
        width: 100%;
        transition-duration: 300ms;
    }
    
    div#mainnav-button:hover p#mainnav-button-txt-p {
        color: rgb(16, 155, 16);
        transition-duration: 500ms;
    }
    
    li#mainnav-buttons-li {
        width: 85%;
        height: 100%;
        float: left;
        display: none;
    }

    li#mobile-menu-button {
        width: 60px;
        height: 60px;
        float: right;
    }

    div#total-menu-icon {
        width: 40px;
        height: 30px;
        margin-left: 10px;
        margin-top: 17.5px;
        cursor: pointer;
    }
    
    div#menu-stripe-div {
        width: 100%;
        height: 2px;
        background-color: black;
    }

    div#menu-stripe-div.stripe01 {

    }

    div#menu-stripe-div.stripe02 {
        margin-top: 8px;
    }   

    div#menu-stripe-div.stripe03 {
        margin-top: 8px;
    }

    div#menu-stripe-div.stripe01.closed {
        transition: 500ms;
        transition-property: transform;
        transform: translateY(10px) rotate(45deg) ;
    }

    div#menu-stripe-div.stripe02.closed {
       transition: 500ms;
       transition-property: opacity, width;
       opacity: 0;
       width: 0%;
    }

    div#menu-stripe-div.stripe03.closed {
        transition: 500ms;
        transition-property: transform;
        transform: translateY(-10px) rotate(-45deg) ;
    }

    div#menu-overlay-div {
        width: 100%;
        height: calc(100vh - 60px);
        position: fixed;
        top: 60px;
        background-color: white;
        z-index: 10;
        display: none;
    }

    ul#menu-overlay-listing {
        width: 100%;
        margin: 0;
        padding: 0;
        margin-top: 50px;
    }

    li#menu-button-list {
        width: 100%;
        height: 25px;
        display: flex;
        margin-bottom: 10px;
    }

    a#menuhref {
        outline: none;
        border: none;
        text-decoration: none;
    }

    a#menuhref:hover {
        outline: none;
        border: none;
        text-decoration: none;
    }

    a#menuhref:active {
        outline: none;
        border: none;
        text-decoration: none;
    }

    div#inner-footer-main {
        width: 90%;
        height: 100%;
        margin-left: 5%;
        display: none;
    }
    
    div#footer-buttons-area {
        width: 40%;
        height: 100%;
        float: left;
    }
    
    div#footer-logo-area {
        width: 20%;
        height: 100%;
        float: left;
    }

    div#footer-logo-div {
        width: 100%;
        height: 100px;
    }
    
    div#footer-copyright-area {
        width: 40%;
        height: 100%;
        float: left;
        position: relative;
    }
    
    img#footer-logo-img {
        width: 110px;
        display: block;
        margin: auto;
        padding-top: 20px;
    }

    p#copyright-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin-top: 125px;
        float: right;
    }

    p#footer-logo-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bolder;
        bottom: 0;
        text-align: center;
        font-size: 20px;
        color: #13ca00;
    }

    div#footer-button-div {
        width: 100%;
        height: 50px;
        margin-top: 125px;
    }

    p#footer-button-txt {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        color: black;
    }

    p#footer-button-txt a {
        color: black;
        border: none;
        outline: none;

    }

    p#footer-button-txt-mobile {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        color: black;
        padding-top: 15px;
        text-align: center;
    }

    p#footer-button-txt-mobile a {
        color: black;
        border: none;
        outline: none;
    }

    a#footerhref {
        margin-left: 10px;
        margin-right: 10px;
    }

    div#inner-mobile-footer-main {
        width: 100%;
        min-height: 200px;
    }

    div#mobile-footer-logo-area {
        width: 100%;
        min-height: 100px;
    }
    
    div#mobile-inner-logo-block {
        width: 200px;
        height: 100px;
        display: block;
        margin: auto;
    }

    div#mobile-footer-buttons-area {
        width: 100%;
        height: 50px;
    }

    div#inner-block {
        width: 90%;
        height: 100%;
        display: block;
        margin: auto;
    }

    div#mobile-copyright-footer-area {
        width: 100%;
        height: 50px;
    }

    p#copyright-txt-p-mobile {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        padding-top: 15px;
        text-align: center;
        margin: 0;
    }

    p#footer-button-txt-mobile {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        color: black;
        padding-top: 15px;
        text-align: center;
    }

    p#footer-button-txt-mobile a {
        color: black;
        border: none;
        outline: none;
    }

    a#footerhref {
        margin-left: 10px;
        margin-right: 10px;
    }

    footer#footer-main {
        width: 100%;
        height: 200px;
        background-color: rgb(232, 232, 232);
    }

    a#buttonhref {
        color: black;
        outline: none;
        border: none;
        display: block; 
        clear: left; 
    }
    
    a#buttonhref:hover {
        color: none;
        outline: none;
        border: none;
    }
    
    a#buttonhref:active {
        color: none;
        outline: none;
        border: none;
    }
    
    footer#main-new-footer {
        width: 100%;
        min-height: 300px;
        background-color: rgb(232, 232, 232);
        overflow: hidden;
    }
    
    div#inner-div {
        width: 90%;
        max-width: 1200px;
        min-height: 0px;
        overflow: hidden;
        display: block;
        margin: auto;
    }
    
    ul#main-web-footer-listing {
        width: 100%;
        min-height: 300px;
        margin: 0;
        padding: 0;
        list-style-type: none;
        margin-top: 50px;
        overflow: hidden;
        margin-bottom: 50px;
    }
    
    li#main-web-footer-li {
        width: calc(100%/2);
        min-height: 0px;
        float: left;
    }
    
    ul#main-web-footer-inner-listing {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    
    li#main-web-footer-inner-li {
        width: 100%;
        min-height: 225px;
        overflow: hidden;
    }
    
    svg.footer-brummeronline-logo {
        width: 100px;
        fill: rgb(0, 0, 0);
        margin-bottom: 20px;
    }
    
    p#main-web-footer-adres-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin: 0;
        margin-bottom: 20px;
    }
    
    div#main-web-footer-info-bar {
        width: 100%;
        min-height: 0px;
        display: flex;
    }
    
    div#main-web-footer-info-icon-area {
        width: 50px;
        min-height: inherit;
        float: left;
    }
    
    span#main-web-footer-info-icon {
    
    }
    
    div#main-web-footer-info-txt-area {
        width: calc(100% - 50px);
        min-height: inherit;
        float: left;
    }
    
    p#main-web-footer-info-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
    }
    
    p#main-web-footer-icon-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        font-weight: bold;
    }
    
    p#main-web-footer-title-txt-p {
        font-family: 'SF Pro Display', sans-serif;
        font-weight: bold;
        margin: 0;
        margin-bottom: 15px;
    }
    
    p#main-web-footer-link-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        margin-bottom: 10px;
    }
    
    a#main-wenfooter-link-href {
        text-decoration: none;
        color: black;
    }
    
    div#main-web-footer-under-bar {
       width: 100%;
       height: 70px; 
    }
    
    ul#main-web-footer-under-listing {
        width: 90%;
        max-width: 1200px;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: block;
        margin: auto;
    }
    
    li#main-web-footer-under-logo-li {
        width: 200px;
        height: 100%;
        float: left;
    }
    
    p#main-web-footer-under-copyright-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        line-height: 70px;
    }
    
    li#main-web-footer-under-links-li {
        width: calc(100% - 200px);
        height: 100%;
        float: left;
        padding-left: 10px;
        box-sizing: border-box;
    }
    
    ul#main-web-footer-under-links-listing {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    
    li#main-web-footer-under-link-li {
        min-width: 50px;
        height: 100%;
        float: left;
    }
    
    p#main-web-footer-under-link-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        line-height: 70px;
        font-size: 13px;
        margin-right: 20px;
    }
    
    div#inner-page {
        width: 100%;
        min-height: calc(100vh - 60px);
        margin-top: 60px;
        margin-bottom: 50px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {

    div#mainpage {
        width: 100%;
        min-height: 100vh;
    }
    
    nav#mainnav-menu {
        width: 100%;
        height: 60px;
        background-color: white;
        position: fixed;
        z-index: 11;
        border-bottom: 1px solid rgb(236, 236, 236);
        top: 0;
    }
    
    ul#mainnav-list {
        width: 80%;
        height: 100%;
        margin: 0;
        padding: 0;
        margin-left: 10%;
        list-style-type: none;
    }
    
    li#mainnav-logo-li {
        width: 10%;
        height: 100%;
        float: left;
    }

    img#mainnav-logo-img {
        height: 40px;
        margin-top: 10px;
    }

    div#mainnav-button {
        min-width: 0px;
        height: 100%;
        float: left;
        cursor: pointer;
    }
    
    p#mainnav-button-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin-top: 17.5px;
        color: rgb(0, 104, 0);
        text-align: center;
        margin-bottom: 0;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    div#mainnav-button-effect {
        height: 3px;
    }
    
    div#mainnav-button-eff-bar {
        width: 0%;
        height: 100%;
        background-color: rgb(16, 155, 16);
        display: block;
        margin: auto;
        transition-duration: 300ms;
    }
    
    div#mainnav-button:hover div#mainnav-button-eff-bar {
        width: 100%;
        transition-duration: 300ms;
    }
    
    div#mainnav-button:hover p#mainnav-button-txt-p {
        color: rgb(16, 155, 16);
        transition-duration: 500ms;
    }
    
    div#mainnav-button-effect.home {
        width: 110px;
        display: block;
        margin: auto;
    }
    
    div#mainnav-button-effect.portfolio {
        width: 72px;
        display: block;
        margin: auto;
    }
    
    div#mainnav-button-effect.watdoenwij {
        width: 112px;
        display: block;
        margin: auto;
    }
    
    div#mainnav-button-effect.contact {
        width: 68px;
        display: block;
        margin: auto;
    }
    
    li#mainnav-buttons-li {
        width: 90%;
        height: 100%;
        float: left;
    }
    
    li#mobile-menu-button {
        display: none;
    }

    div#menu-overlay-div {
        display: none !important;
    }

    div#inner-footer-main {
        width: 90%;
        height: 100%;
        margin-left: 5%;
        display: none;
    }
    
    div#footer-buttons-area {
        width: 40%;
        height: 100%;
        float: left;
    }
    
    div#footer-logo-area {
        width: 20%;
        height: 100%;
        float: left;
    }

    div#footer-logo-div {
        width: 100%;
        height: 100px;
    }
    
    div#footer-copyright-area {
        width: 40%;
        height: 100%;
        float: left;
        position: relative;
    }
    
    img#footer-logo-img {
        width: 110px;
        display: block;
        margin: auto;
        padding-top: 20px;
    }

    p#copyright-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin-top: 125px;
        float: right;
    }

    p#footer-logo-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bolder;
        bottom: 0;
        text-align: center;
        font-size: 20px;
        color: #13ca00;
    }

    div#footer-button-div {
        width: 100%;
        height: 50px;
        margin-top: 125px;
    }

    p#footer-button-txt {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        color: black;
    }

    p#footer-button-txt a {
        color: black;
        border: none;
        outline: none;
        margin-left: 15px;
        margin-right: 15px;
    }
    div#inner-mobile-footer-main {
        width: 100%;
        min-height: 200px;
    }

    div#mobile-footer-logo-area {
        width: 100%;
        min-height: 100px;
    }
    
    div#mobile-inner-logo-block {
        width: 200px;
        height: 100px;
        display: block;
        margin: auto;
    }

    div#mobile-footer-buttons-area {
        width: 100%;
        height: 50px;
    }

    div#inner-block {
        width: 500px;
        height: 100%;
        display: block;
        margin: auto;
    }

    div#mobile-copyright-footer-area {
        width: 100%;
        height: 50px;
    }

    p#copyright-txt-p-mobile {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        padding-top: 15px;
        text-align: center;
        margin: 0;
    }

    p#footer-button-txt-mobile {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        color: black;
        padding-top: 15px;
        text-align: center;
    }

    p#footer-button-txt-mobile a {
        color: black;
        border: none;
        outline: none;
    }

    a#footerhref {
        margin-left: 10px;
        margin-right: 10px;
    }

    footer#footer-main {
        width: 100%;
        height: 200px;
        background-color: rgb(232, 232, 232);
    }

    a#buttonhref {
        color: black;
        outline: none;
        border: none;
        display: block; 
        clear: left; 
    }
    
    a#buttonhref:hover {
        color: none;
        outline: none;
        border: none;
    }
    
    a#buttonhref:active {
        color: none;
        outline: none;
        border: none;
    }
    
    footer#main-new-footer {
        width: 100%;
        min-height: 300px;
        background-color: rgb(232, 232, 232);
        overflow: hidden;
    }
    
    div#inner-div {
        width: 90%;
        max-width: 1200px;
        min-height: 0px;
        overflow: hidden;
        display: block;
        margin: auto;
    }
    
    ul#main-web-footer-listing {
        width: 100%;
        min-height: 300px;
        margin: 0;
        padding: 0;
        list-style-type: none;
        margin-top: 50px;
        overflow: hidden;
        margin-bottom: 50px;
    }
    
    li#main-web-footer-li {
        width: calc(100%/3);
        min-height: 300px;
        float: left;
    }
    
    ul#main-web-footer-inner-listing {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    
    li#main-web-footer-inner-li {
        width: 100%;
        min-height: 225px;
        overflow: hidden;
    }
    
    svg.footer-brummeronline-logo {
        width: 100px;
        fill: rgb(0, 0, 0);
        margin-bottom: 20px;
    }
    
    p#main-web-footer-adres-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin: 0;
        margin-bottom: 20px;
    }
    
    div#main-web-footer-info-bar {
        width: 100%;
        min-height: 0px;
        display: flex;
    }
    
    div#main-web-footer-info-icon-area {
        width: 50px;
        min-height: inherit;
        float: left;
    }
    
    span#main-web-footer-info-icon {
    
    }
    
    div#main-web-footer-info-txt-area {
        width: calc(100% - 50px);
        min-height: inherit;
        float: left;
    }
    
    p#main-web-footer-info-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
    }
    
    p#main-web-footer-icon-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        font-weight: bold;
    }
    
    p#main-web-footer-title-txt-p {
        font-family: 'SF Pro Display', sans-serif;
        font-weight: bold;
        margin: 0;
        margin-bottom: 15px;
    }
    
    p#main-web-footer-link-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        margin-bottom: 10px;
    }
    
    a#main-wenfooter-link-href {
        text-decoration: none;
        color: black;
    }
    
    div#main-web-footer-under-bar {
       width: 100%;
       height: 70px; 
    }
    
    ul#main-web-footer-under-listing {
        width: 90%;
        max-width: 1200px;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: block;
        margin: auto;
    }
    
    li#main-web-footer-under-logo-li {
        width: 200px;
        height: 100%;
        float: left;
    }
    
    p#main-web-footer-under-copyright-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        line-height: 70px;
    }
    
    li#main-web-footer-under-links-li {
        width: calc(100% - 200px);
        height: 100%;
        float: left;
        padding-left: 10px;
        box-sizing: border-box;
    }
    
    ul#main-web-footer-under-links-listing {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    
    li#main-web-footer-under-link-li {
        min-width: 50px;
        height: 100%;
        float: left;
    }
    
    p#main-web-footer-under-link-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        line-height: 70px;
        font-size: 13px;
        margin-right: 20px;
    }
    
    div#inner-page {
        width: 100%;
        min-height: calc(100vh - 60px);
        margin-top: 60px;
        margin-bottom: 50px;
    }

}

@media (min-width: 1200px) {

    div#mainpage {
        width: 100%;
        min-height: 100vh;
    }
    
    nav#mainnav-menu {
        width: 100%;
        height: 60px;
        background-color: white;
        position: fixed;
        z-index: 11;
        border-bottom: 1px solid rgb(236, 236, 236);
        top: 0;
    }
    
    ul#mainnav-list {
        width: 90%;
        max-width: 1200px;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: block;
        margin: auto;
    }
    
    li#mainnav-logo-li {
        width: 10%;
        height: 100%;
        float: left;
    }

    img#mainnav-logo-img {
        height: 40px;
        margin-top: 10px;
    }

    div#mainnav-button {
        min-width: 70px;
        height: 100%;
        float: left;
        cursor: pointer;
        margin-left: 10px;
        margin-right: 10px;
    }

    p#mainnav-button-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin-top: 17.5px;
        color: rgb(0, 104, 0);
        text-align: center;
        margin-bottom: 0;
    }
    
    div#mainnav-button-effect {
        height: 3px;
    }
    
    div#mainnav-button-eff-bar {
        width: 0%;
        height: 100%;
        background-color: rgb(16, 155, 16);
        display: block;
        margin: auto;
        transition-duration: 300ms;
    }
    
    div#mainnav-button:hover div#mainnav-button-eff-bar {
        width: 100%;
        transition-duration: 300ms;
    }
    
    div#mainnav-button:hover p#mainnav-button-txt-p {
        color: rgb(16, 155, 16);
        transition-duration: 500ms;
    }
    
    div#mainnav-button-effect.home {
        width: 110px;
        display: block;
        margin: auto;
    }
    
    div#mainnav-button-effect.portfolio {
        width: 72px;
        display: block;
        margin: auto;
    }
    
    div#mainnav-button-effect.watdoenwij {
        width: 112px;
        display: block;
        margin: auto;
    }
    
    div#mainnav-button-effect.contact {
        width: 68px;
        display: block;
        margin: auto;
    }

    li#mainnav-buttons-li {
        width: 90%;
        height: 100%;
        float: left;
    }
    
    li#mobile-menu-button {
        display: none;
    }

    div#menu-overlay-div {
        display: none !important;
    }

    div#inner-footer-main {
        width: 90%;
        height: 100%;
        margin-left: 5%;
    }
    
    div#footer-buttons-area {
        width: 90%;
        max-width: 1200px;
        height: 200px;
        display: block;
        margin: auto;
        overflow: hidden;
    }
    
    div#footer-logo-area {
        width: 100%;
        height: 100%;
        float: left;
    }

    div#footer-logo-div {
        width: 100%;
        height: 120px;
    }
    
    div#footer-copyright-area {
        width: 100%;
        height: 60px;
        float: left;
        position: relative;
    }
    
    img#footer-logo-img {
        width: 110px;
        display: block;
        margin: auto;
        padding-top: 20px;
    }

    p#copyright-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin-top: 20px;
        text-align: center;
    }

    p#footer-logo-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bolder;
        bottom: 0;
        text-align: center;
        font-size: 20px;
        color: #13ca00;
    }

    div#footer-button-div {
        width: 100%;
        height: 50px;
        margin-top: 125px;
    }

    p#footer-button-txt {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        color: black;
    }

    p#footer-button-txt a {
        color: black;
        border: none;
        outline: none;
        margin-left: 15px;
        margin-right: 15px;
    }

    div#inner-mobile-footer-main {
        display: none;
    }

    footer#footer-main {
        width: 100%;
        min-height: 300px;
        background-color: rgb(232, 232, 232);
        overflow: hidden;
    }

    div#footer-sitelinks-area {
        min-width: 100px;
        height: 200px;
        float: left;
    }

    div#footer-sitelinks-area.sitelinks {
        margin-right: 40px;
    }

    div#footer-sitelinks-title-area {
        width: 100%;
        height: 35px;
    }

    p#footer-links-title-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        font-size: 20px;
        margin: 0;
    }
    
    div#footer-sitelinks-content-div {
        width: 100%;
    }

    div#footer-item-div {
        width: 100%;
        height: 30px;
    }

    p#footer-item-txt-p {
        font-family: 'Montserrat', sans-serif;
    }

    a#footer-href {
        color: black;
        text-decoration: none;
    }

    a#buttonhref {
        color: black;
        outline: none;
        border: none;
        display: block; 
        clear: left; 
    }
    
    a#buttonhref:hover {
        color: none;
        outline: none;
        border: none;
    }
    
    a#buttonhref:active {
        color: none;
        outline: none;
        border: none;
    }
    
    footer#main-new-footer {
        width: 100%;
        min-height: 300px;
        background-color: rgb(232, 232, 232);
        overflow: hidden;
    }
    
    div#inner-div {
        width: 90%;
        max-width: 1200px;
        min-height: 0px;
        overflow: hidden;
        display: block;
        margin: auto;
    }
    
    ul#main-web-footer-listing {
        width: 100%;
        min-height: 300px;
        margin: 0;
        padding: 0;
        list-style-type: none;
        margin-top: 50px;
        overflow: hidden;
        margin-bottom: 50px;
    }
    
    li#main-web-footer-li {
        width: calc(100%/3);
        min-height: 300px;
        float: left;
    }
    
    ul#main-web-footer-inner-listing {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    
    li#main-web-footer-inner-li {
        width: 100%;
        min-height: 225px;
        overflow: hidden;
    }
    
    svg.footer-brummeronline-logo {
        width: 100px;
        fill: rgb(0, 0, 0);
        margin-bottom: 20px;
    }
    
    p#main-web-footer-adres-txt-p {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        margin: 0;
        margin-bottom: 20px;
    }
    
    div#main-web-footer-info-bar {
        width: 100%;
        min-height: 0px;
        display: flex;
    }
    
    div#main-web-footer-info-icon-area {
        width: 50px;
        min-height: inherit;
        float: left;
    }
    
    span#main-web-footer-info-icon {
    
    }
    
    div#main-web-footer-info-txt-area {
        width: calc(100% - 50px);
        min-height: inherit;
        float: left;
    }
    
    p#main-web-footer-info-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
    }
    
    p#main-web-footer-icon-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        font-weight: bold;
    }
    
    p#main-web-footer-title-txt-p {
        font-family: 'SF Pro Display', sans-serif;
        font-weight: bold;
        margin: 0;
        margin-bottom: 15px;
    }
    
    p#main-web-footer-link-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        margin-bottom: 10px;
    }
    
    a#main-wenfooter-link-href {
        text-decoration: none;
        color: black;
    }
    
    div#main-web-footer-under-bar {
       width: 100%;
       height: 70px; 
    }
    
    ul#main-web-footer-under-listing {
        width: 90%;
        max-width: 1200px;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: block;
        margin: auto;
    }
    
    li#main-web-footer-under-logo-li {
        width: 20%;
        height: 100%;
        float: left;
    }
    
    p#main-web-footer-under-copyright-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        line-height: 70px;
    }
    
    li#main-web-footer-under-links-li {
        width: 80%;
        height: 100%;
        float: left;
    }
    
    ul#main-web-footer-under-links-listing {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    
    li#main-web-footer-under-link-li {
        min-width: 50px;
        height: 100%;
        float: left;
    }
    
    p#main-web-footer-under-link-txt-p {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        line-height: 70px;
        font-size: 13px;
        margin-right: 20px;
    }
    
    div#inner-page {
        width: 100%;
        min-height: calc(100vh - 60px);
        margin-top: 60px;
        margin-bottom: 50px;
    }
}