@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;700&display=swap");
:root {
  /* Color Variables Start */
  --primary-color-light: #ff6b6b; /* Coral Pink */
  --secondary-color-light: #f9e4b7; /* Creamy Beige */
  --accent-color-light: #00a8b5; /* Teal Blue */
  --background-color-light: #f5f5f5; /* Light Gray */
  --background-color-dark: #2b354b;
  --callToAction-button-color-dark: #ffa07a; /* Vibrant Orange */
  /* Color Variables Ends */
  /* TextColor Variables Start */
  --heading-light: #333333; /* Charcoal Gray */
  --body-text-light: #4a4a4a; /* Dark brown */
  --links-color-light: #00a8b5; /* Teal blue */
  --callToAction-button-text-dark: #ffffff; /* White */
  /* TextColor Variables Ends */
}

*,
body {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif, Arial;
  box-sizing: border-box;
  color: var(--body-text-light);
}

header {
  position: relative;
}
header .branding-box {
  display: grid;
  height: 250px;
  justify-content: center;
  align-content: center;
}
header .branding-box .logo-box {
  display: grid;
  width: 100%;
  height: 100%;
}
header .branding-box .logo-box .logo-text {
  letter-spacing: 0.05em;
  padding-top: 24px;
  flex-wrap: wrap;
  color: var(--accent-color-light);
}
header .branding-box .logo-box .tagline {
  letter-spacing: 0.35em;
  text-align: center;
  flex-wrap: wrap;
  padding-top: 8px;
  color: var(--heading-light);
  color: var(--primary-color-light);
}
header .showcase-box {
  height: 350px;
  background-color: var(--secondary-color-light);
  background-image: url("/assets/png/dental_clinic.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: brightness(100%);
  display: grid;
  justify-content: center;
  align-content: end;
}
header .showcase-box .caption-text {
  width: 100vw;
  font-weight: 400;
  letter-spacing: 1.5px;
  padding: 8px 40px;
  background-color: var(--accent-color-light);
  flex-wrap: wrap;
  color: var(--secondary-color-light);
}
header #menuBtn {
  position: absolute;
  top: 4%;
  left: 6%;
  border-radius: 50%;
  z-index: 10;
}
header #menuBtn .mdc-fab {
  color: white;
  background-color: var(--accent-color-light);
}
header #menuBtn .mdc-fab .mdc-fab__icon {
  color: var(--secondary-color-light);
  font-size: 40px;
}
header .drawer-menu {
  position: absolute;
  display: none;
  height: -moz-max-content;
  height: max-content;
  width: 100vw;
  background-color: var(--background-color-light);
  opacity: 96%;
  z-index: 9;
}
header .drawer-menu .nav-links {
  padding: 40px;
}
header .drawer-menu .nav-links .nav-items {
  list-style: none;
  text-align: left;
}
header .drawer-menu .nav-links .nav-items a {
  text-decoration: none;
  text-align: left;
  display: block;
  color: var(--body-text-light);
  padding: 30px 16px;
}
header .drawer-menu .nav-links .nav-items a:hover {
  background-color: var(--primary-color-light);
  color: white;
  transition: all ease-in-out 0.3s;
}
header .drawer-menu .nav-links .nav-items a .material-icons {
  padding-left: 8px;
}
header .open-drawer-menu {
  display: block;
}

.top-call-to-action {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(46, 46, 46);
  padding: 16px 0;
  font-family: "Montserrat";
  font-weight: 200;
  background-color: var(--background-color-light);
  display: none;
}
.top-call-to-action a {
  text-decoration: none;
  color: var(--body-text-light);
  padding-left: 24px;
}

section.treatment-cards {
  height: auto;
  margin: auto;
  width: 90%;
}
section.treatment-cards .service-summary {
  padding: 77px 0;
}
section.treatment-cards .service-summary h2 {
  color: var(--accent-color-light);
  letter-spacing: 0.05em;
  line-height: 1.3em;
}
section.treatment-cards .service-summary h3 {
  color: var(--body_text-light);
  color: var(--heading-light);
  letter-spacing: 0.05em;
  padding-top: 24px;
}
section.treatment-cards .service-summary p {
  color: var(--body-text-light);
  padding: 24px 0;
}
section.treatment-cards .card-box .cards {
  position: relative;
  margin-bottom: 48px;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
section.treatment-cards .card-box .cards .dental-icons img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}
section.treatment-cards .card-box .cards .card-links {
  text-decoration: none;
}
section.treatment-cards .card-box .cards .card-links .card-title {
  padding-top: 24px;
  color: var(--body-text-light);
}
section.treatment-cards .card-box .cards .card-para {
  padding: 48px 16px;
  margin-bottom: 100px;
  line-height: 1.5;
  color: var(--body-text-light);
}
section.treatment-cards .card-box .cards button {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--links-color-light);
  margin-bottom: 24px;
  width: -moz-max-content;
  width: max-content;
}
section.treatment-cards .card-box .cards button .mdc-button--outlined {
  margin: auto;
  color: #959595;
}
section.treatment-cards .card-box .cards button .mdc-button__label {
  color: var(--secondary-color-light);
}
section.treatment-cards .card-box .cards hr {
  margin-top: 30px;
  height: 0.5px;
  border-style: none;
}
section.treatment-cards .card-box .cards:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 16px;
}

section.contact-us-box {
  height: auto;
  background-color: var(--background-color-light);
  color: var(--secondary-color-light);
  padding: 30px 0;
}
section.contact-us-box .items-list .mdc-list .mdc-list-item .material-icons {
  padding: 16px;
  margin-bottom: 24px;
  margin-right: 24px;
  background-color: #08d3d3;
  border-radius: 8px;
  color: #fff;
}
section.contact-us-box .items-list .mdc-list .mdc-list-item .mdc-list-item__text .mdc-list-item__primary-text {
  display: block;
  color: var(--body-text-light);
  text-align: left;
}
section.contact-us-box .items-list .mdc-list .mdc-list-item .mdc-list-item__text .mdc-list-item__secondary-text {
  font-size: 18px;
  color: var(--body-text-light);
  text-align: left;
}

footer {
  padding: 40px 16px;
  background-color: var(--background-color-dark);
}
footer .org-summary {
  max-width: 1200px;
  margin: 30px auto 100px;
}
footer .org-summary h1 {
  text-align: left;
  color: var(--accent-color-light);
}
footer .org-summary p {
  text-align: left;
  color: var(--secondary-color-light);
  font-size: 12px;
  padding: 12px 0;
}
footer .org-summary .mdc-button--raised {
  background-color: var(--accent-color-light);
  float: left;
  margin-top: 16px;
  margin-bottom: 24px;
}
footer .org-summary .mdc-button--raised .mdc-button__label {
  color: var(--secondary-color-light);
}
footer .footer-links-wrapper {
  max-width: 1200px;
  margin: auto;
}
footer .footer-links-wrapper .treatment-links {
  clear: both;
}
footer .footer-links-wrapper .treatment-links,
footer .footer-links-wrapper .site-links,
footer .footer-links-wrapper .reach-us-at {
  padding: 0 32px 0 0;
}
footer .footer-links-wrapper .footer-group-title {
  max-width: 1200px;
  margin: auto;
  text-align: left;
  color: #ffffff;
  border-bottom: rgba(8, 211, 211, 0.231372549) 1px solid;
  padding: 24px 0 12px;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
}
footer .footer-links-wrapper ul {
  max-width: 1200px;
  margin: auto;
  padding: 16px 0;
}
footer .footer-links-wrapper ul li {
  list-style: none;
}
footer .footer-links-wrapper ul li a {
  display: block;
  text-decoration: none;
  text-align: left;
  color: #ffffff;
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  padding: 20px 0 12px;
  border-bottom: rgba(8, 211, 211, 0.231372549) 0.05rem solid;
}
footer .footer-links-wrapper ul li a:hover {
  color: var(--accent-color-light);
  transition: ease-in-out 300ms;
  cursor: pointer;
}
footer .footer-links-wrapper .social-media-box {
  display: flex;
}
footer .footer-links-wrapper .social-media-box i {
  margin-right: 24px;
  font-size: 32px;
  color: var(--primary-color-light);
}

.copyright-box {
  background-color: #172137;
  padding: 24px;
}
.copyright-box p {
  font-size: 11px;
  color: white;
  text-align: left;
  font-weight: 300;
  line-height: 1.5;
}
.copyright-box p a {
  text-decoration: none;
  color: white;
}

.treatment-benefits .benefits-summary {
  padding: 72px 16px;
  background-color: rgb(240, 240, 240);
}
.treatment-benefits .benefits-summary .service-summary-para {
  font-size: 22px;
  color: #333333;
}
.treatment-benefits .treatment-benefits-list h4 {
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  padding-top: 32px;
  padding-bottom: 32px;
}
.treatment-benefits .treatment-benefits-list .benefits-list-box {
  color: #595959;
  font-size: 28px;
  font-weight: 400;
  padding-bottom: 24px;
}
.treatment-benefits .treatment-benefits-list .benefits-list-box .benefit-items-list .mdc-list .mdc-list-item .material-icons {
  padding: 10px;
  margin-right: 10px;
  font-size: 32px;
  border-radius: 3px;
  color: var(--primary-color-light);
}
.treatment-benefits .treatment-benefits-list .benefits-list-box .benefit-items-list .mdc-list .mdc-list-item .mdc-list-item__text .mdc-list-item__text {
  font-size: 18px;
  color: #fff;
  text-align: left;
}

.additional-spotlight-contents {
  padding: 16px;
}
.additional-spotlight-contents h4 {
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  padding-top: 32px;
  padding-bottom: 32px;
}

.type-of-services {
  height: auto;
  background-color: rgb(238, 238, 238);
  padding: 16px;
}
.type-of-services h4 {
  padding: 16px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  color: var(--primary-color-light);
  border-bottom: #08d3d3 solid 1px;
}
.type-of-services .service-types-list .mdc-list .mdc-list-item .material-icons {
  margin-right: 10px;
  font-size: 32px;
  color: var(--primary-color-light);
}
.type-of-services .service-types-list .mdc-list .mdc-list-item .mdc-list-item__text .mdc-list-item__primary-text {
  font-size: 18px;
  color: #fff;
  text-align: left;
}
.type-of-services .service-types-list .mdc-list .mdc-list-item .mdc-list-item__text .mdc-list-item__secondary-text {
  font-size: 18px;
  color: #fff;
  text-align: left;
}

.cosmetic-advice {
  padding: 40px 16px;
}
.cosmetic-advice h4 {
  padding: 16px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  color: var(--primary-color-light);
  border-bottom: rgb(216, 216, 216) solid 1px;
}
.cosmetic-advice .mdc-list-item .material-icons {
  margin-right: 10px;
  font-size: 32px;
  color: var(--primary-color-light);
}
.cosmetic-advice .mdc-list-item span {
  font-size: 18px;
  color: var(--primary-color-light);
  text-align: left;
}

@media only screen and (min-width: 715px) {
  header #menuBtn {
    top: 18%;
  }
  .card-box {
    max-width: 1200px;
    margin: auto;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 46px;
  }
  .card-box .cards {
    position: relative;
  }
  .card-box .cards .card-para {
    padding: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
  }
  .card-box .cards hr {
    display: none;
  }
  .footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  header .drawer-menu .nav-links {
    width: 100%;
    padding: 40px;
    display: flex;
    justify-content: space-evenly;
  }
  header .drawer-menu .nav-links .nav-items a {
    display: flex;
  }
  header .open-drawer-menu {
    display: flex;
  }
  .card-box {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .contact-us-box .items-list {
    max-width: 1200px;
    margin: auto;
  }
  .footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.flip-card {
  background-color: transparent;
  width: auto;
  height: auto;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card .flip-card-inner {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.flip-card .flip-card-inner .flip-card-front .dental-icons img {
  margin: 0;
  padding-bottom: 24px;
}
.flip-card .flip-card-inner .flip-card-front,
.flip-card .flip-card-inner .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%; /* Safari */
  backface-visibility: hidden;
  display: grid;
  align-content: center;
}
.flip-card .flip-card-inner .flip-card-back {
  background-color: white;
  color: white;
  transform: rotateY(180deg);
}/*# sourceMappingURL=style.css.map */