.contact-section-small {
  display: none;
}
.contact-section {
  background-color: bisque;
  display: flex;
}
.left {
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 20%;
  width: 70%;
  height: 100%;
}
.right {
  margin-top: 250px;
  margin-left: -80%;
  width: 30%;
  height: 100%;
  display: flex;
  align-items: center;
}

/* --------------------- */
/* Contact Styling Start */
/* --------------------- */

.contact {
  width: 350px;
  height: 400px;
  background-color: #fc036b;
  color: white;
  padding: 40px;
}
.contact .contact-header {
  color: white;
  margin-top: 0px;
}
.contact-list {
  margin-top: 30px;
}

.contact-list p {
  margin-left: 20px;
  margin-top: 0px;
  font-size: 18px;
}
.contact-list img {
  width: 24px;
  height: 24px;
}
.contact-list div {
  display: flex;
  margin: 20px 0px;
}
.contact-list .contact-list-location {
  display: flex;
}
.contact-list .contact-list-mail {
  display: flex;
}
.contact-list .contact-list-phone {
  display: flex;
}
.contact-list .contact-list-fax {
  display: flex;
}
.contact-social-media {
  margin-top: 30px;
}
.social-media-items {
  margin-left: 15px;
}

/* --------------------- */
/* form  Styling Start */
/* --------------------- */

.form-contact {
  padding: 50px 250px 50px 250px;
  background-color: white;
  height: 100%;
  width: 90%;
}

.form-contact-header {
  font-size: 35px;
}
.form-contact-subheading {
  color: silver;
  margin-top: 10px;
  font-weight: 500;
}
.contact-form {
  display: flex;
  flex-wrap: wrap;
}

.contact-form {
  margin-left: 20px;
}
.contact-form #name,
.contact-form #email,
.contact-form #phone,
.contact-form #subject {
  margin-top: 10px;
  width: 400px;
  padding: 20px;
  border: 3px solid bisque;
  border-radius: 11px;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
}
.contact-form #subject {
  resize: none;
}
.contact-form #submit {
  margin-top: 10px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  color: white;
  background-color: #fc036b;
  padding: 17px 50px;
}

/* --------------------- */
/* MediaQuery Styling Start */
/* --------------------- */

@media screen and (max-width: 1200px) {
  .contact-section {
    display: none;
  }
  .contact-section-small {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .contact {
    color: white;
    background-color: red;
    padding: 30px 300px;
    width: 100%;
    /* width: 50%; */
  }
  .form-contact {
    background-color: bisque;
    width: 100%;
    /* width: 50%; */
  }
  .contact-list-location img,
  .contact-list-phone img,
  .contact-list-mail img,
  .contact-list-fax img {
    margin-top: 20px;
    margin-left: 30px;
    width: 32px;
    height: 32px;
  }
  .contact-list-location,
  .contact-list-phone,
  .contact-list-mail,
  .contact-list-fax {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 21px;
  }
  .contact-list-location p,
  .contact-list-phone p,
  .contact-list-mail p,
  .contact-list-fax p {
    margin-top: 20px;
    margin-left: 20px;
  }

  .form-contact {
    padding: 30px 290px;
  }
  .contact-form {
    padding: 20px 30px;
  }
  #name,
  #phone,
  #email,
  #subject {
    width: 100%;
    padding: 15px 20px;
    border: 3px solid bisque;
    border-radius: 10px;
    margin-top: 10px;
    resize: none;
    font-size: 16px;
  }
  #name::placeholder,
  #phone::placeholder,
  #email::placeholder,
  #subject::placeholder {
    font-family: "Courier New", Courier, monospace;
    font-size: 16px;
    color: silver;
  }
  #submit {
    margin-top: 10px;
    border-radius: 10px;
    border: none;
    font-size: 18px;
    color: white;
    background-color: red;
    padding: 20px 50px;
  }
  .form-contact-header {
  }
  .form-contact-subheading {
    margin-top: 10px;
    color: silver;
  }
}

@media screen and (max-width: 690px) {
  .form-contact {
    padding: 30px;
  }
  .contact {
    padding: 30px;
  }
}
@media screen and (max-width: 1010px) {
  .form-contact {
    padding: 30px 100px;
  }
  .contact {
    padding: 30px 100px;
  }
}
