.intro-section {
    height: 100dvh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.intro-section .content-wrap {
    padding-bottom: 20rem;
    position: relative;
}

.logo_box {
    display: flex;
    justify-content: space-evenly;
    position: relative;
}
.logo_box::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30%;
    background-color: rgba(255, 255, 255, 0.1);
}

.intro-section .content-wrap.active .bg{
    opacity: 0;
}
.intro-section .content-wrap.active .link-go {
    background-color: #654c26;

}
.intro-section .content-wrap.active .link-go span,
.intro-section .content-wrap.active .link-go i {
    color:#fff;

}

.intro-section .content-wrap .logo {
    height:80rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-section .content-wrap .logo img {
    max-width: 140rem;
    width: 100%;
    height: auto;
}
.intro-section .content-wrap h2 {
    color:#fff;
    padding-bottom: 20rem;
    font-size: 20rem;
    display: flex;
    gap: 6rem;
}
.intro-section .content-wrap p {
    color:#e7e7e7;
    font-size: 14rem;
    line-height: 1.571;
}
.intro-section .content-wrap .info-wrap {
    display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        z-index: 2;
}

.intro-section .content-wrap .link-go {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 9rem 20rem;
    border-radius: 30rem;
    width:fit-content;
    margin-top:18rem;
    gap: 20rem;
    background-color: #fff;

        transition:all .3s ease-in-out;
}
.intro-section .content-wrap .link-go:hover {
    background-color: #000;
}
.intro-section .content-wrap .link-go:hover span,
.intro-section .content-wrap .link-go:hover i {
    color:#fff;
}
.intro-section .content-wrap .link-go span {
    font-size: 12px;
    font-weight: 600;
}
.intro-section .content-wrap .link-go span,
.intro-section .content-wrap .link-go i {
    font-size:10px;
    font-weight: 800;
    color:#796446;
    transition: transform .3s, opacity .3s ease-in-out;

}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
}
.intro-section .cirlce-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 213rem;
    height:213rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.intro-section .cirlce-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
}

  
.reveal_1,
.reveal_2,
.reveal_3 {
  opacity: 0;
  transform: translateY(10px);
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.intro-section.will-ready .reveal_1 { transition-delay: 0s; }
.intro-section.will-ready .reveal_2 { transition-delay: .3s; }
.intro-section.will-ready .reveal_3 { transition-delay: .6s; }

.intro-section.will-ready .reveal_1,
.intro-section.will-ready .reveal_2,
.intro-section.will-ready .reveal_3 {
  opacity: 1;
  transform: translateY(0);
}
.intro_txt {
    color:#fff;
    position: relative;
    display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        align-items: center;
        opacity: .5;
}
.intro_txt h3 {
    font-size: 13px;
    font-weight: 600;
}
.intro_txt p {
    font-size: 12px;
    word-break: keep-all;
    text-align: center;
}

.intro_info_box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding-bottom: 60rem;
}
