@charset "UTF-8";
:root {
    --primary: #c9a97e;
    --primary-dark: #8b6f47;
    --dark: #2c2420;
    --gray: #7a7067;
    --light: #f5f1ed;
    --beige: #e5d5c3;
    --white: #ffffff;
    --black: #000000;
    --bg: #fdfcfa
}

*, ::after, ::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    min-width: 0;
    min-height: 0
}

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

li, p, ul {
    margin: 0;
    padding: 0
}

ul {
    list-style: none
}

button {
    background: 0 0;
    border: none;
    cursor: pointer
}

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

img {
    max-width: 100%;
    display: block
}

html {
    scroll-behavior: smooth;
    height: 100%
}

body {
    font-family: Assistant, sans-serif;
    background-color: #fdfcfa;
    color: #2c2420;
    height: 100%
}

body.no-scroll {
    overflow: hidden
}

.container {
    width: 100%
}

#wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%
}

#wrapper header {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

#wrapper main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
}

#wrapper footer {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px
}

.load {
    opacity: 0;
    -webkit-transition: opacity .4s;
    transition: opacity .4s
}

.load.ready {
    opacity: 1
}

.title {
    font-family: Heebo, sans-serif;
    font-weight: 700;
    color: #2c2420;
    line-height: 1.2
}

.text {
    font-family: Assistant, sans-serif;
    font-weight: 300;
    color: #7a7067;
    line-height: 1.7
}

.breadcrumb {
    width: 100%;
    overflow-x: auto
}

.breadcrumb-section {
    width: 100%;
    padding: 16px 0;
    background: #f5f1ed
}

.breadcrumb-section .container {
    max-width: 1528px
}

.breadcrumb-section ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px
}

.breadcrumb-section ul li a, .breadcrumb-section ul li span {
    font-size: 14px;
    font-weight: 600;
    color: #2c2420
}

.breadcrumb-section ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    color: #7a7067;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.breadcrumb-section ul li a::after {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M10 4L6 8L10 12" stroke="%237A7067" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M10 4L6 8L10 12" stroke="%237A7067" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    width: 16px;
    height: 16px;
    display: inline-block;
    content: "";
    background: #7a7067;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.breadcrumb-section ul li a:hover {
    color: #2c2420
}

.breadcrumb-section ul li a:hover::after {
    background: #2c2420
}

.page-hero {
    background: #f5f1ed;
    padding: 140px 0 0
}

.page-hero .container {
    max-width: 1528px
}

.page-hero__inner {
    width: 100%;
    padding: 64px 0
}

.page-hero__title {
    font-family: Heebo, sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #2c2420;
    line-height: 1;
    margin-bottom: 20px;
    text-align: center;
    width: 100%
}

.page-hero__subtitle {
    font-family: Assistant, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #7a7067;
    width: 100%;
    text-align: center;
    line-height: 1.6
}

@media screen and (max-width: 1400px) {
    .page-hero__title {
        font-size: 38px
    }
}

@media screen and (max-width: 992px) {
    .page-hero {
        padding: 133px 0 0
    }

    .page-hero__title {
        font-size: 32px
    }
}

@media screen and (max-width: 768px) {
    .page-hero__title {
        font-size: 28px
    }

    .page-hero__subtitle {
        font-size: 18px
    }
}

@media screen and (max-width: 576px) {
    .page-hero__title {
        font-size: 28px
    }
}

.slick-arrow {
    width: 48px;
    aspect-ratio: 1/1;
    height: auto;
    border-radius: 50%;
    border: 1px solid #000;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    cursor: pointer;
    color: rgba(255, 255, 255, 0) !important
}

.slick-arrow::before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M12.0078 4.68652C12.0934 4.68658 12.1668 4.71285 12.249 4.79492C12.3313 4.88086 12.3574 4.95797 12.3574 5.04395C12.3573 5.13079 12.3308 5.20478 12.249 5.28711L5.8877 11.6484H19.2979C19.4194 11.6485 19.4945 11.6838 19.5586 11.7471C19.6207 11.8084 19.6553 11.8801 19.6553 12C19.6553 12.1199 19.6207 12.1916 19.5586 12.2529C19.4945 12.3162 19.4194 12.3515 19.2979 12.3516H5.8877L12.2432 18.707V18.7061C12.3254 18.7885 12.3537 18.8653 12.3545 18.957V18.958C12.355 19.0245 12.3404 19.0829 12.2988 19.1426L12.2471 19.2041C12.1671 19.2851 12.0939 19.3113 12.0049 19.3105C11.9104 19.3096 11.8321 19.2796 11.749 19.1973L4.80078 12.249C4.74762 12.1949 4.72192 12.1527 4.70996 12.124V12.123C4.69485 12.0867 4.68652 12.0466 4.68652 11.999C4.68655 11.9514 4.69516 11.9123 4.70996 11.877V11.876C4.72183 11.8475 4.74729 11.8051 4.80078 11.751L11.751 4.80078C11.8414 4.71356 11.9211 4.68652 12.0078 4.68652Z" fill="black" stroke="black"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M12.0078 4.68652C12.0934 4.68658 12.1668 4.71285 12.249 4.79492C12.3313 4.88086 12.3574 4.95797 12.3574 5.04395C12.3573 5.13079 12.3308 5.20478 12.249 5.28711L5.8877 11.6484H19.2979C19.4194 11.6485 19.4945 11.6838 19.5586 11.7471C19.6207 11.8084 19.6553 11.8801 19.6553 12C19.6553 12.1199 19.6207 12.1916 19.5586 12.2529C19.4945 12.3162 19.4194 12.3515 19.2979 12.3516H5.8877L12.2432 18.707V18.7061C12.3254 18.7885 12.3537 18.8653 12.3545 18.957V18.958C12.355 19.0245 12.3404 19.0829 12.2988 19.1426L12.2471 19.2041C12.1671 19.2851 12.0939 19.3113 12.0049 19.3105C11.9104 19.3096 11.8321 19.2796 11.749 19.1973L4.80078 12.249C4.74762 12.1949 4.72192 12.1527 4.70996 12.124V12.123C4.69485 12.0867 4.68652 12.0466 4.68652 11.999C4.68655 11.9514 4.69516 11.9123 4.70996 11.877V11.876C4.72183 11.8475 4.74729 11.8051 4.80078 11.751L11.751 4.80078C11.8414 4.71356 11.9211 4.68652 12.0078 4.68652Z" fill="black" stroke="black"/></svg>');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    background: #000;
    display: inline-block;
    content: "" !important;
    width: 24px;
    aspect-ratio: 1/1;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.slick-arrow:hover {
    background: #000
}

.slick-arrow:hover::before {
    background: #fff
}

.slick-arrow.slick-prev::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.slick-dots li {
    width: 9px;
    height: 9px;
    padding: 0
}

.slick-dots li button {
    padding: 0;
    width: auto;
    height: auto
}

.slick-dots li button::before {
    width: 9px;
    height: auto;
    aspect-ratio: 1/1;
    background: #000;
    line-height: 0;
    font-size: 0;
    border-radius: 50%
}

.btn {
    font-family: Heebo, sans-serif;
    font-size: 20px;
    font-weight: 400;
    padding: 12px 30px;
    border-radius: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    cursor: pointer;
    white-space: nowrap
}

.btn--primary {
    background-color: #c9a97e;
    color: #fff;
    border: 2px solid #c9a97e
}

.btn--primary:hover {
    background-color: #8b6f47;
    border-color: #8b6f47
}

.btn--outline {
    background-color: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1px solid #fff
}

.btn--outline:hover {
    background-color: #fff;
    color: #2c2420
}

.btn--outline-light {
    background-color: rgba(255, 255, 255, 0);
    color: #2c2420;
    border: 1px solid #c9a97e
}

.btn--outline-light:hover {
    background-color: #c9a97e;
    color: #fff
}

.btn--white {
    background-color: #fff;
    color: #2c2420;
    border: 1px solid #fff
}

.btn--white:hover {
    background-color: rgba(255, 255, 255, .1);
    color: #2c2420
}

.btn--outline-dark {
    background-color: transparent;
    color: #2c2420;
    border: 2px solid #2c2420
}

.btn--outline-dark:hover {
    background-color: #2c2420;
    color: #fff
}

.btn--whatsapp {
    background-color: #c9a97e;
    color: #fff;
    border: 2px solid #c9a97e
}

.btn--whatsapp::before {
    width: 18px;
    aspect-ratio: 1/1;
    display: inline-block;
    content: "";
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><g clip-path="url(%23clip0_3054_62278)"><path d="M5.92425 14.9984C7.3555 15.7326 9.00191 15.9315 10.5668 15.5592C12.1317 15.1868 13.5122 14.2679 14.4595 12.9678C15.4067 11.6677 15.8585 10.0721 15.7334 8.46835C15.6083 6.86465 14.9145 5.35836 13.7771 4.22092C12.6397 3.08349 11.1334 2.38971 9.52966 2.26459C7.92596 2.13948 6.3303 2.59128 5.03023 3.53855C3.73016 4.48583 2.81117 5.8663 2.43886 7.4312C2.06656 8.9961 2.26542 10.6425 2.99962 12.0738L1.49982 16.4982L5.92425 14.9984Z" stroke="white" stroke-width="1.49981" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_3054_62278"><rect width="17.9977" height="17.9977" fill="white"/></clipPath></defs></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><g clip-path="url(%23clip0_3054_62278)"><path d="M5.92425 14.9984C7.3555 15.7326 9.00191 15.9315 10.5668 15.5592C12.1317 15.1868 13.5122 14.2679 14.4595 12.9678C15.4067 11.6677 15.8585 10.0721 15.7334 8.46835C15.6083 6.86465 14.9145 5.35836 13.7771 4.22092C12.6397 3.08349 11.1334 2.38971 9.52966 2.26459C7.92596 2.13948 6.3303 2.59128 5.03023 3.53855C3.73016 4.48583 2.81117 5.8663 2.43886 7.4312C2.06656 8.9961 2.26542 10.6425 2.99962 12.0738L1.49982 16.4982L5.92425 14.9984Z" stroke="white" stroke-width="1.49981" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_3054_62278"><rect width="17.9977" height="17.9977" fill="white"/></clipPath></defs></svg>');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    background: #fff;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.btn--whatsapp img {
    display: none
}

.btn--whatsapp:hover {
    background-color: #8b6f47;
    border-color: #8b6f47
}

.patent-seal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #c9a97e;
    background-color: #fff;
    padding: 10px;
    text-align: center;
    gap: 4px
}

.patent-seal__bot, .patent-seal__top {
    font-family: Heebo, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #8b6f47;
    line-height: 1.3
}

.patent-seal__img {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block
}

.patent-seal__mid {
    font-size: 18px;
    color: #c9a97e
}

.patent-seal--large {
    width: 192px;
    height: 192px
}

.patent-seal--large .patent-seal__bot, .patent-seal--large .patent-seal__top {
    font-size: 14px
}

.patent-seal--large .patent-seal__img {
    width: 64px;
    height: 64px
}

.patent-seal--large .patent-seal__mid {
    font-size: 24px
}

.patent-seal--dark {
    background-color: rgba(255, 255, 255, .15);
    border-color: #fff
}

.patent-seal--dark .patent-seal__bot, .patent-seal--dark .patent-seal__mid, .patent-seal--dark .patent-seal__top {
    color: #fff
}

.patent-seal--gold {
    background: linear-gradient(135deg, #c9a97e 0, #8b6f47 100%);
    border-color: #8b6f47
}

.patent-seal--gold .patent-seal__bot, .patent-seal--gold .patent-seal__mid, .patent-seal--gold .patent-seal__top {
    color: #fff
}

.form__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px
}

.form__field .wpcf7-form-control-wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.form__field:has(input.wpcf7-not-valid)::before {
    opacity: 1
}

.form__field:has(input.wpcf7-not-valid) input {
    border-color: red
}

.form__field .wpcf7-not-valid-tip {
    display: none
}

.form__label {
    font-family: Assistant, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2c2420
}

.form__input, .form__textarea {
    font-family: Assistant, sans-serif;
    font-size: 16px;
    color: #2c2420;
    background-color: #fff;
    border: 1px solid #d1d5dc;
    border-radius: 4px;
    padding: 12px 16px;
    -webkit-transition: border-color .2s;
    transition: border-color .2s;
    outline: 0;
    width: 100%;
    font-weight: 400;
    text-align: right
}

.form__input:focus, .form__textarea:focus {
    border-color: #c9a97e
}

.form__input::-webkit-input-placeholder, .form__textarea::-webkit-input-placeholder {
    color: rgba(44, 36, 32, .5)
}

.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
    color: rgba(44, 36, 32, .5)
}

.form__input:-ms-input-placeholder, .form__textarea:-ms-input-placeholder {
    color: rgba(44, 36, 32, .5)
}

.form__input::-ms-input-placeholder, .form__textarea::-ms-input-placeholder {
    color: rgba(44, 36, 32, .5)
}

.form__input::placeholder, .form__textarea::placeholder {
    color: rgba(44, 36, 32, .5)
}

.form__textarea {
    resize: vertical;
    min-height: 118px
}

.form__submit {
    margin-top: 8px;
    width: 100%;
    font-size: 18px;
    padding: 16px 32px
}

.blog-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    margin-top: 60px
}

.pagination__btn, .pagination__num {
    font-family: Heebo, sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1.5px solid #e5d5c3;
    background-color: #fff;
    color: #2c2420;
    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s
}

.pagination__num {
    width: 44px;
    height: 44px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 8px
}

.pagination__num:hover {
    border-color: #c9a97e;
    color: #c9a97e
}

.pagination__num.active {
    background-color: #c9a97e;
    border-color: #c9a97e;
    color: #fff
}

.pagination__btn:hover:not(:disabled) {
    border-color: #c9a97e;
    color: #c9a97e
}

.pagination__btn:disabled {
    opacity: .4;
    cursor: not-allowed
}

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background-color: #000;
    -webkit-transition: background-color .3s, -webkit-box-shadow .3s;
    transition: background-color .3s, -webkit-box-shadow .3s;
    transition: background-color .3s, box-shadow .3s;
    transition: background-color .3s, box-shadow .3s, -webkit-box-shadow .3s
}

.header.scrolled {
    background-color: #2c2420;
    -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .3)
}

.header__inner {
    width: 100%
}

.header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
    padding: 22px 60px;
    max-width: 1592px;
    margin-left: auto;
    margin-right: auto
}

.header__logo img {
    height: 44px;
    width: auto
}

.header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.header__nav > ul {
    margin-left: auto;
    margin-right: auto
}

.header__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px
}

.header__nav ul a {
    font-family: Heebo, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, .85);
    -webkit-transition: color .2s;
    transition: color .2s;
    position: relative
}

.header__nav ul a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: 0;
    left: 0;
    height: 1px;
    background-color: #c9a97e;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform .25s ease;
    transition: -webkit-transform .25s ease;
    transition: transform .25s ease;
    transition: transform .25s ease, -webkit-transform .25s ease
}

.header__nav ul a.active::after, .header__nav ul a:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

.header__nav ul a:hover {
    color: #c9a97e
}

.header__nav-button {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.header__nav.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 133px;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #2c2420;
    padding: 100px 40px 40px;
    z-index: 99;
    gap: 32px
}

.header__nav.open ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.header__nav.open ul a {
    color: rgba(255, 255, 255, .85);
    font-size: 24px
}

.header__menu {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 6px
}

.header__menu strong, .header__menu strong::after, .header__menu strong::before {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
    content: ""
}

.header__menu strong {
    position: relative
}

.header__menu strong::before {
    position: absolute;
    top: -7px
}

.header__menu strong::after {
    position: absolute;
    top: 7px
}

.header.scrolled .header__menu strong, .header.scrolled .header__menu strong::after, .header.scrolled .header__menu strong::before {
    background-color: #fff
}

.header__promo {
    background-color: #c9a97e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px
}

.header__promo span {
    font-family: Assistant, sans-serif;
    font-size: 14px;
    color: #fff;
    text-align: center
}

@media screen and (max-width: 1400px) {
    .header__wrapper {
        padding: 22px 40px
    }
}

@media screen and (max-width: 992px) {
    .header__nav {
        display: none
    }

    .header__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.footer {
    background-color: #000;
    width: 100%
}

.footer__inner {
    padding: 80px 0
}

.footer .container {
    max-width: 1388px
}

.footer__logo {
    height: 84px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.footer__logo a, .footer__logo img {
    height: 100%;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer__brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    max-width: 445px
}

.footer__desc {
    font-family: Assistant, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7
}

.footer__col-heading {
    font-family: Heebo, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 24px
}

.footer__nav {
    max-width: 300px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.footer__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    width: 100%
}

.footer__nav ul a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, .7);
    -webkit-transition: color .2s;
    transition: color .2s
}

.footer__nav ul a:hover {
    color: #c9a97e
}

.footer__social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

.footer__social ul a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    -webkit-transition: border-color .2s, background-color .2s;
    transition: border-color .2s, background-color .2s
}

.footer__social ul a:hover {
    border-color: #c9a97e;
    background-color: rgba(201, 169, 126, .1)
}

.footer__social ul img {
    width: 20px;
    height: 20px
}

.footer__brand-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 12px
}

.footer__brand-socials a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .1);
    -webkit-transition: background-color .2s;
    transition: background-color .2s
}

.footer__brand-socials a:hover {
    background-color: rgba(201, 169, 126, .25)
}

.footer__brand-socials img {
    width: 18px;
    height: 18px
}

.footer__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0
}

.footer__rights {
    font-family: Assistant, sans-serif;
    font-size: 14px;
    color: #fff
}

.footer__rights a {
    color: #fff;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.footer__rights a:hover {
    color: #c9a97e
}

.footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px
}

.footer__links a {
    font-family: Assistant, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    -webkit-transition: color .2s;
    transition: color .2s
}

.footer__links a:hover {
    color: #c9a97e
}

@media screen and (max-width: 1200px) {
    .footer__top {
        gap: 50px
    }
}

@media screen and (max-width: 992px) {
    .footer__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        grid-template-columns:1fr 1fr;
        gap: 40px
    }

    .footer__inner {
        padding: 40px 0
    }

    .footer__logo {
        height: 60px
    }

    .footer__brand {
        grid-column: 1/-1;
        width: 100%
    }

    .footer__social ul {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

@media screen and (max-width: 768px) {
    .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center
    }
}

@media screen and (max-width: 576px) {
    .footer__top {
        grid-template-columns:1fr
    }

    .footer__brand-socials {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #e5d5c3 0, #c9a97e 60%, #8b6f47 100%);
    position: relative;
    overflow: hidden
}

.hero__inner {
    padding-top: 140px;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.hero__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
    width: 100%
}

.hero__badge {
    width: 193px;
    aspect-ratio: 1/1;
    margin-right: -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.hero__badge .im {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.hero__badge .im img {
    width: 100%;
    height: auto
}

.hero__bg {
    width: 100%;
    height: 100%;
    padding-top: inherit;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.hero__bg-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.hero__bg-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.hero .container {
    max-width: 1720px;
    position: relative;
    z-index: 2
}

.hero__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0
}

.hero__title {
    font-family: Heebo, sans-serif;
    font-size: 96px;
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    max-width: 705px;
    margin-bottom: 11px
}

.hero__subtitle {
    font-family: Assistant, sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, .85);
    line-height: 1.6;
    max-width: 675px
}

.hero__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 26px
}

.hero__buttons .btn--primary::after {
    width: 16px;
    height: 16px;
    display: inline-block;
    content: "";
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M12.6582 7.99428H3.33105" stroke="white" stroke-width="1.33245" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.99609 12.6583L3.33252 7.99477L7.99609 3.33119" stroke="white" stroke-width="1.33245" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M12.6582 7.99428H3.33105" stroke="white" stroke-width="1.33245" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.99609 12.6583L3.33252 7.99477L7.99609 3.33119" stroke="white" stroke-width="1.33245" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    background: #fff;
    -webkit-transition: all .25s ease;
    transition: all .25s ease
}

@media screen and (max-width: 1400px) {
    .hero__title {
        font-size: 60px;
        max-width: 440px
    }

    .hero__badge {
        width: 160px;
        margin-right: 0
    }

    .hero__subtitle {
        font-size: 22px
    }
}

@media screen and (max-width: 1200px) {
    .hero__title {
        font-size: 52px;
        max-width: 480px
    }

    .hero__subtitle {
        font-size: 20px
    }

    .hero__content {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
        flex: 0 0 48%;
        max-width: 48%
    }

    .hero__bg::after {
        width: 100%;
        height: 100%;
        content: "";
        display: inline-block;
        background: rgba(0, 0, 0, .3);
        position: absolute;
        top: 0;
        left: 0
    }
}

@media screen and (max-width: 992px) {
    .hero__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 40px 0 60px
    }

    .hero__inner {
        padding-top: 133px
    }

    .hero__content {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        max-width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center
    }

    .hero__subtitle {
        max-width: 100%
    }
}

@media screen and (max-width: 768px) {
    .hero__title {
        font-size: 40px
    }

    .hero__subtitle {
        font-size: 18px
    }
}

@media screen and (max-width: 576px) {
    .hero__title {
        font-size: 32px
    }

    .hero__buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }

    .hero__buttons .btn {
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.features {
    background-color: #fff
}

.features__inner {
    padding: 128px 0
}

.features__title {
    text-align: center;
    margin-bottom: 60px
}

.features__title .title {
    font-size: 60px
}

.features__list .list {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px
}

.features__list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 40px 24px;
    border-radius: 16px;
    -webkit-transition: -webkit-transform .3s, -webkit-box-shadow .3s;
    transition: -webkit-transform .3s, -webkit-box-shadow .3s;
    transition: transform .3s, box-shadow .3s;
    transition: transform .3s, box-shadow .3s, -webkit-transform .3s, -webkit-box-shadow .3s
}

.features__list .item:hover {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 12px 40px rgba(44, 36, 32, .1);
    box-shadow: 0 12px 40px rgba(44, 36, 32, .1)
}

.features__list .item__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f5f1ed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.features__list .item__icon img {
    width: 36px;
    height: 36px
}

.features__list .item__title {
    font-family: Heebo, sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #2c2420;
    line-height: 1.3
}

.features__list .item__text {
    font-family: Assistant, sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #7a7067;
    line-height: 1.6
}

@media screen and (max-width: 1400px) {
    .features__title .title {
        font-size: 44px
    }
}

@media screen and (max-width: 1200px) {
    .features__inner {
        padding: 60px 0
    }
}

@media screen and (max-width: 992px) {
    .features__list .list {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media screen and (max-width: 768px) {
    .features__title .title {
        font-size: 36px
    }

    .features__list .list {
        grid-template-columns:1fr
    }
}

.process {
    background-color: #f5f1ed;
    width: 100%
}

.process__inner {
    padding: 128px 0
}

.process__title {
    text-align: center;
    margin-bottom: 60px
}

.process__title .title {
    font-size: 60px
}

.process__list .list {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 32px;
    position: relative
}

.process__list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 1;
    padding: 0 16px
}

.process__list .item__number {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: rgba(201, 169, 126, .2);
    margin-bottom: 9px
}

.process__list .item__title {
    font-family: Heebo, sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #2c2420
}

.process__list .item__text {
    font-family: Assistant, sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #7a7067;
    line-height: 1.6
}

@media screen and (max-width: 1400px) {
    .process__title .title {
        font-size: 44px
    }
}

@media screen and (max-width: 1200px) {
    .process__inner {
        padding: 60px 0
    }

    .process__list .item__number {
        font-size: 56px
    }
}

@media screen and (max-width: 992px) {
    .process__list .list {
        grid-template-columns:repeat(2, 1fr)
    }

    .process__list .list::before {
        display: none
    }
}

@media screen and (max-width: 768px) {
    .process__title .title {
        font-size: 36px
    }

    .process__list .list {
        grid-template-columns:1fr
    }
}

.patent {
    background: linear-gradient(167deg, #8b6f47 0, #c9a97e 100%);
    position: relative;
    overflow: hidden;
    width: 100%
}

.patent::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.patent::after {
    content: "";
    position: absolute;
    top: 40px;
    right: 40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1)
}

.patent__inner {
    padding: 128px 0;
    position: relative;
    z-index: 1
}

.patent__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px
}

.patent__text-col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px
}

.patent__seal-col {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 233px;
    aspect-ratio: 1/1
}

.patent__seal-col .im {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.patent__seal-col .im img {
    width: 100%;
    height: auto
}

.patent__title {
    font-family: Heebo, sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2
}

.patent__text {
    font-family: Assistant, sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, .9);
    line-height: 1.6
}

.patent__link {
    font-family: Heebo, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    padding-bottom: 2px;
    -webkit-transition: border-color .2s;
    transition: border-color .2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 7px
}

.patent__link::before {
    width: 20px;
    aspect-ratio: 1/1;
    display: inline-block;
    content: "";
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M15.8229 9.99341H4.16391" stroke="white" stroke-width="1.66557" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.99341 15.823L4.16392 9.99351L9.99341 4.16403" stroke="white" stroke-width="1.66557" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M15.8229 9.99341H4.16391" stroke="white" stroke-width="1.66557" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.99341 15.823L4.16392 9.99351L9.99341 4.16403" stroke="white" stroke-width="1.66557" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background: #fff;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center
}

.patent__link:hover {
    border-color: #fff
}

.patent__list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px
}

.patent__list li {
    font-family: Assistant, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, .9);
    padding-right: 24px;
    position: relative;
    line-height: 1.5
}

.patent__list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    font-weight: 700
}

@media screen and (max-width: 1400px) {
    .patent__title {
        font-size: 44px
    }
}

@media screen and (max-width: 1200px) {
    .patent__inner {
        padding: 80px 0
    }

    .patent__wrapper {
        gap: 40px
    }
}

@media screen and (max-width: 992px) {
    .patent__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .patent__text-col {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

@media screen and (max-width: 768px) {
    .patent__title {
        font-size: 36px
    }
}

.founder {
    background-color: #fff
}

.founder__inner {
    padding: 128px 0
}

.founder__heading {
    text-align: center;
    margin-bottom: 60px
}

.founder__heading .title {
    font-size: 60px
}

.founder .container {
    max-width: 1191px
}

.founder__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px
}

.founder__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px
}

.founder__name {
    font-family: Heebo, sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #2c2420;
    line-height: 1.2
}

.founder__bio {
    font-family: Assistant, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #7a7067;
    line-height: 1.65;
    max-width: 540px;
    text-align: right
}

.founder__sig {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 4px
}

.founder__sig-name {
    font-family: Assistant, sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #8b6f47
}

.founder__sig-role {
    font-family: Assistant, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #7a7067
}

.founder .btn {
    min-width: 240px
}

.founder__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 544px;
    flex: 0 0 544px;
    aspect-ratio: 1/1;
    border-radius: 0;
    overflow: hidden
}

.founder__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media screen and (max-width: 1400px) {
    .founder__heading .title {
        font-size: 44px
    }

    .founder__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 420px;
        flex: 0 0 420px
    }
}

@media screen and (max-width: 1200px) {
    .founder__inner {
        padding: 80px 0
    }

    .founder__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 360px;
        flex: 0 0 360px
    }
}

@media screen and (max-width: 992px) {
    .founder__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px
    }

    .founder__content {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .founder__image {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto
    }
}

@media screen and (max-width: 768px) {
    .founder__heading .title {
        font-size: 36px
    }
}

.hair-types {
    background-color: #f5f1ed
}

.hair-types__inner {
    padding: 128px 0
}

.hair-types .container {
    max-width: 1502px
}

.hair-types__title {
    text-align: center;
    margin-bottom: 60px
}

.hair-types__title .title {
    font-size: 60px;
    margin-bottom: 16px;
    text-align: center
}

.hair-types__title .text {
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
    color: #7a7067
}

.hair-types__slider .item {
    padding: 0 35px
}

.hair-types__slider .item__image {
    overflow: hidden;
    aspect-ratio: 1/1;
    margin-bottom: 16px;
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    border-radius: 4px
}

.hair-types__slider .item__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.hair-types__slider .item__label {
    font-family: Heebo, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #2c2420;
    text-align: center
}

@media screen and (max-width: 1400px) {
    .hair-types__title .title {
        font-size: 44px
    }
}

@media screen and (max-width: 1200px) {
    .hair-types__inner {
        padding: 80px 0
    }

    .hair-types__inner .slick-next {
        left: 0;
        z-index: 3
    }

    .hair-types__inner .slick-prev {
        right: 0;
        z-index: 3
    }

    .hair-types__slider .item {
        padding: 0 15px
    }

    .hair-types__slider .item__label {
        font-size: 18px
    }
}

.israel {
    background-color: #fff
}

.israel__inner {
    padding: 128px 0
}

.israel__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 58px
}

.israel .container {
    max-width: 940px
}

.israel__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 28px
}

.israel__title {
    font-size: 48px
}

.israel__text {
    font-size: 18px;
    max-width: 390px
}

.israel__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px
}

.israel__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-family: Heebo, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7a7067
}

.israel__check {
    width: 20px;
    aspect-ratio: 1/1;
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><g clip-path="url(%23clip0_3054_62108)"><path d="M18.1555 8.3277C18.5358 10.1942 18.2647 12.1347 17.3875 13.8256C16.5103 15.5164 15.0799 16.8554 13.3349 17.6193C11.5899 18.3832 9.63579 18.5258 7.7984 18.0233C5.961 17.5208 4.35142 16.4035 3.23805 14.8579C2.12469 13.3123 1.57486 11.4317 1.68024 9.52973C1.78562 7.62778 2.53985 5.81943 3.81715 4.40627C5.09445 2.9931 6.81761 2.06053 8.69927 1.76408C10.5809 1.46763 12.5074 1.82521 14.1573 2.7772" stroke="%23C9A97E" stroke-width="1.66557" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.495 9.16054L9.99334 11.6589L18.3212 3.33105" stroke="%23C9A97E" stroke-width="1.66557" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_3054_62108"><rect width="19.9868" height="19.9868" fill="white"/></clipPath></defs></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><g clip-path="url(%23clip0_3054_62108)"><path d="M18.1555 8.3277C18.5358 10.1942 18.2647 12.1347 17.3875 13.8256C16.5103 15.5164 15.0799 16.8554 13.3349 17.6193C11.5899 18.3832 9.63579 18.5258 7.7984 18.0233C5.961 17.5208 4.35142 16.4035 3.23805 14.8579C2.12469 13.3123 1.57486 11.4317 1.68024 9.52973C1.78562 7.62778 2.53985 5.81943 3.81715 4.40627C5.09445 2.9931 6.81761 2.06053 8.69927 1.76408C10.5809 1.46763 12.5074 1.82521 14.1573 2.7772" stroke="%23C9A97E" stroke-width="1.66557" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.495 9.16054L9.99334 11.6589L18.3212 3.33105" stroke="%23C9A97E" stroke-width="1.66557" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_3054_62108"><rect width="19.9868" height="19.9868" fill="white"/></clipPath></defs></svg>');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    background: #c9a97e;
    color: rgba(255, 255, 255, 0)
}

.israel__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 416px;
    flex: 0 0 416px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 1/.923
}

.israel__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.israel__badge {
    position: absolute;
    bottom: 24px;
    right: 24px
}

@media screen and (max-width: 1400px) {
    .israel__title {
        font-size: 44px
    }
}

@media screen and (max-width: 1200px) {
    .israel__inner {
        padding: 80px 0
    }

    .israel__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
        flex: 0 0 400px
    }
}

@media screen and (max-width: 992px) {
    .israel__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 20px
    }

    .israel__image {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }
}

@media screen and (max-width: 768px) {
    .israel__title {
        font-size: 36px
    }
}

.blog {
    background-color: #fff
}

.blog__inner {
    padding: 128px 0
}

.blog__title {
    text-align: center;
    margin-bottom: 60px
}

.blog__title .title {
    font-size: 60px
}

.blog__list .list {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 48px
}

.blog__list .item {
    background-color: #f5f1ed;
    border-radius: 4px;
    overflow: hidden;
    -webkit-transition: -webkit-transform .3s, -webkit-box-shadow .3s;
    transition: -webkit-transform .3s, -webkit-box-shadow .3s;
    transition: transform .3s, box-shadow .3s;
    transition: transform .3s, box-shadow .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1)
}

.blog__list .item:hover {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 16px 48px rgba(44, 36, 32, .12);
    box-shadow: 0 16px 48px rgba(44, 36, 32, .12)
}

.blog__list .item__image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden
}

.blog__list .item__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease
}

.blog__list .item:hover .item__image img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}

.blog__list .item__content {
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px
}

.blog__list .item__top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px
}

.blog__list .item__cat {
    font-family: Assistant, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #c9a97e;
    position: relative
}

.blog__list .item__cat::after {
    width: 2px;
    height: 2px;
    background: #7a7067;
    border-radius: 50%;
    position: absolute;
    right: 100%;
    top: 50%;
    -webkit-transform: translate(-10px, -50%);
    -ms-transform: translate(-10px, -50%);
    transform: translate(-10px, -50%);
    display: inline-block;
    content: ""
}

.blog__list .item__cat:hover {
    text-decoration: underline
}

.blog__list .item__date {
    font-family: Assistant, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #7a7067
}

.blog__list .item__title {
    font-family: Heebo, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #2c2420;
    line-height: 1.4
}

@media screen and (max-width: 1400px) {
    .blog__title .title {
        font-size: 44px
    }
}

@media screen and (max-width: 1200px) {
    .blog__inner {
        padding: 80px 0
    }
}

@media screen and (max-width: 992px) {
    .blog__list .list {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media screen and (max-width: 768px) {
    .blog__title .title {
        font-size: 36px
    }

    .blog__list .list {
        grid-template-columns:1fr
    }
}

.cta-boxes {
    background-color: #f5f1ed;
    width: 100%
}

.cta-boxes__inner {
    padding: 128px 0
}

.cta-boxes .container {
    max-width: 1384px
}

.cta-boxes__wrapper {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 48px
}

.cta-boxes__item {
    border-radius: 4px;
    padding: 48px 28px 78px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px
}

.cta-boxes__item--light {
    background-color: #fff;
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1)
}

.cta-boxes__item--dark {
    background: linear-gradient(135deg, #8b6f47 0, #8f734b 7.14%, #94774f 14.29%, #987b52 21.43%, #9c7f56 28.57%, #a1835a 35.71%, #a5875e 42.86%, #a98b62 50%, #ae9066 57.14%, #b2946a 64.29%, #b7986e 71.43%, #bb9c72 78.57%, #c0a076 85.71%, #c4a57a 92.86%, #c9a97e 100%)
}

.cta-boxes__title {
    font-family: Heebo, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #2c2420;
    text-align: center;
    line-height: 1.3
}

.cta-boxes__item--dark .cta-boxes__title {
    color: #fff
}

@media screen and (max-width: 1400px) {
    .cta-boxes__title {
        font-size: 30px
    }

    .cta-boxes__inner {
        padding: 60px 0
    }
}

@media screen and (max-width: 992px) {
    .cta-boxes__wrapper {
        grid-template-columns:1fr
    }
}

@media screen and (max-width: 768px) {
    .cta-boxes__title {
        font-size: 26px
    }

    .cta-boxes__item {
        padding: 40px 28px
    }
}

.faq {
    background-color: #f5f1ed
}

.faq__inner {
    padding: 100px 0
}

.faq__title {
    text-align: center;
    margin-bottom: 60px
}

.faq__title .title {
    font-size: 60px
}

.faq__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 30px
}

.faq__more {
    text-align: center
}

.faq__item {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1)
}

.faq__item .item-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 32px 32px;
    font-family: Heebo, sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #2c2420;
    cursor: pointer;
    gap: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: color .2s;
    transition: color .2s
}

.faq__item .item-title:hover {
    color: #8b6f47
}

.faq__item .item-text {
    display: none;
    padding: 0 32px 24px;
    font-family: Assistant, sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #7a7067;
    line-height: 1.7
}

.faq__item.open .item-toggle::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.faq__item.open .item-text {
    display: block
}

@media screen and (max-width: 1400px) {
    .faq__title .title {
        font-size: 44px
    }
}

@media screen and (max-width: 1200px) {
    .faq__inner {
        padding: 80px 0
    }
}

@media screen and (max-width: 768px) {
    .faq__title .title {
        font-size: 36px
    }
}

.item-toggle {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    -webkit-transition: background-color .2s;
    transition: background-color .2s
}

.item-toggle::before {
    width: 16px;
    aspect-ratio: 1/1;
    display: inline-block;
    content: "";
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M3.99805 5.99774L7.99652 9.99622L11.995 5.99774" stroke="%237A7067" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.faq-page .faq__inner {
    padding: 80px 0 180px
}

.faq.faq-page {
    background: rgba(255, 255, 255, 0)
}

.faq.faq-page .faq__item {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(201, 169, 126, .15);
    background: rgba(255, 255, 255, 0)
}

.faq.faq-page .faq__item .item-title {
    padding-left: 0;
    padding-right: 0;
    font-size: 14px
}

.faq.faq-page .faq__item .item-text {
    padding-left: 0;
    padding-right: 0
}

.faq.faq-page .container {
    max-width: 940px
}

.faq.faq-page .faq-category__title {
    font-size: 30px;
    font-weight: 500;
    padding-bottom: 0;
    margin-bottom: 30px;
    border: none
}

@media screen and (max-width: 1400px) {
    .faq-page .faq__inner {
        padding: 40px 0 60px
    }
}

.faq-category {
    margin-bottom: 60px
}

.faq-category__title {
    font-family: Heebo, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2c2420;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5d5c3
}

.faq-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-top: 60px;
    padding: 32px 32px;
    background-color: #f5f1ed;
    border-radius: 4px
}

.faq-cta__title {
    font-family: Heebo, sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #2c2420
}

.faq-cta__text {
    font-family: Assistant, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7a7067;
    margin-bottom: 8px
}

.faq-cta__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.contact {
    background-color: #fff
}

.contact__inner {
    padding: 80px 0
}

.contact__heading {
    text-align: center;
    margin-bottom: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

.contact__title {
    font-size: 48px;
    font-weight: 500;
    text-align: center
}

.contact .container {
    max-width: 1192px
}

.contact__subtitle {
    font-size: 20px;
    color: #7a7067;
    text-align: center
}

.contact__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 48px;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .25), 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 0 4px rgba(0, 0, 0, .25), 0 4px 4px rgba(0, 0, 0, .25)
}

.contact__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 552px;
    flex: 0 0 552px;
    height: auto;
    border-radius: 0;
    overflow: hidden
}

.contact__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.contact__form-wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 32px
}

.contact__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

@media screen and (max-width: 1400px) {
    .contact__title {
        font-size: 44px
    }
}

@media screen and (max-width: 1200px) {
    .contact__inner {
        padding: 40px 0
    }

    .contact__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 410px;
        flex: 0 0 410px
    }
}

@media screen and (max-width: 992px) {
    .contact__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 32px
    }

    .contact__image {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }

    .contact__form-wrapper {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }
}

@media screen and (max-width: 768px) {
    .contact__title {
        font-size: 36px
    }
}

.about-hero {
    width: 100%;
    position: relative;
    padding: 140px 0 0;
    background: #f5f1ed
}

.about-hero__bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: .4
}

.about-hero__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 180px 0
}

.about-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1528px
}

.about-hero__badge {
    width: 112px;
    aspect-ratio: 1/1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 24px
}

.about-hero__badge .im {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50%;
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1)
}

.about-hero__badge .im img {
    width: 100%;
    height: auto
}

.about-hero__title {
    font-family: Heebo, sans-serif;
    font-size: 60px;
    font-weight: 500;
    color: #2c2420;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 670px
}

.about-hero__subtitle {
    font-family: Assistant, sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #7a7067;
    max-width: 670px;
    line-height: 1.6
}

@media screen and (max-width: 1200px) {
    .about-hero__title {
        font-size: 52px
    }
}

@media screen and (max-width: 992px) {
    .about-hero {
        padding: 133px 0 0
    }

    .about-hero__inner {
        padding: 100px 0
    }

    .about-hero__title {
        font-size: 44px
    }
}

@media screen and (max-width: 768px) {
    .about-hero__title {
        font-size: 36px
    }

    .about-hero__inner {
        padding: 50px 0
    }

    .about-hero__subtitle {
        font-size: 18px
    }
}

.about-founder {
    background-color: #fff
}

.about-founder__inner {
    padding: 128px 0
}

.about-founder__heading {
    text-align: center;
    margin-bottom: 60px
}

.about-founder__heading .title {
    font-size: 52px
}

.about-founder__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px
}

.about-founder__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px
}

.about-founder__label {
    font-family: Heebo, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #c9a97e;
    text-transform: uppercase;
    letter-spacing: 2px
}

.about-founder__name {
    font-family: Heebo, sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #2c2420
}

.about-founder__bio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
    font-family: Assistant, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #7a7067;
    line-height: 1.65;
    text-align: right;
    max-width: 540px
}

.about-founder__sig {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 4px
}

.about-founder__sig-name {
    font-family: Assistant, sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #8b6f47
}

.about-founder__sig-role {
    font-family: Assistant, sans-serif;
    font-size: 14px;
    color: #7a7067
}

.about-founder__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 500px;
    flex: 0 0 500px;
    border-radius: 4px;
    overflow: hidden;
    -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, .2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .2)
}

.about-founder__image img {
    width: 100%;
    height: 560px;
    -o-object-fit: cover;
    object-fit: cover
}

@media screen and (max-width: 992px) {
    .about-founder__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px
    }

    .about-founder__image {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto
    }

    .about-founder__image img {
        height: 400px
    }
}

.about-story {
    background-color: #fff;
    width: 100%
}

.about-story .container {
    position: relative;
    z-index: 2;
    max-width: 1528px
}

.about-story__inner {
    padding: 80px 0
}

.about-story__wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 64px
}

.about-story__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px
}

.about-story__label {
    font-family: Heebo, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #c9a97e;
    text-transform: uppercase;
    letter-spacing: 2.5px
}

.about-story__title {
    font-size: 36px
}

.about-story__text {
    font-size: 16px;
    color: #7a7067;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

.about-story__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 704px;
    flex: 0 0 704px;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1)
}

.about-story__image img, .about-story__image video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media screen and (max-width: 1400px) {
    .about-story__title {
        font-size: 28px
    }
}

@media screen and (max-width: 1200px) {
    .about-story__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
        flex: 0 0 400px
    }
}

@media screen and (max-width: 992px) {
    .about-story__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px
    }

    .about-story__image {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }

    .about-story__image img {
        height: 360px
    }

    .about-story__inner {
        padding: 40px 0
    }
}

.about-mission {
    width: 100%;
    background-color: #f5f1ed
}

.about-mission__inner {
    padding: 80px 0
}

.about-mission .container {
    position: relative;
    z-index: 2;
    max-width: 1528px
}

.about-mission__header {
    text-align: center;
    margin-bottom: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 23px
}

.about-mission__header .title {
    font-size: 48px;
    text-align: center
}

.about-mission__header .text {
    font-size: 20px;
    max-width: 560px;
    margin: 0 auto;
    color: #7a7067;
    text-align: center
}

.about-mission__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 80px
}

.about-mission__cards {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 48px
}

@media screen and (max-width: 1400px) {
    .about-mission__header .title {
        font-size: 44px
    }
}

@media screen and (max-width: 1200px) {
    .about-mission__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 380px;
        flex: 0 0 380px
    }

    .about-mission__inner {
        padding: 40px 0
    }

    .about-mission__header {
        margin-bottom: 40px
    }

    .about-mission__title {
        font-size: 32px
    }
}

@media screen and (max-width: 992px) {
    .about-mission__cards {
        grid-template-columns:1fr;
        gap: 32px
    }

    .about-mission__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px
    }

    .about-mission__image {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }

    .about-mission__image img {
        height: 360px
    }
}

.mission-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 24px
}

.mission-card__icon {
    width: 80px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #c9a97e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.mission-card__icon img {
    width: 36px;
    aspect-ratio: 1/1;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1)
}

.mission-card__title {
    font-family: Heebo, sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #2c2420
}

.mission-card__text {
    font-family: Assistant, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7a7067;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto
}

@media screen and (max-width: 768px) {
    .mission-card__title {
        font-size: 20px
    }
}

@media screen and (max-width: 1200px) {
    .mission-card {
        gap: 14px
    }
}

.mission-value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px
}

.mission-value__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-shadow: 0 4px 16px rgba(44, 36, 32, .08);
    box-shadow: 0 4px 16px rgba(44, 36, 32, .08)
}

.mission-value__icon img {
    width: 28px;
    height: 28px
}

.mission-value__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.mission-value__title {
    font-family: Heebo, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #2c2420;
    margin-bottom: 8px
}

.mission-value__text {
    font-family: Assistant, sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #7a7067;
    line-height: 1.6
}

.about-tech {
    background: #fff;
    width: 100%
}

.about-tech__inner {
    padding: 80px 0
}

.about-tech .container {
    position: relative;
    z-index: 2;
    max-width: 1528px
}

.about-tech__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 64px
}

.about-tech__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px
}

.about-tech__title {
    font-size: 36px;
    color: #2c2420
}

.about-tech__intro {
    font-family: Assistant, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7a7067;
    line-height: 1.6
}

.about-tech__list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

.about-tech__list li {
    font-family: Assistant, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7a7067;
    padding-right: 28px;
    position: relative;
    line-height: 1.5
}

.about-tech__list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #c9a97e
}

.about-tech__footer {
    font-family: Assistant, sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #7a7067
}

.about-tech__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 704px;
    flex: 0 0 704px;
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1)
}
.about-tech__image.about-tech__image--video {
    aspect-ratio: auto;
    display: flex;
}
.about-story__image.about-story__image--video {
    aspect-ratio: auto;
    display: flex;
}
.about-tech__image img, .about-tech__image video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media screen and (max-width: 1400px) {
    .about-tech__title {
        font-size: 28px
    }
}

@media screen and (max-width: 1200px) {
    .about-tech__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 380px;
        flex: 0 0 380px
    }
}

@media screen and (max-width: 992px) {
    .about-tech__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px
    }

    .about-tech__inner {
        padding: 40px 0
    }

    .about-tech__image {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }
}

.about-values {
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#c9a97e), to(#8b6f47));
    background: linear-gradient(90deg, #c9a97e 0, #8b6f47 100%)
}

.about-values .container {
    position: relative;
    z-index: 2;
    max-width: 1528px
}

.about-values__inner {
    padding: 80px 0
}

.about-values__title {
    text-align: center;
    margin-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

.about-values__title .title {
    font-size: 48px;
    color: #fff
}

.about-values__title .text {
    font-size: 20px;
    color: rgba(255, 255, 255, .95)
}

.about-values__list {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 32px
}

@media screen and (max-width: 1400px) {
    .about-values__title .title {
        font-size: 32px
    }
}

@media screen and (max-width: 1200px) {
    .about-values__inner {
        padding: 40px 0
    }

    .about-values__list {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media screen and (max-width: 992px) {
    .about-values__list {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media screen and (max-width: 768px) {
    .about-values__title .title {
        font-size: 36px
    }

    .about-values__list {
        grid-template-columns:1fr 1fr
    }
}

@media screen and (max-width: 576px) {
    .about-values__list {
        grid-template-columns:1fr
    }
}

.value-card {
    background-color: rgba(255, 255, 255, 0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: center;
    gap: 12px
}

.value-card__title {
    font-family: Heebo, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff
}

.value-card__text {
    font-family: Assistant, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5
}

.blog-page {
    width: 100%;
    background-color: #fdfcfa
}

.blog-page__inner {
    padding: 80px 0 180px
}

.blog-page .container {
    max-width: 1528px
}

@media screen and (max-width: 1200px) {
    .blog-page__inner {
        padding: 45px 0
    }
}

.blog-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px
}

@media screen and (max-width: 576px) {
    .blog-categories {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.blog-cat {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 23px;
    border-radius: 50px;
    border: 1px solid #f5f1ed;
    background-color: #f5f1ed;
    color: #2c2420;
    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s
}

.blog-cat.active, .blog-cat:hover {
    background-color: #c9a97e;
    border-color: #c9a97e;
    color: #fff
}

.blog-featured {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    -webkit-box-shadow: 0 16px 48px rgba(44, 36, 32, .12);
    box-shadow: 0 16px 48px rgba(44, 36, 32, .12);
    margin-bottom: 80px;
    background-color: #fff
}

.blog-featured:hover .blog-featured__image img {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04)
}

.blog-featured__image {
    position: relative;
    overflow: hidden
}

.blog-featured__image img {
    width: 100%;
    height: 540px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease
}

.blog-featured__tag {
    background-color: #c9a97e;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.blog-featured__content {
    padding: 48px 80px 48px 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px
}

.blog-featured__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.blog-featured__author, .blog-featured__date, .blog-featured__read {
    font-family: Assistant, sans-serif;
    font-size: 14px;
    gap: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    color: #7a7067
}

.blog-featured__author::before {
    content: "";
    display: inline-block;
    width: 16px;
    aspect-ratio: 1/1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M12.6618 13.9947V12.6619C12.6618 11.9549 12.381 11.2769 11.8811 10.777C11.3811 10.2771 10.7031 9.99622 9.99616 9.99622H5.99768C5.29071 9.99622 4.61269 10.2771 4.11278 10.777C3.61288 11.2769 3.33203 11.9549 3.33203 12.6619V13.9947" stroke="%237A7067" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.99719 7.33057C9.46939 7.33057 10.6628 6.13712 10.6628 4.66492C10.6628 3.19272 9.46939 1.99927 7.99719 1.99927C6.52499 1.99927 5.33154 3.19272 5.33154 4.66492C5.33154 6.13712 6.52499 7.33057 7.99719 7.33057Z" stroke="%237A7067" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center
}

.blog-featured__date::before {
    content: "";
    display: inline-block;
    width: 16px;
    aspect-ratio: 1/1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><g clip-path="url(%23clip0_3054_62593)"><path d="M5.33154 1.33282V3.99847" stroke="%237A7067" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.6626 1.33282V3.99847" stroke="%237A7067" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/><path d="M12.6616 2.66565H3.33185C2.59575 2.66565 1.99902 3.26238 1.99902 3.99847V13.3282C1.99902 14.0643 2.59575 14.6611 3.33185 14.6611H12.6616C13.3977 14.6611 13.9944 14.0643 13.9944 13.3282V3.99847C13.9944 3.26238 13.3977 2.66565 12.6616 2.66565Z" stroke="%237A7067" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/><path d="M1.99902 6.66412H13.9944" stroke="%237A7067" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_3054_62593"><rect width="15.9939" height="15.9939" fill="white"/></clipPath></defs></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center
}

.blog-featured .btn {
    margin-top: 20px;
    min-width: 150px;
    border-radius: 4px
}

.blog-featured__title {
    font-family: Heebo, sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #2c2420;
    line-height: 1.3;
    max-width: 570px
}

.blog-featured__text {
    font-family: Assistant, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7a7067;
    line-height: 1.5;
    max-width: 600px
}

@media screen and (max-width: 1200px) {
    .blog-featured {
        grid-template-columns:1fr
    }

    .blog-featured__image img {
        height: 520px
    }
}

@media screen and (max-width: 992px) {
    .blog-featured__image {
        aspect-ratio: 4/3
    }

    .blog-featured__image img {
        height: 100%
    }
}

@media screen and (max-width: 576px) {
    .blog-featured__content {
        padding: 30px 20px;
        gap: 15px
    }

    .blog-featured__title {
        font-size: 24px
    }
}

.blog-grid .list {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 32px
}

.blog-grid .item {
    background-color: #fff;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
    border-radius: 4px
}

.blog-grid .item:hover {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1)
}

.blog-grid .item__image {
    aspect-ratio: 1/.56;
    overflow: hidden
}

.blog-grid .item__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease
}

.blog-grid .item:hover .item__image img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}

.blog-grid .item__content {
    padding: 26px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px
}

.blog-grid .item__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    color: #2c2420;
    background-color: #f5f1ed;
    padding: 4px 12px;
    border-radius: 50px;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.blog-grid .item__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px
}

.blog-grid .item__meta span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 12px
}

.blog-grid .item__meta span:not(:last-child)::after {
    width: 4px;
    height: 4px;
    background: #7a7067;
    display: inline-block;
    content: "";
    border-radius: 50%
}

.blog-grid .item__date, .blog-grid .item__read {
    font-family: Assistant, sans-serif;
    font-size: 14px;
    color: #7a7067
}

.blog-grid .item__title {
    font-family: Heebo, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #2c2420;
    line-height: 1.4
}

.blog-grid .item__text {
    font-family: Assistant, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7a7067;
    line-height: 1.6
}

.blog-grid.blog-grid--related .list {
    grid-template-columns:repeat(2, 1fr)
}

@media screen and (max-width: 992px) {
    .blog-grid .list {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media screen and (max-width: 768px) {
    .blog-grid .list {
        grid-template-columns:1fr
    }

    .blog-grid.blog-grid--related .list {
        grid-template-columns:1fr
    }
}

.post-body {
    background-color: #fdfcfa;
    width: 100%;
    margin-top: 140px
}

.post-body__inner {
    padding: 50px 0
}

.post-body .container {
    max-width: 1528px
}

.post-body__top {
    width: 100%;
    margin-bottom: 32px
}

.post-body__back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 22px;
    font-size: 16px;
    color: #7a7067;
    line-height: 1.5;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    font-weight: 400
}

.post-body__back::before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><path d="M8.99024 14.2341L3.74609 8.98997L8.99024 3.74582" stroke="%237A7067" stroke-width="1.49833" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.2344 8.98996H3.74609" stroke="%237A7067" stroke-width="1.49833" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><path d="M8.99024 14.2341L3.74609 8.98997L8.99024 3.74582" stroke="%237A7067" stroke-width="1.49833" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.2344 8.98996H3.74609" stroke="%237A7067" stroke-width="1.49833" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    background: #7a7067;
    display: inline-block;
    content: "";
    width: 18px;
    aspect-ratio: 1/1
}

.post-body__back:hover {
    color: #2c2420;
    text-decoration: underline
}

.post-body__back:hover::before {
    background: #2c2420
}

.post-body .share-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 7px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: #2c2420;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    border: 2px solid rgba(201, 169, 126, .15);
    background: rgba(255, 255, 255, 0);
    padding: 8px 11px;
    border-radius: 2px
}

.post-body .share-btn::before {
    width: 16px;
    aspect-ratio: 1/1;
    display: inline-block;
    content: "";
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><g clip-path="url(%23clip0_3054_62814)"><path d="M11.9953 5.3313C13.0995 5.3313 13.9946 4.43621 13.9946 3.33206C13.9946 2.22791 13.0995 1.33282 11.9953 1.33282C10.8912 1.33282 9.99609 2.22791 9.99609 3.33206C9.99609 4.43621 10.8912 5.3313 11.9953 5.3313Z" stroke="%232C2420" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.99826 9.99619C5.10241 9.99619 5.9975 9.1011 5.9975 7.99695C5.9975 6.8928 5.10241 5.99771 3.99826 5.99771C2.89411 5.99771 1.99902 6.8928 1.99902 7.99695C1.99902 9.1011 2.89411 9.99619 3.99826 9.99619Z" stroke="%232C2420" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/><path d="M11.9953 14.6611C13.0995 14.6611 13.9946 13.766 13.9946 12.6618C13.9946 11.5577 13.0995 10.6626 11.9953 10.6626C10.8912 10.6626 9.99609 11.5577 9.99609 12.6618C9.99609 13.766 10.8912 14.6611 11.9953 14.6611Z" stroke="%232C2420" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/><path d="M5.72461 9.00323L10.2762 11.6556" stroke="%232C2420" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.2695 4.33835L5.72461 6.99067" stroke="%232C2420" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_3054_62814"><rect width="15.9939" height="15.9939" fill="white"/></clipPath></defs></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><g clip-path="url(%23clip0_3054_62814)"><path d="M11.9953 5.3313C13.0995 5.3313 13.9946 4.43621 13.9946 3.33206C13.9946 2.22791 13.0995 1.33282 11.9953 1.33282C10.8912 1.33282 9.99609 2.22791 9.99609 3.33206C9.99609 4.43621 10.8912 5.3313 11.9953 5.3313Z" stroke="%232C2420" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.99826 9.99619C5.10241 9.99619 5.9975 9.1011 5.9975 7.99695C5.9975 6.8928 5.10241 5.99771 3.99826 5.99771C2.89411 5.99771 1.99902 6.8928 1.99902 7.99695C1.99902 9.1011 2.89411 9.99619 3.99826 9.99619Z" stroke="%232C2420" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/><path d="M11.9953 14.6611C13.0995 14.6611 13.9946 13.766 13.9946 12.6618C13.9946 11.5577 13.0995 10.6626 11.9953 10.6626C10.8912 10.6626 9.99609 11.5577 9.99609 12.6618C9.99609 13.766 10.8912 14.6611 11.9953 14.6611Z" stroke="%232C2420" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/><path d="M5.72461 9.00323L10.2762 11.6556" stroke="%232C2420" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.2695 4.33835L5.72461 6.99067" stroke="%232C2420" stroke-width="1.33282" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_3054_62814"><rect width="15.9939" height="15.9939" fill="white"/></clipPath></defs></svg>');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    background: #2c2420
}

.post-body .share-btn:hover {
    background: #c9a97e
}

.post-body__wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto
}

.post-body__wrap-share {
    margin-top: 8px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.post-body__wrap-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 32px;
    gap: 16px
}

.post-body__wrap-title {
    font-family: Heebo, sans-serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 500;
    color: #2c2420
}

.post-body__wrap .blog-featured__meta span {
    font-size: 16px
}

.post-body__wrap-tag {
    background-color: #c9a97e;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width: 1200px) {
    .post-body__inner {
        padding: 30px 0 40px
    }

    .post-body__wrap-title {
        font-size: 24px
    }
}

.post-article {
    max-width: 100%;
    width: 100%;
    margin: 0 auto
}

.post-article__hero {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 48px;
    aspect-ratio: 1/.5625
}

.post-article__hero img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block
}

.post-article__content {
    width: 100%
}

.post-article__content a, .post-article__content li, .post-article__content p {
    font-family: Assistant, sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #7a7067;
    line-height: 1.8
}

.post-article__content :not(a,img,ul,ol,li,blockquote,span,strong,br,iframe) {
    margin-bottom: 30px
}

.post-article__content :last-child {
    margin-bottom: 0
}

.post-article__content strong {
    color: inherit;
    font-weight: 600
}

.post-article__content h2, .post-article__content h3, .post-article__content h4, .post-article__content h5, .post-article__content h6 {
    font-family: Heebo, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #2c2420
}

.post-article__content h2 {
    font-size: 30px
}

.post-article__content h3 {
    font-size: 28px
}

.post-article__content h4 {
    font-size: 26px
}

.post-article__content h5 {
    font-size: 24px
}

.post-article__content h6 {
    font-size: 20px
}

.post-article__content a {
    color: #2c2420;
    text-decoration: underline
}

.post-article__content > blockquote, .post-article__content > img {
    margin-bottom: 30px
}

.post-article__content blockquote {
    background: #f5f1ed;
    border-radius: 4px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.66;
    text-align: center;
    color: #2c2420;
    padding: 40px 30px;
    position: relative;
    z-index: 2
}

.post-article__content blockquote::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 25px;
    height: 20px;
    opacity: .45;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='47' fill='none'%3E%3Cpath fill='%23fff' d='M20.25 22.563H5.893a21.937 21.937 0 0 1 9.482-14.967l4.363-2.925L17.057.625 12.694 3.55A26.813 26.813 0 0 0 .75 25.853v16.21a4.875 4.875 0 0 0 4.875 4.874H20.25a4.875 4.875 0 0 0 4.875-4.874V27.437a4.875 4.875 0 0 0-4.875-4.875ZM54.375 22.563H40.018A21.938 21.938 0 0 1 49.5 7.595l4.363-2.925L51.206.625 46.82 3.55a26.812 26.812 0 0 0-11.944 22.303v16.21a4.875 4.875 0 0 0 4.875 4.874h14.625a4.875 4.875 0 0 0 4.875-4.874V27.437a4.875 4.875 0 0 0-4.875-4.875Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none
}

.post-article__content img {
    max-width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain
}

.post-article__content .alignleft {
    float: left
}

.post-article__content .alignright {
    float: right
}

.post-article__content .aligncenter {
    margin: 0 auto
}

.post-article__content > ul > li:not(:first-child) {
    margin-top: 30px
}

.post-article__content > ol > li:not(:first-child) {
    margin-top: 30px
}

.post-article__content > ol, .post-article__content > ul {
    margin-bottom: 30px
}

.post-article__content ul p {
    margin-bottom: 0
}

.post-article__content ul li {
    padding-right: 28px;
    position: relative;
    z-index: 2
}

.post-article__content ul li::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7a7067
}

.post-article__content ul li ul {
    padding-right: 20px
}

.post-article__content ul li ul li {
    padding-right: 28px;
    position: relative
}

.post-article__content ul li ul li::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7a7067
}

.post-article__content ul li ol {
    counter-reset: numUl
}

.post-article__content ul li ol li {
    padding-right: 0
}

.post-article__content ul li ol li:has(>strong:first-child,>b:first-child)::before {
    font-weight: 500
}

.post-article__content ul li ol li::after {
    display: none
}

.post-article__content ul li ol li::before {
    counter-increment: numUl;
    content: counters(numUl, ".") ".";
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit
}

.post-article__content ol {
    counter-reset: numOl
}

.post-article__content ol p {
    margin-bottom: 0
}

.post-article__content ol li:has(>strong:first-child,>b:first-child)::before {
    font-weight: 500
}

.post-article__content ol li::before {
    counter-increment: numOl;
    content: counters(numOl, ".") ".";
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit
}

.post-article__content ol li ol {
    padding-right: 20px
}

.post-article__content ol li ul {
    padding-right: 20px
}

.post-article__content ol li ul li {
    padding-right: 28px;
    position: relative
}

.post-article__content ol li ul li::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7a7067
}

.post-article__intro {
    font-family: Assistant, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #7a7067;
    line-height: 1.7
}

@media screen and (max-width: 992px) {
    .post-article__content :not(a,img,ul,ol,li,blockquote,span,strong,br,iframe) {
        margin-bottom: 16px
    }
}

.post-tip {
    background-color: #f5f1ed;
    border-radius: 4px;
    padding: 32px;
    margin: 8px 0
}

.post-tip__label {
    font-family: Heebo, sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #2c2420;
    text-transform: uppercase;
    margin-bottom: 16px
}

.post-tip__text {
    font-family: Assistant, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7a7067;
    line-height: 1.5
}

.post-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 28px;
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid #e5d5c3;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto
}

.post-author__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border: 3px solid #c9a97e
}

.post-author__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.post-author__info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.post-author__name {
    font-family: Heebo, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2c2420;
    margin-bottom: 4px
}

.post-author__role {
    font-family: Assistant, sans-serif;
    font-size: 15px;
    color: #c9a97e;
    margin-bottom: 12px
}

.post-author__bio {
    font-family: Assistant, sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #7a7067;
    line-height: 1.6
}

@media screen and (max-width: 768px) {
    .post-author {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.post-related {
    width: 100%
}

.post-related .container {
    max-width: 936px
}

.post-related__inner {
    padding: 80px 0
}

.post-related__title {
    font-size: 36px;
    margin-bottom: 40px
}

.post-related__list {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 32px
}

@media screen and (max-width: 992px) {
    .post-related__list {
        grid-template-columns:1fr
    }
}

.contact-page {
    background-color: #fff;
    width: 100%
}

.contact-page .container {
    max-width: 1528px
}

.contact-page__inner {
    padding: 80px 0 100px
}

.contact-page__wrapper {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 63px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

@media screen and (max-width: 992px) {
    .contact-page__wrapper {
        grid-template-columns:1fr;
        gap: 40px
    }
}

.contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px
}

.contact-info__title {
    font-size: 30px
}

.contact-info__title + p {
    font-size: 16px;
    color: #7a7067;
    font-weight: 400;
    line-height: 1.4
}

.contact-info__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px
}

.contact-info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px
}

.contact-info__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #f5f1ed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border: 1px solid #e5d5c3
}

.contact-info__icon img {
    width: 22px;
    height: 22px
}

.contact-info__detail {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.contact-info__label {
    font-family: Heebo, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2c2420;
    margin-bottom: 8px
}

.contact-info__value {
    font-family: Assistant, sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #7a7067;
    line-height: 1.7
}

.contact-info__value a {
    color: #8b6f47;
    -webkit-transition: color .2s;
    transition: color .2s
}

.contact-info__value a:hover {
    color: #c9a97e
}

@media screen and (max-width: 768px) {
    .contact-info__title {
        font-size: 24px
    }
}

.contact-form-wrapper {
    background-color: #fff;
    border-radius: 20px;
    padding: 48px;
    -webkit-box-shadow: 0 8px 32px rgba(44, 36, 32, .08);
    box-shadow: 0 8px 32px rgba(44, 36, 32, .08)
}

@media screen and (max-width: 768px) {
    .contact-form-wrapper {
        padding: 32px 24px
    }
}

.contact-form__row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px
}

@media screen and (max-width: 992px) {
    .contact-form__row {
        grid-template-columns:1fr
    }
}

.contact-faq-cta {
    width: 100%;
    background-color: #f5f1ed
}

.contact-faq-cta__inner {
    padding: 80px 0
}

.contact-faq-cta__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 16px
}

.contact-faq-cta__title {
    font-family: Heebo, sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #2c2420
}

.contact-faq-cta__text {
    font-family: Assistant, sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #7a7067;
    margin-bottom: 8px
}

@media screen and (max-width: 768px) {
    .contact-faq-cta__title {
        font-size: 36px
    }
}