/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
* {
    box-sizing: border-box
}

img,svg {
    max-width: 100%;
    height: auto
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

details,img,main,svg {
    display: block
}

h1 {
    font-size: 2em
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

code,kbd,pre,samp {
    font-family: monospace,monospace;
    font-size: 1em
}

a {
    background-color: transparent;
    outline: 0;
    text-decoration: none;
    color: var(--color-main);
    -webkit-transition: var(--transition);
    transition: var(--transition)
}

abbr[title] {
    border-bottom: none;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,strong {
    font-weight: bolder
}

small {
    font-size: 80%
}

sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button,input,optgroup,select,textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,input {
    overflow: visible
}

button,select {
    text-transform: none
}

[type=button],[type=reset],[type=submit],button {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],[type=radio],legend {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

[hidden],template {
    display: none
}

:root {
    --font-family: "Monrope", sans-serif;
    --font-family-secondary: "Cormorant Garamond", sans-serif;
    --color-main: #261A0C;
    --color-body-bg: #fff;
    --color-accent: #C1A96F;
    --transition: .3s ease-out
}

h1,h2,h3,h4,h5 {
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.2
}

@media (max-width: 908px) {
}

@media screen and (min-width: 280px) {
    body,html {
        height:100%;
        scroll-padding-top: 90px;
        scroll-behavior: smooth
    }

    body {
        background: var(--color-body-bg);
        color: var(--color-main);
        font-size: 16px;
        font-family: var(--font-family);
        line-height: 1.3;
        -webkit-font-smoothing: antialiased;
        font-display: swap
    }

    .max-width {
        max-width: 1380px;
        padding: 0 40px;
        width: 100%;
        margin: 0 auto;
        position: relative
    }

    @media (max-width: 908px) {
        .max-width {
            padding:0 20px
        }
    }

    .wrapper {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        width: 100%;
        min-height: 100vh;
        -webkit-box-pack: justify;
        justify-content: space-between
    }

    .content {
        margin: 0 0 auto
    }

    /*! Hero
--------------------
 */
    .hero {
        padding: 100px 0;
        position: relative
    }

    @media (max-width: 1170px) {
        .hero {
            padding:80px 0
        }
    }

    @media (max-width: 908px) {
        .hero {
            padding:40px 0
        }
    }

    .hero__block {
        max-width: 1000px;
        position: relative;
        z-index: 2
    }

    .hero__title {
        font-family: var(--font-family-secondary);
        margin: 0 0 20px;
        text-transform: uppercase;
        color: #f2f2f2;
        font-weight: 700;
        font-size: 62px;
        line-height: 1
    }

    @media (max-width: 1170px) {
        .hero__title {
            font-size:42px
        }
    }

    @media (max-width: 908px) {
        .hero__title {
            font-size:24px
        }
    }

    .hero__title a {
        text-decoration: underline !important;
        text-decoration-thickness: 2px !important;
        color: #fff !important;
        display: block;
        margin-top: 20px;
    }

    .hero__text {
        margin: 0 0 44px;
        font-size: 24px;
        max-width: 880px;
        color: #fff
    }

    @media (max-width: 1170px) {
        .hero__text {
            font-size:20px;
            margin: 0 0 30px
        }
    }

    @media (max-width: 908px) {
        .hero__text {
            font-size:16px
        }
    }

    .hero__text strong {
        font-weight: 700
    }

    .hero__bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1
    }

    .hero__bg:after,.hero__bg:before {
        content: "";
        left: 0;
        bottom: 0;
        width: 100%;
        position: absolute
    }

    .hero__bg:after {
        height: 100%;
        z-index: 3;
        background: -webkit-gradient(linear,left top,right top,from(#000),to(transparent));
        background: linear-gradient(to right,#000,transparent);
        opacity: .8
    }

    .hero__bg:before {
        height: 100px;
        z-index: 4;
        background: -webkit-gradient(linear,left bottom,left top,from(#fff),to(rgba(255,255,255,0)));
        background: linear-gradient(to top,#fff,rgba(255,255,255,0))
    }

    .hero__bg img {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

    /*! Help
----------------
 */
    .help {
        padding: 100px 0 0
    }

    @media (max-width: 1170px) {
        .help {
            padding:80px 0 0
        }
    }

    @media (max-width: 908px) {
        .help {
            padding:60px 0 0
        }
    }

    .help__title {
        margin: 0 0 64px;
        font-size: 30px;
        font-weight: 700;
        max-width: 820px
    }

    @media (max-width: 1170px) {
        .help__title {
            margin:0 0 48px;
            font-size: 24px
        }
    }

    @media (max-width: 908px) {
        .help__title {
            font-size:20px;
            margin: 0 0 32px
        }
    }

    .help__grid {
        display: -webkit-box;
        display: flex;
        gap: 64px
    }

    @media (max-width: 1170px) {
        .help__grid {
            -webkit-box-orient:vertical;
            -webkit-box-direction: normal;
            flex-direction: column;
            padding: 0 0 40px
        }
    }

    .help__about {
        width: 50%;
        -webkit-box-flex: 0;
        flex: none;
        padding: 0 0 120px
    }

    @media (max-width: 1170px) {
        .help__about {
            padding:0;
            width: 100%
        }
    }

    .help__item {
        position: relative;
        padding-left: 117px;
        font-size: 24px
    }

    @media (max-width: 1170px) {
        .help__item {
            padding:0;
            font-size: 20px
        }
    }

    @media (max-width: 908px) {
        .help__item {
            font-size:16px
        }
    }

    .help__item:not(:last-child) {
        margin: 0 0 32px
    }

    .help__item img {
        border-radius: 50%;
        left: 0;
        top: 0;
        width: 85px;
        height: 85px;
        -o-object-fit: cover;
        object-fit: cover;
        position: absolute
    }

    @media (max-width: 1170px) {
        .help__item img {
            position:initial;
            margin: 0 auto 20px;
            display: table
        }
    }

    .help__note {
        text-transform: uppercase;
        color: var(--color-accent);
        text-align: center;
        margin: 64px auto;
        font-family: var(--font-family-secondary);
        font-size: 42px;
        line-height: 1.1;
        max-width: 540px;
        font-weight: 700
    }

    @media (max-width: 1170px) {
        .help__note {
            max-width:420px;
            font-size: 30px;
            margin: 32px auto
        }
    }

    .help__button {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center
    }

    .help__photos {
        -webkit-box-flex: 1;
        flex: auto;
        background: url(../img/content/pattern-vertical.png) repeat-y 50% 0
    }

    @media (max-width: 908px) {
        .help__photos {
            background:0 0
        }
    }

    .help__photos-grid {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        grid-row-gap: 12px;
        margin-right: -12px
    }

    @media (max-width: 908px) {
        .help__photos-grid {
            margin:0;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            flex-direction: column
        }
    }

    .help__photos-item {
        width: 33.3%;
        padding: 0 12px 0 0
    }

    @media (max-width: 908px) {
        .help__photos-item {
            padding:0;
            width: initial
        }
    }

    .help__photos-item img {
        border-radius: 8px;
        -o-object-fit: cover;
        object-fit: cover;
        height: 240px;
        width: 100%;
        border: 2px solid var(--color-accent)
    }

    @media (max-width: 908px) {
        .help__photos-item img {
            height:208px
        }
    }

    .help__photos-item:nth-child(1),.help__photos-item:nth-child(2) {
        width: 50%
    }

    .help__photos-item:nth-child(1) img,.help__photos-item:nth-child(2) img {
        height: 280px
    }

    @media (max-width: 908px) {
        .help__photos-item:nth-child(1),.help__photos-item:nth-child(2) {
            width:initial
        }

        .help__photos-item:nth-child(1) img,.help__photos-item:nth-child(2) img {
            height: 208px
        }
    }

    .help__spacer {
        pointer-events: none
    }

    /*! Gallery
-----------------------
 */
    .gallery {
        padding: 50px 0 80px;
        background: url(../img/content/pattern-horizontal.png) repeat-x 0 50%
    }

    @media (max-width: 908px) {
        .gallery {
            padding:30px 0 0
        }
    }

    .gallery__list {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 38px
    }

    @media (max-width: 1170px) {
        .gallery__list {
            grid-template-columns:repeat(2,1fr);
            gap: 20px
        }
    }

    @media (max-width: 908px) {
        .gallery__list {
            display:-webkit-box;
            display: flex;
            overflow-y: auto;
            margin: 0 -20px;
            padding: 0 20px
        }

        .gallery__list::-webkit-scrollbar {
            display: none
        }

        .gallery__item {
            min-width: 280px
        }
    }

    .gallery__item img {
        border-radius: 8px;
        -o-object-fit: cover;
        object-fit: cover;
        height: 382px;
        width: 100%;
        border: 2px solid var(--color-accent)
    }

    /*! Quote
------------------
 */
    .quote {
        padding: 40px 0 80px
    }

    .quote__grid {
        display: -webkit-box;
        display: flex;
        gap: 64px
    }

    @media (max-width: 1170px) {
        .quote__grid {
            -webkit-box-orient:vertical;
            -webkit-box-direction: reverse;
            flex-direction: column-reverse;
            gap: 32px
        }

        .quote__grid:last-child {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            flex-direction: column
        }
    }

    .quote__grid:not(:last-child) {
        margin: 0 0 70px
    }

    .quote__person {
        width: 34%;
        -webkit-box-flex: 0;
        flex: none;
        padding: 0 0 20px;
        border-bottom: 1px solid var(--color-accent)
    }

    @media (max-width: 1170px) {
        .quote__person {
            width:100%;
            display: -webkit-box;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: reverse;
            flex-direction: column-reverse;
            border: 0;
            padding: 20px 0 0;
            border-top: 1px solid var(--color-accent)
        }
    }

    .quote__photo {
        position: relative
    }

    .quote__photo_video {
        cursor: pointer
    }

    .quote__photo_video img,.quote__photo_video video {
        height: 708px
    }

    .quote__photo_video_active {
        cursor: default
    }

    .quote__photo-play {
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 3;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%)
    }

    .quote__photo-play svg {
        width: 100px;
        height: auto;
        -webkit-transition: var(--transition);
        transition: var(--transition)
    }

    .quote__photo_video:hover .quote__photo-play svg {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    .quote__photo_video_active .quote__photo-play {
        display: none
    }

    .quote__photo img,.quote__photo video {
        border-radius: 8px;
        -o-object-fit: cover;
        object-fit: cover;
        display: block;
        width: 100%;
        border: 2px solid var(--color-accent)
    }

    .quote__name {
        color: var(--color-accent);
        font-size: 19px;
        margin: 20px 0 0;
        line-height: 1.25;
        font-weight: 700
    }

    @media (max-width: 1170px) {
        .quote__name {
            margin:0 0 10px
        }
    }

    @media (max-width: 908px) {
        .quote__name {
            font-size:15px
        }
    }

    .quote__content {
        -webkit-box-flex: 1;
        flex: auto;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }

    .quote__content_pattern {
        background: url(../img/content/pattern-vertical.png) repeat-y 50% 0
    }

    @media (max-width: 1170px) {
        .quote__content_pattern {
            background:0 0
        }
    }

    .quote__spacer:first-child {
        margin: 0 0 24px;
        -webkit-transform: translateY(-24px);
        transform: translateY(-24px)
    }

    @media (max-width: 1170px) {
        .quote__spacer:first-child {
            margin:0 0 20px;
            -webkit-transform: none;
            transform: none
        }
    }

    .quote__text {
        font-size: 24px
    }

    @media (max-width: 908px) {
        .quote__text {
            font-size:16px
        }
    }

    .quote__note,.quote__text strong {
        font-weight: 700
    }

    .quote__note {
        text-transform: uppercase;
        color: var(--color-accent);
        text-align: center;
        margin: 44px auto 0;
        font-family: var(--font-family-secondary);
        font-size: 30px;
        line-height: 1.1;
        max-width: 760px
    }

    @media (max-width: 908px) {
        .quote__note {
            font-size:26px;
            margin: 20px auto 0;
            text-align: left
        }
    }

    .quote__button {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        margin: 44px 0 0
    }

    @media (max-width: 1170px) {
        .quote__button {
            margin:20px 0 0
        }
    }

    .quote__spacer:last-child {
        margin: auto 0 0;
        -webkit-transform: translateY(37px);
        transform: translateY(37px)
    }

    @media (max-width: 1170px) {
        .quote__spacer:last-child {
            display:none
        }
    }

    /*! Thanks
--------------------
 */
    .thanks {
        padding: 80px 0;
        background: url(../img/content/pattern-horizontal.png) repeat-x 0 50%
    }

    @media (max-width: 908px) {
        .thanks {
            padding:50px 0;
            background: 0 0
        }
    }

    .thanks__grid {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 38px
    }

    @media (max-width: 1170px) {
        .thanks__grid {
            grid-template-columns:repeat(2,1fr)
        }
    }

    @media (max-width: 908px) {
        .thanks__grid {
            gap:20px
        }
    }

    .thanks__column {
        padding: 0 0 20px;
        border-bottom: 1px solid var(--color-accent)
    }

    .thanks__column_double {
        grid-column: 3/5
    }

    @media (max-width: 1170px) {
        .thanks__column_double {
            grid-column:1/-1
        }
    }

    .thanks__column img {
        border-radius: 8px;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 382px;
        border: 2px solid var(--color-accent)
    }

    @media (max-width: 908px) {
        .thanks__column img {
            height:initial
        }
    }

    .thanks__note {
        color: var(--color-accent);
        font-size: 19px;
        margin: 20px 0 0;
        line-height: 1.25;
        font-weight: 700
    }

    @media (max-width: 908px) {
        .thanks__note {
            font-size:14px;
            margin: 10px 0 0
        }
    }

    /*! Fond
----------------
 */
    .fond {
        padding: 100px 0
    }

    @media (max-width: 1170px) {
        .fond {
            padding-top:0
        }
    }

    .fond__steps {
        background: url(../img/content/pattern-horizontal.png) repeat-x 0 50%
    }

    @media (max-width: 1170px) {
        .fond__steps {
            background:0 0
        }
    }

    .fond__steps-grid {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center
    }

    @media (max-width: 1170px) {
        .fond__steps-grid {
            -webkit-box-orient:vertical;
            -webkit-box-direction: normal;
            flex-direction: column
        }
    }

    .fond__item {
        -webkit-box-flex: 1;
        flex: auto
    }

    .fond__item img {
        border-radius: 8px;
        -o-object-fit: cover;
        object-fit: cover;
        height: 458px;
        width: 100%;
        border: 2px solid var(--color-accent)
    }

    @media (max-width: 1170px) {
        .fond__item img {
            height:initial
        }
    }

    .fond__arrow {
        -webkit-box-flex: 0;
        flex: none;
        margin: 0 24px
    }

    @media (max-width: 1170px) {
        .fond__arrow {
            margin:20px 0;
            min-height: 100px;
            display: -webkit-box;
            display: flex;
            -webkit-box-align: center;
            align-items: center
        }

        .fond__arrow img {
            -webkit-transform: rotate(90deg);
            transform: rotate(90deg)
        }
    }

    .fond__title {
        text-align: center;
        line-height: 1.1;
        text-transform: uppercase;
        color: var(--color-accent);
        font-size: 39px;
        font-weight: 700;
        font-family: var(--font-family-secondary);
        margin: 0 0 15px
    }

    @media (max-width: 1170px) {
        .fond__title {
            font-size:28px
        }
    }

    @media (max-width: 908px) {
        .fond__title {
            text-align:left
        }
    }

    .fond__period {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        margin: 0 0 48px
    }

    @media (max-width: 908px) {
        .fond__period {
            margin:0 0 24px;
            -webkit-box-pack: start;
            justify-content: flex-start
        }
    }

    .fond__head,.fond__period span {
        display: -webkit-box;
        display: flex
    }

    .fond__period span {
        background: var(--color-accent);
        height: 34px;
        padding: 0 20px;
        color: #fff;
        border-radius: 35px;
        -webkit-box-align: center;
        align-items: center;
        font-size: 19px;
        font-weight: 500
    }

    .fond__spacer {
        margin: 40px 0
    }

    .fond__head {
        gap: 64px;
        margin: 0 0 40px
    }

    @media (max-width: 1170px) {
        .fond__head {
            -webkit-box-orient:vertical;
            -webkit-box-direction: normal;
            flex-direction: column;
            gap: 32px
        }
    }

    .fond__about {
        -webkit-box-flex: 1;
        flex: auto
    }

    .fond__about .fond__title {
        text-align: left;
        margin: 0 0 40px
    }

    .fond__about .fond__period {
        display: inline-block;
        vertical-align: top;
        margin: 5px 0 0 15px
    }

    @media (max-width: 908px) {
        .fond__about .fond__period {
            display:table;
            margin: 5px 0 0
        }
    }

    .fond__about .fond__period span {
        font-family: var(--font-family)
    }

    .fond__desc {
        font-size: 24px
    }

    @media (max-width: 908px) {
        .fond__desc {
            font-size:16px
        }
    }

    .fond__quote {
        font-size: 24px;
        font-weight: 500;
        line-height: 1.5;
        width: 30%;
        -webkit-box-flex: 0;
        flex: none;
        color: var(--color-accent)
    }

    @media (max-width: 1170px) {
        .fond__quote {
            width:100%
        }
    }

    @media (max-width: 908px) {
        .fond__quote {
            font-size:18px;
            line-height: 1.3
        }
    }

    .fond__grid {
        display: grid;
        gap: 30px;
        grid-template-columns: repeat(3,1fr)
    }

    @media (max-width: 1170px) {
        .fond__grid {
            grid-template-columns:repeat(1,1fr)
        }
    }

    @media (max-width: 908px) {
        .fond__grid {
            gap:10px
        }
    }

    .fond__column img {
        border-radius: 8px;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        border: 2px solid var(--color-accent)
    }

    .fond__column:first-child {
        grid-row: 1/3;
        padding-right: 24px
    }

    @media (max-width: 1170px) {
        .fond__column:first-child {
            grid-row:initial;
            padding: 0
        }
    }

    .fond__column ul {
        list-style: none;
        padding: 0;
        margin: 0
    }

    .fond__column ul li {
        position: relative;
        font-size: 24px;
        font-weight: 700;
        padding-left: 30px
    }

    @media (max-width: 908px) {
        .fond__column ul li {
            font-size:16px;
            padding-left: 20px
        }
    }

    .fond__column ul li:not(:last-child) {
        margin: 0 0 12px
    }

    .fond__column ul li span {
        position: absolute;
        left: 0;
        top: 0
    }

    .hero__button a.button {
        color: #fff;
        border-radius: 10px;
        padding: 10px !important;
        display: block;
        height: auto;
        text-align: center;
        font-size: 24px;
    }

    .hero__button a.button:hover {
        text-decoration: none !important;
        background-color: #fff;
        color: #d57c14;
    }

    /*! Footer
-------------------
 */
    .footer {
        padding: 0 0 40px
    }

    .footer a {
        color: #fff
    }

    @media (max-width: 908px) {
        .footer {
            background:var(--color-accent);
            padding: 60px 0
        }
    }

    .footer__block {
        border-radius: 8px;
        color: #fff;
        background: var(--color-accent);
        padding: 45px 56px
    }

    @media (max-width: 1170px) {
        .footer__block {
            padding:20px 25px
        }
    }

    @media (max-width: 908px) {
        .footer__block {
            padding:0;
            border-radius: 0
        }
    }

    .footer__grid {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        gap: 32px
    }

    @media (max-width: 908px) {
        .footer__grid {
            -webkit-box-orient:vertical;
            -webkit-box-direction: normal;
            flex-direction: column;
            gap: 48px
        }

        .footer__logo {
            display: none
        }
    }

    .footer__column {
        line-height: 1.5;
        font-size: 15px
    }

    .footer__req p {
        margin: 0
    }

    .footer__item:not(:last-child) {
        margin: 0 0 24px
    }

    .footer__item strong {
        display: block;
        font-weight: 700
    }

    .footer__label {
        margin: 0 0 22px;
        letter-spacing: -.01em;
        font-size: 25px;
        font-weight: 700
    }

    .footer__doc {
        text-decoration: underline;
        font-weight: 700
    }

    .footer__doc:hover {
        text-decoration: none
    }

    html body a.button2 {
        display: inline-flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        font-family: var(--font-family);
        appearance: none;
        cursor: pointer;
        user-select: none;
        height: 52px;
        text-transform: uppercase;
        color: rgb(255, 255, 255);
        font-weight: 500;
        font-size: 23px;
        letter-spacing: 0.11em;
        background: var(--color-accent);
        border-width: 0px;
        border-style: initial;
        border-color: initial;
        border-image: initial;
        outline: 0px;
        transition: var(--transition);
        padding: 0px 34px;
        border-radius: 8px;
    }
}