* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

div {
    padding: 10px;
}

.flex-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border-top: 2px solid orange;
}

.flex-container h1 {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 120%;
    text-align: center;
}

#header-box {
    border-top: none;
}

#header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#header-img {
    width: 40vw;
    max-width: 300px;
}

#nav-bar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 60vw;
}

#nav-bar li {
    display: inline;
    list-style: none;
    padding: 5px;
}

a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
}

#phone {
    font-weight: 900;
}

.section-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

i {
    padding-top: 30px;
}

.contact-form {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
}

label {
    display: flex;
    flex-direction: column;
    margin: 0.5rem 0;
}

form {
    width: 60vw;
    max-width: 500px;
    min-width: 300px;
    margin: 0 auto;
    padding-bottom: 2em;
  }
  
  fieldset {
    border: none;
    padding: 2rem 0;
    border-bottom: 3px solid orange;
  }  

  input, textarea, select {
    width: 100%;
    /* margin: 10px 0 0 0; */
    margin-top: 10px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    min-height: 2em;
  }

input[type="submit"] {
    display: block;
    width: 60%;
    min-width: 300px;
    margin: 1em auto;
    height: 2em;
    font-size: 1.1rem;
    background-color: white;
    border-color: black;
}

.inner-block {
    display: flex;
    flex-direction: row;
    padding-top: 30px;
}

.inner-column-block {
    display: flex;
    flex-direction: column;
    padding: 30px;
    justify-content: center;
}

h1 {
    display: block;
    padding-bottom: 5px;
    font-size: 150%;
}

h2 {
    font-size: medium;
    font-weight: bolder;
}

p {
    display: block;
    max-width: 75vw;
    padding-bottom: 5px;
}

img {
    height: auto;
    width: 100%;
}

.body-img {
    max-width: 500px;
    object-fit: contain;
}

ul {
    padding-left: 10px;
}

li {
    padding-top: 5px;
}


@media only screen and (max-width: 720px) {
    .inner-block {
        display: flex;
        flex-direction: column;
        padding-top: 30px;
    }
    .section-block {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    .inner-column-block {
        display: flex;
        flex-direction: column;
        padding: 30px;
        align-items: center;
    }
    
    #nav-bar li {
        display: flex;
        min-height: 50px;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
  }