:root {
  --dark-blue: #00263e;
  --soft: #edfaf8;
  --teal: #57b6b2;
  --transparent-midnight: #00263e33;
  --transparent-azure: #57b6b233;
}

.page-template-landing {
  background-color: var(--soft);
  .footer-skyline {
    padding-top: 0;
  }
  .skyline {
    margin-bottom: -8px;
    padding-top: 20px;
  }
  .chckup_widget,
  .custom-banner,
  #header,
  #sticky-header {
    display: none;
  }
  .page {
    margin: 0;
  }
  .entry-content {
    max-width: none;
    width: 100%;
    margin: 0;
  }
  .inside-footer {
    display: none !important;
  }
}
.content-wrapper {
  max-width: 1200px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
}
dialog {
  position: fixed;
  height: 100vh;
  width: 100vw;
  border: none;
  background: transparent;
  padding: 0;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-container {
  position: relative;
  display: inline-block;
}
dialog img {
  width: fit-content;
  height: 90vh;
  max-height: fit-content;
  object-fit: contain;
  display: block;
  margin: auto;
  border-radius: 8px !important;
  position: relative;
  overflow: hidden;
}
.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--teal) !important;
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 28px;
  text-align: center;
  z-index: 10;
  padding: 0;
  outline: 0;
}
.new-lp {
  font-size: 16px;
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--dark-blue);
  }
}
.fifty-percent {
  width: 50%;

  &:first-of-type {
    padding-right: 5%;
  }
  &:last-of-type {
    padding-left: 5%;
  }
}
.lp-btn {
  background-color: var(--teal);
  color: white;
  text-transform: capitalize;
  border-radius: 100px;
  padding: 20px;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
  transition: all 0.6s ease;
}
.lp-btn:visited {
  color: white;
}
.lp-btn:hover {
  background-color: var(--teal);
  color: white;
}
.lp-hero {
  width: 100%;
  background-color: var(--dark-blue);
  color: #fff;
  padding: 80px 0;
  display: flex;
  flex-direction: column;

  .lp-hero-content {
    display: flex;
    padding-bottom: 80px;
  }
  .lp-logo {
  }
  & h1 {
    font-size: 40px;
    line-height: 120%;
    color: #fff;
    font-weight: 600;
  }
  & p {
    margin-bottom: 0;
    color: #fff;
  }
  .logo-ctn {
    margin-bottom: 0px;

    .lp-btn {
      display: none;
    }
  }
}
.hero-card {
  background-color: #fff;
  padding: 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;

  & img {
    border-radius: 8px;
    margin-bottom: 24px;
  }
  .lp-btn {
    margin-bottom: 16px;

    &:last-of-type {
      margin-bottom: 0;
    }
  }
}
.lp-hero-sub {
  border-top: 2px solid var(--transparent-azure);
  display: flex;
  justify-content: space-between;
  padding: 24px 0 0 0;

  & p {
    margin-bottom: 0;
    color: #fff;
    text-transform: capitalize;
  }
  & a {
    color: #fff;
    text-transform: capitalize;
    line-height: 1.5;

    & span {
      color: #fff;
    }
  }
  & a:visited {
    color: #fff;

    & span {
      color: #fff;
    }
  }
}
.lp-services-section {
  padding: 80px 0;
  background-color: #fff;

  .services-img {
    border-radius: 8px;
  }
  .lp-services-content {
    display: flex;
  }
}

.lp-sub-title {
  font-size: 40px;
  font-weight: 600;
}

.lp-services {
  & p:last-of-type {
    color: var(--dark-blue);
    padding-top: 24px;
    margin-bottom: 0;
    border-top: 2px solid var(--transparent-midnight);

    & a {
      font-weight: bold;
      color: var(--dark-blue);
    }
    & a:visited {
      color: var(--dark-blue);
    }
  }
}

.lp-check-ctas {
  display: flex;
  flex-wrap: wrap;
  grid-auto-columns: 1fr;
  gap: 16px;
  margin: 0 !important;
  list-style-type: none;
  padding: 0 0 40px 0;
}

.check-cta {
  padding: 16px 24px;
  border-radius: 30px;
  background-color: var(--soft);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--dark-blue);
  list-style-type: none;
  width: fit-content;

  & svg {
    width: 18px;
    margin-right: 10px;

    & path {
      fill: var(--dark-blue);
    }
  }
}

.lp-hours {
  padding: 80px 0;
  background-color: var(--dark-blue);

  .lp-sub-title {
    display: none;
  }

  .hours {
    max-width: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 300px;

    & p:first-of-type {
      font-weight: bold;
      font-size: 24px;
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 2px solid var(--transparent-azure);
      padding-left: 20px;
      padding-right: 20px;
    }

    & p {
      color: #fff;
      text-align: center;
      margin-bottom: 0;
    }
  }
  .intro-hours-day {
    display: flex;
    flex-direction: column;
    color: #fff !important;
    max-width: 250px;
    padding: 0;
    border: none;

    & h4 {
      font-weight: bold;
      font-size: 24px;
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 2px solid var(--transparent-azure);
      padding-left: 20px;
      padding-right: 20px;
      color: #fff;
    }

    & p {
      text-align: center;
      margin-bottom: 0;
    }
  }
}

.lp-team-section {
  padding: 80px 0;
  height: 750px;
  display: flex;
  justify-content: center;

  .lp-team-content {
    display: flex;
  }

  & img {
    border-radius: 8px;
  }
  .lp-team-content-upper {
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid var(--transparent-midnight);
  }
  .lp-sub-title {
    margin-bottom: 0;
  }
}

.lp-footer {
  background-color: var(--dark-blue);
  padding: 48px 0;

  .lp-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;

    & img {
      max-width: 150px;
    }
  }
  .lp-footer-btns-ctn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;

    .lp-btn {
      width: 185px;

      &:hover {
        background-color: var(--teal);
      }
    }
  }
}

/* slider css */

.sl-lp-wrapper {
}
.sl-lp-container {
  /* display: flex;
  width: 1360px;
  max-width: 90vw;
  height: 100%;
  display: flex;
  flex-direction: row; */
}
.sl-lp-header {
  font-weight: bold;
  color: var(--teal);
  margin-bottom: 17px;
  text-transform: capitalize;
}
.sl-lp-arrow-container {
  max-height: 48px;
  max-width: 48px;
}
.sl-lp-arrow-container:hover {
  cursor: pointer;
}
.sl-lp-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
}
.sl-lp-content {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}
.sl-lp-content .sl-lp-text {
  & > *:first-child {
    display: block;
    margin-bottom: 0;
  }
  & > * {
    display: none;
  }
  /* & p span {
    text-transform: lowercase !important;

    &:first-letter {
      text-transform: uppercase;
    }
    &:first-line {
      text-transform: uppercase;
    }
  } */
}
.sl-lp-content .sl-lp-name {
  text-transform: capitalize;
  font-weight: bold;
  color: var(--dark-blue);
  font-size: 24px;
  margin-bottom: 10px;
  font-family: trajan-pro-3, serif;
}
.sl-lp-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sl-lp-side {
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  text-align: center;
  background-color: var(--teal);
  border: 2px solid var(--teal);
  box-sizing: border-box;
  font-size: 20px;
  color: var(--teal);
  transition: all 0.6s ease;
  color: #fff;
}
.sl-lp-side:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  color: white;
  cursor: pointer;
}

.lp-header-logo {
  margin: 40px 0 80px 0;
}

/* media query */

@media screen and (max-width: 1024px) {
  .fifty-percent {
    width: 100%;
    &:first-of-type {
      padding: 0 0 48px 0;
    }
    &:last-of-type {
      padding: 0;
    }
  }
  .content-wrapper {
    flex-direction: column;
  }
  .lp-hero {
    padding: 48px 0;

    .lp-hero-content {
      padding-bottom: 48px;
    }
    .logo-ctn {
      display: none;
      justify-content: space-between;
      margin-bottom: 20px;

      .lp-logo {
        max-width: 200px;
      }
      .lp-btn {
        display: inline-block;
        height: fit-content;

        &:hover {
          background-color: var(--teal);
        }
      }
    }
    & h1 {
      font-size: 30px;
    }
  }
  .hero-card {
    padding: 24px;
  }
  .lp-hero-sub {
    & p,
    a {
      margin-bottom: 20px;
      text-align: center;
    }
    & a {
      margin-bottom: 0;
      display: flex;
      flex-direction: column;
    }
  }
  .lp-services-section {
    padding: 48px 0;

    .lp-sub-title {
      padding-bottom: 24px;
      border-bottom: 2px solid var(--transparent-midnight);
    }
  }
  .lp-hours {
    padding: 48px 0;

    .hours {
      gap: 12px;
      justify-content: space-between;
      width: 100%;
    }

    .day {
      flex-direction: row;
      justify-content: space-between;
      max-width: none;
      width: 100%;

      & p,
      p:first-of-type {
        font-size: 16px;
        font-weight: normal;
        border-bottom: none;
        margin-bottom: 0;
        padding: 0;
      }
      & p:first-of-type {
        font-family: trajan-pro-3, serif;
        font-weight: 600;
      }
    }
    .lp-sub-title {
      display: block;
      color: #fff;
      padding-bottom: 24px;
      border-bottom: 2px solid var(--transparent-azure);
    }
  }
  .lp-footer-logo {
    margin-bottom: 48px;
  }
  .sl-lp-btns {
    align-items: flex-start;
  }
  .lp-team-section {
    padding: 48px 0;
    height: 1275px;
    max-width: none;
  }
  .lp-sub-title {
    font-size: 32px !important;
    font-weight: 600;
  }
}
