#contact-us-header {
  position: relative;
}

#contact-us-header img {
  width: 100%;
}

#contact-us-header img:nth-child(2) {
  display: none;
}

#contact-us-header .title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

#contact-us-header .title h1 {
  font-family: 'Montserrat-Medium';
  font-size: 60px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
}

#form-contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
}

#form-contact-wrapper .left-panel,
#form-contact-wrapper .right-panel {
  flex: 1 500px;
}

#form-contact-wrapper .form.contact {
  /* margin: 20px 30px; */
  /* padding: 20px 15% 0 5%; */
  min-width: initial !important;
  width: 100%;
  box-sizing: border-box;
}

.left-panel {
  padding: 20px 0 0 15%;
  box-sizing: border-box;
}

.right-panel {
  padding: 20px 15% 0 0%;
  box-sizing: border-box;
}

.left-panel .contact-us-paragraf {
  margin-bottom: 38px;
}

.left-panel .contact-us-title {
  font-family: 'Montserrat-Bold';
  font-size: 40px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #014682;
  text-transform: uppercase;
  margin-bottom: 42px;
}

.left-panel .contact-us-desc {
  font-family: 'Montserrat-Medium';
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #7b7b7b;
  max-width: 85%;
}

.left-panel .contact-us-caption-big {
  font-family: 'Montserrat-Medium';
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  color: #014682;
  text-transform: uppercase;
}

.left-panel .contact-us-caption {
  font-family: 'Montserrat-Medium';
  font-size: 13px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #7b7b7b;
}

.left-panel .contact-us-value {
  font-family: 'Montserrat-Medium';
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.75px;
  color: #2d2d2d;
}

.left-panel .contact-us-value span {
  font-family: 'Montserrat-Bold';
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #074096;
}

.left-panel #contact-us-button {
  padding: 17px 30px;
  border-radius: 4px;
  background-color: #014682;
  border: 2px solid #FFF;
  transition: all .6s;
  display: inline-block;
}

.left-panel #contact-us-button span {
  font-family: 'Montserrat-Medium';
  font-size: 13px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  transition: all .3s;
}

.left-panel #contact-us-button:hover {
  background-color: #FFF;
  border: 2px solid #014682;
  transition: all .6s;
  text-decoration: none;
}

.left-panel #contact-us-button:hover span {
  color: #014682;
  transition: all .3s;
}

.page.messages {
  margin: 1vw 0;
}

.page.messages .message.error > *:first-child:before {
  line-height: 27px;
}

.page.messages .message.error > *:first-child {
  font-size: 18px !important;
}

@media screen and (max-width: 700px) {
  #contact-us-header .title {
    height: 45%;
  }

  #contact-us-header img:nth-child(2) {
    display: block;
  }

  #contact-us-header img:first-child {
    display: none;
  }

  .left-panel .contact-us-desc {
    max-width: 100%;
  }
  
  #form-contact-wrapper {
    margin-top: 50px;
  }

  #form-contact-wrapper .left-panel, #form-contact-wrapper .right-panel {
    padding: 20px;
  }

  .left-panel .contact-us-title {
    font-size: 40px;
    line-height: 1.25;
    margin-bottom: 25px;
    padding-right: 20px;
  }

  .left-panel .contact-us-paragraf:last-child {
    margin-bottom: 8px;
  }

  .left-panel .contact-us-caption-big {
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .form.contact select,
  .form.contact input,
  .form.contact textarea
  {
    padding-top: 17px;
    padding-bottom: 17px;
    height: unset;
    border-radius: 2px;
    border: solid 1px #dedede;
  }

  .form.contact button[type='submit'] {
    width: 50%;
    padding: 17px 0;
    margin-right: 100%;
  }
}