@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&family=Vollkorn+SC:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@600&display=swap");
html {
  scroll-behavior: smooth;
  scroll-padding: 3rem;
}

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "EB Garamond", serif;
  color: #333;
}

* {
  box-sizing: border-box;
}

a {
  color: #333;
  text-decoration: none;
}

header {
  display: flex;
  align-items: center;
}
header .logo {
  float: left;
  padding: 0.5rem;
}
header h1 {
  font-family: "Vollkorn SC", serif;
  color: #8CC63F;
  font-size: 1.8rem;
  padding: 0.5rem;
  margin: 0;
  text-align: left;
  flex-grow: 1;
}
header h1 .a {
  color: #C5E2B5;
}
header h1 .b {
  color: #97BDC8;
  font-size: 1.3rem;
}
header .burger {
  display: block;
  float: right;
  padding: 0.5rem;
  cursor: pointer;
}
header .burger div {
  width: 35px;
  height: 5px;
  background-color: black;
  margin: 6px 0;
  transition: 0.4s;
}
header .change .bar1 {
  transform: rotate(-45deg) translate(-9px, 6px);
}
header .change .bar2 {
  opacity: 0;
}
header .change .bar3 {
  transform: rotate(45deg) translate(-8px, -8px);
}

#map {
  display: block;
  margin: 0 auto;
}

.map {
  display: none;
  max-width: 90vw;
  padding: 0.5rem 0;
  margin: auto;
}

aside {
  display: block;
}
aside a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  /* 
  	display: inline-block;
  */
}
aside a:hover {
  background: #e2f1cf;
  border-radius: 50%;
}
aside ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
aside li {
  display: inline;
}

main .card {
  padding: 0 1rem;
}
main .map-link {
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
main .map-link div {
  float: right;
}
main .map-link svg {
  margin-top: -10px;
  width: 60px;
}
main h2 {
  position: relative;
  z-index: 1;
}
main h2::before {
  content: " ";
  position: absolute;
  top: 1.05em;
  z-index: -1;
  width: 4em;
  height: 0.4em;
  margin-left: -0.3em;
  margin-top: -0.3em;
  background: #cee9d1;
  background: linear-gradient(to right, #d1e8b2 0%, white 100%);
}
main h3 {
  position: relative;
  z-index: 1;
}
main h3::before {
  content: " ";
  position: absolute;
  top: 1.35em;
  z-index: -1;
  width: 8em;
  height: 0.2em;
  margin-left: -0.3em;
  margin-top: -0.3em;
  background: #cee9d1;
  background: linear-gradient(to right, #adcff1 0%, white 100%);
}
main .doc,
main .sis {
  display: block;
}
main .doc img,
main .sis img {
  width: 100%;
}
main .doc p,
main .sis p {
  margin: 0 0 2rem 0;
  font-style: italic;
  font-size: 0.8rem;
}
main .doc p span,
main .sis p span {
  display: block;
  font-weight: bold;
  font-style: normal;
  font-size: 1rem;
}
main .flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
main .grid {
  display: grid;
  align-items: start;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
main .grid div {
  padding: 0 1rem;
}
main ul {
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
}

footer {
  box-shadow: 0 -4px 14px -4px rgba(151, 189, 200, 0.6);
  padding: 0 1rem;
  margin-top: 2rem;
}
footer ul, footer li, footer p {
  margin: 0;
  padding: 0;
}
footer ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
footer li {
  text-align: center;
}
footer a, footer p {
  display: inline-block;
  padding: 1rem 2rem;
}
footer a {
  cursor: pointer;
}

.tight {
  margin: 0;
  padding: 0;
}

.small {
  font-size: 0.7em;
}

.w-320 {
  max-width: 320px;
}

.center {
  text-align: center;
}

.bounce {
  animation-duration: 2.2s;
  animation-iteration-count: infinite;
  animation-name: bounce;
  animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
}

@keyframes bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-20px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-7px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
.inline {
  display: flex;
  flex-wrap: wrap;
}
.inline dt {
  flex: 0 0 39.9%;
  max-width: 39.9%;
  overflow-wrap: break-word;
  text-align: right;
  padding-right: 1rem;
  box-sizing: border-box;
  font-weight: bold;
  margin: 0.5rem 0;
}
.inline dd {
  flex: 0 0 59.9%;
  max-width: 59.9%;
  margin: 0.5rem 0;
}

.active {
  top: 0;
  visibility: visible;
  opacity: 1;
  transition-duration: 0.6s;
  transform: scale(1);
  max-height: 100vh;
  max-width: 100vw;
  cursor: cell;
}

#btnTop {
  position: fixed;
  top: 4px;
  right: 10px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #8CC63F;
  color: white;
  cursor: pointer;
  border-radius: 10px;
  width: 50px;
  height: 50px;
}
#btnTop::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 14px;
  left: 10px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 20px solid white;
}

#Tel {
  cursor: pointer;
}

.data-t {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  vertical-align: middle;
  margin-top: 1rem;
}
.data-t tbody th {
  font-weight: normal;
  line-height: 1.5rem;
}
.data-t tbody th span {
  font-size: 0.6rem;
  padding-left: 0.1rem;
}
.data-t th, .data-t td {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #d1e8b2;
}
.data-t thead th {
  text-align: center;
}
.data-t tbody td {
  text-align: center;
  width: 4em;
}
.data-t th:nth-child(1) {
  text-align: right;
  width: 4em;
}
.data-t th:nth-child(2) {
  text-align: center;
  width: 1.2em;
}
.data-t th:nth-child(3) {
  text-align: left;
  width: 4em;
}
.data-t .pause {
  text-align: center;
  font-size: 0.8rem;
  background-color: #f4f9ec;
  vertical-align: middle;
}
.data-t .pause div {
  margin: auto;
  writing-mode: vertical-rl;
}
.data-t .open-1,
.data-t .open-2,
.data-t .open-3,
.data-t .open-4 {
  margin: auto;
  display: block;
  width: 10px;
  background: #8CC63F;
}
.data-t .open-1 {
  height: 1.3rem;
}
.data-t .open-2 {
  height: 2.8rem;
}
.data-t .open-3 {
  height: 4.3rem;
}
.data-t .open-4 {
  height: 5.8rem;
}

.columns {
  -moz-column-width: 500px;
       column-width: 500px;
  -moz-column-rule: 1px solid lightgrey;
       column-rule: 1px solid lightgrey;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.fblue {
  fill: #97BDC8;
}

.fgreen {
  fill: #C5E2B5;
}

.fdgreen {
  fill: #8CC63F;
}

.fwhite {
  fill: white;
}

.parallax {
  background-image: url("../uploads/L1000/DSC_0004.jpeg");
  height: 200px;
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 0.7rem;
}

header #logo {
  height: 9.3rem;
}
header h1 {
  margin-top: auto;
  font-size: 3rem;
  line-height: 2.79rem;
  text-transform: uppercase;
}
header h1 .b {
  font-size: 2.19rem;
}

aside {
  box-shadow: 0 5px 10px 0px rgba(151, 189, 200, 0.6);
  background: white;
  z-index: 120;
}
aside ul {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  padding: 0 1rem;
}
aside li {
  text-align: center;
  margin: 1rem 0;
}
aside a {
  box-sizing: border-box;
}

@media only screen and (max-width: 687.98px) {
  main h2 {
    margin-top: 3rem;
  }
  main h3 {
    margin-top: 2rem;
  }
  main .img {
    display: block;
    width: 100%;
    text-align: center;
  }
  main .img img {
    width: 15rem;
  }
}
footer {
  background: #97BDC8;
  padding: 0.5rem 0;
  color: white;
}
footer a {
  color: white;
}

#btnCall {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: #8CC63F;
  cursor: pointer;
  color: white;
  border: none;
  border-radius: 10px;
  width: 50px;
  height: 50px;
}

#btnCalendar {
  position: fixed;
  bottom: 70px;
  right: 10px;
  background: #8CC63F;
  cursor: pointer;
  color: white;
  border: none;
  border-radius: 10px;
  width: 50px;
  height: 50px;
}
#btnCalendar svg {
  fill: white;
}

#Nav svg {
  height: 50px;
  float: left;
  margin: 3px 1rem 0 1rem;
  opacity: 0;
}

.ulImp {
  margin: 1rem 0;
}
.ulImp li {
  margin: 0.5rem 0;
}

@media only screen and (max-width: 529.98px) {
  main .grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 300px));
  }
}
@media only screen and (max-width: 569.98px) {
  header #logo {
    height: 6.2rem;
  }
  header h1 {
    margin-top: auto;
    font-size: 2rem;
    line-height: 1.86rem;
    text-transform: uppercase;
  }
  header h1 .b {
    font-size: 1.46rem;
  }
}
@media only screen and (min-width: 688px) {
  .scrolled svg {
    opacity: 1 !important;
  }
  aside {
    position: sticky;
    top: 0;
    background: white;
    z-index: 120;
  }
  main {
    display: grid;
    grid-template-columns: 1fr 320px;
    grid-template-rows: auto;
    margin-top: 1rem;
    /*
    #contact { grid-area:	3	/	1	/	span 2	/	span 1; }
    #open { grid-area:		5	/	1	/	span 1	/	span 1; }
    #about { grid-area:		3	/	2	/	span 1	/	span 1; }
    #location { grid-area:	4	/	2	/	span 1	/	span 1; }
    #benefits { grid-area:	5	/	2	/	span 1	/	span 1; }
    /*
    #docTeam { grid-area:	3	/	7	/	5	/	13; }
    #team { grid-area:		5	/	1	/	6	/	13; }
    */
  }
  main #img_1 {
    grid-area: 1/1/span 1/span 2;
  }
  main #news {
    grid-area: 2/1/span 1/span 2;
  }
  main #left {
    grid-area: 3/1/span 1/span 1;
  }
  main #right {
    grid-area: 3/2/span 1/span 1;
  }
  main #both {
    grid-area: 4/1/span 1/span 2;
  }
  main #left {
    padding-right: 1rem;
  }
  main .img img {
    width: 15rem;
  }
}
@media only screen and (min-width: 900px) {
  #left {
    padding-left: 10rem;
    padding-right: 5rem;
  }
  .img {
    width: 8rem;
    float: left;
    margin-left: -9.5rem;
    margin-top: 1rem;
  }
  .img img {
    margin-top: -3rem;
  }
  main .card {
    padding: 0.5rem 1rem;
  }
  main #left {
    padding-left: 10rem;
    padding-right: 3rem;
  }
  main .img {
    float: left;
    margin-left: -10rem;
    margin-top: 1.4rem;
  }
  main .img img {
    width: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  main, header {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  header {
    padding: 0 0.5rem;
  }
  main #left {
    padding-left: 14rem;
    padding-right: 5rem;
  }
  main .img {
    float: left;
    margin-left: -14rem;
    margin-top: 1.4rem;
  }
  main .img img {
    width: 12rem;
  }
}/*# sourceMappingURL=style.css.map */