:root {
  --steel-blue: #0085ca;
  --white: white;
  --black-2: #333;
  --black: black;
}

h2 {
  color: var(--steel-blue);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Bebas Neue, sans-serif;
  font-size: 4em;
  font-weight: 400;
  line-height: 1.2em;
}

h3 {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.2em;
}

h4 {
  color: var(--steel-blue);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-bottom: 20px;
  line-height: 1.75em;
}

.navbar {
  background-color: var(--white);
  padding-left: 25px;
  padding-right: 25px;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, .18);
}

.brand {
  width: 250px;
}

.nav-link {
  color: var(--black-2);
  font-family: Gothic A1, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
}

.nav-link:hover {
  color: var(--steel-blue);
}

.nav-link.phone {
  color: var(--steel-blue);
  font-weight: 800;
}

.nav-link.phone:hover {
  color: var(--black-2);
}

.nav-menu {
  margin-top: 4px;
}

.hero-section {
  height: 100vh;
  background-image: linear-gradient(108deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, 0) 77%), url('../images/guy-on-bike.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  align-items: center;
  padding-left: 5%;
  display: flex;
}

.div-block {
  width: auto;
  min-height: 50px;
  text-align: center;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 60px;
  display: flex;
}

.heading {
  color: var(--white);
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Bebas Neue, sans-serif;
  font-size: 7.45em;
  font-weight: 400;
  line-height: 1em;
}

.heading-2 {
  z-index: 100;
  color: var(--steel-blue);
  text-align: left;
  letter-spacing: 2px;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Bebas Neue, sans-serif;
  font-size: 3.2em;
  font-weight: 400;
  line-height: 1em;
  position: relative;
}

.hero-button-div {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 26px;
  display: flex;
}

.heading-3 {
  color: var(--white);
  text-align: left;
  margin-top: 14px;
  font-family: Gothic A1, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 30px;
}

.image {
  width: 550px;
  margin-top: -6px;
}

.test-section {
  min-height: 55vh;
  padding: 0;
  display: flex;
}

.image-4 {
  width: 800px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph {
  margin-bottom: 20px;
  font-family: Gothic A1, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.button-div {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 26px;
  display: flex;
}

.content-button {
  width: auto;
  min-width: 250px;
  border: 1px none var(--white);
  background-color: var(--steel-blue);
  background-image: linear-gradient(to bottom, var(--steel-blue), rgba(17, 46, 90, .66));
  text-align: center;
  border-radius: 5px;
  margin-right: 10px;
  padding: 18px 20px 15px;
  font-family: Gothic A1, sans-serif;
  font-size: 18px;
  line-height: 25px;
}

.content-button:hover {
  background-color: var(--black-2);
  background-image: none;
  border-style: none;
}

.doc-section {
  background-color: var(--white);
  background-image: url('../images/dr-newbolt-nobg-sml.png');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: contain;
  flex-direction: column;
  align-items: flex-end;
  padding: 150px 5%;
  display: flex;
}

.meet-div {
  width: 50%;
  min-height: 200px;
}

.awards-section {
  min-height: 50vh;
  padding: 5% 0;
}

.contact-section {
  background-color: var(--black);
  padding: 100px 0;
}

.form_wrapper {
  width: 45%;
}

.text_field {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, .4);
  font-family: Gothic A1, sans-serif;
  font-size: 16px;
}

.text_field:hover {
  border-color: rgba(255, 255, 255, .9);
}

.text_field::-ms-input-placeholder {
  color: rgba(255, 255, 255, .5);
}

.text_field::placeholder {
  color: rgba(255, 255, 255, .5);
}

.text_area {
  min-height: 100px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, .4);
  font-size: 1.1em;
}

.text_area:hover {
  border-color: rgba(255, 255, 255, .9);
}

.text_area::-ms-input-placeholder {
  color: rgba(255, 255, 255, .5);
  font-family: Gothic A1, sans-serif;
  font-size: 16px;
}

.text_area::placeholder {
  color: rgba(255, 255, 255, .5);
  font-family: Gothic A1, sans-serif;
  font-size: 16px;
}

.wrapper_div {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.wrapper_div.flex {
  width: 85%;
  max-width: 1280px;
  text-align: left;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.wrapper_div.flex._2 {
  width: 90%;
  max-width: 1600px;
  align-items: stretch;
  margin: 50px auto 100px;
}

.location_name {
  color: var(--steel-blue);
  margin-bottom: 5px;
  font-family: Gothic A1, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.location_div {
  width: 100%;
}

.locations_wrapper {
  width: 50%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.phone_link {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Gothic A1, sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.phone_link:hover {
  color: var(--steel-blue);
}

.locations_headline {
  width: 100%;
  color: var(--steel-blue);
  border-bottom: 1px solid #f6f6f6;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 15px;
  font-family: Bebas Neue, sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
}

.address_text {
  color: #fff;
  margin-bottom: 15px;
  font-family: Gothic A1, sans-serif;
  font-size: 16px;
}

.awards-wrapper {
  max-width: 90%;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.awards-wrapper._2 {
  justify-content: space-around;
  margin-top: 50px;
  margin-bottom: 0;
}

.doc-mobile-image, .mobile-phone-link {
  display: none;
}

.footer_text {
  color: #dcddde;
  text-align: center;
  margin-bottom: 10px;
  padding-left: 0;
  font-family: Gothic A1, sans-serif;
  font-size: 12px;
  line-height: 13px;
}

.top-line-white {
  color: var(--white);
  letter-spacing: 10px;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-left: 5px;
  font-family: Bebas Neue, sans-serif;
  font-size: 2em;
  font-weight: 400;
  line-height: 1.2em;
}

.body {
  font-family: Gothic A1, sans-serif;
  font-size: 16px;
  line-height: 1.75em;
}

.self-test-wrapper {
  justify-content: space-between;
  display: flex;
  width: 100%;
}

.st-text-div {
  width: 40%;
  background-color: rgba(0, 133, 202, .1);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 50px 30px;
  display: flex;
}

.st-placeholder {
  width: 60%;
  max-width: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.lasik-experience-section {
  min-height: 65vh;
  background-image: url('../images/young-active-woman.jpg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  justify-content: flex-end;
  align-items: center;
  padding: 5%;
  display: flex;
}

.lasik-experience-wrapper {
  width: 45%;
  background-color: rgba(255, 255, 255, .79);
  padding: 25px;
}

.lasik-50-50-section {
  background-color: rgba(0, 133, 202, .1);
  padding-top: 5%;
  padding-bottom: 5%;
}

.lasik-50-50-wrapper {
  width: 90%;
  max-height: 600px;
  max-width: 1600px;
  min-height: 500px;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-50 {
  width: 50%;
  background-color: var(--white);
  padding: 50px;
  display: flex;
  overflow: hidden;
}

.photo-50 {
  width: 50%;
  object-fit: cover;
  overflow: hidden;
}

.image-104 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-holder {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.p-less-marg {
  margin-bottom: 5px;
}

.p-small {
  font-size: .8em;
}

.candidate-section {
  min-height: 65vh;
  background-image: url('../images/guy-hiking.jpg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  justify-content: flex-start;
  align-items: center;
  padding: 5%;
  display: flex;
}

.candidate-wrapper {
  width: 45%;
  background-color: var(--white);
  background-image: linear-gradient(rgba(0, 133, 202, .1), rgba(0, 133, 202, .1));
  padding: 25px;
}

.happy-patient-photos {
  justify-content: space-between;
  display: flex;
}

.patient-photo {
  width: 16.7%;
  object-fit: cover;
  overflow: hidden;
}

.image-105 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials {
  min-height: 65vh;
  background-image: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url('../images/littlerock-ar-skyline.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 5%;
  padding-bottom: 5%;
  display: flex;
}

.testimonial-wrapper-div {
  width: 90%;
}

.h3-center-white {
  color: var(--white);
  text-align: center;
}

.h2-center {
  color: #0085ca;
  text-align: center;
}

.testimonial-holder {
  justify-content: space-between;
  margin-top: 50px;
  display: flex;
}

.testimonial-div {
  width: 32%;
  background-color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 15px 0;
  display: flex;
}

.image-106 {
  margin-bottom: 10px;
}

.award-div {
  width: 13%;
  height: auto;
  justify-content: center;
  align-items: center;
  display: flex;
}

.mobile-buttons {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 26px;
  display: none;
}

.button-mobile {
  width: auto;
  min-width: 250px;
  border: 1px none var(--white);
  background-color: var(--steel-blue);
  background-image: linear-gradient(to bottom, var(--steel-blue), rgba(17, 46, 90, .66));
  text-align: center;
  border-radius: 5px;
  margin-right: 10px;
  padding: 18px 20px 15px;
  font-family: Gothic A1, sans-serif;
  font-size: 18px;
  line-height: 25px;
}

.button-mobile:hover {
  background-color: var(--black-2);
  background-image: none;
  border-style: none;
}

.photo-50-comp-guy {
  width: 50%;
  object-fit: cover;
  overflow: hidden;
}

.location-5050 {
  justify-content: space-between;
  display: flex;
}

.location-48 {
  width: 48%;
}

.form-block {
  margin-top: 10px;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 3em;
  }

  .navbar {
    padding-left: 10px;
    padding-right: 0;
  }

  .nav-menu {
    background-color: var(--white);
  }

  .hero-section {
    height: 600px;
    background-position: 0 0, 20% 0;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 87px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .div-block {
    align-items: flex-start;
  }

  .heading {
    font-size: 4.6em;
  }

  .heading-2 {
    letter-spacing: 0;
    font-size: 2.2em;
  }

  .hero-button-div {
    flex-direction: column;
    justify-content: space-around;
    padding-left: 0;
  }

  .heading-3 {
    font-size: 1.2em;
  }

  .image {
    width: 415px;
  }

  .test-section {
    flex-direction: column;
    padding: 0 0 5%;
  }

  .image-4 {
    width: 95%;
  }

  .paragraph {
    font-size: 16px;
    line-height: 28px;
  }

  .content-button {
    font-size: 16px;
  }

  .content-button.marg {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .doc-section {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    padding: 5%;
  }

  .meet-div {
    width: 100%;
  }

  .awards-section {
    min-height: 300px;
    background-image: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5%;
    display: flex;
  }

  .contact-section {
    padding: 50px;
  }

  .form_wrapper {
    width: 100%;
  }

  .wrapper_div.flex._2 {
    margin-bottom: 52px;
  }

  .locations_wrapper {
    width: 100%;
    margin-bottom: 20px;
  }

  .address_text {
    margin-bottom: 20px;
  }

  .awards-wrapper {
    max-width: 100%;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .awards-wrapper._2 {
    margin-top: 20px;
  }

  .doc-mobile-image {
    width: 250px;
    height: 350px;
    float: right;
    background-image: url('../images/dr-newbolt-nobg-sml.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 30px;
    margin-left: 30px;
    display: block;
    box-shadow: 1px 1px 7px rgba(0, 0, 0, .19);
  }

  .top-line-white {
    font-size: 1.2em;
  }

  .self-test-wrapper {
    flex-direction: column;
  }

  .st-text-div {
    width: 100%;
  }

  .st-placeholder {
    width: 100%;
    padding-top: 20px;
  }

  .lasik-experience-section {
    min-height: 0;
    padding: 0%;
  }

  .lasik-experience-wrapper {
    width: auto;
    background-image: linear-gradient(to bottom, rgba(0, 133, 202, .1), rgba(0, 133, 202, .1)), linear-gradient(to bottom, var(--white), var(--white));
    padding: 5%;
  }

  .lasik-50-50-section {
    padding: 0%;
  }

  .lasik-50-50-wrapper {
    width: 100%;
    max-height: none;
  }

  .text-50 {
    padding: 25px;
  }

  .candidate-section {
    min-height: 0;
    padding: 0%;
  }

  .candidate-wrapper {
    width: auto;
    padding: 5%;
  }

  .testimonials {
    padding-bottom: 4%;
  }

  .testimonial-holder {
    flex-direction: column;
    margin-top: 0;
  }

  .testimonial-div {
    width: 100%;
    margin-bottom: 20px;
  }

  .image-106 {
    max-width: 30px;
  }

  .award-div {
    width: 11.5%;
    height: auto;
  }

  .menu-button {
    background-color: var(--white);
  }

  .menu-button.w--open {
    background-color: var(--steel-blue);
  }

  .mobile-buttons {
    flex-direction: column;
    justify-content: space-around;
    padding-left: 0;
  }

  .button-mobile {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 1em;
  }

  .navbar {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-section {
    height: 500px;
    background-image: linear-gradient(76deg, rgba(0, 0, 0, .72) 13%, rgba(0, 0, 0, .51) 63%, rgba(0, 0, 0, .19)), url('../images/guy-on-bike.jpg');
    background-position: 0 0, 100% 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    align-items: flex-end;
    padding: 2%;
  }

  .div-block {
    margin-top: 20px;
  }

  .heading {
    font-size: 4.8em;
    line-height: 70px;
  }

  .heading-2 {
    font-size: 2.3em;
    line-height: 50px;
  }

  .hero-button-div {
    flex-direction: column;
    align-items: stretch;
    margin-top: 7px;
    padding-left: 0;
    display: none;
  }

  .heading-3 {
    margin-bottom: 0;
    font-size: 16px;
  }

  .image {
    width: 350px;
    margin-top: 0;
  }

  .test-section {
    padding: 0 0 5%;
  }

  .image-4 {
    width: 100%;
  }

  .content-button {
    width: 100%;
    min-width: 0;
    margin-bottom: 11px;
  }

  .doc-section {
    padding: 50px 25px;
  }

  .awards-section {
    min-height: 200px;
  }

  .contact-section {
    padding-bottom: 125px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .wrapper_div.flex {
    width: 90%;
  }

  .wrapper_div.flex._2 {
    margin-top: 0;
  }

  .location_div {
    width: 100%;
    margin-bottom: 31px;
  }

  .locations_wrapper {
    margin-bottom: 14px;
  }

  .locations_headline {
    font-size: 50px;
    line-height: 50px;
  }

  .mobile-phone-link {
    display: none;
  }

  .footer_text {
    padding-left: 0;
  }

  .st-text-div {
    padding: 5% 5% 2%;
  }

  .lasik-50-50-wrapper {
    flex-direction: column;
  }

  .text-50, .photo-50 {
    width: 100%;
  }

  .award-div {
    width: 19%;
  }

  .mobile-buttons {
    z-index: 2000;
    flex-direction: column;
    align-items: stretch;
    margin-top: 7px;
    padding-left: 0;
    display: flex;
    position: fixed;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .button-mobile {
    width: 100%;
    min-width: 0;
    border-radius: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .photo-50-comp-guy {
    width: 100%;
    display: none;
  }

  .location-5050 {
    flex-direction: column;
  }

  .location-48 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 2em;
  }

  h4 {
    font-size: 1em;
  }

  .navbar {
    padding-left: 0;
  }

  .brand {
    width: 180px;
    margin-top: 5px;
  }

  .hero-section {
    height: 600px;
    justify-content: center;
    padding-bottom: 5%;
  }

  .div-block {
    align-items: center;
  }

  .heading {
    text-align: center;
    font-size: 3.4em;
    line-height: 1em;
  }

  .heading-2 {
    text-align: center;
    margin-bottom: 5px;
    font-size: 1.6em;
    line-height: 35px;
  }

  .hero-button-div {
    max-width: 300px;
  }

  .heading-3 {
    width: auto;
    max-width: 300px;
    text-align: center;
    font-size: 18px;
    line-height: 25px;
  }

  .image {
    width: 300px;
  }

  .test-section {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 5%;
  }

  .image-4 {
    width: 100%;
  }

  .paragraph {
    font-size: 15px;
    line-height: 27px;
  }

  .button-div {
    flex-direction: column;
  }

  .content-button {
    background-image: linear-gradient(167deg, var(--steel-blue), rgba(17, 46, 90, .66));
    padding-top: 12px;
    padding-bottom: 10px;
    font-size: 15px;
  }

  .doc-section {
    padding-top: 0;
    padding-left: 5%;
    padding-right: 5%;
  }

  .awards-section {
    min-height: 125px;
  }

  .contact-section {
    padding: 5% 0 100px;
  }

  .wrapper_div.flex {
    width: 85%;
  }

  .wrapper_div.flex._2 {
    margin-top: 20px;
    margin-bottom: 9px;
  }

  .location_name {
    font-size: 17px;
  }

  .location_div {
    margin-bottom: 20px;
  }

  .locations_wrapper {
    margin-bottom: 0;
  }

  .locations_headline {
    font-size: 37px;
    line-height: 40px;
  }

  .address_text {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .awards-wrapper {
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin-bottom: 0;
    display: flex;
  }

  .awards-wrapper._2 {
    margin-top: 20px;
  }

  .doc-mobile-image {
    width: 100%;
    margin-left: 0;
  }

  .mobile-phone-link {
    width: 100%;
    height: 50px;
    background-color: var(--steel-blue);
    justify-content: center;
    align-items: center;
    padding: 10px 8px 8px;
    text-decoration: none;
    display: flex;
    position: fixed;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .text-block {
    color: var(--white);
    text-align: center;
    font-family: Gothic A1, sans-serif;
    font-size: 20px;
  }

  .footer_text {
    padding-left: 0;
    font-size: 11px;
  }

  .top-line-white {
    letter-spacing: 7px;
    font-size: 1em;
  }

  .text-50 {
    padding: 5%;
  }

  .testimonials {
    background-image: linear-gradient(to bottom, null, null), url('../images/littlerock-ar-skyline.jpg');
    background-attachment: scroll, scroll;
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .award-div {
    width: 18%;
    margin: 0;
  }

  .mobile-buttons {
    max-width: none;
  }

  .button-mobile {
    background-image: linear-gradient(167deg, var(--steel-blue), rgba(17, 46, 90, .66));
    padding-top: 12px;
    padding-bottom: 10px;
    font-size: 15px;
  }
}


