@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:not([type=checkbox]):not([type=radio]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

ul[class],
ol[class] {
  list-style: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

body {
  font-family: "Montserrat", sans-serif;
}

html, body {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.home {
  padding: 150px 0;
  height: 100vh;
  position: relative;
}
.home:before {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 0;
  min-height: 980px;
  transform: translate(-50%, 0);
  background: url("../img/home-bg.svg") no-repeat;
  background-position: top;
  background-size: cover;
}
.home__wrap {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
}
.home__logo {
  margin-bottom: 25px;
}
.home__form {
  max-width: 360px;
  width: 100%;
  margin: 0 auto 45px auto;
  display: grid;
  grid-template-columns: 1fr;
}
.home__form p {
  color: #ffffff;
  font-weight: 600;
  font-size: 27px;
  line-height: 122%;
  margin: 0 auto 30px auto;
}
.home__form input {
  height: 55px;
  padding: 0 20px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  color: #646464;
  margin-bottom: 30px;
}
.home__form input:focus {
  outline: none;
}
.home__form input::placeholder {
  color: #CECECE;
}
.home__form button {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #4E207B;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  background: #FFFFFF;
}
.home__form button:focus {
  outline: none;
}
.home__text {
  color: #ffffff;
  text-align: center;
}
.home__text p {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 20px;
}
.home__text span {
  font-weight: 500;
  font-size: 27px;
}
.home__popup-open {
  display: flex;
  justify-content: space-between;
  max-width: 360px;
  margin: 0 auto 20px auto;
}
.home__popup-open a {
  display: block;
  cursor: pointer;
  color: #ffffff;
  font-weight: 500;
  font-size: 27px;
}

@media screen and (max-width: 540px) {
  .home {
    padding: 70px 0 0 0;
  }
  .home:before {
    min-height: 980px;
  }
  .home__logo {
    max-width: 340px;
    margin: 0 auto;
  }
  .home__logo svg {
    width: 100%;
  }
  .home__form {
    margin-bottom: 40px;
  }
  .home__popup-open a {
    font-size: 18px;
  }
}
.popup-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 35, 35, 0.8);
  backdrop-filter: blur(10px);
  opacity: 0;
  z-index: -100;
  transition: 0.1s;
}
.popup-success.show {
  z-index: 200;
  opacity: 1;
}
.popup-success__close {
  position: absolute;
  width: 34px;
  height: 34px;
  background: #FFFFFF;
  right: -17px;
  top: -17px;
  border-radius: 50%;
  cursor: pointer;
}
.popup-success__close:before, .popup-success__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: rgba(41, 45, 50, 0.5);
}
.popup-success__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup-success__close:after {
  transform: translate(-50%, -50%) rotate(135deg);
}
.popup-success__icon {
  margin-bottom: 10px;
}
.popup-success__text {
  text-align: center;
}
.popup-success__text h3 {
  margin-bottom: 10px;
  font-size: 24px;
}
.popup-success__body {
  position: absolute;
  max-width: 480px;
  width: 100%;
  padding: 30px;
  border-radius: 5px;
  background: #FFFFFF;
  box-shadow: 0px 0px 30px rgba(109, 109, 109, 0.25);
  left: 50%;
  transform: translateX(-50%);
  top: 30%;
  background: #FFFFFF;
}
.popup-success__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .popup-success__body {
    max-width: calc(100% - 30px);
  }
  .popup-success__close {
    max-width: calc(100% - 30px);
    right: -7px;
  }
}
.popup-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.popup-close:before, .popup-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.9);
}
.popup-close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup-close:after {
  transform: translate(-50%, -50%) rotate(135deg);
}

.popup-one {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 35, 35, 0.8);
  backdrop-filter: blur(10px);
  opacity: 0;
  z-index: -100;
  transition: 0.1s;
}
.popup-one.show {
  z-index: 200;
  opacity: 1;
}
.popup-one__icon {
  margin-bottom: 10px;
}
.popup-one__text {
  text-align: center;
}
.popup-one__text h3 {
  margin-bottom: 10px;
  font-size: 24px;
}
.popup-one__body {
  position: absolute;
  max-width: 980px;
  width: 100%;
  padding: 30px;
  border-radius: 5px;
  background: #FFFFFF;
  box-shadow: 0px 0px 30px rgba(109, 109, 109, 0.25);
  left: 50%;
  transform: translateX(-50%);
  top: 10%;
  background: #FFFFFF;
  height: 80vh;
  overflow-y: scroll;
}
.popup-one__wrap {
  display: flex;
  flex-direction: column;
}
.popup-one__wrap p {
  margin-bottom: 20px;
}
.popup-one__wrap h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.popup-one__wrap h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}
@media screen and (max-width: 560px) {
  .popup-one__body {
    overflow-x: hidden;
    padding: 20px 15px;
  }
}

/*# sourceMappingURL=style.css.map */
