.company-img{
    width:250px !important; 
}

/* .project-section-body-left img{
    max-width: unset !important;
}

.project-section-body-right-item-img{
    width:unset !important
} */

/* .project-section-body-left{
    justify-content: unset !important;
}

.project-section-body-right-item{
    flex-direction: column !important;
} */

.project-section-body-right-item{
    justify-content: space-between;
}

.contact-button {
    position: relative;
    width: 250px;
    height: 75px;
    border: 0;
    outline: none;
    background: #00a5e3;
    color: #fff;
    font-size: 22px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    cursor: pointer;
    
  }
  
  .checked {
    width: 75px;
    height: 75px;
    border-radius: 40px;
    box-shadow: 0 0 12px -2px rgba(0, 0, 0, 0.2);
    position: absolute;
    top:0;
    right: -40px;
    opacity: 0;
    /* background: #006838; */
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);

  }
  .checked svg {
    width: 40px;
    margin: 20px;
  }
  .checked path {
    stroke-width: 3;
    stroke: #fff;
    stroke-dasharray: 34;
    stroke-dashoffset: 34;
    stroke-linecap: round;
  }
  .animation-active {
    /* background: #006838; */
    width: 57%;
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    transition:width 1s;
    
  }
  .animation-active p {
    -webkit-animation-duration: 2.5s;
    animation-name: fadeIn;
    animation-duration: 2.5s;
    margin-right: 100px;
    font-size:15px;
    padding:10px;
    
   
  }
  .animation-active .checked {
    opacity: 1;
    transition: 1s;
    right: 0;
    outline:none
  }
  .animation-active .checked path {
    transition: 1s;
    transition-delay: 1s;
    stroke-dashoffset: 0;
  }
  
  p{
    font-size:15px;
    margin-bottom:unset!important
  }

  .contact-button:focus{
    outline:none !important
  }

  .contact-form-textarea{
    padding:20px
  }

  @-webkit-keyframes fadeIn { 
    0% { opacity: 0; }
    20% { opacity: 0; }
    40% { opacity: 0.3; }
    60% { opacity: 0.5; }
    80% { opacity: 0.9; }
    100% { opacity: 1; }
  }
  
  @keyframes fadeIn {
    0% { opacity: 0; }
    20% { opacity: 0; }
    40% { opacity: 0.3; }
    60% { opacity: 0.5; }
    80% { opacity: 0.9; }
    100% { opacity: 1; }
  }

  .btn-view-project:focus{
    outline: none;
  }