.contact-info {
  border: 1px solid rgba(var(--black-hex), 0.1);
  padding: 4.8rem;
  display: flex;
  gap: 4rem;
}
.contact-info-item{
  flex: 1 1 0;
}
.contact-icon{
  max-width: 3.4rem;
  margin-right: 1.6rem;
}
.contact-info-item .row {
  --bs-gutter-y: 2rem;
}
.contact-info-text p,
.contact-info-text a{
  font-size: 1.6rem;
  line-height: 180%;
  color: var(--black);
  margin: 0;
}
.contact-info-text a:hover{
  text-decoration: underline !important;
}
.contact-info-text span{
  display: block;
  margin-bottom: 0.6rem;
}
.contact-info-text small{
  display: block;
  margin-top: 2rem;
  text-transform: initial;
  font-weight: normal;
}
.row:has(.contact-map) {
  --bs-gutter-x: 6.4rem;
  margin-top: 12rem;
}
.contact-map #map{
  width: 100%;
  height: 73.5rem;
}
.sec-contact .form-input > p{
  margin-bottom: 0;
}
@media (min-width: 1360px) and (max-width: 1459.98px) {
  .row:has(.contact-map) {
    --bs-gutter-x: 4rem;
    margin-top: 9rem;
  }
}
@media(min-width:1200px) and (max-width:1359.98px){
  .contact-info {
    padding: 3.2rem;
    gap: 2.8rem;
  }
  .contact-info-item .col-lg-4{
    width: 50%;
  }
  .contact-info-item .gx-20{
    --bs-gutter-y: 1.2rem;
  }
  .contact-info-text small {
    margin-top: 2.4rem;
  }
  .row:has(.contact-map) {
    --bs-gutter-x: 4rem;
    margin-top: 8rem;
  }
}
@media(min-width:992px) and (max-width:1199.98px){
  .contact-info {
    padding: 3.2rem;
    gap: 2rem;
  }
  .contact-info-item .col-lg-4{
    width: 50%;
  }
  .contact-info-item .gx-20{
    --bs-gutter-y: 1.2rem;
  }
  .contact-info-text small {
    margin-top: 1.6rem;
  }
  .row:has(.contact-map) {
    --bs-gutter-x: 4rem;
    margin-top: 8rem;
  }
}
@media(min-width:768px) and (max-width:991.98px){
  .contact-info {
    padding: 2rem;
    gap: 3.2rem;
    flex-wrap: wrap;
  }
  .contact-info-item {
    flex: initial;
    width: calc(50% - 1.6rem);
  }
  .contact-info-item:nth-child(3){
    width: 100%;
  }
  .contact-info-text small {
    margin-top: 2.4rem;
  }
  .row:has(.contact-map) {
    --bs-gutter-x: 1.6rem;
    margin-top: 6.4rem;
    flex-direction: column-reverse;
  }
  .contact-map #map {
    height: 40rem;
  }
}
@media(max-width:767.98px){
  .contact-info {
    padding: 2rem;
    gap: 2.4rem;
    flex-wrap: wrap;
  }
  .contact-info-item {
    flex: initial;
    width: 100%;
  }
  .contact-icon {
    max-width: 3rem;
    margin-right: 1.2rem;
  }
  .contact-info-item .gx-20{
    --bs-gutter-y: 1.2rem;
  }
  .contact-info-text small {
    margin-top: 2rem;
  }
  .row:has(.contact-map) {
    --bs-gutter-x: 1.6rem;
    margin-top: 4rem;
    flex-direction: column-reverse;
  }
  .contact-map #map {
    height: 35rem;
  }
}

.wpcf7-form-control-wrap {
  position: unset;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.chk:has(input:checked)  .checkmark::after {
  display: block;
}
.contact-block-item {
  border: 1px solid rgba(var(--black-hex),0.1);
  padding: 2rem;
}

.row-custom {
  gap: 1rem;
}

.contact-map {
  height: 100%;
  min-height: 600px;
}

@media (min-width: 992px) {
  .row-custom .col-lg-6 {
    width: calc(50% - 0.5rem);
  }
}

.form-loader {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 10;
}

form.submitting .form-loader {
  display: flex;
}

form {
  position: relative;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #ccc;
  border-top-color: #000;
  border-radius: 50%;
  animation: spinner-rotate 0.8s linear infinite;
}

@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

form:has(#complaintForm) .wpcf7-response-output {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 9999999;
  background: blut;
  font-size: 2.2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: black;
  opacity: 0;
  visibility: hidden;
  animation: cf7-show-hide 7s forwards;
}
@keyframes cf7-show-hide {
  0% {
    visibility: visible;
    opacity: 1;
  }
  71% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
.wpcf7-file.d-none+.wpcf7-not-valid-tip {
  display: block !important;
}