:root {
  --black-2: black;
  --white: white;
  --black: #333;
  --black-3: #2e1f2d;
  --dark-slate-blue: #503a4e;
  --grey: #777;
  --midnight-blue: #01222e;
  --white-smoke: #f1f1f1;
  --steel-blue: #007ca5;
  --dark-slate-grey: #01465e;
  --alice-blue: #daecf3;
}

h1 {
  color: var(--black-2);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 4em;
  font-weight: 700;
  line-height: 1.2em;
}

h2 {
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 3em;
  font-weight: 400;
  line-height: 1.2em;
}

h3 {
  color: #ffffffa1;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.2em;
}

h4 {
  color: var(--black-3);
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.2em;
}

p {
  margin-bottom: 20px;
}

.body {
  color: var(--black);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.75em;
}

.hero {
  background-image: linear-gradient(243deg, #0000 38%, #ffffffd9 74%), url('../images/guy-at-beach.jpg');
  background-position: 0 0, 0%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  align-items: center;
  height: 100vh;
  padding: 100px 75px;
  display: flex;
}

.hero-wrapper-div {
  flex-direction: column;
  align-items: stretch;
  width: 45%;
  display: flex;
}

.button-div {
  align-items: center;
  display: flex;
}

.button {
  background-color: var(--black-2);
  color: var(--white);
  text-transform: uppercase;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  padding: 15px 20px;
  line-height: 1.2em;
}

.button:hover {
  background-color: var(--dark-slate-blue);
}

.navbar {
  background-color: var(--grey);
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 0 0 20px 7px #00000012;
}

.brand {
  width: 175px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
}

.nav-link {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.2em;
}

.nav-link:hover {
  color: #ffffff7a;
}

.nav-link.w--current {
  color: #ffffff73;
}

.schedule-button {
  background-color: var(--black-2);
  color: var(--white);
  text-transform: uppercase;
  background-image: url('../images/schedule-icon-white_1schedule-icon-white.png');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 25px;
  padding: 15px 20px 15px 45px;
  line-height: 1.2em;
}

.schedule-button:hover {
  background-color: var(--dark-slate-blue);
}

.schedule-button.margin {
  margin-right: 10px;
}

.schedule-button.hover-outline {
  border: 1px solid #000;
}

.schedule-button.hover-outline:hover {
  border: 1px solid var(--white);
}

.self-test-button {
  background-color: var(--black-2);
  color: var(--white);
  text-transform: uppercase;
  background-image: url('../images/self-test-icon-white_1self-test-icon-white.png');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 25px;
  padding: 15px 20px 15px 45px;
  line-height: 1.2em;
}

.self-test-button:hover {
  background-color: var(--dark-slate-blue);
}

.self-test-button.hover-outline {
  border: 1px solid #000;
}

.self-test-button.hover-outline:hover {
  border-color: var(--white);
}

.self-test-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.self-test-wrapper-div {
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.big-self-test-text {
  color: var(--midnight-blue);
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.5em;
  line-height: 1.2em;
}

.image {
  width: 100%;
  max-width: 1280px;
}

.what-is-section {
  background-image: linear-gradient(153deg, var(--black-3), var(--dark-slate-blue));
  padding-top: 100px;
  padding-bottom: 100px;
}

.what-is-wrapper-div {
  justify-content: space-between;
  width: 90%;
  min-height: 400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

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

.par-white {
  color: var(--white);
}

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

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

.left {
  text-align: left;
}

.about-us-section {
  background-color: var(--white-smoke);
  background-image: linear-gradient(#f1f1f1f2, #f1f1f1f2), url('../images/katzen-big-icon.png');
  background-position: 0 0, -10%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 50%;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.about-us-wrapper-div {
  flex-direction: column;
  align-items: flex-start;
  width: 90%;
  max-width: none;
  display: flex;
}

.location-section {
  background-image: linear-gradient(131deg, var(--black-3), var(--dark-slate-blue));
  padding-top: 100px;
  padding-bottom: 100px;
  font-size: 1em;
  line-height: 1.2em;
}

.location-wrapper-div {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

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

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

.location-div {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 24%;
  display: flex;
}

.location-icon {
  width: 40px;
  height: auto;
  margin-bottom: 20px;
}

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

.footer-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.footer-wrapper-div {
  justify-content: space-between;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-div-30 {
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
  display: flex;
}

.brand-2 {
  max-width: 250px;
  margin-bottom: 30px;
}

.footer-text {
  margin-bottom: 10px;
}

.link {
  color: var(--dark-slate-blue);
  text-decoration: none;
}

.link:hover {
  color: var(--grey);
}

.footer-phone {
  border: 2px solid var(--dark-slate-blue);
  color: var(--dark-slate-blue);
  text-transform: uppercase;
  background-color: #0000;
  margin-bottom: 20px;
  padding: 12px 30px;
}

.footer-phone:hover {
  background-color: var(--dark-slate-blue);
  color: var(--white);
}

.footer-form-div-65 {
  width: 65%;
}

.nav-menu {
  padding-top: .5%;
}

.mobile-hero-img {
  display: none;
}

.mobile-buttons {
  align-items: center;
  display: none;
}

.mobile-schedule {
  background-color: var(--black-2);
  color: var(--white);
  text-transform: uppercase;
  background-image: url('../images/schedule-icon-white_1schedule-icon-white.png');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 25px;
  padding: 15px 20px 15px 45px;
  line-height: 1.2em;
}

.mobile-schedule:hover {
  background-color: var(--steel-blue);
}

.mobile-self-test {
  background-color: var(--black-2);
  color: var(--white);
  text-transform: uppercase;
  background-image: url('../images/self-test-icon-white_1self-test-icon-white.png');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 25px;
  padding: 15px 20px 15px 45px;
  line-height: 1.2em;
}

.mobile-self-test:hover {
  background-color: var(--steel-blue);
}

.cataract-symptoms-section {
  justify-content: space-between;
  min-height: 65vh;
  display: flex;
}

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

.symptom-text-div {
  background-color: var(--black-3);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding: 50px;
  display: flex;
}

.lens-types-section {
  background-color: #0000;
  padding-top: 100px;
  padding-bottom: 50px;
}

.lens-options-holder {
  justify-content: space-between;
  width: 85%;
  min-height: 300px;
  margin-bottom: 50px;
  display: flex;
}

.lens-options-holder.top {
  width: 85%;
  margin-top: 50px;
}

.left-lens {
  float: left;
  width: auto;
  height: 199px;
  margin-bottom: 10px;
  margin-right: 20px;
}

.lens-types-wrapper-div {
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.lens-option-div {
  align-items: center;
  width: 48%;
  display: block;
}

.testimonial-wrapper {
  width: 90%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.slider-2 {
  background-color: #0000;
}

.testimonial-section {
  background-image: linear-gradient(#000000d9, #000000d9), url('../images/aerial-baltimore.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  min-height: 65vh;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.testimonial-div {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
  padding-left: 75px;
  padding-right: 75px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.testimonial-name {
  color: #fff;
  text-align: center;
  font-style: normal;
  font-weight: 700;
}

.white-center-2 {
  color: #fff;
}

.testimonials {
  color: #fff;
  text-align: center;
  font-style: italic;
}

.center-white {
  color: var(--white);
  text-align: center;
  font-size: 1.2em;
}

.hero-buttons {
  align-items: center;
  display: flex;
}

.lens-wrapper {
  width: 85%;
  min-height: auto;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

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

.list-holder {
  margin-bottom: 15px;
}

.list {
  color: var(--white);
}

.list-item {
  margin-bottom: 5px;
}

.doc-section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 5%;
  padding-bottom: 5%;
  display: flex;
}

.doc-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: none;
  min-height: auto;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.doc-holder {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 90%;
  display: flex;
}

.doc-bio-wrapper {
  background-color: #503a4e;
  justify-content: space-between;
  min-height: 325px;
  margin-top: 20px;
  padding: 15px;
  display: flex;
}

.doc-text-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 73%;
  padding: 10px 0 10px 20px;
  display: flex;
}

.image-4 {
  object-fit: cover;
  width: auto;
  height: auto;
  max-height: 300px;
}

.doc-photo-wrap-barratt {
  z-index: 10;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 25%;
  max-height: none;
  padding: 10px;
  display: flex;
  position: static;
  inset: 0% auto 0% 0%;
  overflow: hidden;
}

.white-2 {
  color: #fff;
  text-align: left;
}

.left-white {
  color: #fff;
  text-align: left;
  font-size: 2em;
}

.doc-photo-wrap {
  z-index: 10;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 25%;
  max-height: none;
  padding: 10px;
  display: flex;
  position: static;
  inset: 0% auto 0% 0%;
  overflow: hidden;
}

.doc-photo-wrap.mobile-barratt {
  display: none;
}

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

  h2 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.5em;
  }

  h4 {
    font-size: 1.2em;
  }

  .hero {
    background-image: linear-gradient(0deg, var(--white), #fff0 68%, #fff0), url('../images/guy-at-beach.jpg');
    background-position: 0 0, 90%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    align-items: flex-end;
    height: 775px;
    padding: 20px;
  }

  .hero-wrapper-div {
    width: auto;
  }

  .button-div {
    flex-direction: row;
    align-items: flex-start;
  }

  .brand {
    width: 150px;
  }

  .nav-link {
    color: var(--grey);
  }

  .nav-link:hover {
    color: #7777778c;
  }

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

  .what-is-wrapper-div {
    flex-direction: column;
  }

  .text-48 {
    width: 100%;
  }

  .photo-48 {
    width: 100%;
    margin-top: 20px;
  }

  .about-us-section {
    background-image: linear-gradient(#f1f1f1f2, #f1f1f1f2), url('../images/katzen-big-icon.png');
    background-position: 0 0, 50%;
    background-size: auto, contain;
  }

  .location-holder {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

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

  .footer-wrapper-div {
    flex-direction: column;
  }

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

  .footer-form-div-65 {
    width: 100%;
  }

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

  .icon {
    color: var(--white);
  }

  .menu-button, .menu-button.w--open {
    background-color: #0000;
  }

  .mobile-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .heading {
    margin-bottom: 15px;
  }

  .cataract-symptoms-section {
    flex-direction: column;
  }

  .symptom-photo-60 {
    width: 100%;
  }

  .symptom-text-div {
    width: 100%;
    padding: 100px 5%;
  }

  .lens-options-holder {
    flex-direction: column;
  }

  .lens-options-holder.top {
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .left-arrow {
    display: none;
  }

  .testimonial-section {
    min-height: 0;
  }

  .testimonial-div {
    padding-left: 0;
    padding-right: 0;
  }

  .right-arrow {
    display: none;
  }

  .hero-buttons {
    flex-direction: row;
    align-items: flex-start;
  }

  .doc-bio-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .doc-text-left {
    width: 100%;
    padding: 0%;
  }

  .doc-photo-wrap-barratt {
    width: 40%;
    margin-bottom: 20px;
    display: none;
    position: static;
  }

  .doc-photo-wrap {
    width: 40%;
    margin-bottom: 20px;
    padding: 0;
    position: static;
  }

  .doc-photo-wrap.mobile-barratt {
    padding: 0;
    display: flex;
  }
}

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

  h2 {
    font-size: 1.8em;
  }

  .hero {
    height: 500px;
    padding: 40px;
  }

  .hero-wrapper-div {
    width: 70%;
  }

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

  .brand {
    width: 100px;
  }

  .schedule-button.margin.hover-outline {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .self-test-section, .what-is-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about-us-section {
    min-height: 0;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .location-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

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

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

  .footer-section {
    padding-top: 50px;
    padding-bottom: 125px;
  }

  .menu-button {
    padding: 10px;
  }

  .mobile-buttons {
    z-index: 2000;
    align-items: stretch;
    display: flex;
    position: fixed;
    inset: auto 0% 0%;
  }

  .mobile-schedule {
    text-align: center;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
  }

  .mobile-schedule:hover {
    background-color: var(--dark-slate-blue);
  }

  .mobile-self-test {
    text-align: center;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
  }

  .mobile-self-test:hover {
    background-color: var(--dark-slate-blue);
  }

  .heading {
    font-size: 2.5em;
  }

  .symptom-text-div {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .lens-types-section {
    padding-top: 50px;
  }

  .lens-options-holder {
    margin-bottom: 0;
  }

  .left-lens {
    height: 150px;
  }

  .testimonial-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-buttons {
    display: none;
  }

  .doc-text-left {
    width: 100%;
    padding: 0%;
  }

  .doc-photo-wrap-barratt, .doc-photo-wrap {
    width: 35%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    color: var(--white);
    font-size: 2em;
  }

  h2 {
    font-size: 1.65em;
  }

  h3 {
    font-size: 1.2em;
  }

  .hero {
    flex-direction: column;
    align-items: flex-end;
    height: auto;
    padding: 10% 0 0;
  }

  .hero-wrapper-div {
    background-color: var(--black-3);
    width: 100%;
    padding: 10px;
  }

  .brand {
    width: 100px;
  }

  .schedule-button {
    text-align: center;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .schedule-button.margin {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    padding-left: 20px;
  }

  .self-test-button {
    text-align: center;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    padding-left: 20px;
  }

  .about-us-section {
    background-image: linear-gradient(#0000, #0000);
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .footer-section {
    padding-bottom: 125px;
  }

  .brand-2 {
    max-width: 200px;
  }

  .menu-button {
    padding: 13px;
  }

  .mobile-hero-img {
    display: block;
  }

  .mobile-buttons {
    z-index: 1000;
    align-items: stretch;
    position: fixed;
    inset: auto 0% 0%;
  }

  .mobile-schedule {
    background-color: var(--dark-slate-blue);
    text-align: center;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .mobile-schedule:hover {
    background-color: var(--black-2);
    color: var(--white);
  }

  .mobile-self-test {
    text-align: center;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    padding-left: 20px;
  }

  .heading {
    font-size: 2em;
  }

  .left-lens {
    height: 100px;
  }

  .doc-photo-wrap-barratt {
    width: 100%;
  }

  .left-white {
    font-size: 1.5em;
  }

  .doc-photo-wrap {
    width: 100%;
  }
}


