@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url(../images/decorate/bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: #5c5c5c;
  position: relative;
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  background: white;
  mix-blend-mode: overlay;
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.section {
  margin: 10rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.section.overlay-bg {
  position: relative;
}
.section h5 {
  margin-top: 1rem;
  color: #8e8e8e;
  z-index: 5;
}
.section .title {
  text-align: center;
  z-index: 3;
}
.section .decoration-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  font-family: "Times New Roman", Times, serif;
  z-index: 2;
  color: #F4DFBA;
  opacity: 0.3;
}
.section .decoration {
  margin: 1rem 0;
  width: 50px;
  height: 50px;
  opacity: 0.6;
}

.section:nth-last-child(1) {
  margin-bottom: 3rem;
}

h1,
h2,
h3,
h4,
h5,
p {
  letter-spacing: 0.1rem;
  line-height: 1.5rem;
  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: #FFB433;
  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;
  }
}

a {
  text-decoration: none;
  cursor: pointer;
}

.btn {
  color: white;
  background: #FFB433;
  padding: 8px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn:hover {
  color: #FFB433;
  background: white;
  border: 1px solid #FFB433;
}

header {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-inline: 20px;
  text-align: center;
  position: relative;
}
header .hero-collection-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header #hero-collection-l,
header #hero-collection-s {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
header #hero-collection-l .hero-l,
header #hero-collection-l .hero-s,
header #hero-collection-s .hero-l,
header #hero-collection-s .hero-s {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 1s;
}
header::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
}
header .scroll-down-animation {
  position: absolute;
  bottom: 5rem;
  font-size: 1.2rem;
  color: #80CBC4;
  text-shadow: 2px 7px 5px rgba(255, 255, 255, 0.5), 0px -4px 10px rgba(255, 255, 255, 0.3);
  z-index: 12;
}
@media (min-width: 768px) {
  header .scroll-down-animation {
    display: none;
  }
}
header .scroll-down-animation div {
  transform: rotate(90deg);
}
header .scroll-down-animation div:nth-child(1) {
  animation: scrollDown1 3s infinite;
}
header .scroll-down-animation div:nth-child(2) {
  animation: scrollDown2 3s infinite;
}
header .scroll-down-animation div:nth-child(3) {
  animation: scrollDown3 3s infinite;
}
header .scroll-down-animation p {
  font-size: 1.5rem;
  animation: scrollDown4 3s infinite;
}
header #title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 10rem;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0 20px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow: hidden;
  z-index: 12;
}
@media (min-width: 768px) {
  header #title {
    height: 12rem;
    padding: 0 30px;
  }
}
header #title h1 {
  font-size: calc(1.7rem + 0.6vw);
  line-height: 1.5;
}
header #title p {
  padding-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5c5c5c;
}
header #title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  top: -7px;
}
header nav {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 84px;
  background-color: transparent;
  transition: 0.5s;
  z-index: 999;
}
header nav .title {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 1.5rem;
  padding: 0 1rem;
  color: #090a0d;
  cursor: pointer;
  visibility: hidden;
}
header nav .title img {
  max-width: 170px;
  padding: 8px;
  border-radius: 50%;
  object-fit: contain;
}
header nav .links {
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50vw;
  height: 100vh;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  white-space: nowrap;
  transform: translateX(100%);
  transition: 0.3s;
  cursor: pointer;
  animation: slideRight 0.3s;
}
header nav .links.show {
  display: flex;
  background: linear-gradient(135deg, #FFB433, #F4DFBA);
  transform: translateX(0);
  transition: 0.3s;
  animation: slideLeft 0.3s;
}
header nav .links :first-child {
  margin-top: 5rem;
}
header nav .links a {
  margin: 1rem 0;
  text-decoration: none;
  color: #f1f1f1;
  font-size: 1.2rem;
}
@media (min-width: 992px) {
  header nav .links {
    display: flex;
    transform: translateX(0);
    width: 60%;
    height: 84px;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: none;
  }
  header nav .links :first-child,
  header nav .links a {
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    color: #80CBC4;
    font-size: 0.6rem;
  }
}
@media (min-width: 992px) and (min-width: 425px) {
  header nav .links :first-child,
  header nav .links a {
    font-size: 0.8rem;
  }
}
@media (min-width: 992px) and (min-width: 768px) {
  header nav .links :first-child,
  header nav .links a {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  header nav .links :first-child:hover,
  header nav .links a:hover {
    background-color: #80CBC4;
    color: whitesmoke !important;
  }
}
header nav .hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 1rem;
  z-index: 20;
}
header nav .hamburger.hidden {
  visibility: hidden;
}
header nav .hamburger img {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  header nav .hamburger {
    display: none;
  }
}
header .sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: #FFB433;
  box-shadow: 0 0 20px rgba(255, 210, 210, 0.2);
  transition: 0.5s;
}
header .sticky .title {
  height: auto;
  color: #f1f1f1;
  visibility: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
header .sticky .title h4 {
  font-size: calc(1.1rem + 0.3vw);
}
header .sticky .title span {
  font-size: calc(0.7rem + 0.3vw);
  margin-top: 4px;
}
header .sticky .links {
  top: 0;
}
header .sticky .links a {
  color: #f1f1f1;
}
header .sticky .hamburger img {
  filter: invert(100%);
}

#about .content-box {
  margin: 2rem 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
#about .content-box .img-box {
  padding: 2rem;
  width: 80%;
  max-width: 500px;
}
#about .content-box .img-box img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#about .content-box .text-box {
  background-color: rgba(213, 213, 213, 0.2);
  border-radius: 10px;
  width: 90%;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#about .content-box .text-box h4 {
  text-align: center;
  margin-bottom: 1rem;
}
#about .content-box .text-box p {
  text-align: start;
  line-height: 2rem;
  color: #5c5c5c;
}
#about .content-box .text-box p b {
  font-weight: 900;
}
#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.reverse {
    flex-direction: row-reverse;
  }
  #about .content-box .img-box,
  #about .content-box .text-box {
    width: 40%;
  }
}

#menu .menu-collection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 600px;
}
#menu .menu-collection .menu-item {
  width: 100%;
  padding: 1rem;
}
#menu .menu-collection .menu-item img {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#service .icon-collection,
#service .icon-collection-2 {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 2rem;
}
@media (min-width: 768px) {
  #service .icon-collection,
  #service .icon-collection-2 {
    width: 80%;
  }
}
@media (min-width: 1024px) {
  #service .icon-collection,
  #service .icon-collection-2 {
    width: 60%;
  }
}
#service .icon-collection .icon-item,
#service .icon-collection-2 .icon-item {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem;
  white-space: nowrap;
  text-align: center;
}
@media (min-width: 1024px) {
  #service .icon-collection .icon-item,
  #service .icon-collection-2 .icon-item {
    width: 25%;
    margin: 1.8rem;
  }
}
#service .icon-collection .icon-item h4,
#service .icon-collection-2 .icon-item h4 {
  margin: 0.5rem 0;
  color: #5c5c5c;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  #service .icon-collection .icon-item h4,
  #service .icon-collection-2 .icon-item h4 {
    font-size: 1.2rem;
  }
}
#service .icon-collection .icon-item p,
#service .icon-collection-2 .icon-item p {
  color: #FFB433;
}
#service .icon-collection .icon-item .img-box,
#service .icon-collection-2 .icon-item .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-top: 1rem;
  transition: 0.5s;
  position: relative;
}
#service .icon-collection .icon-item .img-box .iconImg,
#service .icon-collection-2 .icon-item .img-box .iconImg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
#service .icon-collection .icon-item .img-box img,
#service .icon-collection-2 .icon-item .img-box img {
  width: 100%;
  height: 100%;
  padding: 1rem;
  background-color: rgba(180, 235, 230, 0.4);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  transition: 0.3s;
}
#service .icon-collection .icon-item .img-box img:hover,
#service .icon-collection-2 .icon-item .img-box img:hover {
  transform: scale(1.2);
  transition: 0.3s;
}
#service .icon-collection .icon-item .img-box i,
#service .icon-collection-2 .icon-item .img-box i {
  font-size: 2rem;
  color: #B4EBE6;
  transform: rotate(-30deg);
  position: absolute;
  top: -18px;
  left: 0px;
}
#service .course-collection {
  width: 90%;
  margin: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#service .course-collection .course-item {
  margin: 2rem 0;
  width: 90%;
  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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}
#service .course-collection .course-item .text h4 {
  text-align: center;
  color: #80CBC4;
}
#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 {
  text-align: center;
  margin-top: 1rem;
  color: #FFB433;
}
#service .course-collection .course-item .text button {
  margin-top: 1.5rem;
}
@media (min-width: 425px) {
  #service .course-collection .course-item {
    flex-direction: row;
    height: 300px;
    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%;
  }
}
#service .recommendCard {
  height: 160px;
  background: linear-gradient(-45deg, #ffb433, #f4dfba);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
#service .recommendCard h4 {
  color: #5c5c5c;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
#service .recommendCard h4::before, #service .recommendCard h4::after {
  content: " ♕ ";
}
#service .recommendCard p {
  text-align: center;
}
#service .serviceDetail {
  max-width: 800px;
}
#service .serviceDetail .serviceDetailItem {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
#service .serviceDetail .serviceDetailItem .serviceDetailCard {
  max-width: 350px;
  height: 100%;
  border: 1px solid #DABEA7;
  border-radius: 8px;
  padding: 20px;
}
#service .serviceDetail .serviceDetailItem .serviceDetailCard img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  padding: 12px;
}
#service .serviceDetail .serviceDetailItem .serviceDetailCard .serviceDetailCardContext .serviceDetailCardTitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}
#service .serviceDetail .serviceDetailItem .serviceDetailCard .serviceDetailCardContext .serviceDetailCardTitle span {
  font-size: calc(0.8rem + 0.2vw);
  padding: 4px 8px;
}
#service .serviceDetail .serviceDetailItem .serviceDetailCard .serviceDetailCardContext h4 {
  font-size: calc(1.2rem + 0.2vw);
  margin: 0;
  padding-right: 4px;
}
#service .serviceDetail .serviceDetailItem .serviceDetailCard .serviceDetailCardContext span {
  font-size: calc(0.9rem + 0.2vw);
  color: white;
  background: #80CBC4;
  padding: 4px 10px;
  border-radius: 50px;
}
#service .serviceDetail .serviceDetailItem .serviceDetailCard .serviceDetailCardContext p {
  font-size: calc(0.9rem + 0.2vw);
  text-align: justify;
}
#service .serviceDetail .serviceDetailItem .serviceDetailCard .serviceDetailCardContext ul {
  line-height: 2.3;
  margin-top: 12px;
}

#process .processBtn {
  font-weight: 400;
  margin-bottom: 20px;
}
#process .process-collection {
  width: 90%;
  max-width: 1024px;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
}
#process .process-collection .process-item {
  width: 100%;
  height: 100%;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  #process .process-collection .process-item {
    width: 40%;
  }
}
#process .process-collection .process-item h4 {
  margin: 2rem 0;
  padding: 1rem;
  text-align: center;
  font-size: 1.3rem;
  background-color: #FFB433;
  color: #F4DFBA;
  border-radius: 5px;
}
#process .process-collection .process-item .steps {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#process .process-collection .process-item .steps img {
  width: 35px;
  object-fit: cover;
}
#process .process-collection .process-item .steps .step {
  width: 100%;
  height: 100%;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
}
#process .process-collection .process-item .steps .step::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/decorate/other/dots.png) no-repeat center/contain;
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translate(-50%, -50%);
}
#process .process-collection .process-item .steps .step h5 {
  margin: 0;
  font-size: 1.2rem;
  color: #B4EBE6;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #process .process-collection .process-item .steps .step h5 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
#process .process-collection .process-item .steps .step p {
  color: #80CBC4;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #process .process-collection .process-item .steps .step p {
    font-size: 1.2rem;
  }
}
#process .process-collection .process-item .steps .step li {
  color: #8e8e8e;
  line-height: 1.7;
}
#process .process-collection .process-item .steps .step:nth-last-child(1)::before {
  display: none;
}

#team .member-collection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
}
@media (min-width: 768px) {
  #team .member-collection {
    width: 70%;
  }
}
#team .member-collection .member-item {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  width: 90%;
  max-width: 1024px;
}
#team .member-collection .member-item .img-box {
  width: 100%;
  margin: 0.5rem;
  padding: 1.2rem;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#team .member-collection .member-item .img-box img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}
#team .member-collection .member-item .text-box {
  margin: 0.5rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  line-height: 2rem;
}
#team .member-collection .member-item .text-box h3 {
  text-align: center;
  margin: 1rem 0;
  color: #2b2b2b;
}
#team .member-collection .member-item .text-box h5 {
  text-align: center;
  margin-top: 1rem;
  color: #FFB433;
}
#team .member-collection .member-item .text-box p {
  margin: 1rem 0;
  color: #5c5c5c;
}

#news .news-collection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
}
@media (min-width: 768px) {
  #news .news-collection {
    width: 50%;
  }
}
#news .news-collection .news-item {
  margin-top: 3rem;
  width: 90%;
  max-width: 425px;
}
#news .news-collection .news-item h4 {
  position: relative;
  text-align: center;
  margin: 1rem 0;
  color: #DC2543;
}
#news .news-collection .news-item h4::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.5rem;
  display: flex;
  justify-content: center;
  background-color: #5c5c5c;
  transform: translateY(-50%);
  z-index: -1;
}
#news .news-collection .news-item p {
  background-color: rgba(255, 255, 255, 0.5);
  line-height: 2rem;
  padding: 1rem;
  color: #FFB433;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#news .news-collection .news-item img {
  width: 100%;
}

#faq h3 {
  margin: 1.5rem 0;
  font-size: 1.5rem;
  color: #FFB433;
}
#faq .question-collection-1 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
}
#faq .question-collection-1 .accordion-item {
  background: linear-gradient(-45deg, #80cbc4, #f4dfba);
  padding: 20px 0;
  box-shadow: 1px 1px 3px rgba(244, 223, 186, 0.5);
  border-radius: 10px;
}
#faq .question-collection-1 .accordion-button {
  display: block;
  text-align: center;
}
#faq .question-collection-1 .accordion-button p {
  font-size: 1.1rem;
  color: white;
}
#faq .question-collection-1 .accordion-button h1 {
  font-size: 1.5rem;
  color: white;
  opacity: 0.3;
}
#faq .question-collection-1 .accordion-button span {
  font-size: 2rem;
}
#faq .question-collection-1 .accordion-body {
  text-align: justify;
  line-height: 2;
  padding: 20px 30px;
  background: white;
}

#appointment .info-collection {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}
#appointment .info-collection .info-item {
  margin: 2rem 0;
  width: 100%;
}
#appointment .info-collection .info-item h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFB433;
  color: #f1f1f1;
  width: 250px;
  padding: 0.5rem;
  border-radius: 20px;
  white-space: nowrap;
}
#appointment .info-collection .info-item p {
  width: 100%;
  max-width: 600px;
  margin-top: 1rem;
  border: 2px solid #FFB433;
  border-radius: 20px;
  padding: 0.8rem;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  #appointment .info-collection .info-item p {
    padding: 1.2rem;
  }
}

#gallery .basic-container {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#gallery .basic-container .photo-box {
  margin: 0.5rem 0;
  width: 90%;
  border: 10px solid white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#gallery .basic-container .photo-box:hover {
  transform: scale(1.05);
  transition: 0.3s;
}
@media (min-width: 425px) {
  #gallery .basic-container .photo-box {
    margin: 0.5rem;
    width: 40%;
  }
}
@media (min-width: 768px) {
  #gallery .basic-container .photo-box {
    margin: 1rem;
    width: 25%;
  }
}
#gallery .basic-container .photo-box img,
#gallery .basic-container .photo-box video {
  width: 100%;
}
#gallery .tab-container {
  margin-top: 2rem;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#gallery .tab-container .tabs {
  width: 100%;
  max-width: 1024px;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  background-color: #F4DFBA;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 425px) {
  #gallery .tab-container .tabs {
    flex-direction: row;
  }
}
#gallery .tab-container .tabs .tab {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  width: 100%;
  color: #80CBC4;
  transition: 0.3s;
}
#gallery .tab-container .tabs .tab.active {
  background-color: #80CBC4;
  color: #F4DFBA;
  transform: 0.3s;
}
#gallery .tab-container .tab-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#gallery .tab-container .tab-contents .tab-content {
  display: none;
}
#gallery .tab-container .tab-contents .tab-content.active {
  width: 100%;
  max-width: 1024px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#gallery .tab-container .tab-contents .tab-content a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0.5rem;
  padding: 0.5rem;
  transition: 0.3s;
  text-decoration: none;
}
#gallery .tab-container .tab-contents .tab-content a:hover {
  transform: scale(1.1);
  transition: 0.3s;
}
@media (min-width: 425px) {
  #gallery .tab-container .tab-contents .tab-content a {
    width: 50%;
  }
}
@media (min-width: 768px) {
  #gallery .tab-container .tab-contents .tab-content a {
    width: 30%;
  }
}
#gallery .tab-container .tab-contents .tab-content a img {
  margin-top: 0.5rem;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#gallery .album-collection .album {
  width: 80vw;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
#gallery .album-collection .album h4 {
  width: fit-content;
  display: flex;
  align-self: center;
  margin: 1.5rem 0;
  position: relative;
}
#gallery .album-collection .album h4::before, #gallery .album-collection .album h4::after {
  content: "";
  width: 28px;
  height: 28px;
  background: url(../images/decorate/gallery_title.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
#gallery .album-collection .album h4::before {
  left: -45%;
}
#gallery .album-collection .album h4::after {
  right: -32%;
  transform: translate(50%, -50%) rotateY(180deg);
}
#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;
}
#gallery .album-collection .album .slider .slick-prev:before, #gallery .album-collection .album .slider .slick-next:before {
  color: #FFB433;
  font-size: 24px;
}

#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%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  #contact .contact-container .info-collection {
    width: 30%;
  }
}
#contact .contact-container .info-collection .info-item {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
#contact .contact-container .info-collection .info-item img {
  width: 25px;
  height: 25px;
  margin-right: 2rem;
}
#contact .contact-container .info-collection .info-item a {
  all: unset;
  cursor: pointer;
}
#contact .contact-container .info-collection .info-item a:hover {
  color: #5c5c5c;
}
#contact .contact-container .map-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 450px;
  overflow: hidden;
  margin: 1rem 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
@media (min-width: 768px) {
  #contact .contact-container .map-box {
    width: 50%;
  }
}

.slideBar {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 99;
}
.slideBar .slideBarBtn {
  width: 50px;
  height: 50px;
  padding: 0px;
  margin: 20px 0;
  background: #80CBC4;
  border-radius: 50%;
  outline: 5px solid rgba(180, 235, 230, 0.4);
}
.slideBar .slideBarBtn:hover {
  color: #347e77;
  background: white;
  border: 1px solid #347e77;
}

.feedback #feedback-list {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.feedback #feedback-list div:nth-child(even) .feedbackCard {
  flex-direction: row-reverse;
  justify-content: end;
}
.feedback #feedback-list div:nth-child(even) .feedbackCard .feedbackCardTxt::before {
  left: 57%;
}
.feedback .feedbackCard {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
.feedback .feedbackCard .feedbackCardImg {
  display: flex;
  justify-content: center;
  align-items: center;
}
.feedback .feedbackCard .feedbackCardImg img {
  width: 100px;
  height: 120px;
  object-fit: contain;
  object-position: center;
}
.feedback .feedbackCard .feedbackCardTxt {
  width: auto;
  padding: 0;
  position: relative;
}
.feedback .feedbackCard .feedbackCardTxt::before {
  content: "";
  width: 120%;
  height: 4px;
  background: #80CBC4;
  position: absolute;
  top: 140%;
  left: 40%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.feedback .feedbackCard .feedbackCardTxt p {
  font-size: calc(1rem + 0.2vw);
}
.feedback #testimony-list .testimonyCard {
  width: 250px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  padding: 20px;
}
.feedback #testimony-list .testimonyCard h4 {
  text-align: center;
}
.feedback #testimony-list .testimonyCard img {
  width: 100px;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

footer {
  background: #FFB433;
}
footer p {
  padding: 0.5rem 0;
  color: #f1f1f1;
}
footer a {
  all: unset;
}

.counter {
  position: relative;
}
.counter::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}
.counter .counterCard {
  text-align: center;
  box-shadow: 1px 1px 3px rgba(213, 213, 213, 0.7);
  position: relative;
}
.counter .counterCard .counterCardImg {
  height: 230px;
}
.counter .counterCard .counterCardImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.counter .counterCard .counterCardText {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.counter .counterCard .counterCardText h2 {
  font-size: 1.5rem;
}
.counter .counterCard .counterCardText p {
  font-size: 1rem;
  line-height: 2;
}
.counter .counterCard:nth-child(2n) {
  flex-direction: row-reverse !important;
}
.counter .img-bg {
  width: 100%;
  height: 200px;
  display: grid;
  place-content: center;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .counter .img-bg {
    height: 50vh;
    background-attachment: fixed;
  }
}
.counter .img-bg h1 {
  color: #5c5c5c;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.7;
  z-index: 10;
}
@media (min-width: 768px) {
  .counter .img-bg h1 {
    font-size: 2rem;
    color: white;
    mix-blend-mode: difference;
  }
}
.counter .img-bg p {
  font-size: 1.2rem;
  color: white;
  text-align: center;
  line-height: 2;
  mix-blend-mode: difference;
}
.counter .img-bg ul {
  list-style: inside;
}
.counter .bg1 {
  background-image: url(../images/about/img-5.jpg);
}
.counter .bg2 {
  background-image: url(../images/about/img-12.jpg);
}

@keyframes slideLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideRight {
  from {
    transform: translateX(0);
    display: flex;
  }
  to {
    transform: translateX(100%);
    display: none;
  }
}
@keyframes scrollDown1 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrollDown2 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrollDown3 {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrollDown4 {
  0% {
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */