:root {
  --grey: #414042;
  --black: #000;
  --blue: #0095ca;
  --lighter-blue: #4fc3f1;
  --white: white;
  --light-yellow: #fef6c9;
  --yellow: #f9c784;
}

.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: var(--grey);
  font-family: Manrope, sans-serif;
  font-size: 1rem;
  line-height: 1rem;
}

h1 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Oswald, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
}

h2 {
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Oswald, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 2rem;
}

h3 {
  color: var(--blue);
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Manrope, sans-serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5rem;
}

h4 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Oswald, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3rem;
}

h5 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Oswald, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.1rem;
}

p {
  color: var(--grey);
  margin-bottom: 30px;
  line-height: 1.6rem;
}

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

a:hover {
  color: var(--lighter-blue);
}

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

li {
  margin-bottom: 10px;
}

.navbar {
  z-index: 100;
  background-color: #fff0;
  justify-content: space-between;
  align-items: center;
  padding-left: 5%;
  padding-right: 2%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar.inner {
  background-color: #fff;
}

.site-navigation ul ul {
  border-radius: 0px 5px 5px;
  border: 1px solid #0095ca;
}

.gl-top-level > li {
  border-radius: 5px;
}

.logo {
  opacity: 0;
  flex: 0 auto;
  width: 100px;
  margin-right: auto;
  display: block;
}

.logo.inner {
  opacity: 1;
}

.hero_section {
  background-image: url('../images/hero-img.jpg');
  background-position: 50% 20%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100svh;
}

.navlink {
  color: #000;
  text-transform: uppercase;
  border-radius: 5px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Oswald, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.navlink:hover {
  background-color: var(--blue);
  color: var(--white);
}

.navlink.dropdown {
  padding-left: 0;
  padding-right: 0;
}

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

.hero_logo {
  width: 250px;
  margin-bottom: 0%;
  position: absolute;
  inset: 20px auto auto -10%;
}

.main_tagline {
  color: var(--black);
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Oswald, sans-serif;
  font-size: 4.5rem;
  font-weight: 200;
  line-height: 4rem;
}

.maintagline_medium {
  font-weight: 400;
}

.main_tagline_div {
  border-top: 1px none var(--blue);
  width: 100%;
  margin-top: 25%;
  padding-top: 0;
}

.main_subtagline {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8rem;
}

.main_btns_wrapper {
  justify-content: flex-start;
  align-items: center;
  margin-top: 8%;
  display: flex;
}

.hero_btn {
  background-color: var(--blue);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  padding: 20px 30px;
  font-family: Oswald, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  text-decoration: none;
  display: flex;
}

.hero_btn:hover {
  background-color: var(--light-yellow);
  color: var(--black);
}

.hero_btn._2 {
  background-color: var(--black);
  color: var(--white);
  font-weight: 300;
}

.hero_btn._2:hover {
  background-color: var(--yellow);
  color: var(--black);
}

.top_phone_btn {
  color: var(--black);
  justify-content: center;
  align-items: center;
  margin-left: 40px;
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.top_phone_btn:hover {
  opacity: .82;
  color: var(--blue);
}

.site-navigation .top_phone_btn a {
  color: transparent;
  width: 26px;
  height: 26px;
  padding: 0;
}

.site-navigation .top_phone_btn a:hover {
  background-color: transparent;
  color: transparent;
}

.site-navigation .top_phone_btn a::before {
  content: '';
  width: 26px;
  height: 26px;
  background: url('../images/phone-icon.svg');
  background-size: contain;
  display: block;
}

.site-navigation .top_phone_btn a::before:hover {
  opacity: .7;
}

li.top_phone_btn {
  background: transparent !important;
}

.glacial-top-banner {
  box-shadow: unset !important; 
  padding: 0px 2% 0 5% !important;
}

body:not(.home) .glacial-top-banner {
  background-color: #fff;
}

body.home .glacial-top-banner.has-scrolled {
  background: #fff;
  opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: .5s;
}

body.home .w-nav-brand {
  opacity: 0;
}

body.home .has-scrolled a.brand.w-nav-brand {
  display: block;
  opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: .2s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.line_div {
  background-image: linear-gradient(130deg, var(--blue), var(--lighter-blue));
  width: 150px;
  height: 5px;
  margin-bottom: 40px;
}

.welcome_section {
  padding: 10%;
}

.hp_headline {
  color: var(--black);
  font-family: Oswald, sans-serif;
  font-weight: 400;
}

.hp_headline.no_margin {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 2.6rem;
}

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

.hp_headline.appointment {
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 200;
}

.welcome_grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  padding: 0;
  display: grid;
}

.hp_subheadline {
  font-family: Open Sans, sans-serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
}

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

.p_nomargin {
  color: var(--grey);
  margin-bottom: 0;
}

.welcome_img_wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.blue_dot_div {
  opacity: .78;
  background-color: #4fc3f100;
  border-radius: 0%;
  width: 60%;
  height: auto;
}

.blue_dot_div._2 {
  width: 80%;
}

.welcome_grid_wrapper {
  z-index: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.welcome_img_grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  width: 100%;
  padding: 0;
  display: grid;
}

.callouts_section {
  background-color: #ececec;
  background-image: url('../images/bg-img2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 7% 10%;
}

.callouts_section._2 {
  background-image: url('../images/bg-img.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
}

.button {
  background-color: var(--blue);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 5px;
  padding: 19px 30px;
  font-family: Oswald, sans-serif;
}

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

.button.learn {
  background-color: var(--black);
  margin-top: 10px;
}

.button.learn:hover {
  background-color: var(--yellow);
  color: var(--black);
}

.welcome_img_div {
  border: 1px solid #fff;
  border-radius: 5px;
  width: 100%;
  height: 350px;
  overflow: hidden;
  box-shadow: 0 20px 50px 3px #00000029;
}

.welcome_img_div.horizonatal {
  width: 80%;
  height: 200px;
}

.welcome_img_div._2 {
  height: 250px;
}

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

.welcome_img._3 {
  object-position: 100% 0%;
}

.welcome_img._4 {
  object-position: 40% 20%;
}

.space_div {
  height: 100px;
}

.header_wrapper_center {
  text-align: center;
  margin-bottom: 5%;
}

.header_wrapper_center.no_margin {
  margin-bottom: 0%;
}

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

.choose_cell {
  text-align: center;
  background-color: #ffffffc7;
  border: 1px solid #0000001f;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  padding: 32px 37px;
  box-shadow: 0 20px 20px 7px #00000014;
}

.choose_headline {
  color: var(--blue);
  text-align: center;
  text-transform: uppercase;
  background-color: #ececec00;
  height: 50px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Oswald, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.procedure_section {
  padding: 7% 10%;
}

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

.procedure_headline_cell, .procedure_text_cell {
  justify-content: center;
  align-items: flex-start;
}

.procedure_img_cell {
  align-items: stretch;
}

.hp_img_div {
  border: 1px solid #fff;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 10px 30px 20px #00000012;
}

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

.hp_img._1 {
  object-position: 30% 50%;
}

.faqs_section {
  color: var(--white);
  background-image: radial-gradient(circle at 50% 0, #046a8f, #003244);
  padding: 7% 10%;
}

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

.question_cell {
  text-align: left;
  align-items: stretch;
}

.faq_question {
  color: var(--light-yellow);
  font-family: Open Sans, sans-serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
}

.benefits_section {
  padding: 7% 10%;
}

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

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

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

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

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

.appointment_section {
  color: var(--white);
  background-color: #003244;
  background-image: url('../images/breathe-decor-white.svg'), radial-gradient(circle at 50% 0, #036a8f, #003244);
  background-position: 20%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto 90%, auto;
  padding: 7% 10%;
}

.appointment_btn {
  border: 1px solid var(--white);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 10px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 30%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 27px;
  font-family: Oswald, sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.2rem;
  display: flex;
}

.appointment_btn:hover {
  background-color: var(--white);
  color: var(--black);
}

.footer_section {
  background-image: linear-gradient(#fff6, #fff6), url('../images/bg-img2.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding: 5% 5% 50px;
}

.callout_cell {
  text-align: center;
  background-color: #0000000d;
  border: 1px #00000061;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  padding: 25px 20px;
  line-height: 1.2rem;
}

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

.arrow_img {
  width: 30px;
}

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

.logo_icon {
  height: 150px;
}

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

.phone_icon.footer {
  width: 26px;
  margin-bottom: 0;
  margin-right: 10px;
}

.phone_text {
  display: none;
}

.footer_info_wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer_logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer_slogan {
  color: var(--blue);
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 1.1rem;
  line-height: 1.2rem;
}

.copyright_text {
  margin-top: 10px;
  font-size: .9rem;
}

.address_text {
  text-align: left;
  font-weight: 600;
}

.footer_phone {
  color: var(--black);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15%;
  font-family: Oswald, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4rem;
  display: flex;
}

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

.location_icon {
  width: 35px;
  margin-bottom: 0;
  margin-right: 10px;
}

.quick_link {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: .85rem;
  font-weight: 500;
}

.quick_link:hover {
  color: var(--blue);
  margin-left: 10px;
  margin-right: 10px;
}

.s_wrapper {
  margin-top: 15%;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.s_div {
  display: flex;
}

.s_input {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-bottom: 0;
}

.s_button {
  background-color: var(--blue);
  color: var(--white);
  text-transform: uppercase;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  font-family: Oswald, sans-serif;
  font-size: .9rem;
  font-weight: 300;
}

.s_button:hover {
  background-color: var(--black);
  color: var(--white);
}

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

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

.soc_media_btn {
  opacity: .56;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.soc_media_btn:hover {
  opacity: 1;
}

.procedure_point_wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.point_icon {
  width: auto;
  height: 50px;
  margin-right: 15px;
}

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

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

.dropdown_toggle.w--open {
  background-color: var(--blue);
  color: var(--white);
  border-radius: 5px 5px 0 0;
}

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

.dropdown_list.w--open {
  background-color: var(--blue);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.dropdown_link {
  color: var(--white);
  background-color: #0000;
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.benefit_point_wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.answer_txt {
  color: var(--white);
  margin-bottom: 0;
}

.callout_headline {
  color: var(--blue);
  text-transform: uppercase;
  height: 60px;
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 1.6rem;
}

.callout_txt {
  font-size: 1.1rem;
  font-weight: 300;
}

.choose-icon {
  width: 150px;
  margin-bottom: 15px;
}

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

.address_wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 0%;
  display: flex;
}

.footer_grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
  margin-top: 0%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: grid;
}

.quick_links_cell {
  padding-left: 10%;
}

.map_cell {
  color: var(--light-yellow);
  align-items: stretch;
}

.footer_cell {
  padding-right: 10%;
}

.innerpage_section {
  background-color: #fff;
  padding: 10%;
}

.inner_hero_section {
  background-color: #ececec;
  background-image: url('../images/bg-img.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50svh;
  min-height: 500px;
  padding-left: 10%;
  padding-right: 10%;
}

.doctors-template-default .inner_hero_section {
  min-height: 300px;
}

.inner_hero_section h1, .inner_hero_section h3 {
  margin-bottom: 20px;
}

.inner_hero_grid {
  height: 100%;
  padding: 0;
}

.inner_hero_content_cell {
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 5%;
  /* padding-right: 10%; */
}

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

.inner_hero_img_div {
  border-radius: 5px;
  width: 450px;
  height: 450px;
  position: relative;
  bottom: -117px;
  overflow: hidden;
  box-shadow: 0 0 20px 4px #0000000d;
}

.inner_hero_img img, .inner_hero_img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#breadcrumbs {
  margin-bottom: 0px;
}

.breadcrumbs_wrapper-2 {
  border-bottom: 1px solid #0003;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 10%;
  display: flex;
}

.breadcrumbs_link {
  color: #000;
  margin-right: 0;
  font-size: .9rem;
  text-decoration: none;
}

.divider_text-2 {
  color: #8f8f8f;
  margin-left: 10px;
  margin-right: 10px;
}

.inner_img_div {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.divider_cell-2 {
  padding-top: 27px;
  padding-bottom: 27px;
}

.innerpage_grid {
  padding: 0;
}

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

.fullwidth-cell {
  padding-top: 3%;
  padding-bottom: 3%;
}

.callout_cell1 {
  background-image: url('../images/inner-hero-bg3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  padding: 48px;
}

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

.callout_cell2 {
  color: #fff;
  background-color: #252121;
  border-radius: 5px;
  justify-content: center;
  align-items: flex-start;
  padding: 5% 10%;
}

.related_pages_wrapper {
  border-top: 1px solid #000;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0%;
  margin-left: 10%;
  margin-right: 10%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.related_pages_text {
  margin-right: 10px;
  font-size: .9rem;
  font-weight: 700;
}

.related_link {
  margin-right: 15px;
  font-size: .9rem;
}

.w-tab-link.kt-tab-title, .w-tab-link.w--current {
  background-color: unset !important;
}

a.wp-block-button__link {
  border-radius: 5px !important;
  padding: 19px 30px !important;
  font-family: Oswald, sans-serif;
}

.sb-link.current-page{
    color: #333 !important;
    font-weight: bold;
}

#main h3 {
  margin-bottom: 15px;
}

.search-field {
  width: 100%;
}

.search-submit {
  border-radius: 0px;
}

.rap-btn {
  background: #0095ca !important;
}

.rap-btn a {
  color: #fff !important;
}

.gl-top-level .rap-btn > .toggle-dropdown svg {
    stroke: #fff !important;
}


@media screen and (max-width: 1450px) {
  .glacial-thank-you-template-default #breadcrumbs {
      max-width: 410px;
  }
}
@media screen and (max-width: 991px) {
  .navlink {
    border-radius: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navlink.dropdown {
    border-radius: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }

  .hero_logo {
    width: 200px;
    top: 0;
  }

  .main_tagline {
    font-size: 4rem;
  }

  .main_tagline_div {
    margin-top: 0%;
  }

  .main_subtagline {
    font-size: 1.5rem;
  }

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

  .hero_btn._2 {
    margin-top: 10px;
  }

  .welcome_section {
    padding-top: 12%;
  }

  .welcome_text_cell {
    padding-top: 22px;
  }

  .welcome_img_grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .callouts_section._2 {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .welcome_img_div {
    height: 300px;
  }

  .space_div {
    height: 60px;
  }

  .callout_grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .procedure_section, .faqs_section {
    padding-top: 10%;
    padding-bottom: 10%;
  }

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

  .benefits_text_cell {
    padding-right: 0%;
  }

  .appointment_section {
    background-position: 5%, 0 0;
    background-size: auto 60%, auto;
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .appointment_btn {
    width: 50%;
  }

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

  .arrow_img {
    width: 25px;
  }

  .phone_icon.footer {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .footer_info_wrapper {
    text-align: center;
  }

  .footer_slogan {
    line-height: 1.3rem;
  }

  .address_text {
    text-align: center;
  }

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

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

  .s_wrapper {
    margin-top: 5%;
  }

  .copyright_div {
    text-align: right;
    width: 43%;
  }

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

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

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

  .dropdown_icon {
    margin-right: 20px;
  }

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

  .menu_btn {
    color: var(--black);
    border: 1px solid #000;
  }

  .menu_btn:hover {
    border-color: var(--blue);
    background-color: var(--blue);
    color: var(--white);
  }

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

  .navmenu {
    background-color: #fff;
  }

  .address_wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .footer_grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .quick_links_cell {
    padding-top: 5%;
    padding-left: 0%;
  }

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

  .inner_hero_section {
    height: auto;
    padding-top: 116px;
  }

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

  .inner_hero_img_div {
    width: 100%;
    height: 300px;
    margin-bottom: -94px;
    bottom: 0;
  }

  .breadcrumbs_wrapper-2 {
    padding-top: 124px;
  }

  .glacial-thank-you-template-default #breadcrumbs {
    max-width: 100%;
  }

  .divider_cell-2 {
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

  h1 {
    font-size: 2.6rem;
  }

  p {
    font-size: 1.1rem;
  }

  .navbar {
    position: absolute;
  }

  .hero_section {
    height: 500px;
  }

  .main_tagline_logo_wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
    padding-top: 140px;
    inset: 0% auto auto 7%;
  }

  .hero_logo {
    width: 150px;
    left: 0%;
  }

  .main_tagline {
    margin-bottom: 10px;
    font-size: 2.6rem;
    line-height: 2.6rem;
  }

  .main_tagline_div {
    margin-top: 20px;
  }

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

  .hero_btn {
    margin-right: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 1rem;
  }

  .line_div {
    margin-bottom: 20px;
  }

  .welcome_section {
    padding-top: 20%;
  }

  .hp_headline.no_margin {
    font-size: 2rem;
  }

  .hp_subheadline {
    font-size: 1.3rem;
  }

  .welcome_text_cell {
    padding-top: 40px;
  }

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

  .callouts_section._2 {
    padding-left: 15%;
    padding-right: 15%;
  }

  .space_div {
    height: 40px;
  }

  .choose_cell {
    padding-left: 25px;
    padding-right: 25px;
  }

  .procedure_section, .faqs_section {
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .faq_question {
    font-size: 1.3rem;
  }

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

  .benefits_text_cell {
    padding-bottom: 51px;
    padding-right: 0%;
  }

  .appointment_btn {
    width: 80%;
    padding-left: 25px;
    padding-right: 25px;
  }

  .arrow_img {
    transform: rotate(90deg);
  }

  .callout_headline {
    height: auto;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }

  .callout_txt {
    font-size: 1rem;
  }
}

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

  .main_tagline_logo_wrapper {
    padding-top: 101px;
  }

  .hero_logo {
    display: none; 
  }

  body.home .w-nav-brand {
    display: block;
  }

  .glacial-top-banner {
    background: #fff;
  }

  .main_tagline {
    letter-spacing: -1px;
    font-size: 2rem;
    line-height: 2rem;
  }

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

  .main_btns_wrapper {
    margin-top: 30px;
    width: 110%;
  }

  .hero_btn {
    padding-left: 16px;
    padding-right: 16px;
    font-size: .9rem;
  }

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

  .hp_headline.white {
    font-size: 2rem;
  }

  .hp_headline.appointment {
    font-size: 1.5rem;
  }

  .welcome_img_grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

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

  .welcome_img_div {
    height: 180px;
  }

  .welcome_img_div.horizonatal {
    width: 100%;
    height: 120px;
  }

  .welcome_img_div._2 {
    height: 180px;
  }

  .space_div {
    height: 20px;
  }

  .choose_headline {
    height: auto;
    margin-bottom: 10px;
  }

  .procedure_grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .procedure_text_cell {
    padding-top: 43px;
  }

  .benefits_section {
    padding-bottom: 100px;
  }

  .appointment_section {
    background-image: radial-gradient(circle at 50% 0, #036a8f, #003244);
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    padding-top: 20%;
    padding-bottom: 20%;
  }

  .appointment_btn {
    width: 100%;
    padding-left: 21px;
    padding-right: 21px;
    font-size: 1.1rem;
  }

  .footer_section {
    padding-top: 15%;
  }

  .logo_icon {
    height: 80px;
  }

  .footer_slogan {
    font-size: 1.1rem;
  }

  .copyright_text {
    line-height: 1.1rem;
  }

  .footer_phone {
    margin-bottom: 15%;
  }

  .s_wrapper {
    margin-top: 15%;
    width: 100%;
  }

  .footer_wrapper {
    flex-flow: column;
    margin-top: 15%;
  }

  .copyright_div {
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }

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

  .site-navigation ul ul {
    border: 0px;
    border-radius: 0px;
  }

  body.home .has-scrolled a.brand.w-nav-brand, body.home .glacial-top-banner.has-scrolled {
      animation-duration: unset;
  }

  .button.centered {
    margin: 0 auto;
  }

  .single-doctor-img-info {
    margin-bottom: 30px;
  }

}

#w-node-a871abfa-1c04-5473-2436-d2b2718f6cbc-c1420363 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

#w-node-_2bbb3b91-a186-92bd-e2cc-93287472b607-c1420363 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

#w-node-_2bbb3b91-a186-92bd-e2cc-93287472b608-c1420363, #w-node-_5dcf9d32-f194-951d-7a63-273c7d174c30-c1420363 {
  grid-row: span 2 / span 2;
  display: grid;
}

#w-node-_6a8df025-7099-c136-ee91-76ce5813cba8-c1420363 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  display: grid;
}

#w-node-_276c4837-1eec-d511-06ce-6632ff8ff998-c1420363 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

#w-node-fe650f78-3d64-4dbc-ad3b-7de6a672e315-c1420363 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr 1fr;
  display: grid;
}

#w-node-b0e67ffe-dcbb-c1b3-e94a-f264838d75b4-c1420363 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

#w-node-e3d309a0-b11b-2a32-af94-720ec866bf12-c1420363 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

#w-node-e3d309a0-b11b-2a32-af94-720ec866bf13-c1420363 {
  grid-row: span 2 / span 2;
  display: grid;
}

#w-node-e3d309a0-b11b-2a32-af94-720ec866bf14-c1420363 {
  grid-row: span 3 / span 3;
  display: grid;
}

#w-node-_92e3a447-dad5-073a-96e3-5db3a5ad7c38-c1420363 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr 1fr .25fr 1fr .25fr 1fr;
  display: grid;
}

#w-node-a2a404ea-9a3f-107b-9322-7c47d0d562dd-c1420363 {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1.5fr .75fr;
  display: grid;
}

#w-node-_8f0b3391-0547-037a-9d61-d012021119c5-d74b9d84 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

#w-node-b151b837-93dd-58be-86db-6c2fa10ea768-d74b9d84 {
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  display: grid;
}

#w-node-b151b837-93dd-58be-86db-6c2fa10ea769-d74b9d84 {
  grid-column: span 2 / span 2;
  display: grid;
}

#w-node-b151b837-93dd-58be-86db-6c2fa10ea76c-d74b9d84 {
  grid-column: span 3 / span 3;
  display: grid;
}

#w-node-b151b837-93dd-58be-86db-6c2fa10ea773-d74b9d84 {
  grid-column: span 5 / span 5;
  display: grid;
}

#w-node-b151b837-93dd-58be-86db-6c2fa10ea77a-d74b9d84 {
  grid-column: span 3 / span 3;
  display: grid;
}

#w-node-b151b837-93dd-58be-86db-6c2fa10ea781-d74b9d84, #w-node-b151b837-93dd-58be-86db-6c2fa10ea790-d74b9d84 {
  grid-column: span 2 / span 2;
  display: grid;
}

#w-node-b151b837-93dd-58be-86db-6c2fa10ea793-d74b9d84 {
  grid-column: span 3 / span 3;
  display: grid;
}

#w-node-_8a6d55aa-a5a4-ba95-5533-90002ba5e4a6-d74b9d84 {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1.5fr .75fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  #w-node-a871abfa-1c04-5473-2436-d2b2718f6cbc-c1420363 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_6a8df025-7099-c136-ee91-76ce5813cba8-c1420363 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_276c4837-1eec-d511-06ce-6632ff8ff998-c1420363, #w-node-b0e67ffe-dcbb-c1b3-e94a-f264838d75b4-c1420363 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_92e3a447-dad5-073a-96e3-5db3a5ad7c38-c1420363 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 30px 1fr 30px;
  }

  #w-node-a2a404ea-9a3f-107b-9322-7c47d0d562dd-c1420363, #w-node-_8f0b3391-0547-037a-9d61-d012021119c5-d74b9d84 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-b151b837-93dd-58be-86db-6c2fa10ea768-d74b9d84 {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-b151b837-93dd-58be-86db-6c2fa10ea769-d74b9d84, #w-node-b151b837-93dd-58be-86db-6c2fa10ea76c-d74b9d84, #w-node-b151b837-93dd-58be-86db-6c2fa10ea773-d74b9d84, #w-node-b151b837-93dd-58be-86db-6c2fa10ea77a-d74b9d84, #w-node-b151b837-93dd-58be-86db-6c2fa10ea781-d74b9d84, #w-node-b151b837-93dd-58be-86db-6c2fa10ea790-d74b9d84, #w-node-b151b837-93dd-58be-86db-6c2fa10ea793-d74b9d84 {
    grid-column: span 2 / span 2;
  }

  #w-node-_8a6d55aa-a5a4-ba95-5533-90002ba5e4a6-d74b9d84 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_92e3a447-dad5-073a-96e3-5db3a5ad7c38-c1420363 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_6a8df025-7099-c136-ee91-76ce5813cba8-c1420363, #w-node-fe650f78-3d64-4dbc-ad3b-7de6a672e315-c1420363 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}
