.img_box{
  background-color: rgba(0,0,0,.9);
  height: 100svb;
  overflow: hidden;
  &::after{
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(19,136,221,1) 15%, rgba(0,0,0,1) 87%);
    inset: 0;
    z-index: 1;
    opacity: .4;
  }
  & .img_bg{
    object-fit: cover;
    width: 100%;
    filter: blur(6px);
    z-index: -1;
  }
  .text--info{
    color: #fff;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    text-align: center;
    & .logo{
      margin-bottom: clamp(2.5rem, 12vw , 4rem);
      & img{
        width: clamp(10rem, 12vw ,14.25rem);
      }
    }
    & p{
      display: flex;
      flex-direction: column;
      padding: 0 24px;
      gap: 1.5rem;
      line-height: 1.4;
      word-break: keep-all;
      & strong{
        font-size: clamp(2rem, 2.5vw ,3rem);
      }
      & span{
        font-size: clamp(1.125rem, 2.5vw ,1.375rem);
      }
    }
    .btn_box{
      margin-top: clamp(3rem, 2.5vw, 4rem);
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      margin-bottom: clamp(2rem, 2.5vw, 9rem);
      & a{
        text-decoration: none;
        padding: 16px;
        background-color: rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 4px;
        color: #fff;
        border-radius: 10px;
        min-width: 100px;
        transition: .4s ease-in-out background-color, .4s ease-in-out box-shadow;
        &:hover{
          background-color: rgba(0, 0, 0, 0.8);
          box-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
        }
      }
    }
  }
}