/* General */

* {
    padding: 0px;
    margin: 0px;
    font-family: helvetica;
}

body {
    scroll-margin-top: 90px;
}

button {
    cursor: pointer;
}

/* Top Navigation */

#top-navigation {
    width: calc(100% - 20px);
    height: 90px;
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0px;
    background-color: white;
    box-shadow: 0px 0px 5px #888888;
    padding: 0px 10px;
    z-index: 9;
}

#top-navigation ul {
    list-style: none;
}

#top-navigation ul li ul {
    position: absolute;
    margin-top: 57px;
    box-shadow: 0px 0px 5px #888888;
    background-color: white;
    border-radius: 0px 0px 10px 10px;
    overflow: hidden;
    max-height: 0px;
    visibility: hidden;
    transition: max-height 150ms ease-in-out;
}

#top-navigation ul li ul li {
    line-height: 1.75;
    padding: 5px 10px;
}

.top-navigation-item {
    display: none;
}

#top-navigation a:not(#place-order-item a) {
    color: black;
    text-decoration: none;
    font-size: 18px;
}

#skip-content {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: white;
    border: thin solid black;
    padding: 5px;
    visibility: hidden;
}

#place-order-item a {
    background-color: #142464;
    color: white;
    text-decoration: none;
    border-radius: 100vh;
    font-size: 18px;
    padding: 5px 10px;
}

#top-navigation svg {
    vertical-align: -3px;
    transition: transform 150ms ease-in-out;
}

#toggle-top-services-btn {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    font-size: 18px;
}

#toggle-top-services-btn svg {
    transform: rotate(180deg);
}

#top-phone-number {
    font-size: 18px;
}

#top-navigation-left {
    height: 90px;
    display: flex;
    justify-content: start;
    align-items: center;
}

#top-navigation-left img {
    width: auto;
    height: 65px;
}

#top-navigation-right {
    height: 90px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#toggle-side-navigation-btn {
    border: none;
    background-color: rgba(0, 0, 0, 0);
    transition: transform 150ms ease-in-out;
}

/* Side Navigation */

#side-navigation {
    width: 100%;
    height: calc(100vh - 90px);
    position: fixed;
    top: 90px;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 150ms ease-in-out;
    visibility: hidden;
    z-index: -1;
}

#side-navigation-background {
    width: 90%;
    max-width: 0px;
    height: calc(100vh - 90px);
    background: white;
    float: right;
    overflow: auto;
    white-space: nowrap;
    transition: max-width 150ms ease-in-out;
}

#side-navigation ul {
    width: 300px;
    list-style: none;
}

#side-navigation li:not(#side-navigation ul li ul li) {
    padding: 20px;
}

#side-navigation ul li ul {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 150ms ease-in-out;
}

#side-navigation ul li ul li {
    margin: 20px 0px 0px 10px;
}

#side-navigation a {
    text-decoration: none;
    font-size: 18px;
    color: black;
}

#side-navigation button {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    text-align: left;
    font-size: 18px;
}

#side-navigation button::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19.66 16.01a1.35 1.35 0 0 1-.47.54c-.203.13-.439.2-.68.2h-13a1.3 1.3 0 0 1-.69-.2a1.28 1.28 0 0 1-.56-1.25a1.27 1.27 0 0 1 .31-.65l6.09-6.77a1.7 1.7 0 0 1 .58-.45a1.8 1.8 0 0 1 .73-.18c.253.003.503.05.74.14c.23.101.438.247.61.43l6.11 6.83c.163.182.267.408.3.65a1.24 1.24 0 0 1-.07.71'/%3E%3C/svg%3E");
    float: right;
    transform: rotate(180deg);
    transition: transform 150ms ease-in-out;
}

.side-navigation-services-menu-open::after {
    transform: rotate(0deg) !important;
}

#side-navigation svg {
    vertical-align: -3px;
    margin-right: 5px;
}

#place-order-side {
    background-color: #142464;
}

#place-order-side a {
    color: white;
}

/* Footer */

footer {
    color: white;
}

footer svg {
    vertical-align: -4px;
}

#footer-content {
    display: grid;
    grid-template-columns: 100%;
    justify-items: center;
    row-gap: 25px;
    background-color: #191919;
    text-align: center;
    line-height: 1.75;
    padding: 15px;
}

#footer-content ul {
    list-style: none;
}

#footer-content img {
    width: 300px;
    height: auto;
}

#footer-content header {
    font-size: 18px;
}

#footer-content a {
    color: white;
    text-decoration: none;
}

#footer-content address {
    font-style: normal;
}

#footer-summary {
    max-width: 375px;
}

#copyright {
    background-color: #090909;
    padding: 15px;
}

#copyright p {
    color: white;
    text-align: center;
}

/* Media Queries */

@media screen and (max-width: 330px){

    #top-navigation-left img {
        height: 50px;
    }

}

@media screen and (min-width: 800px){

    #footer-content {
        grid-template-columns: 50% 50%;
    }

}

@media screen and (min-width: 1002px){

    .top-navigation-item {
        display: flex;
    }

    #top-navigation-left li {
        margin-right: 15px;
    }

    #top-navigation-right li {
        margin-left: 15px;
    }

    #toggle-side-navigation-btn {
        display: none;
    }

}

@media screen and (min-width: 1250px){

    #footer-content {
        grid-template-columns: 25% 25% 25% 25%;
    }

}