* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "inter-variable", sans-serif;
}

body.lt-page * {
  font-family: "inter-variable", sans-serif;
}

/* Link Tree */
.lt-hero-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lt-flex {
  display: flex;
  flex-wrap: wrap;
}

.lt-container {
  width: 100%;
  max-width: 1440px;
  padding: 0 32px;
  margin: 0 auto;
}

.lt-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 32px 0;
  transition: all 0.3s linear;
}

.lt-header.active .logo-light,
.lt-header .logo-dark {
  display: none;
}

.lt-header.active {
  background-color: #FFFFFF;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

.lt-header .logo-light,
.lt-header.active .logo-dark {
  display: block;
}

.lt-header .lt-inner {
  align-items: center;
  justify-content: space-between;
}

.lt-header-socials {
  display: inline-flex;
}

.lt-header-socials ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 40px;
  gap: 24px;
  background: #FFFFFF;
  border-radius: 32px;
  list-style: none;
  margin: 0;
}

/* lt-hero */
.lt-hero {
  position: relative;
  border-radius: 0px 0px 32px 32px;
  overflow: hidden;
}

.lt-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.lt-hero-title {
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  text-transform: capitalize;
  color: #FFFFFF;
  position: relative;
  padding: 0 8px;
}

.lt-hero-title span {
  position: relative;
  z-index: 1;
}

.lt-hero-desc {
  margin: 0;
}

.lt-hero-content {
  position: relative;
  z-index: 1;
  padding: 308px 0 80px;
}

.lt-hero-logos {
  justify-content: flex-end;
}

.lt-hero-logos .lt-inner {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 24px;
  gap: 32px;
  width: 668px;
  background: #FFFFFF;
  border-radius: 32px;
}

.lt-hero-logos ul {
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 40px;
}

.lt-hero-logos li {
  display: flex;
}

.lt-hero-logos li a {
  display: flex;
}

.lt-hero-desc {
  font-weight: 300;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.04em;
  color: #1F2D57;
}

/* lt-feature */
.lt-feature {
  margin: 40px 0;
  padding: 80px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lt-feature-box {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.lt-feature-title {
  font-weight: 700;
  font-size: 72px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  color: #1F2D57;
  margin: 0;
  padding: 0 0 0 8px;
}

.lt-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 32px;
  gap: 8px;
  background: #FF3E8E;
  border-radius: 16px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  transition: all 0.3s ease;
  max-height: 34px;
}

.lt-btn:hover {
  background-color: #1F2D57;
  color: #FFFFFF;
}

.lt-btn:hover path {
  fill: #FFFFFF;
}

.lt-btn-icon {
  display: flex;
}

/* lt-quote */
.lt-quote {
  padding: 40px 0 80px;
}

.lt-quote p {
  font-weight: 700;
  font-size: 96px;
  line-height: 1.1;
  letter-spacing: normal;
  text-transform: capitalize;
  color: #1F2D57;
  margin: 0;
  letter-spacing: -0.04em;
}

.lt-quote .lt-container {
  max-width: 1204px;
}

.lt-line {
  position: relative;
  display: inline-block;
}

.lt-line *:not(::before) {
  position: relative;
}

.lt-line::before {
  content: '';
  display: block;
  position: absolute;
  height: 48px;
  background: #F3E502;
  border-radius: 8px;
  bottom: 12px;
  left: 8px;
  right: -10px;
  z-index: -1;
}

.lt-line-blue::before {
  background-color: #00D7D9;
  bottom: 1px;
  left: -2px;
  right: 2px;
  z-index: -1;
}

.lt-line-pink::before {
  left: 0;
  background: #FF3E8E;
}

.lt-feature-title .lt-line::before {
  bottom: 8px;
  left: -5px;
  right: -5px;
}

.lt-hero-title .lt-line::before {
  height: 43px;
  left: -8px;
  bottom: 7px;
  right: -10px;
}

.ro-page .lt-container {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hide-desk {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .lt-quote p {
    font-size: 85px;
  }
}

@media (max-width: 767px) {
  .hide-mob {
    display: none !important;
  }

  .lt-line::before {
    bottom: 2px;
    left: 0px;
    right: -5px;
  }

  .lt-hero-title .lt-line::before {
    height: 43px;
    left: -3px;
    bottom: -2px;
    right: -8px;
  }

  .lt-quote p {
    font-size: 64px;
    line-height: 1.095;
    padding-right: 5px;
  }

  .lt-container {
    padding: 0 16px;
  }

  .lt-quote .lt-container {
    padding: 0 16px;
  }

  .lt-header-socials ul {
    background-color: transparent;
    padding: 0;
    gap: 18px;
    margin-top: -3px;
  }

  .lt-header-socials img {
    /*     filter: invert(1) grayscale(1) brightness(2); */
    max-height: 24px;
  }

  .lt-header {
    padding: 24px 0;
  }

  .lt-hero-content {
    padding: 113px 0 40px;
  }

  .lt-hero-title {
    font-size: 64px;
  }

  .lt-hero-title::before {
    width: 295px;
    height: 43px;
    left: 0;
    top: 28px;
    background: #FF3E8E;
    border-radius: 8px;
  }

  .lt-hero-desc {
    font-size: 18px;
  }

  .lt-hero-logos ul {
    justify-content: center;
  }

  .lt-hero-logos .lt-inner {
    gap: 32px;
    width: 100%;
  }

  .lt-hero {
    border-radius: 0px 0px 16px 16px;
  }

  .lt-feature-title {
    padding: 0;
    text-align: center;
    font-size: 48px;
    margin: 0 0 32px;
  }

  .lt-feature .lt-btn {
    width: 100%;
  }

  .lt-feature-title .lt-line::before {
    bottom: 1px;
    left: -5px;
    right: -5px;
    height: 32px;
  }

  .lt-feature {
    margin: 40px 0 0;
  }

  .lt-quote {
    padding: 37px 0 80px;
  }

  .lt-quote .lt-line {
    max-width: 343px;
  }

  .lt-line-blue::before {
    left: 0px;
    right: unset;
    width: 227px;
  }

  .lt-quote .lt-line-blue {
    width: 100%;
    display: block;
  }

  .lt-quote .lt-line.lt-line-md-down::before {
    bottom: -12px;
    left: 0;
    width: 295px;
  }

  .lt-feature {
    padding: 80px 0 79px;
  }
}

/* End Link Tree */

/* Reach Out */
.ro-hero {
  padding: 178px 0 80px;
  border-radius: 0px 0px 32px 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ro-hero h1 {
  letter-spacing: -0.04em;
  text-transform: capitalize;
  color: #FFFFFF;
  padding: 0 8px;
  margin: 0 0 24px;
}

.ro-hero h1 .lt-line::before {
  bottom: 7px;
  left: 0;
  right: -15px;
  height: 43px;
}

.ro-hero-form {
  display: flex;
  justify-content: flex-end;
}

.ro-hero-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 24px;
  gap: 32px;
  max-width: 668px;
  background: #FFFFFF;
  border-radius: 32px;
}

.lt-hero-desc p {
  margin: 0;
  font-weight: 300;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.04em;
  color: #1F2D57;
  margin: 0 0 8px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px 24px;
}

.form-col label {
  display: block;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.04em;
  color: #1F2D57;
  margin: 0 0 8px;
}

.ro-hero-box form {
  margin: 32px 0 0;
}

.form-col {
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
}

.form-col-50 {
  width: 50%;
}

.form-col input {
  width: 100%;
  padding: 8px 16px;
  height: 38px;
  background: #FFFFFF;
  border: 1px solid #1F2D57;
  border-radius: 16px;
  outline: none;
}

.form-col textarea {
  padding: 8px 16px;
  height: 96px;
  background: #FFFFFF;
  border: 1px solid #1F2D57;
  border-radius: 16px;
  width: 100%;
  outline: none;
}

.form-col input:focus,
.form-col textarea:focus {
  border-color: #FF3E8E;
}

.form-footer input {
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  padding: 8px 58px 8px 32px;
  height: 34px;
  background: #FF3E8E;
  border-radius: 16px;
  border: none;
  outline: none;
  background-image: url(../images/btn-arrow.svg);
  background-position: top 11px right 32px;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  cursor: pointer;
}

.form-footer input:hover {
  background-color: #1F2D57;
  color: #FFFFFF;
}

.form-footer {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  letter-spacing: 0.04em;
  margin: 10px 0 0;

}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  margin: 10px 0 0;
  border: none;
  padding: 0;
  text-align: right;
  font-size: 14px;
}

.ro-quote {
  padding: 80px 0;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.ltr-animation {
  opacity: 0;
  transform: translate(-20px, 0);
  transition: all 0.5s ease-in-out;
}

.ltr-animation.completed {
  opacity: 1;
  transform: translate(0px, 0px);
}

@media (max-width: 767px) {
  .ro-hero {
    border-radius: 0px 0px 16px 16px;
    padding: 113px 0 40px;
  }

  .ro-hero h1 {
    margin: 0 0 26px;
  }

  .ro-hero h1 .lt-line::before {
    bottom: 0px;
    left: -3px;
    right: -8px;
    height: 43px;
  }

  .lt-hero-desc p {
    font-size: 18px;
  }

  .form-col-50 {
    width: 100%;
  }

  .form-row {
    gap: 22px;
  }

  .form-col label {
    font-size: 18px;
  }

  .form-footer input {
    width: 100%;
    background-position: top 10px right 76px;
  }

  .ro-quote {
    padding: 37px 0 40px;
  }

  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output {
    text-align: center;
  }
}