html,
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

html {
  font-size: 16px;
}

body {
  background-color: #fff;
}

main {
  min-height: 70vh;
}

main.subpage {
  padding-bottom: 10vh;
}

*,
body {
  font-family: "Poppins", sans-serif;
  text-rendering: optimizeLegibility;
  font-size: 1rem;
}

a {
  text-decoration: underline;
  color: hsl(276, 91%, 38%);
  font-weight: bold;
}

a.link-secondary {
  font-weight: 400;
}

a:hover {
  color: hsl(276, 91%, 30%);
}

a:active {
  color: #4b067a;
}

img {
  max-width: 100%;
}

p,
.txt-primary,
td,
dh,
dd,
li,
figcaption,
label,
details,
summary,
legend {
  /* color: #666; */
  color: hsl(223, 7%, 39%);
}

textarea {
  resize: none;
}

summary {
  font-weight: bold;
}

dl {
  display: grid;
  grid-template-columns: max-content 1fr;
}

dt {
  padding-right: 1rem;
}

dh,
dd {
  display: block;
  margin-bottom: 1rem;
}

/* Typography */
p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Page Headers */
h1,
h2,
h3 {
  font-weight: bold;
}

/* Home Page Headers */
.home-title {
  font-size: 3rem;
}
.home-therapy-form-title h2 {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .home-title {
    font-size: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .home-title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .home-title {
    font-size: 4rem;
  }
}

.home-location-title {
  font-size: 2rem;
}

/* Body Page Headers */
.page-title {
  font-size: 2rem;
}
@media screen and (min-width: 576px) {
  .page-title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .page-title {
    font-size: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .page-title {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .page-title {
    font-size: 6rem;
  }
}

.page-title-secondary {
  font-size: 2rem;
}
@media screen and (min-width: 576px) {
  .page-title-secondary {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .page-title-secondary {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .page-title-secondary {
    font-size: 5rem;
  }
}

.page-section-heading {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .page-section-heading {
    font-size: 3rem;
  }
}

.page-section-subheading {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .page-section-subheading {
    font-size: 2rem;
    line-height: 1.1;
  }
}

.text-section-heading {
  font-size: 1.5rem;
}

.faq-category {
  font-size: 1.2rem;
  font-weight: 400;
}

/* Footer Headers */
footer h2 {
  font-size: 2rem;
}

.faq-question {
  font-size: 1rem;
  font-weight: 400;
}

.heading-border {
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 3px;
}

.carousel-caption p {
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 3px 5px rgba(0, 0, 0, 0.2);
}

/* Layout */
header {
  display: grid;
  display: -ms-grid;
  background: hsl(220, 67%, 15%);
  padding: 1rem 2rem;
}
@media screen and (min-width: 576px) {
  header {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    -ms-grid-columns: 1fr 1fr;
    -ms-grid-rows: 1fr;
    padding: 1rem;
  }
}
@media screen and (min-width: 768px) {
  header {
    padding: 1rem 5vw;
  }
}
@media screen and (min-width: 992px) {
  header {
    grid-template-columns: max-content 1fr;
    grid-template-rows: 1fr 1fr;
    -ms-grid-columns: auto 1fr;
    -ms-grid-rows: 1fr 1fr;
    padding: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  header {
    background: linear-gradient(
      63deg,
      hsl(220, 67%, 15%) 30%,
      hsl(220, 67%, 42%) 30%
    );
    padding: 0.5rem 5vw;
  }
}

@media screen and (min-width: 576px) {
  .header-seg01 {
    grid-column-start: 2;
    grid-row-start: 1;

    -ms-grid-column: 2;
    -ms-grid-row: 1;
  }

  .header-seg03 {
    grid-column-start: 1;
    grid-row-start: 1;

    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }
}
@media screen and (min-width: 992px) {
  .header-seg01 {
    grid-column-start: 1;
    grid-row: 1 / span 2;

    -ms-grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
  }

  .header-seg02 {
    grid-column-start: 2;
    grid-row: 1 / span 1;

    -ms-grid-column: 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
  }

  .header-seg03 {
    grid-column-start: 2;
    grid-row: 2;

    -ms-grid-column: 2;
    -ms-grid-row: 2;
  }
}

section {
  padding: 0;
}

.home .row {
  margin: 0;
}

.section-margin {
  margin-bottom: 4rem;
}
.section-padding {
  padding: 4rem 0;
}

.subpage-section-margin {
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .section-margin {
    margin-bottom: 8rem;
  }

  .section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .subpage-section-margin,
  .service-margin {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .subpage-section-margin,
  .service-margin {
    margin-bottom: 6rem;
  }
}

.grid-welcome {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  padding-left: 5vw;
  padding-right: 5vw;

  display: -ms-grid;
}
@media screen and (min-width: 768px) {
  .grid-welcome {
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr 0.7fr;

    -ms-grid-columns: 1fr 2fr;
    -ms-grid-rows: 1fr 0.7fr;
  }
}
@media screen and (min-width: 992px) {
  .grid-welcome {
    grid-template-rows: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .grid-welcome {
    grid-template-columns: 1fr 1fr 2fr;
    grid-column-gap: 3vw;
    column-gap: 3vw;
    grid-row-gap: 3vw;
    row-gap: 3vw;
    padding-left: 5vw;
    padding-right: 5vw;

    -ms-grid-columns: 1fr 1fr 2fr;
  }
}
@media screen and (min-width: 1400px) {
  .grid-welcome {
    min-height: 700px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .grid-welcome > div {
    margin: 1rem;
  }
}

.tile-1 {
  height: 300px;
  width: 100%;
  grid-column: 1 / span 1;
  background: url(../../images/about.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}
@media screen and (min-width: 768px) {
  .tile-1 {
    width: auto;
    height: auto;
    grid-row: 1 / span 1;
    background-position: 70%;

    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
  }
}
@media screen and (min-width: 992px) {
  .tile-1 {
    background-position: center;
  }
}

.tile-2 {
  grid-column: 1 / span 1;
  position: relative;

  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}
@media screen and (min-width: 768px) {
  .tile-2 {
    grid-column: 2 / span 1;
    grid-row: 1 / span 2;

    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
  }
}
@media screen and (min-width: 1200px) {
  .tile-2 {
    grid-column: 3 / span 1;

    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
}

.tile-3 {
  display: none;
}
@media screen and (min-width: 1200px) {
  .tile-3 {
    display: block;
    grid-column: 2 / span 1;
    grid-row: 1 / span 2;
    background-image: linear-gradient(
        rgba(19, 168, 158, 0.4),
        rgba(19, 168, 158, 0.4)
      ),
      url(../../images/family.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
  }
}

.tile-4 {
  display: none;
}
@media screen and (min-width: 768px) {
  .tile-4 {
    display: block;
    grid-column: 1 / span 1;
    grid-row: 2 / span 1;
    background: linear-gradient(rgba(114, 9, 183, 0.5), rgba(114, 9, 183, 0.5)),
      url(../../images/stability_ball03.jpg);
    background-size: cover;
    background-position: center bottom;
    box-shadow: 0 2px 2px rgba(10, 10, 10, 0.2), 0 4px 6px rgba(10, 10, 10, 0.2),
      0 8px 12px rgba(10, 10, 10, 0.2);

    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
  }
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .home.container {
    padding-left: 5vw;
    padding-right: 5vw;
    max-width: 2000px;
  }
}

/* Modules */
/* Buttons */
.btn {
  text-decoration: none;
  font-weight: bold;
}

.btn-main,
.btn-alt,
.btn-workshop {
  font-size: 1rem;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 4px 4px rgba(0, 0, 0, 0.2);
  padding: 0.75rem 1rem;
  transition: background-color 200ms, border 200ms, transform 50ms;
  transition-timing-function: ease-in-out;
  border-radius: 1.5em;
}
@media screen and (min-width: 576px) {
  .btn-main,
  .btn-alt,
  .btn-workshop {
    padding: 0.75rem 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .btn-main,
  .btn-alt {
    font-size: 1rem;
  }

  .location-content .btn-alt {
    font-size: 1rem;
  }
}

.btn-main,
.btn-workshop.active {
  color: #fff;
  background: hsl(276, 91%, 38%);
  border: 1px solid hsl(276, 91%, 38%);
}

.btn-main:hover,
.btn-workshop.active:hover {
  background: hsl(276, 91%, 30%);
  border: 1px solid hsl(276, 91%, 30%);
  color: #fff;
}

.btn-main:active,
.btn-alt:active {
  transform: scale(0.95);
}

.btn-alt {
  /* color: #1d408c; */
  color: #1d408c;
  background: #fff;
}
.btn-alt:hover,
.btn-header:hover {
  color: hsl(221, 66%, 23%);
}

.btn-workshop {
  background: hsl(220, 10%, 96%);
  border: 1px solid hsl(220, 10%, 96%);
  color: hsl(223, 7%, 39%);
}

.btn-workshop:focus {
  outline: none;
}

.btn-workshop:hover {
  border-color: hsl(276, 91%, 38%);
  cursor: pointer;
}

.btn-header {
  color: hsl(221, 66%, 33%);
  background: #fff;
  padding: 0.3rem 0.75rem;
  height: 2.2rem;
}

.btn-footer {
  border: 2px solid #fff;
  background: none;
  color: #fff;
  padding: 0.5rem 1rem;
}

.btn-footer:hover {
  color: #212529;
  background: #fff;
  border: 2px solid #fff;
}

.btn-covid {
  border: none;
  border-radius: 0;
  background: yellow;
  padding: 0.5rem 0;
}
.btn-covid:hover {
  cursor: pointer;
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% + 15px);
  height: calc(100% + 15px);
  z-index: 99;
  display: flex;
  overflow: scroll;
  opacity: 0;
  transition: opacity 350ms ease-out;
  background: rgba(0, 0, 0, 0.4);
}

.modal-content {
  width: 500px;
  max-width: 100%;
  margin: auto;
  padding: 2rem;
  transform: scale(0.8) !important;
  transition: transform 200ms ease-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07),
    0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07);
}

@media screen and (min-width: 768px) {
  .modal-content {
    transform: scale(1) !important;
  }
}

@media screen and (min-width: 1200px) {
  .modal-content {
    transform: scale(1) !important;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .modal-content {
    flex-grow: 0;
    flex-shrink: 0;
    align-self: flex-start;
  }
}

/* Card */
.card {
  border: none;
}

@media screen and (min-width: 992px) {
  .clinicial-team-card {
    min-height: 32rem;
  }
}

/* Carousel */
.carousel-caption {
  z-index: 2;
  background: #2454b4;
  font-weight: bold;
}

@supports (object-fit: cover) {
  .carousel-item > img {
    height: 80vh;
    object-fit: cover;
    object-position: center;
  }
}

@media screen and (min-width: 768px) {
  .carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 0;
    background: rgba(37, 82, 180, 0.65);
  }
  .carousel-item > img {
    height: 30vh;
  }
}

@media screen and (min-width: 1024px) {
  .carousel-item > img {
    height: 50vh;
  }
}

@media screen and (min-width: 1024px) {
  .carousel-item > img {
    height: 80vh;
  }
}

/* Errors */
.error-box {
  background: hsl(349, 74%, 91%);
  padding: 1rem;
  margin-bottom: 1rem;
  height: 0;
}

.error-box * {
  color: hsl(349, 100%, 32%);
}

.error-box > ul {
  margin: 0;
}

.error-box,
.invalid {
  border: 1px solid hsl(349, 67%, 58%);
}

/* Footer */
.footer-content {
  padding-left: calc(5vw - 15px);
  padding-right: calc(5vw - 15px);
}

footer a {
  color: #fff;
}

.nav-list {
  /* display:flex;
    flex-direction:column;
    justify-content:center; */
}

.nav-list a {
  font-weight: bold;
  transition: padding-left 250ms ease-out;
  padding-left: 0;
}
.nav-list a:hover {
  padding-left: 1ch;
  color: #fff;
}

.email-signup {
  max-width: 400px;
  border: 1px solid #555;
}

.ddmg-sig {
  background-color: #333;
}
.ddmg-sig > p {
  color: #9c9c9c;
}
.ddmg-sig a:hover {
  color: #fff;
}

/* Header */
/* .header-bg {
     background-size: cover;
     background-position: center;
}  */
@media screen and (min-width: 992px) {
  .header-bg {
    background-image: linear-gradient(to right, #fff 21%, #2454b4 21%), #fff;
    padding-left: 2.5vw;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .header-bg {
    background-image: linear-gradient(
      63deg,
      hsl(220, 67%, 15%) 30%,
      #2454b4 30%
    );
    padding-left: 5vw;
  }
}

.header-r {
  position: relative;
  padding-right: 5vw;
  padding-left: 5vw;
}
@media screen and (min-width: 1200px) {
  .header-r {
    /* background: #2454b4;
        padding-left: 1vw; */
    padding-right: 2.5vw;
  }
}
@media screen and (min-width: 1400px) {
  .header-r {
    /* background: ; */
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.fa-bars {
  color: #fff;
  font-size: 2rem;
}

/* .header-r::before {
    content: "";
    height: 200%;
    background:#2454b4;
    width: 127px;
    left:-64px;
    bottom:0;
    border-radius: 50%;
    position: absolute;

} */

/* Clinical Team */

.user-thumb {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.user-thumb,
.prof-pic {
  border-radius: 50%;
}

.prof-pic-wrapper {
  position: relative;
  height: 0;
  width: 100%;
  padding-top: 100%;
}

.prof-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.meet-our-team h3 {
  font-size: 1.25rem;
  font-weight: 100;
}

@supports (object-fit: cover) {
  .prof-pic > img {
    width: 100%;
  }
  .prof-pic > img,
  .user-thumb {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .user-thumb {
    height: 150px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .prof-pic > img,
  .user-thumb {
    max-width: none;
    min-width: 0%;
    min-height: 100%;
    transform: translateX(-50%);
    margin-left: 50%;
  }
  .user-thumb {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
  }
}

figcaption > h4,
figcaption > h5 {
  font-size: 1rem;
}

.clinical-team figcaption > h4 {
  font-weight: bold;
  color: #2454b4;
}

/* FAQs */
.faq-margin {
  margin-bottom: 2rem;
}

@media screen and (min-width: 1200px) {
  .faq-margin {
    margin-bottom: 4rem;
  }
}

/* Forms */

label,
legend {
  font-weight: bold;
}

input[type="radio"] + label {
  font-weight: 400;
}

.bg-gray {
  background: hsl(220, 10%, 96%);
}

.form-content {
  padding: 2rem 1rem;
}
@media screen and (min-width: 768px) {
  .form-content {
    padding: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .form-content {
    padding: 4rem 6rem;
  }
}

.form-control {
  max-width: 100%;
}

.form-title {
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 1200px) {
  input.name {
    width: 40ch;
  }
}

input.email {
  width: 30ch;
}

input.phone {
  width: 20ch;
}

select.location-field {
  width: 35ch;
}

/* Hero */
.hero {
  height: 12rem;
  max-height: 500px;
  background: url(../../images/beds.jpg) center / cover no-repeat;
  padding: 5vw;
  display: flex;
  position: relative;
}
@media screen and (min-width: 992px) {
  .hero {
    height: 16rem;
  }
}

.hero::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .hero::before {
    background: rgba(0, 0, 0, 0.4);
  }
  .hero {
    background-image: url(../../images/weights.jpg);
    height: 14rem;
  }
}

@media screen and (min-width: 1200px) {
  .hero {
    height: 24rem;
  }
}

.hero > h1 {
  margin: auto;
  z-index: 2;
}

/* Image Gallery */
.gallery-thumbnail,
.gallery-img-wrapper,
.testimonial-img-wrapper {
  overflow: hidden;
}

.gallery-thumbnail {
  height: 0;
  padding-top: 100%;
}

.gallery-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.testimonial-img-wrapper {
  width: 100%;
  min-height: 100%;
  height: 32rem;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .gallery-img {
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    transform: translateX(-50%);
    margin-left: 50%;
  }
}
@supports (object-fit: cover) {
  .gallery-img,
  .testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .testimonial-img {
    min-width: 100%;
    min-height: 100%;
  }
}

/* Locations */
.map-wrapper {
  overflow: hidden;
  box-shadow: 0 1px 2px hsl(223, 7%, 69%);
}
.map-wrapper iframe {
  width: 100%;
}
.location-detail-fam {
  margin-bottom: 37px;
}

.map-wrapper.card-map iframe {
  height: 12rem;
}

@media screen and (min-width: 768px) {
  .location-flex {
    flex-wrap: wrap;
  }
  .location-detail-fam {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 992px) {
  .location-flex {
    flex-wrap: nowrap;
  }
}

.location {
  flex: 1 0 50%;
  transition: flex 300ms;
  display: flex;
  min-height: 27vw;
  padding: 2rem 5vw;
  color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .location {
    padding: 2rem 0.5rem;
    flex: 1;
  }
}

@media screen and (min-width: 992px) {
  .hidden {
    opacity: 0;
    height: 0;
    transition: height 300ms, opacity 400ms;
  }
}

@media screen and (min-width: 992px) {
  .location:hover {
    flex: 2;
    color: #fff;
    text-decoration: none;
  }

  .location:hover .hidden {
    opacity: 1;
  }
}

.location-content {
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .location-content {
    margin: auto;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .location-content {
    align-self: center;
  }
}

.location-content h3 {
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.3);
}

.location-content address,
.location-content li,
.location h4 {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.2);
}

.location-content h4 {
  font-weight: bold;
  font-size: 1rem;
}

.location-content ul {
  padding: 0;
  list-style-position: inside;
}

.location-content li {
  color: #fff;
}

.multi-column {
  columns: 1;
  -webkit-columns: 1;
  -moz-columns: 1;
}
@media screen and (min-width: 992px) {
  .multi-column {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}

.location {
  background-size: cover;
  background-position: center;
  position: relative;
}

.location::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color 250ms;
}

.location:nth-of-type(1) {
  background-image: url(../../images/locations/laurel.jpg);
}
.location:nth-of-type(1)::before {
  background-color: rgba(36, 84, 180, 0.8);
}

.location:nth-of-type(2) {
  background-image: url(../../images/locations/SEAFORD_new.JPG);
}
.location:nth-of-type(2)::before {
  background-color: rgba(44, 165, 141, 0.8);
}

.location:nth-of-type(3) {
  background-image: url(../../images/locations/MILFORD_news.JPG);
}
.location:nth-of-type(3)::before {
  background-color: rgba(218, 189, 60, 0.8);
}

.location:nth-of-type(4) {
  background-image: url(../../images/locations/MILFORD_news.JPG);
}
.location:nth-of-type(4)::before {
  background-color: rgba(133, 108, 211, 0.8);
}

.location:hover::before {
  background-color: rgba(30, 30, 30, 0.75);
}

@media screen and (min-width: 768px) {
  .expertise-list {
    columns: 2;
  }
}

/* Logo */

.header-logo,
.footer-logo {
  max-width: 200px;
}
@media screen and (min-width: 1200px) {
  .header-logo {
    max-width: 175px;
  }
  .location-detail-fam {
    margin-bottom: 0px;
  }
}

/* navbar */
.nav-link,
.nav-drop,
.nav-link:active,
.nav-drop:active {
  position: relative;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  padding: 0 !important;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.nav-drop::after {
  display: none;
}

.nav-link:hover,
.nav-drop:hover {
  color: #fff;
  text-decoration: none;
  background: none;
}

.nav-item,
.dropdown-item {
  margin-top: 0.5rem;
}

@media screen and (min-width: 1024px) {
  .dropdown-menu > div {
    background: #0d1e40;
  }
}

@media screen and (min-width: 1200px) {
  .nav-link,
  .nav-drop,
  .nav-link:active,
  .nav-drop:active {
    font-size: 14px;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    color: #fff;
    background: #fff;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 150ms ease-in-out;
  }

  .nav-link:hover::after {
    transform: scaleX(1);
  }
}

@media screen and (min-width: 1300px) {
  .nav-link,
  .nav-drop,
  .nav-link:active,
  .nav-drop:active {
    font-size: 1rem;
  }
}

.dropdown-menu {
  margin: 0;
  min-width: 0;
  border: none;
  border-radius: 0;
  background: none;
  padding-left: 1rem;
}
@media screen and (min-width: 1200px) {
  .dropdown-menu {
    background: none;
    padding: 0.5rem 0;
  }
}

.dropdown-item {
  width: auto;
  display: inline-block;
}
.dropdown-item:hover {
  background: none;
}

@media screen and (min-width: 1200px) {
  .dropdown-item {
    margin-right: 1rem;
    margin-top: 0.5rem;
  }

  .dropdown-menu > div {
    background: #2454b4;
  }
}

.fa-facebook-f::before {
  margin: auto;
}

/* Operation Table */
.operation-hours {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .operation-hours {
    width: 80%;
  }
}

td {
  vertical-align: top;
}

/* Parallax */
.parallax {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.parallax-testimonial {
  padding-left: calc(5vw - 15px);
  padding-right: calc(5vw - 15px);
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../../images/parallax01.jpg);
}

@media screen and (min-width: 1200px) {
  .parallax-testimonial {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.parallax-location {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(../../images/LAUREL.JPG);
}

/* Services */
.service-nav {
  padding-right: 15px;
  /* max-width: 16rem; */
  width: 16rem;
}

.service-select-wrapper {
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
  position: sticky;
  top: 0;
  z-index: 5;
}
.service-page .faqs a {
  text-decoration: none;
}
.service-q-a {
  margin-bottom: 15px;
}
.service-page {
  padding-top: 30px;
}

@media screen and (min-width: 768px) {
  .service-content {
    position: sticky;
    top: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .service-page {
    padding-top: 0px;
  }
}

/* Laser Light Page */
.laser-light-vid iframe {
  float: none;
  width: 100%;
  margin-bottom: 10px;
}
.laser-light-img {
  margin-top: 10px;
}
.laser-light-img img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .laser-light-img img {
    width: 71%;
  }
  .laser-light-vid iframe {
    float: right;
    width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .laser-light-img img {
    width: 71%;
  }
  .laser-light-vid iframe {
    float: right;
  }
}

/* Testimonials */

.testimonial-quote::before,
.testimonial-quote::after {
  font-size: 6rem;
  height: 1.5rem;
  line-height: 0.7;
  color: hsl(220, 67%, 42%);
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 4px 4px rgba(0, 0, 0, 0.2);
  display: block;
}

.testimonial-quote::before {
  content: open-quote;
  margin-bottom: 1rem;
}

.testimonial-quote::after {
  content: close-quote;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  text-align: right;
}

.testimonial-title {
  font-size: 1rem;
  font-weight: 400;
  color: hsl(221, 7%, 45%);
}

/* Welcome */
.welcome-img-wrapper {
  border-radius: 50%;
  overflow: hidden;
  height: 80vw;
  width: 80vw;
  margin: auto;
}
@supports (object-fit: cover) {
  .welcome-img-wrapper {
    margin: 0;
    height: auto;
    width: auto;
    padding: 1rem;
    shape-outside: circle(50%);
    overflow: hidden;
  }

  /* .welcome-img { 
        width: 100%; 
        height: 15vw;
        object-fit:cover; 
         border-radius: 55%;   
        box-shadow: 0 2px 8px rgba(10,10,10,0.3); 
    } */
}

/* States */
.has-shadow {
  box-shadow: 0 2px 2px rgba(10, 10, 10, 0.1), 0 4px 6px rgba(10, 10, 10, 0.1),
    0 8px 12px rgba(10, 10, 10, 0.1);
}
@media screen and (min-width: 992px) {
  .has-shadow-lg {
    box-shadow: 0 2px 2px rgba(10, 10, 10, 0.1), 0 4px 6px rgba(10, 10, 10, 0.1),
      0 8px 12px rgba(10, 10, 10, 0.1);
  }
}

.no-list {
  list-style-type: none;
  padding: 0;
}

.no-underline {
  text-decoration: none;
}

.hyphenated {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.break-word {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Themes */
/**/
.color-ref {
  blue: #2454b4;
  green: #13a89e;
  purple: #856cd3;
  orange: #ff7f1d;

  grayl: hsl(223, 7%, 47%);
  graym: hsl(223, 7%, 43%);
  grayd: hsl(223, 7%, 39%);
}

.service-link {
  color: hsl(223, 7%, 39%);
  font-weight: 400;
}

.service-link:hover {
  color: #7209b7;
  text-decoration: underline;
}

.service-link.active {
  color: #7209b7;
}

.link-icon {
  color: hsl(223, 20%, 75%);
}

.brand-primary {
  color: #2454b4;
}

.brand-secondary {
}
.advance-video {
  margin-top: 33px;
}
.advance-video iframe {
  width: 100%;
}

.home-title,
.page-title-secondary,
.page-section-heading,
.page-section-subheading,
.text-section-heading,
.form-title {
  color: #2454b4;
}

/* .page-section-subheading {
    color: hsl(223, 7%, 39%);
} */

.page-section-label {
  color: hsl(223, 7%, 39%);
  font-weight: bold;
  font-size: 1rem;
}

.footer-bg {
  background: hsl(221, 66%, 10%);
}

.b-rad {
  border-radius: 0.5rem;
}

.media-video iframe {
  width: 100%;
}
.home-video{
  height:700px;
  overflow:hidden;
}
