.navbar {
    z-index: 100;

    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;

    padding-top: 10px;
    padding-bottom: 7.5px;

    background-color: rgba(0, 0, 0, 1.0);

    /* border: 1px blue solid; */

    height: clamp(50px, 10%, 75px);
}
.navbar .left {

    padding-left: clamp(10px, 1%, 200px);

    display: flex;
    justify-content: left;
    align-items: center;

    width: 50%;
}
.navbar .right {

    display: flex;
    justify-content: right;
    align-items: center;

    width: 50%;
    padding-right: 8px;
    margin-top: -5px;
}
.navbar .navbuttons {

    width: auto;

    display: flex;
    align-items: center;
    justify-content: right;

    width: 100%;
    height: 100%;
}
.navbar .right button {
    height: 32px;
    width: clamp(75px, 20vw, 150px);

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 25px;
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0);
    color: white;

    font-family: 'Inter', sans-serif;
    font-variant: small-caps;
    text-transform: uppercase;
    font-size: clamp(12px, 1.8vw, 15px);

    text-decoration: none;
}
.navbar .right button:hover {
    background-color: white;
    color: black;
}
#navbarabout {
    margin-right: 1vw;
}
@media only screen and (min-width: 375px) {

    .navbar .left {

        padding-left: clamp(10px, 6%, 200px);
    
    }

    .navbar .right {

        padding-right: clamp(10px, 4%, 50px);

    }

}

@media only screen and (min-width: 402px) {
    .email {
        border-radius: 10px;
    }
}

main {
    display: block;

    text-align: center;

    background-color: #E6E6E6;

    margin-top: clamp(100px, 20vh, 2000px);
}

body {
    text-align: center;
}

.LeadingTitle {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 26px;

    margin-top: min(10%, 30px);
    margin-bottom: min(30px, 10%);

    
}

.container {
    background-color: white;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    position: relative;

    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 120%;

    padding-bottom: 20px;
}

.subcontainer {
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.emailcontainer {
    /* border: 1px solid red; */

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    width: 100%;
    font-size: min(18px, 100%);
} @media only screen and (min-width: 800px) {
    .emailcontainer {
        width: 40%;
    }
}

.emailcontainer p {
    padding-left: 10px;
    padding-right: 10px;
}

#officio {
    width: 90%;
    height: 75px;
}

#officio button {
    height: 100%;
    width: 100%;
    max-width: 400px;

    margin-left: -0%;

    text-transform: uppercase;
    font-variant: normal;
    font-size: 90%;
    font-family: 'Inter', sans-serif;
    padding-left: 1%;
    padding-right: 1%;

    overflow-wrap: break-word;
    word-wrap: normal;

    border: black solid 2px;
    border-radius: 10px;

    text-decoration: underline;

    background-color: white;
} @media only screen and (min-width: 800px) {
    #officio button {
        border-radius: 40px;
        width: 100%;
    }
}

#officio button h3 {
    text-decoration: none;

    margin: 10px;
}

#officio button h3:hover {
    text-decoration: underline;
}

.email {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    overflow: visible;
    overflow-wrap: break-word;

    padding: auto;

    width: 100%;
    max-width: 400px;
    
    padding-left: 0%;
    padding-right: 0%;

    color: white;
    background-color: black;
} @media only screen and (min-width: 500px) {
    .email p {
        margin-left: 0;
        font-size: clamp(5px, 120%, 20px);
    }
}
    
    @media only screen and (min-width: 800px) {
    .email {
        width: 80%;
        border-radius: 20px;
        margin-left: -0%;
    }

    .email p {
        margin-left: 0;
        font-size: 40px;
    }
} 
.email p {
    font-size: clamp(5px, 100%, 16px);
}

.mapcontainer {

    /* border: 1px solid lime; */

    min-height: 450px;
}

@media only screen and (min-width: 330px) {
    iframe {
        border-radius: 20px;
    }
}

@media only screen and (min-width: 800px) {

    .mapcontainer {
        margin-left: min(10px, 1%);
    }

    iframe {
        border-radius: 20px;
    }

}

.mapcontainer h4 {
    width: auto;
}

#ourbusinesshoursare {
    margin-top: 50px;
    margin-bottom: -15px;
}



h4 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
}

.socials {
    width: 100%;
}

.socials ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    width: 100%;

    margin: 0;
    padding: 0;

    list-style-type: none;
}

.socials ul li {
    margin: 10px;
}



#contactfooter {
    position: relative;
    margin-top: 40px;
} @media only screen and (min-height: 750px) {
    #contactfooter {
        position: absolute;
        bottom: 0;
    }
}
