html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    scroll-behavior: smooth
}

*,
*::before,
*::after {
    box-sizing: inherit
}

a {
    text-decoration: none;
    display: inline-block;
    color: #fff
}

li,
ul {
    margin: 0;
    padding: 0;
    list-style: none
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    line-height: 100%;
    margin: 0;
    background-color: #1D1D1B;
    transition: all 0.4s cubic-bezier(0.5, 0.02, 0.13, 0.5)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    line-height: 100%
}

::-moz-selection {
    background: #fff;
    color: #1D1D1B
}

::selection {
    background: #fff;
    color: #1D1D1B
}

.container {
    max-width: 1190px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%
}

@font-face {
    font-family: 'Rakkas';
    src: url("../fonts/Rakkas-Regular.woff2") format("woff2"), url("../fonts/Rakkas-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal
}

.header {
    position: fixed;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 9
}

.header::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 0;
    background-color: #111110;
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.5, 0.02, 0.13, 0.5)
}

.header.fixed:before {
    height: calc(52px + 105px)
}

@media (max-width: 1050px) {
    .header.fixed:before {
        height: calc(52px + 52px)
    }
}

nav.header__navbar .navbar {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1050px) {
    nav.header__navbar .navbar {
        margin-top: 0
    }
}

nav.header__navbar .navbar .menu {
    display: block
}

nav.header__navbar .navbar .logo {
    z-index: 102
}

nav.header__navbar .navbar .menu__list {
    display: flex;
    align-items: center;
    z-index: 1
}

nav.header__navbar .navbar .menu__list-item {
    margin-right: 40px;
    position: relative;
    z-index: 1
}

nav.header__navbar .navbar .menu__list-item:last-child {
    margin-right: 0
}

nav.header__navbar .navbar .menu__list-item a.active-menu {
    color: #D6A43B
}

nav.header__navbar .navbar .menu__list-item a {
    font-family: 'Rakkas';
    font-weight: 400;
    font-size: 16px;
    position: relative;
    transition: all 0.8s ease;
    color: #fff
}

nav.header__navbar .navbar .menu__list-item a:hover {
    color: #D6A43B
}

.burger {
    display: none;
    cursor: pointer
}

.menu__list.active {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 0;
    min-height: 100vh;
    top: -12px;
    bottom: -100px;
    left: 0;
    background-color: #1D1D1B;
    z-index: 101 !important;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center
}

.menu__list.active a {
    padding: 15px;
    font-size: 24px
}

.menu__list.active a::before {
    display: none
}

.menu__list.active a:hover:before {
    width: 0
}

@media (max-width: 1050px) {
    .burger {
        display: block;
        position: relative;
        height: 20px;
        width: 30px;
        z-index: 102;
        cursor: pointer
    }

    .burger.active-burger:before {
        background: #D6A43B;
        transform: rotate(45deg);
        transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s all;
        top: 8px
    }

    .burger.active-burger:after {
        background: #D6A43B;
        transform: rotate(-45deg);
        bottom: 10px;
        transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s all
    }

    .burger.active-burger span {
        transform: scale(0)
    }

    .burger:before,
    .burger:after {
        content: "";
        position: absolute;
        height: 2px;
        width: 100%;
        background: #D6A43B;
        transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s all
    }

    .burger:before {
        top: 0
    }

    .burger::after {
        bottom: 0
    }

    .burger span {
        position: absolute;
        top: 9px;
        right: 0;
        width: 100%;
        background: #D6A43B;
        height: 2px;
        transform: scale(1);
        transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.5s all
    }

    .menu__list {
        position: absolute;
        top: -400%
    }

    .menu__list-item {
        margin-right: 0 !important
    }

    .menu__list-item a {
        font-size: 25px !important
    }
}

.contact-link {
    font-family: 'Rakkas';
    font-weight: 400;
    font-size: 16px;
    padding: 17px 20px;
    border: 1px solid #D7A846;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    position: relative;
    z-index: 1
}

.contact-link::before {
    content: "";
    position: absolute;
    width: 85%;
    height: 1px;
    background: #D6A43B;
    bottom: -6px;
    left: 7%;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.5, 0.02, 0.13, 0.5)
}

.contact-link::after {
    content: "";
    position: absolute;
    width: 85%;
    height: 1px;
    background: #D6A43B;
    top: -6px;
    left: 7%;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.5, 0.02, 0.13, 0.5)
}

.contact-link:hover {
    background-color: #D7A846
}

@media (max-width: 1050px) {
    .contact-link {
        display: none
    }
}

.contact-link-menu {
    display: none
}

@media (max-width: 1050px) {
    .contact-link-menu {
        display: block
    }
}

.button {
    font-family: 'Rakkas';
    font-weight: 400;
    font-size: 16px;
    padding: 17px 20px;
    border: 1px solid #D7A846;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
    position: relative;
    z-index: 1
}

.button::before {
    content: "";
    position: absolute;
    width: 85%;
    height: 1px;
    background: #D6A43B;
    bottom: -6px;
    left: 7%;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.5, 0.02, 0.13, 0.5)
}

.button::after {
    content: "";
    position: absolute;
    width: 85%;
    height: 1px;
    background: #D6A43B;
    top: -6px;
    left: 7%;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.5, 0.02, 0.13, 0.5)
}

.button:hover {
    background-color: #D7A846
}

.title {
    font-family: 'Rakkas';
    font-weight: 400;
    font-size: 55px;
    color: #D6A43B
}

@media (max-width: 1190px) {
    .title {
        font-size: calc(30px + (55 - 30) * ((100vw - 320px) / (1190 - 320)))
    }
}

.hero {
    padding: 300px 0 170px;
    background-image: url(../images/hero-background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100%
}

@media (max-width: 1190px) {
    .hero {
        padding-top: calc(100px + (300 - 100) * ((100vw - 320px) / (1190 - 320)));
        padding-bottom: calc(50px + (170 - 50) * ((100vw - 320px) / (1190 - 320)))
    }
}

.hero__background-holder {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    pointer-events: none
}

@media (max-width: 1280px) {
    .hero__background-holder {
        display: none
    }
}

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

.hero__background-holder--right {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 19%;
    pointer-events: none
}

@media (max-width: 1280px) {
    .hero__background-holder--right {
        display: none
    }
}

.hero__background-holder--right img {
    max-width: 100%;
    height: auto
}

.hero__info {
    text-align: center
}

.hero__title {
    font-family: 'Rakkas';
    font-weight: 400;
    font-size: 105px;
    line-height: 100%;
    margin-bottom: 25px;
    color: #D6A43B
}

@media (max-width: 1190px) {
    .hero__title {
        font-size: calc(50px + (105 - 50) * ((100vw - 320px) / (1190 - 320)))
    }
}

.hero__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    max-width: 300px;
    margin: 0 auto 45px
}

@media (max-width: 1190px) {
    .hero__description {
        margin-bottom: calc(30px + (45 - 30) * ((100vw - 320px) / (1190 - 320)))
    }
}

.introducing {
    padding: 100px 0 10px;
    /* margin-left: 21% */
}

@media (max-width: 1050px) {
    .introducing {
        margin-left: 0;
        padding: 80px 0 10px;
        margin-top: -50px
    }
}

.introducing__background-holder {
    position: absolute;
    z-index: 0;
    left: 14%;
    top: 52%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    max-width: 494px;
    max-height: 457px
}

@media (max-width: 1050px) {
    .introducing__background-holder {
        display: none
    }
}

.introducing__background-holder img {
    max-width: 100%;
    height: auto;
    transform: rotate(22deg)
}

.introducing__scroll {
    position: absolute;
    left: -15%;
    bottom: 0
}

@media (max-width: 1050px) {
    .introducing__scroll {
        display: none
    }
}

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

.introducing__info {
    /* background-color: #161615; */
    padding: 220px 0px 100px 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    place-items: center;
}

@media (max-width: 1050px) {
    .introducing__info {
        padding: 100px 20px 80px 20px;
        text-align: center
    }
}

.introducing__title {
    margin-bottom: 45px
}

.introducing__info-wrapper {
    display: flex
}

@media (max-width: 1050px) {
    .introducing__info-wrapper {
        flex-direction: column
    }
}

.introducing__info-image {
    margin-right: 45px
}

@media (max-width: 1050px) {
    .introducing__info-image {
        margin-right: 0;
        margin-bottom: 30px
    }
}

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

.introducing__info-text {
    max-width: 430px;
    line-height: 150%
}

@media (max-width: 1050px) {
    .introducing__info-text {
        margin: 0 auto
    }
}

.introducing__info-link {
    margin-top: 30px
}

.introducing__info-community {
    margin-top: 90px
}

.introducing__info-community-title {
    font-family: 'Rakkas';
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 50px
}

@media (max-width: 1190px) {
    .introducing__info-community-title {
        font-size: calc(30px + (40 - 30) * ((100vw - 320px) / (1190 - 320)))
    }
}

.introducing .social-links {
    justify-content: start
}

@media (max-width: 1050px) {
    .introducing .social-links {
        justify-content: center
    }
}

.introducing .social-links-item {
    height: 80px;
    width: 80px
}

@media (max-width: 550px) {
    .introducing .social-links-item {
        height: 60px;
        width: 60px
    }
}

.social-links {
    display: flex;
    justify-content: center
}

.social-links-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 90px;
    border: 1px solid #D7A846;
    transform: rotate(-45deg);
    transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5)
}

.social-links-item img {
    transform: rotate(45deg)
}

.social-links-item:hover {
    background-color: #D7A846
}

.social-links a+a {
    margin-left: 16px
}

.how {
    padding: 120px 0 100px;
    position: relative
}

@media (max-width: 1190px) {
    .how {
        padding-top: calc(80px + (120 - 80) * ((100vw - 320px) / (1190 - 320)));
        padding-bottom: calc(40px + (100 - 40) * ((100vw - 320px) / (1190 - 320)))
    }
}

.how__background-holder {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 20%;
    pointer-events: none
}

@media (max-width: 1280px) {
    .how__background-holder {
        display: none
    }
}

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

.how__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between
}

@media (max-width: 1050px) {
    .how__wrapper {
        flex-direction: column-reverse
    }
}

.how__info {
    max-width: 334px;
    position: relative
}

@media (max-width: 1050px) {
    .how__info {
        margin: 0 auto 60px;
        text-align: center
    }
}

.how__title {
    margin-bottom: 32px;
    line-height: 100%
}

.how__description {
    line-height: 150%
}

@media (max-width: 1050px) {
    .how__description {
        text-align: left
    }
}

.how__link {
    margin-top: 30px
}

.how__image {
    max-width: 534px;
    max-height: 454px
}

@media (max-width: 1050px) {
    .how__image {
        margin: 0 auto 60px;
        text-align: center
    }
}

.how__image img {
    max-width: 100%;
    height: auto;
    transform: translateY(-15%)
}

.properties {
    padding: 100px 0 300px;
    background-color: #161615;
    position: relative
}

@media (max-width: 1050px) {
    .properties {
        padding: 80px 0 50px
    }
}

.properties__background-holder {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 30%;
    pointer-events: none
}

@media (max-width: 1280px) {
    .properties__background-holder {
        display: none
    }
}

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

.properties__background-holder--right {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 5%;
    pointer-events: none
}

@media (max-width: 1280px) {
    .properties__background-holder--right {
        display: none
    }
}

.properties__background-holder--right img {
    max-width: 100%;
    height: auto
}

.properties__background-holder-line {
    position: absolute;
    z-index: 0;
    bottom: -1%;
    left: 16%;
    pointer-events: none
}

@media (max-width: 1050px) {
    .properties__background-holder-line {
        display: none
    }
}

.properties__title-image {
    text-align: center;
    margin-bottom: 50px
}

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

.properties__title {
    text-align: center;
    margin-bottom: 90px
}

@media (max-width: 1050px) {
    .properties__title {
        margin-bottom: 50px
    }
}

.properties__wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    margin-left: 100px
}

@media (max-width: 1050px) {
    .properties__wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 0
    }
}

.properties__item {
    flex: 0 0 50%;
    padding: 50px
}

@media (max-width: 1050px) {
    .properties__item {
        padding: 10px
    }
}

@media (max-width: 1050px) {
    .properties__item+.properties__item {
        margin-top: 40px
    }
}

.properties__item-title {
    font-family: 'Rakkas';
    font-weight: 400;
    font-size: 32px;
    line-height: 110%;
    color: #D6A43B
}

.properties__item-text {
    font-size: 20px;
    line-height: 171%;
    max-width: 333px
}

.properties__item-link {
    margin-top: 20px
}

.footer {
    padding: 250px 0 50px;
    position: relative
}

@media (max-width: 1190px) {
    .footer {
        padding-top: calc(1px + (250 - 1) * ((100vw - 320px) / (1190 - 320)));
        padding-bottom: calc(30px + (50 - 30) * ((100vw - 320px) / (1190 - 320)))
    }
}

.footer__background-holder {
    position: absolute;
    z-index: 0;
    left: 50%;
    top: -10%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    max-width: 494px;
    max-height: 457px
}

@media (max-width: 1050px) {
    .footer__background-holder {
        position: static;
        transform: none;
        text-align: center;
        margin: 0 auto
    }
}

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

@media (max-width: 1050px) {
    .footer__background-holder img {
        max-width: 60%;
        height: auto
    }
}

@media (max-width: 580px) {
    .footer .social-links-item {
        height: 60px;
        width: 60px
    }
}

@media (max-width: 440px) {
    .footer .social-links-item {
        height: 50px;
        width: 50px
    }
}

.footer__text {
    text-align: center;
    font-size: 14px;
    line-height: 171%;
    color: rgba(255, 255, 255, 0.24);
    margin-top: 70px
}