.checkbox {
  user-select: none;
}
.checkbox__label {
  font-family: var(--font-family-primary);
  font-size: 1.2rem;
  color: var(--secondary-text-color);
  font-weight: 400;
  line-height: 1.47rem;
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 1.2rem;
  width: 31.6rem;
  margin-bottom: 0.4rem;
  cursor: pointer;
}
@media screen and (max-width: 450px) {
.checkbox__label {
    width: 34.3rem;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}
}
.checkbox__label._left-content {
  flex-direction: row-reverse;
}
.checkbox__input {
  -webkit-appearance: none;
  display: flex;
  align-items: end;
  justify-content: space-around;
  min-width: 1.6rem;
  height: 1.6rem;
  margin: 0.9rem 0;
  border-radius: 0.3rem;
  border: 0.1rem solid var(--text-color-secondry);
  background-color: var(--checkbox-bg);
  transition: 0.3s ease-in-out;
  transition-property: border-color, background-color;
}
.checkbox__input::before {
  content: "";
  width: 1.2rem;
  height: 0.9rem;
  padding-bottom: 0.1rem;
  transform: scale(0);
  background-image: url("/icons/form/landing-checkmark.svg");
  background-repeat: no-repeat;
}
.checkbox__input:hover {
  border-color: var(--checkbox-bg-hover);
  background-color: var(--checkbox-bg-hover);
  cursor: pointer;
}
.checkbox__input:checked::before {
  transform: scale(1);
}
.checkbox__input:not(:checked) {
  background-color: var(--checkbox-bg);
}
.checkbox__input._border {
  border: 0.1rem solid var(--checkbox-border);
}
.checkbox__link {
  font-family: var(--font-family-primary);
  font-size: 1.2rem;
  color: var(--base-blue);
  font-weight: 700;
  line-height: 1.47rem;
}
.checkbox__content {
  max-width: 30rem;
  letter-spacing: 0.1px;
}.label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-family-primary);
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
  line-height: 1.5;
  transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}.lach-input {
  position: relative;
  width: 100%;
}
.lach-input__label {
  position: absolute;
  left: 1.2rem;
  top: 1.3rem;
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  color: var(--base-light-gray);
  font-weight: 400;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lach-input__info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}
.lach-input__info-text {
  font-family: var(--font-family-primary);
  font-size: 1.2rem;
  color: var(--base-gray);
  font-weight: 300;
  line-height: 1.2;
}
.lach-input._with-icon .lach-input__input {
  padding-left: 5.6rem;
}
.lach-input._with-icon .lach-input__label {
  padding-left: 4.2rem;
}
.lach-input._input-with-button .lach-input__button-wr {
  position: absolute;
  right: 0;
}
.lach-input:not(._with-label):not(._error) .form__error {
  display: none;
}
.lach-input._error .lach-input__input-img path {
  stroke: var(--danger-color);
}
.lach-input._disabled .lach-input__label {
  color: var(--disabled-gray);
}
.lach-input._disabled .lach-input__input {
  border-color: var(--disabled-gray);
  color: var(--disabled-gray);
  background: none;
  cursor: not-allowed;
}
.lach-input._blue .lach-input__input {
  font-family: var(--font-family-primary);
  font-size: 1.2rem;
  color: var(--base-blue);
  font-weight: 500;
  line-height: 1.5;
}
.lach-input__input-wr {
  position: relative;
  display: flex;
  width: 100%;
  height: 4.4rem;
  overflow: hidden;
}
.lach-input__input-img-wr {
  position: relative;
}
.lach-input__input-img {
  position: absolute;
  top: 50%;
  left: 1.6rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
}
.lach-input__input-img svg,
.lach-input__input-img path {
  transition: all 0.3s ease;
}
.lach-input__input-img._button {
  cursor: pointer;
  user-select: none;
  left: -3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
.lach-input__input-img._button {
    right: 0.5rem;
}
}
@media screen and (min-width: 1025px) {
.lach-input__input-img._button {
    right: 1rem;
}
}
.lach-input__input-img._button._hide-password, .lach-input__input-img._button._show-password {
  cursor: pointer;
  user-select: none;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.lach-input__input-img._button._hide-password {
  background-image: url("/icons/form/password-hide.svg");
}
.lach-input__input-img._button._show-password {
  background-image: url("/icons/form/password-show.svg");
}
.lach-input__input-img._button._clear-icon {
  cursor: pointer;
  user-select: none;
  background-image: url("/icons/form/clear.svg");
}
.lach-input__input {
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  color: var(--base-gray);
  font-weight: 400;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  width: 100%;
  min-height: 4.4rem;
  padding: 2.5rem 2.8rem 0.65rem 1.1rem;
  outline: none;
  border: 0.1rem solid var(--input-border-gray);
  border-radius: var(--base-border-radius);
}
@media screen and (min-width: 451px) {
.lach-input__input {
    letter-spacing: 1.2px;
}
}
.lach-input__input[data-placeholder]:not(:focus)::placeholder {
  color: transparent;
}
.lach-input__input:-webkit-autofill {
  box-shadow: inset 0 0 0 5.2rem var(--white);
}
.lach-input__input:focus {
  border: solid 1px var(--light-blue);
  transition: all 0.5s linear;
}
.lach-input__input._password-input {
  padding-right: 4rem;
}
.lach-input__input._error {
  border: 0.1rem solid var(--danger-color);
}
.lach-input__input:focus + label, .lach-input__input:not(:placeholder-shown) + label {
  top: 0.6rem;
  font-family: var(--font-family-primary);
  font-size: 1.2rem;
  color: var(--base-light-gray);
  font-weight: 400;
  line-height: 1.3;
}
.lach-input__input::placeholder {
  color: var(--base-light-gray);
}
.lach-input__input::before {
  content: attr(data-placeholder);
  color: var(--base-gray);
  transition: all 0.3s;
}
.lach-input__input:focus::before, .lach-input__input:not(:placeholder-shown)::before {
  display: none;
}
.lach-input__tooltip-wrapper {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  cursor: pointer;
}
.lach-input .form__error {
  min-height: 1.2rem;
}
.el-popper {
  max-width: 70rem;
  word-wrap: break-word;
  white-space: normal;
}.contact-form {
  display: flex;
  justify-content: center;
  gap: 20.7rem;
  max-width: 92.8rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
.contact-form {
    justify-content: start;
    padding: 0;
}
}
.contact-form__input {
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  color: var(--black-almost);
  font-weight: 400;
  line-height: 2.1rem;
  width: 31.6rem !important;
}
.contact-form__input input {
  border: solid 1px var(--base-gray);
}
@media screen and (max-width: 450px) {
.contact-form__input {
    width: 34.3rem !important;
}
}
.contact-form__input:focus {
  border-color: var(--base-blue);
}
.contact-form__title {
  font-family: var(--font-family-primary);
  font-size: 4rem;
  font-weight: 600;
  line-height: 5rem;
}
@media screen and (max-width: 1024px) {
.contact-form__title {
    font-size: 3.6rem;
}
}
@media screen and (min-width: 1025px) {
.contact-form__title._mobile {
    display: none;
}
}
.contact-form__feedback {
  font-family: var(--font-family-primary);
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.8rem;
  margin-top: 2.4rem;
}
@media screen and (min-width: 1025px) {
.contact-form__feedback._mobile {
    display: none;
}
}
@media screen and (max-width: 1024px) {
.contact-form__feedback {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-top: 0.4rem;
    margin-bottom: 1.2rem;
}
}
.contact-form__arrow {
  margin-top: 0.6rem;
}
.contact-form__email {
  font-family: var(--font-family-primary);
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.8rem;
  margin-top: 16rem;
}
.contact-form__email._mobile {
  max-width: 22.8rem;
  width: 100%;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 1025px) {
.contact-form__email._mobile {
    display: none;
}
}
.contact-form__email-link {
  font-weight: 600;
  color: var(--c-green);
  text-decoration: none;
}
.contact-form__button {
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.95rem;
  width: 31.6rem;
  height: 5rem;
  border: none;
}
@media screen and (max-width: 450px) {
.contact-form__button {
    width: 34.3rem;
}
}
.contact-form__button:hover {
  background-color: var(--blue-hover) !important;
}
.contact-form__button._disabled {
  background-color: var(--disabled-blue-landing) !important;
}
.contact-form__checkbox {
  margin-bottom: 1.6rem;
  margin-top: 1.2rem;
  color: var(--black);
}
@media screen and (max-width: 1024px) {
.contact-form__checkbox {
    margin-bottom: 0;
    margin-top: 0;
}
}
.contact-form__input-group {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 1024px) {
.contact-form__input-group {
    margin-bottom: 0;
}
}
.contact-form__form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
.contact-form__form {
    align-items: start;
    gap: 1.6rem;
    padding-top: 0;
    padding-bottom: 0;
}
}
@media screen and (max-width: 1024px) {
.contact-form__text-content._desktop {
    display: none;
}
}
.contact-form .lach-input__input {
  padding: 0.8rem 3.8rem 0.8rem 1.6rem;
}