.contact-section {
  display: flex;
  width: 100%;
  gap: 50px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 40px;
}

.contact-items,
.contact-section form {
  width: 50%;
  height: 100%;
  box-sizing: border-box;
}

.input-container {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.contact-title {
  color: var(--nv-primary-accent);
}

form button {
}

form input,
form textarea {
  border-radius: 6px !important;
  width: 100%;
}

form span {
  font-size: 0.9em;
  padding-left: 3px;
}

.contact-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-shadow: none;
  border: 2px #fff solid;
  border-radius: 18px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.contact-item:hover {
  box-shadow: 0 0 5px #00c2ff;
  border-color: #00c2ff;
}

.contact-icon {
  height: 60px;
  width: 60px;
  border-radius: 11px;
  margin: 0 15px;
}

.checkbox-container {
  display: flex;
  justify-content: flex-start;
  padding-left: 3px;
}

.checkbox-container input {
  width: unset !important;
}

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

.contact-form,
.contact-info {
  flex: 1;

  padding: 20px 0;
}

.info-block {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 90px;
}
.info-block .octahedron-wrap {
  min-height: 140px;
}

.info-item {
  align-items: center;

  flex: 1;
  background: #181818;
  border-bottom: 4px solid #222222;
  width: 400px;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out,
    box-shadow 0.4s ease-in-out, transform 0.2s ease-in-out;
  position: relative;
  display: flex;
}

.info-item .icon img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.info-text h4 {
  margin-bottom: 5px;
}

.info-text p {
  font-size: 14px;
}

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

.contact-form .low-box .left,
.contact-form .low-box .right,
.contact-form .low-box .front,
.contact-form .low-box .back {
  background: linear-gradient(rgb(21, 21, 25), #81d742);
  filter: drop-shadow(
    0 0 15px color-mix(in srgb, #81d742 80%, transparent)
  ) !important;
}

.wpcf7-form.init
  .wpcf7-form-control.wpcf7-submit.has-spinner.form-submit.btn-primary,
.wpcf7-form.init input[type="submit"],
input[type="submit"] {
  display: none !important;
}

.info-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background-color: var(--glow-color);
  transition: width 0.4s ease-in-out;
}
.info-item:hover::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .contact-items,
  .contact-section form {
    width: 100%;
  }
  .contact-section {
    flex-direction: column;
  }
}
