html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 12px;
    font-family: serif;
    color: #101357;
    text-decoration: none;
  }
  
  *, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  }

body {
    width: 100%;
    background-color: #dce1e3;
}

.main-container {
    width: 100%;
    margin: auto;
    padding-top: 1rem;
    /* height: 100vh; */
}

.biz-name {
    text-align: center;
    font-size: 4rem;
    padding: 1rem 0 0;
    
}

.tagline {
  font-style: italic;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  text-align: center;
}

.top-image {
    display: flex;
    /* width: 80%; */
    justify-content: center;
    margin: auto;
}

.top-image img {
    width: 100%;
    /* height: auto;
    margin: auto; */
}

.caption {
    display: none;
}

.info {
    text-align: center;
    font-size: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    padding: 1rem;
}

.desktop {
  display: none;
}

.ccb {
  font-style: italic;
  padding-top: 1rem;
  font-size: 1rem;
}

.bottom-images {
    display: none;
    /* width: 80%; */
    justify-content: space-between;
    margin: auto;
}

.bottom-images div {
    width: 48%;
}

.bottom-images img {
    display: block;
}

.contact-form-header {
  font-size: 1.75rem;
  font-family: Arial, Helvetica, sans-serif;
  color: red;
  text-align: center;
  padding: 1rem 1.5rem;
}

form {
    margin: auto;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    width: 90%;
    height: 500px;
}
#fs-frm input,
#fs-frm select,
#fs-frm textarea,
#fs-frm fieldset,
#fs-frm optgroup,
#fs-frm label,
#fs-frm #card-element:disabled {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  border: none;
  border-radius: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}
#fs-frm label,
#fs-frm legend,
#fs-frm ::placeholder {
  font-size: .825rem;
  margin-bottom: .5rem;
  padding-top: .2rem;
  display: flex;
  align-items: baseline;
}

/* border, padding, margin, width */
#fs-frm input,
#fs-frm select,
#fs-frm textarea,
#fs-frm #card-element {
  border: 1px solid rgba(0,0,0,0.2);
  background-color: rgba(255,255,255,0.9);
  padding: .75em 1rem;
  margin-bottom: 1.5rem;
}
#fs-frm input:focus,
#fs-frm select:focus,
#fs-frm textarea:focus {
  background-color: white;
  outline-style: solid;
  outline-width: thin;
  outline-color: gray;
  outline-offset: -1px;
}
#fs-frm [type="text"],
#fs-frm [type="email"] {
  width: 100%;
}
#fs-frm [type="button"],
#fs-frm [type="submit"],
#fs-frm [type="reset"] {
  width: auto;
  cursor: pointer;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;

}

#fs-frm [type="submit"] {
  /* align-self: center; */
  margin: auto;
  width: 25%;
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: auto;
  /* width: 25%; */
  font-size: 1.55rem;
  color: red;
  font-family: Arial, Helvetica, sans-serif;
}

#fs-frm [type="button"]:focus,
#fs-frm [type="submit"]:focus,
#fs-frm [type="reset"]:focus {
  outline: none;
}
#fs-frm [type="submit"],
#fs-frm [type="reset"] {
  margin-bottom: 1.5rem;
}
#fs-frm select {
  text-transform: none;
}

#fs-frm [type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  display: inline-block;
  width: auto;
  margin: 0 .5em 0 0 !important;
}

#fs-frm [type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

/* address, locale */
#fs-frm fieldset.locale input[name="city"],
#fs-frm fieldset.locale select[name="state"],
#fs-frm fieldset.locale input[name="postal-code"] {
  display: inline;
}
#fs-frm fieldset.locale input[name="city"] {
  width: 52%;
}
#fs-frm fieldset.locale select[name="state"],
#fs-frm fieldset.locale input[name="postal-code"] {
  width: 20%;
}
#fs-frm fieldset.locale input[name="city"],
#fs-frm fieldset.locale select[name="state"] {
  margin-right: 3%;
}

@media only screen and (min-width: 768px) {
    /* For desktop: */
    html {
        font-size: 16;
    }

    .main-container {
        width: 57%;
        margin-bottom: 2rem;
    }

    .mobile {
      display: none;
    }

    .desktop {display: block;}

    .biz-name {
        font-size: 5rem;
        margin-top: 1rem;
    }

    .tagline {
      font-size: 2rem;
    }

    .services {
      font-size: 2.5rem;
      width: 80%;
      margin: auto;
      padding-top: 2rem;
      padding-bottom: 1.25rem;
    }

    .ccb {
      font-size: 1.5rem;
      margin-bottom: 2rem;
    }

    p {
        font-size: 2rem;
    }

    .bottom-images {
        display: flex
    }

    .top-image,
    .bottom-images div {
        display: flex;
        flex-direction: column;

    }

    .caption {
        /* display: block; */
        display: none;
        font-size: 1.5rem;
        padding-top: .5rem
    }

    .contact-form-header {
      padding-top: 2.5rem;
      font-size: 2.25rem;
    }


    form {
        width: 100%;
        height: 500px;
    }

    #fs-frm label,
    #fs-frm legend,
    #fs-frm ::placeholder {
      font-size: 1.5rem;
      margin-bottom: .5rem;
      padding-top: 0;
      /* display: flex; */
      /* align-items: baseline; */
    }

    #fs-frm [type="submit"] {
      /* align-self: center; */
      /* display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      margin: auto; */
      /* width: 25%; */
      /* height: 10%; */
      font-size: 2rem;
      /* color: red */
    }
  }