@font-face {
    font-family: "Vetrino";
    src: url("../../fonts/Vetrino.otf") format("truetype");
}
@font-face {
    font-family: "Vasek";
    src: url("../../fonts/Vasek Italic_0.ttf") format("truetype");
}
@font-face {
    font-family: "Znikomit";
    src: url("../../fonts/ZnikomitNo25.otf") format("truetype");
}
@font-face {
    font-family: "Youngest";
    src: url("../../fonts/The Youngest Script-Rg.ttf") format("truetype");
}
@font-face {
    font-family: "denis";
    src: url("../../fonts/denistina_en.ttf") format("truetype");
}

* {
    margin: 0;
    padding: 0;

    /*font-family: "Cormorant Infant", sans-serif;*/
    /*font-family: "Alumni Sans Pinstripe", sans-serif;*/
    /*font-family: "Poiret One", sans-serif;*/


}

body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    background-color: black;
}
.watermark {
    content: "ya-invite";
    position: fixed;
    font-size: 80px;
    color: rgba(0, 0, 0, 0.08);
    transform: rotate(-25deg);
    pointer-events: none;
    z-index: 55555;
    white-space: nowrap;
    font-weight: 600; /* выглядит аккуратнее */
}

/* Три позиции */
body::before {
    content: "ya-invite";
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-size: 80px;
    color: rgba(0,0,0,0.08);
    pointer-events:none;
    z-index:5555555;
    white-space:nowrap;
}

body::after {
    content: "ya-invite";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-size: 80px;
    color: rgba(0,0,0,0.08);
    pointer-events:none;
    z-index:5555555;
    white-space:nowrap;
}

html::after {
    content: "ya-invite";
    position: fixed;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-size: 80px;
    color: rgba(0,0,0,0.08);
    pointer-events:none;
    z-index:555555;
    white-space:nowrap;
}
.desktop-message {
    display: none;
    text-align: center;
    margin-top: 150px;
    color: white;
}

.wrapper {
    width: 100%;

}
.container {
    max-width: 600px;
    margin: 0 auto;

}
.hidden-center {
    opacity: 0;
    transform: scale(0.8) translateY(20px); /* начальное состояние */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hidden-center.show {
    opacity: 1;
    transform: scale(1) translateY(0); /* конечное состояние */
}

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hid {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 3s ease-out;
}


.show {
    opacity: 1;
    transform: translateY(0);
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}
#tap-btn {
    margin-top: 40px;
    cursor: pointer;
    z-index: 10000;
    position: relative;
    pointer-events: auto;
    padding: 20px; /* делает кликабельную область больше */
}
#tap-btn svg {
    width: 60px;
    height: 60px;
    animation: tapMove 0.8s infinite ease-in-out;
}
@keyframes tapMove {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: .6; }
    100% { transform: translateY(0); opacity: 1; }
}
.smoke, .sparks, .blood {
    pointer-events: none !important;
}
.letters {
    text-align: center;   /* центрирует строки */
    width: 100%;
    display: block;
    font-family: "Znikomit", sans-serif;
}
.letters br {
    flex-basis: 100%;
}
.letter {
    opacity: 0;
    font-size: clamp(50px, 12vw, 100px);
    transform: scale(0.8);
    display: inline-block;
    color: white;
    vertical-align: middle;
    filter: drop-shadow(0 0 0px #ff0000);
    animation:
            typewriter 0.4s forwards ease-out,
            mirrorSpin 2.5s infinite ease-in-out 1s,
            neonPulse 2.5s infinite ease-in-out 1s;
}


/* Появление букв по очереди */
.letter:nth-of-type(1) { animation-delay: 0s,   1s,   1s; }
.letter:nth-of-type(2) { animation-delay: 0.3s, 1.3s, 1.3s; }
.letter:nth-of-type(3) { animation-delay: 0.6s, 1.6s, 1.6s; }
.letter:nth-of-type(4) { animation-delay: 0.9s, 1.9s, 1.9s; }
.letter:nth-of-type(5) { animation-delay: 1.2s, 2.2s, 2.2s; }
.letter:nth-of-type(6) { animation-delay: 1.5s, 2.5s, 2.5s; }
.letter:nth-of-type(7) { animation-delay: 1.8s, 2.8s, 2.8s; }
.letter:nth-of-type(8) { animation-delay: 2.1s, 3.1s, 3.1s; }
.letter:nth-of-type(9) { animation-delay: 2.4s, 3.4s, 3.4s; }
.letter:nth-of-type(10){ animation-delay: 2.7s, 3.7s, 3.7s; }

@keyframes mirrorSpin {
    0%   { transform: rotateY(0deg); }
    50%  { transform: rotateY(180deg); }  /* зеркалка */
    100% { transform: rotateY(360deg); }
}
@keyframes typewriter {
    0%   { opacity: 0; transform: scale(0.8); filter: blur(5px); }
    80%  { opacity: 1; transform: scale(1.1); filter: blur(1px); }
    100% { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes neonPulse {
    0%   { filter: drop-shadow(0 0 5px white); }
    50%  { filter: drop-shadow(0 0 20px white); }
    100% { filter: drop-shadow(0 0 5px white); }
}
.smoke {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,0,0,0.2), transparent 70%);
    animation: smokeAnim 6s infinite ease-in-out;
    opacity: 0.15;
    mix-blend-mode: screen;
}
@keyframes smokeAnim {
    0%   { transform: translate(-50px,-50px) scale(1); }
    50%  { transform: translate(50px,50px) scale(1.3); }
    100% { transform: translate(-50px,-50px) scale(1); }
}
.sparks {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow:
            20px 0px 5px white,
            -20px -30px 5px white,
            50px 40px 5px white,
            -50px 20px 5px white,
            10px -40px 5px white;
    animation: sparksAnim 1.2s infinite linear;
    opacity: 0.6;
}
@keyframes sparksAnim {
    0%   { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(0.3); opacity: 0; }
}
.blood {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
    animation: bloodAnim 3s infinite ease-in-out;
    opacity: 0.3;
}
@keyframes bloodAnim {
    0% { transform: translateY(0); }
    50% { transform: translateY(20px); opacity: 0.5; }
    100% { transform: translateY(0); }
}
/* Плавное появление */
/*@keyframes appear {*/
/*    from { opacity: 0; transform: translateY(20px); }*/
/*    to   { opacity: 1; transform: translateY(0); }*/
/*}*/

/*!* Кручение / зеркаливание *!*/
/*@keyframes spin {*/
/*    0% { transform: rotateY(0deg); }*/
/*    50% { transform: rotateY(180deg); } !* зеркалка *!*/
/*    100% { transform: rotateY(360deg); }*/
/*}*/
.fade-out {
    animation: fadeOut 0.8s forwards ease-out;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; visibility: hidden; }
}
.invite {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 550px;*/
    text-align: center;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 20px;
}
.photo-wrapper {
    position: relative;
    display: inline-block;
}

.photo {
    display: block;
    width: 100%;
    max-width: 250px;
    position: relative;
    z-index: 2;
    /*filter: grayscale(100%);*/
    /*filter: grayscale(100%) drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));*/
    /*transition: transform 0.5s ease, filter 0.5s ease;*/

}

.loc-img {
    max-width: none;
}
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2; /* поверх картинки */
    background: transparent;
}

.stars::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow:
            10px 20px white, 50px 30px white, 90px 60px white,
            130px 50px white, 180px 80px white, 220px 40px white,
            260px 70px white, 300px 60px white, 340px 90px white,
            10px 100px white, 50px 120px white, 90px 150px white;
    animation: twinkle 3s linear infinite;
}

.stars::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    box-shadow:
            20px 10px rgba(255,255,255,0.5),
            60px 40px rgba(255,255,255,0.5),
            100px 70px rgba(255,255,255,0.5),
            140px 90px rgba(255,255,255,0.5),
            180px 30px rgba(255,255,255,0.5),
            220px 60px rgba(255,255,255,0.5),
            260px 100px rgba(255,255,255,0.5),
            300px 40px rgba(255,255,255,0.5),
            340px 80px rgba(255,255,255,0.5);
    animation: twinkleSlow 4s linear infinite;
}

/* Мерцание первого слоя */
@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50%      { opacity: 1; transform: translateY(-2px); }
}

/* Мерцание второго слоя */
@keyframes twinkleSlow {
    0%, 100% { opacity: 0.2; transform: translateY(0); }
    50%      { opacity: 0.7; transform: translateY(-1px); }
}
.number {
    position: relative;
    font-size: 100px;
    color: white;
    font-weight: bold;
    /*text-shadow:*/
    /*        0 0 10px #838383,*/
    /*        0 0 20px #9c9c9c,*/
    /*        0 0 30px #bcbcbc,*/
    /*        0 0 40px #dcdcdc;*/
    z-index: 1;
    /*animation: neonupPulse 2s infinite alternate;*/
}

/* Эффект пульсации неона */
@keyframes neonupPulse {
    0% {
        text-shadow:
                0 0 10px #838383,
                0 0 20px #9c9c9c,
                0 0 30px #bcbcbc,
                0 0 40px #dcdcdc;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        text-shadow:
                0 0 20px #838383,
                0 0 40px #9c9c9c,
                0 0 60px #bcbcbc,
                0 0 80px #dcdcdc;
        transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
        text-shadow:
                0 0 10px #838383,
                0 0 20px #9c9c9c,
                0 0 30px #bcbcbc,
                0 0 40px #dcdcdc;
        transform: translate(-50%, -50%) scale(1);
    }
}

.invite-wrapper .love,
.invite-wrapper .name1,
.invite-wrapper .name2, .frame {
    opacity: 0;
}
.invite-wrapper.active .love {
    opacity: 0;
    display: block;
    animation: fadeIn 1.5s forwards;
    animation-delay: 0s;
}
.frame.active {
    opacity: 0;
    display: block;
    animation: fadeIn 1.5s forwards;
    animation-delay: 0s;
}

.invite-wrapper.active .name1, .invite-wrapper.active .name2 {
    opacity: 0;
    display: block;
    animation: fadeIn 1.5s forwards;
}

.invite-wrapper.active .name1 {
    animation-delay: 0.1s; /* после печати LOVE */
}

.invite-wrapper.active .name2 {
    animation-delay: 0.2s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}
.number span {
    font-family: "Youngest", sans-serif;
    font-weight: normal;
    font-size: 50px;
    position: absolute;
}
.number .name1 {
    top: -30px;
    left: -20px;
    rotate: -10deg;
}
.number .name2 {
    top: 65px;
    right: 0px;
    rotate: 0deg;
}
.invite .text {
    position: relative;
    z-index: 4;
    color: white;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;


    /*width: max-content;*/
}

.invite-name {
    font-size: 30px;
}
.frame {
    margin-top: 50px;
    display: inline-block;
    padding: 10px;                /* расстояние между рамками */
    border: 1px solid #ffffff;       /* если хочешь округление */
}
.image img{
    width: 100%;
    border: 1px solid #ffffff;
}
.vertical-video {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}
.main {
    padding: 100px 0 100px 0;
    /*background-color: #595858;*/
    color: black;

}
.organizer {
    padding: 100px 0 100px 0;
    /*background-color: #595858;*/
    color: white;

}
.main .container, .location .container {
    position: relative;
}
.wed {

}
.foto {
    width: 100%;
    height: 100%;
    margin-bottom: -30px;
}
.main-wed {
    position: absolute;
    top: 40%;
    left: -35%;
    rotate: 270deg;
    font-family: "Book Antiqua", sans-serif;
    text-transform: uppercase;
    font-size: 85px;
    color: black;
}
.main-info {
    background-color: rgba(255, 255, 255, 0.5); /* чёрный фон с 60% прозрачностью */
    border-radius: 20px; /* закруглённые углы */
    padding: 30px; /* внутренние отступы */
    max-width: 600px; /* ограничение по ширине */
    font-size: 60px;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.main-info div {
    font-family: "denis", sans-serif;
    font-size: 40px;
}
.dear, .location-title, .program-title, .dresscode-title, .wishes-title,
.organizer-title, .presence-title {
    margin-bottom: 30px;
}

 .location .banquet, .presence .presence-text {

    border-bottom: 1px solid;
    border-image-source: linear-gradient(to right, transparent, #000, transparent);
    border-image-slice: 1;
}
.invite-name.one {
    font-family: "Vetrino", sans-serif;
    padding-bottom: 10px;
    border-bottom: 1px solid;
    border-image-source: linear-gradient(to right, transparent, white, transparent);
    border-image-slice: 1;
}
.invite-name.two {
    font-family: "denis", sans-serif;
    padding-top: 10px;
    font-size: 40px;
}
.main .text, .organizer-text {
    padding-bottom: 30px;
    border-bottom: 1px solid;
    border-image-source: linear-gradient(to right, transparent, #fff, transparent);
    border-image-slice: 1;
    font-family: "Vetrino", sans-serif;
    font-size: 20px;
}
.main-info .no-fonts {
    margin: 20px 0;
    font-family: "Vetrino", sans-serif;
    font-size: 20px;
}
.main-info .date {
}
.text-right {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}
.main-info .text-right .text-right-one {
    font-family: "denis", sans-serif;
    font-size: 40px;
}
.main-info .text-right .text-right-two {
    font-family: "Vetrino", sans-serif;
    font-size: 30px;
    margin-top: -15px;
}

.location, .program, .dresscode, .wishes, .presence {
    padding: 100px 0 0 0;



}
.location {
    background-color: #000000;
    color: white;
    overflow: hidden;
}

.location-title, .program-title, .dresscode-title, .wishes-title, .organizer-title,
.presence-title {
    text-align: center;
    font-family: "denis", sans-serif;
    font-size: 85px;
}
.location-info {
    text-align: center;
    font-size: 60px;
    font-family: "Vetrino", sans-serif;
}
.location-address {
    font-size: 20px;
    margin-bottom: 30px;
}

.location-address a {
    margin-top: 30px;
    font-size: 40px;
    text-decoration: none;
    outline: none;
    color: black;
    padding: 10px;
    border: 1px solid black;
    display: inline-block;
    cursor: pointer;
}

.location-wed {
      position: absolute;
      top: 40%;
      left: -27%;
      rotate: 270deg;
      font-family: "Book Antiqua", sans-serif;
      text-transform: uppercase;
      font-size: 85px;
      color: white;
  }
.location-address a:hover {
    color: #262626;

}

.program .container {
    position: relative;
    color: white;
    font-family: "Vetrino", sans-serif;
    font-size: 20px;

}
.program-wed {
    position: absolute;
    top: 40%;
    left: -21%;
    rotate: 270deg;
    font-family: "Book Antiqua", sans-serif;
    text-transform: uppercase;
    font-size: 85px;
    color: white;
}
.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
}
.event {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 85%;
    font-size: 40px;
    gap: 20px;

}
.first {
    display: flex;
    gap: 20px;
    align-items: center;
}
.first svg {
    width: 60px;
    height: 60px;
}
.first .time {
    font-weight: bold;
}


.dresscode .container {
    /*position: relative;*/

}
.dresscode {
    position: relative;
    color: black;
    background-color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
}
.dresscode .main-info {
    /*height: 150px;*/
}

.wishes {
    padding-top: 90px;
    padding-bottom: 50px;
}
.dresscode-wed {
    position: absolute;
    /*top: 40%;*/
    /*left: -30%;*/
    top: 52%;
    left: 67px;
    rotate: 270deg;
    font-family: "Book Antiqua", sans-serif;
    text-transform: uppercase;
    font-size: 85px;
    color: white;
}
.main-info .dresscode-info {
    text-align: center;
    font-size: 20px;
    line-height: 0.8;
    font-family: "Vetrino", sans-serif;
}
.dresscode-info-blocks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.dresscode-info-block {
    width: 150px;
    height: 80px;
}
.dresscode-info-block.first {
    background-color: #eec2cd;
}

.dresscode-info-block.second {
    background-color: #f3e5bd;
}
.dresscode-info-block.third {
    background-color: #cff1ea;
}
.dresscode-info-block.four{
    background-color: #cfdaf1;
}
.photo-dress {
    margin-top: 20px;
    width: 300px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 180px 150px 80px 80px 80px;
    gap: 0;
    grid-auto-rows: 90px;
}
.photo-dress img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* чтобы не было пустых отступов */
}
.ph1,
.ph2,
.ph3 {
    grid-row: 1;       /* первая строка */
    height: 150px;      /* новая высота для уменьшения */
}
/* div4 — два столбца */
.ph4 {
    grid-column: span 2; /* исправлено */
}

/* div5 — две строки + третья колонка */
.ph5 {
    grid-column: 3;       /* исправлено */
    grid-row: span 2;     /* исправлено */
}

/* div6 — две строки, старт с 4-й + третья колонка */
.ph6 {
    grid-column: 3;       /* исправлено */
    grid-row: 4 / span 2; /* исправлено */
}

/* div7 — две колонки + три строки */
.ph7 {
    grid-column: 1 / span 2; /* исправлено */
    grid-row: 3 / span 3;    /* исправлено */
}



.wishes .container {
    position: relative;

}
.wishes-wed {
    position: absolute;
    top: 40%;
    left: -22%;
    rotate: 270deg;
    font-family: "Book Antiqua", sans-serif;
    text-transform: uppercase;
    font-size: 85px;
    color: white;
}

.wishes-text {
    text-align: center;
    font-size: 40px;
}


.organizer .container {
    position: relative;

}
.organizer-wed {
    position: absolute;
    top: 37%;
    left: -30%;
    rotate: 270deg;
    font-family: "Book Antiqua", sans-serif;
    text-transform: uppercase;
    font-size: 85px;
    color: black;
}

.organizer-text, .organizer-name {
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
}

.organizer-phone {
    text-align: center;
}
.organizer a {
    font-size: 30px;
    text-decoration: none;
    outline: none;
    color: white;
    display: inline-block;
    cursor: pointer;

}
.organizer a:hover {
    color: #262626;

}
.presence {
    padding-bottom: 50px;
}
.presence .container {
    position: relative;

}
.presence-wed {
    position: absolute;
    top: 40%;
    left: -27%;
    rotate: 270deg;
    font-family: "Book Antiqua", sans-serif;
    text-transform: uppercase;
    font-size: 85px;
    color: white;
}
.main-info .presence-text {
    text-align: center;
    font-size: 20px;
    padding-bottom: 20px;
    color: black;
    font-family: "Vetrino", sans-serif;
    border-bottom: 1px solid;
    border-image-source: linear-gradient(to right, transparent, black, transparent);
}
.main-info .presence-text:last-child {
    border-bottom: none;
}
.presence .presence-text.anketa {
    color: white;
    text-align: center;
    font-size: 20px;
    font-family: "Vetrino", sans-serif;
}
.wedding-form * {
    box-sizing: border-box;
}
.wedding-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    font-size: 30px;
    font-family: "Vetrino", sans-serif;
}

.wedding-form fieldset {
    margin: 0 0 15px 0;
    padding: 0;
    border: none;
}

.wedding-form legend {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.wedding-form label {
    display: block;
    margin: 5px 0;
    color: white;
}

.wedding-form input[type="text"],
.wedding-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid white;
    border-radius: 5px;
    font-size: 16px;
    color: white;
    font-family: "Vetrino", sans-serif;
    background-color: transparent;
    box-sizing: border-box;
}

.wedding-form input[type="text"]::placeholder,
.wedding-form textarea::placeholder {
    color: white;
    opacity: 1;
}

.wedding-form textarea {
    min-height: 100px;
}

.wedding-form button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    width: 100%;
    padding: 8px;
    border: 1px solid white;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    box-sizing: border-box;
    font-family: "Vetrino", sans-serif;
}

.wedding-form button:hover {
    background: black;
    border: 1px solid black;
    color: white;
}

.wedding-form button:focus {
    outline: none;
}


.timout {
    padding-top: 50px;
    /*height: 400px;*/
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/foto.jpg);*/
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    /*background-color: #f5f5f5;*/
}

.timout-title {
    font-size: 55px;
    color: black;
    text-align: center;
    white-space: nowrap;
}
#countdown {
    display: flex;
    justify-content: center;
    gap: 0px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    padding: 15px;
    text-align: center;

}

.time-box span {
    font-size: 32px;
    line-height: 1;
}

.time-box p {
    margin: 5px 0 0;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.8;
    font-family: "Vetrino", sans-serif;
}



/*.parallax-window {*/
/*    min-height: 300px;*/
/*    background: transparent;*/
/*    width: 100%;*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*}*/

/*.parallax-window::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 130%; !* Делаем выше блока *!*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    background-attachment: scroll; !* Убираем fixed *!*/
/*    will-change: transform;*/
/*}*/


