:root {
  --navy: #011c3a;
  --black: #000;
  --light-pink: #f2cdbc;
  --white: white;
  --dark-pink: #c69f8d;
}

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

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

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

h1 {
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 30px;
  font-family: quiche-sans, sans-serif;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 3.2rem;
}

h2 {
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 30px;
  font-family: quiche-sans, sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 3rem;
}

h3 {
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 30px;
  font-family: quiche-sans, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6rem;
}

h4 {
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 15px;
  font-family: quiche-sans, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5rem;
}

h5 {
  color: var(--navy);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: quiche-sans, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2rem;
}

p {
  color: var(--black);
  margin-bottom: 30px;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2rem;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: #7a5d50;
}

ul {
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 20px;
  font-size: 1.2rem;
  line-height: 1.8rem;
}

li {
  margin-bottom: 10px;
}

.navbar {
  z-index: 1000;
  background-color: #fae8e0;
  height: auto;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-right: 5%;
  position: fixed;
  inset: 0% 0% auto;
}

.logo {
  z-index: 9999;
  background-color: var(--navy);
  width: 250px;
  padding: 1%;
  position: absolute;
  inset: 0% auto auto 5%;
}

.navlink {
  padding-left: 15px;
  padding-right: 15px;
  font-family: quiche-sans, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.navlink:hover {
  color: #7a5d50;
}

.hero_sectiion {
  background-color: #fae8e0;
  height: 100svh;
  padding-bottom: 60px;
}

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

.hero_slide_nav {
  height: 30px;
  padding-top: 10px;
  font-size: .8rem;
  line-height: .8rem;
  display: none;
}

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

.hero_slide_wrapper {
  justify-content: flex-end;
  align-items: flex-end;
  height: 90%;
  margin-top: 10%;
  padding-bottom: 0%;
  display: flex;
  position: static;
}

.hero_tagline_div {
  z-index: 10;
  background-color: #fae8e0;
  width: 35%;
  margin-bottom: 5%;
  margin-left: 5%;
  padding: 3% 5%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.hero_img_div {
  width: 85%;
  height: 100svh;
  margin-right: 0%;
}

.hero_tagline {
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 0;
  font-family: quiche-sans, sans-serif;
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 4.2rem;
}

.hero_img {
  object-fit: cover;
  object-position: 50% 20%;
  width: 100%;
  height: 100%;
}

.welcome_section {
  padding: 5% 10% 5% 0%;
  position: relative;
}

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

.wrapper_div.center.left_margin {
  margin-left: 20%;
}

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

.wrapper_div.doc._2 {
  width: 90%;
  margin-right: 0;
}

.wrapper_div.inner {
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.welcome_headline {
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 30px;
  font-family: quiche-sans, sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 4rem;
}

.welcome_subheadline {
  color: var(--navy);
  text-align: center;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  line-height: 2.2rem;
}

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

.two_columns_grid.top_margin {
  margin-top: 10%;
}

.two_columns_grid.links {
  width: 100%;
}

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

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

.p_last {
  margin-bottom: 0;
}

.hp_img_div {
  width: 100%;
  height: 700px;
  overflow: hidden;
}

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

.hp_paragraph_headline {
  margin-bottom: 0;
  font-family: quiche-sans, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.2rem;
}

.why_choose_section {
  padding-top: 5%;
  padding-bottom: 5%;
  padding-left: 10%;
}

.promise_section {
  background-color: #fff0;
  padding: 5% 15%;
}

.callouts_grid {
  grid-column-gap: 3svw;
  grid-row-gap: 3svw;
  margin-top: 5%;
  padding: 0;
}

.callout_wrapper {
  text-align: center;
  background-color: #ffffff54;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 10%;
  display: flex;
}

.callout_headline {
  color: var(--navy);
  margin-bottom: 0;
  font-family: quiche-sans, sans-serif;
  font-size: 1.3rem;
}

.callout_headline.inner {
  font-size: 1.1rem;
  line-height: 1.2rem;
}

.gallery_section {
  padding: 5% 10% 10%;
  position: relative;
}

.gallery_wrapper {
  position: relative;
}

.gallery_img_div {
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.gallery_img {
  object-fit: cover;
  object-position: 25% 50%;
  width: 100%;
  height: 100%;
}

.gallery_content_div {
  z-index: 10;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 35%;
  padding-top: 10%;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 10%;
}

.h2_pink {
  color: var(--light-pink);
  font-weight: 400;
}

.button {
  background-color: var(--navy);
  /* color: var(--white) !important; -- IGNORE --*/
  text-transform: uppercase;
  padding: 18px 30px;
  font-weight: 300;
  text-decoration: none !important;
}

.button:hover {
  background-color: var(--black);
  color: var(--light-pink);
}

.button.light {
  background-color: var(--light-pink);
  color: var(--navy);
  font-weight: 400;
}

.button.light:hover {
  background-color: var(--black);
  color: var(--light-pink);
}

.button.google {
  padding: 15px 20px;
  font-size: .8rem;
  font-weight: 400;
}

.gallery_section_header {
  color: var(--white);
  letter-spacing: 10px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.doc_section {
  background-color: #fff0;
  background-image: url('../images/navy-bg.svg');
  background-position: 0 22%;
  background-repeat: repeat-y;
  background-size: 30%;
  padding: 5% 10%;
}

.doc_section._2 {
  background-position: 100% 100%;
  background-repeat: no-repeat;
  padding-top: 0%;
  padding-right: 5%;
  position: relative;
}

.doc_img_div {
  border-radius: 0;
  width: 100%;
  height: 450px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.doc_img_div._2 {
  height: 550px;
}

.doc_img {
  object-fit: cover;
  object-position: 50% 20%;
  width: 100%;
  height: 100%;
}

.doc_img_cell {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
}

.doc_quote_text {
  color: var(--navy);
  text-align: left;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.2rem;
}

.services_section {
  object-position: 50% 40%;
  padding: 10% 10% 5%;
}

.services_grid {
  padding: 0;
}

.services_btn {
  color: var(--light-pink);
  width: 100%;
  padding-top: 100%;
  font-family: quiche-sans, sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2rem;
  position: relative;
}

.services_btn:hover {
  color: var(--white);
}

.services_btn_img_div {
  z-index: 10;
  display: block;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.services_img {
  object-fit: cover;
  object-position: 50% 25%;
  width: 100%;
  height: 100%;
}

.services_img.center {
  object-position: 50% 15%;
}

.services_img._6 {
  object-position: 50% 100%;
}

.services_img._2 {
  object-position: 50% 15%;
}

.btn_overlay_wrapper {
  z-index: 20;
  mix-blend-mode: normal;
  background-color: #00000040;
  background-image: linear-gradient(#0000 47%, #000000b0);
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 11%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.ipl_section {
  padding: 5% 0% 5% 10%;
}

.ipl_callout_wrapper {
  z-index: 10;
  background-color: var(--navy);
  color: var(--white);
  justify-content: space-between;
  align-items: flex-start;
  width: 45%;
  margin-top: -7%;
  margin-left: 20%;
  padding: 39px 5% 39px 2%;
  display: flex;
  position: relative;
}

.appointment_callout_txt {
  color: var(--white);
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8rem;
}

.appointment_callout_headline {
  color: var(--light-pink);
  margin-bottom: 20px;
  line-height: 1.8rem;
}

.testimonials_section {
  padding: 5% 10%;
}

.reviews_header_wrapper {
  mix-blend-mode: multiply;
  background-color: #fff0;
  justify-content: space-between;
  align-items: center;
  margin-top: 0%;
  padding: 0;
  display: flex;
}

.google_logo_div {
  width: 15%;
}

.reviews_grid {
  margin-top: 20px;
  padding: 0;
}

.reviews_main_wrapper {
  background-color: #ffffff5e;
  margin-top: 5%;
  padding: 21px;
}

.testimonials_div {
  background-color: #fff;
  width: 100%;
  padding: 20px;
}

.google_review_name_div {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.photo_placeholder_div {
  background-color: #9b20f8;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.photo_placeholder_div._2 {
  background-color: #f87e20;
}

.photo_placeholder_div._3 {
  background-color: #018605;
}

.photo_placeholder_div._4 {
  background-color: #8b3c00;
}

.photo_placeholder_div._5 {
  background-color: #202bf8;
}

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

.name_div {
  width: 65%;
}

.name_text {
  margin-bottom: 5px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1rem;
}

.time_text {
  font-size: .8rem;
  line-height: .9rem;
}

.stars_placeholder_img {
  width: 80px;
  margin-bottom: 10px;
}

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

.read_link {
  font-size: .9rem;
}

.read_link:hover {
  color: #7a5d50;
}

.feature_testimonial_wrapper {
  margin-top: 5%;
  position: relative;
}

.feature_testimonials_img_div {
  height: 500px;
  overflow: hidden;
}

.feature_testimonials_img {
  object-fit: cover;
  object-position: 50% 25%;
  width: 100%;
  height: 100%;
}

.feature_testimonials_overlay_div {
  z-index: 10;
  color: var(--white);
  text-align: center;
  background-color: #000000a6;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 15%;
  padding-right: 15%;
  display: flex;
  position: absolute;
  inset: 0%;
}

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

.feature_testimonial_name {
  font-weight: 600;
}

.blog_section {
  padding: 5% 10%;
}

.blog_grid {
  grid-column-gap: 3svw;
  grid-row-gap: 3svw;
  margin-top: 5%;
  margin-bottom: 5%;
  padding: 0;
}

.blog_wrapper {
  background-color: #ffffff80;
  width: 100%;
  padding: 34px;
}

.blog_headline {
  color: var(--navy);
}

.blog_text {
  font-size: 1rem;
  line-height: 1.8rem;
}

.blog_cell {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
}

.blog_img_div {
  height: 300px;
  margin-bottom: 30px;
  overflow: hidden;
}

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

.appointment_newsletter_section {
  background-image: url('../images/navy-bg.svg');
  background-position: 50% 100%;
  background-repeat: repeat-x;
  background-size: auto 50%;
  padding: 5% 10%;
}

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

.appointment_callout_wrapper {
  color: var(--white);
  width: 100%;
  position: relative;
}

.appointment_callout_img_div {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.appointment_overlay_div {
  z-index: 10;
  text-align: center;
  background-color: #0000008f;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 10%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.appointment_headline {
  color: var(--light-pink);
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4rem;
}

.newsletter_wrapper {
  background-color: var(--black);
  text-align: center;
  background-image: radial-gradient(circle at 50% 10%, #002c5d, #000);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
  padding: 6% 10%;
  display: flex;
}

.newsletter_headline {
  color: var(--light-pink);
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4rem;
}

.newsletter_form {
  width: 90%;
}

.text_field {
  color: var(--white);
  background-color: #ffffff1a;
  border: 1px #000;
  margin-bottom: 15px;
  font-size: .8rem;
  font-weight: 300;
}

.text_field::placeholder {
  color: var(--light-pink);
}

.submit_btn {
  background-color: var(--light-pink);
  color: var(--navy);
  text-transform: uppercase;
  padding: 14px 30px;
}

.submit_btn:hover {
  background-color: var(--black);
  color: var(--light-pink);
}

.footer_section {
  background-color: var(--navy);
  padding: 0% 10% 5%;
}

.footer_grid {
  grid-column-gap: 3svw;
  grid-row-gap: 3svw;
  margin-bottom: 5%;
  padding: 0;
}

.footer_headline {
  color: var(--light-pink);
  font-size: 1.3rem;
  font-weight: 300;
}

.locations_grid {
  width: 100%;
  padding: 0;
}

.adress_text {
  color: var(--white);
  height: 96px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5rem;
}

.footer_phone {
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  font-weight: 600;
  display: flex;
}

.footer_phone:hover {
  color: var(--light-pink);
  font-weight: 600;
}

.hours_text {
  color: var(--white);
  margin-top: 20px;
  font-size: .85rem;
}

.footer_link, .footer_link a {
  color: var(--white);
  margin-bottom: 10px;
  font-size: .9rem;
}

.footer_link:hover, .footer_link a:hover {
  color: var(--light-pink);
  margin-bottom: 10px;
  font-size: .9rem;
}

.footer_link {
  list-style: none;
  padding-left: 0px;
}

.footer_link li {
  margin-bottom: 0px;
}

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

.footer_wrapper.bottom {
  border-top: 1px solid #f2cdbc54;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 5%;
  margin-bottom: 0%;
  padding-top: 30px;
}

.footer_logo {
  width: 250px;
  margin-bottom: 30px;
}

.footer_text {
  color: var(--light-pink);
  text-align: left;
  font-size: .85rem;
  font-weight: 300;
}

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

.white_link:hover {
  color: var(--light-pink);
}

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

.locations_cell {
  padding-left: 0%;
}

.nav_dropdown {
  font-family: quiche-sans, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.dropdown_toggle {
  padding-left: 15px;
  padding-right: 20px;
}

.dropdown_toggle.w--open {
  color: #7a5d50;
}

.dropdown_icon {
  margin-right: 5px;
  font-size: .7rem;
}

.dropdown_list.w--open {
  background-color: var(--navy);
}

.dropdown_link {
  color: var(--light-pink);
  font-size: .9rem;
  font-weight: 400;
}

.dropdown_link:hover {
  color: var(--white);
}

.static_btns_wrapper {
  z-index: 500;
  background-color: #fae8e0;
  justify-content: flex-end;
  align-items: stretch;
  width: auto;
  height: 60px;
  padding-right: 5%;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
}

.static_btns_wrapper.inner {
  flex-flow: column;
  width: auto;
  height: auto;
  padding-right: 0%;
  bottom: 27%;
}

.static_btn {
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  padding-right: 0;
  font-family: quiche-sans, sans-serif;
  font-weight: 500;
  display: flex;
}

.static_btn.inner {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
}

.hero_tagline_div2, .hero_tagline_div3 {
  z-index: 10;
  background-color: #fae8e0;
  width: 35%;
  margin-bottom: 5%;
  margin-left: 5%;
  padding: 3% 5%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.static_btn_icon {
  width: 30px;
  margin-right: 10px;
}

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

.callout_icon.inner {
  width: 50px;
}

.callout_cell {
  flex-flow: row;
  align-items: stretch;
}

.ipl_conten_div {
  width: auto;
  margin-left: 25px;
}

.ipl_callout_icon {
  width: 15%;
  margin-top: 0;
  margin-left: 0;
}

.decor_icon_div1 {
  width: 12%;
  position: absolute;
  inset: 25% 10% auto auto;
}

.decor_div2 {
  width: 10%;
  position: absolute;
  inset: auto 25% -10% auto;
}

.feature_section {
  padding: 5% 10% 5% 0%;
}

.feature_section2 {
  padding: 5% 0% 5% 10%;
}

.decor_div3 {
  width: 10%;
  position: absolute;
  inset: auto auto -19% 7%;
}

.services_sublinks_wrapper {
  width: 90%;
  margin-top: 0;
  margin-bottom: 3%;
}

.subpage_link {
  color: var(--light-pink);
  margin-bottom: 10px;
  font-family: quiche-sans, sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6rem;
}

.inner_hero_section {
  height: auto;
}

.inner_hero_wrapper {
  width: 100%;
  height: auto;
  padding-top: 82px;
  padding-left: 0%;
  padding-right: 0%;
  display: block;
  position: relative;
}

.inner_page_header_div {
  z-index: 10;
  color: var(--white);
  background-color: #011c3a;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 450px;
  padding: 3% 5%;
  display: flex;
  position: static;
  inset: 50% auto auto 0%;
}

.innerpage_header {
  color: var(--light-pink);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: quiche-sans, sans-serif;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 3.2rem;
}

.innerpage_section {
  padding: 5% 10%;
}

.innerpage_section.left {
  padding-left: 0%;
}

.innerpage_section.right {
  padding-right: 0%;
}

.innerpage_section.first {
  padding-top: 8%;
}

.breadcrumbs_wrapper {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0%;
  display: flex;
}

.breadcrumbs_link a, .breadcrumbs_link {
  color: var(--light-pink);
  font-size: .9rem;
  font-weight: 300;
}

.breadcrumbs_link a:hover {
  color: var(--dark-pink);
}

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

.divider_text {
  margin-left: 5px;
  margin-right: 5px;
}

.innerpage_img_div {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

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

.inner_img.right {
  object-position: 70% 25%;
}

.inner_img.left {
  object-position: 0% 50%;
}

.list_nomargin {
  margin-bottom: 30px;
}

.inner_callouts_grid {
  padding: 0;
}

.inner_callout_cell {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
}

.inner_appointment_section {
  background-image: url('../images/navy-bg.svg');
  background-position: 50% 102%;
  background-repeat: repeat-x;
  background-size: auto 40%;
  padding: 5% 10%;
}

.inner_appointment_callout_wrapper {
  position: relative;
}

.inner_appointment_img_div {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

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

.inner_appointment_overlay_div {
  z-index: 20;
  color: var(--white);
  text-align: center;
  background-color: #0000008a;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 10%;
  padding-left: 15%;
  padding-right: 15%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.inner_appointment_headline {
  color: var(--light-pink);
}

.appointment_callout_text {
  color: var(--white);
  font-size: 1.4rem;
}

.inner_hero_decor_div {
  z-index: 50;
  width: 150px;
  margin-bottom: 20px;
  position: static;
  inset: 25% auto auto 48%;
}

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

  h2 {
    font-size: 2.4rem;
    line-height: 2.6rem;
  }

  .logo {
    width: 220px;
    padding: 2%;
  }

  .navlink {
    text-align: right;
    padding-right: 20px;
  }

  .hero_sectiion {
    padding-bottom: 0;
  }

  .hero_slide_wrapper {
    height: 100%;
  }

  .hero_tagline_div {
    width: 65%;
    margin-bottom: 0%;
    margin-left: 0%;
    padding-left: 7%;
    padding-right: 7%;
    bottom: 9%;
    left: 9%;
  }

  .hero_img_div {
    width: 100%;
  }

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

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

  .wrapper_div.center {
    width: 90%;
  }

  .wrapper_div.center.left_margin {
    width: auto;
    margin-left: 0%;
  }

  .wrapper_div.doc, .wrapper_div.inner {
    width: 100%;
  }

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

  .two_columns_grid {
    grid-column-gap: 3svw;
  }

  .two_columns_grid.top_margin {
    margin-top: 15%;
  }

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

  .hp_img_div {
    height: 500px;
  }

  .why_choose_section {
    padding-right: 10%;
  }

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

  .callout_headline {
    font-size: 1.1rem;
    line-height: 1.2rem;
  }

  .gallery_img_div {
    height: 500px;
  }

  .gallery_content_div {
    width: 50%;
  }

  .doc_section {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 35%;
  }

  .services_btn {
    padding-top: 115%;
    font-size: 1.4rem;
    line-height: 1.6rem;
  }

  .ipl_section {
    padding-right: 10%;
  }

  .ipl_callout_wrapper {
    width: 80%;
    margin-left: 10%;
  }

  .google_logo_div {
    width: 25%;
  }

  .feature_testimonials_img_div, .appointment_callout_img_div {
    height: 600px;
  }

  .appointment_headline {
    font-size: 1.5rem;
    line-height: 1.6rem;
  }

  .newsletter_wrapper {
    height: 600px;
  }

  .newsletter_headline {
    font-size: 1.5rem;
    line-height: 1.6rem;
  }

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

  .locations_cell {
    padding-bottom: 7%;
  }

  .nav_dropdown {
    display: block;
  }

  .dropdown_toggle {
    text-align: right;
    padding-right: 20px;
    display: block;
  }

  .dropdown_icon {
    margin-right: 5px;
  }

  .static_btns_wrapper {
    justify-content: center;
    align-items: stretch;
    width: 100%;
  }

  .decor_icon_div1 {
    width: 20%;
    top: 22.5%;
    right: 13%;
  }

  .decor_div2 {
    bottom: -4%;
    right: 10%;
  }

  .menu_btn {
    background-color: var(--dark-pink);
    color: var(--black);
  }

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

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

  .navigation {
    background-color: #e0d0ca;
  }

  .subpage_link {
    font-size: 1.1rem;
    line-height: 1.2rem;
  }

  .inner_hero_wrapper {
    height: 650px;
  }

  .innerpage_section.left {
    padding-left: 10%;
  }

  .innerpage_section.right {
    padding-right: 10%;
  }

  .innerpage_img_div {
    height: 400px;
  }

  .inner_appointment_img_div {
    height: 500px;
  }

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

  .inner_hero_decor_div {
    width: 100px;
    bottom: -7%;
    left: 2%;
  }
}

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

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

  .navbar {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5%;
    position: static;
  }

  .logo {
    width: 120px;
    position: static;
  }

  .hero_sectiion {
    height: 450px;
  }

  .hero_slide_wrapper {
    margin-top: 0%;
  }

  .hero_tagline_div {
    width: 75%;
  }

  .hero_img_div {
    height: 100%;
  }

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

  .hero_img {
    object-fit: cover;
    object-position: 50% 0%;
  }

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

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

  .hp_img_div {
    height: 400px;
  }

  .callout_wrapper {
    padding-top: 5%;
  }

  .gallery_img {
    object-position: 50% 50%;
  }

  .gallery_section_header {
    letter-spacing: 5px;
    font-size: .8rem;
  }

  .doc_img_div {
    height: 300px;
  }

  .services_btn {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .ipl_callout_wrapper {
    width: 85%;
    margin-top: -17%;
    margin-left: 7%;
  }

  .google_logo_div {
    width: 35%;
  }

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

  .appointment_callout_img_div {
    height: 400px;
  }

  .newsletter_wrapper {
    height: 520px;
  }

  .footer_wrapper.bottom {
    flex-flow: column;
  }

  .footer_logo {
    width: 200px;
  }

  .static_btns_wrapper {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    position: static;
  }

  .static_btn {
    flex: none;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    font-size: .9rem;
    line-height: .9rem;
  }

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

  .ipl_conten_div {
    margin-left: 10px;
  }

  .decor_icon_div1 {
    top: 26.5%;
  }

  .menu_btn {
    margin-top: 15px;
  }

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

  .inner_hero_wrapper {
    height: 500px;
  }

  .innerpage_header {
    font-size: 2.8rem;
  }

  .innerpage_img_div {
    height: 300px;
  }

  .inner_hero_decor_div {
    width: 70px;
    bottom: -6%;
    left: 81%;
  }
}

@media screen and (max-width: 479px) {
  .hero_slide_arrow {
    width: 30px;
  }

  .hero_tagline_div {
    width: 90%;
    left: 5%;
  }

  .hero_tagline {
    font-size: 1.5rem;
    line-height: 1.6rem;
  }

  .hero_img {
    object-position: 70% 0%;
  }

  .welcome_headline {
    font-size: 2.2rem;
    line-height: 2.4rem;
  }

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

  .hp_img_div {
    height: 300px;
  }

  .why_choose_section, .promise_section {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .gallery_img {
    object-position: 70% 50%;
  }

  .gallery_content_div {
    background-color: #00000075;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    inset: auto auto 0% 0%;
  }

  .gallery_section_header {
    margin-bottom: 0;
  }

  .services_btn {
    padding-top: 102%;
    font-size: 1.4rem;
  }

  .ipl_callout_wrapper {
    flex-flow: column;
    width: 100%;
    margin-left: 0%;
    padding-left: 8%;
    padding-right: 8%;
  }

  .appointment_callout_txt {
    font-size: 1rem;
  }

  .reviews_header_wrapper {
    flex-flow: column;
  }

  .google_logo_div {
    width: auto;
    margin-bottom: 22px;
  }

  .feature_testimonials_img_div {
    height: 700px;
  }

  .feature_testimonials_img {
    object-position: 35% 25%;
  }

  .feature_testimonials_text {
    font-size: 1rem;
  }

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

  .blog_wrapper {
    padding: 27px;
  }

  .blog_img_div {
    height: 200px;
  }

  .appointment_newsletter_section {
    background-size: auto 70%;
  }

  .newsletter_wrapper {
    height: 620px;
  }

  .footer_section {
    padding-top: 10%;
  }

  .hours_text {
    margin-bottom: 25px;
  }

  .footer_logo {
    width: 180px;
  }

  .static_btns_wrapper {
    flex-flow: column;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0%;
  }

  .static_btn {
    justify-content: flex-start;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 18px;
  }

  .hero_tagline_div2 {
    width: 90%;
    bottom: 3%;
  }

  .hero_tagline_div3 {
    width: 90%;
  }

  .ipl_conten_div {
    margin-left: 0;
  }

  .ipl_callout_icon {
    width: 35%;
    margin-bottom: 29px;
    margin-left: 7px;
  }

  .italic-text {
    font-size: 1.4rem;
  }

  .italic-text-2 {
    font-size: 1.3rem;
    line-height: 1.6rem;
  }

  .feature_section {
    padding-left: 10%;
  }

  .feature_section2 {
    padding-right: 10%;
  }

  .inner_hero_wrapper {
    height: 300px;
    padding-top: 0;
  }

  .inner_page_header_div {
    text-align: center;
    width: 100%;
    height: 300px;
    padding-bottom: 10%;
  }

  .innerpage_header {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }

  .innerpage_section.left, .innerpage_section.right, .innerpage_section.first {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .innerpage_img_div {
    height: 250px;
  }

  .inner_appointment_img_div {
    height: 450px;
  }

  .inner_appointment_headline {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  .appointment_callout_text {
    font-size: 1rem;
    line-height: 1.8rem;
  }

  .inner_hero_decor_div {
    display: none;
  }
}

#w-node-a800a5de-9128-e0db-36fd-27082e2e7e8b-a5d355e7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
}

#w-node-fb287e9c-fa77-aef1-843c-6700543db421-a5d355e7 {
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

#w-node-f4af12dc-cfbc-12c6-e2b5-2827604ed852-a5d355e7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-d501f0bb-9af7-e478-f25d-0cd671cacf2c-a5d355e7 {
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

#w-node-_04a3ab61-f756-e3c4-d886-a48370096aa7-a5d355e7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
}

#w-node-_502bd944-64d2-e470-a4b5-71f13f8c71b0-a5d355e7 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: none;
}

#w-node-_6c085cd9-16a2-52cd-88fb-4af501c7845d-a5d355e7 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_78374294-a333-6d0f-fac5-d83a6239d5c9-a5d355e7 {
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

#w-node-_7748353d-bd9e-0eb8-0028-103a1ab05f38-a5d355e7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
}

#w-node-a0628bac-0c89-017b-1908-2055e3c62ad4-a5d355e7 {
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

#w-node-_1f3a5dd4-00e0-97d0-218f-204edca24bc4-a5d355e7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#w-node-_7ae81482-f890-346e-a19e-513af35c78b5-a5d355e7, #w-node-b984d45a-4384-0bfd-f686-0ce913d0b5b5-a5d355e7, #w-node-_288cc38f-7c17-d6af-47c6-6fd8dfd2ae82-a5d355e7, #w-node-_1a48a1ed-0fae-45af-f5f7-0a8e90c8f6ce-a5d355e7, #w-node-_31859828-655d-5330-13f9-ac5f6832d0b0-a5d355e7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-a231edaf-4ce1-aa70-25e4-c440124d081f-67e4d803 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
}

#w-node-b51c061d-5deb-4d5b-d17c-b223c9ebe314-67e4d803 {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

#w-node-f5f0a9ba-30b1-6925-5478-e582be2c2f46-67e4d803 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
}

#w-node-_8e8b9dbe-1584-18a1-f4da-575e3846878b-67e4d803 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#w-node-c067f542-c261-01cc-b017-c3ad1560cf6e-67e4d803 {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

#w-node-_2126fad2-5406-f69a-62c2-2e88d3ca92dc-67e4d803 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
}

#w-node-_9ff475b3-5ce7-14e9-7cdf-6c5a1090aba1-67e4d803, #w-node-_9ff475b3-5ce7-14e9-7cdf-6c5a1090aba5-67e4d803, #w-node-_9ff475b3-5ce7-14e9-7cdf-6c5a1090abc9-67e4d803 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 991px) {
  #w-node-a800a5de-9128-e0db-36fd-27082e2e7e8b-a5d355e7, #w-node-fb287e9c-fa77-aef1-843c-6700543db421-a5d355e7, #w-node-d501f0bb-9af7-e478-f25d-0cd671cacf2c-a5d355e7, #w-node-_04a3ab61-f756-e3c4-d886-a48370096aa7-a5d355e7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_502bd944-64d2-e470-a4b5-71f13f8c71b0-a5d355e7, #w-node-_6c085cd9-16a2-52cd-88fb-4af501c7845d-a5d355e7 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_78374294-a333-6d0f-fac5-d83a6239d5c9-a5d355e7, #w-node-a0628bac-0c89-017b-1908-2055e3c62ad4-a5d355e7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_1f3a5dd4-00e0-97d0-218f-204edca24bc4-a5d355e7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-_288cc38f-7c17-d6af-47c6-6fd8dfd2ae82-a5d355e7, #w-node-a231edaf-4ce1-aa70-25e4-c440124d081f-67e4d803, #w-node-b51c061d-5deb-4d5b-d17c-b223c9ebe314-67e4d803, #w-node-f5f0a9ba-30b1-6925-5478-e582be2c2f46-67e4d803 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_8e8b9dbe-1584-18a1-f4da-575e3846878b-67e4d803 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-c067f542-c261-01cc-b017-c3ad1560cf6e-67e4d803, #w-node-_2126fad2-5406-f69a-62c2-2e88d3ca92dc-67e4d803, #w-node-_9ff475b3-5ce7-14e9-7cdf-6c5a1090aba1-67e4d803 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f4af12dc-cfbc-12c6-e2b5-2827604ed852-a5d355e7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_1f3a5dd4-00e0-97d0-218f-204edca24bc4-a5d355e7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_7ae81482-f890-346e-a19e-513af35c78b5-a5d355e7, #w-node-b984d45a-4384-0bfd-f686-0ce913d0b5b5-a5d355e7 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_8e8b9dbe-1584-18a1-f4da-575e3846878b-67e4d803 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_502bd944-64d2-e470-a4b5-71f13f8c71b0-a5d355e7, #w-node-_6c085cd9-16a2-52cd-88fb-4af501c7845d-a5d355e7 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_7748353d-bd9e-0eb8-0028-103a1ab05f38-a5d355e7, #w-node-_1f3a5dd4-00e0-97d0-218f-204edca24bc4-a5d355e7, #w-node-_1a48a1ed-0fae-45af-f5f7-0a8e90c8f6ce-a5d355e7, #w-node-_31859828-655d-5330-13f9-ac5f6832d0b0-a5d355e7, #w-node-_8e8b9dbe-1584-18a1-f4da-575e3846878b-67e4d803, #w-node-_9ff475b3-5ce7-14e9-7cdf-6c5a1090aba5-67e4d803, #w-node-_9ff475b3-5ce7-14e9-7cdf-6c5a1090abc9-67e4d803 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


