.divContactHeader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  justify-content: center;
  min-height: 400px;
  background: url('../images/parts.png') no-repeat center center, rgba(0, 0, 0, 0.4);
  background-blend-mode: soft-light;
  background-size: cover;
  background-position: center center;
}

.divContact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  justify-content: center;
  padding: 100px 0 100px 0;
  min-height: 400px;
  background: rgb(233,236,239);
  background: linear-gradient(325deg, rgba(233,236,239,1) 0%, rgba(255,255,255,1) 100%);
}

.contactContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.cFormCard {
    border: 3px solid red;
    border-bottom: none;
    border-right: none;
    padding: 20px;
    width: 600px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}


.cFormCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.contactForm {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.contactForm p {
  margin: 0 0 10px 0;
  font-family: Or;
}

.cformText {
  padding: 10px;
  width: 500px;
  font-family: Or;
  font-size: 17px;
  outline: none;
  border: none;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 30px;

}

.cformText:hover {

    cursor: text;
}

.cformText:focus {
  border: 2px solid #dd0000;;
  cursor: text;
}

.responseContainer {
  margin-top: 40px;
}


.cformArea {
  padding: 10px;
  width: 500px;
  font-family: Or;
  font-size: 17px;
  border-radius: 5px;
  outline: none;
  border: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 30px;

}

.cformArea:hover {

    cursor: text;
}

.cformArea:focus {
  border: 2px solid #dd0000;;
  cursor: text;
}



@media (max-width: 768px) {

  .cFormCard {
    width: 400px;
    height: 300px;
  }
  .cformText {
    width: 350px;
  }

  .cformArea {
    width: 350px;
  }
}
