@font-face {
  font-family: Poppins;
  font-display: swap;
  src: url(../fonts/Poppins-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal
}
html {
  box-sizing: border-box
}
*,
*::after,
*::before {
  box-sizing: inherit
}
a {
  color: inherit;
  text-decoration: none
}
img {
  max-width: 100%
}
body {
  font-family: Poppins,sans-serif
}
.btn {
  cursor: pointer;
  background-color: rgba(0,0,0,0);
  border: none;
  border-radius: 0;
  padding: 0;
  color: inherit
}
.wrapper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh
}
.btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1rem 1.6rem;
  border: 1px solid hsla(0,0%,100%,.4);
  border-radius: 100rem;
  color: #fff;
  background: linear-gradient(to right bottom,#3f48bf,#3f9fbf);
  font-size: 1.4rem;
  font-family: inherit;
  letter-spacing: .2rem;
  transition: .2s;
  cursor: pointer;
  font-size: 16px;
  z-index: 1
}
.btn-main:focus,
.btn-main:hover {
  border-color: hsla(0,0%,100%,.6);
  -webkit-transform: translateY(-.2rem);
  transform: translateY(-.2rem)
}
.btn-main::after {
  position: absolute;
  content: "";
  background-color: hsla(0,0%,100%,.5);
  filter: blur(10px);
  width: 20px;
  height: 160px;
  -webkit-transform: rotate(62deg);
  transform: rotate(62deg);
  -webkit-animation: tickerButton 3s linear infinite;
  animation: tickerButton 3s linear infinite;
  z-index: -1
}
@-webkit-keyframes tickerButton {
  0% {
    left: -200px
  }
  50% {
    left: 450px
  }
  100% {
    left: 450px
  }
}
@keyframes tickerButton {
  0% {
    left: -200px
  }
  50% {
    left: 450px
  }
  100% {
    left: 450px
  }
}
.list {
  padding-left: 0;
  margin: 0;
  list-style: none
}
.modal {
  --bg-overlay: var(--cod)
}
.modal.open .modal__overlay,
.modal.open .modal__window {
  opacity: 1;
  z-index: 1000
}
.modal.open .modal__overlay {
  background-color: rgba(30,30,30,.7);
  overflow-y: auto
}
.modal.open .modal__window {
  -webkit-transform: translateY(0);
  transform: translateY(0)
}
.modal.hide .modal__overlay,
.modal.hide .modal__window {
  z-index: 1000
}
.modal.hide .modal__overlay {
  background-color: rgba(30,30,30,0)
}
.modal.hide .modal__window {
  -webkit-transform: translateY(-1000px);
  transform: translateY(-1000px)
}
.modal__overlay,
.modal__window {
  opacity: 0;
  z-index: -10
}
.modal__overlay {
  position: fixed;
  display: flex;
  justify-content: center;
  overflow-y: auto;
  inset: 0;
  background-color: var(--bg-overlay);
  transition: background-color .5s ease
}
.modal__overlay::-webkit-scrollbar {
  height: 0;
  width: 0;
  display: none
}
.modal__window {
  position: relative;
  box-sizing: border-box;
  border-radius: 16px;
  padding: 52px;
  -webkit-transform: translateY(-1000px);
  transform: translateY(-1000px);
  opacity: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
  max-width: 500px;
  width: 100%;
  margin-top: 50px;
  transition: opacity .5s ease,-webkit-transform .5s ease;
  transition: transform .5s ease,opacity .5s ease;
  transition: transform .5s ease,opacity .5s ease,-webkit-transform .5s ease
}
.modal__window * {
  box-sizing: inherit
}
.modal__title {
  font-weight: 400;
  font-size: 24px;
  margin: 0 auto 20px auto;
  max-width: 450px;
  text-align: center
}
.modal__title span {
      font-weight: 700;
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  transition: opacity .2s ease
}
.modal__close-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%
}
.modal__close-wrapper span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 10px
}
.modal__close-wrapper span:first-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}
.modal__close-wrapper span:last-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}
.modal__form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  gap: 15px
}
.modal__form-btn::after {
  height: 300px;
  -webkit-animation: tickerButtonModal 4s linear infinite;
  animation: tickerButtonModal 4s linear infinite
}
.modal__form-policy {
  display: flex;
  gap: 15px
}
.modal__input-policy {
  width: 20px;
  height: 20px
}
.modal__policy-label {
  font-size: 16px
}
.modal__policy-label a {
  color: #454945
}
@-webkit-keyframes tickerButtonModal {
  0% {
    left: -200px
  }
  20% {
    left: 450px
  }
  100% {
    left: 450px
  }
}
@keyframes tickerButtonModal {
  0% {
    left: -200px
  }
  20% {
    left: 450px
  }
  100% {
    left: 450px
  }
}
.input {
  border: 1px solid rgba(22,27,23,.1);
  border-radius: 12px;
  min-height: 50px;
  outline: 0;
  padding: 5px 20px;
  width: 100%;
  background-color: #fff;
  font-size: 16px
}
.input--textarea {
  resize: none;
  min-height: 120px;
  padding-top: 15px;
  padding-bottom: 15px
}
@media (max-width:1109px) {
  .modal__window {
    padding: 35px
  }
}
@media (max-width:743px) {
  .modal__window {
    padding: 40px 24px 24px 24px
  }
}
@media (max-width:576px) {
  .modal__window {
    max-width: calc(100% - 32px)!important
  }
}
@media (max-width:479px) {
  .modal__close {
    top: 16px;
    right: 16px
  }
}
@media (any-hover:hover) {
  .modal__close:hover {
    opacity: .6
  }
  .modal .modal__policy-label a:hover {
    text-decoration: underline
  }
}

.thank {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.thank__title {
  text-align: center;
  margin: 0px 0px 20px 0px;
  font-size: 54px;
}
.thank__content {
  margin: 0px 0px 15px 0px;
  font-size: 16px;
}
@media (max-width:743px) {
  .thank__title {
    font-size: 30px;
  }
}
.main {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 0 15px;
}