@charset "UTF-8";
:root {
  --var-pink: #d82e89;
}

/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/
/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/
/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
}

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0;
  }
}
/* For devices larger than 750px */
@media (min-width: 750px) {
  .container {
    width: 80%;
  }

  .column,
.columns {
    margin-left: 4%;
  }

  .column:first-child,
.columns:first-child {
    margin-left: 0;
  }

  .one.column,
.one.columns {
    width: 4.6666666667%;
  }

  .two.columns {
    width: 13.3333333333%;
  }

  .three.columns {
    width: 22%;
  }

  .four.columns {
    width: 30.6666666667%;
  }

  .five.columns {
    width: 39.3333333333%;
  }

  .six.columns {
    width: 48%;
  }

  .seven.columns {
    width: 56.6666666667%;
  }

  .eight.columns {
    width: 65.3333333333%;
  }

  .nine.columns {
    width: 74%;
  }

  .ten.columns {
    width: 82.6666666667%;
  }

  .eleven.columns {
    width: 91.3333333333%;
  }

  .twelve.columns {
    width: 100%;
    margin-left: 0;
  }

  .one-third.column {
    width: 30.6666666667%;
  }

  .two-thirds.column {
    width: 65.3333333333%;
  }

  .one-half.column {
    width: 48%;
  }

  /* Offsets */
  .offset-by-one.column,
.offset-by-one.columns {
    margin-left: 8.6666666667%;
  }

  .offset-by-two.column,
.offset-by-two.columns {
    margin-left: 17.3333333333%;
  }

  .offset-by-three.column,
.offset-by-three.columns {
    margin-left: 26%;
  }

  .offset-by-four.column,
.offset-by-four.columns {
    margin-left: 34.6666666667%;
  }

  .offset-by-five.column,
.offset-by-five.columns {
    margin-left: 43.3333333333%;
  }

  .offset-by-six.column,
.offset-by-six.columns {
    margin-left: 52%;
  }

  .offset-by-seven.column,
.offset-by-seven.columns {
    margin-left: 60.6666666667%;
  }

  .offset-by-eight.column,
.offset-by-eight.columns {
    margin-left: 69.3333333333%;
  }

  .offset-by-nine.column,
.offset-by-nine.columns {
    margin-left: 78%;
  }

  .offset-by-ten.column,
.offset-by-ten.columns {
    margin-left: 86.6666666667%;
  }

  .offset-by-eleven.column,
.offset-by-eleven.columns {
    margin-left: 95.3333333333%;
  }

  .offset-by-one-third.column,
.offset-by-one-third.columns {
    margin-left: 34.6666666667%;
  }

  .offset-by-two-thirds.column,
.offset-by-two-thirds.columns {
    margin-left: 69.3333333333%;
  }

  .offset-by-one-half.column,
.offset-by-one-half.columns {
    margin-left: 52%;
  }
}
/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.5em;
  /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Mulish", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222;
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
}

h1 {
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: -0.1rem;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
  letter-spacing: -0.1rem;
}

h3 {
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: -0.1rem;
}

h4 {
  font-size: 2.4rem;
  line-height: 1.35;
  letter-spacing: -0.08rem;
}

h5 {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -0.05rem;
}

h6 {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0;
}

/* Larger than phablet */
@media (min-width: 750px) {
  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 4.2rem;
  }

  h3 {
    font-size: 3.6rem;
  }

  h4 {
    font-size: 3rem;
  }

  h5 {
    font-size: 2.4rem;
  }

  h6 {
    font-size: 1.5rem;
  }
}
p {
  margin-top: 0;
}

section p {
	font-size: 1.7rem;
}

section p a {
	color: var(--var-pink);
}

section p a:hover {
	color: var(--var-pink);
	opacity: 0.7;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1eaedb;
}

a:hover {
  color: #0fa0ce;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box;
}

.button:hover,
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
.button:focus,
button:focus,
input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus {
  color: #333;
  border-color: #888;
  outline: 0;
}

.button.button-primary,
button.button-primary,
input[type=submit].button-primary,
input[type=reset].button-primary,
input[type=button].button-primary {
  color: #fff;
  background-color: #33c3f0;
  border-color: #33c3f0;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type=submit].button-primary:hover,
input[type=reset].button-primary:hover,
input[type=button].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type=submit].button-primary:focus,
input[type=reset].button-primary:focus,
input[type=button].button-primary:focus {
  color: #fff;
  background-color: #1eaedb;
  border-color: #1eaedb;
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea,
select {
  height: 38px;
  padding: 6px 10px;
  /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}

input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33c3f0;
  outline: 0;
}

label,
legend {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type=checkbox],
input[type=radio] {
  display: inline;
}

label > .label-body {
  display: inline-block;
  margin-left: 0.5rem;
  font-weight: normal;
}

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside;
}

ol {
  list-style: decimal inside;
}

ol,
ul {
  padding-left: 0;
  margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%;
}

li {
  margin-bottom: 1rem;
}

/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: 0.2rem 0.5rem;
  margin: 0 0.2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #f1f1f1;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}

pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e1e1e1;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.u-pull-right {
  float: right;
}

.u-pull-left {
  float: left;
}
div.scroll {
  background-color: #fff;
  width: 100%x;
  height: 600px;
  overflow-x: hidden;
  overflow-y: auto;
  
  padding: 20px;
}
/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #e1e1e1;
}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/
/* Larger than mobile */
/* Larger than phablet (also point when grid becomes active) */
/* Larger than tablet */
/* Larger than desktop */
/* Larger than Desktop HD */
/* Basic Config */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

address {
  font-style: normal;
}

ul {
  list-style-type: none;
  margin-bottom: 0;
}

a {
  text-decoration: none;
}
a, a :visited, a :active, a :focus, a:hover {
  color: #fff;
}

h2.pink {
  font-size: 3rem;
}

.caps {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.pink {
  color: var(--var-pink);
}

.white {
  color: #fff;
}

.center {
  display: block;
  text-align: center;
}

.bold {
  font-weight: bold;
}

.gray-bkg {
  background-color: #f5f5f5;
}

.emergency-bg {
	background: url("/images/services/dental-emergency-banner.png");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.emergency-box {
	background: white;
	padding: 2rem;
}

.shadow {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

h3.subheading {
  color: #ffa500;
  font-size: 2rem;
}

.flex-center-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.flex-center-column > *:first-child {
  margin-bottom: 1rem;
}
.flex-center-column > * {
  margin: 1rem 0;
}

.cta-btn {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: var(--var-pink);
  border-radius: 10px;
  padding: 1.5rem 3rem;
  text-align: center;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
section {
  padding: 8rem 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
section img {
  max-width: 100%;
  max-height: 100%;
}

@media only screen and (max-width: 750px) {
  section {
    padding: 5rem 0;
  }

  .cta-btn {
    width: 80%;
	  margin: 5px auto;
  }

  .my {
    margin: 1rem 0;
  }
}
.container {
  max-width: 1200px;
}

#map {
  height: 400px;
  width: 100%;
}

.preheader {
  background-color: var(--var-pink);
  padding: 0.5rem 0;
  z-index: 2;
  position: relative;
}
.preheader > .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.preheader i {
  color: #fff;
}

.preheader_item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin: 0.2rem 0;
}
.preheader_item > i {
  margin: 0 1rem;
}

@media only screen and (max-width: 750px) {
  .preheader > .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
header {
  position: -webkit-sticky;
  position: sticky;
  top: 3rem;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  z-index: 99;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(50%);
          backdrop-filter: blur(50%);
}

nav > .container,
.navbar_items {
  display: flex;
}

.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  list-style: none;
}

nav {
  font-size: 1.8rem;
}
nav > .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  max-width: 2000px;
  width: 90%;
}
nav .content {
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}

.mobile-navbar {
  display: none;
  margin-right: 1rem;
}

.mobile-navbar a, .mobile-navbar i,
.navbar_items a,
.navbar_items i {
  color: #000;
}
.mobile-navbar > li,
.navbar_items > li {
  margin: 0 1rem;
  border: 2px solid transparent;
  transition: border 500ms ease-in, color 800ms;
}
.mobile-navbar > li:hover,
.navbar_items > li:hover {
  border-bottom: 2px solid var(--var-pink);
}
.mobile-navbar > li > a:hover, .mobile-navbar > li i:hover,
.navbar_items > li > a:hover,
.navbar_items > li i:hover {
  color: var(--var-pink);
}

.navbar_items {
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  width: 80%;
  max-width: 1000px;
}

.services-dropdown {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  left: 0;
  top: 7rem;
  z-index: 1;
  padding: 3rem;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
}
.services-dropdown ul {
  margin-left: 0;
}
.services-dropdown ul > li {
  cursor: pointer;
  padding: 1rem 0.5rem;
}
.services-dropdown ul > li:hover > a {
  color: var(--var-pink);
}
.services-dropdown p {
  margin-bottom: 0;
}

.navbar-services {
  justify-content: center !important;
}
.navbar-services i {
  display: none;
}
.navbar-services:hover .services-dropdown {
  display: flex;
}

.dropdown-section {
  max-width: 30%;
  margin: 0 1rem;
}

.logo {
  width: 25%;
}
.logo > a, .logo img {
  width: 100%;
}

@media only screen and (max-width: 750px) {
  nav > .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    overflow: scroll;
  }
  nav .cta-btn {
    display: none;
  }
  nav .content {
    max-height: 0;
  }

  .logo {
    width: 80%;
  }

  .mobile-navbar {
    display: block;
    margin-right: 0;
  }
  .mobile-navbar:hover {
    border-bottom: 0;
  }

  .navbar_items {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem 0;
    order: 10;
    width: 100%;
  }
  .navbar_items > li {
    margin: 1rem 0;
  }
  .navbar_items > li > a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .services-dropdown {
    box-shadow: none;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .content {
    margin: 0;
  }

  .navbar-services {
    flex-direction: column !important;
  }
  .navbar-services i {
    display: inline-block;
    margin-left: 0.5rem;
  }

  .dropdown-section {
    max-width: 100%;
    margin: 0;
  }
  .dropdown-section > p {
    cursor: pointer;
    padding: 1rem 0;
  }
}
.hero > .container {
  height: 100%;
}

.hero {
  margin-top: -11rem;
  height: 60vh;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero.home {
  background-image: url(../images/Teeth-Whitening-Photo-compressed.jpeg);
  background-position: center 30%;
  height: calc(100vh - 2.5rem);
}
.hero.service {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/services/Why-choose-emerald.jpg);
}

.herotext {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.herotext h1 {
  margin-top: 10%;
}
.herotext.home {
  position: relative;
  top: initial;
  left: initial;
  transform: none;
  align-items: flex-start;
  padding: 2rem 5rem;
}
.herotext.home > h2 {
  margin: 1rem 0;
  background-color: rgba(135,206,235, 0.85);
  width: 50%;
  padding: 2rem;
  font-size: 3rem;
}
.herotext.home > a {
  margin: 1rem 0;
  font-size: 1.8rem;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.herotext.service {
  text-align: center;
}
.herotext.service > .cta-btn {
  background-color: #e5e4e5;
  color: #000;
}

.introduction a, .introduction a :visited, .introduction a :active, .introduction a :focus, .introduction a:hover {
  color: #377dff;
}

.introduction-text > img {
  display: block;
  margin: 2rem auto;
  margin-bottom: 5rem;
  width: 30%;
  height: auto;
}

.feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #222222;
  padding: 5rem 1rem;
  text-align: center;
  gap: 1rem;
  height: 100%;
  transition: background-color 500ms;
}
.feature i {
  font-size: 3rem;
}
.feature p {
  margin-bottom: 0;
}
.feature:hover {
  background-color: rgba(33, 33, 33, 0.8);
}

video {
	max-width: 100%;
}

.vid-testimonials {
	padding: 3rem 0;
	text-align: center;
	background: rgba(216, 46, 137, 0.1);
}

.meet-our-dentist {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/meet-our-dentist-bkg.jpg) no-repeat;
  background-size: cover;
}
.meet-our-dentist h2 {
  font-size: 5rem;
}
.meet-our-dentist a {
  margin: 2rem 0;
}

.partners-list > li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150px;
}
.partners-list > li img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.partners span:first-child,
.our-services span:first-child {
  font-size: 2rem;
}

.our-services {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/our-services-bkg.jpg) no-repeat;
  background-size: cover;
}
.our-services .row {
  margin: 2rem 0;
}
.service-video {
  width: 100%;
	height: 320px;
	margin-bottom: 20px;
}

.index-services-flex {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.service-feature {
	background: rgba(255,255,255,0.7);
	padding: 2rem;
	margin-bottom: 20px;
	margin-inline: 2rem;
	text-align: center;
	flex: 1; 
}

.cta > .container {
  max-width: 700px;
}
.cta span, .cta p {
  font-size: 2rem;
}
.cta > h2, .cta .row {
  margin: 2rem 0;
}
.cta .row:nth-of-type(2) > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.reviews {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/reviews-bkg.jpeg) no-repeat;
  background-size: cover;
  height: 350px;
}
.reviews > .container, .reviews .row {
  height: 100%;
}

.reviews-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}

#google-reviews {
  position: relative;
  margin: auto;
  margin-top: -5rem;
  height: calc(300px - 15rem);
  opacity: 1;
  overflow: hidden;
}

.review {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease;
  top: 0;
  left: 0;
  margin-bottom: 0;
}

.quote {
  display: block;
  font-size: 10rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  margin-top: -3rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.community {
  padding-bottom: 0;
}
.community span {
  font-size: 2rem;
}
.community h2 {
  margin-bottom: 5rem;
}

.community-images {
  height: 500px;
  max-width: 100%;
}
.community-images > img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 50% !important;
  margin-left: 0 !important;
}

.map {
  line-height: 0;
}

.donation {
  background-color: var(--var-pink);
}
.donation p {
  margin-bottom: 0;
  font-size: 2rem;
}

.article {
	margin-bottom: 40px;
}

footer a,
.post-footer a {
  transition: color 500ms;
}
footer a:hover,
.post-footer a:hover {
  color: #377dff;
}

footer {
  background-color: #000;
  padding: 5rem 0;
}
footer h3 {
  font-size: 3rem;
}
footer ul > li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 2rem 0;
  color: #fff;
}
footer ul > li::before {
  content: "⟹";
  color: var(--var-pink);
  display: inline-block;
  margin-right: 1rem;
}

.post-footer {
  background-color: var(--var-pink);
  padding: 1rem 0;
  text-align: center;
}
.post-footer span:first-child {
  margin-right: auto;
}

.post-footer_quick-links > a {
  margin: 0 1rem;
}

@media only screen and (max-width: 750px) {
  .hero {
    margin-top: -8rem;
  }
  .hero.home {
    background-position: 40% 30%;
    height: calc(100vh - 12rem);
  }
  
  .herotext.home {
    padding: 2rem;
  }

  .herotext.home > * {
    width: 100% !important;
  }

  .introduction-text img {
    width: 100%;
  }

  .meet-our-dentist .row {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .meet-our-dentist img {
    margin: 2rem 0;
    margin-bottom: 1rem;
    order: -1 !important;
  }
  .meet-our-dentist a {
    width: 100%;
  }
	
  .index-services-flex {
	flex-direction: column;
}

  .feature {
    margin: 1rem 0;
  }

  .partners-list {
    margin: 1rem 0;
  }

  .our-services iframe {
    margin: 1rem 0;
    height: 200px;
  }

  .cta .row > * {
    margin: 1rem 0;
  }

  .reviews {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .reviews-text {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .reviews-text a {
    width: 100%;
  }

  .quote {
    margin-top: 0;
  }

  .community-images {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .community-images > img {
    width: 100% !important;
    height: 300px !important;
  }

  footer .row > div {
    margin: 1rem 0;
  }

  .post-footer span:nth-child(2) {
    display: none;
  }
}
.blog a {
  width: 100%;
  height: 100%;
}
.blog .four.columns {
  position: relative;
}
.blog h2:first-child {
  font-size: 4.2rem;
}

.blog-image {
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 200px;
  border-radius: 5px;
  filter: brightness(50%);
}

.blog-description {
  position: absolute;
  top: 40%;
  left: 45%;
  transform: translate(-50%, -10%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 50%;
  max-height: 50%;
  width: 80%;
  max-width: 80%;
}
.blog-description > h3 {
  font-size: 2rem;
  width: 100%;
  margin-bottom: 0;
}

.description-tag {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--var-pink);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.features .feature {
  background-color: #fff;
}
.features .feature i {
  font-size: 3rem;
}
.features .feature h3 {
  color: var(--var-pink);
  font-size: 2rem;
  margin-top: 1rem;
}
.features .feature p {
  color: #000;
}

.hours-appointment .row {
  margin: 2rem 0;
}
.hours-appointment .hours-map {
  padding: 2rem;
}
.hours-appointment .four.columns {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.hours-appointment .four.columns > i {
  margin: 0.5rem 1rem 0 0;
  font-size: 2rem;
}
.hours-appointment p {
  margin-bottom: 1rem;
}
.hours-appointment iframe {
  max-width: 100%;
}
.hours-appointment .appointment {
  padding: 2rem;
  background-color: #f5f5f5;
}
.hours-appointment .appointment > p {
  color: #8a8a8a;
}

.spft-intro span,
.prosthodontic-services span {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
.benefit i {
  font-size: 3rem;
  margin-right: 3rem;
}

.benefit:first-child::after {
  content: "";
  position: absolute;
  top: 75%;
  left: 2.5%;
  height: 80px;
  border: 1px solid #000;
  border-style: dashed;
}

.benefit-description > .pink {
  margin-bottom: 0.5rem;
}

.collapsibles > li {
  border-bottom: 1px solid #d3d3d3;
  padding: 0.5rem 0;
}
.collapsibles .content {
  display: block;
  margin-bottom: 0;
  padding: 0 2rem;
}
.collapsibles .content li {
  font-size: 1.5rem;
}
.collapsibles .content a, .collapsibles .content a:active, .collapsibles .content a:focus {
  color: #3072f9;
}
.collapsibles .content a:hover {
  color: var(--var-pink);
}

[class$=collapsible],
[class$="collapsible active"] {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem;
  transition: all 0.2s;
}
[class$=collapsible] > h3,
[class$="collapsible active"] > h3 {
  font-size: 2rem;
  margin-bottom: 0;
  margin-right: auto;
}
[class$=collapsible] i,
[class$="collapsible active"] i {
  transition: transform 0.2s;
  margin-left: 1rem;
}
[class$=collapsible].active > i,
[class$="collapsible active"].active > i {
  transform: rotate(180deg);
}
[class$=collapsible]:hover,
[class$="collapsible active"]:hover {
  background-color: lightgrey;
}


.services-nav h4 {
	margin-bottom: 2.5rem;
	display: none;
	font-weight: bold;
	margin-top: 20px;
}

.services-nav h5,.services-nav-2 h5 {
	background: rgba(216,46,137,0.35);
	color: black;
	padding: 1rem 1.5rem;
	margin-bottom: 1rem;
}

.services-nav h6 {
	margin-top: 1.5rem;
	margin-bottom: 0.7rem;
	font-size: 1.2em;
}

.services-nav h5 a:hover, .active, .collapsible-service:hover, .service-content a:hover {
	color: #333;
	cursor: pointer;
}

.service-content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
	list-style: none;
}

.service-content li {
	border-bottom: 1px solid #d82e89;
	color: #d82e89;
	margin-left: 2rem;
}

.collapsible-service:before {
  content: '+'; 
  font-size: 24px;
  color: black;
  margin-right: 10px;
}

.services-nav .active:before {
  content: '-'; 
	font-size: 24px;
  color: black;
  margin-right: 10px;
}

.services-nav {
	min-width: 200px;
}

.services-nav a {
	color: black;
}

.services-navigation {
	padding: 2rem 0 0;
}


.prosthodontics,
.all-on-four-implants,
.pediatric-dentistry {
  background-image: url(../images/services/prosthodontics-2.jpeg);
  background-position: center 30%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 750px) {
  h2.pink {
    margin: 1rem 0;
  }

  .blog .four.columns {
    margin: 1rem 0;
  }

  .appointment > form > span {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0.5rem 0 !important;
    flex-basis: 100% !important;
  }

  .spft-intro .services > * {
    margin: 1rem 0;
  }

  .feature {
    padding: 2rem 0;
  }
}/*# sourceMappingURL=skeleton.css.map */


.google-directions {
	text-align:center;
	display:flex;
	justify-content:center;
	padding-top:1%;
}
.google-maps-home {
	overflow: hidden;
}

.google-maps-home {
	overflow: hidden;
}


/* Always set the map height explicitly to define the size of the div
       * element that contains the map. */
#map {
  height: 400px;
}
.map-control {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 2px rgba(33, 33, 33, 0.4);
  font-family: 'Roboto','sans-serif';
  margin: 10px;
  padding-right: 5px;

  /* Hide the control initially, to prevent it from appearing
     before the map loads. */
  display: none;
}

/* Display the control once it is inside the map. */
#map .map-control { display: block; }

.selector-control {
  font-size: 14px;
  line-height: 30px;
  vertical-align: baseline;
}
/* Services Sidebar March 2023
â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€"â€" */

.sidebar {
	padding: 2% 0;
	text-align:center;
	font-size:1.6rem;
	color:#fff;
}	

.sidebar ul{
	margin-top:0;
	list-style:none;
	padding-inline-start: 0px;
}

.sidebar li{
	background-color: #F1B6D6;
	color:#fff;
	margin-bottom:2%;
	padding: 5px 5px;
}

.sidebar li:hover{
	filter: brightness(120%);
	color:#F1B6D6;
}

.sidebar a {
  display: block;
  text-decoration:none;
  color:#fff;
}

.sidebar a:hover {
	color: #fff;
 }
 
.sidebar h1 {
	color:#F1B6D6;
}

.maincontent a {
 color: #D82E89;
}
.maincontent ul {
  list-style-type: square;	
}

.row.landing-page {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.row.landing-page > div {
  flex-basis: 50%;
}

.row.landing-page img {
  border: 1px solid #D82E89;
}

.row.landing-page-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: -4rem;
}

.row.landing-page-features .columns:nth-child(odd) {
  margin-left: 0;
}

.row.landing-page-features div {
  margin-bottom: 4rem;
}

.promo {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

.promo-price {
  font-size: 6rem;
  font-weight: bold;
  line-height: 1.1;
  margin-left: 1rem;
}

@media (max-width: 1000px) {
  .row.landing-page {
    flex-direction: column;
  }

  .row.landing-page h1,
  .row.landing-page small {
    display: block;
    text-align: center;
  }

  .row.landing-page strong {
    display: block;
    text-align: center;
  }

  .promo {
    justify-content: center;
  }
}