* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
}

body {
  min-height: 100vh;
  background: url("../images/adk-bg.png") top/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.wrapper {
  width: 100%;
  max-width: 1420px;
  height: 700px;
  background: white;
  padding: 82px 30px 80px;
  text-align: center;
  animation: cardIn 2s ease forwards;
  position: relative;
  overflow: hidden;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: scale(.95) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.assembly_logo img {
    width: 205px;
    height: 26.6px;
}
@media(max-width:767px) {
    .assembly_logo img{
        width: 164px;
        height: 17.6px;
    }
}
h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  font-weight: bold;
  margin-bottom: 16px;
}

h2{
    font-size: clamp(20px, 4vw, 22px);
    font-weight: 400;
}
p {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
}
.line{
    width: 160px;
    height: 2px;
    background: rgba(0, 0, 0, 0.20);
    display: inline-block;
    margin: 32px 0;
}
.link{
    font-weight: 500;
    font-size: 16px;
    margin:0 0 20px 0;
}
.link a {    
  color: #000000;
}
.svg-sharp {
  width: 100%;
  max-width: 482px;
  height: 4px;  
}
svg{
    animation-iteration-count: infinite;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}
#maskLeft {
  animation: leftClose 2.5s ease-in-out forwards;
}

#maskRight {
  animation: rightClose 2.5s ease-in-out forwards;
}


@keyframes leftClose {
  0% { width: 241px; }
  50% { width: 0; }
  100% { width: 241px; }
}


@keyframes rightClose {
  0% {
    x: 241px;
    width: 241px;
  }
  50% {
    x: 241px;
    width: 0;
  }
  100% {
    x: 241px;
    width: 241px;
  }
}
.redirect-box p{
    margin-bottom: 15px;
}

#sec {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 32px;
  overflow: hidden;
  font-size: 20px;
  vertical-align: middle;
}

#sec span {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
}

#sec .previous {
  top: 0;
}

#sec .current {
  top: -100%;
  font-weight: normal;
    padding: 0;
    margin: 0;
}

#sec.animate .previous {
  animation: counting-out .6s ease forwards;
}

#sec.animate .current {
  animation: counting-in .6s ease forwards;
}

@keyframes counting-out {
  from { top: 0; }
  to { top: 100%; }
}

@keyframes counting-in {
  from { top: -100%; }
  to { top: 0; }
}

.blocks {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 245px;
  background: url("../images/tetris-bg.png") center/cover no-repeat;
  opacity: .6;
  transform: translateY(120px);
  opacity: 0;

  transition: transform 1s ease, opacity 1s ease;
}

.blocks.show {
  transform: translateY(0);
  opacity: .6;
}


@media(max-width:600px){
  .wrapper{
    padding:40px 20px 70px;
  }
}
