.linkus-btn {
  position: absolute;
  top: 0.625rem;
  right: 1.625rem;
  z-index: 10;
  text-shadow: none;
  color: var(--az-btn-primary-outline-color);
  border-color: var(--az-btn-primary-outline-border);
}

[data-bs-theme="dark"] .linkus-btn {
  color: var(--az-btn-color) !important;
}

.linkus-btn:hover {
  color: var(--az-btn-color);
  background-color: var(--az-btn-primary-outline-hover-bg);
}

.linkus-btn:focus {
  color: var(--az-btn-color);
  background-color: var(--az-btn-primary-outline-focus-bg);
}

.linkus-btn:active {
  color: var(--az-btn-color);
  background-color: var(--az-btn-primary-outline-active-bg);
  border-color: var(--az-btn-primary-outline-active-border);
}

.subheading {
  width: 80%;
  font-size: 1rem;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}

.linkus__img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.linkus__img {
  max-width: 100%;
  height: auto;
}

.linkus--form {
  position: relative;
}

.linkus--textarea {
  font-size: 1rem;
  color: var(--az-body-color);
  width: 100%;
  height: 105px;
  padding: 1rem 3rem 1rem 1rem;
  overflow: hidden;
  resize: none;
}

@media only screen and (max-width: 1199px) {
  .linkus--textarea {
    height: 125px;
  }
}

@media only screen and (max-width: 991px) {
  .linkus__img-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .linkus--textarea {
    height: 80px;
  }

  .linkus-title {
    display: none;
  }

  .linkus--form {
    margin-top: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .linkus--textarea {
    height: 125px;
  }
}

@media only screen and (max-width: 575px) {
  .linkus--textarea {
    padding: 1rem;
  }

  .subheading {
    width: 100%;
    text-align: left;
  }
}

@media only screen and (max-width: 360px) {
  .linkus--textarea {
    height: 155px;
  }
}