.link-tree {
  padding: 2em 20px;
  background-color: var(--color-warm-white);
  position: relative;
  z-index: 99;
}

.link-tree__text {
  text-align: center;
  margin-bottom: 30px;
}

.link-tree__text :where(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 16px;
}

.link-tree__text p {
  font-weight: 600;
}

.link-tree__list {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
}

.link-tree__list-link {
  display: inline-block;
  width: 100%;
  background-color: var(--color-warm-dark);
  padding: 0.1875293014533521em;
  line-height: 1.125em;
  font-size: 1em;
  color: var(--color-black-dark);
  border-radius: 0.46883em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  height: 3.5em;
  min-height: 3.5em;
  position: relative;
  box-shadow: 2px 3px 0px var(--color-red-dark);
  transition: all 0.4s ease-out;
}

.link-tree__list-link:hover {
  background-color: var(--color-black);
  color: var(--color-warm-white);
}

.link-tree__list-text {
  text-align: center;
  padding: 0 4em;
}

.link-tree__list-icon {
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-tree__list-icon svg,
.link-tree__list-icon img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
  transition: all 0.4s ease-out;
  fill: var(--color-red-dark);
}

.link-tree__list-icon img {
  border-radius: 50%;
  height: auto;
}

.link-tree__list-icon svg path {
  transition: all 0.4s ease-out;
  fill: var(--color-red-dark);
}

.link-tree__list-link:hover .link-tree__list-icon svg,
.link-tree__list-link:hover .link-tree__list-icon svg path {
  fill: var(--color-warm-white);
}

.link-tree__wrap {
  display: flex;
  flex-direction: column;
  gap: 4em;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 540px;
}

.link-tree__app-text {
  text-align: center;
  margin-bottom: 1.2em;
}

.link-tree__app-text p {
  margin-top: 10px;
}

.link-tree__download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

.link-tree__download-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.4s ease-out;
}

.link-tree__download-item a:hover img {
  transform: scale(0.9);
  transform-origin: center center;
}

.link-tree__title {
  margin-bottom: 16px;
  margin-top: 50px;
  color: var(--color-warm-white);
  text-align: center;
}

.link-tree__title--icon {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  align-items: center;
}

.link-tree__title--icon img {
  max-width: 3em;
}

.link-tree__title span {
  background-color: var(--color-red-dark);
  border-radius: 0.4em;
  padding: 0.3em 0.6em;
  display: inline-block;
}

.link-tree-copyright {
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
  color: rgba(35, 35, 29, 0.5);
}

@media only screen and (max-width: 767px) {
  .link-tree__text {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 575px) {
  .link-tree__links {
    position: fixed;
    left: 20px;
    width: calc(100vw - 40px);
    right: 20px;
    border-radius: 1em;
    bottom: 20px;
    padding: 1.5em;
    background-color: var(--color-warm-dark);
    box-shadow: 2px 3px 3px var(--color-black-dark);
    border: 2px solid var(--color-black-dark);
  }

  .link-tree {
    padding-bottom: 22em;
  }
  /* when app come for download

  .link-tree {
    padding-bottom: 50px;
  } */
}

.contact {
  padding: 7em 0;
}
.contact__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact__text,
.contact__form {
  width: calc(50% - 3em / 2);
}

.contact__text p {
  max-width: 25.1em;
}

.contact__form > h6 {
  color: var(--color-warm-white);
  font-family: "Inter", sans-serif;
  position: relative;
  font-size: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  font-weight: 600;
}

.contact__form > p {
  margin-top: 1em;
  color: var(--color-warm-white);
}

.contact__form > h6 img {
  position: relative;
  display: block;
  border: 0.12em solid #fff3e3;
  border-radius: 0.65em;
  background: #fff4e3;
  width: 2.5em;
  height: 2.5em;
}

.contact__form {
  border-radius: 1.0315em;
  background-color: var(--color-red);
  padding: 2em;
}

.contact__text :where(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 14px;
  max-width: 8em;
}

.input-wrap input,
.input-wrap textarea {
  width: 100%;
  padding: 0.1875293014533521em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-black);
  border: 0;
  background-color: var(--color-warm-white);
  font-size: 0.9376465072667605em;
  line-height: 1.1251758087201127em;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.46883em;
  height: 3.1879981247069855em;
  position: relative;
  -webkit-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  outline: none;
  color: var(--color-black);
  font-family: "Ranchers", sans-serif;
  text-align: center;
}

._form-thank-you {
  color: var(--color-warm-white) !important;
  font-family: "Ranchers", sans-serif !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  font-size: 1.8em !important;
  line-height: 1.2 !important;
}

._error-inner {
  color: var(--color-warm-white) !important;
}

.input-wrap input {
  width: 100%;
}

.wpcf7-response-output,
.wpcf7-not-valid-tip {
  color: var(--color-warm-white) !important;
}

.input-wrap input::-webkit-input-placeholder,
.input-wrap textarea::-webkit-input-placeholder {
  color: rgba(18, 18, 15, 0.5);
}

.input-wrap input::-moz-placeholder,
.input-wrap textarea::-moz-placeholder {
  color: rgba(18, 18, 15, 0.5);
}

.input-wrap input:-ms-input-placeholder,
.input-wrap textarea:-ms-input-placeholder {
  color: rgba(18, 18, 15, 0.5);
}

.input-wrap input::-ms-input-placeholder,
.input-wrap textarea::-ms-input-placeholder {
  color: rgba(18, 18, 15, 0.5);
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: rgba(18, 18, 15, 0.5);
}

.input-wrap textarea {
  height: auto;
  resize: vertical;
  padding: 0.8em 1em;
}

.input-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5em;
}

label {
  font-size: 1.2em;
  line-height: 1;
  color: var(--color-black);
  font-weight: 600;
}

.input-box {
  margin-bottom: 1.5em;
}

.input-btn {
  position: relative;
}

.input-btn button {
  width: 100%;
  outline: none;
  border: 0;
}

.input-btn button .m-btn-text {
  padding: 0;
}

.wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-btn .s-btn {
  width: 100%;
  outline: none;
  border: 0;
}

.wpcf7-response-output {
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0.46883em;
  padding: 1.2em 1em !important;
  text-align: center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--color-warm-white) inset;
}

@media only screen and (max-width: 991px) {
  .contact__text,
  .contact__form {
    width: 100%;
  }

  .contact__text :where(h1, h2, h3, h4, h5, h6),
  .contact__text p {
    max-width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .contact__form > h6 img {
    width: 2.2em;
    height: 2.2em;
  }

  .contact__form > h6 {
    gap: 0.7em;
    font-size: 1.5em;
  }

  .contact__form {
    padding: 2em 12px;
  }

  .input-wrap input {
    width: 100%;
  }

  .input-box {
    margin-bottom: 1.2em;
  }
}

.link-tree__links-form {
  background-color: var(--color-red);
  border-radius: 1.0315em;
  padding: 2em 1em;
  border: none;
  box-shadow: none;
}

.link-tree__links-form h6,
.link-tree__links-form p {
  color: var(--color-warm-white);
}
