.hero-contact {
  background-image: url("../img/contact-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;

  position: relative;
  margin-bottom: 0;
  padding: 60px;
  isolation: isolate;
}

.hero-contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #120b32;
  opacity: 0.5;
}

.hero-contact>h2 {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

@keyframes pushUp {
  from {
    transform: translateY(80px);
    /* Initial position pushed down */
  }

  to {
    transform: translateY(0);
    /* Final position at normal height */
  }
}

.hero-contact>h1 {
  color: #fff;
  font-family: "KorolevBold", Sans-serif;
  font-size: 55px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.76);
  text-align: center;
  animation: pushUp 1.5s ease-out;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.content-wrapper>* {
  width: 85%;
  /* Adjust the width as needed */
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-block: 4em;
  margin-inline: 7rem;
  gap: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-wrapper {
  display: flex;
  gap: 1rem;
}

.info-title {
  display: flex;
}

.icon {
  color: #1b325f;
  width: 1em;
  height: 1em;
  position: relative;
  display: block;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  font-size: 50px;
  text-rendering: auto;
  text-align: center;
  line-height: 1em;
}

.text h3 {
  font-family: "KorolevBold", Sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1b325f;
  line-height: 1.2em;
  margin-bottom: 1rem;
}

.text p {
  color: #120b32;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  text-align: left;
  max-width: 350px;
}

.text p a {
  color: #b53253;
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form h2 {
  color: #1b325f;
  font-family: "KorolevBold", Sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-contact {
  padding: 10px 20px;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background-color: #7b1222;
  color: white;
  cursor: pointer;
  border: none;
}

.btn-contact:hover {
  background-color: white;
  color: #7b1222;
}
