@charset "UTF-8";
/**
* Подключение шрифтов локально из папки "./src/fonts"
*/
/** Подключение переменных */
:root {
  --bs-font-family: "Roboto", sans-serif;
  --bs-font-size: 16px;
  --bs-font-weight: 400;
  --bs-line-height: 1.2;
  --bs-font-color: #222;
  --bs-transition: 0.3s ease-in-out;
  --bs-radius: 10px;
  --primary-color: #131313;
  --primary-hover-color: #2d2d2d;
  --secondary-color: #ff4040;
  --white-color: #fff;
  --black-color: #131313;
  --bs-shadow: 0px 2px 3px rgba(#000, 10%), 0px 8px 3px rgba(#000, 10%);
  --hover-shadow: 0 0 5px 0 rgba(#000, 10%), 0 0 10px 0 rgba(#000, 10%),
    0 0 15px 0 rgba(#000, 10%);
}

/**
* Подключение sass function и mixins и extends стилей
*/
/* Шаблоны (заготовки)
* @extend %имя шаблона;
*/
/** Обнуление */
* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: border-box;
}
*:focus, *:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html {
  opacity: 0;
  scroll-behavior: smooth;
  transition: opacity 0.8s ease-in-out;
}
html.loaded {
  opacity: 1;
}
html.lock {
  overflow: hidden;
  touch-action: none;
}

html,
body {
  width: 100%;
  height: 100%;
  min-width: 320px;
}

body {
  overscroll-behavior: none;
  font-size: var(--bs-font-size);
  font-family: var(--bs-font-family);
  font-weight: var(--bs-font-weight);
  line-height: var(--bs-line-height);
  text-rendering: optimizelegibility;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

button {
  cursor: pointer;
  user-select: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
  user-select: none;
}
a:focus, a:active {
  outline: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

sup {
  color: inherit;
}

/**
* Библиотеки
* раскомментировать для использования
*/
/**
* Подключение custom scrollbar для всего сайта
*/
* {
  scrollbar-width: 0.5rem;
  scrollbar-color: var(--primary-color) #d6d6d6;
}
*::-webkit-scrollbar {
  width: 0.5rem;
  background-color: var(--white-color);
}
*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  background: #eee;
}
*::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  border: 0 none #fff;
  background-color: var(--primary-color);
}
*::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-hover-color);
}

/**
* Общие параметры, шаблоны(заготовки) и вспомогательные классы
*/
/** Базовые анимации: */
@keyframes show-header {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes fade-up-big {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
/** Стили для полноэкранного блока: */
/*
* (i) Стили будут применяться ко
* всем классам содержащим *__container
* Например header__container, main__container и т.д.
*/
[class*=__container] {
  max-width: 74.375rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
  display: flex;
}

[class*=-ibg] {
  position: relative;
}
[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  object-fit: contain;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  /** Поменять на clip - если используется в проекте position: sticky */
  overflow: hidden;
}

.page {
  position: relative;
  flex: 1 1 auto;
}
.page [data-observ] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: transparent;
  pointer-events: none;
}
.page_start {
  padding-top: 6.25rem;
}

/**
* БЕМ блоки используемые во всё проекте
*/
/**
* Подключение стилей отдельных блоков и секций
*/
.header {
  width: 100%;
  transition: background-color var(--bs-transition);
  z-index: 50;
}
.header-is-sticky .header {
  position: fixed;
  background-color: #007aff;
}
.header__container {
  height: 6.25rem;
  display: flex;
  align-items: center;
}
.header-is-sticky .header__container {
  height: 3.125rem;
}

/*
.icon-menu {
  display: none;

  @include media-mx(768) {
    display: block;
    position: relative;
    width: rem(30);
    height: rem(18);
    cursor: pointer;
    z-index: 5;

    span,
    &::before,
    &::after {
      content: "";
      transition: all 300ms ease 0ms;
      right: 0;
      position: absolute;
      width: 100%;
      height: rem(2);
      background-color: #000;
    }

    &::before {
      top: 0;
    }

    &::after {
      bottom: 0;
    }

    span {
      top: calc(50% - rem(1));
    }

    .menu-open & {
      span {
        width: 0;
      }

      &::before {
        top: calc(50% - rem(1));
        transform: rotate(-45deg);
      }

      &::after {
        bottom: calc(50% - rem(1));
        transform: rotate(45deg);
      }
    }
  }
}
*/
.popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  /** Установить свои значения */
  padding: 1.875rem 0.625rem;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  transition: opacity 0.4s ease-in-out;
}
.popup.is-open {
  opacity: 1;
  pointer-events: auto;
}
.popup.is-open .popup__content {
  transform: translateY(0);
  opacity: 1;
}
.popup__wrapper {
  display: flex;
  align-items: center;
  min-height: 100%;
}
.popup__content {
  position: relative;
  width: 100%;
  margin: 0 auto;
  /** Установить свои значения */
  padding: 1.875rem 3.125rem;
  max-width: 43.125rem;
  background-color: #fff;
  transform: translateY(-12.5rem);
  opacity: 0;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.popup__close {
  position: absolute;
  /** Установить свои значения */
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: #000;
  border-radius: 0.5rem;
}

.checkboxes {
  display: flex;
  gap: 10px;
  align-items: center;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 4px;
  text-wrap: nowrap;
}
.checkbox__input {
  appearance: none;
  position: absolute;
  /* Checked */
  /* Focused */
  /* Disabled */
}
.checkbox__input:checked + .checkbox__box {
  background-color: #ff4040;
  border-color: #fff;
}
.checkbox__input:focus + .checkbox__box {
  box-shadow: 0 0 0 2px blue;
}
.checkbox__box {
  height: 20px;
  flex: 0 0 20px;
  border-radius: 3px;
  border: 2px solid #1a8c80;
}

.tabs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.tabs__nav {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.tabs__trigger {
  padding: 0.625rem;
  transition: 0.2s ease-in-out;
}
.tabs__trigger.active {
  background-color: #ff4040;
  color: #fff;
}
.tabs__panel {
  animation: fade-up-big 0.4s forwards;
  display: none;
}
.tabs__panel.active {
  display: block;
}

.accordion {
  /** Установить свои значения */
}
.accordion__item {
  /** Установить свои значения */
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: 0.3s ease-in-out;
}
.accordion__item:not(:first-of-type) {
  border-top: 0;
}
.accordion__item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion__item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion__item.open .accordion__header {
  /** Установить свои значения */
  background-color: #e7f1ff;
  color: #ff4040;
}
.accordion__item.open .accordion__header:after {
  transform: rotate(0deg);
}
.accordion__item.open .accordion__content {
  height: max-content;
  /** Установить свои значения */
  padding: 2.25rem 0.5rem;
}
.accordion__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  /** Установить свои значения */
  padding: 0.5rem;
  transition: background 0.3s ease-in-out;
}
.accordion__header:hover {
  background: rgba(255, 255, 255, 0.02);
}
.accordion__header:active {
  background: rgba(255, 255, 255, 0.05);
}
.accordion__header::after {
  content: "";
  position: static;
  transform: rotate(180deg);
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.6s ease-in-out;
}
.accordion__content {
  height: 0;
  overflow: hidden;
  /** Установить свои значения */
  padding: 0 0.5rem;
  transition: all 0.3s ease-in-out;
}

.footer {
  padding: 1.25rem 0;
  background: var(--black-color);
}
.footer__container {
  display: flex;
  align-items: center;
}
@media (max-width: 31.875em) {
  .footer__container {
    flex-direction: column;
    align-items: flex-start;
  }
}

.screen {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
}
.screen__container {
  padding: 50px 15px;
  min-height: 100lvh;
  position: relative;
  z-index: 2;
}
.screen__left {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-right: 20px;
  max-width: 50%;
  width: 100%;
}
.screen__headline {
  margin-top: auto;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 4px;
  font-family: "Golos Text", serif;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.screen__headline span {
  text-align: right;
}
.screen__subtitle {
  font-size: 34px;
  margin-top: 80px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.screen__right {
  padding-left: 20px;
  max-width: 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.screen__title {
  text-transform: uppercase;
}
.screen__half {
  display: flex;
  gap: 20px;
}
.screen__half * {
  width: 50%;
}

h4 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.main-title {
  font-size: 48px;
  font-weight: 900;
}

#screen-1 {
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen1.jpg);
  color: #fff;
}
#screen-1::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 0.4;
  z-index: 0;
}

#screen-2 {
  background-color: #000;
}
#screen-2::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen2-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#screen-2 .screen__left {
  max-width: 400px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  color: #fff;
  gap: 20px;
}
#screen-2::before {
  content: "";
  position: absolute;
  left: 0%;
  right: auto;
  bottom: 0;
  top: 0;
  height: 100%;
  width: calc(50% - 400px);
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen2-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mt-20 {
  margin-top: 30px;
}

.text-right {
  text-align: right;
}

.bg {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen3.jpg);
}

#screen-3 .screen__right {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
#screen-3 .screen__img {
  margin-top: 20px;
}
#screen-3 .screen__left .screen__text {
  margin-top: 20px;
}

#screen-4 .screen__right,
#screen-4 .screen__left {
  gap: 40px;
}

#screen-5 .screen__right {
  justify-content: space-between;
}
#screen-5 .screen__left {
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen5.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  margin-bottom: 0;
  padding: 20px;
  margin-right: 20px;
  gap: 80px;
}
#screen-5 .screen__left * {
  position: relative;
  z-index: 1;
}
#screen-5 .screen__left::after {
  content: "";
  inset: 0;
  z-index: 0;
  position: absolute;
  opacity: 0.6;
  background-color: #fff;
}

#screen-25-2 {
  background-color: #000;
  color: #fff;
  min-height: 50lvh;
  justify-content: center;
}
#screen-25-2 .screen__container {
  justify-content: center;
  align-items: center;
}
#screen-25-2 .screen__subtitle {
  margin-top: 0;
  text-align: center;
}

#screen-13-2 {
  background-color: #ead931;
  color: #fff;
  min-height: 150lvh;
  justify-content: center;
}
#screen-13-2 .screen__container {
  justify-content: center;
  align-items: center;
}
#screen-13-2 .screen__headline {
  margin-top: 0;
  text-align: center;
}

#screen-6 .screen__img {
  height: 100%;
  object-fit: cover;
}
#screen-6 .screen__right {
  gap: 80px;
}

#screen-7 .screen__container {
  justify-content: space-between;
  padding-bottom: 0;
}
#screen-7 .screen__left {
  background-color: #4162ac;
  color: #fff;
  padding: 40px;
  width: 25%;
  gap: 20px;
  padding-right: 10px;
  padding-left: 0;
  position: relative;
}
#screen-7 .screen__left::after {
  content: "";
  background-color: #4162ac;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  bottom: 0;
  width: 400%;
}
#screen-7 .screen__left::before {
  content: "";
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen7.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 40%;
  position: absolute;
  z-index: -1;
  right: 0;
  transform: translateX(100%);
  top: 0;
  bottom: 0;
  width: 100%;
}
#screen-7 .screen__right {
  justify-content: space-between;
  color: #fff;
  background-color: #4162ac;
  padding: 40px;
  position: relative;
}
#screen-7 .screen__right::after {
  content: "";
  background-color: #4162ac;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 400%;
}

#screen-8 {
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen8.jpg);
  position: relative;
}
#screen-8 .screen__container {
  justify-content: center;
  align-items: center;
  text-align: center;
}
#screen-8 .screen__container h4 {
  line-height: 1.4;
  font-size: 24px;
}
#screen-8::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  opacity: 0.5;
}
#screen-8 .screen__right {
  justify-content: center;
  gap: 20px;
}

#screen-9 .screen__left {
  gap: 20px;
}
#screen-9 .screen__img {
  object-fit: contain;
}
#screen-9 .screen__right {
  gap: 20px;
}

#screen-10 .screen__right {
  gap: 20px;
  justify-content: center;
}
#screen-10 .screen__title:nth-child(3) {
  margin: 20px 0;
}

#screen-11 .screen__left {
  background-color: #4162ac;
  color: #fff;
  padding: 40px;
}
#screen-11 .screen__left::before {
  content: "";
  background-color: #4162ac;
  right: 0;
  width: 400%;
  height: 100%;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
}
#screen-11 .screen__right {
  gap: 20px;
  padding: 40px;
  justify-content: space-between;
}

#screen-12 .screen__left {
  gap: 20px;
}
#screen-12 .screen__right {
  gap: 20px;
}

#screen-22 .screen__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#screen-22 .screen__container {
  min-height: auto;
}

#screen-17#screen-17 {
  background-image: none;
  overflow: hidden;
}
#screen-17#screen-17::after {
  content: "";
  position: absolute;
  inset: -10px;
  background-color: #000;
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/bg.jpeg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(6px);
}
#screen-17#screen-17::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: #000;
  opacity: 0.6;
  z-index: 2;
}

#screen-13,
#screen-14,
#screen-15,
#screen-16,
#screen-17,
#screen-18,
#screen-19,
#screen-20,
#screen-21,
#screen-22,
#screen-23,
#screen-24,
#screen-25,
#screen-26,
#screen-27,
#screen-28 {
  color: #fff;
}
#screen-13 b,
#screen-14 b,
#screen-15 b,
#screen-16 b,
#screen-17 b,
#screen-18 b,
#screen-19 b,
#screen-20 b,
#screen-21 b,
#screen-22 b,
#screen-23 b,
#screen-24 b,
#screen-25 b,
#screen-26 b,
#screen-27 b,
#screen-28 b {
  font-size: 18px;
}
#screen-13 .screen__left,
#screen-13 .screen__right,
#screen-14 .screen__left,
#screen-14 .screen__right,
#screen-15 .screen__left,
#screen-15 .screen__right,
#screen-16 .screen__left,
#screen-16 .screen__right,
#screen-17 .screen__left,
#screen-17 .screen__right,
#screen-18 .screen__left,
#screen-18 .screen__right,
#screen-19 .screen__left,
#screen-19 .screen__right,
#screen-20 .screen__left,
#screen-20 .screen__right,
#screen-21 .screen__left,
#screen-21 .screen__right,
#screen-22 .screen__left,
#screen-22 .screen__right,
#screen-23 .screen__left,
#screen-23 .screen__right,
#screen-24 .screen__left,
#screen-24 .screen__right,
#screen-25 .screen__left,
#screen-25 .screen__right,
#screen-26 .screen__left,
#screen-26 .screen__right,
#screen-27 .screen__left,
#screen-27 .screen__right,
#screen-28 .screen__left,
#screen-28 .screen__right {
  gap: 20px;
  display: flex;
  flex-direction: column;
}

#screen-13 {
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen13bg.jpg);
}
#screen-13 .screen__headline {
  writing-mode: vertical-rl;
  color: #ead931;
}
#screen-13 .screen__img {
  object-fit: cover;
  min-height: 100%;
  margin: -50px 0;
}
#screen-13 .screen__subtitle {
  text-align: center;
  max-width: 500px;
  margin: 80px auto 0;
}
#screen-13 .screen__half,
#screen-13 .screen__right {
  min-height: 100%;
}

#screen-14 {
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen14bg.jpg);
  background-attachment: fixed;
}
#screen-14 .screen__img {
  object-fit: cover;
  min-height: 100%;
  margin: -50px 0;
}

#screen-15 {
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen15bg.jpg);
}
#screen-15 .screen__img {
  margin: -50px 0 0;
}

#screen-16 {
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen14bg.jpg);
}

#screen-17 {
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen14bg.jpg);
}
#screen-17 .screen__img {
  object-fit: cover;
  min-height: 100%;
}

#screen-24 {
  color: #000;
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen24bg.jpg);
}
#screen-24 .screen__left {
  justify-content: center;
}

#screen-23,
#screen-22,
#screen-21,
#screen-20,
#screen-18 {
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen15bg.jpg);
}

#screen-19 {
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen15bg.jpg);
}
#screen-19 .screen__right {
  background-color: #ead931;
  margin: -50px 0;
  padding: 50px;
  position: relative;
  color: #000;
}
#screen-19 .screen__right::after {
  content: "";
  background-color: #ead931;
  position: absolute;
  left: 0;
  width: 400%;
  top: 0;
  z-index: -1;
  bottom: 0;
  height: 100%;
}

#screen-25 {
  background-color: #000;
}
#screen-25 .screen__subtitle {
  text-align: center;
}
#screen-25 .screen__img {
  margin: 50px 0;
}
#screen-25 .screen__headline {
  font-size: 64px;
  color: #cd3226;
}
#screen-25 .screen__right {
  margin: -50px 0;
  justify-content: center;
  padding: 50px;
  background-color: #cb2a17;
}

i {
  border-left: 3px solid #4162ac;
  font-weight: 700;
  font-size: 22px;
  padding-left: 20px;
  display: block;
}

#screen-0 {
  background-color: #fff;
  color: #0e2a3b;
}
#screen-0 .screen__left {
  align-items: center;
  justify-content: center;
}
#screen-0 .screen__headline {
  margin-top: 0;
}
#screen-0 .screen__right {
  justify-content: flex-end;
}
#screen-0 .screen__img {
  margin-top: -50px;
  margin-bottom: -50px;
  height: calc(100% + 100px);
  width: auto;
}

#screen-26 {
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen26bg.jpg);
  background-attachment: fixed;
  position: relative;
}
#screen-26::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #fff;
  opacity: 0.7;
}
#screen-26 .screen__left {
  margin: -50px 0;
  padding: 50px;
  background-color: #cb2a17;
  justify-content: center;
}
#screen-26 .screen__right {
  color: #000;
  justify-content: center;
}

#screen-27 {
  background-attachment: fixed;
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen26bg.jpg);
  position: relative;
}
#screen-27::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #fff;
  opacity: 0.7;
}
#screen-27 .screen__title {
  color: #fff;
  background-color: #ba2717;
  padding: 40px;
  position: relative;
  padding-left: 0;
}
#screen-27 .screen__title::after {
  content: "";
  background-color: #ba2717;
  width: 600%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: -1;
  position: absolute;
}
#screen-27 .screen__left,
#screen-27 .screen__right {
  color: #000;
  justify-content: center;
}

#screen-28 {
  color: #000;
  background-attachment: fixed;
  background-image: url(/letter/wp-content/themes/wc/assets_b/images/screen26bg.jpg);
  position: relative;
}
#screen-28::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #fff;
  opacity: 0.7;
}
#screen-28 .screen__left {
  justify-content: center;
}
#screen-28 .screen__right {
  background-color: #ba2717;
  margin: -50px 0;
  justify-content: center;
  padding: 50px;
  color: #fff;
}

#screen-11 .screen__right {
  justify-content: flex-end;
}

#screen-5 .screen__container {
  min-height: 0;
}

#screen-5 .screen__right {
  gap: 40px;
}

#screen-5 .screen__left {
  min-height: 100%;
}

@media screen and (max-width: 1024px) {
  .screen__container {
    flex-direction: column;
    min-height: auto;
    gap: 20px;
  }
  .screen__right {
    padding-left: 0;
  }
  .screen__left {
    padding-right: 0;
  }
  #screen-2 .screen__left,
  .screen__right,
  .screen__left {
    max-width: 100%;
  }
  #screen-2 .screen__left,
  #screen-7 .screen__left {
    width: 100%;
  }
  #screen-7 .screen__container {
    gap: 0;
    justify-content: flex-start;
    min-height: auto;
  }
  #screen-13 .screen__container {
    flex-direction: column-reverse;
  }
  #screen-13 .screen__img {
    display: none;
  }
  #screen-13 .screen__half * {
    width: 100%;
  }
  #screen-13 .screen__headline {
    writing-mode: horizontal-tb;
  }
  #screen-14 .screen__img,
  #screen-15 .screen__img {
    margin: 0;
  }
  #screen-26 .screen__container {
    padding-top: 0;
  }
  #screen-28 .screen__container,
  #screen-25 .screen__container {
    padding-bottom: 0;
  }
  #screen-0 {
    background-color: #fff;
    color: #0e2a3b;
  }
  #screen-0 .screen__container {
    padding-bottom: 0;
  }
  #screen-0 .screen__right {
    justify-content: flex-end;
  }
  #screen-0 .screen__img {
    margin-top: 0px;
    margin-bottom: 0px;
    height: 100%;
    margin-left: -15px;
    width: calc(100% + 30px);
  }
  #screen-2 .screen__left,
  #screen-28 .screen__right,
  #screen-26 .screen__left,
  #screen-25 .screen__right,
  #screen-19 .screen__right,
  #screen-5 .screen__left,
  #screen-7 .screen__left,
  #screen-7 .screen__right,
  #screen-11 .screen__right,
  #screen-11 .screen__left {
    margin: 0 -15px;
    gap: 20px;
    width: calc(100% + 30px);
    max-width: max-content;
    padding: 30px 15px;
  }
  #screen-1 .screen__subtitle {
    margin-top: 0;
  }
  #screen-1 .screen__left {
    flex-direction: column-reverse;
  }
  #screen-11 .screen__right {
    padding: 0 15px;
  }
  #screen-4 .screen__container,
  #screen-5 .screen__container,
  #screen-8 .screen__container,
  #screen-10 .screen__container {
    justify-content: center;
  }
  #screen-2::before,
  #screen-2::after,
  #screen-7 .screen__left::before,
  #screen-10 .screen__img {
    display: none;
  }
  #screen-5 .screen__right,
  #screen-6 .screen__right {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #screen-8 .screen__container h4 {
    font-size: 18px;
  }
  .screen__img {
    width: 100%;
    height: auto;
  }
  .screen__headline {
    font-size: 42px;
    margin: 20px 0;
  }
  .screen__headline span {
    text-align: left;
  }
  .screen__subtitle {
    font-size: 28px;
  }
  .main-title {
    font-size: 32px;
  }
  h4 {
    font-size: 18px;
  }
  #screen-14 .screen__half {
    flex-direction: column;
  }
  #screen-14 .screen__half * {
    width: 100%;
  }
  #screen-13 .screen__subtitle,
  #screen-10 .screen__title:nth-child(3) {
    margin: 0;
  }
  #screen-4 .screen__right,
  #screen-4 .screen__left {
    gap: 20px;
  }
  #screen-4 .screen__half .screen__text {
    width: 100%;
  }
  #screen-4 .screen__half img {
    display: none;
  }
  #screen-25 .screen__headline {
    font-size: 42px;
  }
}