* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
}

a,
label,
button {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

button {
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

figure {
    margin: 0;
    padding: 0;
}

figure img {
    max-width: 100%;
    vertical-align: top;
}

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

object {
    pointer-events: none;
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.logo a {
    display: inline-block;
}

.flex {
    display: flex;
}

.flex.wrap {
    flex-wrap: wrap;
}

.column {
    flex-direction: column;
}

.grid {
    display: grid;
}

.flex_1 {
    flex: 1;
}

.flex_0 {
    flex: 0 0 auto;
}

.al_top {
    align-items: flex-start;
}

.al_center {
    align-items: center;
}

.al_bottom {
    align-items: flex-end;
}

.just_center {
    justify-content: center;
}

.just_space {
    justify-content: space-between;
}

.just_end {
    justify-content: flex-end;
}

.txt_center {
    text-align: center;
}

.abs {
    position: absolute;
}

.abs_center {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.bg {
    background-position: center;
    background-size: cover;
}

.margin_auto {
    margin: 0 auto;
}

.underline {
    text-decoration: underline;
}

.lh_reset {
    line-height: 1;
}

.barlow {
    font-family: 'Barlow Condensed', sans-serif;
}

.mont {
    font-family: 'Montserrat', sans-serif;
}

.regular {
    font-weight: 400;
}

.semibold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.container {
    width: 90%;
    margin: 0 auto;
}

.header_logo a {
    display: inline-block;
}

.header_contacts {
    padding: 10px 5%;
}

.header_nav {
    padding: 20px 5%;
}

.nav_anchor,
.header_contact_tel_txt {
    font-size: 15px;
}

.nav_anchor {
    padding: 10px 0;
    letter-spacing: .2em;
    border-bottom: 1px solid transparent;
}

.nav_anchor.active {
    border-color: #88a65c;
}

.header_logo,
.nav_anchor:not(:last-child) {
    margin-right: 30px;
}

.header_contact_phone {
    margin-right: 40px;
}

.header_social:not(:last-child) {
    margin-right: 20px;
}

.header_contact_phone_txt {
    margin-left: 5px;
}

.header_banner_txt,
.button_txt {
    letter-spacing: .14em;
}

.header_banner_txt {
    font-size: 13px;
}

.button_txt {
    font-size: 14px;
    line-height: 1.5em;
}

.header_banner {
    padding: 15px 0;
}

.header_contacts object {
    filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(13deg) brightness(108%) contrast(101%);
}

.page_wrapper {
    min-height: calc(100vh - 43px - 174px);
    position: relative;
}

.page_txt_section,
.gallery_wrapper {
    padding: 20px 0 60px 0;
    background-image: url('../images/mountains.jpg');
}

.about_page .page_txt_section,
.gallery_wrapper {
    padding-top: 60px;
}

.gallery_page .page_txt_section {
    display: none;
}

.section_header {
    margin-bottom: 30px;
    position: relative;
}

.section_header h2 {
    font-size: 30px;
    line-height: 1.2em;
}

.page_txt {
    font-size: 16px;
    line-height: 1.8em;
}

.page_banner {
    padding-top: 60px;
    background-image: url('../images/page_banner.jpg');
    position: relative;
}

.about_page .page_banner,
.gallery_page .page_banner {
    background-image: url('../images/fotka-mobile.jpg');
}

.page_banner .container.page_banner_wrapper {
    position: relative;
}

.page_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #232323;
    opacity: .7;
    mix-blend-mode: darken;
}

.button_icon {
    margin-right: 10px;
}

.main_button {
    width: 100%;
    max-width: 460px;
    border-radius: 31px;
    border: 2px solid #eac736;
    padding: 18px 10px;
    display: table;
}

.main_button.flex {
    display: flex;
}

.page_banner .main_button:not(:last-child) {
    margin-bottom: 15px;
}

.page_footer {
    padding: 40px 0;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.page_footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #88a65c;
    opacity: .75;
    z-index: -1;
}

.footer_icon {
    margin-right: 20px;
}

.footer_txt {
    font-size: 20px;
    line-height: 1.6em;
}

.gallery_arrow {
    width: 15px;
    height: 35px;
}

.arrow_prev,
.arrow_next {
    background-image: url('../images/arrow_prev.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: all;
}

.arrow_next {
    transform: rotateY(180deg);
}

.gallery_content {
    overflow: hidden;
    padding: 5px;
    margin: 0 20px;
    pointer-events: all;
}

.gallery_slide {
    padding-top: 71.83%;
}

.gallery_wrapper {
    padding-left: 5%;
    padding-right: 5%;
    pointer-events: none;
}

.bg_cultured {
    background-color: #f5f6f6;
}

.color_cultured {
    color: #f5f6f6;
}

.bg_green {
    background-color: #88a65c;
}

.bg_yellow {
    background-color: #eac736;
}

.color_yellow {
    color: #eac736;
}

.color_gold {
    color: #c9b669;
}

.color_gray {
    color: #525252;
}

.color_white {
    color: #fff;
}

.color_dark {
    color: #161c18;
}

/* Small devices (landscape phones, 576px and up) */
@media only screen and (min-width: 576px) {
    .section_header h2 {
        font-size: 36px;
    }

    .header_logo,
    .nav_anchor:not(:last-child) {
        margin-right: 40px;
    }

    .header_banner_txt {
        font-size: 14px;
    }

    .page_wrapper {
        min-height: calc(100vh - 44px - 174px);
    }

    .gallery_arrow {
        width: 23px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .header_wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header {
        padding: 15px 0;
    }

    .header_wrapper {
        width: 90%;
        margin: 0 auto;
    }

    .header_nav {
        order: 1;
        padding: 0;
    }

    .header_contacts {
        order: 2;
        padding: 0;
        background-color: transparent;
    }

    .header_contacts object {
        filter: none;
    }

    .header_contact_phone_txt {
        color: #525252;
    }

    .header_logo,
    .nav_anchor:not(:last-child) {
        margin-right: 60px;
    }

    .page_wrapper {
        min-height: calc(100vh - 46px - 116px);
    }

    .header_banner_txt,
    .button_txt {
        font-size: 16px;
    }

    .gallery_content {
        padding: 10px;
    }
}

/* Large devices (desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .header_logo {
        margin-right: 90px;
    }

    .nav_anchor:not(:last-child) {
        margin-right: 70px;
    }

    .page_wrapper {
        flex-direction: row;
    }

    .page_wrapper:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: calc(67% + 100px);
        background-color: #f5f6f6;
        clip-path: polygon(0 0, calc(30% + 100px) 0, 100% 100%, calc(70% - 100px) 100%);
        z-index: 2;
        opacity: .2;
        pointer-events: none;
    }

    .page_txt_section {
        flex: 0 0 67%;
        clip-path: polygon(0 0, 32% 0, 100% 100%, 0% 100%);
        padding: 100px 0;
        position: relative;
        z-index: 3;
    }

    .about_page .page_txt_section {
        align-items: flex-end;
        padding-top: 300px;
    }

    .page_txt_section .container {
        width: 100%;
        padding-right: 32%;
        padding-left: 5vw;
    }

    .gallery_page .page_txt_section .container {
        padding-right: 0;
    }

    .page_txt_wrapper {
        width: 30vw;
        max-width: 480px;
    }

    .page_banner {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 0;
        margin-left: -46%;
    }

    .page_banner .container.page_banner_wrapper {
        width: 35vw;
        margin-right: 40px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 100px 0;
    }

    .page_footer {
        margin-top: 0;
    }

    .section_header.txt_center,
    .page_txt {
        text-align: left;
    }

    .page_banner .main_button {
        margin-left: 0;
    }

    .page_txt {
        max-width: 450px;
    }

    .page_footer .container {
        width: 100%;
    }

    .page_footer_wrapper {
        justify-content: flex-start;
        padding-left: 57%;
    }

    .section_header_icon {
        position: absolute;
        bottom: 0;
        left: -180px;
        z-index: -1;
    }

    .section_header {
        margin-bottom: 40px;
    }

    .page_banner .main_button:not(:last-child) {
        margin-bottom: 30px;
    }

    .about_page .page_banner,
    .gallery_page .page_banner {
        background-image: url('../images/fotka.jpg');
    }

    .page_footer::before {
        opacity: .95;
    }

    .gallery_content {
        flex: 0 0 37.5vw;
        margin: 0 30px;
    }

    .gallery_wrapper {
        padding: 0;
        background-image: none;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin-left: 5vw;
        z-index: 4;
    }

    .gallery_page .page_txt_section {
        display: block;
    }

    .arrow_next {
        transform: none;
        background-image: url('../images/arrow_next.png');
    }

    .h2_image {
        margin-left: -12vw;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .page_banner .container.page_banner_wrapper {
        width: auto;
    }

    .about_page .page_txt_section {
        padding-top: 200px;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media only screen and (min-width: 1400px) {

    .container,
    .header_wrapper {
        width: 80%;
    }

    .gallery_wrapper {
        margin-left: 10vw;
    }

    .page_banner .container.page_banner_wrapper {
        margin-right: 100px;
    }

    .h2_image {
        margin-left: -160px;
    }
}

@media only screen and (min-width: 1800px) {
    .page_txt_section .container {
        padding-left: 10vw;
    }

    .header_banner_txt,
    .button_txt {
        font-size: 17px;
    }

    .section_header h2 {
        font-size: 50px;
    }

    .page_txt {
        font-size: 19px;
    }

    .footer_txt {
        font-size: 23px;
    }

    .page_wrapper {
        min-height: calc(100vh - 47px - 116px);
    }
}