*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #dabea7;
  background-image: url(../public/bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: #876d5a;
}

.section {
  margin: 10rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section .title {
  text-align: center;
}
.section .decoration {
  margin: 1rem 0;
  width: 50px;
  height: 50px;
  filter: hue-rotate(45deg);
}

a {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
p {
  letter-spacing: 0.1rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  p {
    letter-spacing: 0.2rem;
  }
}

h1 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
}

h2 {
  color: #9d7553;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.8rem;
  }
}

h4 {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.4rem;
  }
}

h5 {
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  h5 {
    font-size: 1.2rem;
  }
}

p {
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  p {
    font-size: 1rem;
  }
}

header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-inline: 20px;
  position: relative;
  text-align: center;
  background-image: url(../public/hero/img-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
header #title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 12rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
@media (min-width: 768px) {
  header #title {
    width: 18rem;
    height: 18rem;
  }
}
header #title p {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5c5c5c;
}
header nav {
  position: absolute;
  bottom: 0;
  display: flex;
  width: 100%;
  height: 70px;
  background-color: transparent;
  transition: 0.5s;
  z-index: 999;
}
header nav a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  letter-spacing: 2px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  color: #f1f1f1;
  font-size: 0.6rem;
}
header nav a img {
  height: 100%;
}
@media (min-width: 425px) {
  header nav a {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  header nav a {
    font-size: 1.2rem;
  }
}
header nav a:hover {
  background-color: #dabea7;
  color: #090a0d;
}
header .sticky {
  position: fixed;
  top: 0;
  background-color: #876d5a;
  box-shadow: 0 0 20px rgba(255, 210, 210, 0.2);
  transition: 0.5s;
}
header .sticky a {
  color: #f1f1f1;
}

#about .content-box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
#about .content-box .img-box {
  padding: 2rem;
  width: 80%;
}
#about .content-box .img-box img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#about .content-box .text-box {
  background-color: rgba(157, 117, 83, 0.2);
  border-radius: 20px;
  width: 80%;
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#about .content-box .text-box p {
  color: #9d7553;
}
#about .content-box .text-box p a {
  all: unset;
  cursor: pointer;
}
#about .content-box .text-box p a:hover {
  color: #f1f1f1;
}
@media (min-width: 768px) {
  #about .content-box .img-box,
  #about .content-box .text-box {
    width: 40%;
  }
}

#service .course-collection {
  margin: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#service .course-collection .course-item {
  margin: 2rem 0;
  width: 90%;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow: hidden;
  transition: 0.5s;
}
#service .course-collection .course-item:hover {
  transform: scale(1.05);
  transition: 0.5s;
}
#service .course-collection .course-item .img-box {
  width: 100%;
  height: 40%;
}
#service .course-collection .course-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#service .course-collection .course-item .text {
  padding: 1.5rem;
}
#service .course-collection .course-item .text h4 {
  text-align: center;
  color: #876d5a;
}
#service .course-collection .course-item .text h5 {
  margin-top: 0.5rem;
  text-align: center;
  color: #8e8e8e;
  font-size: 0.8rem;
}
#service .course-collection .course-item .text p {
  margin-top: 1rem;
  color: #9d7553;
}
@media (min-width: 425px) {
  #service .course-collection .course-item {
    flex-direction: row;
    height: 350px;
    max-width: 768px;
  }
  #service .course-collection .course-item .img-box {
    width: 40%;
    height: 100%;
  }
  #service .course-collection .course-item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #service .course-collection .course-item .text {
    width: 60%;
  }
}

#gallery h5 {
  margin-top: 1rem;
  color: #889f8b;
}
#gallery .album-collection .album {
  margin: 10rem 0;
  width: 80vw;
}
#gallery .album-collection .album h4 {
  font-size: 1.8rem;
  margin: 2rem 0;
  text-align: center;
}
#gallery .album-collection .album .slider a {
  height: 300px;
}
#gallery .album-collection .album .slider a img {
  width: 100%;
  height: 100%;
  padding: 0 0.5rem;
  object-fit: cover;
  border-radius: 12px;
}

#contact h5 {
  margin-top: 1rem;
  color: #889f8b;
}
#contact .contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  width: 100vw;
  margin-top: 3rem;
}
#contact .contact-container .info-collection {
  width: 80%;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
@media (min-width: 768px) {
  #contact .contact-container .info-collection {
    width: 30%;
  }
}
#contact .contact-container .info-collection .info-item {
  margin: 1rem 0;
}
#contact .contact-container .info-collection .info-item img {
  width: 25px;
  height: 25px;
  margin-right: 1.5rem;
}
#contact .contact-container .info-collection .info-item a {
  all: unset;
  cursor: pointer;
}
#contact .contact-container .info-collection .info-item a:hover {
  color: #090a0d;
}
#contact .contact-container .map-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  #contact .contact-container .map-box {
    width: 50%;
  }
}

footer {
  background-color: #876d5a;
}
footer p {
  padding: 0.5rem 0;
  color: #f1f1f1;
}
footer a {
  all: unset;
}/*# sourceMappingURL=style.css.map */