.prefooter {
  height: 538px;
  margin: auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ed1e28;
}
.prefooter .content {
  padding: 0 24px;
  max-width: 758px;
  text-align: center;
}
.prefooter h2 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.prefooter p {
  font-size: 24px;
  margin-bottom: 30px;
}
.prefooter form {
  max-width: 448px;
  position: relative;
  margin: 0 auto;
}
.prefooter form input[type=email] {
  background: rgba(222, 213, 195, 0.5019607843);
  border-radius: 4px;
  height: 48px;
  width: 100%;
  border: none;
  font-size: 16px;
  padding: 0 15px;
}
.prefooter form input[type=email]::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5411764706);
}
.prefooter form input[type=email]::placeholder {
  color: rgba(0, 0, 0, 0.5411764706);
}
.prefooter form button {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 4px;
  height: 32px;
  right: 10px;
  top: 8px;
  transition: all 0.6s ease;
}
.prefooter form button .text {
  width: 0;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  text-align: start;
  transition: width 0.6s ease, max-width 0.6s ease, opacity 0.6s ease;
}
.prefooter form button:after {
  content: "";
  background-image: url("../img/arrow_forward.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}
.prefooter form button:hover {
  background: #ded5c3;
  padding-left: 16px;
}
.prefooter form button:hover .text {
  width: 65px;
  max-width: 65px;
  opacity: 1;
}
.prefooter form label {
  display: flex;
  font-size: 14px;
  margin-top: 10px;
}
.prefooter form label input {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  position: relative;
  top: 2px;
}

.footer {
  background: #fff;
}
.footer .request {
  margin-bottom: 100px;
  max-width: 640px;
}
.footer .request h3 {
  font-weight: 400;
  font-size: 16px;
  padding-bottom: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid #2D2A29;
}
.footer .request .contact-btn {
  font-size: 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
}
.footer .request .contact-btn:after {
  content: "";
  background-image: url("../img/right-up.svg");
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(21%) sepia(89%) saturate(2798%) hue-rotate(344deg) brightness(91%) contrast(105%);
}
.footer ul {
  list-style-type: none;
  padding: 0;
}
.footer ul li {
  list-style-type: none;
  margin-bottom: 10px;
}
.footer ul li.address, .footer ul li.phone {
  margin-bottom: 30px;
}
.footer ul li:last-child {
  margin-bottom: 30px;
}
.footer ul li a {
  font-size: 16px;
  font-weight: 400;
}
.footer .footer-menu li:last-child {
  margin-bottom: 0;
}
.footer .footer-menu li a {
  font-size: 42px;
  font-weight: 500;
  opacity: 0.5;
}

.copyright {
  border-top: 1px solid #2D2A29;
  padding: 40px 0;
  background: #fff;
}
.copyright p {
  font-size: 14px;
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 0;
}
.copyright p:first-child {
  margin-bottom: 5px;
}
.copyright p a:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .copyright .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
