#why-section {
  background: #F8F9FA;
}
#why-section .text-container{
  padding: 36px 54px;
  background: var(--HitBox, rgba(255, 255, 255, 0.00));
  backdrop-filter: blur(22.5px); 
}
#why-section .button-menu {
  position: relative;
  padding: 24px 64px;
  background-color: transparent;
  font-family: 'Inter';
  color: #000;
  border: solid 1px #000;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  /* -webkit-mask-image: -webkit-radial-gradient(white, black); */
}

#why-section .button-menu .button-text {
  position: relative;
  z-index: 2;
}

#why-section .button-menu .fill-container {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  padding-bottom: 100%;
  transform: translateY(-50%) rotate(180deg);
}

#why-section .button-menu .fill-container::after {
  content: '';
  position: absolute;
  left: -10%;
  top: -10%;
  width: 120%;
  height: 120%;
  background-color: #222;
  border-radius: 50%;
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(-100%);
}

#why-section .button-menu:hover {
  transform: translateY(-4px);
  color: #FFF;
  border: 1px solid #222;
}

#why-section .button-menu:hover .fill-container {
  transform: translateY(-50%) rotate(0);
}

#why-section .button-menu:hover .fill-container::after {
  transform: translateY(0);
}

  #why-section img{
    min-height: 600px;
}
#why-section .text-container{
    bottom: 18%;
    left: 0%;
}
#why-section .text-container h4{
    font-family: 'Syne';
    font-size: 4.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 86.4px */
    text-transform: uppercase;
}
#why-section .text-container .info{
    font-family: 'Inter';
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; /* 43.2px */
    letter-spacing: 0px;
}

@media screen and (max-width:991px){
    #why-section .text-container h4{
        font-size: 2.5rem;
    }
    #why-section .text-container .info{
        font-size: 1rem;
        letter-spacing: 0px;
    }
    #why-section .text-container{
      padding: 16px 16px; 
    }
    #why-section .text-container{
      bottom:35%
    }  
}
@media screen and (max-width: 767px){
  #why-section .display-3{
    font-size: 1.5rem !important;
  }  
  #why-section h2{
    font-size: 2.5rem !important;
  }
}
@media screen and (max-width: 420px){
  #why-section .display-3{
    font-size: 1.3rem !important;
  }  
  #why-section h2{
    font-size: 2.3rem !important;
  }
}