body {
  font-family: "Montserrat", sans-serif;
}

.contact-section {
  background-color: #f1f1f1;
  color: #f5f5f5;
  padding: 2.5rem;
  max-width: 1000px;
  position: relative;
  border-radius: 0;
}

.contact-container h1 {
  font-family: "Anybody", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 130%;
  color: rgba(234, 67, 53, 1);
  margin-bottom: 20px;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
}

.intro-text {
  flex: 0 0 30%;
  min-width: 200px;
}

.contact-form {
  flex: 0 0 60%;
  min-width: 200px;
}

.contact-container p {
  color: rgba(12, 12, 12, 1);
  font-family: "Montserrat", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-group {
  flex: 1;
}

label {
  display: none;
}

input {
  padding: 10px 10px 10px 0px;
  line-height: 130%;
}

input::placeholder {
  color: rgba(12, 12, 12, 1);
  font-weight: 400;
}

input,
textarea {
  color: rgba(12, 12, 12, 1);
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(124, 124, 124, 1);
  background: transparent;
  font-family: "Montserrat", serif;
  font-size: 20px;
  line-height: 130%;
}

.content p{
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: rgba(12, 12, 12, 1);
  margin: 0;
}

textarea {
  padding: 20px;
  height: 163px;
  border-radius: 0;
  gap: 10px;
  color: rgba(12, 12, 12, 1);
  font-weight: 400;
  border: 1px solid rgba(124, 124, 124, 1);
}

textarea::placeholder{
  color: rgba(12, 12, 12, 1);
}

.backToTop {
  border-radius: 8px;
  text-align: center;
  display: block;
  position: fixed;
  right: 15px;
  bottom: 100px;
  transition: all 0.2s;
  z-index: 1000;
  cursor: pointer;
}

.backToTop svg {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.popup-overlay.active {
  display: flex;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 50px;
  cursor: pointer;
  color: #333;
}

@keyframes fadeIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.submit-row {
  display: flex;
  justify-content: flex-end;
}

.submit-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  background: none;
  border: 1px solid rgba(12, 12, 12, 1);
  height: 50px;
  width: 220px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: 0.3s;
  border-radius: 0;
  color: black;
}

.submit-btn:hover {
  background-color: #e4453b;
  color: white;
  border-color: #e4453b;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .intro-text,
  .contact-form {
    width: 100%;
  }

  .contact-container h1{
    font-size: 25px;
  }
}

@media (prefers-color-scheme: dark) {
  input{
    color: black;
  }
}

.my-title-class, .my-html-container-class {
  font-family: "Montserrat", serif !important;
  color: rgba(12, 12, 12, 1) !important;
}

div:where(.swal2-container) {
  z-index: 9999 !important;
}
