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

body {
  background-color: #d5d5d5;
  background-image: url(../public/bg/bg_s.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: #2b2b2b;
}
@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(213, 213, 213, 0.5);
  z-index: -1;
}
.section h5 {
  margin-top: 1rem;
  color: #DC2543;
  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: #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: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-inline: 20px;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  header {
    height: 100vh;
  }
}
header #hero-collection-l, header #hero-collection-s {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
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: 100%;
  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 {
  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%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow: hidden;
  z-index: 12;
}
@media (min-width: 768px) {
  header #title {
    width: 15rem;
    height: 15rem;
  }
}
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;
}
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%;
  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: #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.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: #2b2b2b;
    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: 768px) {
  header nav .hamburger {
    display: none;
  }
}
header .sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #d5d5d5;
  box-shadow: 0 0 20px rgba(255, 210, 210, 0.2);
  transition: 0.5s;
}
header .sticky .title {
  color: #5c5c5c;
  visibility: visible;
}
header .sticky .links {
  top: 0;
  background-color: #d5d5d5;
}
header .sticky .links a {
  color: #5c5c5c;
}
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: 5px;
  width: 90%;
  padding: 1rem;
}
#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: #FE7773;
  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: #FE7773;
  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 .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: #5c5c5c;
  color: #d5d5d5;
  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;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (min-width: 768px) {
  #process .process-collection .process-item .steps .step {
    flex-direction: column;
  }
}
#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-bottom: 1rem;
  }
}
#process .process-collection .process-item .steps .step p {
  margin-left: 1rem;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #process .process-collection .process-item .steps .step p {
    font-size: 1.2rem;
  }
}

#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: #DC2543;
}
#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: #FE7773;
  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;
}

#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: #5c5c5c;
  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 #5c5c5c;
  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: #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: start;
  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;
}
#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 .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: 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;
}
#contact .contact-container .info-collection .info-item a:hover {
  color: #FE7773;
}
#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: #2b2b2b;
}
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: #FE7773;
  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 */