:root {
  --light: #f9f8f1;
  --dark-gray: #3f404c;
  --light-gray: #F8F8F8;
  --skin: #dfd4ca;
  --primary-orange: #fe6726;
}



html {
  overflow-x: hidden;
}

.about {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 10vh;
}

.address, .schedule, .services {
  width: 45%;
  display: flex;
  flex-direction: column;

}





.contact-info, .services-schedule {
  display: flex;
  justify-content: space-around;
  width: 45%;
  height: 55vh;
  border-radius: 20px;
  background-color: var(--light);
}


.container {
  min-width: 1200px;
}


.content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100vh;
  overflow-x: hidden;
}

.centered {
  object-fit: contain;
  height: 80%;
  width: 80%;
}

.footer {
  height: 25vh;
}

.header {

  height: 8vh;
  min-height: 80px;
  width: 100%;
}

.header-content {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  padding: 10px;
  color: var(--dark-gray);
  cursor: url('assets/images/icons8-tooth-32.png'), auto;

}

.header-content:hover, .nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 10px;
}

.icon {
  height: 15%;
  text-align: center;
  margin-top: 2rem;
}

iframe {
  border-radius: 20px;

}




.img-container {
  text-align: center;
  display: block;
  margin-top: 25px;
}



.location img {
  object-fit: contain;
  height: 70px;
}

.location-info, .schedule-info, .services-info {

  font-family: 'Epilogue', sans-serif;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;

}

.info-label {
  font-weight: 500;
  font-size: 1.4rem;
}

.location-info .address-value, .schedule-info {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}







.main-pic {
  display: block;
  /* margin-left: auto;
  margin-right: auto; */
  width: 100vw;
  height: 70vh;
  margin-bottom: 5vh;
  object-fit: contain;
  opacity: 0.8;
}

.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all .5s ease-in-out;
  text-align: justify;
}

.menu-btn__burger {
  width: 25px;
  height: 2px;
  background-color: var(--dark-gray);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(255, 101, 47, .2);
  transition: all .5s ease-in-out;

}

.menu-btn__burger::before,
.menu-btn__burger::after {
  content: '';
  position: absolute;
  margin: auto;
  width: 25px;
  height: 2px;
  background-color: var(--dark-gray);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(255, 101, 47, .2);
  transition: all .5s ease-in-out;
}

.menu-btn__burger::before {
  transform: translateY(-9px);
}

.menu-btn__burger::after {
  transform: translateY(9px);
}


.menu-btn.open .menu-btn__burger {
  transform: translateX(-30px);
  background: transparent;
  box-shadow: none;

}

.menu-btn.open .menu-btn__burger::before {
  rotate: 45deg;
  transform: translate(20px, -20px);
}

.menu-btn.open .menu-btn__burger::after {
  rotate: -45deg;
  transform: translate(20px, 20px);


}

.navbar.box-shadowed {
  box-shadow: #0000003e 0px 4px 10px 0px;

}


.nav-item {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: larger;
  padding: 5px 5px 10px;

}

.nav-link {
  color: var(--dark-gray);
}

.nav-link:hover {
  color: var(--primary-orange);
  cursor: url('assets/images/icons8-tooth-32.png'), auto;
}



.navbar {
  background-color: var(--light);
  height: inherit;
  min-height: 80px;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}


.navbar-brand, .navbar-links {
  display: flex;
  justify-content: end;
  align-items: center;
}

.navbar-brand {
  width: 55%;
}

.navbar-links {
  width: 40%;
}

.navbar-container {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.schedule-entry {
  width: 100%;
  font-family: 'Epilogue', sans-serif;
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr;
  align-items: center;
  justify-content: end;
}

.schedule-entry .schedule-day {
  font-size: 1.2rem;
  grid-column: 2 / 3;
  font-weight: 500;
}



.scrolldown {
  margin-top: 5vh;
  margin-bottom: 5vh;
  margin-left: 50px;
  position: relative;
  width: 40px;
  height: 40px;
  cursor: url('assets/images/icons8-tooth-32.png'), auto;
  transform: translateY(-80px) translateX(-38%) rotate(45deg);
}

.scrolldown span {
  position: absolute;

  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 3px solid var(--primary-orange);
  border-right: 3px solid var(--primary-orange);
  animation: animate 1.5s linear infinite;
  opacity: 0;
}

.scrolldown span:nth-child(1) {
  transform: translate(-10px, -10px);
  animation-delay: -0.4s;
}

.scrolldown span:nth-child(2) {
  transform: translate(0, 0);
  animation-delay: -0.2s;
}

.scrolldown span:nth-child(3) {
  transform: translate(10px, 10px);
  animation-delay: 0s;
}



.services-list {
  font-size: 1.2rem;
  font-weight: 400;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style-type: none;
  padding: 0;
}

.services-list li {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 2fr;
}


.services-schedule .divider {
  border: 1px solid var(--dark-gray);
  height: 90%;
  margin: auto 0;
}



.site-main {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.underscore {
  border-bottom: 2px solid var(--dark-gray);
  transform: translateY(-25%);
}

@keyframes animate {
  0% {
    top: -5px;
    left: -5px;
    opacity: 0;
  }

  25% {
    top: 0px;
    left: 0px;
    opacity: 1;
  }

  50%,
  100% {
    top: 5px;
    left: 5px;
    opacity: 0;
  }
}

#mapid {
  margin: auto;
  margin-top: 2rem;

}

@keyframes display {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }

  10% {
    transform: translateX(0);
    opacity: 1;
  }

  20% {
    transform: translateX(0);
    opacity: 1;
  }

  30% {
    transform: translateX(-200px);
    opacity: 0;
  }

  100% {
    transform: translateX(-200px);
    opacity: 0;
  }
}

.pic-ctn {
  position: relative;
  width: 100vw;
  height: 600px;
  margin-top: 15vh;
  margin-bottom: 15vh;
}

.pic-ctn>img {
  position: absolute;
  top: 0;
  left: calc(50% - 100px);
  opacity: 0;
  animation: display 16s infinite;
}

img:nth-child(2) {
  animation-delay: 4s;
}

img:nth-child(3) {
  animation-delay: 8s;
}

img:nth-child(4) {
  animation-delay: 12s;
}



.wrapper {
  display: flex;
  max-width: 80vw;
  margin-bottom: 10vh;
  position: relative;
}

.wrapper i {
  top: 50%;
  height: 44px;
  width: 44px;
  color: var(--dark-gray);
  cursor: url('assets/images/icons8-tooth-32.png'), auto;

  font-size: 1.15rem;
  position: absolute;
  text-align: center;
  line-height: 42px;
  background-color: var(--light);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 1;
  border: 2px solid var(--dark-gray);
}

.wrapper i:active {
  transform: translateY(-50%) scale(0.9);
}

.wrapper i:hover {
  background: var(--dark-gray);
  color: var(--light);
}

.wrapper i:first-child {
  left: -22px;
  display: none;
}

.wrapper i:last-child {
  right: -22px;
}

.wrapper .carousel {
  font-size: 0px;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.carousel.dragging {
  cursor: grab;
  scroll-behavior: auto;
}

.carousel.dragging img {
  pointer-events: none;
}

.carousel img {
  height: 500px;
  border-radius: 10px;
  object-fit: cover;
  user-select: none;
  margin-left: 14px;
  width: calc(100% / 3);
}

.carousel img:first-child {
  margin-left: 0px;
}

@media screen and (max-width: 1600px) {

  .about {
    flex-direction: column;
    gap: 3rem;
  }

  .about>* {
    width: 80%;
  }

  /* .about .location-icon {
    height: 35%;
  } */

  .address {
    width: 50%;
  }

  .address .icon {
    height: 20%;
  }

  .about .location-info {
    gap: 0.5rem;
    height: 60%;
  }

  .carousel img {
    width: calc(100% / 2);
  }

  .contact-info {
    height: 60vh;
    margin-bottom: 5vh;
  }


  iframe {
    height: 425px;
    width: 500px;
  }



  #scrolldown-about {
    margin-right: 1%;
  }

  .services-schedule {
    height: 70vh;
  }

}

@media screen and (max-width: 1200px) {

  .about {
    justify-content: center;
    margin-bottom: 5vh;
  }

  .address .icon {

    height: 20%;
  }

  .carousel img {
    width: calc(100%)
  }

  .contact-info {
    height: 55vh;
  }

  .header-content {
    font-size: 2.2rem;
  }

  iframe {
    width: 400px;
    height: 400px;
  }

  .main-pic {
    height: 65vh;
    object-fit: contain;
  }

  .navbar-brand {
    width: 30%;
    justify-content: start;
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .navbar-links {
    width: 70%;
  }

  .scrolldown {
    /* height: 20px; */
    margin-top: 0;
  }

  .services-schedule {
    height: 65vh;
  }

}


@media screen and (max-width: 1000px) {

  .address .icon {
    height: 20%;
  }

  .contact-info {
    flex-direction: column;
    height: 95vh;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
  }

  iframe {
    width: 650px;
    height: 350px
  }

  .navbar-brand {
    width: 30%;
    justify-content: start;
  }

  .navbar-links {
    width: 70%;
  }

  .services-schedule {
    height: 65vh;
  }

}


@media screen and (max-width: 900px) {
  .carousel img {
    width: calc(100% / 2);
  }

  .contact-info {
    height: 75vh;
  }

  .services-schedule {
    height: 55vh;
  }

  iframe {
    width: 550px;
  }
}

@media screen and (max-width: 800px) {

  .contact-info, .services-schedule {
    height: 60%;
  }

  .content {
    /* transform: translateX(10%); */
  }

  h2.header-content {
    font-size: 1.5rem;
    margin-bottom: 0;
  }


  .header {
    width: 100vw;
  }



  iframe {
    width: 450px;
  }

  .main-pic {
    transform: scale(1.5);
  }

  .menu-btn {
    display: flex;
  }

  .menu-btn-wrapper {
    position: absolute;
    right: 10px;
    bottom: 21px
  }

  .navbar {
    width: inherit;
    -webkit-backface-visibility: hidden;
  }

  .navbar-brand {
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
    padding-bottom: 0;

  }

  .navbar-brand h2 {
    width: 100%;
    text-align: center;
  }


  .navbar-container {
    flex-direction: column;
    align-items: center;
  }

  .nav-link {
    font-size: 1rem;
  }

  .navbar-links {
    display: none;
    width: 100vw;
    background-color: var(--light);
    box-shadow: #0000003e 0px 7px 10px -5px;
  }

  .scrolldown {
    margin-top: 5vh;
  }
}


@media screen and (max-width: 750px) {

  .address {
    width: 95%;
  }

  .carousel img {
    width: 100vw
  }

  .divider {
    display: none;
  }




  iframe {
    width: 500px;
  }

  .main-pic {}

  .navbar-links li {
    padding-bottom: 0px;
  }

  .navbar-links li:last-child {
    padding-bottom: 10px;
  }



  .schedule-info {
    width: 100%;
  }

  .schedule, .services {
    width: 100%;
    background-color: var(--light);
    border-radius: 20px;
  }

  .schedule-entry {
    grid-template-columns: 0.3fr 1fr 1fr;
  }

  .services-list {
    width: 90%;
  }


  .services-list li {
    grid-template-columns: 1fr 1.2fr
  }

  .services-schedule {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    gap: 3rem;
  }



  .schedule-info, .services-info {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 650px) {


  iframe {
    width: 350px;
  }

  .main-pic {
    transform: scale(2);
  }

  .nav-item {
    font-size: 1.1rem;
  }

  .scrolldown {
    margin-left: 40px;
  }

  .site-main {
    gap: 0;
  }
}

@media screen and (max-width: 480px) {
  .carousel img {
    width: 100vw
  }

  iframe {
    width: 280px;
  }
}





/* @media screen and (max-width: 1800px) {

  .about {
    flex-direction: column;
    gap: 2rem;
    height: 100vh
  }

  .about>* {
    width: 80%;
  }
} */