body {
  margin: 0;
 font-family: 'Montserrat', sans-serif;

}


.container {
  max-width: 500px;
  margin: 0 auto;
 
  box-sizing: border-box;
  line-height: 1.2;
    font-weight: 400;
}

.banner {
 
  aspect-ratio: 16/9;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 -15px;
    animation: animate_wb_banner .6s 0s backwards;
}

.banner img {
    /* width: 100%;
  height: auto;*/
    aspect-ratio: 16/9;
    display: block;
    object-fit: cover;
    width: 100%;
    border-top-left-radius: 0!important;
    border-top-right-radius: 0!important;
}

@keyframes animate_wb_banner {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }

    40% {
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateY(-20deg)
    }

    60% {
        opacity: 1;
        transform: perspective(400px) rotateY(10deg)
    }

    80% {
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}



.content {
  text-align: center;
 
}
.content h1 {
        font-size: 16px;
    font-weight: 600;
  margin: 25px  0 20px 0;
}
.description {
  text-align: left;
 animation: animate_wb_link .8s backwards;
 animation-delay: 1s;
}
@keyframes animate_wb_link {
    0% {
        top: 60px;
        transform: scale(0)
    }

    to {
        top: 0;
        transform: scale(1)
    }
}

.description p {margin: 0 0 0 0;}

.desc-sp {
    margin:20px 0 20px 0;
    font-weight: 700;
}
/*.button button {
  width: 100%;
  padding: 10px;
  background-color: #3498db;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}*/
.tg-b {
   /* width: 100%;*/
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 400;
    cursor: pointer;
    animation: animate_wb_link .8s backwards;
 animation-delay: 1s;
}
.tg-b button{
position: relative;
    width: 100%;
    min-height: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
font-size: 16px;
    font-weight: 500;
cursor: pointer;
    padding: 16px 50px;
    text-align: center;
    border: 1px solid transparent;

    box-shadow: none;
    color: rgb(255, 255, 255);
    background: rgb(56, 155, 229);
    border-radius: 5px;
    
    transform: translateY(0);
    transition: all .2s;
}

.tg-b button:hover {transform: scale(1.03);}
.public__link--icon {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 38px;
    height: 38px;
}
.tg-b button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tg-b .tg-t {
font-weight: 500;
}

@media screen and (max-width: 500px) {
    .banner {
        margin: 0 0;
    }
  .description {
    padding-left: 10px;
    padding-right: 10px;
  }
  .tg-b {
      padding-left: 10px;
    padding-right: 10px;
  }
}



