* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    max-width: 100vw;
    word-wrap: break-word;
    word-break: break-word;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 70px;
    font-family: Arial, sans-serif;
    max-width: 100vw;
    overflow-x: hidden;
}

.ribbon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: hsl(203, 59%, 90%);
    padding: 5px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.ribbon .logo,
.ribbon .nav {
    height: 100%;
}

.ribbon .logo img {
    height: 100%;
    filter: drop-shadow(-3px 5px 3px grey);
}

.ribbon .nav img {
    height: 80%;
    margin-right: 5px;
    margin-top: 5px;
    cursor: pointer;
}

.sideMenu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.3);
    transition: right 0.4s ease;
    z-index: 1500;
    padding: 20px;
}

.sideMenu.active {
    right: 0;
}

.sideMenu button {
    background: none;
    border: none;
    padding: 10px;
    margin-bottom: -5px;
    cursor: pointer;
}

.sideMenu button img {
    margin-top: -20px;
    margin-right: -20px;
    width: 40px;
    height: 40px;
}

.sideMenu button#closeMenuBtn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    float: right;
}

.sideMenu ul {
    list-style: none;
    margin-top: 0px;
}

.sideMenu ul li {
    margin: 5px 0;
}

.sideMenu ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: black;
    font-size: x-large;
    margin: 0px -20px;
    padding: 5px 20px;
}

.sideMenu ul li a:hover {
    background-color: lightgray;
}

.sideMenu ul li a img {
    width: 40px;
    height: 40px;
}

.option-separator {
    border: none;
    border-top: 2px solid #000;
    margin: 0px;
    width: 100%;
    padding: 0px;
    opacity: 1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 1400;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.address {
    width: 100%;
    padding: 20px;
    background-color: #3a393c;
    font-size: 1.2em;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.address .top h3 {
    text-align: center;
    margin-bottom: 20px;
}

.address .top a {
    color: white;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

.addresses {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
}

.addresses .contact-info,
.addresses .address-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    font-size: large;
}

.contact-info div,
.address-info div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: left;
}

.social div img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-right: 20px;
}

.separator {
    border: none;
    border-top: 1px solid #fff;
    margin: 10px 0 20px 0;
    width: 100%;
    opacity: 0.3;
}

.mission {
    text-align: center;
}

.mission-content img {
    height: auto;
    width: 450px;
    filter: drop-shadow(-3px 5px 4px grey);
    max-width: 100%;
}

.mission-content h3 {
    margin-top: -15px;
    background: linear-gradient(to right, #DD291B 0%, #8B2A24 30%, #66615E 65%, #54504D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    text-shadow: -2px 2px 4px gray;
}

.mission-content p {
    max-width: 80%;
    margin: 0 auto 20px auto;
    text-align: center;
}

@media (max-width: 768px) {
    .addresses {
        flex-direction: column;
        gap: 30px;
    }

    .sideMenu {
        width: 80%;
        right: -80%;
    }
}

@media (max-width: 480px) {
    .address {
        font-size: 1em;
    }

    .sideMenu {
        width: 100%;
        right: -100%;
    }

    .social {
        flex-wrap: wrap;
        justify-content: left;
    }

    .social div img {
        margin-right: 10px;
    }
}