
.contact_body{
    margin: 5rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact_body .contact_text{
width: 45%;

}

.contact_body .contact_img_container{
    flex: 1;
    height: 24rem;
}
.contact_body .contact_img{
width: 100%;
object-fit: contain;

clip-path: url(#myClip2);
}


.wave-group {
    position: relative;
    margin-top: 1rem;
  }
  
  .wave-group .input {
    font-size: 16px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 300px;
    border: none;
    border-bottom: 1px solid #515151;
    background: transparent;
  }
  
  .wave-group .input:focus {
    outline: none;
  }
  
  .wave-group .label {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    display: flex;
  }
  
  .wave-group .label-char {
    transition: 0.2s ease all;
    transition-delay: calc(var(--index) * .05s);
  }
  
  .wave-group .input:focus ~ label .label-char,
  .wave-group .input:valid ~ label .label-char {
    transform: translateY(-20px);
    font-size: 14px;
    color: var(--blue);
  }
  
  .wave-group .bar {
    position: relative;
    display: block;
    width: 315px;
  }
  
  .wave-group .bar:before,.wave-group .bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: var(--blue);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
  }
  
  .wave-group .bar:before {
    left: 50%;
  }
  
  .wave-group .bar:after {
    right: 50%;
  }
  
  .wave-group .input:focus ~ .bar:before,
  .wave-group .input:focus ~ .bar:after {
    width: 50%;
  }
  
  
  @media screen and (max-width: 768px){
  .contact_body{
      flex-direction: column;
      margin: 5rem 0 0;
  }
  
  .contact_body .contact_text{
      width: 100%;
  }
}