﻿.info-slide {
  background-image: url(../images/bg_info.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  padding: 100px 0;
  position: relative;
  background-color: rgba(0, 0, 0, 0.4); /* Màu đen với độ trong suốt */
  background-blend-mode: multiply; /* Kết hợp màu đen với background image */
}
.info-slide:after {
  content: "";
  display: block;
  height: 45px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../images/bg_bottom.webp);
  background-position: bottom center;
  background-repeat: repeat-x;
  background-size: 100% auto;
}
.show-slide_title {
  font-family: graviolasoft;
  font-size: 60px;
  color: var(--text-white-color);
  margin-bottom: 45px;
  line-height: 1.5;
}

.show-slide_desc {
  color: var(--text-yellow-color);
  font-size: 40px;
  line-height: 1.5;
  font-family: journal;
  font-weight: 500;
  margin-bottom: 40px;
  margin-top: 120px;
  display: inline-block;
  /*background: #fff;*/
  padding: 0 10px;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .show-slide_desc {
    margin-top: 200px !important;
  }
}
.info-story {
  color: var(--text-white-color);
  font-weight: 300;
  /*font-size:14px;*/
  max-width: 600px;
}

/*div scrolll*/
.scr-wrap {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.div-scroll {
  left: 50%;
  transform: translateY(0%) rotate(45deg);
  opacity: 0;
}

@keyframes scrolldown {
  0% {
    transform: translateY(20%) rotate(45deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(0%) rotate(45deg);
    opacity: 0.2;
  }

  100% {
    transform: translateY(20%) rotate(45deg);
    opacity: 0.7;
  }
}
/*div scrolll*/
.info-story-wrap {
  margin-top: 90px;
}
.info-story-wrap img {
  max-width: 100%;
}
/*welcome*/
.welcome {
  text-align: center;
  margin-top: 90px;
  /*background-image: url("../images/bg_info2.png");*/
}

.welcome-title {
  color: var(--text-black-color);
  font-size: 45px;
  margin: 20px 0 35px 0;
  line-height: 1.15;
  font-family: graviolasoft;
}

.welcome-desc {
  color: #fbcd4e;
  font-weight: 300;
  max-width: 70%;
  margin: 0 auto 35px auto;
  font-style: italic;
}

.welcome-desc-sub {
  color: var(--text-gray-color);
  font-weight: 300;
  font-size: 16px;
  /* max-width: 80%; */
  margin: 0 auto 35px auto;
}

.welcome-desc-sub span {
  display: block;
  margin-bottom: 10px;
}

.welcome-img-link {
  display: block;
  padding: 5px;
}

.welcome-img {
  width: 300px;
  max-width: 100%;
  display: block;
  /*height:292px;
    object-fit:cover;*/
  margin: auto;
}

.welcome-img:hover {
  animation-duration: 0.35s;
  animation-iteration-count: 1;
  animation-name: push;
  animation-timing-function: linear;
}
/*welcome*/
