.contact {
  padding: 0 4rem;
  margin-bottom: 16.2rem;
}

.contact__body {
  display: flex;
  align-items: center;
  gap: 10.3rem;
}

.contact__info {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.contact__info-item {
  display: flex;
  gap: 6.2rem;
  margin-bottom: 3rem;
}

.contact__info-item div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__info-item p:first-child {
  color: var(--color-primary);
}

.contact__info-item:last-child {
  margin-bottom: 0;
}

.contact__us {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-primary);
}

.contact__us span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 100%;
  border: 1px solid var(--color-primary);
}

.contact__map {
  flex: 1;
  width: 100%;
}

.contact__map-iframe {
  max-width: 46.7rem;
  width: 100%;
  height: 30.8rem;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 50%;
  transform: translateX(-50%);
  top: 3rem;
  max-width: 71rem; /* Full width */
  width: 100%;
  height: auto;
  overflow: auto; /* Enable scroll if needed */
  background-color: transparent; /* Fallback color */
}

/* Style the vertical scrollbar */
.modal::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.modal::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.modal::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.modal::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Modal Content/Box */
.modal-content {
  background-color: var(--color-black);
  margin: auto;
  padding: 6rem 12.2rem;
  position: relative;
}

/* Close Button */
.close {
  color: var(--color-primary);
  position: absolute;
  font-size: 2.5rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  z-index: 99;
  right: 3rem;
  top: 3rem;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.input-group {
  width: 100%;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.order-input {
  background-color: transparent;
  color: var(--color-white);
  opacity: 0.5;
}

#myModal form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.comment-textarea {
  width: 100%;
  color: var(--color-white);
  opacity: 0.5;
  background-color: transparent;
}

.form-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.input-file {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.5rem 0.5rem;
  opacity: 0.5;
  border: 1px dashed #d9d9d9;
  border-radius: 1rem;
  flex-basis: 15rem;
}

.input-left p {
  margin-bottom: 1.5rem;
}

.input-left {
  flex-basis: 26.6rem;
}

.input-file-icon {
  width: 2.5rem;
  height: 2.5rem;
}

.input-file-text a {
  text-decoration: underline;
}

.form__send {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 600;
  cursor: pointer;
  background-color: transparent;
  color: var(--color-primary);
  margin-left: auto;
}

.form__send span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 100%;
  border: 1px solid var(--color-primary);
}

.bg-black {
  background-color: #000000;
}

@media (max-width: 1300px) {
  .contact__body {
    gap: 5rem;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 0 1rem;
    margin-bottom: 10rem;
  }

  .contact__body {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact__map-iframe {
    max-width: 100%;
    height: 20.7rem;
  }
  
  .modal {
      height: 60rem;
    }

  .modal-content {
    margin: 0 1rem;
    padding: 4rem 1rem;
  }
  
  
}
