@font-face {
  font-family: Futuratot Medi;
  src: url('../fonts/FuturaTOT-Medi.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Futuratot;
  src: url('../fonts/FuturaTOT-Bold.otf') format("opentype"), url('../fonts/FuturaTOT-ExtrBold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Futuratot Demi;
  src: url('../fonts/FuturaTOT-Demi.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Futuratot Book;
  src: url('../fonts/FuturaTOT-Book.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Futuratot Ligh;
  src: url('../fonts/FuturaTOT-Ligh.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #f2812c;
  --darker-green: #008582;
  --black: #000;
  --green: #00b2ae;
  --red: #eb4873;
  --white: white;
  --light-green: #88f3f1;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
  display: grid;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

body {
  color: #333;
  font-family: DM Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.2rem;
}

h1 {
  color: var(--orange);
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 4rem;
  font-weight: 200;
  line-height: 4.2rem;
}

h2 {
  color: var(--darker-green);
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: 200;
  line-height: 3.2rem;
}

h3 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 200;
  line-height: 2.2rem;
}

h4 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4rem;
}

h5 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2rem;
}

p {
  margin-bottom: 30px;
  line-height: 1.7rem;
}

a {
  color: var(--green);
  text-decoration: underline;
}

a:hover {
  color: var(--red);
}

ul {
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 20px;
  line-height: 1.6rem;
}

li {
  margin-bottom: 10px;
}

.navbar {
  z-index: 1000;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 0 2px 4px #0003;
}

.logo {
  width: 250px;
  margin-right: auto;
}

.navlink {
  color: var(--darker-green);
  text-transform: none;
  border-radius: 5px;
  padding-bottom: 20px;
  padding-left: 12px;
  padding-right: 12px;
  font-family: DM Sans, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.navlink:hover {
  background-image: linear-gradient(124deg, var(--orange), var(--red));
  color: var(--white);
}

.hero_section {
  height: 100svh;
}

.hero_slider {
  background-color: #ddd0;
  height: 100%;
}

.hero_slider_arrow {
  color: var(--white);
  width: 50px;
  font-size: .9rem;
}

.hero_slide_nav {
  display: none;
}

.slide1 {
  overflow: visible;
}

.slider_img_div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.slide_img_overlay {
  z-index: 10;
  background-color: #0000003d;
  background-image: linear-gradient(#0000 32%, #00000070 62%, #00000026);
  position: absolute;
  inset: 0%;
}

.slide_tagline_wrapper {
  z-index: 50;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 52% 0% auto;
}

.main_tagline1 {
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 1px 1px 1px #0003;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: DM Sans, sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
}

.main_tagline2 {
  color: var(--white);
  text-shadow: 1px 1px 1px #0003;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 2.2rem;
  font-weight: 200;
  line-height: 2.4rem;
}

.welcome_section {
  padding: 5% 10%;
}

.dos_columns {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding: 0;
  display: grid;
}

.dos_columns.promise {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 10%;
  display: grid;
}

.welcome_header_wrapper {
  height: 400px;
  margin-bottom: 10%;
  position: relative;
}

.welcome_hedline_div {
  background-color: #00464400;
  background-image: none;
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 52%;
  height: 400px;
  padding: 2% 5% 2% 10%;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.welcome_headline {
  color: var(--orange);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 40px;
  margin-left: -128px;
  font-family: DM Sans, sans-serif;
  font-size: 6rem;
  font-weight: 200;
  line-height: 5rem;
}

.welcome_headline._2 {
  margin-bottom: 15%;
}

.welcome_subheadline {
  color: var(--darker-green);
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 2rem;
  font-weight: 200;
  line-height: 2.2rem;
}

.span-color {
  color: var(--red);
  font-size: 3rem;
  font-weight: 500;
  line-height: 2.2rem;
}

.welcome_text_cell {
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0%;
  padding-right: 5%;
}

.welcome_text_cell._2 {
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  padding-left: 0%;
}

.p_nomargin {
  margin-bottom: 0;
}

.welcome_text2 {
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 200;
  line-height: 2.2rem;
}

.welcome_text {
  font-size: 1.4rem;
  font-weight: 200;
  line-height: 2.2rem;
}

.promise_wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}

.red_dot_div {
  background-color: var(--red);
  border-radius: 20px;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.orange_line_div {
  background-color: var(--orange);
  flex: 0 auto;
  width: 25px;
  height: 1px;
  margin-right: 20px;
}

.promise_text {
  width: 75%;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.5rem;
}

.promise_content_cell {
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0%;
}

.dr_sepulveda_img {
  flex: none;
  height: 600px;
  margin-top: -88px;
  margin-left: 0;
}

.doc_img_cell {
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0%;
}

.vision_age_section {
  color: var(--white);
  background-color: #5a1628;
  background-image: none;
  padding: 10%;
}

.vision_age_main_grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  padding: 0;
  display: grid;
}

.hp_headline {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: 200;
  line-height: 2.8rem;
}

.hp_headline.cataract, .hp_headline.orange {
  color: var(--orange);
}

.hp_headline.black {
  color: var(--black);
}

.hp_headline.inner {
  color: var(--orange);
}

.vision_age_grid {
  flex: 1;
  width: 100%;
  padding: 0;
}

.vision_wrapper_cell {
  justify-content: center;
  align-items: flex-start;
  max-height: 350px;
}

.vision_cell {
  text-align: center;
  background-color: #00000040;
  border-radius: 10px;
  justify-content: space-evenly;
  align-items: center;
  padding: 10% 13px 15%;
}

.button {
  background-color: var(--darker-green);
  background-image: linear-gradient(124deg, var(--red), var(--orange));
  text-transform: uppercase;
  border-radius: 10px;
  padding: 13px 32px;
  color: #fff !important;
  text-decoration: none !important;
}

.button:hover {
  color: var(--white);
  background-image: none;
}

.button.white {
  border: 1px solid var(--white);
  background-color: #fff0;
  background-image: none;
}

.button.white:hover {
  color: var(--black) !important;
  background-color: #fff;
}

.age_number {
  background-image: linear-gradient(170deg, var(--orange), var(--red));
  letter-spacing: -1px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 10px;
  font-size: 3.45rem;
  font-weight: 900;
  line-height: 4rem;
}

.age_text {
  margin-bottom: 5px;
  font-size: 1.1rem;
  line-height: 1.6rem;
}

.brand_promise_wrapper {
  flex-flow: column;
  width: 45%;
  display: flex;
  position: absolute;
  inset: 15% 0% auto auto;
}

.cataract_section {
  color: #fff;
  background-color: #002d2c;
  height: 900px;
  padding: 0%;
  position: relative;
}

.cataract_img_div {
  width: 60%;
  height: 900px;
  margin-left: -5%;
  overflow: hidden;
}

.cataract_img {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
}

.cataract_content_div {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 42%;
  padding-top: 0%;
  display: flex;
  position: absolute;
  inset: 0% 8% 0% auto;
}

.cataract_list {
  margin-bottom: 40px;
  font-size: 1.1rem;
  font-weight: 200;
  line-height: 1.8rem;
}

.cataract_callout_wrapper {
  z-index: 30;
  background-image: radial-gradient(circle farthest-corner at 50% 0%, var(--green), var(--darker-green));
  text-align: center;
  border-radius: 400px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 350px;
  padding: 3%;
  display: flex;
  position: absolute;
  bottom: -12%;
  left: 15%;
  right: auto;
  box-shadow: 0 7px 30px 7px #00000026;
}

.cataract_callout_headline {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 200;
  line-height: 2.2rem;
}

.cataract_callout_headline.small {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 200;
}

.cataract_callout_text {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6rem;
}

.callouts_section {
  padding: 10% 10% 7%;
}

.rle_callout_grid {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.rle_img {
  height: 500px;
}

.rle_img_cell {
  justify-content: flex-start;
  align-items: flex-end;
}

.rle_callout_cell {
  justify-content: center;
  align-items: flex-start;
}

.dryeye_grid {
  width: 80%;
  margin-top: 0%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.gryeye_content_cell {
  justify-content: center;
  align-items: flex-start;
  padding-left: 5%;
}

.dryeye_img_cell {
  justify-content: center;
  align-items: flex-start;
}

.callout_section {
  background-color: #0000000d;
  border-radius: 0;
  margin-left: 0%;
  margin-right: 0%;
  padding: 5% 10%;
}

.wrapper_div {
  text-align: left;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.wrapper_div.center {
  text-align: center;
  width: 100%;
}

.callout_grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 5%;
  padding: 0;
  display: grid;
}

.callout_cell {
  background-color: #0000000d;
  border-radius: 10px;
  padding: 25px 25px 35px;
}

.callout_headline {
  color: var(--darker-green);
  text-transform: none;
  height: 80px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 200;
  line-height: 2rem;
}

.callout_text {
  line-height: 1.3rem;
}

.callout_icon {
  width: 60px;
  margin-bottom: 10px;
}

.testimonials_section {
  background-color: #cf5a0100;
  background-image: linear-gradient(to bottom, #00000026, #00000026), linear-gradient(121deg, var(--red), var(--orange));
  color: var(--white);
  height: auto;
  padding: 7% 10%;
  position: relative;
}

.testimonials_slider {
  background-color: #ddd0;
  width: 100%;
  height: auto;
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;
}

.testimonials_slider_nav {
  display: none;
}

.testimonials_slide {
  vertical-align: baseline;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.testimonials_slider_arrow {
  background-color: var(--white);
  color: var(--red);
  border-radius: 5px;
  width: 30px;
  height: 30px;
  font-size: .8rem;
  font-weight: 600;
  inset: auto auto -40px 0%;
}

.testimonials_slider_arrow:hover {
  background-color: #ffffff82;
}

.testimonials_slider_arrow.right {
  inset: auto auto -40px 40px;
}

.testimonials_wrapper {
  text-align: left;
  background-color: #0000;
  border: 1px #ffffff3b;
  border-radius: 10px;
  flex-flow: column;
  height: 100%;
  padding: 2% 0%;
  display: flex;
}

.testimonials_text {
  font-weight: 300;
}

.testimonias_name {
  margin-top: auto;
  font-weight: 600;
}

.site-navigation ul li {
  margin-bottom: 0px;
  text-transform: none;
  border-radius: 5px;
}

.gl-top-level > li:hover {
    background-image: linear-gradient(180deg, var(--orange), var(--red)) !important;
    color: var(--white) !important;
    border-radius: 5px 5px 0 0;
}

.site-navigation ul ul {
    background-image: linear-gradient(0deg, var(--orange), var(--red)) !important;
    border-radius: 0px 0px 5px 5px;
}

.gl-dropdown-1 > li:hover {
    border-radius: 0;
}

.phone_-btn a {
  color: var(--darker-green);
  justify-content: flex-start;
  align-items: center;
  margin-left: 20px;
  font-size: 1.2rem !important;
  font-weight: 900 !important;
  text-decoration: none;
  display: flex;
}

.phone_-btn:hover, .phone_-btn li:hover, li#menu-item-255:hover {
  background: unset !important;
}

.phone_-btn a:hover {
  color: var(--black) !important;
}

.phone_-btn ::before {
  content: '';
  width: 26px;
  height: 26px;
  margin-right: 5px;
  background-image: url('../images/phone-icon.svg');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
}

.phone_icon {
  width: 26px;
  margin-right: 5px;
}

#breadcrumbs a {
  color: var(--darker-green);
  text-decoration: none;
}

.breadcrumb_last {
  color: var(--red);
}

.testimonials_slider_wrapper {
  border-radius: 15px;
  width: 55%;
  padding: 0%;
}

.testimonials_images_wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 45%;
  padding-top: 0%;
  padding-bottom: 0%;
  display: flex;
  position: absolute;
  inset: 0% 5% 0% auto;
}

.testimonials_img_div1 {
  border: 10px solid #ffffff1a;
  border-radius: 200px;
  width: 200px;
  height: 200px;
  margin-left: 0%;
  position: absolute;
  inset: 6% auto auto 18%;
  overflow: hidden;
}

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

.testimonias_img_div2 {
  z-index: 5;
  text-align: center;
  border: 10px solid #ffffff1a;
  border-radius: 250px;
  width: 250px;
  height: 250px;
  margin-top: 0;
  margin-left: 54%;
  position: absolute;
  inset: 16% 13% auto auto;
  overflow: hidden;
}

.testimonials_img_div3 {
  z-index: 10;
  mix-blend-mode: normal;
  border: 10px solid #ffffff1a;
  border-radius: 300px;
  width: 300px;
  height: 300px;
  margin-left: 25%;
  position: absolute;
  inset: auto auto 4% -3%;
  overflow: hidden;
}

.footer_section {
  background-color: #0000000d;
  padding: 5% 10%;
}

.footer_grid {
  grid-column-gap: 10svw;
  grid-row-gap: 10svw;
  padding: 0;
  display: grid;
}

.footer_logo_wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5%;
  display: flex;
}

.footer_logo {
  width: 250px;
}

.contact_form_wrapper {
  width: 100%;
}

.text_field {
  color: var(--black);
  background-color: #ffffff6b;
  border-radius: 5px;
  min-height: 45px;
  margin-bottom: 15px;
  font-size: .9rem;
}

.text_field::placeholder {
  color: var(--darker-green);
}

.text_area {
  color: var(--black);
  background-color: #ffffff6b;
  border-radius: 5px;
  min-height: 150px;
}

.text_area::placeholder {
  color: var(--darker-green);
}

.submit_btn {
  background-color: var(--darker-green);
  background-image: linear-gradient(120deg, var(--orange), var(--red));
  text-transform: uppercase;
  border-radius: 5px;
  padding: 15px 24px;
}

.submit_btn:hover {
  background-image: none;
}

.footer_header {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.footer_headline {
  color: var(--darker-green);
  font-weight: 400;
}

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

.location_name {
  color: var(--black);
  margin-bottom: 10px;
  font-weight: 600;
}

.address_text {
  margin-bottom: 10px;
  font-size: .9rem;
  line-height: 1.3rem;
}

.footer_phone_btn {
  color: var(--darker-green);
  justify-content: flex-start;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.footer_phone_btn:hover {
  color: var(--red);
}

.footer_phone_icon {
  width: 20px;
  margin-right: 5px;
}

.quick_link {
  color: var(--darker-green);
  margin-bottom: 15px;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
}

.quick_link:hover {
  color: var(--red);
}

.footer_wrapper {
  border-top: 1px solid #0000003b;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 5%;
  padding-top: 30px;
  display: flex;
}

.copyright_div {
  width: 35%;
}

.footer_text {
  font-size: .85rem;
}

.soc_media_wrapper {
  justify-content: flex-end;
  align-items: center;
  width: 35%;
  display: flex;
}

.soc_media_btn {
  opacity: .44;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-left: 20px;
  display: flex;
}

.soc_media_btn:hover {
  opacity: 100;
}

.tiktok {
  height: 22px;
}

.navlink_dropdown {
  color: var(--darker-green);
  font-weight: 500;
}

.dropdown_toggle {
  color: var(--darker-green);
  border-radius: 5px;
  padding-left: 12px;
  padding-right: 15px;
}

.dropdown_toggle.w--open {
  background-image: linear-gradient(180deg, var(--orange), var(--red));
  color: var(--white);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown_icon {
  margin-right: 2px;
  font-size: .6rem;
}

.dropdown_list.w--open {
  background-image: linear-gradient(180deg, var(--red), var(--orange));
  border-radius: 0 0 5px 5px;
}

.dropdown-link {
  color: var(--white);
  font-size: .95rem;
}

.dropdown-link:hover {
  background-color: #0000004a;
}

.hero_callout_wrapper {
  z-index: 500;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 5%;
}

.hero_btns_grid {
  width: 60%;
  padding: 0 0 1px;
}

.hero_btns_grid a.hero_btn:hover {
    color: #fff;
}

.hero_btn {
  background-color: #000000a3;
  background-image: linear-gradient(148deg, var(--green), #005553);
  color: var(--white);
  text-align: center;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120px;
  padding-left: 19px;
  padding-right: 19px;
  font-size: 1.2rem;
  font-weight: 200;
  text-decoration: none;
  display: flex;
}

.hero_btn:hover {
  background-image: linear-gradient(122deg, var(--orange), var(--red));
}

.hero_btn_icon {
  width: 40px;
  margin-bottom: 10px;
}

.inner_hero_section {
  height: 70svh;
  position: relative;
}

.inner_hero_img_div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.inner_hero_img {
  height: Infinity;
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  margin-top: -10%;
}

.inner_page_title_wrapper {
  z-index: 10;
  color: var(--white);
  background-color: #00858200;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 40%;
  padding: 0%;
  display: flex;
  position: absolute;
  bottom: 10%;
  left: 10%;
}

.inner_page_title {
  color: var(--orange);
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 5rem;
  font-weight: 200;
  line-height: 3.6rem;
}

.inner_main_title_small {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 200;
  line-height: 2rem;
}

.inner_page_section {
  background-color: #fff0;
  padding: 7% 10%;
}

.inner_page_section.no_top_margin {
  padding-top: 0%;
}

.inner_page_section.bg_color {
  background-color: #0000000d;
}

.gradient_overlay_div {
  z-index: 5;
  background-image: linear-gradient(269deg, #2a120000, #001d27e0);
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.inner_page_hero_subheadline {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2rem;
  color: #f2812d;
}

.innerpage_callout_section {
  background-color: var(--darker-green);
  color: var(--white);
  background-image: linear-gradient(90deg, #0000, #06000000 50%, #07000099 50%, #000000a6), radial-gradient(circle at 30% 70%, #88f3f145, #88f3f100 61%);
  padding: 2% 10%;
}

.lasik_test_grid {
  padding: 0;
}

.lasik_callout_cell {
  justify-content: center;
  align-items: flex-start;
  padding-top: 0%;
  padding-bottom: 0%;
  padding-right: 10%;
}

.lasik_callout_cell.right {
  padding-left: 10%;
  padding-right: 0%;
}

.lasik_callout_headline {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: 300;
  line-height: 3rem;
}

.lasik_callout_headline.dark-color {
  color: #083636;
}

.lasik_callout_img {
  margin-top: 0;
}

.two_columns_grid {
  grid-column-gap: 3svw;
  grid-row-gap: 3svw;
  padding: 0;
  display: grid;
}

.text_column {
  justify-content: center;
  align-items: flex-start;
  padding-right: 5%;
}

.before-after {
  color: #fff;
  text-transform: uppercase;
  cursor: col-resize;
  border-radius: 0;
  margin-left: 0%;
  margin-right: 0%;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.before-img {
  object-fit: cover;
  object-position: 0% 50%;
  width: 100vw;
  display: block;
}

.after-wrap {
  z-index: 1;
  border-right: 1px solid #fff;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.slider-arrows-img {
  z-index: 2;
  position: absolute;
  inset: 50% 0% auto auto;
  transform: translate(50%, -50%);
}

.after-img {
  z-index: 1;
  object-fit: cover;
  object-position: 0% 50%;
  width: 100%;
  height: 100% !important;
  display: block;
  position: absolute;
  inset: 0% auto auto 0%;
  overflow: hidden;
}

.before-after-label {
  z-index: 2;
  background-color: var(--green);
  border-radius: 0 4px 4px 0;
  flex: none;
  padding: 15px 20px;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.before-after-label.after-label {
  z-index: 2;
  background-color: var(--green);
  border-radius: 4px 0 0 4px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
  position: absolute;
  inset: 50% 0% auto auto;
  transform: translate(0, -50%);
}

.prk_accordion {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.faq2_question {
  color: var(--orange);
  cursor: pointer;
  background-color: #00467400;
  border: 1px solid #00000038;
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1em;
  display: flex;
}

.prk_icon {
  color: var(--orange);
  align-self: flex-start;
  width: 2rem;
  margin-left: 1.5rem;
}

.faq2_answer {
  overflow: hidden;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.max-width-large {
  width: 100%;
  max-width: none;
  padding-left: 20px;
  padding-right: 20px;
}

.lasik_callout_img_cell {
  justify-content: center;
  align-items: center;
}

.innerpage_img_div {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.three_columns_grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding: 0;
  display: grid;
}

.img_cell {
  justify-content: center;
  align-items: flex-start;
}

.recaptcha {
  margin-top: 20px;
  margin-bottom: 0;
}

.cpt-doctor-image-link .doctor-headshot-link img {
  background-color: #fff;
}

.cpt-doctor-image-link {
  border: 0px;
}

.doctors-section {
  border-top: 1px solid;
  border-image: radial-gradient(circle at 50% 50%, rgba(235, 72, 115, 1) 0%, rgba(242, 129, 44, 0.51) 50%)1;
  background-color: #fff;
}

.doctor-featured-image {
    padding: 30px 30px;
    background: linear-gradient(124deg, var(--red), var(--orange));
}

.ticker_section {
  background-image: linear-gradient(124deg, var(--red), var(--orange));
  padding: 5% 20% 8%;
}

.why_choose_headline {
  color: var(--white);
  font-size: 3rem;
}

.choose_grid {
  margin-top: 5%;
  padding: 0;
}

.choose_cell {
  justify-content: flex-start;
  align-items: center;
}

.choose_cell.middle {
  border-right: 1px dotted var(--white);
  border-left: 1px dotted var(--white);
}

.counter {
  color: var(--white);
  text-align: center;
  padding-top: 8px;
  padding-left: 10px;
  font-family: Avenirltstd, Tahoma, sans-serif;
  font-size: 6em;
  font-weight: 900;
  line-height: 1em;
}

.choose_text {
  color: var(--white);
  font-size: 1.3em;
}

#w-node-ad74785d-e06c-6962-fcc6-1777cee56539-7af86a48 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 479px) {
  #w-node-_6d3bda3a-3d8d-226b-99ab-1416251d737f-7af86a48, #w-node-ad74785d-e06c-6962-fcc6-1777cee56539-7af86a48 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }

  h3 {
    font-size: 1.8rem;
    line-height: 1.9rem;
  }

  .navlink {
    border-radius: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .slide_tagline_wrapper {
    padding-left: 10%;
    padding-right: 10%;
  }

  .main_tagline1 {
    text-align: center;
    font-size: 3rem;
  }

  .main_tagline2 {
    text-align: center;
    font-size: 1.8rem;
  }

  .welcome_section {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .welcome_header_wrapper {
    height: auto;
    margin-bottom: 15%;
  }

  .welcome_hedline_div {
    width: 100%;
    height: auto;
    margin-bottom: 10%;
    position: static;
  }

  .welcome_headline {
    margin-left: -64px;
  }

  .welcome_subheadline {
    margin-left: 10%;
  }

  .dr_sepulveda_img {
    margin-top: -55px;
  }

  .doc_img_cell {
    justify-content: flex-start;
    align-items: center;
  }

  .hp_headline {
    font-size: 2.4rem;
  }

  .vision_cell {
    padding-top: 18%;
    padding-bottom: 18%;
  }

  .age_number {
    font-size: 3.2rem;
  }

  .brand_promise_wrapper {
    width: 100%;
    position: static;
  }

  .cataract_section {
    height: auto;
  }

  .cataract_img_div {
    width: 100%;
    height: 600px;
    margin-left: 0%;
  }

  .cataract_content_div {
    background-color: #001f1e;
    width: 100%;
    padding: 10% 10% 20%;
    position: static;
  }

  .cataract_callout_wrapper {
    width: 300px;
    height: 300px;
    bottom: -10%;
    left: 31%;
  }

  .cataract_callout_headline {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }

  .cataract_callout_text {
    font-size: 1rem;
  }

  .callouts_section {
    padding-top: 25%;
  }

  .rle_callout_grid {
    width: 100%;
  }

  .rle_img {
    height: auto;
  }

  .rle_img_cell {
    justify-content: center;
    align-items: flex-end;
  }

  .dryeye_grid {
    width: 100%;
    margin-top: 14%;
  }

  .callout_section {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .wrapper_div.center {
    width: 90%;
  }

  .testimonials_section {
    padding-top: 10%;
    padding-bottom: 10%;
    position: static;
  }

  .testimonials_slider_wrapper {
    width: 100%;
  }

  .testimonials_images_wrapper {
    width: 100%;
    display: none;
    position: static;
  }

  .footer_section {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .copyright_div {
    width: 55%;
  }

  .navlink_dropdown {
    display: block;
  }

  .dropdown_toggle {
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
  }

  .dropdown_toggle.w--open {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .dropdown_list.w--open {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    position: relative;
  }

  .hero_btns_grid {
    width: 90%;
  }

  .menu_btn {
    background-color: var(--green);
    color: var(--white);
    border-radius: 5px;
    margin-left: 20px;
  }

  .menu_btn:hover {
    background-color: var(--orange);
  }

  .menu_btn.w--open {
    background-color: var(--red);
  }

  .navmenu {
    background-color: #fff;
  }

  .inner_hero_img {
    height: 100%;
    margin-top: 0%;
  }

  .inner_page_title_wrapper {
    width: 80%;
  }

  .gradient_overlay_div {
    background-image: linear-gradient(#00000045, #00000045), linear-gradient(#00153029, #001d27fc);
  }

  .innerpage_callout_section {
    background-image: linear-gradient(#0000, #06000000 50%, #07000099 50%, #000000a6), radial-gradient(circle at 30% 70%, #88f3f145, #88f3f100 61%);
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .slider-arrows-img {
    width: 44px;
  }

  .before-after-label {
    padding: 12px 20px;
    font-size: 16px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .navbar {
    padding-left: 20px;
    padding-right: 20px;
    position: static;
  }

  .logo {
    padding-left: 0;
  }

  .hero_section {
    height: 450px;
  }

  .slide_img_overlay {
    background-image: linear-gradient(#0000 31%, #00000070 67%, #00000042);
  }

  .slide_tagline_wrapper {
    top: 57%;
  }

  .main_tagline1 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .main_tagline2 {
    font-size: 1.3rem;
    line-height: 1.3rem;
  }

  .welcome_headline {
    margin-left: -55px;
    font-size: 5rem;
    line-height: 4rem;
  }

  .welcome_subheadline {
    margin-left: 5%;
  }

  .promise_text {
    font-size: 1.1rem;
    line-height: 1.4rem;
  }

  .vision_wrapper_cell {
    max-height: unset;
  }

  .vision_cell {
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .cataract_img_div {
    height: 500px;
  }

  .callouts_section {
    padding-top: 32%;
    padding-bottom: 15%;
  }

  .rle_img {
    height: 350px;
  }

  .dryeye_grid {
    margin-top: 0%;
  }

  .gryeye_content_cell {
    padding-left: 0%;
  }

  .wrapper_div.center {
    width: 100%;
  }

  .callout_headline {
    height: auto;
    margin-bottom: 28px;
    font-size: 1.6rem;
    line-height: 1.5rem;
  }

  .callout_icon {
    margin-bottom: 15px;
  }

  .testimonials_section {
    padding-bottom: 15%;
  }

  .phone_icon {
    width: 24px;
  }

  .hero_callout_wrapper {
    background-color: #00504e;
    background-image: linear-gradient(#0000001a, #0000001a);
    padding-top: 5%;
    padding-bottom: 5%;
    position: static;
  }

  .menu_btn {
    margin-left: 10px;
  }

  .inner_hero_section {
    height: 600px;
  }

  .inner_page_title {
    margin-bottom: 15px;
    font-size: 4rem;
  }

  .inner_main_title_small {
    font-size: 1.6rem;
  }

  .inner_page_section {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .inner_page_hero_subheadline {
    font-size: 1.6rem;
  }

  .before-after {
    height: 200px;
  }

  .before-img {
    height: 100%;
  }

  .slider-arrows-img {
    width: 36px;
  }

  .before-after-label {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
  }

  .before-after-label.after-label {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    font-size: 12px;
    line-height: 12px;
  }

  .faq2_question {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .prk_icon {
    width: 1.75rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 3.2rem;
    line-height: 3.4rem;
  }

  h2 {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  h3 {
    font-size: 1.6rem;
    line-height: 1.7rem;
  }

  h4 {
    font-size: 1.2rem;
    line-height: 1.3rem;
  }

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

  .hero_slider_arrow {
    width: 25px;
  }

  .slide_tagline_wrapper {
    top: 56%;
  }

  .main_tagline1 {
    font-size: 1.8rem;
    line-height: 1.7rem;
  }

  .welcome_section {
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .welcome_hedline_div {
    margin-bottom: 15%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .welcome_headline {
    margin-left: 0;
    font-size: 3rem;
    line-height: 2.8rem;
  }

  .welcome_subheadline {
    margin-left: 0%;
    font-size: 1.7rem;
    line-height: 1.9rem;
  }

  .welcome_text2, .welcome_text {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  .promise_wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .red_dot_div {
    width: 10px;
    height: 10px;
  }

  .orange_line_div {
    margin-right: 10px;
  }

  .promise_text {
    font-size: 1rem;
    line-height: 1.3rem;
  }

  .dr_sepulveda_img {
    height: auto;
    margin-top: 0;
  }

  .vision_age_section {
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .hp_headline {
    font-size: 2rem;
    line-height: 2rem;
  }

  .button.white {
    padding: 8px 19px;
    font-size: .85rem;
  }

  .cataract_img_div {
    height: 300px;
  }

  .cataract_content_div {
    padding-bottom: 40%;
  }

  .cataract_callout_wrapper {
    width: 250px;
    height: 250px;
    padding-left: 5%;
    padding-right: 5%;
    bottom: -6%;
    left: 11%;
  }

  .cataract_callout_headline {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }

  .cataract_callout_text {
    line-height: 1.3rem;
  }

  .callouts_section {
    padding-top: 37%;
  }

  .rle_img {
    height: auto;
  }

  .dryeye_grid {
    margin-top: 18%;
  }

  .callout_section {
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .wrapper_div.center {
    text-align: left;
  }

  .callout_icon {
    width: 45px;
  }

  .testimonials_section {
    padding-top: 15%;
    padding-bottom: 25%;
  }

  .phone_-btn {
    margin-left: 10px;
  }
  
  .phone_-btn a {
    margin-left: 0px;
  }

  .phone_-btn:hover {
    opacity: .65;
  }

  .phone_icon {
    width: 36px;
    margin-right: 0;
  }

  .footer_section {
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .footer_grid {
    margin-top: 15%;
  }

  .footer_wrapper {
    flex-flow: column;
  }

  .copyright_div {
    width: 100%;
  }

  .soc_media_wrapper {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 32px;
  }

  .soc_media_btn {
    margin-left: 0;
    margin-right: 20px;
  }

  .hero_callout_wrapper {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .hero_btns_grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .hero_btn {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    height: 60px;
  }

  .hero_btn_icon {
    width: 30px;
    margin-bottom: 0;
    margin-right: 10px;
  }

  .phone_text {
    display: none;
  }

  .inner_hero_section {
    height: 700px;
  }

  .inner_hero_img {
    object-position: 75% 100%;
  }

  .inner_page_title_wrapper {
    bottom: 5%;
  }

  .inner_page_title {
    font-size: 3rem;
    line-height: 3rem;
  }

  .inner_main_title_small {
    font-size: 1.3rem;
    line-height: 1.4rem;
  }

  .inner_page_section {
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .gradient_overlay_div {
    background-image: linear-gradient(#00000078, #00000078), linear-gradient(#00153029, #001d27fc);
  }

  .inner_page_hero_subheadline {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }

  .innerpage_callout_section {
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .lasik_callout_headline {
    font-size: 2.2rem;
    line-height: 2rem;
  }

  .text_column {
    padding-right: 0%;
  }

  .slider-arrows-img {
    width: 32px;
  }

  .before-after-label {
    text-align: center;
    align-items: center;
    max-width: 100px;
    min-height: 40px;
    padding: 8px 5px;
    font-size: 10px;
    display: flex;
    position: absolute;
    top: 20px;
  }

  .before-after-label.after-label {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 10px;
    top: 20%;
  }

  .faq2_question {
    padding-left: 10px;
    padding-right: 10px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .max-width-large {
    padding-left: 10px;
    padding-right: 10px;
  }

  .recaptcha {
    width: 250px;
  }

  .gl-top-level > li:hover, .site-navigation ul ul {
    background-image: unset !important;
  }

.choose_cell.middle {
  border-right: 0px dotted var(--white);
  border-left: 0px dotted var(--white);
}

}

#w-node-_171e45ea-9234-5ec6-af86-8e8fc7f7b938-65e527e7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-b74ec853-960f-6a59-bf34-923d49aa4537-65e527e7 {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

#w-node-_8b41b330-e60f-0b52-cf9a-fb2e8f82abc3-65e527e7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: none;
}

#w-node-_45538204-7874-21a9-d338-aef6cb39365e-65e527e7 {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

#w-node-_810da4f4-46fa-9aef-4540-ed629ed3e671-65e527e7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_0056debe-869f-3565-c8de-3294caf7dc28-65e527e7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
}

#w-node-_33e6be46-cdbe-734f-c357-93247a3357e9-65e527e7 {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

#w-node-_4ca8f448-a535-0776-bdd5-621908a9e9ab-65e527e7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-_36e3be06-10a5-fdc1-a532-428713ec6054-65e527e7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr .75fr;
}

#w-node-b2bdc7ca-bf45-c0c6-3ec9-1bb830503017-223b1d81 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_49005c02-1482-252b-7178-883469ed05f7-223b1d81 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-bb28af00-5d08-6348-3014-46e5db0174e6-223b1d81, #w-node-_4aa0a577-6729-0b5a-1b9c-942ec3f80634-223b1d81 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_4dfccfe1-9e11-d386-9010-6d07bf8a4e3f-223b1d81 {
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr 1fr;
}

#w-node-d9f0a1ca-8de6-a5a4-694d-d041bfb730ce-223b1d81 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr .75fr;
}

@media screen and (max-width: 991px) {
  #w-node-b74ec853-960f-6a59-bf34-923d49aa4537-65e527e7, #w-node-_45538204-7874-21a9-d338-aef6cb39365e-65e527e7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0056debe-869f-3565-c8de-3294caf7dc28-65e527e7, #w-node-_33e6be46-cdbe-734f-c357-93247a3357e9-65e527e7, #w-node-_4ca8f448-a535-0776-bdd5-621908a9e9ab-65e527e7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_36e3be06-10a5-fdc1-a532-428713ec6054-65e527e7, #w-node-b2bdc7ca-bf45-c0c6-3ec9-1bb830503017-223b1d81, #w-node-_49005c02-1482-252b-7178-883469ed05f7-223b1d81, #w-node-bb28af00-5d08-6348-3014-46e5db0174e6-223b1d81, #w-node-_4aa0a577-6729-0b5a-1b9c-942ec3f80634-223b1d81 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_4dfccfe1-9e11-d386-9010-6d07bf8a4e3f-223b1d81 {
    grid-template-rows: auto;
    grid-template-columns: 1.25fr;
  }

  #w-node-d9f0a1ca-8de6-a5a4-694d-d041bfb730ce-223b1d81 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_171e45ea-9234-5ec6-af86-8e8fc7f7b938-65e527e7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_810da4f4-46fa-9aef-4540-ed629ed3e671-65e527e7, #w-node-_0056debe-869f-3565-c8de-3294caf7dc28-65e527e7, #w-node-_33e6be46-cdbe-734f-c357-93247a3357e9-65e527e7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_171e45ea-9234-5ec6-af86-8e8fc7f7b938-65e527e7, #w-node-_4ca8f448-a535-0776-bdd5-621908a9e9ab-65e527e7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Futuratot Medi';
  src: url('../fonts/FuturaTOT-Medi.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futuratot';
  src: url('../fonts/FuturaTOT-Bold.otf') format('opentype'), url('../fonts/FuturaTOT-ExtrBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futuratot Demi';
  src: url('../fonts/FuturaTOT-Demi.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futuratot Book';
  src: url('../fonts/FuturaTOT-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futuratot Ligh';
  src: url('../fonts/FuturaTOT-Ligh.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}