html, body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: 'Manrope', sans-serif;
}

body {
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.desktop-nav {
    height: 70px;
    width: 100%;
    color: #fff;
    background-color: rgb(11, 47, 73);
    display: flex;
    align-items: center;
    position: sticky;
    overflow: hidden;
    top: 0;
    z-index: 2;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
}

#logo-backing {
    height: 70px;
    width: 685px;
    margin-left: auto;
    position: absolute;
    right: 0;
    background-color: #fff;
    transform: translateX(50px) skew(-25deg);
}

.logo {
    margin-left: 10px;
    margin-right: 10px;
    width: 50px;
    height: 50px;
}

.nav-items {
    float: right;
    margin-left: auto;
    margin-right: 10px;
    z-index: 1;
}

.desktop-nav h2 {
    float: left;
    margin-right: 80px;
    font-weight: 600;
}

.desktop-nav a {
    margin-right: 25px;
    color: rgb(11, 47, 73);
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    transition: 0.5s;
}

.desktop-nav a:hover {
    color: rgb(0, 156, 223);
}

.desktop-nav .active {
    color: rgb(0, 156, 223);
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 3px;
    text-decoration-color: rgb(0, 156, 223);
}

.mobile-nav {
    display: none;
}

main {
    color: #fff;
}

.index-img {
    width: 100%;
    max-width: 1280px;
    height: auto;
    display: block;
    margin: auto;
}

.dentists-out {
    margin: auto;
    width: 80%;
    max-width: 1280px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
}

.dentist{
    margin-bottom: 25px;
}

.dentist img {
    max-width: 256px;
    padding-right: 20px;
    float: left;
}

.staff-content {
    color: #000;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 1px;
    text-align: justify;
}

.dentistry-img {
    width: 25%;
    height: auto;
    display: block;
    margin: auto;
    outline: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.5);
}

.content {
    color: #000;
    font-weight: 500;
    margin: 50px auto 50px auto;
    line-height: 25px;
    letter-spacing: 1px;
    width: 80%;
    max-width: 1280px;
    text-align: justify;
}

.centertxt {
    text-align: center;
}

.centertxt-medium {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.centertxt-large {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.center-img {
    height: auto;
    display: block;
    margin: auto;
}

.img-teeth {
    margin-left: 8px;
    width: 6%;
}

.banner {
    background-color: #000;
    text-align: center;
    font-size: 36px;
    font-weight: lighter;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner p {
    position: absolute;
    z-index: 1;
    text-shadow: 0px 2px 0px rgba(0, 26, 48, 1), 0px 2px 4px rgba(0, 26, 48, 1);
}

.banner img {
    filter: blur(4px) brightness(50%);
    width: 100%;
}

.invis {
    color: #000;
    font-weight: 800;
}

.phone {
    text-decoration: none;
    font-weight: bold;
    color: rgb(12, 107, 180);
}

.a-link {
    font-weight: bold;
    color: rgb(12, 107, 180);
}

.map {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map iframe {
    outline: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.5);
}

footer {
    padding: 10px;
    text-align: center;
    background-color: rgb(11, 47, 73);
    color: #fff;
    font-weight: bold;
    margin-top: auto;
}

/* Accordion panel buttons */
.accordion {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: bold;
    background-color: rgb(218, 218, 218);
    color: rgb(0, 0, 0);
    cursor: pointer;
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    text-decoration: none;
    display:flex;
    justify-content:space-between;
}

.accordion:after {
    content: '\0002B';
    align-self: center;
    margin-right: 6px;
}

.active.accordion:after {
    content: "\2212";
}

/* Button background color */
.accordion:hover {
    background-color: rgb(177, 177, 177);
}

  /* Accordion panel, hidden by default */
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

@media screen and (max-width: 1100px) {
    .logo {
        margin-left: 10px;
        margin-right: 8px;
        width: 44px;
        height: 44px;
        left: 4px;
        top: 7px;
    }

    .logo img {
        width: 44px;
    }

    .banner img {
        filter: blur(2px) brightness(50%);
        width: 100%;
    }

    .nav-items {
        float: none;
        margin-left: auto;
        margin-right: auto;
        z-index: 1;
    }

    .mobile-nav {
        min-height: 70px;
        width: 100%;
        color: #fff;
        background-color: rgb(11, 47, 73);
        display: inline;
        align-items: center;
        position: sticky;
        overflow: hidden;
        top: 0;
        z-index: 2;
        box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
        font-size: 32px;
    }

    .logo-items {
        display: flex;
        align-items: center;
        min-height: 70px;
    }
    
    .mobile-nav h2 {
        float: none;
        margin-right: 0;
        margin-left: 8px;
        font-size: 18px;
    }

    .logo a{
        margin-right: 0;
        color: #fff;
        text-align: center;
        display: block;
    }

    #menu-links a{
        margin-right: 0;
        color: rgb(11, 47, 73);
        font-weight: 800;
        text-align: center;
        display: block;
        padding: 8px;
        text-decoration: none;
        text-underline-offset: 5px;
    }

    #menu-links .active {
        color: rgb(0, 156, 223);
        text-decoration: underline;
        text-underline-offset: 5px;
        text-decoration-thickness: 3px;
        text-decoration-color: rgb(0, 156, 223);
    }

    #menu-links hr {
        border: 0;
        height: 1px;
        background-color: rgb(11, 47, 73);
        width: 80%;
    }

    .menu-icon{
        display: block;
        position: absolute;
        right: 18px;
        top: 16px;
        font-size: 28px;
    }

    .mobile {
        display: block;
    }

    #menu-links {
        display: none;
        background-color: #fff;
        padding-top: 8px;
        padding-bottom: 16px;
    }

    .desktop-nav {
        display: none;
    }

    .banner p {
        font-size: 28px;
    }

    .content {
        text-align: center;
    }

    .staff-content {
        color: #000;
        font-weight: 500;
        line-height: 25px;
        letter-spacing: 1px;
        text-align: center;
        padding: 25px;
        margin: auto;
    }

    .dentist {
        text-align: center;
    }

    .dentist img {
        max-width: 256px;
        width: 80%;
        padding: 0;
        float: none;
        margin: auto;
    }

    .center-img {
        width: 95%;
    }
}
