:root {
  --main-color: #fff;
  --second-color: #cbcbcb;
  --black-color: #000;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  color: inherit;
  text-decoration: none;
}

html {
  width: 100%;
  height: 100%;
  font-size: 10px;
  background: #1b1b1b;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

body {
  position: relative;
  z-index: -2;
  font-family: system-ui, sans-serif;
  background: url("../images/bg2.webp") right/cover no-repeat;
  height: 100vh;
  font-size: 1.6rem;
  color: var(--main-color);
}

.page {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
}

.main {
  width: 100%;
  height: 100%;
}

/* main section */
.main__section {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

.main__screen {
  width: 100%;
  margin: 0 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* left */
.left {
  width: 80%;
  height: 50vh;
}

.logo {
  width: 208px;
  height: 51px;
  margin: 0 0 5vh 0;
}

.main__text {
  position: relative;
  height: 220px;
  margin: 0 0 0 0;
}

.title {
  max-width: 664px;
  font-family: "Unbounded";
  font-size: 5rem;
  font-weight: 500;
}

.step {
  display: inline-block;
  position: absolute;
  top: 0;
  left: -100px;
  color: #414141;
  font-family: "Unbounded";
  font-size: 5rem;
  font-weight: 500;
}

.subtitle {
  margin: 15px 0 0;
  color: var(--second-color);
  font-family: "Nunito Sans";
  font-size: 2rem;
  font-weight: 400;
}

.subtitle > br {
  display: none;
}

.download__btn {
  margin: 0 0 0 0;
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 5px;
  width: 254px;
  height: 66px;
  border-radius: 33px;
  border: 1.5px solid var(--main-color);
  background: transparent;
}

.download__btn-text {
  color: var(--main-color);
  font-family: "Nunito Sans";
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 0 28px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.download__btn-arrow {
  position: absolute;
  top: 50%;
  right: 5px;
  z-index: -1;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 48px;
  height: 48px;
  padding: 13px 11px 13px 16px;
  background: var(--main-color);
  border-radius: 122px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transition: width 0.4s, height 0.4s;
  transition: width 0.4s, height 0.4s;
}

.download__btn:hover .download__btn-text {
  color: var(--black-color);
}

.download__btn:hover .download__btn-arrow {
  width: 95%;
}

/* right */
.right {
  width: 30%;
  height: 20vh;
  position: relative;
}

.phone__img {
  height: min(540px, 80vh);
  position: absolute;
  top: min(-110px, -13em);
  right: 0;
  z-index: -1;
  border-radius: 20px;
}

.phone__border {
  width: min(260px, 37vh);
  height: min(530px, 76vh);
  position: absolute;
  top: min(-110px, -11em);
  right: 0;
  z-index: -2;
  border-radius: 50px;
  border: 3px solid var(--main-color);
}

/* arrow btn */
.arrow {
  margin: 100px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.arrow__btn {
  cursor: pointer;
  width: 42px;
  height: 79px;
  background: none;
  border: 2px solid #d8d8d8;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.arrow__btn:hover {
  opacity: 0.8;
}

.arrow__btn-img {
  width: 42px;
  fill: var(--second-color);
}

/* footer */
.footer {
  display: block;
  width: 100%;
  padding: 45px 0;
  background: var(--black-color);
}

.footer__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__links,
.footer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.footer__links-link_img {
  width: 151px;
  height: 39px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.footer__links-email {
  color: #cbcbcb;
  font-family: "Nunito Sans";
  font-size: 1.6rem;
  font-weight: 400;
}

.footer__policy-link {
  color: var(--second-color);
  font-family: "Nunito Sans";
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration-line: underline;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.footer__links-link_img:hover,
.footer__policy-link:hover {
  opacity: 0.8;
}

/* MEDIA */
@media (max-width: 1200px) {
  .phone__img {
    right: -85px;
  }
  .phone__border {
    right: -85px;
  }
}
@media (max-width: 900px) {
  .step {
    font-size: 3.2rem;
    left: -60px;
  }
  .title {
    font-size: 3.2rem;
  }
  .subtitle {
    font-size: 1.6rem;
  }
  .download__btn {
    width: 189px;
    height: 49px;
  }
  .download__btn-text {
    font-size: 1.6rem;
  }
  .download__btn-arrow {
    width: 35px;
    height: 35px;
    padding: 0 3px 0 0;
  }
  .phone__img {
    height: 450px;
  }
  .phone__border {
    width: 210px;
    height: 435px;
  }
  .arrow__btn {
    width: 30px;
    height: 55px;
  }
}
@media (max-width: 768px) {
  html {
    margin: 0;
  }
  .main__section {
    padding: 30px 0 0 0;
    top: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .container {
    padding: 0 20px;
  }
  .main__screen {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 35px;
  }
  .left,
  .right {
    width: 100%;
  }
  .left {
    padding: 0 0 0 20px;
  }
  .main__text {
    height: 150px;
  }
  .title {
    max-width: 100%;
  }
  .subtitle > br {
    display: block;
  }
  .download__btn-arrow {
    right: 3px;
  }
  .download__btn:hover .download__btn-arrow {
    height: 90%;
  }
  .phone__img {
    height: 360px;
    right: 10px;
  }
  .phone__border {
    width: 166px;
    height: 354px;
    right: 10px;
    border-radius: 30px;
  }
  .arrow {
    margin: 270px 0 0 40px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .footer {
    padding: 20px 0;
  }
  .footer__links,
  .footer__policy {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer__links-link_img {
    width: 68px;
    height: 22px;
  }
  .footer__links-email {
    font-size: 1.2rem;
  }
  .footer__policy-link {
    font-size: 1.2rem;
  }
}
@media (max-width: 430px) {
  html {
    background: var(--black-color);
  }
  body {
    background: url(../images/bg-mob.webp) 0% -5em / cover no-repeat;
    height: 90vh;
    overflow: hidden;
  }
  .logo {
    width: 117px;
    height: 28px;
    margin: 0 0 20px 0;
  }
  .main__text {
    height: 145px;
    margin: 0;
  }
  .step {
    font-size: 2.6rem;
    left: -60px;
  }
  .title {
    font-size: 2.2rem;
  }
  .subtitle {
    font-size: 1.4rem;
  }
  .download__btn {
    width: 143px;
    height: 37px;
    margin: 0;
  }
  .download__btn-text {
    font-size: 1.2rem;
    margin: 0 0 0 18px;
  }
  .download__btn-arrow {
    width: 27px;
    height: 27px;
    padding: 0 8px 0 0;
  }
  .download__btn-arrow svg {
    width: 11px;
    height: 11px;
  }
  .phone__img {
    height: 30vh;
    top: -9em;
  }
  .phone__border {
    width: 14vh;
    height: 30vh;
    top: -8em;
    border-radius: 20px;
  }
}
@media (max-width: 360px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
} /*# sourceMappingURL=style.css.map */
