#call {
  padding: 32px 0 40px;
  color: black;
}
#call .call__wrapper {
  background: #fff;
  margin: 0 -20px;
}
#call .call__info {
  padding: 24px 20px 36px;
}
#call .call__image {
  display: none;
}
#call .call__notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 28px 0 40px;
}
#call .call__notice-badge {
  position: relative;
  margin-right: 16px;
}
#call .call__notice-badge i {
  font-size: 52px;
  color: var(--primary);
}
#call .call__notice-badge span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  font-family: "Montserrat-Medium";
  font-size: 18px;
  line-height: normal;
  color: #fff;
  z-index: 1;
}
#call .call__notice-message b {
  color: var(--primary);
}
#call .call__form-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin-bottom: 24px;
}
#call .call__form-input {
  position: relative;
  background-color: #fff;
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #d0d8dd;
  border-radius: 6px;
  font-size: 16px;
  color: #000;
  line-height: 1;
}
#call ._error .call__form-input:not(:focus),
#call ._error .call__form-input:not(:focus-visible),
#call ._error .call__form-input {
  border-color: var(--danger);
  -webkit-box-shadow: 0 0 0 1px var(--danger);
  box-shadow: 0 0 0 1px var(--danger);
}
#call .call__form-input:focus-visible,
#call .call__form-input:focus {
  border-color: #6e8d9f;
  -webkit-box-shadow: 0 0 0 1px #6e8d9f;
  box-shadow: 0 0 0 1px #6e8d9f;
  outline: none;
}
#call .call__form-box--header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4px;
}
#call .call__form-label {
  margin: 0;
  padding-right: 16px;
  font-family: "Montserrat-Bold";
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}
#call ._error .call__form-label {
  color: var(--danger);
}
#call .call__form-error {
  display: none;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  font-family: "Montserrat-Medium";
  font-size: 0.85rem;
  color: var(--danger);
  line-height: 0.85rem;
  text-align: right;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
#call ._error .call__form-error {
  display: block;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
#call .call__form-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#call .call__form-footer--personal {
  position: relative;

  max-width: 320px;
  margin-bottom: 32px;
  padding: 0 32px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#call .call__form-footer--checkbox {
  position: absolute;
  top: -9999px;
  left: -9999px;
  width: 1px;
  height: 1px;
  visibility: hidden;
}
#call .call__form-footer--title {
  font-size: 14px;
  line-height: 20px;
  color: #83818f;
  font-weight: 400;
  vertical-align: top;
}
#call .call__form-footer--title a {
  border-bottom: 1px solid;
}
#call .call__form-footer--icon {
  position: absolute;
  top: 3px;
  left: 0;

  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #d0d8dd;
  border-radius: 2px;
  cursor: pointer;
}
#call .call__form-footer--icon i {
  position: absolute;
  top: -5px;
  left: 2px;

  font-size: 20px;
  color: var(--primary);
  -webkit-transform: scale(0) translateX(-10px);
  -ms-transform: scale(0) translateX(-10px);
  transform: scale(0) translateX(-10px);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
#call .call__form-footer--checkbox:checked ~ .call__form-footer--icon i {
  -webkit-transform: scale(1) translateX(0);
  -ms-transform: scale(1) translateX(0);
  transform: scale(1) translateX(0);
}

@media screen and (min-width: 576px) {
  #call .call__form-footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #call .call__form-footer--personal {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  #call .call__wrapper {
    margin: 0;
  }
  #call .call__info {
    padding: 52px 8% 70px;
  }
  #call .call__form-section.call__form-section--two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #call .call__form-section.call__form-section--two > * {
    width: 50%;
  }
  #call .call__form-section.call__form-section--two > *:not(:first-child) {
    margin-left: 24px;
  }
  #call .call__form-box--name {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  #call .call__form-box--phone {
    max-width: 320px;
  }
}
@media screen and (min-width: 992px) {
  #call .call__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #call .call__image {
    background-color: var(--primary);

    position: relative;
    width: 35%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: block;
    min-height: 600px;
  }
  #call .call__image-inner {
    top: auto;
    min-height: 70%;
    max-height: 700px;
    background-size: contain;
  }
}
