body {
    overflow-x: hidden;
    margin-top: 30px;
}

/* NAVBAR */
#container_navbar {
    width: 100%;
    background-color: #343a40 !important;
}

#container_navbar_inner {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}

.navbar {
    background-color: #343a40 !important;
    padding-bottom: 8px !important;
}

.fixed {
    position: fixed;
    top: 0;
}

.custom-toggler.navbar-toggler {
    border-color: white;
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-brand {
    font-size: 40px;
    font-family: arista;
}

.container-fluid a {
    color: white !important;
}

#navbarNav ul li {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
    font-family: lato;
}

#navbarNav ul li a {
    transition: 0.3s ease;
    cursor: pointer;
}

#navbarNav ul li a:hover {
    color: #5a5f63 !important;
}

/* BANNER */
#banner {
    display: block;
}

#banner_handy {
    display: none;
}

/* BACKGROUND */
#background {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(dandelion.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -9999;
    opacity: 5%;
}

/* CONTENT */
.container {
    margin-top: 50px;
    padding-left: 40px;
    text-align: left;
    font-family: louis;
    font-size: 1.5rem;
}

section {
    height: 50px;
}

#content {
    max-width: 80%;
    margin-top: 125px;
    margin-left: auto;
    margin-right: auto;
    font-family: louis;
    font-size: 1.5rem;
}

#dp_row {
    border-left: 3px solid #343a40;
    padding-left: 15px;
}

.dp_col_flex {
    display: flex;
}

#dp_col_flex_left {
    width: 66%;
    height: auto;
}

#dp_col_flex_right {
    width: 33%;
    height: auto;
    margin-left: 15px;
}

#dp_portrait {
    width: 75%;
}

/* FOOTER */
.dp_footer {
    width: 100%;
    height: auto;
    background-color: #cccccc;
    font-family: louis;
}

#dp_footer_container {
    max-width: 80%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    /* background-color: blue; */
    padding-bottom: 15px;
}

#dp_footer_flex {
    display: flex;
}

.dp_footer_flex {
    padding-top: 15px;
    width: 50%;
    /* background-color: green; */
    font-size: 1.4rem;
}

#dp_footer_right {
    padding-left: 15px;
}

#dp_footer_copyright {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #343a40;
    text-align: center;
    color: white;
}

.dp_footer a {
    color: black;
    text-decoration: none;
}

.dp_footer a:hover {
    text-decoration: underline;
}

/* BACK TO TOP BUTTON */
.back-to-top {
    width: 70px;
    height: 70px;
    background: #343a40;
    border-radius: 10px;
    padding: 15px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.back-to-top img {
    margin-top: 0px;
}

  
/* MEDIA QUERIES */
/* SCREEN TOO SMALL FOR NAVBAR (expand navbar) */
@media only screen and (max-width: 1550px) {
    #container_navbar {
      width: 100%;
    }

    #container_navbar_inner {
      margin: 0 !important;
      width: 100%;
    }

    #navbarNav ul li {
      padding-left: 0px;
      padding-right: 0px;
    }

    #google_maps {
      width: 100% !important;
    }
}

/* EXPAND CONTENT ON MOBILE */
@media only screen and (max-width: 576px) {
    #content {
      max-width: 90% !important;
    }
}

/* WHEN SCREEN TOO SMALL FOR CONTENT (flex to block) */
@media only screen and (max-width: 950px) {
    .dp_col_flex {
        display: block !important;
    }

    #dp_col_flex_left {
        width: auto !important;
    }

    #dp_col_flex_right {
        width: auto !important;
        margin-left: 0px !important;
    }

    #dp_footer_flex {
      display: block !important;
    }

    .dp_footer_flex {
      width: 100% !important;
      padding-left: 0px !important;
    }

    #dp_footer_right {
      padding-left: 0px !important;
    }
}

/* CHANGE BACKGROUND */
@media only screen and (max-width: 550px) {
    #banner {
      display: none !important;
    }

    #banner_handy {
      display: block !important;
    }
}
