.contact h1,
.contact h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: var(--Juoda);
  margin: 0 0 2rem;
}
.contact p {
  margin: 0;
}
.contact-half:first-of-type {
  background-color: var(--Yellow, #FFCB00);
  background-size: 100%;
  background-position: unset;
  background-repeat: repeat-y;
  background-image: url("../images/contact_overlay_mobile.svg");
}
.contact-half:last-of-type {
  background: var(--Balta, #FFF);
}
.contact-form {
  padding: 4rem 1.5rem;
}
.contact-form p br {
  display: none;
}
.contact-form form {
  display: flex;
  flex-flow: column;
  gap: 2rem;
}
.contact-form input:not(.wpcf7-submit),
.contact-form textarea {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #5B5B5B;
  border-radius: 6px;
  color: var(--Juoda);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
  outline: none;
}
.contact-form input:not(.wpcf7-submit):focus,
.contact-form textarea:focus {
  border: 1px solid #FFCB00;
}
.contact-form input:not(.wpcf7-submit)::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: #5B5B5B;
}
.contact-form input:not(.wpcf7-submit)::placeholder,
.contact-form textarea::placeholder {
  color: #5B5B5B;
}
.contact-form input:not(.wpcf7-submit).wpcf7-not-valid,
.contact-form textarea.wpcf7-not-valid {
  border-color: #E50000;
}
.contact-form input:not(.wpcf7-submit) .wpcf7-not-valid,
.contact-form textarea .wpcf7-not-valid {
  color: #E50000;
}
.contact-form label {
  width: 100%;
  position: relative;
}
.contact-form label .form-label {
  opacity: 0;
  font-size: 12px;
  line-height: 16px;
  background: #FFF;
  color: var(--Pilka-teksto, #5B5B5B);
  padding: 0 3px;
  position: absolute;
  left: 14px;
  transform: translateY(-50%);
  z-index: 1;
  transition: opacity 0.3s ease;
}
.contact-form label:has(input:not(:-moz-placeholder-shown)) .form-label, .contact-form label:has(textarea:not(:-moz-placeholder-shown)) .form-label {
  opacity: 1;
}
.contact-form label:has(input:not(:placeholder-shown)) .form-label, .contact-form label:has(textarea:not(:placeholder-shown)) .form-label {
  opacity: 1;
}
.contact-form .btn-primary {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.contact-form .wpcf7 form .wpcf7-response-output {
  margin: 0;
}
.contact-form .wpcf7-spinner {
  position: absolute;
}
.contact-content {
  padding: 0 1.5rem 4rem;
}
.contact-details {
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
.contact-details-item {
  display: flex;
  gap: 0.75rem;
}
.contact-details-item span {
  color: var(--Pilka-teksto);
  font-size: 0.75rem;
  line-height: 1rem;
}
.contact-details-item p {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
}
.contact-list {
  display: flex;
  gap: 1rem;
  flex-flow: column;
  margin: 0 0 4rem;
}
.contact-list-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.contact-list-item p,
.contact-list-item a {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  color: var(--Juoda);
  text-decoration: none;
  display: block;
}
.contact-list-item-image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  min-width: 32px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--Juoda);
}
.contact-list-item-image img {
  width: 14px;
  height: 14px;
}
.contact .container {
  max-width: 720px;
  padding: 0 1.5rem;
}
.contact .breadcrumbs-dark {
  padding: 12px 0;
  margin: 0 0 2rem;
}
.contact {
  margin-top: -70px;
}
.contact-half {
  padding-top: 70px;
}
@media screen and (min-width: 992px) {
  .contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .contact h1,
  .contact h2 {
    font-size: 3rem;
    line-height: 1.3;
    margin: 0 0 2rem;
  }
  .contact-half:first-of-type {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../images/contact_overlay.svg");
  }
  .contact-half:first-of-type .container {
    margin: 0 0 0 auto;
  }
  .contact-half:last-of-type .container {
    margin: 0 auto 0 0;
  }
  .contact-form {
    margin: 0 auto;
    max-width: 528px;
    padding: 4rem 0;
  }
  .contact-form h2 {
    text-align: center;
  }
  .contact-form form {
    gap: 1rem;
  }
  .contact-form .btn-primary {
    width: auto;
    margin: 1rem auto 0;
  }
  .contact-content {
    margin: 0 auto;
    max-width: 528px;
    padding: 0 0 4rem;
  }
  .contact-details {
    flex-flow: row;
    gap: 2rem;
    justify-content: space-between;
  }
  .contact-details-item {
    flex-flow: column;
    gap: 0.25rem;
  }
  .contact-details-item p {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .contact-list {
    gap: 2.5rem;
  }
  .contact-list-item p,
  .contact-list-item a {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .contact-list-item-image {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
  .contact-list-item-image img {
    width: 20px;
    height: 20px;
  }
  .contact .breadcrumbs-dark {
    margin: 0 0 1.5rem;
  }
}
.contact-map p {
  color: var(--Juoda);
  margin: 0;
}
.contact-map .acf-map {
  width: 100%;
  height: 274px;
  margin: 0;
}
.contact-map .acf-map img {
  max-width: inherit !important;
}
@media screen and (min-width: 992px) {
  .contact-map .acf-map {
    height: 400px;
  }
}/*# sourceMappingURL=contact.css.map */