:root {
  --steel-blue: #3278a3;
  --grey: #555;
  --dark-green: #07502d;
  --cadet-green: #709b87;
  --dark-sea-green: #c3e3d8;
  --dark-khaki: #ccbb2d;
  --white: white;
  --dim-grey: #777;
  --white-smoke: #f6f6f6;
  --gainsboro: #e4e4e4;
  --silver: #c5c5c5;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

body {
  color: #333;
  margin-left: 200px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

h1 {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 2.4em;
  font-weight: 700;
  line-height: 1.2em;
}

h2 {
  color: var(--steel-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  color: var(--grey);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.4em;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Muli, sans-serif;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 24px;
}

h5 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

p {
  margin-bottom: 15px;
  font-family: Muli, sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.4em;
}

a {
  color: var(--steel-blue);
  font-size: 1em;
  line-height: 1.3em;
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: #4aa8e2;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-family: Muli, sans-serif;
  font-weight: 300;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-family: Muli, sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 22px;
}

.grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.color-1 {
  background-color: var(--steel-blue);
}

.color-2 {
  background-color: var(--dark-green);
}

.color-3 {
  background-color: var(--cadet-green);
}

.color-4 {
  background-color: var(--dark-sea-green);
}

.color-5 {
  background-color: var(--dark-khaki);
}

.button {
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border: 3px #0000;
  border-radius: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: .9em;
  font-weight: 400;
  line-height: 1.1em;
  transition: background-position .45s cubic-bezier(.25, .46, .45, .94);
  box-shadow: 0 4px 11px #0003;
}

.button:hover {
  color: var(--white);
  background-position: 100% 100%;
}

.button.blue-btn {
  background-color: var(--steel-blue);
  background-image: url('../images/blue-bg-2.jpg');
  background-position: 50% 0;
  background-size: cover;
}

.button.blue-btn:hover {
  background-position: 100% 100%;
  background-repeat: no-repeat;
}

.button.blue-btn.payment0bnt, .button.blue-btn.bottom-pg-cta {
  margin-bottom: 20px;
}

.button.dark-green-btn {
  background-image: url('../images/darkgreen-btn-bg.jpg');
}

.button.mid-green-btn {
  background-image: url('../images/med-grn-btn-b.jpg');
}

.button.light-green-btn {
  background-image: url('../images/light-grn-btn-bg.jpg');
}

.button.gold-btn {
  background-image: url('../images/gold-btn-ng.jpg');
}

.button.sidebar-btn-styles {
  box-shadow: none;
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.button.sidebar-btn-styles.dark-gold-btn {
  background-image: url('../images/dark-gold-btn.jpg');
}

.body-3 {
  color: var(--grey);
}

.link-2 {
  color: var(--dark-khaki);
}

.navigation-bar {
  z-index: 9999;
  background-color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  width: 200px;
  height: 100vh;
  max-height: 100vh;
  padding: 10px;
  display: flex;
  position: fixed;
  inset: 0% auto 0% 0%;
  box-shadow: 6px 6px 10px -3px #3278a333;
}

.hero-section {
  background-image: url('../images/tree-logo-overlay_1tree-logo-overlay.webp'), linear-gradient(167deg, #3278a380, #9dd4ae80);
  background-position: 112% 180%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto 75%, auto;
  height: 99vh;
  min-height: 600px;
  max-height: 1000px;
}

.navbar {
  background-color: #0000;
  flex-direction: column;
  display: flex;
}

.nav-menu {
  text-transform: uppercase;
  flex-direction: column;
  font-size: .9em;
  display: flex;
}

.container {
  width: 100%;
  max-width: 1140px;
  min-height: 50px;
  margin-left: auto;
  margin-right: auto;
}

.container.about-sec {
  display: flex;
}

.container.services-sec {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.phone-cta-btns-wrapper {
  box-shadow: none;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  padding-top: 3px;
  padding-bottom: 3px;
  display: flex;
  overflow: auto;
}

.nav-logo {
  padding-right: 10px;
}

.nav-link {
  margin-left: auto;
  margin-right: auto;
  padding-top: 7px;
  padding-bottom: 7px;
  font-weight: 700;
  transition: color .2s;
}

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

.nav-link.home {
  padding-right: 40px;
}

.nav-link.home.w--current {
  border: 2px none var(--steel-blue);
  color: var(--steel-blue);
  border-radius: 5px;
  padding-right: 40px;
  box-shadow: inset 1px 1px 3px #0000001a;
}

.sidebar-btn-label {
  color: var(--grey);
  background-color: #fff;
  margin-bottom: 0;
  padding: 0;
  font-family: Muli, sans-serif;
  font-size: .9em;
  font-weight: 300;
  line-height: 1.4em;
}

.background-video {
  background-image: url('../images/hero-bot-border.png');
  background-position: 50% 101%;
  background-repeat: no-repeat;
  background-size: 100% 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.hero-content-container {
  width: 75%;
  min-height: 50px;
}

.hero-subline {
  margin-bottom: 0;
  font-size: 1.4em;
}

.hero-heading {
  font-size: 4.6em;
  line-height: 1em;
}

.location-info-section {
  background-image: url('../images/grey-bg-swoosh.png'), url('../images/left-tree-grey-bg_1left-tree-grey-bg.webp');
  background-position: -190px 100%, -70px 80%;
  background-repeat: no-repeat, no-repeat;
  background-size: 890px, auto 80%;
  min-height: 50px;
  padding-bottom: 270px;
  padding-left: 50px;
  padding-right: 50px;
}

.location-card-wrapper {
  flex-wrap: wrap;
  place-content: space-between space-around;
  margin-top: 0;
  transition: opacity .2s;
  display: flex;
}

.location-card-wrapper.top-row {
  border-top: 1px #000;
  justify-content: space-between;
  margin-top: -60px;
  position: relative;
}

.location-card-wrapper.bottom-row {
  justify-content: space-between;
  display: flex;
  position: static;
}

.location-block {
  background-color: var(--white);
  text-align: center;
  border-top: 1px #f3f3f3;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30%;
  min-width: 215px;
  max-width: none;
  min-height: 100px;
  margin-bottom: 30px;
  padding: 20px;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: 0 9px 19px -4px #00000026;
}

.location-block:hover {
  box-shadow: -1px 9px 19px -4px #9dd4ae4d;
}

.location-block.wide50 {
  width: 48%;
  min-width: auto;
}

.location-block.wide50._50 {
  width: 49%;
}

.location-card-icon {
  margin-bottom: 20px;
}

.location-heading {
  color: var(--dim-grey);
  font-size: 1.6em;
}

.email-link {
  color: var(--cadet-green);
  font-size: .8em;
  line-height: 1.1em;
  transition: all .2s;
}

.email-link:hover {
  color: var(--dark-green);
}

.break {
  display: inline-block;
}

.phone-link {
  margin-bottom: 10px;
  transition: all .2s;
}

.phone-link:hover {
  color: #4aa8e2;
}

.spacer-div {
  width: 40px;
}

.about-us-section {
  min-height: 50px;
  margin-top: -85px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}

.about-col-left {
  width: 60%;
}

.about-col-right {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
  min-height: 50px;
  display: flex;
}

.about-sec-subline {
  margin-bottom: 10px;
}

.about-sec-heading {
  margin-bottom: 40px;
  font-size: 2.7em;
}

.testimonial-section {
  background-color: var(--dark-sea-green);
  background-image: url('../images/quotation-icon_1quotation-icon.webp'), url('../images/top-green-bg-border-1.png');
  background-position: -29px 40px, 50% -50px;
  background-repeat: no-repeat, no-repeat;
  background-size: 320px, 2650px;
  min-height: 650px;
  padding-top: 95px;
  padding-bottom: 0;
  padding-left: 10%;
  display: flex;
}

.testimonal-col-left {
  justify-content: center;
  align-items: center;
  width: 60%;
  padding-top: 80px;
  padding-right: 0;
  display: flex;
}

.testimonial-col-right {
  justify-content: flex-end;
  align-items: flex-end;
  width: 40%;
  display: flex;
}

.left-arrow, .right-arrow {
  width: 0;
}

.slide-nav {
  color: var(--dark-green);
  display: flex;
  inset: 75% auto 0% 0%;
}

.slider-content {
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  height: 100%;
  display: flex;
}

.testimonial-text {
  font-size: 1.4em;
  font-weight: 600;
}

.testimonial-author {
  margin-bottom: 0;
  font-weight: 700;
}

.testimonial-source {
  font-style: italic;
}

.slider {
  background-color: #0000;
}

.bottom-border-section {
  background-image: url('../images/hero-bot-border.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 50px;
  position: relative;
  top: -40px;
}

.services-section {
  background-image: url('../images/gradient-tree-bg_1gradient-tree-bg.webp'), url('../images/grey-bg-swoosh.png'), url('../images/large-grey-tree-bg_1large-grey-tree-bg.webp');
  background-position: 100% 100%, 107% 111%, 80% 75%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: auto 80%, 57% 17%, auto 100%;
  min-height: 50px;
  padding: 30px 50px 250px;
}

.services-block {
  background-color: var(--white);
  text-align: center;
  border-radius: 21px;
  flex-direction: column;
  align-items: center;
  width: 30%;
  padding: 20px;
  display: flex;
  box-shadow: -1px 8px 19px -4px #3278a326;
}

.services-block.box1 {
  order: -1;
}

.services-block.box3 {
  order: 1;
}

.service-icon {
  margin-bottom: 15px;
}

.service-block-ul {
  text-align: center;
  padding-left: 0;
  font-weight: 400;
  line-height: 1.6em;
  list-style-type: none;
}

.services-description {
  color: var(--dim-grey);
  margin-bottom: 10px;
  font-size: .9em;
}

.serivce-heading {
  margin-bottom: 15px;
}

.footer-section {
  background-color: var(--white-smoke);
  min-height: 50px;
  padding: 30px 50px 10px;
}

.columns {
  align-items: center;
  display: flex;
}

.image {
  max-width: 350px;
}

.column {
  justify-content: flex-end;
  display: flex;
}

.footer-text {
  color: var(--dim-grey);
  margin-bottom: 0;
  font-size: .9em;
}

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

.footer-text.utility-pages {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.about-icon {
  max-width: 100px;
}

.grid-2 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
}

.mobile-call-cta.mobile {
  display: none;
}

.spring-nav-menu {
  z-index: 30;
  background-color: #fff;
  border-radius: 3px;
  width: 60px;
  height: 60px;
  padding: 0;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}

.spring-nav-menu.w--open {
  background-color: #fff;
}

.spring-1 {
  background-color: #333;
  border-radius: 3px;
  width: 45px;
  height: 5px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
}

.spring-2 {
  background-color: #333;
  border-radius: 3px;
  width: 45px;
  height: 5px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
}

.spring-3 {
  background-color: #333;
  border-radius: 3px;
  width: 45px;
  height: 5px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 43px;
  left: 0;
  right: 0;
}

.brand {
  max-width: 100%;
}

.service-li {
  margin-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
  line-height: 1.1em;
  transition: background-color .2s;
}

.service-li:hover {
  background-color: var(--dark-sea-green);
  border-radius: 5px;
}

.dropdown-list {
  right: -2px;
}

.dropdown-list.w--open {
  z-index: 999999;
  background-color: var(--white);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: all .3s;
  top: 5px;
  left: 155px;
  right: auto;
  overflow: hidden;
  box-shadow: 8px 4px 8px #0000001a;
}

.dropdown-link {
  border-right: 5px solid #0000;
  border-bottom: 1px solid var(--white-smoke);
  text-transform: none;
  transition: border-color .2s;
}

.dropdown-link:hover {
  border-right-color: var(--steel-blue);
  background-color: #0000;
}

.dropdown-link.w--current {
  color: var(--steel-blue);
}

.dropdown-btn {
  margin-left: auto;
  margin-right: auto;
}

.dropdown-btn.mobile-visible {
  display: none;
}

.service-mega-menu-wrapper {
  width: auto;
  overflow: visible;
}

.tabs-menu {
  width: 100%;
  display: flex;
  overflow: hidden;
}

.tab {
  border: 1px solid var(--white);
  background-color: var(--grey);
  color: var(--white);
  text-align: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 33.333%;
  min-width: 220px;
  padding: 8px 20px;
  transition: background-color .2s;
  display: flex;
  overflow: hidden;
}

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

.tab.w--current {
  background-color: var(--steel-blue);
  background-image: url('../images/angle-arrow-down.svg');
  background-position: 96%;
  background-repeat: no-repeat;
  background-size: 10px;
  overflow: visible;
  box-shadow: 1px 1px 3px #000;
}

.mega-menu-ul {
  padding-left: 0;
  list-style-type: none;
  display: block;
}

.mega-menu-li {
  white-space: normal;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.mega-menu-link {
  color: var(--grey);
  text-transform: none;
  white-space: nowrap;
  background-color: #0000;
  border-left: 3px solid #0000;
  width: auto;
  margin-right: 10px;
  padding: 0 5px;
  font-size: 1.1em;
  line-height: 1.1em;
  transition: all .2s;
}

.mega-menu-link:hover {
  border-left-color: var(--steel-blue);
  color: var(--steel-blue);
}

.mega-menu-columns {
  display: flex;
}

.tab-content {
  background-color: var(--white);
  background-image: url('../images/grey-bg-swoosh.png'), url('../images/grey-tree-bg.png'), url('../images/large-grey-tree-bg_1large-grey-tree-bg.webp');
  background-position: 100% 100%, 100% 100%, 80% 110%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 50% 15%, 120px, 170px;
  width: auto;
  padding: 27px;
}

.tabs, .tabs-content {
  overflow: visible;
}

.column-3 {
  display: block;
}

.int-pg-banner {
  background-image: url('../images/hero-bot-border.png'), url('../images/tree-logo-overlay_1tree-logo-overlay.webp'), linear-gradient(142deg, #3278a3cc, #c3e3d866), url('../images/banner-bg.jpg');
  background-position: 50% 100%, 102% 100px, 0 0, 50% 20%;
  background-repeat: no-repeat, no-repeat, repeat, repeat;
  background-size: 100% 40px, 290px, auto, cover;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.int-pg-title {
  color: var(--white);
  text-align: center;
  font-size: 3.1em;
}

.int-pg-main.top-pad-50 {
  padding-top: 50px;
}

.int-pg-service-section {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  padding: 50px 50px 60px;
}

.technologies-heading {
  text-align: center;
}

.service-slider-content {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: auto;
  padding: 20px 10px;
  display: flex;
}

.int-pg-feat-img {
  float: right;
  border: 4px solid var(--white);
  background-color: var(--grey);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  width: 40%;
  min-width: 320px;
  height: 29vw;
  min-height: 320px;
  margin-top: -60px;
  margin-bottom: 20px;
  margin-left: 30px;
  box-shadow: -1px 8px 22px -3px #0003;
}

.int-pg-feat-img.bottom60 {
  margin-bottom: 60px;
}

.int-pg-feat-img.philosophy-pg {
  background-image: url('../images/our-philosophy.jpg');
  background-position: 0%;
}

.int-pg-feat-img.gen-dent {
  background-image: url('../images/gen-dent.jpg');
}

.int-pg-feat-img.emergency-pg {
  background-image: url('../images/emergency-dent.jpg');
  background-position: 100%;
}

.int-pg-feat-img.extraction-pg {
  background-image: url('../images/extractions.jpg');
}

.int-pg-feat-img.fillings-pg {
  background-image: url('../images/fillings.jpg');
}

.int-pg-feat-img.perio-pg {
  background-image: url('../images/periodontal.jpg');
}

.int-pg-feat-img.child-dent {
  background-image: url('../images/childrens.jpg');
}

.int-pg-feat-img.mouth-guard-pg {
  background-image: url('../images/mouth-guard.jpg');
}

.int-pg-feat-img.night-guard-pg {
  background-image: url('../images/night-guards.jpg');
  background-position: 50%;
}

.int-pg-feat-img.sedation-pg {
  background-image: url('../images/nitrous-oxide.jpg');
  background-position: 100% 100%;
}

.int-pg-feat-img.cancer-exam-pg {
  background-image: url('../images/oral-exam.jpg');
}

.int-pg-feat-img.tmj-pg {
  background-image: url('../images/tmj.jpg');
}

.int-pg-feat-img.root-canal-pg {
  background-image: url('../images/root-canal.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.int-pg-feat-img.sleep-apnea-pg {
  background-image: url('../images/sleep-apnea.jpg');
}

.int-pg-feat-img.sealants-pg {
  background-image: url('../images/sealants.jpg');
  background-position: 0 100%;
}

.int-pg-feat-img.cosmetic-dent-pg {
  background-image: url('../images/cosmetic-dent.jpg');
}

.int-pg-feat-img.bonding-pg {
  background-image: url('../images/bonding.jpg');
}

.int-pg-feat-img.botox-pg {
  background-image: url('../images/botox.jpg');
}

.int-pg-feat-img.bridges-pg {
  background-image: url('../images/bridges.jpg');
}

.int-pg-feat-img.crowns-pg {
  background-image: url('../images/crown.jpg');
}

.int-pg-feat-img.juverm-pg {
  background-image: url('../images/juvederm.jpg');
}

.int-pg-feat-img.invisalign-pg {
  background-image: url('../images/invisalign.jpg');
  background-position: 50% 100%;
}

.int-pg-feat-img.veneers-pg {
  background-image: url('../images/veneers.jpg');
}

.int-pg-feat-img.teeth-whitening-pg {
  background-image: url('../images/teeth-whitening-img.jpg');
  background-position: 0%;
}

.int-pg-feat-img.ortho-pg {
  background-image: url('../images/ortho.jpg');
}

.int-pg-feat-img.restorative-dent {
  background-image: url('../images/restorative-dent.jpg');
  background-position: 100%;
}

.int-pg-feat-img.dentures-pg {
  background-image: url('../images/dentured.jpg');
  background-position: 100% 100%;
}

.int-pg-feat-img.implant-denture-pg {
  background-image: url('../images/implant-denture.jpg');
}

.int-pg-feat-img.dental-imp-pg {
  background-image: url('../images/dental-implants.jpg');
  background-position: 50%;
}

.int-pg-feat-img.first-visit-pg {
  background-image: url('../images/first-visit.jpg');
  background-position: 100%;
}

.int-pg-feat-img.pymnt-pg {
  background-image: url('../images/payment.jpg');
}

.int-pg-feat-img.spec-off-pg {
  background-image: url('../images/dental-visit.jpg');
  max-height: 500px;
}

.int-pg-feat-img.dig-cray-pg {
  background-image: url('../images/digital-xrays.jpg');
}

.int-pg-feat-img.electric-cliaims-pg {
  background-image: url('../images/offers.jpg');
}

.int-pg-feat-img.cbct-pg {
  background-image: url('../images/cone-beam-ct-acn.jpg');
}

.int-pg-feat-img.laser-dent-pg {
  background-image: url('../images/laser-dent.jpg');
}

.int-pg-feat-img.pano-xray-pg {
  background-image: url('../images/pano-xray.jpg');
}

.int-pg-feat-img.int-or-cam-pg {
  background-image: url('../images/introral.jpg');
}

.int-pg-feat-img.charting-pg {
  background-image: url('../images/paperless.jpg');
}

.int-pg-feat-img.education-pg {
  background-image: url('../images/education.jpg');
}

.int-pg-feat-img.loupes-pg {
  background-image: url('../images/loupes.jpg');
}

.int-pg-feat-img.root-canal-woodruff-wi {
  background-image: url('../images/root-canals-woodruff-wi.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.int-pg-feat-img.root-canal-recovery-woodruff-wi {
  background-image: url('../images/root-canal-recovery-woodruff-wi.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.int-pg-feat-img.bridges-woodruff-wi {
  background-image: url('../images/bridges-woodruff-wi.webp');
}

.int-pg-feat-img.extractions-woodruff-wi {
  background-image: url('../images/extractions-woodruff-wi.webp');
  background-position: 35%;
}

.int-pg-feat-img.wisdom-tooth-extraction-woodruff-wi {
  background-image: url('../images/wisdom-tooth-extraction-woodruff-wi.webp');
  background-position: 50%;
}

.int-pg-feat-img.implant-restoration-woodruff-wi {
  background-image: url('../images/implant-restoration-woodruff-wi.webp');
  background-position: 50%;
}

.int-pg-feat-img.dental-implant-woodruff-wi {
  background-image: url('../images/dental-implant-woodruff-wi.webp');
  background-position: 50%;
}

.int-pg-feat-img.periodontal-treatment-woodruff-wi {
  background-image: url('../images/periodontal-treatment-woodruff-wi.webp');
  background-position: 50%;
}

.int-pg-feat-img.fillings-woodruff-wi {
  background-image: url('../images/fillings-woodruff-wi.webp');
  background-position: 50%;
}

.int-pg-feat-img.composite-fillings-woodruff-wi {
  background-image: url('../images/composite-fillings-woodruff-wi.webp');
  background-position: 50%;
  background-size: cover;
}

.int-pg-feat-img.teeth-whitening-woodruff-wi {
  background-image: url('../images/teeth-whitening-woodruff-wi.webp');
  background-position: 0%;
  background-size: cover;
}

.int-pg-feat-img.clear-aligners-woodruff-wi {
  background-image: url('../images/clear-aligners-woodruff-wi.webp');
  background-position: 0%;
  background-size: cover;
}

.int-pg-feat-img.medford-endodontics {
  background-image: url('../images/medford-endodontics.webp');
  background-position: 50%;
  background-size: cover;
}

.int-pg-feat-img.dental-fillings-woodruff-wi {
  background-image: url('../images/dental-fillings-woodruff-wi.webp');
  background-position: 50%;
  background-size: cover;
}

.int-pg-feat-img.invisible-braces-ladysmith {
  background-image: url('../images/invisible-braces-ladysmith.webp');
  background-position: 50%;
  background-size: cover;
}

.int-pg-feat-img.laser-dentistry-park-falls {
  background-image: url('../images/laser-dentistry-park-falls.webp');
  background-position: 50%;
  background-size: cover;
}

.int-container {
  width: 100%;
  max-width: 1140px;
  min-height: 50px;
  margin-left: auto;
  margin-right: auto;
}

.int-container.cont4 {
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  margin-bottom: -25px;
  display: flex;
}

.int-container.cont4.margin40 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.staff-block {
  border-bottom: 1px solid var(--white-smoke);
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: flex;
}

.staff-block.not-bot-border {
  border-bottom-style: none;
}

.staff-block.d-none, .staff-block.hidden {
  display: none;
}

.staff-col-left {
  width: 20%;
}

.staff-col-right {
  flex: 1;
  padding-left: 30px;
}

.staff-img {
  border-radius: 10px;
}

.contact-form-section {
  background-image: url('../images/grey-bg-swoosh.png'), url('../images/top-border.png'), linear-gradient(153deg, #3278a399, #c3e3d8), url('../images/hero-trees.png'), url('../images/fresh_snow.png');
  background-position: 106% 107%, 50% 0, 0 0, 100% 100%, 0 0;
  background-repeat: no-repeat, no-repeat, repeat, no-repeat, repeat;
  background-size: 40% 75px, 100% 25px, auto, auto 100%, 125px;
  padding: 60px 50px;
}

.seperator-section {
  margin-top: 20px;
  margin-bottom: 30px;
}

.horizontal-rule {
  background-color: var(--white-smoke);
  width: 100%;
  height: 2px;
}

.image-3 {
  width: 50px;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.tree-icon-white-bg {
  background-color: var(--white);
  margin-top: -25px;
  padding: 0 10px;
}

.form-wrapper {
  background-color: var(--white);
  border-radius: 10px;
  width: 60%;
  min-height: 250px;
  padding: 30px;
}

.form-row {
  width: 49%;
}

.div-block {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

.view-all-cta {
  justify-content: flex-end;
  display: flex;
}

.int-page-slider {
  background-color: #0000;
  height: 360px;
  margin-bottom: 20px;
}

.int-page-slider.mobile {
  display: none;
}

.service-slider-block {
  border: 1px solid var(--white-smoke);
  background-color: var(--white);
  text-align: center;
  border-radius: 15px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 48%;
  height: auto;
  padding: 15px 10px;
  display: flex;
  box-shadow: 0 8px 12px -3px #3278a380;
}

.left-arrow-2 {
  color: var(--steel-blue);
  width: 35px;
  left: -50px;
}

.right-arrow-2 {
  color: var(--steel-blue);
  width: 35px;
  display: flex;
  right: -30px;
}

.service-block-icon {
  width: 50px;
  margin-bottom: 15px;
}

.button-wrapper {
  color: #ff003d;
  align-items: center;
  min-height: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
  display: flex;
  position: relative;
}

.button-background {
  border: 2px solid var(--steel-blue);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  position: absolute;
}

.button-text {
  z-index: 1;
  color: var(--steel-blue);
  text-transform: none;
  margin-left: 20px;
  margin-right: 10px;
  position: relative;
}

.button-arrow {
  filter: hue-rotate(210deg);
  color: var(--steel-blue);
  width: 15px;
  margin-right: 20px;
}

.slide-nav-2 {
  top: 345px;
}

.service-title {
  font-size: .9em;
  font-weight: 700;
  line-height: 1.2em;
}

.service-slider-blurb {
  line-height: 1.1em;
}

.slider-break-div {
  justify-content: space-around;
  width: 50%;
  display: flex;
}

.slider-break-div.mobile {
  width: 100%;
}

.slider-break-div.leftalign {
  justify-content: flex-start;
}

.service-slider-all-link {
  transition: color .2s;
}

.service-slider-all-link:hover {
  color: #52a2d3;
}

.staff-name {
  margin-bottom: 10px;
}

.last-p {
  margin-top: 0;
  margin-bottom: 30px;
}

.last-p.disclaimer-text {
  font-size: .8em;
  font-style: normal;
}

.appt-cta-section {
  background-color: var(--steel-blue);
  padding: 30px;
}

.appt-cta-heading {
  color: var(--dark-sea-green);
  margin-bottom: 0;
  font-size: 2.8em;
  line-height: 1.1em;
}

.appt-cta-subheading {
  color: var(--white);
}

.columns-2 {
  align-items: center;
  display: flex;
}

.column-5 {
  justify-content: flex-end;
  display: flex;
}

.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;
}

.reduce-line-height {
  line-height: 1em;
}

.div-block-2 {
  clear: both;
  border: 1px solid var(--white-smoke);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  padding: 15px;
  display: flex;
  box-shadow: 0 8px 12px -3px #3278a380;
}

.cancer-screen-ul-col-wrapper {
  width: 100%;
  max-width: 750px;
  min-height: 50px;
}

.cancer-screen-ul {
  list-style-type: none;
}

.cancer-screen-li {
  background-image: url('../images/services_1services.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 20px;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  font-size: 1em;
  line-height: 1em;
}

.icon, .icon-2 {
  color: var(--dark-green);
}

.patient-forms-btn-wrapper {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  min-width: auto;
  max-width: none;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.patient-form-btn {
  border: 1px solid var(--gainsboro);
  background-color: #f0f0f0;
  background-image: linear-gradient(to bottom, transparent, var(--white) 50%, transparent);
  border-radius: 10px;
  align-items: center;
  width: 48%;
  min-width: 260px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 20px;
  transition: transform .2s;
  display: flex;
}

.patient-form-btn:hover {
  transform: scale(1.02);
}

.image-4 {
  border-right: 1px none var(--dim-grey);
  width: 20px;
  max-width: none;
}

.patient-form-title {
  white-space: normal;
  margin-bottom: 0;
  font-size: .9em;
  line-height: 1em;
}

.div-block-3 {
  border-left: 1px none var(--gainsboro);
  padding-left: 10px;
}

.div-block-4 {
  border-right: 1px solid #b9b9b9;
  align-items: center;
  padding-right: 10px;
  display: flex;
}

.center {
  text-align: center;
}

.div-block-5 {
  border: 1px solid var(--gainsboro);
  background-color: var(--white);
  border-radius: 10px;
  margin-top: -70px;
  padding: 20px;
  box-shadow: 6px 6px 22px -3px #3278a366;
}

.pseudo-btn-spacer {
  width: 50%;
}

.payment-codes-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid var(--silver);
  border-radius: 10px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
  overflow: hidden;
}

.grey-bg {
  border: 1px solid var(--silver);
  background-color: #3278a326;
  padding: 2px 10px;
}

.pymnt-codes-text {
  margin-bottom: 0;
  font-weight: 400;
}

.white-bg {
  border: 1px solid var(--silver);
  padding: 2px 10px;
}

.cc-block {
  border: 1px solid var(--white-smoke);
  border-radius: 5px;
  align-items: center;
  margin-right: 15px;
  padding: 3px 14px;
  display: flex;
}

.cc-cards-wrapper {
  justify-content: center;
  align-items: stretch;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.cc-icon {
  width: 55px;
}

.bottom10 {
  margin-bottom: 10px;
}

.bottom10.capitalize {
  text-transform: capitalize;
}

.technologies-blurb {
  text-align: center;
}

.testimonial-block-wrapper {
  flex-flow: wrap;
  justify-content: space-between;
  display: flex;
}

.testimonial-block {
  float: none;
  clear: none;
  border-style: solid;
  border-width: 1px 1px 2px;
  border-color: var(--gainsboro) var(--gainsboro) var(--dim-grey);
  background-color: var(--white);
  background-image: linear-gradient(#ffffffbf, #ffffffbf), url('../images/left-quote-sketch.svg');
  background-position: 0 0, 10px 10px;
  background-repeat: repeat, no-repeat;
  background-size: auto, 100px;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  width: 49%;
  margin-bottom: 20px;
  padding: 25px 25px 10px;
  display: flex;
}

.div-block-6 {
  border-top: 1px solid var(--gainsboro);
  margin-top: 10px;
  padding-top: 10px;
  display: flex;
}

.div-block-7 {
  width: auto;
  padding-right: 15px;
  display: flex;
}

.div-block-8 {
  width: auto;
  min-height: 50px;
}

.rating-icon {
  width: 100%;
  max-width: 100px;
}

.tesitmonial-text {
  font-size: 1.2em;
}

.review-source {
  width: 30px;
}

.testimonial-text-wrapper {
  flex-direction: column;
  justify-content: center;
  height: 100%;
  display: flex;
}

.contact-info-block {
  background-color: var(--white);
  text-align: left;
  border-radius: 10px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 160px;
  margin-bottom: 15px;
  padding: 15px;
  font-size: 16px;
  line-height: 1.1em;
  display: flex;
  box-shadow: 0 1px 10px #3278a34d;
}

.contact-info-block.export-bg {
  text-align: left;
  background-image: url('../images/share.svg');
  background-position: 97%;
  background-repeat: no-repeat;
  background-size: 12px;
  min-width: auto;
  padding-right: 22px;
}

.contact-page-icon {
  width: 20px;
  margin-bottom: 0;
  margin-right: 10px;
}

.contact-info-text {
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1.2em;
}

.contact-info-wrapper {
  flex-flow: column wrap;
  place-content: space-between;
  min-width: auto;
  margin-bottom: 20px;
  display: flex;
}

.contact-page-columns {
  flex-wrap: wrap;
  align-items: stretch;
  display: flex;
}

.office-hours-wrapper {
  border: 10px none var(--silver);
  background-color: var(--white);
  border-radius: 10px;
  min-height: 50px;
  margin-bottom: 30px;
  padding: 20px;
  box-shadow: 0 1px 10px #3278a34d;
}

.hours-row {
  border-bottom: 1px solid var(--silver);
  margin-bottom: 10px;
  display: flex;
}

.hours-row.no-bot-border {
  border-bottom-style: none;
}

.business-hours-text {
  width: 50%;
  font-size: .9em;
}

.business-hours-text.left {
  width: 40%;
  margin-bottom: 5px;
}

.business-hours-text.right {
  text-align: right;
  width: 60%;
  margin-bottom: 5px;
}

.contacat-col-right {
  background-color: var(--white-smoke);
  border-radius: 10px;
  padding: 20px;
}

.contact-col-left {
  padding-right: 20px;
}

.paragraph {
  text-align: center;
  margin-bottom: 0;
  font-size: .9em;
  line-height: 1.1em;
}

.map-iframe-wrapper {
  border: 1px solid var(--silver);
  border-radius: 10px;
  overflow: hidden;
}

.html-embed {
  border: 1px none var(--silver);
  border-radius: 10px;
}

.utility-pg-container {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 750px;
  min-height: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.lottie-animation {
  width: 200px;
  height: 200px;
}

.privacy-policy-div {
  max-width: none;
}

.column-7 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding-right: 30px;
  display: flex;
}

.column-8 {
  background-color: var(--white-smoke);
  border-radius: 10px;
  margin-top: -60px;
  padding: 20px;
  position: sticky;
  top: 20px;
}

.form-heading {
  color: var(--steel-blue);
}

.location-card-heading-link {
  color: var(--grey);
}

.location-tab {
  border: 1px solid var(--steel-blue);
  background-color: var(--white);
  text-align: center;
  border-radius: 2px;
  width: 16%;
  transition: transform .2s, color .2s;
}

.location-tab:hover {
  transform: translate(0, -3px);
}

.location-tab.w--current {
  background-color: var(--steel-blue);
  color: var(--white);
  transform: translate(0, -3px);
  box-shadow: 0 3px 3px #0003;
}

.tabs-menu-2 {
  justify-content: space-between;
  display: flex;
}

.tab-pane-tab-1 {
  min-height: 50px;
}

.tab-pane {
  padding-top: 30px;
}

.blog-card {
  border-style: solid;
  border-width: 1px 1px 2px;
  border-color: var(--silver) var(--silver) var(--dim-grey);
  cursor: default;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 20px;
  padding: 19px;
}

.collection-list {
  flex-wrap: wrap;
  display: flex;
}

.div-block-9 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  height: 20vw;
  min-height: 250px;
  max-height: 325px;
  margin-bottom: 20px;
}

.collection-list-2 {
  flex-wrap: wrap;
  width: 1110px;
  display: flex;
}

.blog-heading {
  margin-bottom: 0;
  font-size: 1.5em;
}

.text-block {
  margin-bottom: 20px;
}

.blog-permalink {
  color: var(--cadet-green);
  font-weight: 700;
}

.collection-item {
  flex-wrap: wrap;
  display: flex;
}

.collection-list-wrapper {
  padding-left: 15px;
  padding-right: 15px;
}

.payment-block {
  padding-top: 5px;
  padding-bottom: 5px;
}

.html-embed-2, .payment-form {
  height: 50px;
}

.facebook-icon, .contact-page-icon-copy {
  width: 20px;
  margin-bottom: 0;
  margin-right: 10px;
}

.div-block-10 {
  flex-direction: column;
  display: flex;
  overflow: visible;
}

.shortcode {
  width: 90%;
  max-width: 90%;
  padding-top: 20px;
  padding-bottom: 40px;
}

.reviews {
  margin-top: 40px;
}

.wisconsin-logo-section, .wisconsin-logo-section.hidden {
  display: none;
}

.elfsight-widget {
  margin-top: 40px;
}

.link-block {
  position: relative;
}

.text-block-2 {
  font-family: Muli, sans-serif;
  font-weight: 300;
}

.footer-link-border {
  border-left: 1px solid var(--steel-blue);
  padding-left: 1rem;
  font-family: Muli, sans-serif;
  font-weight: 300;
  text-decoration: none;
}

.footer-link {
  font-family: Muli, sans-serif;
  font-weight: 300;
}

.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 60px;
}

.utility-pg-container-copy {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 950px;
  min-height: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.staff-block-2 {
  border-bottom: 1px solid #f6f6f6;
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: flex;
}

@media screen and (max-width: 991px) {
  body {
    margin-left: 160px;
  }

  h2 {
    font-size: 1.6em;
  }

  .navigation-bar {
    width: 160px;
  }

  .hero-section {
    background-position: 107% 128%, 0 0;
    background-size: auto 60%, auto;
    height: 70vh;
    min-height: 400px;
    max-height: 600px;
  }

  .sidebar-btn-label {
    padding-top: 0;
    padding-bottom: 0;
  }

  .background-video {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-content-container {
    width: 75%;
  }

  .hero-heading {
    font-size: 3.2em;
  }

  .location-info-section {
    background-image: url('../images/grey-bg-swoosh.png'), url('../images/left-tree-grey-bg_1left-tree-grey-bg.webp');
    background-position: -190px 100%, -90px 90px;
    background-repeat: no-repeat, no-repeat;
    background-size: 670px, 190px;
    padding-bottom: 174px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .location-block {
    width: 31%;
    min-width: auto;
  }

  .location-block.wide50 {
    width: 100%;
  }

  .location-card-icon {
    width: 40px;
  }

  .location-heading {
    font-size: 1.3em;
  }

  .spacer-div {
    width: 25px;
  }

  .about-us-section {
    margin-top: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .testimonial-section {
    background-position: -29px 20px, 50% -15%;
    background-size: 240px, 1800px;
    min-height: auto;
    padding-top: 106px;
    padding-bottom: 2px;
    padding-left: 40px;
  }

  .testimonal-col-left {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .testimonial-text {
    font-size: 1.2em;
  }

  .services-section {
    background-position: 111% 100%, 560% 111%, 80% 75%;
    background-size: auto 75%, 96% 15%, auto 100%;
    padding-bottom: 92px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .services-block {
    width: 32%;
    padding: 15px;
  }

  .services-block.box1 {
    width: 30%;
  }

  .services-block.box3 {
    order: 1;
  }

  .service-icon {
    width: 40px;
  }

  .serivce-heading {
    font-size: 1.3em;
  }

  .footer-section {
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .footer-text {
    font-size: .8em;
  }

  .about-icon {
    width: 70px;
  }

  .info-block-address {
    font-size: .9em;
    line-height: 1.2em;
  }

  .service-li {
    margin-bottom: 10px;
    line-height: 1em;
  }

  .dropdown-list.w--open {
    left: 131px;
  }

  .tab {
    min-width: 180px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .tab.w--current {
    background-position: 85%;
  }

  .tab-content {
    padding: 10px;
  }

  .column-4 {
    padding-left: 0;
  }

  .int-pg-banner {
    min-height: 300px;
  }

  .int-pg-main {
    padding-top: 38px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .int-pg-service-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .service-slider-content {
    flex-wrap: nowrap;
  }

  .int-pg-feat-img {
    width: 30%;
    min-width: 250px;
    height: 25vw;
    min-height: auto;
    margin-top: -63px;
  }

  .staff-col-left {
    width: 25%;
  }

  .staff-col-right {
    flex: none;
    width: 75%;
    padding-left: 20px;
  }

  .contact-form-section {
    background-image: url('../images/grey-bg-swoosh.png'), url('../images/top-border.png'), linear-gradient(153deg, #3278a399, #c3e3d8), url('../images/branded-trees-bg.png'), url('../images/fresh_snow.png');
    background-position: 260% 107%, 50% 0, 0 0, 100%, 0 0;
    background-repeat: no-repeat, no-repeat, repeat, no-repeat, repeat;
    background-size: 90% 75px, 100% 25px, auto, 30%, 125px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .form-wrapper {
    width: 75%;
    padding: 25px;
  }

  .int-page-slider {
    height: auto;
  }

  .int-page-slider.desktop {
    height: 300px;
    max-height: none;
  }

  .service-slider-block {
    justify-content: space-between;
  }

  .left-arrow-2 {
    left: -30px;
  }

  .right-arrow-2 {
    right: -25px;
  }

  .button-text {
    white-space: nowrap;
    margin-left: 10px;
    font-size: .8em;
    line-height: 1em;
  }

  .button-arrow {
    width: 12px;
    margin-right: 15px;
  }

  .slide-nav-2 {
    inset: auto 0% -3%;
  }

  .service-title {
    color: var(--grey);
    margin-bottom: 10px;
    font-size: .9em;
    line-height: 16px;
  }

  .service-slider-blurb {
    margin-bottom: 10px;
    display: none;
  }

  .slider-break-div {
    width: 100%;
    margin-bottom: 15px;
  }

  .appt-cta-heading {
    font-size: 2em;
  }

  .appt-cta-subheading {
    font-size: 1em;
  }

  .div-block-5 {
    width: auto;
  }

  .contact-info-block {
    text-align: center;
    flex-direction: column;
    width: 32%;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .contact-info-block.export-bg {
    text-align: center;
    background-position: 95% 93%;
  }

  .contact-page-icon {
    width: 40px;
    margin-bottom: 15px;
  }

  .contact-info-text {
    font-size: 1em;
  }

  .contact-info-wrapper {
    flex-direction: row;
  }

  .contacat-col-right {
    order: -1;
    margin-bottom: 20px;
  }

  .utility-pg-container {
    text-align: center;
  }

  .column-7 {
    padding-right: 20px;
  }

  .location-tab {
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    font-size: .8em;
    line-height: 1em;
    display: flex;
  }

  .collection-list-2 {
    flex-direction: column;
    width: 100%;
  }

  .collection-item {
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
  }

  .collection-list-wrapper {
    flex-direction: column;
    display: flex;
  }

  .facebook-icon, .contact-page-icon-copy {
    width: 40px;
    margin-bottom: 15px;
  }

  .wisconsin-logo-section {
    flex-direction: column;
    align-items: center;
    height: 150px;
    display: flex;
  }

  .image-5 {
    width: 100px;
    display: block;
  }

  .utility-pg-container-copy {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  body {
    margin-top: 0;
    margin-left: 0;
    padding-top: 80px;
  }

  .button {
    font-size: .8em;
  }

  .navigation-bar {
    z-index: 99999;
    flex-direction: row;
    width: 100%;
    height: auto;
    margin-right: 10px;
    padding-right: 15px;
    inset: 0% 0% auto;
    overflow: visible;
  }

  .hero-section {
    background-position: 106% 121%, 0 0;
    height: auto;
    min-height: 450px;
  }

  .navbar {
    align-items: flex-end;
    width: 100%;
    padding-right: 15px;
    position: absolute;
  }

  .nav-menu {
    z-index: 999999999;
    background-color: var(--white);
    border: 1px #b9b9b9;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    flex-flow: wrap;
    align-items: stretch;
    width: 95%;
    max-width: 500px;
    max-height: 95vh;
    margin-top: 74px;
    top: 74px;
    left: auto;
    right: -1px;
    overflow: scroll;
    box-shadow: 0 12px 12px -5px #0003;
  }

  .container.location-info-sec {
    flex-direction: column;
    margin-top: -50px;
    display: flex;
    position: relative;
  }

  .container.about-sec {
    flex-direction: column;
  }

  .container.services-sec {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .phone-cta-btns-wrapper {
    display: none;
  }

  .phone-cta-btns-wrapper.mobile {
    border: 2px solid var(--dark-green);
    background-color: var(--white);
    border-radius: 10px;
    justify-content: flex-end;
    margin-bottom: 15px;
    padding: 10px 10px 0;
    display: none;
    overflow: hidden;
  }

  .nav-logo {
    max-width: 180px;
  }

  .nav-link {
    z-index: auto;
    color: var(--grey);
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 4%;
    background-repeat: no-repeat;
    background-size: 25px;
    border-left: 5px solid #0000;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 50px;
    font-size: 1.2em;
    transition: border-color .2s;
  }

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

  .nav-link.w--current {
    border-style: solid;
    border-width: 1px 1px 1px 5px;
    border-color: black black black var(--steel-blue);
    color: var(--steel-blue);
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg'), linear-gradient(101deg, #c3e3d8cc, #fff);
    background-position: 4%, 0 0;
    background-repeat: no-repeat, repeat;
    background-size: 25px, auto;
  }

  .nav-link.w--open {
    box-shadow: 0 5px 5px -5px #00000026;
  }

  .nav-link.home {
    background-image: url('../images/home_1home.png');
  }

  .nav-link.home.w--current {
    background-image: url('../images/home_1home.png'), linear-gradient(96deg, var(--dark-sea-green), white);
    background-position: 4%, 0 0;
    background-repeat: no-repeat, repeat;
    background-size: 25px, auto;
    border-top-style: none;
    border-bottom-style: none;
    border-right-style: none;
    border-radius: 0;
  }

  .nav-link.about {
    background-image: url('../images/about_1about.png');
    border-left-width: 5px;
  }

  .nav-link.resources {
    background-image: url('../images/resources_1resources.png');
  }

  .nav-link.locations {
    background-image: url('../images/locations_1locations.png');
  }

  .nav-link.mega-menu {
    display: none;
  }

  .background-video {
    background-position: 50% 101%;
    align-items: flex-start;
    width: 100vw;
    height: auto;
    min-height: 450px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content-container {
    width: 80%;
  }

  .hero-heading {
    font-size: 3.1em;
  }

  .location-info-section {
    background-position: 240% 100%, 95% 100%;
    background-size: 90%, 33% 60%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .location-card-wrapper.top-row {
    margin-top: 0;
  }

  .location-card-wrapper.bottom-row {
    order: -1;
    justify-content: space-between;
  }

  .location-block {
    width: 49%;
    margin-bottom: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .location-heading {
    font-size: 1.8em;
  }

  .phone-link {
    font-size: 1.6em;
  }

  .spacer-div {
    display: none;
  }

  .about-us-section {
    margin-top: 0;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-col-left {
    width: 100%;
  }

  .about-col-right {
    order: -1;
    width: 100%;
    margin-bottom: 20px;
    display: none;
  }

  .testimonial-section {
    background-position: -29px 20px, 50% -30%;
    background-size: 190px, 1800px;
    padding-left: 20px;
  }

  .services-section {
    background-position: 111% 100%, 560% 111%, 100% 100%;
    background-size: auto 50%, 96% 15%, auto 70%;
    padding-left: 19px;
    padding-right: 19px;
  }

  .services-block {
    width: 47%;
    margin-bottom: 15px;
    box-shadow: -1px 8px 15px -4px #3278a34d;
  }

  .services-block.box1 {
    width: 47%;
  }

  .service-block-ul {
    font-size: 1.2em;
    line-height: 1.3em;
  }

  .footer-section {
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .info-block-address {
    font-size: 1em;
  }

  .mobile-call-cta.mobile {
    z-index: 9999;
    border: 2px none var(--dark-green);
    border-radius: 10px;
    width: 50%;
    max-width: 150px;
    padding-bottom: 0;
    display: block;
    position: fixed;
    inset: auto auto 10px 10px;
    overflow: visible;
  }

  .trigger-btn-div {
    border: 2px none var(--dark-green);
    background-color: var(--white);
    background-image: linear-gradient(131deg, var(--steel-blue), var(--dark-sea-green));
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 15px;
    display: inline-block;
    box-shadow: 0 8px 18px -3px #3278a399;
  }

  .image-2 {
    width: 20px;
  }

  .open-btn-icon {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .close-btn-icon {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .spring-nav-menu {
    display: flex;
    right: 30px;
  }

  .spring-nav-menu.w--open {
    color: var(--steel-blue);
    margin-right: 0;
    right: 25px;
  }

  .spring-1, .spring-2, .spring-3 {
    background-color: var(--steel-blue);
  }

  .service-li {
    margin-bottom: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .dropdown-list.w--open {
    border-left: 1px solid var(--dark-sea-green);
    box-shadow: none;
  }

  .dropdown-link {
    text-transform: uppercase;
  }

  .dropdown-btn.mega-menu {
    height: 0;
    display: none;
    overflow: hidden;
  }

  .dropdown-btn.mobile-visible {
    display: block;
  }

  .int-pg-banner {
    background-position: 50% 100%, 102% 40px, 0 0, 50% 20%;
    background-size: 100% 40px, 190px, auto, cover;
    min-height: 200px;
  }

  .int-pg-title {
    font-size: 2.2em;
    line-height: 1.1em;
  }

  .int-pg-main {
    padding-left: 30px;
    padding-right: 30px;
  }

  .service-slider-content {
    height: auto;
  }

  .int-pg-feat-img {
    float: none;
    width: 96%;
    height: 50vw;
    margin: -89px auto 30px;
  }

  .staff-block.not-bot-border {
    padding-bottom: 0;
  }

  .contact-form-section {
    background-position: 260% 107%, 50% 0, 0 0, 100%, 100% 100%;
  }

  .form-wrapper {
    width: 80%;
  }

  .int-page-slider.desktop {
    display: none;
  }

  .int-page-slider.mobile {
    height: 330px;
    display: block;
  }

  .service-title {
    font-size: 1em;
  }

  .service-slider-blurb {
    display: block;
  }

  .slider-break-div.mobile.align-left {
    justify-content: flex-start;
  }

  .field-label {
    line-height: 15px;
  }

  .appt-cta-section {
    padding-left: 21px;
    padding-right: 21px;
  }

  .columns-2 {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .column-5 {
    justify-content: center;
  }

  .patient-forms-btn-wrapper {
    width: auto;
  }

  .patient-form-btn {
    width: 100%;
    min-width: 225px;
    margin-bottom: 15px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .div-block-5 {
    margin-top: 0;
  }

  .column-6 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-6, .div-block-7 {
    align-items: center;
  }

  .tesitmonial-text {
    font-size: 1.1em;
  }

  .testimonial-text-wrapper {
    height: auto;
    max-height: none;
  }

  .contact-info-block {
    text-align: left;
    flex-direction: row;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .contact-info-block.export-bg {
    text-align: left;
    background-position: 97%;
  }

  .contact-page-icon {
    width: 25px;
    margin-bottom: 0;
  }

  .contact-info-text {
    font-size: 1.1em;
  }

  .contact-info-wrapper {
    flex-direction: column;
  }

  .utility-pg-container {
    text-align: center;
  }

  .column-7 {
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .column-8 {
    margin-top: 0;
  }

  .slide {
    height: 280px;
  }

  .dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .sub-dropdown-link {
    background-color: var(--white-smoke);
    text-transform: none;
    border-left: 2px solid #0000;
    padding-left: 30px;
  }

  .sub-dropdown-link:hover {
    border-left-color: var(--steel-blue);
    color: var(--steel-blue);
  }

  .dropdown-list-2 {
    background-color: var(--white-smoke);
  }

  .collection-item {
    flex-wrap: nowrap;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .collection-list-wrapper {
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .facebook-icon, .contact-page-icon-copy {
    width: 25px;
    margin-bottom: 0;
  }

  .wisconsin-logo {
    display: none;
  }

  .image-5 {
    width: 30%;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .utility-pg-container-copy {
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  body {
    margin-top: 0;
    padding-top: 70px;
  }

  h2 {
    font-size: 1.4em;
    line-height: 1.2em;
  }

  .button.blue-btn.bottom-pg-cta {
    width: 100%;
    font-size: 1em;
  }

  .button.sidebar-btn-styles.gold-btn {
    background-image: url('../images/gold-btn-ng.jpg');
  }

  .navigation-bar {
    min-height: 70px;
    max-height: none;
    margin-right: 0;
    padding-top: 5px;
    padding-left: 0;
  }

  .hero-section {
    background-position: 119% 129%, 0 0;
  }

  .navbar {
    align-items: flex-end;
    margin-right: 0;
    padding-right: 10px;
    position: absolute;
  }

  .nav-menu {
    align-self: flex-end;
    width: 90%;
    min-width: 300px;
    margin-top: 65px;
    top: 66.25px;
    left: auto;
    right: -1px;
  }

  .container.services-sec {
    flex-direction: column;
    align-items: center;
  }

  .nav-logo {
    width: 100%;
    max-width: 150px;
  }

  .nav-link {
    font-size: 1.1em;
  }

  .background-video {
    align-items: flex-start;
  }

  .hero-content-container {
    width: 100%;
  }

  .hero-subline {
    font-size: 1.2em;
  }

  .hero-heading {
    font-size: 2.4em;
    line-height: 1.2em;
  }

  .location-info-section {
    background-position: 240% 101%, 99% 110%;
    background-size: 90%, 50%;
  }

  .location-card-wrapper.top-row, .location-card-wrapper.bottom-row {
    justify-content: center;
  }

  .location-block {
    width: 100%;
    max-width: 320px;
  }

  .testimonial-section {
    background-position: -29px 20px, 50% -10%;
    flex-direction: column;
    padding-right: 0;
  }

  .testimonal-col-left {
    width: 100%;
    margin-bottom: -45px;
    padding-bottom: 0;
    padding-right: 20px;
  }

  .testimonial-col-right {
    width: 100%;
  }

  .slider {
    min-height: 450px;
  }

  .bottom-border-section {
    background-position: 100% 100%;
    height: 50px;
    top: -50px;
  }

  .services-section {
    background-position: 121% 98%, 560% 102%, 160% 97%;
    background-size: 50%, 96% 5%, 90%;
    padding-top: 0;
    padding-bottom: 130px;
  }

  .services-block {
    border-top: 1px solid var(--white-smoke);
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
  }

  .services-block.box1 {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .columns {
    flex-direction: column;
  }

  .column {
    margin-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .trigger-btn-div {
    background-color: var(--dark-sea-green);
    background-image: linear-gradient(117deg, var(--steel-blue), var(--dark-sea-green));
  }

  .column-2 {
    text-align: center;
    order: 1;
    padding-left: 0;
    padding-right: 0;
  }

  .spring-nav-menu {
    width: 50px;
    height: 50px;
    margin-right: 0;
    right: 5px;
  }

  .spring-nav-menu.w--open {
    margin-right: 0;
    right: 10px;
  }

  .brand {
    align-self: center;
    max-width: 260px;
    padding-left: 0;
  }

  .dropdown-link.w--current {
    color: var(--cadet-green);
  }

  .int-pg-banner {
    background-position: 50% 100%, 108% 20px, 0 0, 50% 20%;
    min-height: 160px;
  }

  .int-pg-banner.blog-pg {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .int-pg-title {
    font-size: 1.8em;
  }

  .int-pg-title.blog-pg {
    font-size: 1.2em;
  }

  .int-pg-main {
    padding: 15px 10px;
  }

  .int-pg-service-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .service-slider-content {
    justify-content: space-between;
    height: 330px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .int-pg-feat-img {
    height: 54vw;
    margin-top: -60px;
  }

  .staff-block {
    flex-direction: column;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .staff-block.not-bot-border {
    flex-direction: column;
  }

  .staff-col-left {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .staff-col-right {
    width: 100%;
    padding-left: 0;
  }

  .staff-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin-bottom: 30px;
  }

  .contact-form-section {
    background-position: 260% 107%, 50% 0, 0 0, 120% 40%, 100% 100%;
    background-size: 90% 75px, 100% 25px, auto, 60%, 125px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-wrapper, .form-row {
    width: 100%;
  }

  .service-slider-block {
    justify-content: space-between;
  }

  .left-arrow-2 {
    color: var(--dark-green);
    width: 35px;
    height: 35px;
    margin-bottom: -8px;
    font-size: 25px;
    inset: auto auto 0% 0%;
  }

  .right-arrow-2 {
    width: 35px;
    height: 35px;
    margin-bottom: -8px;
    font-size: 25px;
    inset: auto 0% 0% auto;
  }

  .service-block-icon {
    width: 40px;
  }

  .button-background {
    width: 30px;
    height: 30px;
  }

  .button-text {
    white-space: nowrap;
    margin-left: 10px;
    font-size: .8em;
    line-height: 1em;
  }

  .slide-nav-2 {
    bottom: -3px;
  }

  .service-title {
    font-weight: 600;
    line-height: 1em;
  }

  .service-slider-blurb {
    font-size: .9em;
    line-height: 1.2em;
    display: block;
  }

  .service-slider-all-link {
    margin-top: 15px;
    font-size: 1.1em;
  }

  .icon {
    color: var(--dark-green);
  }

  .patient-form-btn {
    width: 100%;
    min-width: auto;
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-block-5 {
    padding: 15px;
  }

  .cc-block {
    justify-content: center;
    width: 31%;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .cc-cards-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .cc-icon {
    width: 48px;
  }

  .testimonial-block {
    width: 100%;
  }

  .location-tab {
    width: 29%;
    margin-bottom: 10px;
    margin-right: 10px;
  }

  .tabs-menu-2 {
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-card {
    padding: 15px;
  }

  .div-block-9 {
    height: 45vw;
    min-height: 180px;
    max-height: 380px;
  }

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

  .collection-list-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .pagination {
    margin-bottom: 20px;
  }

  .wisconsin-logo-section {
    margin-bottom: 60px;
  }

  .image-5 {
    width: 50%;
  }

  .grid-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    justify-items: center;
    display: grid;
  }

  .staff-block-2 {
    flex-direction: column;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
}


