/* contact section */

.contact__section {
  margin-bottom: 40px;
}

.contact__title {
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 40px;
}

.contact__inner {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact__block,
.contact__block-midl {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.contact__block {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.contact__block-item {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.contact__block-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: var(--black);
}

.contact__block-inner {
  display: flex;
  gap: 20px;
}

.contact__block-column {
  display: flex;
  gap: 5px;
  flex-direction: column;
}

.contact__block-p {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--black);
}

.contact__block-p-blue {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: var(--shop-bright-blue);
}

@media (max-width: 768px) {
  .contact__title {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
  }

  .contact__block {
    flex-direction: row;
  }

  .contact__block-inner {
    gap: 10px;
  }

  .contact__block-p {
    font-size: 12px;
  }
}

/* map section */

.map__section {
  margin-bottom: 120px;
}

.map__container {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.map__form {
  width: 40%;
}

.map__main {
  width: 55%;
}

.map__main iframe {
  border-radius: 10px;
}

/* form */

.map__form-title {
  margin-bottom: 16px;
}

.map__form-body {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.map__form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.map__form-row input,
.map__form-row textarea {
  border: none;
  flex: 1;
  width: 100%;
  padding: 10px 10px 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  border-radius: 10px;
  color: var(--black);
  background: var(--shop-soft-blue);
}

.map__form-row input::placeholder,
.map__form-row textarea::placeholder {
  color: #aeaeb2;
}

.map__checkbox-row {
  align-items: center;
}

.map__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.map__checkbox-label span {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #8e8e93;
}

.map__submit-btn {
  width: 100%;
  padding: 12px 0;
  border-radius: 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--shop-light-ice);
  background: var(--shop-burnt-sienna);
}

.map__submit-btn:hover {
  box-shadow: var(--button-box-shadow);
}

@media (max-width: 768px) {
  .map__section {
    margin-bottom: 40px;
  }

  .map__container {
    flex-direction: column;
  }

  .map__form,
  .map__main {
    width: 100%;
  }
}