body {
  overflow-x: hidden;
}

.section-contact {
  padding: 80px 20px;
  background-color: #f3f3f3;
}

.section-contact .header-section .title {
  position: relative;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 40px;
}

.section-contact .header-section .title .dot {
  display: inline-block;
  position: absolute;
  bottom: 8px;
  width: 8px;
  height: 8px;
  margin-left: 3px;
  background-color: #df383f;
}

.section-contact .header-section .description {
  font-family: "Roboto", sans-serif;
  color: #2a6287;
  font-size: 14px;
}

.section-contact .header-section .big-title {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 70%);
  font-size: 80px;
  font-weight: 700;
  opacity: 0.15;
}

.section-contact .form-contact .single-input {
  position: relative;
  margin-top: 20px;
}

.section-contact .form-contact .single-input i {
  position: absolute;
  top: 12px;
  left: 15px;
  color: #de3842;
}

.section-contact .form-contact .single-input input,
.section-contact .form-contact .single-input textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #07395c;
  padding-left: 50px;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: border 0.3s;
}

.section-contact .form-contact .single-input input::placeholder,
.section-contact .form-contact .single-input textarea::placeholder {
  color: rgba(7, 57, 92, 0.3);
}

.section-contact .form-contact .single-input input:focus,
.section-contact .form-contact .single-input textarea:focus {
  border-color: #df383f;
}

.section-contact .form-contact .single-input textarea {
  height: 150px;
  min-height: 50px;
}

.section-contact .form-contact .submit-input input {
  margin-top: 20px;
  padding: 10px 30px;
  background-color: #de3842;
  color: #fff;
  border: none;
  font-weight: 700;
  transition: background-color 0.3s;
}

.section-contact .form-contact .submit-input input:hover {
  background-color: #07395c;
}

@media (max-width: 575.99px) {
  .section-contact {
    padding: 50px 10px;
  }

  .section-contact .header-section .title {
    font-size: 30px;
  }

  .section-contact .header-section .big-title {
    font-size: 50px;
  }

  .section-contact .form-contact .single-input input,
  .section-contact .form-contact .single-input textarea {
    padding-left: 40px;
    font-size: 13px;
  }

  .section-contact .form-contact .submit-input input {
    padding: 10px 25px;
  }
}

@media (min-width: 576px) and (max-width: 767.99px) {
  .section-contact .header-section .title {
    font-size: 35px;
  }

  .section-contact .header-section .big-title {
    font-size: 60px;
  }
}

@media (min-width: 768px) and (max-width: 991.99px) {
  .section-contact .header-section .title {
    font-size: 40px;
  }

  .section-contact .header-section .big-title {
    font-size: 70px;
  }
}