@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

body {
  background-color: #d5d5d5;
  background-image: url(../img/bg/bg_s.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: #2b2b2b;
}
@media (min-width: 768px) {
  body {
    background-image: url(../img/bg/bg_l.jpg);
  }
}

.section {
  padding: 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(213, 213, 213, 0.5);
  z-index: -1;
}
.section h5 {
  margin-top: 1rem;
  color: #2b2b2b;
  z-index: 5;
}
.section .title {
  text-align: center;
  z-index: 3;
}
.section .decoration-title {
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(90deg) translate(50%, -200%);
  font-size: 5rem;
  font-family: "Times New Roman", Times, serif;
  z-index: 2;
  color: #8e8e8e;
  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: #5c5c5c;
  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: 50vh;
  display: flex;
  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: 60vh;
}
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%;
}
header #hero-collection-l .hero-l,
header #hero-collection-s .hero-l {
  object-fit: cover;
}
header #hero-collection-l .hero-s,
header #hero-collection-s .hero-s {
  object-fit: contain;
}
header #hero-collection-s {
  margin-top: 40px;
  height: 40vh;
}
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 #logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  z-index: 12;
}
@media (min-width: 768px) {
  header #logo {
    width: 8rem;
    height: 8rem;
  }
}
header #logo p {
  padding-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5c5c5c;
}
header #logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header #title {
  position: absolute;
  top: 200px;
  display: flex;
  align-items: center;
  margin-left: 1rem;
  z-index: 10;
  white-space: nowrap;
}
@media (min-width: 768px) {
  header #title {
    margin-left: 3rem;
  }
}
header #title img {
  width: 60px;
  height: 60px;
}
header #title h1 {
  font-size: 1rem;
  letter-spacing: 5px;
  color: #d5d5d5;
  margin-left: 10px;
}
@media (min-width: 768px) {
  header #title h1 {
    font-size: 2rem;
    letter-spacing: 6px;
    margin-left: 20px;
  }
}
header #title h5 {
  font-size: 0.8rem;
  color: #d5d5d5;
}
@media (min-width: 768px) {
  header #title h5 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 3px;
  }
}
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;
}
header nav .title img {
  height: 100%;
  padding: 10px;
  max-width: 160px;
  object-fit: contain;
}
@media (min-width: 768px) {
  header nav .title {
    visibility: visible;
  }
}
header nav .title:hover {
  background-color: #d5d5d5;
  color: #090a0d;
}
header nav .title span {
  font-size: 1.2rem;
  margin-left: 10px;
}
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;
    right: 60%;
    width: 60%;
    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;
    color: #2b2b2b;
    font-size: 0.6rem;
  }
}
@media (min-width: 768px) and (min-width: 425px) {
  header nav .links :first-child,
  header nav .links a {
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  header nav .links :first-child,
  header nav .links a {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  header nav .links :first-child:hover,
  header nav .links a:hover {
    border-bottom: 2px solid white;
  }
}
header nav .hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 1rem;
  z-index: 20;
}
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: black;
  box-shadow: 0 0 20px rgba(255, 210, 210, 0.2);
  transition: 0.5s;
}
header .sticky .title {
  color: #f1f1f1;
  visibility: visible;
}
header .sticky .links {
  top: 0;
  background-color: black;
}
header .sticky .links a {
  color: #f1f1f1;
}
header .sticky .hamburger img {
  filter: invert(100%);
}

#about {
  padding-top: 0;
}
@media (min-width: 768px) {
  #about {
    padding-top: 30vh;
  }
}
#about .content-box {
  width: 100%;
  margin: 2rem 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
#about .content-box .text-box {
  width: 80%;
  max-width: 768px;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  #about .content-box .text-box {
    padding: 2rem;
  }
}
#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: #2b2b2b;
}
#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;
}
#about .content-box .car-img-box {
  margin: 3rem 0;
  width: 100%;
  max-width: 768px;
}
#about .content-box .car-img-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (min-width: 768px) {
  #about .content-box.reverse {
    flex-direction: row-reverse;
  }
  #about .content-box .car-img-box,
  #about .content-box .text-box {
    width: 50%;
  }
  #about .content-box .car-img-box {
    height: 100%;
  }
  #about .content-box .car-img-box img {
    height: 100%;
  }
}

#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 .title {
  padding-top: 5rem;
  color: #5c5c5c;
}
#service .subtitle {
  margin: 1rem 0;
  color: #8e8e8e;
  font-size: 1rem;
}
#service .decoration-title {
  color: rgb(0, 0, 0);
  z-index: 10;
}
#service .service-collection {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2;
}
#service .service-collection .service-item {
  position: relative;
  width: 100%;
  margin: 1rem 0;
  overflow: hidden;
  z-index: 3;
}
#service .service-collection .service-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 4;
}
#service .service-collection .service-item:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}
@media (min-width: 768px) {
  #service .service-collection .service-item {
    width: 30%;
    max-width: 300px;
    margin: 2rem;
  }
}
#service .service-collection .service-item h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  font-size: 1.3rem;
  letter-spacing: 5px;
  white-space: nowrap;
  color: #d5d5d5;
}
#service .service-collection .service-item img {
  width: 100%;
  transition: 0.5s;
}
#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: #5c5c5c;
}
#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(142, 142, 142, 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;
  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: #2b2b2b;
}
#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: #5c5c5c;
}
#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 .timeline-box {
  position: relative;
  width: 90%;
  margin-top: 5rem;
}
#process .timeline-box .timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #2b2b2b;
  width: 1px;
  height: 100%;
}
#process .timeline-box .timeline-item {
  position: relative;
  margin: 7rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  #process .timeline-box .timeline-item {
    flex-direction: row;
  }
}
#process .timeline-box .timeline-item::before {
  content: "．";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
}
@media (min-width: 768px) {
  #process .timeline-box .timeline-item::before {
    top: 50%;
  }
}
#process .timeline-box .timeline-item .time {
  margin: auto 0;
  width: 100%;
  color: white;
  text-align: center;
}
@media (min-width: 768px) {
  #process .timeline-box .timeline-item .time {
    width: 50%;
    padding-right: 5rem;
    text-align: end;
    font-size: 1.5rem;
  }
}
#process .timeline-box .timeline-item .event {
  width: 80%;
  max-width: 350px;
  margin-top: 2rem;
  padding: 0.3rem;
}
@media (min-width: 768px) {
  #process .timeline-box .timeline-item .event {
    width: 50%;
    max-width: 600px;
    margin: 0;
    padding-left: 5rem;
    font-size: 1.1rem;
    line-height: 2rem;
  }
}
#process .info-box {
  width: 100%;
  max-width: 768px;
}
#process .info-box p {
  font-size: 1.1rem;
}
#process .info-box .top {
  margin: 3rem 1rem 0 1rem;
  text-align: center;
  line-height: 2.5rem;
}
#process .info-box .bottom {
  margin: 3rem 1rem 0 1rem;
  padding: 1rem;
  border: 1px solid white;
  background-color: rgba(142, 142, 142, 0.3);
  border-radius: 10px;
}

#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: #5c5c5c;
}
#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: #5c5c5c;
  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: #5c5c5c;
}
#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: #2b2b2b;
  color: #f1f1f1;
}
#faq .question-collection details div {
  padding: 1rem;
  background-color: #d5d5d5;
  color: #5c5c5c;
  line-height: 1.5rem;
}
#faq .question-collection details .hidden {
  display: none;
}

#gallery h5 {
  margin-bottom: 5rem;
  color: #8e8e8e;
}
#gallery .basic-container {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 10;
}
#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: #d5d5d5;
  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: #2b2b2b;
  transition: 0.3s;
}
#gallery .tab-container .tabs .tab.active {
  background-color: #2b2b2b;
  color: #d5d5d5;
  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 {
  margin: 80px 0;
  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 {
  margin: 0;
  background-color: rgba(9, 10, 13, 0.8);
}
#contact .title {
  margin-top: 2rem;
  color: white;
}
#contact h5 {
  color: #d5d5d5;
}
#contact .contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  width: 100vw;
}
#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;
}
#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;
  color: #d5d5d5;
}
#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: 400px;
  margin: 1rem 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 10;
}
@media (min-width: 768px) {
  #contact .contact-container .map-box {
    width: 50%;
  }
}

#change .title,
#movie .title {
  line-height: 2.2rem;
  margin-bottom: 3rem;
  padding: 0 0.8rem;
  font-size: 1.4rem;
}
#change .content-box,
#movie .content-box {
  max-width: 768px;
  background-color: rgba(220, 37, 67, 0.7);
}
#change .content-box h5,
#movie .content-box h5 {
  margin: 2.2rem 0;
  text-align: center;
  font-size: 1.4rem;
  color: #f1f1f1;
}
#change .content-box .img-box,
#movie .content-box .img-box {
  width: 100%;
}
#change .content-box .img-box img,
#movie .content-box .img-box img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}
#change .content-box p,
#movie .content-box p {
  padding: 1rem;
}

footer {
  background-color: #f1f1f1;
}
footer p {
  padding: 0.5rem 0;
  color: #090a0d;
}
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: #5c5c5c;
  font-size: 1.5rem;
  z-index: 10;
}
@media (min-width: 768px) {
  .counter .img-bg h1 {
    font-size: 4rem;
    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);
}
.counter .bg3 {
  background-image: url(../public/counter/img-3.jpg);
}
.counter .bg4 {
  background-image: url(../public/counter/img-4.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 */