/* Contact  */

  .contact
  {
    flex-direction: column;
    width: 100%;
    height: auto;
    background-color: var(--white-color);
  }

  .titles-span
  {
    color: var(--secondary-color);
  }

  .contact-container
  {
    width: 100%;
    height: 100%;
    justify-content: space-around;
    gap:2em;
  }

  .contact-form
  {
    height: 100%;
    font-size: var(--fs-contact-explain);
  }

  .contact-live
  {
    aspect-ratio: 1/1;
    width: clamp(20rem, 100%, 70rem);
    flex-direction: column;
    border-radius: var(--border-radius);
    gap: 2em;
    padding: 2em;
    text-align: center;
    background-color: var(--accent-light-color);
  }

  .live-icon:hover
  {
	-webkit-animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }

   .text2, .text3, .text4
  {
    font-size: var(--fs-contact-explain);
    line-height: var(--lh-contact-explain);
    color:var(--primary-color);
    text-align: center;
  }

  .contact-live .text1, .text2-span
  {
    color:var(--accent-color)
  }

  .text1
  {
    font-size: var(--fs-contact-title);
    font-weight: 600;
  }

  form
  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2em;
    padding: 3em;
  }

  form input, select
  {
    border: none;
    border-bottom: 1px solid var(--primary-color);
    height: 1.3em;
    margin-left: 0.3em;
    min-width: 15%;
    text-align: center;
    align-self: baseline;
    font-family: 'Satoshi-Medium';
  }

  form input:focus
  {
    outline: none;
  }

  form p
  {
    height: 3em;
    padding-top: 0.2em;
  }  

  input::placeholder
  {
    font-weight: 500;
    opacity: 0.6;
    color: var(--primary-color);
  }

  .form-div
  {
    display: flex;
    flex-wrap: wrap;
  }

  .form-submit-button
  {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8rem;
    aspect-ratio: 2;
    padding: 0.45em 0.75em;
    line-height: var(--lh-sm);
    border: 1px solid transparent;
    transition: all .36s;
    font-size: var(--fs-contact-button);
    border-radius: var(--cta-button-border-radius);
    color: var(--white-color);
    background-color: var(--accent-color);
  }
  @media only screen and (max-width: 1024px)
  {
   
    .contact-container
    {
      flex-direction: column;
    }
    
  }
