.contact_page_box {
  width: 100%;
  max-width: 1175px;
  display: flex;
  flex-direction: column;
  margin: 0 auto 20px auto;
  align-items: center;
}

.contact_title {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  margin: 30px 0px 20px 0px;
  position: relative;
}

.contact_title::before {
  content: '';
  position: absolute;
  bottom: -15px;
  width: 50px;
  height: 3px;
  background-color: var(--webmainho);
  left: calc((100% - 50px) / 2);
}

.contact_margin {
  margin-top: 30px;
}

.contact_sort01 {
  display: flex;
  flex-direction: row;
  width: 60%;
  align-items: center;
  margin-bottom: 20px;
}

.contact_sort02 {
  display: flex;
  flex-direction: row;
  width: 60%;
  margin-bottom: 20px;
}

.contact_sort03 {
  display: flex;
  flex-direction: row;
  width: 60%;
  margin-bottom: 20px;
  align-items: center;
}

.contact_sort04 {
  display: flex;
  flex-direction: row;
  width: fit-content;
  align-items: center;
}

.contact_sort04 span {
  margin-right: 20px;
  width: 80px;
}

.contact_sort04 input {
  width: 40%;
  height: 50px;
}

.contact_sort04 img {
  margin-left: 10px;
}

.contact_sort03 span {
  margin-right: 20px;
  width: 80px;
}

.contact_sort02 span {
  margin-right: 20px;
  width: 80px;
}

.contact_sort04 {
  width: calc(100% - 80px);

}

.contact_sort02 textarea {
  width: calc(100% - 80px);
  height: 250px;
}

.contact_sort01 span {
  margin-right: 20px;
  width: 80px;
}

.contact_sort01 input {
  width: calc(100% - 80px);
  height: 50px;
}

.contact_btn {
  padding: 8px 20px;
  background-color: var(--webmainho);
  color: white;
  margin-left: auto;
  font-size: 18px;
  border-radius: 5px;
}

@media (max-width:1175px)
{
  .contact_sort02,
  .contact_sort03,
  .contact_sort01 {    
    width: 70%;    
}
}

@media (max-width:768px)
{

.contact_sort04 {
    width: 100%;
}

  .contact_sort02,
  .contact_sort03,
  .contact_sort01 {    
    width: 90%;    
}

.contact_sort01,
.contact_sort02,
.contact_sort03{
  flex-direction:column;
  align-items:normal;
}

.contact_sort01 span,
.contact_sort02 span,
.contact_sort03 span {
    margin-bottom:10px
}

.contact_sort01 input {
    width: 100%    
}

.contact_sort02 textarea {
    width: 100%    
}

}