.contact_form_wrapper {
    margin-bottom: 64px;
    text-align: left;
}

.contact_form_wrapper p{
    text-align: left;
}

.contact_form_wrapper .form {
    margin-top: 42px;
    max-width: 640px;
    margin-bottom: 240px;
    background: #fff;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 26px 6px rgba(var(--light-green-rgb),0.26); 
    box-shadow: 0px 0px 26px 6px rgba(var(--light-green-rgb),0.26);
    padding: 20px 30px;
    box-sizing: border-box;
    position: relative;
    text-align: left;
  }

  .contact_form_wrapper .form h2 {
    margin: 10px 0;
    margin-bottom: 36px;
    padding-bottom: 10px;
    width: 180px;
    color: var(--dark-blue);
    border-bottom: 3px solid var(--dark-blue);
    text-align: left;
  }

  .contact_form_wrapper .form input {
    width: 100%;
    max-width: 360px;
    margin-bottom: 36px;
    padding: 10px;
    box-sizing: border-box;
    background: none;
    outline: none;
    resize: none;
    border: 0;
    transition: all 0.3s;
    border-bottom: 2px solid var(--light-gray);
    text-align: left;
  }

  .contact_form_wrapper .form textarea {
    width: 100%;
    height: 100px;
    margin-top: 20px;
    padding: 16px;
    box-sizing: border-box;
    background: none;
    outline: none;
    border: 0;
    transition: all 0.3s;
    border-bottom: 2px solid var(--light-gray);
    text-align: left;
  }

  .contact_form_wrapper .form input:focus {
    border-bottom: 2px solid var(--light-gray);
    text-align: left;
  }

  .contact_form_wrapper .form p:before {
    content: attr(type);
    display: block;
    margin: 28px 0 0;
    font-size: 18px;
    font-weight: 300;
    color: var(--dark-gray);
    text-align: left;
  }

 
  .contact_form_wrapper .contact-button.small {
    display: inline-block;
    min-width: 100px;
    margin: 15px auto;
    background: var(--light-gray);
    color: var(--dark-gray);
    font-size: 1.2em;
    padding: 1em;
    border-radius: 4px;
    text-align: center;
    position: relative;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    transition: border-radius linear 0.05s, width linear 0.05s;
  }
  
  .contact_form_wrapper .contact-button {
    display: inline-block;
    padding: 1.45rem 1.75rem;
    border-radius: 10rem;
    color: #fff;
    text-transform: uppercase;
    background-color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.15rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
  }
  
  .contact_form_wrapper .contact-button:focus {
    outline: 0;
  }
  
  .contact_form_wrapper .contact-button.disabled {
    background: var(--light-gray);
  }
  
  .contact_form_wrapper .contact-button.animate {
    width: 68.1818181818px;
    height: 68.1818181818px;
    min-width: 0;
    border-radius: 50%;
    color: transparent;
    text-align: left;
  }
  .contact_form_wrapper .contact-button.animate:after {
    position: absolute;
    content: '';
    width: 25px;
    height: 25px;
    border: 4px solid #fefefe;
    border-radius: 50%;
    border-left-color: transparent;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    animation: spin ease-in 2.5s forwards;
    animation-name: spin;
    -webkit-animation-name: spin;
    transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    animation-duration: 2.5s;
    -webkit-animation-duration: 2.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
  }
  .contact_form_wrapper .contact-button.animate.success:before {
    position: absolute;
    content: '';
    width: 25px;
    height: 12.5px;
    border: 4px solid #fff;
    border-right: 0;
    border-top: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(0);
    transform: translate(-50%, -50%) rotate(0deg) scale(0);
    -webkit-animation: success ease-in 0.15s forwards;
    animation: success ease-in 0.15s forwards;
    animation-delay: 2.5s;
    text-align: left;
  }
  .contact_form_wrapper .contact-button.animate.error {
    position: relative;
    -webkit-animation: vibrate ease-in 0.5s forwards;
    animation: vibrate ease-in 0.5s forwards;
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
  }
  .contact_form_wrapper .contact-button.animate.error:before {
    color: #fff;
    position: absolute;
    content: '!';
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -webkit-animation: error ease-in 0.5s forwards;
    animation: error ease-in 0.5s forwards;
    animation-delay: 2.5s;
    text-align: left;
  }
  
  @keyframes spin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    90% {
      transform: translate(-50%, -50%) rotate(1080deg) scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    98% {
      -webkit-transform: translate(-50%, -50%) rotate(1080deg) scale(1);
    }
    100% {
      -webkit-transform: translate(-50%, -50%) rotate(1080deg) scale(0);
    }
  }
  @keyframes success {
    from {
      transform: translate(-50%, -50%) rotate(0) scale(0);
    }
    to {
      transform: translate(-50%, -50%) rotate(-45deg) scale(1);
    }
  }
  @-webkit-keyframes success {
    from {
      -webkit-transform: translate(-50%, -50%) rotate(0) scale(0);
    }
    to {
      -webkit-transform: translate(-50%, -50%) rotate(-45deg) scale(1);
    }
  }
  @keyframes error {
    from {
      transform: translate(-50%, -50%) scale(0);
    }
    to {
      transform: translate(-50%, -50%) scale(1);
      background-color: var(--dark-blue);
    }
  }
  @-webkit-keyframes error {
    from {
      -webkit-transform: translate(-50%, -50%) scale(0);
    }
    to {
      -webkit-transform: translate(-50%, -50%) scale(1);
      background-color: var(--dark-blue);
    }
  }
  @keyframes vibrate {
    0%, 30%, 60%, 85%, 100% {
      left: 0;
      background-color: var(--dark-blue);
    }
    10%, 40%, 90%, 70% {
      left: -2px;
      background-color: var(--dark-blue);
    }
    20%, 50%, 80%, 95% {
      left: 2px;
      background-color: var(--dark-blue);
    }
  }
  

  .contact_form_wrapper .form .footer {
    position: absolute;
    bottom: -42px;
    left: -42px;
    background: linear-gradient(90deg, var(--light-green) 0%, var(--light-blue) 100%);
    color: #fff;
    width: 320px;
    padding: 26px 8px 26px 0;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    -webkit-box-shadow: 0px 0px 26px 6px rgba(var(--light-green-rgb),0.26); 
    box-shadow: 0px 0px 26px 6px rgba(var(--light-green-rgb),0.26);
    text-align: left;
  }

  .contact_form_wrapper .form span {
    color: var(--light-green);
    margin: 0 5px 0 15px;
    text-align: left;
  }
  


   .contact_form_wrapper .checkbox {
    --background: #fff;
    --border: var(--light-gray);
    --border-hover: var(--dark-gray);
    --border-active: var(--dark-blue);
    --tick: #fff;
    position: relative;
    text-align: left;
  }
   .contact_form_wrapper .checkbox input,
   .contact_form_wrapper .checkbox svg {
    width: 21px;
    height: 21px;
    display: block;
    text-align: left;
  }
   .contact_form_wrapper .checkbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    outline: none;
    background: var(--background);
    border: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border-radius: 4px;
    transition: box-shadow 0.3s;
    box-shadow: inset 0 0 0 var(--s, 1px) var(--b, var(--border));
    text-align: left;
  }
   .contact_form_wrapper .checkbox input:hover {
    --s: 2px;
    --b: var(--border-hover);
  }
   .contact_form_wrapper .checkbox input:checked {
    --b: var(--border-active);
  }
   .contact_form_wrapper .checkbox svg {
    pointer-events: none;
    fill: none;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--stroke, var(--border-active));
    position: absolute;
    top: 0;
    left: 0;
    width: 21px;
    height: 21px;
    transform: scale(var(--scale, 1)) translateZ(0);   
  }
   .contact_form_wrapper .checkbox.path input:checked {
    --s: 2px;
    transition-delay: 0.4s;
  }
   .contact_form_wrapper .checkbox.path input:checked + svg {
    --a: 16.1 86.12;
    --o: 102.22;
  }
   .contact_form_wrapper .checkbox.path svg {
    stroke-dasharray: var(--a, 86.12);
    stroke-dashoffset: var(--o, 86.12);
    transition: stroke-dasharray 0.6s, stroke-dashoffset 0.6s;
  }
   .contact_form_wrapper .checkbox.bounce {
    --stroke: var(--tick);
  }
   .contact_form_wrapper .checkbox.bounce input:checked {
    --s: 11px;
  }
   .contact_form_wrapper .checkbox.bounce input:checked + svg {
    -webkit-animation: bounce 0.4s linear forwards 0.2s;
            animation: bounce 0.4s linear forwards 0.2s;
  }
   .contact_form_wrapper .checkbox.bounce svg {
    --scale: 0;
  }
  
  @-webkit-keyframes bounce {
    50% {
      transform: scale(1.2);
    }
    75% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes bounce {
    50% {
      transform: scale(1.2);
    }
    75% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }

  .dirty_form_resp_text {
    color: var(--dark-blue);
}
  
.contact_form_wrapper .contact-avatar{
    position: relative;
    height: 164px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: -125px;
    z-index: 2;
}
