.header {
  padding: 50px 0px;
  background-color: var(--primary-bg-color);
  text-align: center;
}
.header h2 {
  color: var(--secondary-bg-color);
  font-size: var(--font-xxlarge);
  font-family: "Rugen";
}

.form {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.form form {
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  padding: 50px;
  flex-direction: column;
  gap: 30px;
  background-color: var(--primary-bg-color);
  border-radius: 20px;
  width: 20%;
}
.form form .input {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: white;
}
.form form .input label {
  font-family: "Rubik";
}
.form form .input input[type=text] {
  border: none;
  outline: none;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.3098039216);
}
.form form input[type=submit] {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 20px;
  outline: none;
  border: none;
  background-color: var(--secondary-bg-color);
  color: var(--primary-text-color);
  font-family: "Rubik";
  font-weight: bold;
  border-radius: 5px;
  margin-top: 10px;
}

.location {
  width: 60%;
  margin: 100px auto;
  color: var(--primary-text-color);
  font-size: var(--font-large);
  padding: 30px 50px;
  border: solid 1px var(--primary-text-color);
  border-radius: 20px;
  position: relative;
}
.location img {
  position: absolute;
  left: -130px;
  top: 50%;
  padding: 40px;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-text-color);
}
.location p {
  font-family: "Rubik";
  font-size: var(--font-medium);
}

.contacts {
  width: 60%;
  margin: 150px auto;
  display: flex;
  justify-content: space-between;
}
.contacts .sells_operations {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.contacts .sells_operations .sells,
.contacts .sells_operations .operations {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.contacts .sells_operations .sells h2,
.contacts .sells_operations .operations h2 {
  font-family: "Rugen";
  color: var(--primary-bg-color);
}
.contacts .sells_operations .sells .item,
.contacts .sells_operations .operations .item {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  background-color: var(--primary-bg-color);
  gap: 20px;
  color: white;
  border-radius: 10px;
}
.contacts .sells_operations .sells .item p,
.contacts .sells_operations .operations .item p {
  font-family: "Rubik";
}

@media screen and (max-width: 768px) {
  .header {
    margin-top: 100px;
  }
  .form {
    flex-direction: column;
    gap: 50px;
  }
  .form iframe {
    width: 100%;
  }
  .form form {
    width: 90%;
  }
  .location {
    margin-top: 200px;
    padding: 50px 20px;
    width: 95%;
  }
  .location img {
    top: -60px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .location p {
    text-align: center;
  }
  .contacts {
    width: 90%;
    margin: 100px auto;
    flex-direction: column;
    gap: 40px;
  }
  .contacts .sells_operations .sells,
  .contacts .sells_operations .operations {
    justify-content: center;
    text-align: center;
  }
}/*# sourceMappingURL=styles.css.map */