* {
    padding: 0;
    margin: 0;
    line-height: 1.5;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.xh1, .xh2, .xh3 {
    margin: 10px 0;
    font-weight: 700;
}

.xh1 {
    font-size: 24px;
    color: #5E1D0B;
}

.xh2 {
    font-size: 22px;
}

.xh3 {
    font-size: 16px;
}

header {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    z-index: 10000;
    background: white;
}

.page-top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.company-info {
    align-content: flex-end;
}

.address {
    font-size: small;
    text-align: center;
    margin-right: 15px;
}

.phone-number {
    font-size: small;
    text-align: center;
}

.logo {
  display: block;
}

.logo img {
  max-width: 100%;
  height: auto;
  display: block; /* Removes unwanted whitespace under the image */
}

.footer-image {
    position: relative;
}

.footer-image img {
    display: flex;
    width: 100%;
    flex: 1;
}

.announcement {
    background-color: cyan;
    color: black;
    padding: 5px 12px 5px 12px;
}

.announcement-message {
    padding: 0;
}

.cyan {
    background: cyan;
    padding-bottom: 50px;
}

.introduction {
    position: relative;
    padding: 20px 0;
}

.introduction img {
    display: none;
}

.intro-content {
    padding: 0 4%;
    text-align: center;
}

.red {
    color: rgb(181, 3, 3);
}

.schedule {
    margin-top: 40px;
    background-color: salmon;
    border-radius: 20px;
    border: 1px black solid;
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
}

.schedule a {
    color: black;
}

.schedule:hover {
    background-color: darkred;
    color: white;
}

.schedule:hover a {
    color: white;
}

.fees {
    margin-top: 30px;
}

.fee-content {
    padding: 10px 4%;
    text-align: center;
}

.fee-listing {
    background: slategray;
    color: white;
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    margin: 15px 0;
    font-size: large;
    padding: 5px;
}

.page-footer {
    position: relative;
    width: 100%;
    align-items: center; 
}

.footer-logo-overlay {
    position: absolute;
    top: 50px;
}

.footer-company-overlay {
    position: absolute;
    bottom: 0;
    color: white;
    right: 20px;
}

.menu-area {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
}

.menu {
    display: flex;
    justify-content: space-around; 
    align-items: center;
    font-weight: 800;
    position: relative;
    padding: 0 4px;
}

.menu a {
    font-size: 14px;
    color: #5E1D0B;
}

.menu a:not(:last-child)::after {
    content: " | ";
    margin-left: 5px;
    margin-right: 5px;
}

.menu a span:hover {
    color: darkred;
    border-bottom: 3px darkred solid;
}

.brag-tag {
    float: right;
    margin-right: 15px;
    line-height: 1;
}

.brag-tag a {
    color: black;
    font-size: small;
}

.brag-tag img {
    width: 33%;
}

.social-media {
    text-align: center;
}

.social-media img {
    width: 10%;
    margin-right: 12px;
}

.col {
    float:right;
    align-self: right;
}

.items {
    display: grid;
    grid-template-columns: 3fr 1fr;
}

.items > :nth-child(odd) {
  justify-self: center;
}

.items > :nth-child(even) {
  justify-self: end;
}

.items:nth-child(odd) {
  background-color: lightgray;
}

.items:nth-child(even) {
  background-color: white;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.autodialer {
    color: black;
}

.autodialer-w {
    color: white;
}

.heading {
    margin: 0 auto;
    text-align: center;
    margin-top: 50px;
}

.map-container {
    width: 100%;                  /* Fills the entire width of the parent container */
    aspect-ratio: 16 / 9;         /* Automatically maintains a 16:9 widescreen shape */
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {

    body {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 14px;
    font-style: normal;
    line-height: 1;
    font-variation-settings:
        "wdth" 100;
    }

    .xh1, .xh2, .xh3 {
        margin: 20px 0;
        font-weight: 700;
        line-height: 1;
    }

    .xh1 {
        font-size: 22px;
        color: #5E1D0B;
    }

    .xh2 {
        font-size: 16px;
    }

    .xh3 {
        font-size: 14px;
    }

    .announcement {
        background-color: cyan;
        color: black;
        padding: 10px 40px 20px 40px;
    }

    .announcement-message {
        padding: 0 5%;
    }

    .cyan {
        background: cyan;
        padding-bottom: 50px;
    }

    .page-top {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .introduction {
        position: relative;
        border-radius: 20px;
        /* border: 2px green solid; */
        margin: 0 10px;
        }

    .introduction img {
        width: 100%;
        display: flex;
        border-radius: 20px;
    }

    .intro-content {
        position: absolute;
        top: 20px;
        padding: 0 5%;
        text-align: center;
    }

    .fee-content {
        padding: 10px 5%;
        text-align: center;
    }

    .items {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        column-gap: 100px; 
        padding: 6px;
    }

    /*.menu-area {
        display: flex;
        flex-direction: row;
        justify-content: center; 
    }

    .menu {
        display: flex;
        margin-left: 30%;
        justify-content: space-between; 
        align-items: center;
        font-weight: 800;
        position: relative;
    }

    .menu a {
        font-size: large;
        color: #5E1D0B;
    }

    .social-media {
        float: right;
        margin-left: 25%;
    }

    .social-media img {
        width: 20%;
        margin-right: 12px;
    }
        */

    .menu-area {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu {
        display: flex;
        gap: 1rem;
    }

    .menu a {
        font-size: x-large;
        color: #5E1D0B;
    }

    .menu a:not(:last-child)::after {
        content: " | ";
        margin-left: 10px;
        margin-right: 10px;
    }

    .social-media, .spacer {
        width: 120px; 
    }

    .social-media {
        align-self: flex-end; 
        width: auto; 
        gap: 0.5rem;
    }

    .social-media img {
        width: 20%;
    }

    .footer-company-overlay {
        position: absolute;
        bottom: 12px;
        color: white;
        right: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 3%;
        border-radius: 20px;
        border: 1px black solid;
        padding: 50px;
        background: #dff9ec;
    }

    .map-container {
        width: 100%;                  /* Fills the entire width of the parent container */
        aspect-ratio: 16 / 9;         /* Automatically maintains a 16:9 widescreen shape */
    }

    .map-container iframe {
        width: 640px;
        height: 600px;
    }
}

@media (min-width: 1200px) {

    body {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 16px;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    }

    .xh1, .xh2, .xh3 {
        margin: 20px 0;
        font-weight: 700;
    }

    .xh1 {
        font-size: 32px;
        color: #5E1D0B;
    }

    .xh2 {
        font-size: 20px;
    }

    .xh3 {
        font-size: 16px;
    }

    .announcement {
        background-color: cyan;
        color: black;
        padding: 10px 40px 20px 40px;
    }

    .announcement-message {
        padding: 0 14%;
    }

    .page-top {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .introduction {
        position: relative;
        border-radius: 20px;
        /* border: 2px green solid; */
        margin: 0 100px;
        }

    .introduction img {
        width: 100%;
        display: flex;
        border-radius: 20px;
    }

    .intro-content {
        position: absolute;
        top: 20%;
        padding: 0 13%;
        text-align: center;
    }

    .fee-content {
        padding: 10px 14%;
        text-align: center;
    }

    .items {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        column-gap: 100px; 
        padding: 6px;
    }

    /*.menu-area {
        display: flex;
        flex-direction: row;
        justify-content: center; 
    }

    .menu {
        display: flex;
        margin-left: 30%;
        justify-content: space-between; 
        align-items: center;
        font-weight: 800;
        position: relative;
    }

    .menu a {
        font-size: large;
        color: #5E1D0B;
    }

    .social-media {
        float: right;
        margin-left: 25%;
    }

    .social-media img {
        width: 20%;
        margin-right: 12px;
    }
        */

    .menu-area {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu {
        display: flex;
        gap: 1rem;
    }

    .menu a {
        font-size: x-large;
        color: #5E1D0B;
    }

    .social-media, .spacer {
        width: 120px; 
    }

    .social-media {
        align-self: flex-end; 
        width: auto; 
        gap: 0.5rem;
    }

    .social-media img {
        width: 20%;
    }

    .footer-company-overlay {
        position: absolute;
        bottom: 30px;
        color: white;
        right: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 3% 14%;
        border-radius: 20px;
        border: 1px black solid;
        padding: 50px;
        background: #dff9ec;
    }

    .map-container {
        width: 100%;                  /* Fills the entire width of the parent container */
        aspect-ratio: 16 / 9;         /* Automatically maintains a 16:9 widescreen shape */
    }

    .map-container iframe {
        width: 800px;
        height: 700px;
    }
}