.extra-contact {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 36px;
    margin-top: 36px;
    align-self: center;
    padding: 16px;
  }
  
  .contact-page {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 1200px;
    margin-bottom: 100px;
    gap: 50px;
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
  
  .lets-talk {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
  }
  
  .details {
    color: white;
    padding: 16px;
    padding-left: 0;
  }
  
  .touch {
    width: 300px;
    margin: 50px;
  }
  
  .contact-name {
    font-size: 26px;
    margin-bottom: 50px;
  }
  
  .contact-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    flex: 1;
    padding: 16px;
  }
  
  @media screen and (max-width: 1200px) {
    .touch {
      display: none;
    }
  
    .details {
      align-self: center;
      padding: 0;
    }
  
    .contact-page {
      width: 300px;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }
    .extra-contact {
      margin-top: 40px;
      margin-bottom: 0px;
    }
  
    .lets-talk {
      margin-top: 60px;
      margin-bottom: 40px;
    }
  }
  
  .inquiry,
  .details {
    font-size: 20px;
    font-weight: bold;
  }
  
  .form-elements {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    align-items: center;
  }
  
  form {
    width: 100%;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    width: 300px;
    padding: 8px;
    height: 24px;
    margin-top: 24px;
    border: none;
    border-radius: 8px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    outline: none;
  }
  
  textarea {
    width: 300px;
    height: 100px;
    resize: none;
  }
  
  @media screen and (max-width: 1200px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
      width: 100%;
    }
  
    .inquiry {
      margin-bottom: 0;
    }
    textarea {
      width: 100%;
      height: 160px;
    }
  
    .details {
      padding: 8px;
    }
  }
  
  .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4em;
  }
  
  .reset-button {
    padding: 12px 32px;
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 20px;
    border: none;
    border-radius: 40px;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: rgb(12, 12, 12);
    background-color: #ffffff;
  }
  
  .reset-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }
  
  .submit-button {
    padding: 12px 36px;
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 20px;
    border: 2px solid black;
    border-radius: 40px;
    background-color: rgb(255, 208, 0);
    cursor: pointer;
    font-weight: bold;
    color: #242424;
    transition: color 0.15s, background-color 0.15s;
    box-sizing: border-box;
    border: none;
  }
  
  .submit-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }
  
  ::placeholder {
    color: #000000;
  }
  
  .info {
    display: flex;
    flex-direction: column;
  }
  
  .email,
  .number,
  .address a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a7a7a7;
  }
  .email,
  .number,
  .address h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
  }
  
  .contact-message {
    text-align: center;
    text-align: left;
    margin-bottom: 50px;
    color: #a7a7a7;
  }
  
  h3 {
    font-weight: 600;
  }
  
  .address a {
    font-weight: 400;
  }
  
  @media screen and (max-width: 1200px) {
    .details {
      margin-top: 20px;
    }
  
    h3 {
      margin-bottom: 2px;
    }
    .my-message {
      font-size: 14px;
      color: #a7a7a7;
    }
  
    .contact-page {
      margin-bottom: 0px;
    }
  }
  
  .form {
    background-color: #242424;
    border-radius: 16px;
    padding: 16px;
    padding-top: 0;
    margin-top: 16px;
  }
  
  @media screen and (max-width: 1200px) {
    .form {
      width: 320px;
      padding-left: 30px;
      padding-right: 30px;
    }
  }
  
  /* 
  form css */
  
  form {
    margin-top: 24px;
    background-color: #181818;
    padding: 16px;
    border-radius: 16px;
    align-items: center;
    font-size: 12px;
  }
  
  form label{
    font-weight: 600;
    padding-left:2px;
  }
  
  
  #name,
  #email,
  #message {
    margin-top: 8px;
    margin-bottom: 16px;
    padding: 16px 8px;
  }
  
  
  * {
    box-sizing: border-box;
  }
  
  
  ::placeholder{
    color:gray;
    font-size:12px;
  }