    :root {
        --accent: rgba(255, 87, 34, 1);
        --dark-grey: #242424;
        --light-grey: rgb(242 242 242);
    }

    html,
    body {
        width: 100%;
        height: 100%;
        margin: unset;
        background-color: black;
    }

    header {
        width: 100%;
        background-color: rgb(241 241 241);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    header h1 {
        margin: unset;
        padding-left: 1em;
    }

    img {
        width: 160px;
        height: 80px;
    }

    #logo-btn {
        padding: unset;
    }

    nav a {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1.5em;
        color: rgb(255 87 34);

        padding: 0.7em
    }

    nav {
        width: 100%;
    }

    @media(min-width: 992px) {
        .navbar .nav-item .dropdown-menu{ display: none; }
        .navbar .nav-item:hover .dropdown-menu{ display: block; }
        .navbar .nav-item .dropdown-menu{ margin-top:0; }
    }

    .mySlides {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .gallery-wrap {
        display: flex;
        margin: 2em;
    }

    .gallery-button {
        width: 60%;
        display: flex;
    }

    .gallery-button>button {
        width: 30%;
        color: white;
        opacity: 0.2;
        font-size: 3em;
        transition: opacity 0.2s;
        padding: 0;
        background: none;
        border: none;
    }

    .gallery-button>button:hover {
        opacity: 0.6;
    }

    footer {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        background-color: var(--dark-grey);
        flex-wrap: wrap;
    }

    footer>div {
        color: white;
        width: auto;
        margin: 3em 2em;
        min-width: 15em;
        max-height: 20em;
        overflow: hidden;
    }

    footer>div h5 {
        text-align: left;
    }

    footer>div img {
        width: 50px;
        height: 50px;
    }

    .service-ref {
        text-decoration: none;
        color: var(--accent);
    }

    .service-ref:hover {
        color: var(--accent);
    }

    #copyright {
        flex-basis: 100%;
        text-align: center;
        margin: unset;
        font-weight: 100;
        opacity: 0.6;
    }

    @media (min-width : 768px) and (max-width : 1200px) {
        .gallery-button > button {
            width: 100%;
        }

        .gallery-wrap{
            margin: unset;
        }

        footer {
            justify-content: space-around;
            padding: 1em;
          }
      
          footer>div {
            margin: 1em 1em;
            font-size: 0.8em;
          }
      
          footer>div img {
            width: 40px;
            height: 40px;
          }
    }

    @media (max-width: 768px){
        .gallery-button > button {
            width: 100%;
        }

        .gallery-wrap{
            margin: unset;
        }

        
    footer {
        justify-content: space-around;
        padding: 1em;
      }
  
      footer>div {
        margin: 1em 1em;
        font-size: 0.6em;
      }
  
      footer>div img {
        width: 35px;
        height: 35px;
      }
  
      footer>div h5 {
        font-size: 1.2em;
      }
    }