@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Unbounded", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.screen8 form,
.button,
.wix-madefor-display,
.wix-madefor-display * {
  font-family: "Wix Madefor Display", sans-serif;
}

body {
  background: #181818;
}

.overflow-hidden {
  overflow: hidden;
}

.container {
  padding: 0 16px;
}

.button {
  display: block;
  font-size: 14px;
  border: 1px solid #D33225;
  background: transparent;
  color: #D33225;
  padding: 18px 50px;
  border-radius: 80px;
  transition: background .3s ease, color .3s ease;
  text-decoration: none;
  width: fit-content;
}

.button:hover {
  background: #D33225;
  color: #FFF;
}

.header {
  padding: 16px 0;
  position: relative;
  z-index: 1;
}

.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__left {
  display: flex;
  align-items: center;
}

.header__right {
  display: flex;
  align-items: center;
}

.header__nav {
  display: none;
}

.menu__nav a,
.header__nav a {
  color: #97948A;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color .3s ease;
}

.menu__nav a,
.header__nav a:hover {
  color: #FFF;
}

.header__contact {
  display: none;
}

.screen1 {
  position: relative;
  margin-top: -100px;
}

.screen1__desktop {
  display: none;
}

.screen1__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen1__content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 100px);
  z-index: 1;
  margin-top: 100px;
  padding-bottom: 50px;
}

.screen1__content .container {
  height: 100%;
}

.screen1__row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  height: 100%;
}

.screen1__title {
  color: #E8E3D4;
  font-size: 30px;
  font-weight: 700;
}

.screen1__subtitle {
  color: #97948A;
  font-size: 30px;
  font-weight: 500;
}

.screen1__text {
  color: #E8E3D4;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
}

.screen1__block {
  background-image: url('/images/screen1-block-bg.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 180px;
  height: 120px;
  padding-top: 50px;
  padding-left: 12px;
  padding-right: 12px;
  color: #E8E3D4;
  font-size: 6px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: justify;
  position: absolute;
  z-index: 1;
  bottom: 130px;
  right: 16px;
}

.socials {
  display: flex;
  gap: 4px;
  align-items: center;
}

.socials a {
  user-select: none;
  background: #D33225;
  border-radius: 50%;
  padding: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials a img {
  width: 100%;
}

.menu__mobile {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  background: #000;
  padding: 40px 16px;
  transform: translateX(100%);
  transition: transform .3s ease;
}

.menu__mobile.open {
  transform: none;
}

.menu__mobile .socials {
  margin-top: 16px;
}

.menu__mobile-close {
  display: flex;
  justify-content: flex-end;
}

.menu__mobile-close img {
  width: 30px;
  height: 30px;
}

.menu__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.screen2 {
  position: relative;
}

.screen2__bg {
  width: 100%;
}

.screen2__bg-desktop {
  display: none;
}

.screen2__content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding-top: 90px;
}

.screen2__title {
  color: #FFF;
  font-size: 30px;
  font-weight: 500;
}

.screen2__title span {
  font-weight: 900;
}

.screen2__block {
  margin-top: 10px;
  background: #B30606;
background: linear-gradient(102deg, rgba(179, 6, 6, 1) 0%, rgba(219, 0, 0, 1) 70%, rgba(255, 80, 5, 1) 100%);
  margin-right: 16px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 20px;
  margin-left: -20px;
}

.screen2__block-text {
  color: #FFF;
  font-size: 14px;
}

.screen2__block-quote {
  display: none;
  position: relative;
  color: #FFF;
  text-align: center;
}

.screen2__block-quote-title {
  font-size: 26px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #FFF;
  text-transform: uppercase;
}

.screen2__block-quote-text {
  font-size: 26px;
}

.screen2__block-quote-wrap {
  position: relative;
  box-shadow: 0 5px 12px rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(5px);
  padding: 40px;
  border-radius: 30px;
  z-index: 2;
}

.screen2__block-quote-wrap::before {
  content: '"';
  position: absolute;
  left: -10%;
  top: -50%;
  font-size: 250px;
  font-style: italic;
  color: #FFF;
}

.screen2__block-quote-wrap::after {
  content: '"';
  position: absolute;
  right: -10%;
  bottom: -50%;
  font-size: 250px;
  color: #FFF;
  transform: rotate(180deg);
  font-style: italic;
}

.screen2__block-quote::before {
  content: 'JESUS';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  color: rgba(0,0,0,0.2);
  font-size: 200px;
  z-index: 1;
}

.screen2__block-quote::after {
  content: 'JESUS';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -50%);
  color: rgba(0,0,0,0.2);
  font-size: 200px;
  z-index: 1;
}

.screen3 {
  background: #050504;
  color: #E8E3D4;
  overflow: hidden;
  padding: 45px 0;
}

.screen3__title {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 10px;
  position: relative;
}

.screen3__text {
  text-align: center;
  font-size: 18px;
}

.screen3__row {
  margin-top: 16px;
  display: grid;
  gap: 20px;
}

.screen3__item {
  border-radius: 20px;
  padding: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow: 0 5px 12px rgba(0,0,0,.25);
  background: rgba(0, 0, 0, 0.1);
}

.screen3__item-step {
  background-color: #E8E3D4;
  color: #000;
  border-radius: 70px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.screen3__item-title {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 28px;
  border-bottom: 1px solid #FFF;
  margin-bottom: 14px;
}

.screen3__item-text {
  font-size: 18px;
  font-weight: 500;
}

.screen4 {
  position: relative;
  color: #E8E3D4;
}

.screen4__content {
  padding: 34px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.screen4__row {
  display: grid;
  gap: 20px;
}

.screen4__bg {
  width: 100%;
}

.screen4__bg-desktop {
  display: none;
}

.screen4__title {
  color: #FFF;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.screen4__title span {
  color: #97948A;
}

.screen4__text {
  color: #D33225;
}

.screen4__button-desktop {
  display: none;
}

.screen4__list {
  border-left: 2px solid #E8E3D4;
  margin-bottom: 16px;
}

.screen4__item {
  background-color: rgba(232, 227, 212, .2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(232, 227, 212, .2);
  padding: 16px 10px;
  text-transform: uppercase;
}

.screen4__item:nth-of-type(:odd) {
  background-color: rgba(232, 227, 212, .3);
}

.screen4__number {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

.screen4__label {
  font-size: 20px;
  font-weight: 300;
}

.screen4__row .button {
  margin: 0 auto;
}

.screen5 {
  background: #000;
  color: #FFF;
  position: relative;
}

.screen5__content {
  position: relative;
  z-index: 2;
  padding-top: 148px;
  padding-bottom: 40px;
}

.screen5__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.screen5__title {
  color: #97948A;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 16px;
}

.screen5__title span {
  color: #FFF;
}

.screen5__row {
  display: grid;
  gap: 20px;
}

.screen5__text {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
}

.screen5__item {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
}

.screen6 {
  background: #000;
  color: #E8E3D4;
  position: relative;
  padding-bottom: 90px;
  padding-left: 16px;
  padding-right: 16px;
}

.screen6__block {
  padding: 24px 8px;
  background: #B30606;
  background: linear-gradient(102deg, rgba(179, 6, 6, 1) 0%, rgba(219, 0, 0, 1) 70%, rgba(255, 80, 5, 1) 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.screen6__block::after {
  content: 'JESUS';
  position: absolute;
  left: 50%;
  top: 85%;
  transform: translate(-50%, -50%);
  color: rgba(0, 0, 0, 0.2);
  font-size: 100px;
  z-index: 1;
}

.screen6__block::before {
  content: 'JESUS';
  position: absolute;
  left: 50%;
  top: 95%;
  transform: translate(-50%, -50%);
  color: rgba(0, 0, 0, 0.2);
  font-size: 100px;
  z-index: 1;
}

.screen6__title {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 500;
}

.screen6__title br:first-of-type {
  display: none;
}

.screen6__row {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.screen6__text {
  font-size: 12px;
  display: none;
}

.screen6__title span {
  color: #000;
}

.screen6__image {
  position: absolute;
  z-index: 3;
}

.screen6__image-mobile {
  right: 0;
  bottom: 0;
  width: 90%;
}

.screen6__image-desktop {
  display: none;
}

.screen6__items {
  display: grid;
  gap: 20px;
}

.screen6__item {
  backdrop-filter: blur(4px);
  border-radius: 30px;
  border: 1px solid #E8E3D4;
  background-color: rgba(211, 50, 37, .2);
  padding: 18px;
}

.screen6__item-title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.screen6__item-label {
  margin-bottom: 10px;
}

.screen6__item-text {
  font-size: 18px;
  font-weight: 500;
}

.screen7 {
  background: #000;
  position: relative;
  color: #97948A;
  padding-top: 16px;
  padding-bottom: 60px;
}

.screen7__image {
  position: absolute;
  top: 100%;
  right: 0;
  width: 50%;
  z-index: 1;
}

.screen7__title {
  color: #E8E3D4;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.screen7__title span {
  color: #D33225;
}

.screen7__items {
  display: grid;
  gap: 20px;
}

.screen7__item-button {
  border: 1px solid #97948A;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  color: #97948A;
  font-weight: 300;
  font-size: 20px;
  line-height: 20px;
  cursor: pointer;
}

.screen7__item-title {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.screen7__item-text {
  display: none;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 10px 0;
}

.screen7__item.open .screen7__item-text {
  display: block;
}

.screen8 {
  background: #000;
  color: #E8E3D4;
  padding: 44px 0;
}

.screen8__row {
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.screen8__title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.screen8__text {
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.screen8 form {
  display: grid;
  gap: 14px;
}

.screen8 form .button {
  width: 100%;
}

.screen8 form input,
.screen8 form textarea {
  appearance: none;
  border: none;
  outline: none;
  padding: 20px 30px;
  font-size: 12px;
  text-transform: uppercase;
  color: #FFF;
  background-color: rgba(232, 227, 212, .2);
  border-radius: 10px;
}

.screen8 form textarea {
  height: 120px;
  resize: none;
}

.screen8 form input::placeholder,
.screen8 form textarea::placeholder {
  color: #FFF;
}

.screen8__image {
  width: 100%;
}

.screen8__image-desktop {
  display: none;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__nav {
  display: none;
}

@media screen and (min-width: 1140px) {
  .container {
    padding: 0 40px;
  }

  .button {
    font-size: 18px;
  }

  .menu__mobile {
    display: none;
  }

  .screen1 {
    margin-top: -132px;
  }

  .screen1__content {
    margin-top: 132px;
    height: calc(100% - 132px);
  }

  .screen1__row {
    display: block;
    text-align: left;
  }

  .screen1__desktop {
    display: block;
  }

  .screen1__mobile {
    display: none;
  }

  .screen1__title {
    font-size: 64px;
    font-weight: 700;
  }

  .screen1__subtitle {
    font-size: 52px;
    font-weight: 500;
  }

  .screen1__text {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 40px;
  }

  .screen1__block {
    width: 440px;
    height: 270px;
    top: 140px;
    right: 40px;
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 135px;
  }

  a.js-mobile-menu-trigger {
    display: none;
  }

  .header {
    padding: 32px 0;
  }

  .header__left {
    gap: 220px;
  }

  .header__right {
    gap: 24px;
  }

  .header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .header__contact {
    display: block;
  }

  .socials {
    gap: 10px;
  }

  .socials a {
    width: 60px;
    height: 60px;
    padding: 15px;
  }

  .screen2__content {
    padding-top: 380px;
  }

  .screen2__bg-mobile {
    display: none;
  }

  .screen2__bg-desktop {
    display: block;
  }

  .screen2__title {
    font-size: 84px;
  }

  .screen2__block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 280px;
    overflow: hidden;
    margin-left: -40px;
    padding: 40px;
  }
  
  .screen2__block-quote {
    display: block;
  }

  .screen2__block-text {
    font-size: 24px;
    max-width: 800px;
  }

  .screen3 {
    padding: 56px 0;
  }

  .screen3__title {
    text-align: left;
    font-size: 84px;
  }

  .screen3__title::before {
    content: url('/images/screen3-bg.webp');
    position: absolute;
    z-index: 1;
    top: -105px;
    right: -77px;
  }

  .screen3__text {
    text-align: left;
    font-size: 24px;
  }

  .screen3__row {
    margin-top: 40px;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    z-index: 2;
  }

  .screen3__item-step {
    font-size: 20px;
  }

  .screen3__item-title {
    min-height: 80px;
    font-size: 24px;
  }

  .screen4__bg-mobile {
    display: none;
  }

  .screen4__bg-desktop {
    display: block;
  }

  .screen4__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 180px;
    height: 100%;
    align-items: center;
  }

  .screen4__content .container {
    height: 100%;
  }

  .screen4__title {
    font-size: 84px;
  }

  .screen4__text {
    font-size: 24px;
    max-width: 440px;
  }

  .screen4__button-mobile {
    display: none;
  }

  .screen4__button-desktop {
    display: block;
  }

  .screen4__row .button {
    margin-left: 0;
    margin-top: 16px;
  }

  .screen4__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .screen4__number {
    font-size: 84px;
  }

  .screen4__label {
    font-size: 22px;
    text-align: right;
  }

  .screen5__content {
    padding: 100px 0;
  }

  .screen5__image {
    top: 100px;
    width: auto;
    max-width: 1135px;
  }

  .screen5__title {
    font-size: 84px;
  }

  .screen5__row {
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-end;
  }

  .screen5__item {
    font-size: 24px;
  }
  
  .screen6__title br:first-of-type {
    display: block;
  }

  .screen6__image-mobile {
    display: none;
  }

  .screen6__image-desktop {
    display: block;
    left: 0;
    top: 0;
  }

  .screen6__block {
    padding: 70px 160px;
  }

  .screen6__row {
    grid-template-columns: 1fr 2fr;
    gap: 90px;
  }

  .screen6__title {
    font-size: 84px;
  }

  .screen6__text {
    text-transform: uppercase;
    display: block;
  }

  .screen6__items {
    grid-template-columns: repeat(3, 1fr);
  }

  .screen6__item {
    padding: 56px 18px;
  }

  .screen6__item-title {
    font-size: 24px;
  }

  .screen6__block::after,
  .screen6__block::before {
    font-size: 240px;
    right: 0;
    left: unset;
    transform: none;
  }

  .screen6__block::after {
    top: 0%;
  }

  .screen6__block::before {
    top: 50%;
  }

  .screen7 {
    padding: 120px 0;
  }

  .screen7__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 2;
  }

  .screen7__image {
    top: 0;
  }

  .screen7__title {
    font-size: 84px;
    text-align: left;
  }

  .screen7__items {
    gap: 30px;
  }

  .screen7__item-title {
    font-size: 24px;
  }

  .screen7__item-text {
    font-size: 18px;
  }

  .screen8 {

  }

  .screen8__title {
    font-size: 84px;
  }

  .screen8__text {
    margin-bottom: 44px;
  }

  .screen8__row form input,
  .screen8__row form textarea {
    padding: 20px;
    font-size: 18px;
  }

  .screen8__row form textarea {
    height: 210px;
  }

  .screen8__row {
    grid-template-columns: 1fr 2fr;
    align-items: flex-end;
    gap: 150px;
  }

  .screen8__image-mobile {
    display: none;
  }

  .screen8__image-desktop {
    display: block;
  }

  .footer__nav {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .footer__nav a {
    color: #97948A;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color .3s ease;
  }

  .footer__nav a:hover {
    color: #FFF;
  }
}

@media screen and (min-width: 1140px) and (max-width: 1440px) {
  .screen3__title::before {
    display: none;
  }

  .screen2__block {
    gap: 60px;
  }

  .screen2__content {
    padding-top: 40px;
  }

  .screen2__block-quote-wrap::after,
  .screen2__block-quote-wrap::before {
    display: none;
  }

  .screen3__item-title {
    font-size: 16px;
  }

  .screen3__item-text {
    font-size: 14px;
  }

  .screen4__number {
    font-size: 40px;
  }

  .screen4__title {
    font-size: 64px;
  }

  .screen4__label {
    font-size: 18px;
  }

  .screen4__row {
    gap: 60px;
  }

  .screen6__block::after, .screen6__block::before {
    font-size: 200px;
  }

  .screen6__title {
    font-size: 44px;
  }

  .screen6__row {
    gap: 30px;
  }

  .screen6__block {
    padding-right: 30px;
  }

  .screen7 {
    padding-bottom: 30px;
  }

  .screen8__row {
    grid-template-columns: 1fr 2fr;
    gap: 40px;
  }

  .screen8__title {
    font-size: 64px;
  }
}

@media screen and (min-width: 1440px) and (max-width: 1919px) {
  .screen2__content {
    padding-top: 180px;
  }
}

.spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #FFF;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.message {
  border-radius: 16px;
  display: none;
  margin-top: 20px;
  padding: 14px 18px;
  font-size: 14px;
  text-align: center;
  animation: fadeUp 0.3s ease both;
}
.message.success {
  background: rgba(100, 200, 120, 0.1);
  border: 1px solid rgba(100, 200, 120, 0.3);
  color: #7de897;
}
.message.error {
  background: rgba(220, 80, 80, 0.1);
  border: 1px solid rgba(220, 80, 80, 0.3);
  color: #f07070;
}