.content {
  text-align: center;
  padding: 50px;
}

.contact-items {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.content img {
  background-color: #204b6a;
  border-radius: 50%;
  padding: 15px;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  object-fit: contain;
  padding: 35px;
}

.phone-label,
.location-label,
.mail-label,
.settings-label {
  display: block;
  font-weight: bold;
  color: #57ffe3;
  margin-bottom: 8px;
  font-size: 14px;
}
.mail-section a {
  text-decoration: none;
  color: inherit;
}

.mail-text {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact-form select {
  background-color: #243552;
  padding: 12px 16px;
  color: #ffffff;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  border: 1px solid #3b4a5a;
  box-shadow: none;
  outline: none;
  margin-bottom: 10px;
}
a{
  text-decoration: none !important;
}
.phone-text,
.location-text,
.mail-text,
.settings-text {
  display: block;
  color: #ffffff;
  font-size: 18px;
}

.contact-form-column {
  max-width: 100%;
  width: 100%;
  margin: 42px auto;
  padding: 40px 20px;
  /* border: 1px solid #3b4a5a; */
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4); */
}

.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-form input,
.footer-contact-form textarea .footer-contact-form select {
  background-color: #243552;
  padding: 12px 16px;
  color: #ffffff;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
  color: #cccccc;
}

.footer-contact-form textarea {
  resize: vertical;
  min-height: 100px;
  background: #243552;
}
.footer-contact-form input,
.footer-contact-form textarea {
  padding: 12px 16px;
  color: #ffffff;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.footer-send-button {
  background-color: #0d6efd;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.footer-send-button:hover {
  background-color: #0b5ed7;
}

.contact-form-column p {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
}
@media (max-width: 1024px) {
  .header-main {
    position: relative;
  }
}

@media (max-width: 768px) {
  .contact-form-column {
    padding: 20px 10px;
  }
}

@media (max-width: 480px) {
  .content img {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .phone-text,
  .location-text,
  .mail-text,
  .settings-text {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .contact-items {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .content {
    padding: 20px;
    max-width: 85%;
    width: 100%;
  }
  .logo-img {
    height: 25px;
  }
}
.footer {
  border-top: 1px solid var(--bg-footer);
}