@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&family=Yeseva+One&display=swap");
:root {
  font-size: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  --color--accent: #bfd2f8;
  --color--primary: #1f2b6c;
  --color--secondary: #159eec;
  overflow-x: hidden;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

body {
  font-family: "Work Sans", sans-serif;
  overflow-x: hidden;
  position: relative;
}

.spacing--1 > * {
  margin-top: 4rem;
}

.spacing--2 > * + * {
  margin-top: 1.85rem;
}

.letter--spacing {
  letter-spacing: 0.16em;
}

.center {
  margin: 0 auto;
}


/* font sizes */
.display--1 {
  font-size: clamp(2.5rem, calc(3vw + 1.5rem), 3rem);
}

.display--2 {
  font-size: 2rem;
}



.display--3 {
  font-size: 1.625rem;
}

.display--4 {
  font-size: 1.125rem;
}

/* onbrand colors */
.color--accent {
  color: #bfd2f8;
}

.color--primary {
  color: #1f2b6c;
}

.color--secondary {
  color: #159eec;
}

/* resuable font */
.font--yeseva {
  font-family: "Yeseva One", cursive;
}

.not--button {
  border: none;
  background: none;
}

/* Modular css for dashes on the page */
.dash {
  width: 1rem;
  height: 0.1rem;
  background-color: #fff;
}

.dash__long {
  width: 70%;
}

/* reusable code for simple animation */
.content__shade {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.content__shade:hover, .content__shade:focus {
  opacity: 1;
  cursor: pointer;
}

/* resuable code for the select form */
.form-group .select {
  position: relative;
}

.form-group .select-element {
  position: relative;
  background-color: transparent;
  z-index: 2;
}

.form-group .select-element:hover {
  cursor: pointer;
}

.selector {
  position: absolute;
  right: 1.5em;
  top: 1.25em;
  z-index: 1;
}

.selector__adjust {
  top: 0.6em;
  right: 0.8em;
}

/*topmost section*/
.top-most {
  width: 80%;
  margin: 0 auto;
}

/* Navbar section */
.navbar--container {
  background-color: var(--color--primary);
}

.navbar--container .navbar {
  width: 80%;
  margin: 0 auto;
}

.appointment-btn a{
  text-decoration: none;
}

.navbar--container .navbar .nav-link,
.navbar--container .navbar .navbar-brand {
  color: #fff;
  cursor: pointer;
}

.navbar--container .navbar .nav-link:hover {
  color: var(--color--accent, #000);
}

.navbar--container .navbar .form-control.width-auto {
  width: auto;
  border-radius: 20px;
  display: inline;
}

.navbar--container .navbar .nav-btn {
  background-color: var(--color--accent, #bfd2f8) !important;
  color: var(--color--primary, #1f2b6c) !important;
}

.navbar--container .navbar .nav-btn:hover {
  opacity: 0.7;
  color: var(--color--secondary);
}

.navbar--container .navbar .fa-search {
  padding-right: 0.5rem;
}

.navbar--container .navbar #search--bar {
  display: none;
}

/* hero section */
.appointment-small-hero{
    position: relative;
    height: 50vh;
}

.fixed{
    position: sticky !important;
    top: 0px;
    z-index: 1;
}

.appointment-small-hero::before{
    background-image: url("https://i.postimg.cc/Y0kWF8gg/hero.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    content: "";
    position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
    opacity: 0.6;
    z-index: -20;
}

.bottom-img{
    position: absolute;
    bottom: 0;
}


.section--hero .radial--line {
  width: 100%;
  height: 8px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(22%, var(--color--accent, #bfd2f8)), color-stop(22%, var(--color--primary)), color-stop(84%, var(--color--primary)), color-stop(84%, var(--color--secondary)));
  background-image: linear-gradient(90deg, var(--color--accent, #bfd2f8) 22%, var(--color--primary) 22%, var(--color--primary) 84%, var(--color--secondary) 84%);
}

.section--hero .circle {
  background-color: var(--color--secondary, #159eec);
  height: 120px;
  width: 120px;
}

.section--hero .circle__right {
  border-top-left-radius: 100%;
  bottom: 0.5em;
  right: 0;
  opacity: 0.5;
}

.section--hero .circle__left {
  border-bottom-right-radius: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}

/* book and schedule section */
.book--schedule .section--book--select {
  margin-top: 4rem;
  background-color: var(--color--primary, blue);
  color: #fff;
  border-radius: 5px;
}

.book--schedule .section--book--select ::-webkit-input-placeholder {
  color: #fff;
  font-weight: 200;
}

.book--schedule .section--book--select :-ms-input-placeholder {
  color: #fff;
  font-weight: 200;
}

.book--schedule .section--book--select ::-ms-input-placeholder {
  color: #fff;
  font-weight: 200;
}

.book--schedule .section--book--select ::placeholder {
  color: #fff;
  font-weight: 200;
}

.book--schedule .section--book--select .row {
  --bs-gutter-x: 0;
}

.book--schedule .section--book--select .row > * {
  padding-left: 0;
  padding-right: 0;
}

.book--schedule .section--book--select .row > * input,
.book--schedule .section--book--select .row > * select {
  border-width: 0;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.book--schedule .section--book--select .row > * textarea,
.book--schedule .section--book--select .row > * button {
  border: 0;
}

.book--schedule .section--book--select .row > * button {
  width: 100%;
  padding: 0.8em 0;
  font-weight: 500;
  background-color: var(--color--accent, blue);
}

.book--schedule .section--book--select input[type="date"]::-webkit-calendar-picker-indicator, .book--schedule .section--book--select input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  -webkit-filter: invert(0.8);
          filter: invert(0.8);
}

.book--schedule .section--book--select input[type="date"]::-webkit-calendar-picker-indicator:hover, .book--schedule .section--book--select input[type="time"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.book--schedule .section--book--select .form-control {
  background-color: inherit;
  border-radius: 0;
  color: #fff;
  font-weight: 200;
}

.book--schedule .section--book--select .form-control option {
  color: #000;
}

.book--schedule .section--schedule {
  color: #fcfefe;
}

.book--schedule .section--schedule .section--schedule--content {
  width: 99%;
  margin: 0 auto;
  border-radius: 5px;
  background: var(--color--primary, #1f2b6c);
}

.book--schedule .section--schedule .section--schedule--content h2 {
  padding: 0 0.5em;
}

.book--schedule .section--schedule .schedule--hours--content {
  width: 75%;
  margin: 0 auto;
  padding: 2.5rem 0;
}

.book--schedule .section--schedule .schedule--hours--item h3 {
  width: 100px;
  font-weight: inherit;
  font-size: 1.125rem;
}

.book--schedule .section--schedule .schedule--hours--item .closed {
  width: 156.53px;
}

/* map section */
.section--map .img {
  width: 100%;
}

/* contact us section */
.section--contact .header {
  margin-bottom: 4rem;
}

.section--contact--info .col--content {
  background-color: var(--color--accent, #bfd2f8);
  border-radius: 5px;
  height: 100%;
}

.section--contact--info .col--content__primary {
  background-color: var(--color--primary);
}

.section--contact--info--item {
  padding: 3em 2em;
}

.section--contact--info--item h3 {
  padding-top: 1.125em;
}

.section--contact--info--item p {
  padding-top: 0.5em;
}

.pg-footer {
  background-color: #1f2b6c;
  color: #fcfefe;
}

.pg-footer-link-pages a {
  color: inherit;
}

.pg-footer-link-pages a:hover {
  color: var(--color--accent);
}

.pg-footer-news-email input {
  background-color: #bfd2f8;
}

.pg-footer ::-webkit-input-placeholder {
  color: #1f2b6c;
}

.pg-footer :-ms-input-placeholder {
  color: #1f2b6c;
}

.pg-footer ::-ms-input-placeholder {
  color: #1f2b6c;
}

.pg-footer ::placeholder {
  color: #1f2b6c;
}

.pg-footer hr {
  width: 100%;
  background-color: var(--color--accent, #bfd2f8) !important;
  opacity: 1 !important;
  padding-top: 0.1rem;
}

@media (max-width: 1200px) {
  .top-most-container .top-most {
    width: 90%;
  }
  .navbar--container .navbar {
    width: 90%;
  }
  .section--hero {
    background-position-x: 20%;
  }
}

@media (max-width: 460px) {
  .top-most-container .top-most {
    width: 95%;
  }
  .section--hero .circle {
    display: none;
  }
  .section--hero .header {
    width: 95%;
  }
  .section--hero .header .display--1 {
    font-size: 2em;
  }
  .book--schedule .section--schedule .schedule--hours--item {
    display: block !important;
  }
  .book--schedule .section--schedule .schedule--hours--item h3 {
    color: var(--color--accent);
  }
  .book--schedule .section--schedule .schedule--hours--item h3,
  .book--schedule .section--schedule .schedule--hours--item .closed {
    width: 100%;
  }
  .book--schedule .section--schedule .schedule--hours--item .dash {
    display: none;
  }
}

@media (max-width: 220px) {
  :root h1,
  :root h2,
  :root h3,
  :root h4 {
    word-wrap: break-word !important;
  }
  .section--contact--info--item {
    padding: 2em 1em;
  }
}

.selector{
  display: none;
}
/*# sourceMappingURL=appointment.css.map */