@font-face {
  font-family: "Onest2";
  src: url("../fonts/Onest-Regular.woff");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest2";
  src: url("../fonts/Onest-Medium.woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Onest2";
  src: url("../fonts/Onest-Bold.woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "AlethiaNext";
  src: url("../fonts/AlethiaNext-Light.woff2");
  font-style: normal;
  font-weight: 350;
  font-display: swap;
}

a {
  /*color: unset;*/
  /*text-decoration: none;*/
}

html {
  width: 100%;
}

.catcher {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 100%;
  box-sizing: border-box;
  font-family: "Onest2", sans-serif;
  color: #3C4045;
}
.catcher__underlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  -webkit-animation: fadein 0.5s;
          animation: fadein 0.5s;
}
.catcher__block {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
}
.catcher__content {
  position: relative;
  width: 100%;
}
.catcher__tag {
  border: 1px solid #E8E8E8;
  padding: 8px 18px;
  font-size: 22px;
  font-weight: 500;
  line-height: 110%;
  color: #FFF5ED;
}
.catcher__tag:before {
  display: flex;
  content: "";
}
.catcher__close {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #E8E8E8;
}
.catcher__close:before {
  content: "";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  width: 26px;
  height: 26px;
  background: url(../images/icons.svg) -15px -1px no-repeat;
  background-size: auto 28px;
}
.catcher__close:hover:before {
  width: 26px;
  height: 26px;
  background: url(../images/icons.svg) -43px -1px no-repeat;
  background-size: auto 28px;
}
.catcher__bg {
  height: 290px;
  background: #1D4C4F;
  display: flex;
  align-items: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 17px;
}
.catcher__top {
  position: relative;
}
.catcher__image-wrapper {
  margin-bottom: -10px;
  width: 100%;
  position: absolute;
  bottom: 0;
}
.catcher__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 400px;
}
.catcher__wrapper {
  background: #E8E8E8;
  display: flex;
  flex-direction: column;
  padding: 36px 50px;
  position: relative;
}
.catcher__title {
  font-family: "AlethiaNext", sans-serif;
  color: #222222;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 20px;
  text-align: center;
}
.catcher__action {
  display: flex;
  flex-wrap: wrap;
}
.catcher__input-label {
  width: calc(50% - 8px);
  margin-right: 12px;
  flex-shrink: 0;
  display: flex;
}
.catcher__input {
  outline: none;
  padding-left: 20px;
  width: 100%;
  height: 50px;
  border-radius: 30px;
  background: #FFFFFF;
  border: 1px solid #DADADA;
  font-family: "Onest2", sans-serif;
}
.catcher__input.-error {
  border: 1px solid #D22C2B;
}
.catcher__btn {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  padding: 3px 30px;
  border: none;
}
.catcher__btn_main {
  background: #D22C2B;
  border-radius: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFF;
  height: 50px;
  width: 100%;
}
.catcher__btn_main:hover {
  background: #ED4F4E;
}
.catcher__button {
  width: calc(50% - 8px);
  font-family: "Onest2", sans-serif;
  z-index: 2;
  display: flex;
}
.catcher__checkbox {
  display: block;
  margin: 10px 0 0;
}
.catcher__checkbox.-error .catcher__checkbox-wrapper:before {
  border: 1px solid #D22C2B;
}
.catcher__check {
  z-index: -1;
  opacity: 0;
  position: absolute;
}
.catcher__check:checked + .catcher__checkbox-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 7px;
  width: 12px;
  height: 9px;
  background: url(../images/icons.svg) -1px -1px no-repeat;
  background-size: auto 28px;
}
.catcher__checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
}
.catcher__checkbox-wrapper:before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border: 1px solid #CECCCA;
  margin-right: 12px;
  cursor: pointer;
  flex-shrink: 0;
}
.catcher__text {
  color: rgba(38, 42, 44, 0.5);
  font-size: 14px;
  line-height: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: initial;
}
.catcher__data {
  color: #222222;
  margin-left: 3px;
  text-decoration: underline;
}

@font-face {
  font-family: "Onest2";
  src: url("../fonts/Onest-Regular.woff");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest2";
  src: url("../fonts/Onest-Medium.woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Onest2";
  src: url("../fonts/Onest-Bold.woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "AlethiaNext";
  src: url("../fonts/AlethiaNext-Light.woff2");
  font-style: normal;
  font-weight: 350;
  font-display: swap;
}