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

body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  background-color: #dbebf9;
  background-image: url(../public/bg/bg_s.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: #7a848d;
}
@media (min-width: 768px) {
  body {
    background-image: url(../public/bg/bg_l.jpg);
  }
}

.section {
  margin: 10rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.section.overlay-bg {
  position: relative;
}
.section.overlay-bg::after {
  position: absolute;
  content: "";
  top: -3rem;
  left: 0;
  width: 100%;
  height: calc(100% + 4rem);
  background-color: rgba(219, 235, 249, 0.5);
  z-index: -1;
}
.section h2 {
  margin-top: 50px;
  color: #a9b7aa;
}
.section h5 {
  margin-top: 1rem;
  color: #353a35;
  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: #d2e7d3;
  opacity: 0.3;
}
.section .decoration {
  margin: 1rem 0;
  width: 50px;
  height: 50px;
}

a {
  cursor: pointer;
}

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: #99a5af;
  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 {
  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-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: #5c5c5c;
  text-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 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 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 10rem;
  z-index: 12;
}
@media (min-width: 768px) {
  header #title {
    width: 12rem;
    height: 12rem;
  }
}
header #title .logo-bg {
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  z-index: -1;
  filter: brightness(1.3);
  opacity: 0.8;
}
header #title h3 {
  font-size: 1.1rem;
  color: #6f7770;
  text-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) {
  header #title h3 {
    font-size: 1.3rem;
  }
}
header #title p {
  font-size: 0.8rem;
  padding-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5c5c5c;
}
@media (min-width: 768px) {
  header #title p {
    font-size: 1rem;
  }
}
header #title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header nav {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 70px;
  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;
}
@media (min-width: 768px) {
  header nav .title {
    font-size: 1.1rem;
  }
}
header nav .title img {
  height: 100%;
  max-width: 100px;
  padding: 8px;
  border-radius: 50%;
  object-fit: contain;
}
@media (min-width: 768px) {
  header nav .title {
    visibility: visible;
  }
}
header nav .links {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  flex-direction: column;
  width: 70vw;
  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;
  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: 768px) {
  header nav .links {
    display: flex;
    transform: translateX(0);
    width: 80%;
    height: 70px;
    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: #7a848d;
    font-size: 0.6rem;
  }
}
@media (min-width: 768px) and (min-width: 425px) {
  header nav .links :first-child,
  header nav .links a {
    font-size: 0.8rem;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  header nav .links :first-child,
  header nav .links a {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  header nav .links :first-child:hover,
  header nav .links a:hover {
    background-color: #7a848d;
    color: whitesmoke !important;
  }
}
header nav .hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 1rem;
  z-index: 20;
  filter: brightness(0.5);
}
header nav .hamburger.hidden {
  visibility: hidden;
}
header nav .hamburger img {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  header nav .hamburger {
    display: none;
  }
}
header .sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #dbebf9;
  box-shadow: 0 0 20px rgba(255, 210, 210, 0.2);
  transition: 0.5s;
}
header .sticky .title {
  color: #7a848d;
  visibility: visible;
}
header .sticky .links {
  top: 0;
  background-color: #dbebf9;
}
header .sticky .links a {
  color: #7a848d;
}
header .sticky .hamburger img {
  filter: invert(100%);
}

#about {
  position: relative;
  overflow: hidden;
}
#about::after {
  content: "";
  position: absolute;
  max-width: 1600px;
  width: 50%;
  height: 100%;
  top: 20%;
  right: 0;
  z-index: -1;
  background: rgba(3, 51, 77, 0.46);
  backdrop-filter: blur(12.6px);
  -webkit-backdrop-filter: blur(12.6px);
}
@media (min-width: 768px) {
  #about::after {
    width: 50%;
    height: 30%;
    right: -20%;
    top: 60%;
  }
}
#about::before {
  content: "";
  position: absolute;
  bottom: 30%;
  left: -10%;
  width: 40%;
  height: 70%;
  background-color: #aab7c3;
  opacity: 0.8;
  z-index: -1;
  background: rgba(5, 56, 83, 0.86);
  backdrop-filter: blur(12.6px);
  -webkit-backdrop-filter: blur(12.6px);
}
#about .content-box {
  margin: 2rem 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}
#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;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
#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 h3 {
  margin: 3rem 0;
  color: #6f7770;
  font-size: 1.5rem;
}
#service h3::before, #service h3::after {
  content: " = ";
}
#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: #6f7770;
  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: #99a5af;
}
#service .icon-collection .icon-item .img-box,
#service .icon-collection-2 .icon-item .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-top: 1rem;
  border-radius: 50%;
  transition: 0.5s;
  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(170, 183, 195, 0.2);
  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 .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;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15.6px);
  -webkit-backdrop-filter: blur(15.6px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  position: relative;
  overflow: hidden;
}
#service .course-collection .course-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 150%;
  height: 100%;
  background: linear-gradient(135deg, transparent 49%, #aab7c3 49%, #aab7c3 51%, transparent 51%);
  opacity: 0.8;
  z-index: -1;
}
@media (min-width: 768px) {
  #service .course-collection .course-item::after {
    width: 100%;
    height: 100%;
  }
}
#service .course-collection .course-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 60%;
  width: 150%;
  height: 100%;
  background: linear-gradient(135deg, transparent 49%, #aab7c3 49%, #aab7c3 51%, transparent 51%);
  opacity: 0.8;
  z-index: -1;
}
@media (min-width: 768px) {
  #service .course-collection .course-item::before {
    width: 100%;
    height: 100%;
  }
}
#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%;
  max-height: 300px;
  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: #7a848d;
}
#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: #99a5af;
}
#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%;
  }
}

#process {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../public/process/bg.jpg);
  padding: 50px 0;
}
#process .process-collection {
  width: 90%;
  max-width: 1024px;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18.6px);
  -webkit-backdrop-filter: blur(18.6px);
}
#process .process-collection .process-item {
  width: 100%;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#process .process-collection .process-item h4 {
  margin: 2rem 0;
  padding: 1rem;
  text-align: center;
  font-size: 1.3rem;
  background-color: #99a5af;
  color: #dbebf9;
  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 {
  height: 150px;
  margin: 0.3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (min-width: 768px) {
  #process .process-collection .process-item .steps .step {
    width: 100%;
    flex-direction: row;
    justify-content: start;
    align-items: center;
  }
}
#process .process-collection .process-item .steps .step h5 {
  margin: 0;
  font-size: 1.2rem;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #process .process-collection .process-item .steps .step h5 {
    font-size: 1.5rem;
    margin-left: 1rem;
    margin-right: 2rem;
  }
}
#process .process-collection .process-item .steps .step p {
  margin-top: 1rem;
  padding: 0 1rem;
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  #process .process-collection .process-item .steps .step p {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    text-align: start;
  }
}
#process .notice {
  margin-top: 2rem;
  padding: 0.5rem 1.5rem 1rem 1.5rem;
  width: 80%;
  max-width: 768px;
  background-color: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#process .notice h5 {
  text-align: center;
  color: #99a5af;
}
#process .notice p {
  margin-top: 1rem;
  color: #5c5c5c;
}

#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: #353a35;
}
#team .member-collection .member-item .text-box h5 {
  text-align: center;
  margin-top: 1rem;
  color: #99a5af;
}
#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: #6f7770;
  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: #99a5af;
  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: #99a5af;
}
#faq .question-collection {
  width: 90%;
  max-width: 1024px;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: start;
}
#faq .question-collection details {
  width: 100%;
  margin: 1rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
@media (min-width: 768px) {
  #faq .question-collection details {
    width: 45%;
  }
}
#faq .question-collection details summary {
  list-style-type: none;
  padding: 1rem;
  background-color: #6f7770;
  color: #f1f1f1;
  text-align: center;
}
#faq .question-collection details div {
  padding: 1rem;
  background-color: #f1f1f1;
  color: #6f7770;
  line-height: 1.5rem;
}
#faq .question-collection details .hidden {
  display: none;
}

#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: #99a5af;
  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 #99a5af;
  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: start;
  flex-wrap: wrap;
}
#gallery .basic-container .photo-box {
  margin: 0.5rem 0;
  width: 90%;
}
#gallery .basic-container .photo-box h5 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #6f7770;
}
#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%;
  border: 10px solid white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#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: #dbebf9;
  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: #7a848d;
  transition: 0.3s;
}
#gallery .tab-container .tabs .tab.active {
  background-color: #7a848d;
  color: #dbebf9;
  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-box {
  position: relative;
}
#gallery .tab-container .tab-contents .tab-content a .img-box img {
  margin-top: 0.5rem;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#gallery .tab-container .tab-contents .tab-content a .img-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15px;
  left: 15px;
  border: 3px solid #283b42;
  filter: blur(1px);
  z-index: -1;
}
#gallery .album-collection .album {
  width: 80vw;
}
#gallery .album-collection .album h4 {
  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 {
  background-image: url(../public/bg/bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
}
#contact .info-box {
  width: 100vw;
  max-width: 1024px;
}
#contact .info-box img {
  width: 100%;
}
#contact .contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  width: 100vw;
  max-width: 1024px;
  margin-top: 3rem;
}
#contact .contact-container .info-collection {
  width: 80%;
  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 {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  color: whitesmoke;
}
#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: #6f7770;
}
#contact .contact-container .map-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 400px;
  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%;
  }
}

footer {
  background-color: #7a848d;
}
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.5);
}
.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: #6f7770;
  font-size: 1.5rem;
  z-index: 10;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .counter .img-bg h1 {
    font-size: 3.8rem;
    color: white;
    mix-blend-mode: difference;
  }
}
.counter .bg1 {
  background-image: url(../public/counter/img-1.jpg);
}
.counter .bg2 {
  background-image: url(../public/counter/img-2.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 */