/*
Theme Name: Wood&Me
Author: Wood&Me
Description: Wood&Me is fully compatible with the site editor and takes advantage of the new design tools introduced in WordPress 6.4.
Requires at least: 6.4
Tested up to: 6.4
Requires PHP: 7.1
Version: 1.0.23
Text Domain: woodme
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/


/*--------------------------------------------------------------
    Fonts
--------------------------------------------------------------*/

@font-face {
    font-family: 'InterTight-Light';
    src: local('Inter Tight Light'), local('InterTight-Light'),
        url('assets/font/InterTight-Light.woff2') format('woff2'),
        url('assets/font/InterTight-Light.woff') format('woff'),
        url('assets/font/InterTight-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'InterTight-Medium';
    src: local('Inter Tight Medium'), local('InterTight-Medium'),
        url('assets/font/InterTight-Medium.woff2') format('woff2'),
        url('assets/font/InterTight-Medium.woff') format('woff'),
        url('assets/font/InterTight-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'InterTight-Regular';
    src: local('Inter Tight'), local('InterTight-Regular'),
        url('assets/font/InterTight-Regular.woff2') format('woff2'),
        url('assets/font/InterTight-Regular.woff') format('woff'),
        url('assets/font/InterTight-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'InterTight-SemiBold';
    src: local('Inter Tight SemiBold'), local('InterTight-SemiBold'),
        url('assets/font/InterTight-SemiBold.woff2') format('woff2'),
        url('assets/font/InterTight-SemiBold.woff') format('woff'),
        url('assets/font/InterTight-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/*--------------------------------------------------------------
    Variables
--------------------------------------------------------------*/

:root {
    /* Font-family */
    --font-family-default: 'InterTight-Regular', sans-serif;
    --font-family-light: 'InterTight-Light', sans-serif;
    --font-family-medium: 'InterTight-Medium', sans-serif;
    --font-family-semibold: 'InterTight-SemiBold', sans-serif;

    /* Container */
    --width-container: 1370px;

    /* Header */
    --height-header: 70px;

    /* Footer */
    --height-footer: 214px;
    --margin-footer: 100px;

    /* Scrollbar [default] */
    --scrollbar-width: 20px;

    /* Home Slider */
    --home_slider-slide-quantity: 1;
    --home_slider-slide-width: calc(100vw / 19.2);

    /* Colors */
    --navy: #0f2438; --navy-deep: #0b1b2b; --navy-mid: #0e88e4;
    --paper: #ffffff; --paper-2: #eff5fb; --card: #ffffff;
    --gold: #0e88e4; --gold-light: #5ea8ee;
    --ink: #0c121a; --body: #4f5b7a; --muted: #8a93a6; --border: #e1e7ee;
    --border-navy: rgba(255,255,255,.14);
    --err: #b4472f;

    /* Other CSS */
    --shadow: 0 1px 2px rgba(15,36,56,.06),0 16px 44px -20px rgba(15,36,56,.24);
}


/*--------------------------------------------------------------
    Normalize
--------------------------------------------------------------*/

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

:focus {
    outline: none;
}

html, body {
    overflow-x: hidden;
}

html {
    height: 100%;
    box-sizing: border-box;
}

body {
    min-height: 100%;
    position: relative;
    color: #464646;
    font-size: 16px;
    font-family: var(--font-family-default);
    line-height: 25.6px;
    background-color: #fff;
    margin: 0; 
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

main,
footer,
header,
nav,
section,
audio,
video,
picture {
    display: block;
}

/* indents */

table,
th,
td {
    border: 1px solid #e2e6e9;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

th {
    font-weight: 700;
}

td {
    padding: 2px 5px;
}

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

.h1 {
    color: #0c0c0e;
    font-size: 56px;
    font-family: var(--font-family-default);
    font-weight: normal;
    line-height: 56px;
}

.h2 {
    color: #0c0c0e;
    font-size: 36px;
    font-family: var(--font-family-semibold);
    font-weight: normal;
    line-height: 43.2px;
}

.h3 {
    color: #0c0c0e;
    font-size: 24px;
    font-family: var(--font-family-default);
    font-weight: normal;
    line-height: 38.4px;
}

.h4 {
    color: #0c0c0e;
    font-size: 20px;
    font-family: var(--font-family-default);
    font-weight: normal;
    line-height: 32px;
}

.h5,
.h6 {
    color: #0c0c0e;
    font-size: 18px;
    font-family: var(--font-family-default);
    font-weight: normal;
    line-height: 28px;
}

.t1 {
    font-size: 16px;
    font-family: var(--font-family-default);
    font-weight: normal;
    line-height: 25.6px;
}

.t2 {
    font-size: 14px;
    font-family: var(--font-family-default);
    font-weight: normal;
    line-height: 16.8px;
}

img {
    width: 100%;
    height: auto;
    display: inline-block;
    border: none;
    /* object-fit: cover; */
}

iframe {
    border: none;
}

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

/* text */

a {
    color: inherit;
    font-size: inherit;
    background-color: transparent;
    transition: all .3s ease-in-out 0s;
}

a:hover {
    text-decoration: none;
}

/* form */

form {
    margin: 0;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    transition: all .3s ease-in-out 0s;
}

input[type="hidden"] {
    display: none !important;
}

button {
    background-color: #fff;
    transition: all .3s ease-in-out 0s;
}

button:hover {
    background-color: #0c8ce9;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-align: left;
    text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
    cursor: pointer;
    appearance: none;
}

.b1,
.b2 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.b1 span,
.b2 span {
    display: inline-block;
    position: relative;
}

.b1::before,
.b2::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    transition: all 0.2s ease;
}

.b1:hover::before,
.b2:hover::before {
    top: 0;
}

.b1 {
    color: #0c8ce9;
    background-color: #fff;
}

.b1:hover {
    color: #fff;
}

.b1::before {
    background-color: #0c8ce9;
}

.b2 {
    color: #fff;
    background-color: #0c8ce9;
}

.b2:hover {
    color: #fff;
}

.b2::before {
    background-color: #0076cc;
}

textarea {
    resize: none;
    overflow-y: auto;
    overflow-x: hidden;
}

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

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
    outline: none;
}

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

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

[type='search'] {
    outline: none;
}

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

/* fieldset, legend */

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

legend {
    display: block;
    white-space: normal;
    padding: 0;
}

/* select */

select {
    appearance: auto;
}

/* placeholder */

::placeholder {
    color: #61646b;
    opacity: 1;
    transition: opacity .3s ease-in-out 0s;
}

:focus::placeholder {
    opacity: 0;
}

/* svg */

svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}

/* hidden */

[hidden] {
    display: none;
}

:disabled,
.disabled {
    cursor: not-allowed;
}

::-ms-clear {
    display: none;
}

:-webkit-autofill {
    box-shadow: 0 0 100px #fff inset;
    -webkit-text-fill-color: currentColor;
}

.display-hidden {
    display: none;
}

.display-hidden-important {
    display: none !important;
}

.visually-hidden {
    display: block;
	position: absolute;
    left: -9999px;
    white-space: nowrap;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
    opacity: 0;
	overflow: hidden;
	z-index: -1;
}

.text-hidden {
    display: inline-block;
    text-indent: -300vw;
    white-space: nowrap;
    overflow: hidden;
}

/* selection */

::selection {
    color: #fff;
    background-color: #4d804d;
}

/* clearfix */

.clearfix::before,
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* img */

.img-wrap {
    position: relative;
}

.img-wrap:before {
    content: '';
    display: block;
}

.cover-pic,
.contain-pic {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.cover-pic {
    object-fit: cover;
}

.contain-pic {
    object-fit: contain;
}

/* scrollbar */

/* * {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

::-webkit-scrollbar {
    width: 8px;
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
} */


/*--------------------------------------------------------------
    Document
--------------------------------------------------------------*/

/* Container / Main Wrap */

.container {
    width: 100%;
    max-width: var(--width-container);
    position: relative;
    padding: 0 10px;
    margin: 0 auto;
}

.main_container {
    min-height: calc(100vh - (var(--height-footer) + var(--margin-footer)));
}

.wrap-1 {
    width: 100%;
    max-width: 1080px;
    position: relative;
    margin: 0 auto;
    padding: 0 26px;
}

.block-fullscreen {
    width: calc(100vw - var(--scrollbar-width));
    margin-left: calc((100% - (100vw - var(--scrollbar-width))) / 2);
}

.block-fullscreen-self {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */

.btn-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 15px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border: none;
    padding: 14px 26px;
    transition: transform .16s, background .2s, border-color .2s, color .2s;
    cursor: pointer;
}

.btn-1[hidden] {
    display: none;
}

.btn-gold {
    color: #fff;
    background-color: #0e88e4;
}

.btn-gold:hover {
    background-color: #5ea8ee;
    transform: translateY(-1px);
}

.btn-ghost {
    color: #0c121a;
    background-color: transparent;
    border: 1px solid #e1e7ee;
}

.btn-ghost:hover {
    background-color: inherit;
    border-color: #0c121a;
}

/* Breadcrumbs */

.breadcrumbs-wrap {
    font-size: 16px;
    font-style: italic;
    font-family: var(--font-family-default);
    letter-spacing: 1px;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.breadcrumbs-wrap > span {
    padding: 0 8px;
}

.breadcrumbs a {
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Title */

.entry-slider {
    margin: 0 0 100px;
}

.entry-header {
    margin: 0 0 50px;
}

.entry-header-top {
    min-height: 180px;
    display: grid;
    align-items: end;
}

.entry-header-top-inner {
    display: grid;
    grid-template-columns: auto 540px;
    grid-gap: 150px;
}

.page-title span {
    display: inline-block;
}

.entry-header .sub_title {
    color: #383a3d;
    font-size: 18px;
    line-height: 28.8px;
}

/* Content modified info */

.page-modified-info {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    color: #ababab;
    font-size: 14px;
    font-style: italic;
    text-align: right;
    text-indent: -200vw;
    white-space: nowrap;
    overflow: hidden;
    margin: 20px 0;
}

/* Swiper */

.swiper:not(.swiper-initialized) .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Pagination Carousel [text bullets] */

.swiper-pagination-text_bullets {
    width: 100%;
    display: block;
    position: absolute;
    bottom: 25px;
    text-align: center;
}

.swiper-pagination-text_bullets .swiper-pagination-bullet {
    width: auto;
    height: auto;
    display: inline-block;
    color: #464646;
    font-size: 12px;
    background-color: rgb(255 255 255 / 70%);
    border-radius: 20px;
    opacity: 1;
    padding: 0 10px;
    transition: all .3s ease-in-out 0s;
}

.swiper-pagination-text_bullets .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
    background-color: rgb(255 255 255 / 100%);
}

.swiper-pagination-text_bullets .swiper-pagination-bullet-active {
    color: #fff;
    background-color: #0c8ce9;
}

.swiper-pagination-text_bullets .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-text_bullets .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}

.swiper-pagination-text_bullets .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-text_bullets .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: auto;
    display: inline-block;
    position: relative;
    bottom: auto;
    top: auto;
    left: auto;
    right: auto;
    padding: 6px 3px;
    background-color: rgb(255 255 255 / 30%);
    border-radius: 5px;
    z-index: 1;
}

/* Navigation Carousel [long arrows] */

.swiper-pager-long_arrows .swiper-button-next,
.swiper-pager-long_arrows .swiper-button-prev {
    width: 40px;
    height: 40px;
    opacity: 1;
    transition: all .3s ease-in-out 0s;
    z-index: 1;
}

.swiper-pager-long_arrows .swiper-button-next:hover,
.swiper-pager-long_arrows .swiper-button-prev:hover {
    opacity: 0.4;
}

.swiper-pager-long_arrows .swiper-button-next {
    left: auto;
    right: 25px;
}

.swiper-pager-long_arrows .swiper-button-prev {
    left: 25px;
    right: auto;
}

.swiper-pager-long_arrows .swiper-button-next:after,
.swiper-pager-long_arrows .swiper-button-prev:after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-color: #0c0c0e;
    background-size: 17px auto;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 6px;
}

.swiper-pager-long_arrows .swiper-button-next:after {
    background-image: url('assets/image/icon/arrow-long-right.svg');
}

.swiper-pager-long_arrows .swiper-button-prev:after {
    background-image: url('assets/image/icon/arrow-long-left.svg');
}


/*--------------------------------------------------------------
    Header
--------------------------------------------------------------*/

#header {
    width: 100%;
    position: relative;
}

#header .header-content {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(255 255 255 / 100%);
    border-bottom: 1px solid rgb(215 215 215 / 100%);
    padding: 0;
    transition: all .5s ease-in-out 0s;
    z-index: 999;
}

body.home #header .header-content.top {
    background-color: rgb(255 255 255 / 0%);
    border-bottom: 1px solid rgb(215 215 215 / 0%);
}

#header .header-content-inner {
    height: var(--height-header);
    display: grid;
    grid-template-columns: 210px auto;
    align-items: center;
    padding: 0 10px;
}

#header .header-navigation-content {
    display: grid;
    align-items: center;
}

/* Logo */

#header .header-logo {
    text-align: center;
    line-height: 1;
}

#header .logo-img {
    line-height: 0;
}

#header .logo a,
#header .logo span {
    display: inline-block;
}

#header .logo img {
    height: auto;
    overflow: hidden;
}

#header.site-header-404 .logo img {
    width: auto;
    height: 62px;
}

#header .logo-img {
    display: none;
    line-height: 0;
}

#header .custom-logo-text {
    font-size: 24px;
    font-family: var(--font-family-semibold);
    text-transform: uppercase;
}

/* Header Menu */

#header .header-navigation-button {
    display: none;
}

/* Top Menu */

#header .nav-top {
    display: none;
}

/* Primary Menu */

#header .primary-navigation-list {
    display: flex;
    align-items: center;
    justify-content: end;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#header .primary-navigation-list > li {
    display: block;
    padding: 4px 22px;
}

#header .primary-navigation-list > li:first-child {
    padding: 4px 22px 4px 0;
}

#header .primary-navigation-list > li:last-child {
    border-right: none;
    padding: 4px 0 4px 22px;
}

#header .primary-navigation-list > li a {
    display: block;
    position: relative;
    color: #000;
    text-decoration: none;
    line-height: 1;
    opacity: 0.6;
    transition: all .5s ease-in-out 0s;
}

#header .primary-navigation-list > li.current-menu-item a,
#header .primary-navigation-list > li a:hover {
    opacity: 1;
}

/*#header .primary-navigation-list > li a::after {
    content: '';
    width: calc(100% + 8px);
    height: 2px;
    display: block;
    position: absolute;
    top: calc(100% + 28px);
    background-color: transparent;
    margin: -4px;
    transition: all .1s ease-in-out 0s;
    pointer-events: none;
}*/

#header .primary-navigation-list > li.current-menu-item a::after,
#header .primary-navigation-list > li a:hover::after {
    background-color: #0c0c0e;
}

#header .primary-navigation-list > li.book_consultation a {
    color: #0c8ce9;
    font-family: var(--font-family-semibold);
    border: 1px solid #0c8ce9;
    border-radius: 5px;
    padding: 12px 34px;
    overflow: hidden;
    opacity: 1;
}

#header .primary-navigation-list > li.book_consultation a > span {
    position: relative;
}

#header .primary-navigation-list > li.book_consultation a:hover {
    color: #fff;
}

#header .primary-navigation-list > li.book_consultation a::after {
    display: none;
}

#header .primary-navigation-list > li.book_consultation a::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #1389e6;
    transition: all 0.2s ease;
}

#header .primary-navigation-list > li.book_consultation a:hover::before {
    top: 0;
}

/* Page 'Revenue Share' */

#header .header-revenue-inner {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .custom-logo-link {
    display: flex;
    gap: 11px;
    align-items: center;
    color: #0c121a;
}

#header.site-header-revenue .logo img {
    width: auto;
    height: 32px;
    display: block;
}

#header .logo {
    line-height: 0;
}

#header .nav .btn-1 {
    font-size: 14px;
    padding: 9px 18px;
}


/*--------------------------------------------------------------
    Footer
--------------------------------------------------------------*/

#footer {
    height: var(--height-footer);
    position: relative;
    background-color: #eceeee;
    overflow: hidden;
}

body:not(.home) #footer {
    margin-top: var(--margin-footer);
}

#footer .footer-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 54px 0 50px;
}

#footer .social-nav {
    margin: 15px 0;
}

/* Menus block */

#footer .footer-navigation-list {
    display: flex;
    gap: 44px;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#footer .footer-navigation-list > li {
    display: inline-block;
}

#footer .footer-navigation-list > li a {
    color: #0c0c0e;
    font-family: var(--font-family-light);
    text-decoration: none;
}

#footer .footer-navigation-list > li a:hover {
    opacity: 0.6;
}

/* Footer Navigation */

#footer-navigation .footer-navigation-list > li a {
    font-size: 20px;
    font-family: var(--font-family-light);
}

/* Social Navigation */

#social-navigation .footer-navigation-list > li a {
    font-size: 16px;
    background-position: 0 50%;
    background-repeat: no-repeat;
    padding: 0 0 0 24px;
}

#social-navigation .footer-navigation-list > li.instagram a {
    background-image: url('assets/image/icon/instagram.svg');
    background-size: auto 14px;
}

#social-navigation .footer-navigation-list > li.youtube a {
    background-image: url('assets/image/icon/youtube.svg');
    background-size: auto 12px;
}

#social-navigation .footer-navigation-list > li.linkedin a {
    background-image: url('assets/image/icon/linkedin.svg');
    background-size: auto 14px;
}

/* Copyright Navigation */

#footer .footer-branding {
    display: flex;
    gap: 44px;
    align-items: center;
}

#footer .footer-copyright {
    font-size: 12px;
}

#copy-navigation .footer-navigation-list > li a {
    font-size: 12px;
}

/* 'Contact Us' block */

#footer .footer-contacts-title {
    margin: 0 0 15px 0;
}

#footer .footer-contacts a {
    width: 100%;
    display: block;
    font-size: 14px;
    font-family: var(--font-family-medium);
    text-transform: capitalize;
    text-align: center;
    border-radius: 5px;
    padding: 6px 30px;
}

#footer .footer-contacts a span {
    display: inline-block;
    position: relative;
    background-image: url('assets/image/icon/arrow-long-right.svg');
    background-size: 17px auto;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    padding: 0 34px 0 0;
}

/* Page 'Revenue Share' */

#footer-revenue {
    color: #c6d3e2;
    background-color: #0b1b2b;
    border-top: 1px solid rgba(255, 255, 255, 8%);
    padding: 26px 0;
}

#footer-revenue .foot-in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
}

#footer-revenue .foot-in b {
    color: #fff;
    font-size: 17px;
    font-family: 'Lora', serif;
    font-weight: 600;
}


/*--------------------------------------------------------------
    Page
--------------------------------------------------------------*/

body .entry-content {
    position: relative;
}

#main {
    position: relative;
    padding: 70px 0 0 0;
}

body.home #main {
    padding: 0;
}


/*--------------------------------------------------------------
    Plugins
--------------------------------------------------------------*/

/* Photo Gallery */

.bwg-mosaic-thumbnails a.bwg-a[href*="instagram.com/"] .bwg-mosaic-thumb-span::before,
.bwg-mosaic-thumbnails a.bwg-a[href*="instagram.com/"] .bwg-mosaic-thumb-span::after {
    content: '';
    display: inline-block;
    position: absolute;
}

.bwg-mosaic-thumbnails a.bwg-a[href*="instagram.com/"] .bwg-mosaic-thumb-span::before {
    width: 64px;
    height: 64px;
    top: calc(50% - 32px);
    left: calc(50% - 30px);
    background-color: rgb(0 0 0 / 50%);
    border-radius: 70px;
    z-index: 2;
}

.bwg-mosaic-thumbnails a.bwg-a[href*="instagram.com/"] .bwg-mosaic-thumb-span::after {
    width: 0;
    height: 0;
    top: calc(50% - 16px);
    left: calc(50% - 8px);
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 26px solid rgb(255 255 255 / 80%);
    z-index: 3;
}


/*--------------------------------------------------------------
    Home Page
--------------------------------------------------------------*/

/* Section "Main Slider" */

#slider-home .slider-home-wrap {
    position: relative;
    background-color: #fff;
}

#slider-home .slider-home {
    position: relative;
    line-height: 0;
}

/* Section "Hero Banner" */

#hero-banner .hero-banner-inner {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #000;
    overflow: hidden;
}

#hero-banner .hero-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

#hero-banner .hero-scroll {
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 40px;
    left: calc((100% / 2) - 20px);
    background-size: 32px auto;
    background-image: url('assets/image/icon/arrow-long-right.svg');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    transform: rotate(90deg);
    transition: all .1s ease-in-out 0s;
    cursor: pointer;
    z-index: 2;
}

#hero-banner .hero-scroll:hover {
    transform: rotate(90deg) translateX(5px);
}

/* Section "Modular houses" */

#modular_houses-home .modular_houses-top {
    display: grid;
    grid-template-columns: auto 510px;
    align-items: end;
    margin: 50px 0 40px;
}

#modular_houses-home .modular_houses-title {
    color: #0c0c0e;
    font-size: 56px;
    line-height: 56px;
}

#modular_houses-home .modular_houses-title .span_1 {
    display: block;
}

#modular_houses-home .modular_houses-title .span_3 {
    font-family: var(--font-family-light);
   
}

#modular_houses-home .modular_houses-subtitle {
    color: #383a3d;
}

#modular_houses-home .modular_houses-home-wrap {
    position: relative;
    background-color: #fff;
}

#modular_houses-home .modular_houses-home {
    position: relative;
}

#swiper-modular_houses {
    line-height: 0;
    border-radius: 10px;
}

#swiper-modular_houses .swiper-wrapper {
    align-items: stretch;
}

#swiper-modular_houses .swiper-slide {
    height: auto;
}

/* Section "All in One Modular Solution" */

#all_in_one-home {
    color: #0c0c0e;
    margin: 100px 0 0;
}

#all_in_one-home .all_in_one-home-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 44px;
}

#all_in_one-home .item_00 {
    font-size: 36px;
    font-family: var(--font-family-semibold);
    line-height: 43.2px;
}

#all_in_one-home .item_00 .div_2 {
    margin: 10px 0 0;
}

#all_in_one-home .number {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

#all_in_one-home .number span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-family: var(--font-family-light);
    background-color: #0c0c0e;
    border-radius: 10px;
    box-sizing: border-box;
    flex-shrink: 0;
}

#all_in_one-home .number::after {
    content: '';
    flex-grow: 1; 
    height: 1px;
    background-color: #e2e6e9;
    margin-left: 14px;
}


#all_in_one-home .h3 {
    line-height: 1;
    margin: 24px 0;
}

#all_in_one-home .text {
    height: 104px;
    color: #464646;
    font-family: var(--font-family-light);
    overflow: hidden;
    margin: 0 0 15px;
}

#all_in_one-home .image {
    line-height: 0;
}

#all_in_one-home .image img {
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

#all_in_one-home .details {
    background-color: #f7f8f8;
    border-radius: 5px;
    padding: 25px;
}

#all_in_one-home .details .title {
    font-size: 24px;
    font-family: var(--font-family-semibold);
    margin: 42px 0 24px;
}

#all_in_one-home .details .text {
    height: auto;
    color: #464646;
    font-family: var(--font-family-light);
}

#all_in_one-home .details .buttons div {
    margin: 0 0 15px;
}

#all_in_one-home .details .buttons a {
    width: 188px;
    height: 40px;
    display: inline-block;
    font-size: 14px;
    font-family: var(--font-family-medium);
    text-align: center;
    text-decoration: none;
    line-height: 2.7;
    border-radius: 5px;
    padding: 0 10px;
}

#all_in_one-home .details .buttons a.how_work {
    border: 1px solid #0c8ce9;
    background-color: transparent;
}

#all_in_one-home .details .buttons a span {
    line-height: 1;
}

#all_in_one-home .details .buttons a.how_work span {
    background-image: url('assets/image/icon/button_box.svg');
    background-size: 19px auto;
    background-position: 0 50%;
    background-repeat: no-repeat;
    padding: 10px 0 10px 34px;
}

#all_in_one-home .details .buttons a.how_work:hover span {
    background-image: url('assets/image/icon/button_box_white.svg');
}

/* Section "Rent it. Work there." */

#rent_it-home {
    margin: 100px 0 0 0;
}

#rent_it-home .rent_it-home-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

#rent_it-home .rent_it-left {
    background-color: #f7f8f8;
    border-radius: 10px 0 0 10px;
    padding: 60px 40px;
}

#rent_it-home .h2 span {
    display: block;
}

#rent_it-home .rent_it-left .text {
    font-family: var(--font-family-light);
    line-height: 28.8px;
    margin: 15px 0 50px;
    padding: 0 70px 0 0;
}

#rent_it-home .buttons div {
    margin: 0 0 10px;
}

#rent_it-home .buttons a {
    width: 240px;
    height: 40px;
    display: inline-block;
    font-size: 14px;
    font-family: var(--font-family-medium);
    text-align: center;
    text-decoration: none;
    line-height: 2.7;
    border-radius: 5px;
    padding: 0 10px;
}

#rent_it-home .buttons a.partnership {
    border: 1px solid #0c8ce9;
    background-color: transparent;
}

#rent_it-home .buttons a span {
    line-height: 1;
    background-size: 17px auto;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    padding: 10px 34px 10px 0;
}

#rent_it-home .buttons a.partnership span {
    background-image: url('assets/image/icon/arrow-long-right_blue.svg');
}

#rent_it-home .buttons a.partnership:hover span {
    background-image: url('assets/image/icon/arrow-long-right.svg');
}

#rent_it-home .buttons a.our_houses span {
    background-image: url('assets/image/icon/arrow-long-right.svg');
}

#rent_it-home .rent_it-carousel,
#rent_it-home .rent_it-home,
#rent_it-home .swiper-viewport,
#swiper-rent_it,
#swiper-rent_it picture {
    height: 100%;
}

#rent_it-home .rent_it-carousel {
    min-width: 0;
    min-height: 0;
}

#rent_it-home .rent_it-home {
    position: relative;
}

#swiper-rent_it {
    line-height: 0;
    border-radius: 0 10px 10px 0;
}

#swiper-rent_it .swiper-wrapper {
    align-items: stretch;
}

#swiper-rent_it .swiper-slide {
    height: auto;
}

#swiper-rent_it .swiper-slide img {
    height: 100%;
    object-fit: cover;
}

#rent_it-home .swiper-pagination-text_bullets {
    width: auto;
    left: 25px;
    text-align: left;
}

#rent_it-home .rent_it-swiper-pager {
    display: none;
}

#rent_it-home .rent_it-video video {
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Section "Grow Your Home" */

#grow_home-home {
    margin: 100px 0 0 0;
}

#grow_home-home .h2 {
    text-align: center;
    margin: 0 0 40px;
}

#grow_home-home .grow_home-home {
    position: relative;
}

#swiper-grow_home {
    line-height: 0;
    border-radius: 10px;
}

#swiper-grow_home .swiper-wrapper {
    align-items: stretch;
}

#swiper-grow_home .swiper-slide {
    height: auto;
}

/* Section "From Concept to Completion" */

#from_concept-home {
    margin: 60px 0 0 0;
}

#from_concept-home .from_concept-home-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 5px;
}

#from_concept-home .from_concept-home-inner > div {
    height: 440px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
}

#from_concept-home .item_00 {
    grid-area: 1 / 1 / span 1 / span 2;
    background-color: #f7f8f8;
}

#from_concept-home .item_00 .item00_content {
    width: calc(100% - 40px);
    position: absolute;
    left: 20px;
    bottom: 60px;
}

#from_concept-home .h2 div:first-child span:last-child,
#from_concept-home .h2 div:last-child span:first-child {
    color: #0c8ce9;
    font-family: var(--font-family-light);
}

#from_concept-home .item_00 .text {
    color: #8b8b8b;
    font-size: 20px;
    margin: 15px 0 0 0;
}

#from_concept-home .item_01 {
    grid-area: 1 / 3 / span 1 / span 4;
}

#from_concept-home .item_02 {
    grid-area: 2 / 1 / span 1 / span 3;
}

#from_concept-home .item_03 {
    grid-area: 2 / 4 / span 1 / span 3;
}

#from_concept-home .item_content {
    position: absolute;
    right: 20px;
    bottom: 20px;
    text-align: right;
}

#from_concept-home .number {
    position: relative;
    margin: 0 0 15px 0;
}

#from_concept-home .number span {
    width: 44px;
    height: 44px;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-family: var(--font-family-light);
    text-align: center;
    line-height: 2.2;
    background-color: #0c0c0e;
    border-radius: 10px;
}

#from_concept-home .content {
    text-align: right;
}

#from_concept-home .content-wrap {
    width: 470px;
    display: inline-block;
    text-align: left;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 20px;
}

#from_concept-home .content .h3 {
    margin: 0 0 10px 0;
}

#from_concept-home .content .text {
    font-family: var(--font-family-light);
    margin: 0 0 10px 0;
}

#from_concept-home .content .button a {
    width: 220px;
    height: 40px;
    display: inline-block;
    font-size: 14px;
    font-family: var(--font-family-medium);
    text-align: center;
    text-decoration: none;
    line-height: 2.7;
    background-color: transparent;
    border: 1px solid #0c8ce9;
    border-radius: 5px;
    padding: 0 10px;
}

#from_concept-home .content .button a span {
    line-height: 1;
    background-image: url('assets/image/icon/arrow-long-right_blue.svg');
    background-size: 17px auto;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    padding: 10px 34px 10px 0;
}

#from_concept-home .content .button a:hover span {
    background-image: url('assets/image/icon/arrow-long-right.svg');
}

/* Section "Latest Accomplished Ventures" */

#latest_ventures-home {
    margin: 100px 0 0 0;
}

#latest_ventures-home .latest_ventures-home-wrap {
    background: #f7f8f8;
    padding: 100px 0;
}

#latest_ventures-home .h2 {
    text-align: center;
    margin: 0 0 40px;
}

#latest_ventures-home .tabs {
    text-align: center;
}

#latest_ventures-home .tabs .post {
    display: inline-block;
    margin: 0 3px 10px;
}

#latest_ventures-home .tabs button {
    color: #464646;
    font-size: 14px;
    font-family: var(--font-family-medium);
    line-height: 22.4px;
    background-color: transparent;
    border: 1px solid rgb(26 18 18 / 10%);
    border-radius: 20px;
    padding: 4px 15px;
    transition: all .1s ease-in-out 0s;
}

#latest_ventures-home .tabs button:hover {
    background: #fff;
    border: 1px solid #0c8ce9;
}

#latest_ventures-home .tabs .post.active button {
    color: #fff;
    background: #0c8ce9;
}

#latest_ventures-home .posts {
    margin: 20px 0 0;
}

#latest_ventures-home .posts .post {
    display: none;
}

#latest_ventures-home .posts .post.active {
    display: block;
}

#latest_ventures-home .posts .post-wrap {
    display: grid;
    grid-template-columns: 420px auto;
}

#latest_ventures-home .information {
    background-color: #fff;
    border-radius: 10px 0 0 10px;
    padding: 40px 20px;
}

#latest_ventures-home .h3 {
    margin: 0 0 15px;
}

#latest_ventures-home .tags {
    margin: 0 0 15px;
}

#latest_ventures-home .tags span {
    display: inline-block;
    color: #0c8ce9;
    font-size: 12px;
    font-family: var(--font-family-medium);
    background-color: #f7f8f8;
    border-radius: 20px;
    padding: 0 12px;
    margin: 0 2px 5px 0;
}

#latest_ventures-home .cost {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #f4f5f5;
    border-bottom: 1px solid #f4f5f5;
    padding: 10px 0;
    margin: 0 0 15px;
}

#latest_ventures-home .price-title,
#latest_ventures-home .area-title {
    color: #383a3d;
    font-size: 12px;
    font-family: var(--font-family-medium);
}

#latest_ventures-home .price-data,
#latest_ventures-home .area-data {
    color: #0c0c0e;
}

#latest_ventures-home .price-data span:first-child,
#latest_ventures-home .area-data span:first-child {
    font-size: 24px;
}

#latest_ventures-home .price-data span:last-child,
#latest_ventures-home .area-data span:last-child {
    font-size: 14px;
    font-family: var(--font-family-light);
}

#latest_ventures-home .description-short {
    /* height: 158px; */
    overflow: hidden;
    margin: 0 0 15px;
}

#latest_ventures-home .buttons a {
    width: 170px;
    height: 40px;
    display: inline-block;
    font-size: 14px;
    font-family: var(--font-family-medium);
    text-align: center;
    text-decoration: none;
    line-height: 2.7;
    border-radius: 5px;
    padding: 0 10px;
}

#latest_ventures-home .buttons a.more {
    border: 1px solid #0c8ce9;
    background-color: transparent;
}

#latest_ventures-home .buttons a span {
    line-height: 1;
    background-size: 17px auto;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    padding: 10px 34px 10px 0;
}

#latest_ventures-home .buttons a.more span {
    background-image: url('assets/image/icon/arrow-long-right_blue.svg');
}

#latest_ventures-home .buttons a.more:hover span {
    background-image: url('assets/image/icon/arrow-long-right.svg');
}

#latest_ventures-home .carousel {
    min-width: 0;
    min-height: 0;
}

#latest_ventures-home .latest_ventures-carousel,
#latest_ventures-home .latest_ventures-home,
#latest_ventures-home .swiper-viewport,
#latest_ventures-home .swiper-latest_ventures,
#latest_ventures-home .swiper-latest_ventures picture {
    height: 100%;
}

#latest_ventures-home .latest_ventures-home {
    position: relative;
}

#latest_ventures-home .swiper-latest_ventures {
    line-height: 0;
    border-radius: 0 10px 10px 0;
}

#latest_ventures-home .swiper-wrapper {
    align-items: stretch;
}

#latest_ventures-home .swiper-slide {
    height: auto;
}

#latest_ventures-home .swiper-slide img {
    height: 100%;
    object-fit: cover;
}

#latest_ventures-home .swiper-pagination span {
    color: #fff;
    font-family: var(--font-family-light);
}

#latest_ventures-home .swiper-pagination {
    bottom: 22px;
    z-index: 1;
}

#latest_ventures-home .swiper-pagination .current,
#latest_ventures-home .swiper-pagination .separator {
    font-size: 20px;
}

/* Section "Our Houses" */

#our_houses-home {
    margin: 120px 0 0;
}

#our_houses-home .our_houses-home-wrap {
    background: #f7f8f8;
    padding: 100px 0;
}

#our_houses-home .h2 {
    text-align: center;
    margin: 0 0 50px;
}

#our_houses-home .posts {
    position: relative;
}

/* Strict alignment of the wrapper - Start */

#our_houses-slider.swiper:not(.swiper-initialized) {
    width: 100%;
    display: block;
    overflow: hidden;
}

#our_houses-slider.swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

#our_houses-slider.swiper:not(.swiper-initialized) .swiper-slide {
    flex-shrink: 0;
}

/* Strict alignment of the wrapper - End */

#our_houses-home .swiper-slide {
    /* max-width: 410px; */
    box-sizing: border-box;
}

#our_houses-home .post .thumb {
    line-height: 0;
}

#our_houses-home .post .thumb picture,
#our_houses-home .post .thumb picture img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

#our_houses-home .post .info {
    text-align: center;
}

#our_houses-home .post .h3 {
    text-transform: uppercase;
    margin: 20px 0 0;
}

#our_houses-home .post .short-descr {
    font-style: italic;
    margin: 10px 0 0;
}

#our_houses-home .buttons {
    margin: 20px 0 0;
}

#our_houses-home .buttons a {
    width: auto;
    height: 40px;
    display: inline-block;
    font-size: 14px;
    font-family: var(--font-family-medium);
    text-align: center;
    text-decoration: none;
    line-height: 2.7;
    border-radius: 5px;
    padding: 0 30px;
}

#our_houses-home .buttons a.more {
    border: 1px solid #0c8ce9;
    background-color: transparent;
}

#our_houses-home .buttons a span {
    line-height: 1;
    background-size: 17px auto;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    padding: 10px 34px 10px 0;
}

#our_houses-home .buttons a.more span {
    background-image: url('assets/image/icon/arrow-long-right_blue.svg');
}

#our_houses-home .buttons a.more:hover span {
    background-image: url('assets/image/icon/arrow-long-right.svg');
}

/* Section "Special Offers" */

#special_offers-home {
    margin: 100px 0 0 0;
}

#special_offers-home .h2 {
    text-align: center;
    margin: 0 0 40px 0;
}

#special_offers-home .special_offers-home-discounts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 44px;
}

#special_offers-home .item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
    padding: 40px;
}

#special_offers-home .h3 {
    color: #fff;
    font-family: var(--font-family-semibold);
    margin: 0 0 12px;
}

#special_offers-home .text {
    color: #fff;
    margin: 0 0 12px;
}

#special_offers-home .buttons div {
    margin: 0 0 15px;
}

#special_offers-home .buttons .contacts,
#special_offers-home .buttons .details {
    height: 40px;
    display: inline-block;
    font-size: 14px;
    font-family: var(--font-family-medium);
    text-align: center;
    text-decoration: none;
    line-height: 2.7;
    border-radius: 5px;
    padding: 0 10px;
}

#special_offers-home .buttons .contacts span,
#special_offers-home .buttons .details span {
    line-height: 1;
    background-image: url('assets/image/icon/arrow-long-right.svg');
    background-position: 100% 50%;
    background-repeat: no-repeat;
    padding: 10px 34px 10px 0;
}

#special_offers-home .buttons .contacts {
    width: 170px;
}

#special_offers-home .buttons .discount {
    display: inline-block;
    font-family: var(--font-family-semibold);
    background-color: #faff1a;
    background-image: url('assets/image/icon/arrow-link.svg');
    background-size: 9px auto;
    background-position: calc(100% - 8px) 50%;
    background-repeat: no-repeat;
    border-radius: 5px;
    padding: 1px 28px 1px 12px;
}

#special_offers-home .buttons .details {
    width: 190px;
}

/* Section "Instagram" */

#instagram_home-home {
    margin: 100px 0 0 0;
}

#instagram_home-home .instagram_home-home-wrap {
    background: #f7f8f8;
    padding: 100px 0;
}

#instagram_home-home .h2 {
    text-align: center;
    margin: 0 0 40px;
}

#instagram_home-home .h2 span:last-child {
    background-image: radial-gradient(97.26% 1414.71% at 2.74% 25.58%, #feda75 0%, #fa7e1e 20%, #d62976 44%, #962fbf 72%, #4f5bd5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#instagram_home-home .insta_name {
    text-align: center;
    margin: 0 0 40px;
}

#instagram_home-home .insta_name-wrap {
    display: inline-block;
}

#instagram_home-home .insta_name-img {
    display: inline-block;
    position: relative;
    border-radius: 50%;
}

#instagram_home-home .insta_name-img::before {
    content: '';
    width: 54px;
    height: 54px;
    display: block;
    position: absolute;
    top: -5px;
    left: -5px;
    background: linear-gradient(135deg, #feda75 0%, #fa7e1e 27%, #d62976 55%, #962fbf 75.5%, #4f5bd5 100%);
    border-radius: 50%;
    z-index: 1;
}

#instagram_home-home .insta_name-img::after {
    content: '';
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    top: -3px;
    left: -3px;
    background-color: #f7f8f8;
    border-radius: 50%;
    z-index: 2;
}

#instagram_home-home .insta_name img {
    width: 44px;
    height: 44px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    border-radius: 50%;
    z-index: 3;
}

#instagram_home-home .insta_name-name {
    display: inline-block;
    font-size: 24px;
    vertical-align: middle;
    margin: 0 0 0 10px;
}

#instagram_home-home .instagram_home-home {
    position: relative;
    line-height: 0;
}

/* Strict alignment of the wrapper - Start */

#swiper-instagram_home.swiper:not(.swiper-initialized) {
    width: 100%;
    display: block;
    overflow: hidden;
}

#swiper-instagram_home.swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

#swiper-instagram_home.swiper:not(.swiper-initialized) .swiper-slide {
    width: calc(100% / 4);
    flex-shrink: 0;
    margin-right: 5px;
}

/* Strict alignment of the wrapper - End */

#swiper-instagram_home .swiper-wrapper {
    align-items: stretch;
}

#swiper-instagram_home .swiper-slide {
    height: auto;
}

#swiper-instagram_home .swiper-slide img {
    border-radius: 10px;
}

#instagram_home-home .buttons {
    text-align: center;
    line-height: 0;
    margin: 45px 0 0 0;
}

#instagram_home-home .buttons a {
    width: 240px;
    height: 40px;
    display: inline-block;
    font-size: 14px;
    font-family: var(--font-family-medium);
    text-align: center;
    text-decoration: none;
    line-height: 2.7;
    background-color: transparent;
    border: 1px solid #0c8ce9;
    border-radius: 5px;
    padding: 0 10px;
}

#instagram_home-home .buttons a span {
    line-height: 1;
    background-image: url('assets/image/icon/arrow-long-right_blue.svg');
    background-size: 17px auto;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    padding: 10px 34px 10px 0;
}

#instagram_home-home .buttons a:hover span {
    background-image: url('assets/image/icon/arrow-long-right.svg');
}


/*--------------------------------------------------------------
    Page "Contact Us"
--------------------------------------------------------------*/

#information-contact_us .information-contact_us-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

/* Section "Contacts" */

#information-contact_us .address {
    background-color: #f7f8f8;
    border-radius: 10px;
    padding: 20px;
}

#information-contact_us .h3 {
    margin: 0 0 20px;
}

#information-contact_us .address-list {
    margin: 0 0 20px;
}

#information-contact_us .email,
#information-contact_us .addr,
#information-contact_us .phone {
    display: grid;
    grid-template-columns: 100px auto;
    grid-gap: 20px;
}

#information-contact_us .email div:last-child,
#information-contact_us .addr div:last-child,
#information-contact_us .phone div:last-child {
    color: #0c0c0e;
    text-align: right;
}

#information-contact_us .email div a,
#information-contact_us .phone div a {
    color: #0c0c0e;
    text-decoration: none;
}

#information-contact_us .email div a:hover,
#information-contact_us .phone div a:hover {
    text-decoration: underline;
}

#information-contact_us .social-list {
    text-align: right;
    border-top: 1px solid #e2e6e9;
    padding: 15px 0 0;
}

#information-contact_us .social-list div {
    display: inline-block;
    margin: 0 0 0 45px;
}

#information-contact_us .social-list a {
    position: relative;
    text-decoration: none;
    background-position: 0 50%;
    background-repeat: no-repeat;
    padding: 5px 0 5px 30px;
}

#information-contact_us .social-list a:hover {
    color: #0c8ce9;
    text-decoration: underline;
}

#information-contact_us .social-list .instagram {
    background-image: url('assets/image/icon/contact_us-instagram.svg');
    background-size: 20px auto;
}

#information-contact_us .social-list .instagram:hover {
    background-image: url('assets/image/icon/contact_us-instagram_blue.svg');
}

#information-contact_us .social-list .youtube {
    background-image: url('assets/image/icon/contact_us-youtube.svg');
    background-size: 22px auto;
}

#information-contact_us .social-list .youtube:hover {
    background-image: url('assets/image/icon/contact_us-youtube_blue.svg');
}

#information-contact_us .social-list .linkedin {
    background-image: url('assets/image/icon/contact_us-linkedin.svg');
    background-size: 20px auto;
}

#information-contact_us .social-list .linkedin:hover {
    background-image: url('assets/image/icon/contact_us-linkedin_blue.svg');
}

/* Section "Form" */

#page-contact_us-form {
    background-color: #f7f8f8;
    border-radius: 10px;
    padding: 20px;
}

#page-contact_us-form p {
    margin: 0;
    padding: 0;
}

#page-contact_us-form .form-title {
    margin: 0 0 20px;
}

#page-contact_us-form .form-field {
    position: relative;
    margin: 0 0 12px;
}

#page-contact_us-form .form-field.error::after,
#page-contact_us-form .form-field.success::after {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-position: 50%;
    background-repeat: no-repeat;
}

#page-contact_us-form .form-field.error::after {
    background-image: url('assets/image/icon/field_error.svg');
}

#page-contact_us-form .form-field.success::after {
    background-image: url('assets/image/icon/field_success.svg');
}

#page-contact_us-form .form-field label {
    position: absolute;
    left: 20px;
    top: 16px;
    color: #61646b;
    opacity: 1;
    cursor: text;
    transition: top .3s ease-in-out, font-size .3s ease-in-out;
    z-index: 1;
}

#page-contact_us-form .form-field.field-phone label {
    left: 110px;
}

#page-contact_us-form .form-field.focus label {
    top: 5px;
    font-size: 12px;
}

#page-contact_us-form .form-field.error label {
    opacity: 0;
}

#page-contact_us-form .wpcf7-form-control-wrap {
    display: block;
}

#page-contact_us-form .field-phone .selected-flag {
    width: 96px;
}

#page-contact_us-form .form-field input,
#page-contact_us-form .form-field textarea {
    width: 100%;
    height: 60px;
    display: block;
    color: #0c0c0e;
    background-color: #fff;
    border: 1px solid #e2e6e9;
    border-radius: 5px;
}

#page-contact_us-form .form-field input {
    padding: 0 20px;
}

#page-contact_us-form .form-field.field-phone input {
    padding: 10px 106px 5px;
}

#page-contact_us-form .form-field textarea {
    height: 160px;
    padding: 15px 20px;
}

#page-contact_us-form .form-field.focus input,
#page-contact_us-form .form-field.focus textarea {
    padding: 24px 20px 5px;
}

#page-contact_us-form .form-field.field-phone.focus input {
    padding: 24px 106px 5px;
}

#page-contact_us-form .form-field.error input,
#page-contact_us-form .form-field.error textarea {
    border-color: #ff1010;
}

#page-contact_us-form .form-field.success input,
#page-contact_us-form .form-field.success textarea {
    border-color: #0c8ce9;
}

#page-contact_us-form .buttons {
    margin: 30px 0 0;
}

#page-contact_us-form .button-submit {
    position: relative;
}

#page-contact_us-form button[type="submit"] {
    width: 240px;
    height: 48px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
}

#page-contact_us-form .form-cf7_book-spinner {
    display: inline-block;
    position: relative;
    top: 6px;
    line-height: 0;
}

#page-contact_us-form .wpcf7-response-output {
    display: none;
    background-color: #fff;
}

#page-contact_us-form .wpcf7-not-valid-tip {
    width: calc(100% - 20px);
    display: block;
    position: absolute;
    top: 5px;
    left: 18px;
    color: #ff1010;
    font-size: 12px;
    background-color: #fff;
    padding: 0 0 0 2px;
    pointer-events: none;
}

#page-contact_us-form .field-phone .wpcf7-not-valid-tip {
    width: calc(100% - 108px);
    left: 106px;
}

#page-contact_us-form .form-cf7_book-close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.3;
    cursor: pointer;
}

#page-contact_us-form .book_consultation {
    width: 100%;
    display: block;
    font-size: 14px;
    font-family: var(--font-family-medium);
    text-align: center;
    border-radius: 5px;
    padding: 6px 30px;
}

#page-contact_us-form .book_consultation span {
    display: inline-block;
    position: relative;
    background-image: url('assets/image/icon/arrow-long-right.svg');
    background-size: 17px auto;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    padding: 0 34px 0 0;
}

/* Section "Banner" */

#information-contact_us .banner {
    width: 100%;
    height: 100%;
    min-height: 0;
    grid-area: 1 / 2 / span 2 / span 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

#information-contact_us .banner picture {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

#information-contact_us .banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/*--------------------------------------------------------------
    Page "Your Wood&Me Journey"
--------------------------------------------------------------*/

body.page-template-page-journey #footer {
    margin-top: 0;
}

/* Section "Information" */

#your_journey-how_work {
    color: #0c0c0e;
    margin: 60px 0 0;
}

#your_journey-how_work .your_journey-how_work-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 80px 44px;
    position: relative;
    padding: 0 0 100px;
}

#your_journey-how_work .your_journey-how_work-inner::before {
    content: '';
    height: calc(100% + 55px);
    position: absolute;
    width: 1px;
    left: 50%;
    top: -55px;
    background-color: #e2e6e9;
}

#your_journey-how_work .your_journey-how_work-inner::after {
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    left: calc(50% - 15px);
    top: -95px;
    background-image: url('assets/image/icon/play.svg');
    background-repeat: no-repeat;
    background-size: 100%;
}

#your_journey-how_work .number {
    position: relative;
}

#your_journey-how_work .number span {
    width: 44px;
    height: 44px;
    display: grid;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-family: var(--font-family-light);
    text-align: center;
    background-color: #0c0c0e;
    border-radius: 10px;
    line-height: 1;
}

#your_journey-how_work .h3 {
    line-height: 1;
    margin: 24px 0;
}

#your_journey-how_work .text {
    color: #464646;
    font-family: var(--font-family-light);
}

#your_journey-how_work .note {
    width: 446px;
    color: #464646;
    font-size: 14px;
    line-height: 22.4px;
    background-color: #f7f8f8;
    border-radius: 5px;
    padding: 12px;
    margin: 15px 0 0;
}

#your_journey-how_work .image {
    height: 100%;
    line-height: 0;
}

#your_journey-how_work .image img {
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

/* Photos */

#photos-how_work .photos-how_work-wrap {
    padding: 100px 0;
    background-color: #f7f8f8;
}

/* Get consultation */

#consult-how_work .consult-how_work-wrap {
    height: calc(100vw / 2.25);
    background-image: url('assets/image/design/your_journey_consult.webp');
    background-size: cover;
    background-repeat: no-repeat;
}

#consult-how_work .consult-how_work-inner {
    height: 100%;
    color: #fff;
    text-align: center;
    padding: calc(100vw / 13.09) 0;
}

#consult-how_work .title {
    font-size: calc(100vw / 25.71);
    font-family: var(--font-family-semibold);
    line-height: calc(100vw / 21.42);
}

#consult-how_work .text {
    font-size: calc(100vw / 72);
    font-family: var(--font-family-light);
    line-height: calc(100vw / 45);
    margin: calc(100vw / 72) 0 0;
}

#consult-how_work .button {
    margin: calc(100vw / 57.6) 0 0;
}

#consult-how_work .button a {
    width: calc(100vw / 6.85);
    height: calc(100vw / 30);
    font-size: calc(100vw / 90);
    font-family: var(--font-family-semibold);
    line-height: calc(100vw / 30);
    border-radius: calc(100vw / 288);
}


/*--------------------------------------------------------------
    Page "Partnership"
--------------------------------------------------------------*/

/* Banner */

#banner-partnership .banner-partnership-wrap {
    height: calc(100vw / 2.25);
    background-image: url('assets/image/design/partnership_banner.webp');
    background-size: cover;
    background-repeat: no-repeat;
    padding: calc(100vw / 14.4) calc(100vw / 32);
}

#banner-partnership .banner-partnership-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: calc(100vw / 32.72);
    color: #fff;
    font-size: calc(100vw / 72);
    font-family: var(--font-family-light);
    line-height: calc(100vw / 45);
}

/* Advantages */

#advantages-partnership {
    margin: 100px 0 0;
}

#advantages-partnership .h2 {
    text-align: center;
}

#advantages-partnership .items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 45px;
    margin: 60px 0 0;
}

#advantages-partnership .icon span {
    display: inline-block;
    width: 44px;
    height: 44px;
    background-color: #0c0c0e;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 10px;
}

#advantages-partnership .icon {
    position: relative;
    line-height: 0;
}

#advantages-partnership .icon::after {
    content: '';
    width: calc(100% - 56px);
    height: 1px;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    background-color: #e2e6e9;
}

#advantages-partnership .item_01 .icon span {
    background-image: url('assets/image/icon/advantages_solution_01.svg');
}

#advantages-partnership .item_02 .icon span {
    background-image: url('assets/image/icon/advantages_solution_02.svg');
}

#advantages-partnership .item_03 .icon span {
    background-image: url('assets/image/icon/advantages_solution_03.svg');
}

#advantages-partnership .item_04 .icon span {
    background-image: url('assets/image/icon/advantages_solution_04.svg');
}

#advantages-partnership .h3 {
    margin: 15px 0 0;
}

#advantages-partnership .text {
    font-family: var(--font-family-light);
    margin: 10px 0 0;
}

#advantages-partnership .button {
    text-align: center;
    margin: 60px 0 0;
}

#advantages-partnership .button-wrap {
    display: inline-block;
    background-color: #f7f8f8;
    border-radius: 5px;
    padding: 20px 0;
}

#advantages-partnership .button-wrap > * {
    vertical-align: middle;
    margin: 0 22px;
}

#advantages-partnership .button-wrap > span {
    color: #0c0c0e;
    font-size: 24px;
    line-height: 38.4px;
}

#advantages-partnership .button-wrap > a {
    width: 230px;
    height: 48px;
    line-height: 2.9;
    border-radius: 5px;
}

#advantages-partnership .button-wrap > a span {
    line-height: 1;
    background-image: url('assets/image/icon/arrow-long-right.svg');
    background-size: 17px auto;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    padding: 10px 34px 10px 0;
}

/* Special offer */

#offer-partnership {
    margin: 100px 0 0;
}

#offer-partnership .offer-partnership-inner {
    position: relative;
}

#offer-partnership .thumbnail {
    line-height: 0;
}

#offer-partnership .thumbnail img {
    border-radius: 10px;
}

#offer-partnership .info {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #0c0c0e;
    text-align: center;
    background-color: rgb(255 255 255 / 70%);
    padding: 40px 10px;
}

#offer-partnership .info .title {
    font-family: var(--font-family-semibold);
}

#offer-partnership .info .title > * {
    vertical-align: middle;
}

#offer-partnership .info .offer {
    font-size: 56px;
    line-height: 67.2px;
}

#offer-partnership .info .num {
    font-size: 40px;
    line-height: 48px;
    background-color: #faff1a;
    border-radius: 5px;
    background-image: url('assets/image/icon/arrow-link.svg');
    background-size: 12px auto;
    background-position: calc(100% - 5px) 5px;
    background-repeat: no-repeat;
    padding: 6px 30px 6px 15px;
    margin: 0 0 0 30px;
}

#offer-partnership .info .text {
    font-size: 20px;
    line-height: 32px;
    margin: 20px 120px 0;
}

#offer-partnership .info .text strong {
    font-family: var(--font-family-semibold);
}

#offer-partnership .button {
    line-height: 0;
    margin: 20px 0 0;
}

#offer-partnership .button a {
    width: 240px;
    height: 48px;
    line-height: 2.9;
    border-radius: 5px;
}

/* Who are we looking for? */

#look-partnership {
    margin: 60px 0 0;
}

#look-partnership .look-partnership-inner {
    text-align: center;
    background-color: #f7f8f8;
    border-radius: 10px;
    padding: 60px 0;
}

#look-partnership .items {
    margin: 40px 100px 0;
}

#look-partnership .items span {
    display: inline-block;
    color: #0c8ce9;
    font-size: 18px;
    line-height: 28.8px;
    background-color: #e0eef7;
    border-radius: 50px;
    padding: 10px 20px;
    margin: 0 4px 12px;
}

#look-partnership .button {
    margin: 40px 0 0;
}

#look-partnership .button a {
    width: 230px;
    height: 48px;
    line-height: 2.9;
    border-radius: 5px;
}

#look-partnership .button a span {
    line-height: 1;
    background-image: url('assets/image/icon/arrow-long-right.svg');
    background-size: 17px auto;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    padding: 10px 34px 10px 0;
}


/*--------------------------------------------------------------
    Page "Welcome to SAGA House!" [Quiz]
--------------------------------------------------------------*/

#header.site-header-quiz .header-content-inner {
    grid-template-columns: 1fr;
}

#header.site-header-quiz .logo img {
    width: 126px;
}

body.page-template-page-quiz .main_container {
    min-height: calc(100vh - 130px);
}

body.page-template-page-quiz #main {
    background-color: #fff;
    /* background-image: url('/wp-content/uploads/2024/02/modular_house_thumb.webp'); */
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    padding-bottom: var(--margin-footer);
}

body.page-template-page-quiz .entry-header-top {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-gap: 0;
    align-items: center;
    text-align: center;
    margin: 40px 0 0 0;
}

body.page-template-page-quiz .entry-header-top-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0;
}

body.page-template-page-quiz .entry-header .sub_title {
    font-size: 20px;
    font-family: var(--font-family-light);
    line-height: 20px;
    margin: 20px 0 0;
}

body.page-template-page-quiz .entry-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

body.page-template-page-quiz #footer {
    height: 130px;
    background-color: #fff;
    margin-top: 0;
}

body.page-template-page-quiz #footer .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 18px 0 50px;
}

body.page-template-page-quiz #social-navigation {
    display: inline-block;
}

body.page-template-page-quiz #footer .footer-branding {
    display: block;
}

body.page-template-page-quiz #footer .footer-copyright,
body.page-template-page-quiz #footer .copy-nav,
body.page-template-page-quiz #copy-navigation {
    display: inline-block;
}

body.page-template-page-quiz #footer .footer-copyright {
    margin: 0 44px 0 0;
}

body.page-template-page-quiz .wpcf7-popup-ty {
    background-color: transparent;
}

body.page-template-page-quiz .wpcf7-popup-ty-wrap {
    max-width: 580px;
}

/* Numbers of steps */

#steps_number-quiz .steps_number-quiz-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

#steps_number-quiz .step {
    text-align: center;
}

#steps_number-quiz .number {
    display: block;
    position: relative;
}

#steps_number-quiz .number::before,
#steps_number-quiz .number::after {
    content: '';
    width: calc(100% / 2 + 10px);
    height: 2px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0c8ce9;
    z-index: 1;
}

#steps_number-quiz .step.active .number::before,
#steps_number-quiz .step.active .number::after {
    background-color: #0c8ce9;
}

#steps_number-quiz .step.active ~ .step .number::before,
#steps_number-quiz .step.active ~ .step .number::after {
    background-color: #85c1ef;
}

#steps_number-quiz .step.active + .step .number::before {
    background-color: #0c8ce9;
}

#steps_number-quiz .number::before {
    left: -10px;
}

#steps_number-quiz .number::after {
    right: -10px;
}

#steps_number-quiz .step:first-child .number::before,
#steps_number-quiz .step:last-child .number::after {
    display: none;
}

#steps_number-quiz .number span {
    width: 32px;
    height: 32px;
    display: inline-block;
    position: relative;
    color: #fff;
    font-family: var(--font-family-light);
    line-height: 32px;
    background-color: #0c8ce9;
    border-radius: 5px;
    z-index: 2;
}

#steps_number-quiz .step.active .number span {
    background-color: #0c8ce9;
}

#steps_number-quiz .step.active ~ .step .number span {
    background-color: #85c1ef;
}

#steps_number-quiz .name {
    color: #0c8ce9;
    margin: 10px 0 0 0;
}

#steps_number-quiz .step.active .name {
    color: #0c8ce9;
}

#steps_number-quiz .step.active ~ .step .name {
    color: #85c1ef;
}

/* Steps */

#steps-quiz {
    margin: 12px 0 0 0;
}

#steps-quiz .swiper-pager-long_arrows .swiper-button-next:hover,
#steps-quiz .swiper-pager-long_arrows .swiper-button-prev:hover {
    opacity: 1;
}

#steps-quiz .steps-quiz-inner {
    color: #0c0c0e;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 32px;
}

#steps-quiz h2 {
    display: flex;
    gap: 12px;
}

#steps-quiz .step {
    display: none;
}

#steps-quiz .step.active {
    display: block;
}

/* Step 01 */

#steps-quiz #step_1 .houses-carousel {
    position: relative;
    padding: 40px 52px;
}

/* Strict alignment of the wrapper - Start */

#swiper_houses-quiz.swiper:not(.swiper-initialized) .swiper-slide {
    width: calc(76.9% - 20px);
    flex-shrink: 0;
    margin-right: 20px;
}

/* Strict alignment of the wrapper - End */

#steps-quiz #step_1 .swiper-wrapper {
    align-items: stretch;
}

#steps-quiz #step_1 .swiper-slide {
    height: auto;
}

#steps-quiz #step_1 .thumbnail {
    line-height: 0;
}

#steps-quiz #step_1 .thumbnail img {
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

#steps-quiz #step_1 .swiper-pager-long_arrows .swiper-button-prev {
    left: 0;
}

#steps-quiz #step_1 .swiper-pager-long_arrows .swiper-button-next {
    right: 0;
}

#steps-quiz #step_1 .swiper-pager-long_arrows .swiper-button-next:after,
#steps-quiz #step_1 .swiper-pager-long_arrows .swiper-button-prev:after {
    background-color: transparent;
    border: 1px solid #0c8ce9;
}

#steps-quiz #step_1 .swiper-pager-long_arrows .swiper-button-prev:after {
    background-image: url('assets/image/icon/arrow-long-left_blue.svg');
}

#steps-quiz #step_1 .swiper-pager-long_arrows .swiper-button-next:after {
    background-image: url('assets/image/icon/arrow-long-right_blue.svg');
}

#steps-quiz #step_1 .information {
    color: #0c0c0e;
    background-color: #f7f8f8;
    border-radius: 0 0 10px 10px;
    padding: 15px 20px;
}

#steps-quiz #step_1 .information .cost {
    display: flex;
    gap: 60px;
    padding: 10px 0 15px;
}

#steps-quiz #step_1 .information .price-title,
#steps-quiz #step_1 .information .area-title {
    font-size: 12px;
    font-family: var(--font-family-medium);
}

#steps-quiz #step_1 .information .price-data span:first-child,
#steps-quiz #step_1 .information .area-data span:first-child {
    font-size: 24px;
}

#steps-quiz #step_1 .information .price-data span:last-child,
#steps-quiz #step_1 .information .area-data span:last-child {
    font-size: 14px;
    font-family: var(--font-family-light);
}

#steps-quiz #step_1 .house_check {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #e4e5e7;
    padding: 15px 0;
}

#steps-quiz #step_1 .house_check .checkbox-wrap {
    display: inline-block;
    position: relative;
    line-height: 0;
}

#steps-quiz #step_1 .house_check .checkbox-wrap input {
    width: 28px;
    height: 28px;
    opacity: 0;
}

#steps-quiz #step_1 .house_check .checkbox-wrap span {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    background-size: 14px auto;
    background-position: 50%;
    background-repeat: no-repeat;
    border: 2px solid #0c8ce9;
    border-radius: 5px;
    pointer-events: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

#steps-quiz #step_1 .house_check .checkbox-wrap:hover span {
    background-color: rgb(12 140 233 / 20%);
}

#steps-quiz #step_1 .house_check .checkbox-wrap input:checked + span {
    background-color: #0c8ce9;
    background-image: url('assets/image/icon/checked.svg');
}

#steps-quiz #step_1 .house_check label {
    color: #0c8ce9;
    font-size: 20px;
    cursor: pointer;
    user-select: none;
}

/* Step 02 */

#steps-quiz #step_2 .quantity {
    position: relative;
    padding: 40px 0;
}

#steps-quiz #step_2 .quantity-wrap {
    display: flex;
    gap: 10px;
}

#steps-quiz #step_2 .quantity input {
    width: 40px;
    height: 40px;
    font-size: 20px;
    text-align: center;
    border: 1px solid #e2e6e9;
    border-radius: 5px;
    appearance: textfield;
}

#steps-quiz #step_2 .quantity input[type="number"]::-webkit-outer-spin-button,
#steps-quiz #step_2 .quantity input[type="number"]::-webkit-inner-spin-button {
    appearance: none;
}

#steps-quiz #step_2 .quantity button {
    width: 40px;
    height: 40px;
    display: block;
    background-color: #fff;
    border: 1px solid #0c8ce9;
    border-radius: 5px;
}

#steps-quiz #step_2 .quantity button span {
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
}

#steps-quiz #step_2 .quantity .btn-dwn span {
    background-image: url('assets/image/icon/quantity_minus_blue.svg');
}

#steps-quiz #step_2 .quantity .btn-dwn:hover span {
    background-image: url('assets/image/icon/quantity_minus.svg');
}

#steps-quiz #step_2 .quantity .btn-up span {
    background-image: url('assets/image/icon/quantity_plus_blue.svg');
}

#steps-quiz #step_2 .quantity .btn-up:hover span {
    background-image: url('assets/image/icon/quantity_plus.svg');
}

#steps-quiz #step_2_2 .questions {
    position: relative;
    padding: 40px 0;
}

#steps-quiz #step_2_2 .question {
    padding: 0 0 40px;
}

#steps-quiz #step_2_2 .question:last-child {
    padding: 0;
}

#steps-quiz #step_2_2 .q_title {
    margin: 0 0 10px;
}

#steps-quiz #step_2_2 .question .q_choose {
    display: flex;
    gap: 40px;
}

#steps-quiz #step_2_2 .question-stage .q_choose {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 40px;
}

#steps-quiz #step_2_2 .q_choose .radio,
#steps-quiz #step_3 .social_methods-popup .radio p {
    display: flex;
    gap: 5px;
    align-items: center;
}

#steps-quiz #step_2_2 .q_choose .radio-wrap,
#steps-quiz #step_3 .social_methods-popup .radio-wrap {
    display: inline-block;
    position: relative;
    line-height: 0;
}

#steps-quiz #step_2_2 .q_choose .radio-wrap input,
#steps-quiz #step_3 .social_methods-popup .radio-wrap input {
    width: 20px;
    height: 20px;
    opacity: 0;
}

#steps-quiz #step_2_2 .q_choose .radio-wrap span,
#steps-quiz #step_3 .social_methods-popup .radio-wrap span {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    background-size: 14px auto;
    background-position: 50%;
    background-repeat: no-repeat;
    border: 2px solid #0c8ce9;
    border-radius: 50%;
    pointer-events: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

#steps-quiz #step_2_2 .q_choose .radio:hover .radio-wrap span,
#steps-quiz #step_3 .social_methods-popup .radio:hover .radio-wrap span {
    background-color: rgb(12 140 233 / 20%);
}

#steps-quiz #step_2_2 .q_choose .radio .radio-wrap input:checked + span::after,
#steps-quiz #step_3 .social_methods-popup .radio .radio-wrap input:checked + span::after {
    content: '';
    width: 12px;
    height: 12px;
    display: block;
    position: relative;
    left: 2px;
    top: 2px;
    background-color: #0c8ce9;
    border-radius: 50%;
}

#steps-quiz #step_2_2 .q_choose label,
#steps-quiz #step_3 .social_methods-popup label {
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}

/* Step 03 */

#steps-quiz #step_3 .contact_details {
    position: relative;
    padding: 40px 0;
}

#steps-quiz #step_3 p {
    margin: 0;
    padding: 0;
}

#steps-quiz #step_3 .form-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0px 10px;
}

#steps-quiz #step_3 .form-field {
    position: relative;
    margin: 0 0 12px;
}

#steps-quiz #step_3 .field-name {
    grid-area: 1 / 1 / span 1 / span 2;
}

#steps-quiz #step_3 .field-email {
    grid-area: 2 / 1 / span 1 / span 2;
}

#steps-quiz #step_3 .field-social {
    grid-area: 3 / 1 / span 1 / span 1;
}

#steps-quiz #step_3 .field-phone {
    grid-area: 3 / 2 / span 1 / span 1;
}

#steps-quiz #step_3 .field-country {
    grid-area: 4 / 1 / span 1 / span 1;
}

#steps-quiz #step_3 .field-city {
    grid-area: 4 / 2 / span 1 / span 1;
}

#steps-quiz #step_3 .field-info-contacts {
    grid-area: 5 / 1 / span 1 / span 2;
    color: #838383;
}

#steps-quiz #step_3 .field-info-contacts .req {
    color: #f00;
    margin: 0 5px 0 0;
}

#steps-quiz #step_3 .field-info-message {
    grid-area: 6 / 1 / span 1 / span 2;
    margin: 40px 0 10px;
}

#steps-quiz #step_3 .field-message {
    grid-area: 7 / 1 / span 1 / span 2;
}

#steps-quiz #step_3 .field-social::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: calc(50% - 3px);
    right: 27px;
    border: solid #61646b;
    border-width: 0 1px 1px 0;
    padding: 3px;
    transform: rotate(45deg) translateY(-50%);
    z-index: 3;
}

#steps-quiz #step_3 .field-social .social_methods-popup {
    width: 100%;
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    z-index: 5;
}

#steps-quiz #step_3 .field-social .social_methods-popup.active {
    display: block;
}

#steps-quiz #step_3 .field-social .social_methods-popup-wrap {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #e2e6e9;
    padding: 10px 0;
}

#steps-quiz #step_3 .field-social .social_methods-popup .radio {
    padding: 10px 20px;
    transition: all .3s ease-in-out;
}

#steps-quiz #step_3 .field-social .social_methods-popup .radio:hover,
#steps-quiz #step_3 .field-social .social_methods-popup .radio.active {
    background-color: rgb(12 140 233 / 20%);
}

#steps-quiz #step_3 .social_methods-popup .radio p {
    gap: 10px;
}

#steps-quiz #step_3 .social_methods-popup label {
    background-size: 17px auto;
    background-position: 0 50%;
    background-repeat: no-repeat;
    padding: 5px 0 5px 23px;
}

#steps-quiz #step_3 .social_methods-popup .radio.whatsapp label {
    background-image: url('assets/image/icon/icon-quiz-whatsapp.svg');
}

#steps-quiz #step_3 .social_methods-popup .radio.viber label {
    background-image: url('assets/image/icon/icon-quiz-viber.svg');
}

#steps-quiz #step_3 .social_methods-popup .radio.telegram label {
    background-image: url('assets/image/icon/icon-quiz-telegram.svg');
}

#steps-quiz #step_3 .form-field-wrap.error::after,
#steps-quiz #step_3 .form-field-wrap.success::after {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-position: 50%;
    background-repeat: no-repeat;
    z-index: 4;
}

#steps-quiz #step_3 .form-field.field-social .form-field-wrap.error::after,
#steps-quiz #step_3 .form-field.field-social .form-field-wrap.success::after {
    right: 47px;
}

#steps-quiz #step_3 .form-field-wrap.error:not(.field-message)::after {
    background-image: url('assets/image/icon/field_error.svg');
}

#steps-quiz #step_3 .form-field-wrap.success:not(.field-message)::after {
    background-image: url('assets/image/icon/field_success.svg');
}

#steps-quiz #step_3 .form-field .field-label {
    position: absolute;
    left: 20px;
    top: 16px;
    color: #61646b;
    opacity: 1;
    cursor: text;
    user-select: none;
    transition: top .3s ease-in-out, font-size .3s ease-in-out;
    z-index: 1;
}

#steps-quiz #step_3 .form-field.field-phone .field-label {
    left: 110px;
}

#steps-quiz #step_3 .form-field-wrap.focus .field-label {
    top: 5px;
    font-size: 12px;
}

#steps-quiz #step_3 .form-field-wrap.error .field-label {
    opacity: 0;
}

#steps-quiz #step_3 .field-phone .selected-flag {
    width: 96px;
}

#steps-quiz #step_3 .wpcf7-form-control-wrap {
    display: block;
}

#steps-quiz #step_3 .form-field input,
#steps-quiz #step_3 .form-field textarea,
#steps-quiz #step_3 .form-field select {
    width: 100%;
    display: block;
    color: #0c0c0e;
    background-color: #fff;
    border: 1px solid #e2e6e9;
    border-radius: 5px;
    padding: 0 20px;
}

#steps-quiz #step_3 .form-field input,
#steps-quiz #step_3 .form-field select {
    height: 60px;
}

#steps-quiz #step_3 .form-field textarea {
    height: 180px;
    padding: 15px 20px;
}

#steps-quiz #step_3 .form-field.field-phone input {
    padding: 10px 106px 5px;
}

#steps-quiz #step_3 .form-field-wrap.focus input,
#steps-quiz #step_3 .form-field-wrap.focus textarea {
    padding: 24px 20px 5px;
}

#steps-quiz #step_3 .form-field.field-phone.focus input {
    padding: 24px 106px 5px;
}

#steps-quiz #step_3 .form-field-wrap.error input,
#steps-quiz #step_3 .form-field-wrap.error textarea {
    border-color: #ff1010;
}

#steps-quiz #step_3 .form-field-wrap.success input,
#steps-quiz #step_3 .form-field-wrap.success textarea {
    border-color: #0c8ce9;
}

#steps-quiz #step_3 .wpcf7-response-output {
    display: none;
    background-color: #fff;
}

#steps-quiz #step_3 .wpcf7-not-valid-tip {
    width: calc(100% - 20px);
    display: block;
    position: absolute;
    top: 5px;
    left: 18px;
    color: #ff1010;
    font-size: 12px;
    background-color: #fff;
    padding: 0 0 0 2px;
    pointer-events: none;
    /* z-index: 2; */
}

#steps-quiz #step_3 .field-phone .wpcf7-not-valid-tip {
    width: calc(100% - 108px);
    left: 106px;
}

/* Buttons */

#steps-quiz .buttons {
    text-align: center;
}

#steps-quiz .buttons .buttons-wrap {
    display: inline-block;
}

#steps-quiz .buttons .buttons-inner {
    display: flex;
    gap: 10px;
}

#steps-quiz .buttons button {
    height: 48px;
    font-family: var(--font-family-semibold);
    line-height: 2.8;
    text-align: center;
    border-radius: 5px;
    padding: 0 5px;
}

#steps-quiz .buttons .button-submit {
    display: inline-block;
    position: relative;
}

#steps-quiz .buttons .prev {
    width: 100px;
    border: 1px solid #0c8ce9;
}

#steps-quiz .buttons .next,
#steps-quiz .buttons .send {
    width: 240px;
}

#steps-quiz .buttons .next[disabled],
#steps-quiz .buttons .next[disabled]::before {
    background-color: #c9c9c9;
}

#steps-quiz .steps-quiz-inner[data-step_first="1"] .buttons .prev,
#steps-quiz .steps-quiz-inner[data-step_last="1"] .buttons .next,
#steps-quiz .steps-quiz-inner:not([data-step_last="1"]) .buttons .button-submit {
    display: none;
}

#steps-quiz .buttons .next span {
    line-height: 1;
    background-image: url('assets/image/icon/arrow-long-right.svg');
    background-size: 17px auto;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    padding: 10px 34px 10px 0;
}

#steps-quiz .buttons .form-cf7_book-spinner {
    position: absolute;
    right: 0;
    top: 50%;
    line-height: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

#steps-quiz .buttons .button-submit.submitting .wpcf7-spinner {
    visibility: visible;
}


/*--------------------------------------------------------------
    Page "Revenue Share"
--------------------------------------------------------------*/

body.page-template-page-revenue {
    color: #4f5b7a;
    font-family: 'Source Sans 3', system-ui, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.page-template-page-revenue ::selection {
    color: #fff;
    background-color: #0e88e4;
}

body.page-template-page-revenue h1,
body.page-template-page-revenue h2,
body.page-template-page-revenue h3,
body.page-template-page-revenue h4 {
    color: #0c121a;
    font-family: 'Lora', Georgia, serif;
    letter-spacing: -.01em
}

body.page-template-page-revenue h2 {
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 500;
    line-height: 1.14;
}

body.page-template-page-revenue h2 em {
    color: #0e88e4;
    font-style: italic;
}

body.page-template-page-revenue section {
    padding: 64px 0;
}

body.page-template-page-revenue .center {
    max-width: 640px;
    text-align: center;
    margin: 0 auto 40px;
}

body.page-template-page-revenue .eyebrow {
    color: #0e88e4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

body.page-template-page-revenue .center .eyebrow {
    display: block;
    margin-bottom: 12px;
}

body.page-template-page-revenue .center p {
    color: #4f5b7a;
    font-size: 17px;
    margin-top: 12px;
}

body.page-template-page-revenue #main {
    padding: 62px 0 0 0;
}

/* HERO */

#revenue-hero {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

#revenue-hero .hero-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: stretch;
    padding: 60px 0 64px;
}

#revenue-hero .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#revenue-hero .eyebrow {
    color: var(--gold-light);
    margin-bottom: 18px;
}

#revenue-hero h1 {
    color: #fff;
    font-weight: 500;
    font-size: clamp(33px, 4.4vw, 50px);
    line-height: 1.08;
    margin-bottom: 18px;
}

#revenue-hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

#revenue-hero p.lede {
    font-size: 18px;
    color: #C6D3E2;
    margin-bottom: 28px;
    max-width: 480px;
}

#revenue-hero .hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

#revenue-hero .hero-photo {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 440px;
    background: linear-gradient(160deg, #33322C, #1E1E1A);
}

#revenue-hero .hero-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* INFOGRAPHIC */

#revenue-infographic {
    background: var(--paper-2);
    border-bottom: 1px solid var(--border);
}

#revenue-infographic .info-in {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

#revenue-infographic .info-item {
    padding: 26px 24px;
    border-left: 1px solid var(--border);
}

#revenue-infographic .info-item:first-child {
    border-left: none;
}

#revenue-infographic .info-item .k {
    font-size: 33px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

#revenue-infographic .info-item .t {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gold);
    margin-top: 6px;
}

#revenue-infographic .info-item .d {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.4;
}

/* HOW IT WORKS */

#revenue-how .how-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-bottom: 34px;
}

#revenue-how .step-c {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 24px;
    box-shadow: var(--shadow);
}

#revenue-how .step-c .n {
    font-family: 'Lora',serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--ink);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}

#revenue-how .step-c h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

#revenue-how .step-c p {
    font-size: 14.5px;
    color: var(--body);
}

#revenue-how .split-band {
    background: var(--navy);
    border-radius: 7px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
    color: #fff;
}

#revenue-how .split-band .cap {
    font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #8FA6BC;
    margin-bottom: 12px;
}

#revenue-how .split-bar {
    display: flex;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

#revenue-how .split-bar .you {
    background: var(--navy-mid);
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 16px;
}

#revenue-how .split-bar .saga {
    background: #2C4A66;
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 14px;
}

#revenue-how .split-bar .pct {
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

#revenue-how .split-bar .who {
    font-size: 11.5px;
    color: rgba(255,255,255,.85);
    margin-top: 2px;
}

#revenue-how .split-text h3 {
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px;
}

#revenue-how .split-text p {
    color: #C6D3E2;
    font-size: 14.5px;
    margin-bottom: 10px;
}

#revenue-how .split-text .fig {
    font-size: 13px;
    color: #8FA6BC;
    border-top: 1px solid var(--border-navy);
    padding-top: 12px;
    margin-top: 4px;
}

#revenue-how .split-text .fig b {
    color: var(--gold-light);
}

/* GALLERY */

#revenue-gallery-sec .gallery {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
}

#revenue-gallery-sec .gallery figure {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: linear-gradient(160deg, #33322C, #1E1E1A);
    margin: 0;
}

#revenue-gallery-sec .gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#revenue-gallery-sec .gallery figcaption {
    position: absolute;
    left: 16px;
    bottom: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    background: rgba(12,12,15,.5);
    padding: 6px 15px;
    border-radius: 100px;
    backdrop-filter: blur(3px);
}

/* WHO BRINGS WHAT */

#revenue-roles-sec {
    background: var(--paper-2);
}

#revenue-roles-sec .roles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#revenue-roles-sec .rcol {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 28px;
}

#revenue-roles-sec .rcol.saga {
    border-top: 4px solid var(--gold);
}

#revenue-roles-sec .rcol.you {
    border-top: 4px solid var(--ink);
}

#revenue-roles-sec .rcol h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

#revenue-roles-sec .rcol .sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
}

#revenue-roles-sec .rcol ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#revenue-roles-sec .rcol li {
    display: flex;
    gap: 10px;
    font-size: 14.5px;
    color: var(--body);
}

#revenue-roles-sec .rcol li svg {
    flex: none;
    margin-top: 3px;
    width:  max-content;
    height:  max-content;
    fill:  none;
    ;
}

#revenue-roles-sec .rcol.saga li svg {
    color: var(--gold);
}

#revenue-roles-sec .rcol.you li svg {
    color: var(--ink);
}

/* TIMELINE */

#revenue-timeline .tl-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
}

#revenue-timeline .tl {
    position: relative;
    padding: 0 18px 0 0;
}

#revenue-timeline .tl .dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--gold);
    position: relative;
    z-index: 2;
}

#revenue-timeline .tl .rail {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 0;
    height: 1px;
    background: var(--border);
}

#revenue-timeline .tl:last-child .rail {
    display: none;
}

#revenue-timeline .tl .wk {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--gold);
    margin: 16px 0 6px;
    text-transform: uppercase;
}

#revenue-timeline .tl h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
}

#revenue-timeline .tl p {
    font-size: 13.5px;
    color: var(--body);
}

#revenue-timeline .tl-note {
    margin-top: 26px;
    font-size: 13.5px;
    color: var(--muted);
}

/* FORM WIZARD */

#revenue-apply {
    background: var(--navy);
}

#revenue-apply .center .eyebrow {
    color: var(--gold-light);
}

#revenue-apply .center h2 {
    color: #fff;
}

#revenue-apply .center p {
    color: #C6D3E2;
}

#revenue-apply .wizard {
    max-width: 660px;
    margin: 0 auto;
    background: var(--card);
    border-radius: 9px;
    box-shadow: 0 34px 80px -34px rgba(0,0,0,.6);
    overflow: hidden;
}

#revenue-apply .wz-head {
    padding: 22px 30px 0;
}

#revenue-apply .wz-prog {
    height: 5px;
    background: var(--paper-2);
    border-radius: 100px;
    overflow: hidden;
}

#revenue-apply .wz-prog i {
    display: block;
    height: 100%;
    width: 20%;
    background: var(--gold);
    border-radius: 100px;
    transition: width .3s;
}

#revenue-apply .wz-count {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 12px;
}

#revenue-apply .wz-body {
    padding: 10px 30px 30px;
}

#revenue-apply .fstep {
    display: none;
    animation: fade .25s ease;
}

#revenue-apply .fstep.active {
    display: block;
}

#revenue-apply .fstep h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 14px 0 4px;
    color: var(--ink);
}

#revenue-apply .fstep .stephint {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 18px;
}

#revenue-apply .q {
    margin-bottom: 22px;
}

#revenue-apply .q label.qlabel {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

#revenue-apply .q .req {
    color: var(--gold);
}

#revenue-apply .q .help {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
}

#revenue-apply input[type=text],
#revenue-apply input[type=email],
#revenue-apply input[type=tel],
#revenue-apply input.other-in {
    width: 100%;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    color: var(--ink);
    padding: 12px 14px;
    border: 1px solid #D6CFC1;
    border-radius: 3px;
    background: #FCFCFB;
    transition: border-color .16s, box-shadow .16s;
}

#revenue-apply input#wizard-field-whatsapp {
    padding: 12px 14px 12px 110px;
}

#revenue-apply .q .selected-flag {
    width: 96px;
}

#revenue-apply input::placeholder {
    color: #9C968A;
}

#revenue-apply input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(14,136,228,.16);
}

/* radio cards */

#revenue-apply .opts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#revenue-apply .opts.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

#revenue-apply .opt {
    position: relative;
}

#revenue-apply .opt input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

#revenue-apply .opt span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    border: 1px solid #D6CFC1;
    border-radius: 4px;
    font-size: 14.5px;
    color: var(--body);
    cursor: pointer;
    transition: all .14s;
}

#revenue-apply .opt span.sl::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #C0C6BF;
    flex: none;
    transition: all .14s;
}

#revenue-apply .opt input:checked + span.sl {
    border-color: var(--gold);
    background: #EAF4FD;
    color: var(--ink);
}

#revenue-apply .opt input:checked + span::before {
    border-color: var(--gold);
    background: radial-gradient(circle, #fff 32%, var(--gold) 38%);
}

#revenue-apply .opt input:focus-visible + span {
    box-shadow: 0 0 0 3px rgba(14,136,228,.3);
}

/* chips (multi) */

#revenue-apply .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

#revenue-apply .chip {
    position: relative;
}

#revenue-apply .chip input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

#revenue-apply .chip span {
    display: block;
    padding: 9px 15px;
    border: 1px solid #D6CFC1;
    border-radius: 100px;
    font-size: 14px;
    color: var(--body);
    cursor: pointer;
    transition: all .14s;
    user-select: none;
}

#revenue-apply .chip input:checked + span {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

#revenue-apply .chip input:focus-visible + span {
    box-shadow: 0 0 0 3px rgba(14,136,228,.32);
}

#revenue-apply .other-in {
    margin-top: 9px;
    display: none;
}

#revenue-apply .other-in.show {
    display: block;
}

#revenue-apply .consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--body);
    margin-top: 8px;
}

#revenue-apply .consent input {
    width: 17px;
    height: 17px;
    flex: none;
    margin-top: 2px;
    accent-color: var(--gold);
}

#revenue-apply .q.err .qlabel {
    color: var(--err);
}

#revenue-apply .q.err .opt span,
#revenue-apply .q.err .chip span,
#revenue-apply .q.err input[type=text],
#revenue-apply .q.err input[type=email] {
    border-color: var(--err);
}

#revenue-apply .errmsg {
    display: none;
    font-size: 12.5px;
    color: var(--err);
    margin-top: 8px;
    font-weight: 600;
}

#revenue-apply .q.err .errmsg {
    display: block;
}

#revenue-apply .wz-foot {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 0 30px 30px;
}

#revenue-apply .wz-foot .btn-1 {
    flex: 1;
}

#revenue-apply .wz-foot .btn-ghost {
    flex: 0 0 auto;
    min-width: 104px;
}

#revenue-apply .wz-secure {
    text-align: center;
    font-size: 11px;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 30px 24px;
}

/* buttons */

#revenue-apply #wz-submit {
    position: relative;
}

#revenue-apply #wz-submit .form-cf7_book-spinner {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 0;
}

#revenue-apply #wz-submit .wpcf7-spinner {
    margin: 0 10px;
}

#revenue-apply #wz-submit.submitting .wpcf7-spinner {
    visibility: visible;
}

/* success, spam */

#revenue-apply .wz-popup {
    display: none;
    text-align: center;
    padding: 44px 30px 40px;
}

#revenue-apply .wz-popup.show {
    display: block;
}

#revenue-apply .wz-popup .badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
}

#revenue-apply .wz-popup .badge svg {
    width:  max-content;
    height:  max-content;
    fill:  none;
    ;
}

#revenue-apply .wz-popup h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--ink);
}

#revenue-apply .wz-popup p {
    color: var(--body);
    font-size: 15px;
    max-width: 380px;
    margin: 0 auto;
}

#revenue-apply .wz-popup .ref {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--gold);
    margin-top: 16px;
}

#revenue-apply .wizard.done .wz-head,
#revenue-apply .wizard.done .wz-body,
#revenue-apply .wizard.done .wz-foot,
#revenue-apply .wizard.done .wz-secure,
#revenue-apply .wpcf7-response-output,
#revenue-apply .wpcf7-not-valid-tip {
    display: none;
}


/*--------------------------------------------------------------
    Post
--------------------------------------------------------------*/


/*--------------------------------------------------------------
    Post of modular house
--------------------------------------------------------------*/

body.post-template-single-modular_house h1.stylized span.block {
    display: block;
}

body.post-template-single-modular_house #footer {
    margin-top: 0;
}

/* Section "Content" */

#content-modular_house {
    margin: 90px 0 0;
}

/* Section "Thumbnail" */

#thumbnail-modular_house picture img {
    border-radius: 10px;
}

/* Section "Carousel" */

#carousel-modular_house .carousel-modular_house {
    position: relative;
}

#swiper-carousel {
    line-height: 0;
    border-radius: 10px;
}

#carousel-modular_house .swiper-wrapper {
    align-items: stretch;
}

#carousel-modular_house .swiper-slide {
    height: auto;
}

/* Section "Specification" */

#spec-modular_house {
    margin: 90px 0 0;
}

#spec-modular_house .spec-modular_house-inner {
    display: grid;
    grid-template-columns: 655px auto;
    grid-gap: 45px;
}

#spec-modular_house .h3 {
    font-family: var(--font-family-semibold);
}

#spec-modular_house .spec-modular_house-add_images {
    display: grid;
    grid-gap: 5px;
}

#spec-modular_house .add_image {
    line-height: 0;
}

#spec-modular_house .add_image picture {
    height: 100%;
}

#spec-modular_house .add_image img {
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

#spec-modular_house .spec-modular_house-tags {
    margin: 30px 0 0;
}

#spec-modular_house .title_tags,
#spec-modular_house .price_from-title,
#spec-modular_house .price_area-title {
    color: #383a3d;
    font-size: 12px;
    font-family: var(--font-family-medium);
    line-height: 14.4px;
    margin: 0 0 5px;
}

#spec-modular_house .span_tags span,
#spec-modular_house .span_tags a {
    display: inline-block;
    color: #0c8ce9;
    font-size: 12px;
    text-decoration: none;
    background-color: #f7f8f8;
    border-radius: 20px;
    margin: 0 3px 6px 0;
    padding: 0 14px;
}

#spec-modular_house .spec-modular_house-price {
    display: flex;
    gap: 60px;
    margin: 30px 0 0;
}

#spec-modular_house .price_from-number,
#spec-modular_house .price_area-number {
    font-size: 32px;
    line-height: 32px;
}

#spec-modular_house .price_from-currency,
#spec-modular_house .price_area-unit {
    font-size: 14px;
    font-family: var(--font-family-light);
    line-height: 14px;
}

#spec-modular_house .spec-modular_house-description,
#spec-modular_house .spec-modular_house-features,
#spec-modular_house .spec-modular_house-upgrades {
    border-top: 1px solid #f4f5f5;
    padding: 30px 0 0;
    margin: 30px 0 0;
}

#spec-modular_house .spec-features-text,
#spec-modular_house .spec-upgrades-text {
    margin: 20px 0 0;
}

#spec-modular_house .spec-features-text .format-cols_2,
#spec-modular_house .spec-upgrades-text .format-cols_2 {
    column-count: 2;
    column-gap: 50px;
}

#spec-modular_house .spec-modular_house-experts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #F7F8F8;
    border-radius: 5px;
    margin: 35px 0 0;
    padding: 15px 10px;
}

#spec-modular_house .spec-experts-href {
    text-align: right;
}

#spec-modular_house .spec-experts-href a {
    display: inline-block;
    color: #0c8ce9;
}

#spec-modular_house .spec-experts-href a span {
    display: inline-block;
    position: relative;
    background-image: url('assets/image/icon/arrow-long-right_blue_dark.svg');
    background-size: 22px auto;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    padding: 0 34px 0 0;
}

#spec-modular_house .spec-experts-href a:hover span {
    text-decoration: underline;
}

#spec-modular_house .spec-modular_house-order {
    margin: 40px 0 0;
}

#spec-modular_house .spec-modular_house-order a {
    width: 100%;
    max-width: 300px;
    height: 48px;
    text-align: center;
    line-height: 2.8;
    border-radius: 5px;
}

/* Section "Download Specs" */

#download_specs-modular_house {
    margin: 100px 0 0;
}

#download_specs-modular_house .download_specs-modular_house {
    position: relative;
}

#swiper-download_specs {
    line-height: 0;
    border: 1px solid #f4f5f5;
    border-radius: 10px;
}

#swiper-download_specs .swiper-wrapper {
    align-items: stretch;
}

#swiper-download_specs .swiper-slide {
    height: auto;
}

#swiper-download_specs .swiper-slide picture {
    text-align: center;
}

#swiper-download_specs .swiper-slide img {
    width: auto;
    height: 100%;
    max-height: 700px;
}

#download_specs-modular_house .swiper-pagination-text_bullets {
    top: 30px;
    bottom: auto;
}

#download_specs-modular_house .swiper-pagination-text_bullets .swiper-horizontal > .swiper-pagination-bullets,
#download_specs-modular_house .swiper-pagination-text_bullets .swiper-pagination-bullets.swiper-pagination-horizontal {
    background-color: #f7f8f8;
}

#download_specs-modular_house .download_specs-swiper-pager {
    display: none;
}

#download_specs-modular_house .download_specs-button {
    width: 100%;
    display: block;
    position: absolute;
    bottom: 30px;
    text-align: center;
    z-index: 1;
}

#download_specs-modular_house .download_specs-button a {
    width: 100%;
    max-width: 300px;
    height: 38px;
    display: inline-block;
    color: #0c8ce9;
    font-size: 14px;
    font-family: var(--font-family-medium);
    line-height: 2.7;
    background-color: #fff;
    background-image: linear-gradient(to bottom, #fff, transparent);
    border-radius: 5px;
}

#download_specs-modular_house .download_specs-button a:hover {
    color: #fff;
}

#download_specs-modular_house .download_specs-button a span {
    background-image: url('assets/image/icon/download.svg');
    background-size: 18px auto;
    background-position: 0 50%;
    background-repeat: no-repeat;
    padding: 0 0 0 34px;
}

#download_specs-modular_house .download_specs-button a:hover span {
    background-image: url('assets/image/icon/download_white.svg');
}

/* Section "Video & Photo" */

#gallery-modular_house {
    margin: 60px 0 0;
}

#gallery-modular_house .gallery-modular_house-wrap {
    background-color: #f7f8f8;
    padding: 90px 0 70px;
}

#gallery-modular_house .h2 {
    text-align: center;
}

#gallery-modular_house .gallery-modular_house-gallery {
    margin: 40px 0 0;
}


/*--------------------------------------------------------------
    Category
--------------------------------------------------------------*/


/*--------------------------------------------------------------
    Category "Explore Our Modular Houses"
--------------------------------------------------------------*/

#category-modular_houses .entry-header {
    margin: 0 0 60px;
}

#category-modular_houses h1.stylized span.block {
    display: block;
}

#category-modular_houses h3.stylized span.none {
    display: none;
}

#category-modular_houses .article-inner {
    position: relative;
}

#category-modular_houses .thumbnail-cat_mod_houses {
    line-height: 0;
}

#category-modular_houses .spec-cat_mod_houses {
    width: 100%;
    max-width: 420px;
    position: absolute;
    left: 0;
    bottom: 44px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 20px;
    margin: 0;
}

#category-modular_houses .article-inner.thumbnail-empty .spec-cat_mod_houses {
    position: relative;
    bottom: 0;
}

#category-modular_houses .spec-cat_mod_houses .h3 {
    line-height: 28.8px;
}

#category-modular_houses .spec-cat_mod_houses .h3.stylized .none {
    display: none;
}

#category-modular_houses .spec-cat_mod_houses-tags {
    margin: 15px 0 0;
}

#category-modular_houses .price_from-title,
#category-modular_houses .price_area-title {
    color: #383a3d;
    font-size: 12px;
    font-family: var(--font-family-medium);
    line-height: 14.4px;
    margin: 0 0 5px;
}

#category-modular_houses .span_tags span,
#category-modular_houses .span_tags a {
    display: inline-block;
    color: #0c8ce9;
    font-size: 12px;
    text-decoration: none;
    background-color: #f7f8f8;
    border-radius: 20px;
    margin: 0 3px 5px 0;
    padding: 0 14px;
}

#category-modular_houses .spec-cat_mod_houses-price {
    display: flex;
    gap: 60px;
    border-top: 1px solid #f4f5f5;
    margin: 15px 0 0;
    padding: 20px 0 0;
}

#category-modular_houses .price_from-number,
#category-modular_houses .price_area-number {
    font-size: 32px;
    line-height: 32px;
}

#category-modular_houses .price_from-currency,
#category-modular_houses .price_area-unit {
    font-size: 14px;
    font-family: var(--font-family-light);
    line-height: 14px;
}

#category-modular_houses .spec-cat_mod_houses-href {
    margin: 15px 0 0;
}

#category-modular_houses .spec-cat_mod_houses-href a {
    width: 170px;
    height: 40px;
    font-size: 14px;
    font-family: var(--font-family-medium);
    text-align: center;
    text-transform: capitalize;
    line-height: 2.5;
    border: 1px solid #0c8ce9;
    border-radius: 5px;
}

#category-modular_houses .spec-cat_mod_houses-href a span {
    line-height: 1;
    background-image: url('assets/image/icon/arrow-long-right_blue.svg');
    background-size: 17px auto;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    padding: 10px 34px 10px 0;
}

#category-modular_houses .spec-cat_mod_houses-href a:hover span {
    background-image: url('assets/image/icon/arrow-long-right.svg');
}


/*--------------------------------------------------------------
    404 Error
--------------------------------------------------------------*/

#header.site-header-404 .header-content {
    background-color: #0c0c0e;
}

#header.site-header-404 .header-content-inner {
    grid-template-columns: 1fr;
}

.error-404 .page-content {
    text-align: center;
}

.error-404 .text {
    font-size: 18px;
    font-family: var(--font-family-light);
    line-height: 28.8px;
}

.error-404 .banner img {
    width: 100%;
    max-width: 740px;
}

.error-404 .href {
    margin: 40px 0 0;
}

.error-404 .href a {
    width: 186px;
    height: 48px;
    font-family: var(--font-family-semibold);
    border-radius: 5px;
}

.error-404 .href a span {
    line-height: 2.8;
}


/*--------------------------------------------------------------
    Popup Forms
--------------------------------------------------------------*/

/* Form "Book a Consultation" */

.form-cf7_book p {
    margin: 0;
    padding: 0;
}

.form-cf7_book .form-cf7_book-wrap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 100%;
    left: 0;
    background-color: rgb(0 0 0 / 0%);
    transition: background-color .5s ease-in-out, top 0s ease-in-out .5s;
    z-index: 999;
}

.form-cf7_book.open .form-cf7_book-wrap {
    top: 0;
    background-color: rgb(0 0 0 / 70%);
    transition: background-color .5s ease-in-out, top 0s ease-in-out;
}

.form-cf7_book .form-cf7_book-inner {
    width: 100%;
    max-width: 860px;
    max-height: 100vh;
    position: relative;
    top: calc(100vw / 20);
    border-radius: 10px;
    box-shadow: 0 0 20px 0;
    margin: 0 auto;
    overflow: auto;
    opacity: 0;
    transition: opacity .3s ease-in-out, top .5s ease-in-out;
}

.form-cf7_book.open .form-cf7_book-inner {
    top: calc(100vw / 12);
    opacity: 1;
    transition: opacity .3s ease-in-out, top .5s ease-in-out;
}

.form-cf7_book .form-cf7_book-content {
    display: grid;
    grid-template-columns: 320px auto;
    background-color: #fff;
}

.form-cf7_book .form-cf7_book-bg {
    background-image: url('assets/image/design/book_consultation.webp');
    background-size: cover;
    background-repeat: no-repeat;
}

.form-cf7_book .form-cf7_book-fields {
       padding: 110px 40px 110px 30px;
}

.form-cf7_book .form-title {
    text-align: center;
    margin: 0 0 30px;
}

.form-cf7_book .form-field {
    position: relative;
    margin: 0 0 12px;
}

.form-cf7_book .form-field.error::after,
.form-cf7_book .form-field.success::after {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-position: 50%;
    background-repeat: no-repeat;
}

.form-cf7_book .form-field.error::after {
    background-image: url('assets/image/icon/field_error.svg');
}

.form-cf7_book .form-field.success::after {
    background-image: url('assets/image/icon/field_success.svg');
}

.form-cf7_book .form-field label {
    position: absolute;
    left: 20px;
    top: 16px;
    color: #61646b;
    opacity: 1;
    transition: top .3s ease-in-out, font-size .3s ease-in-out;
}

.form-cf7_book .form-field.field-phone label {
    left: 110px;
}

.form-cf7_book .form-field.focus label {
    top: 5px;
    font-size: 12px;
}

.form-cf7_book .form-field.error label {
    opacity: 0;
}

.form-cf7_book .wpcf7-form-control-wrap {
    display: block;
}

.form-cf7_book .field-phone .selected-flag {
    width: 96px !important;
}

.form-cf7_book .form-field input,
.form-cf7_book .form-field textarea {
    width: 100%;
    height: 60px;
    display: block;
    color: #0c0c0e;
    border: 1px solid #e2e6e9;
    border-radius: 5px;
}

.form-cf7_book .form-field input {
    padding: 0 20px;
}

.form-cf7_book .form-field.field-phone input {
    padding: 10px 106px 5px !important;
}

.form-cf7_book .form-field textarea {
    height: 160px;
    padding: 15px 20px;
}

.form-cf7_book .form-field.focus input,
.form-cf7_book .form-field.focus textarea {
    padding: 24px 20px 5px;
}

.form-cf7_book .form-field.field-phone.focus input {
    padding: 24px 106px 5px !important;
}

.form-cf7_book .form-field.error input,
.form-cf7_book .form-field.error textarea {
    border-color: #ff1010;
}

.form-cf7_book .form-field.success input,
.form-cf7_book .form-field.success textarea {
    border-color: #0c8ce9;
}

.form-cf7_book .buttons {
    margin: 30px 0 0;
}

.form-cf7_book .button-submit {
    position: relative;
}

.form-cf7_book button[type="submit"] {
    width: 100%;
    height: 48px;
    display: block;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
}

.form-cf7_book .form-cf7_book-spinner {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 0;
}

.form-cf7_book .wpcf7-response-output {
    display: none;
    background-color: #fff;
}

.form-cf7_book .wpcf7-not-valid-tip {
    width: calc(100% - 20px);
    display: block;
    position: absolute;
    top: 5px;
    left: 18px;
    color: #ff1010;
    font-size: 12px;
    background-color: #fff;
    padding: 0 0 0 2px;
    pointer-events: none;
}

.form-cf7_book .field-phone .wpcf7-not-valid-tip {
    width: calc(100% - 108px);
    left: 106px;
}

.form-cf7_book .form-cf7_book-close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.3;
    cursor: pointer;
}

.form-cf7_book .form-cf7_book-close:hover {
    opacity: 1;
}

.form-cf7_book .form-cf7_book-close::before,
.form-cf7_book .form-cf7_book-close::after {
    content: '';
    width: 2px;
    height: 20px;
    position: absolute;
    left: 9px;
    background-color: #333;
}

.form-cf7_book .form-cf7_book-close::before {
    transform: rotate(45deg);
}

.form-cf7_book .form-cf7_book-close::after {
    transform: rotate(-45deg);
}

/* Message Success CF7 [Popup] */

.wpcf7-popup-ty {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 70%);
    z-index: 10;
}

.wpcf7-popup-ty-wrap {
    width: 100%;
    max-width: 520px;
    position: relative;
    top: 50%;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    margin: 0 auto;
    padding: 40px 40px;
    transform: translateY(-50%);
}

.wpcf7-popup-ty-title {
    margin: 0 0 10px;
}

.wpcf7-popup-ty-output {
    font-family: var(--font-family-light);
    line-height: 28.8px;
    margin: 0 0 30px;
}

.wpcf7-popup-ty-button button {
    width: 100%;
    height: 48px;
    display: block;
    text-align: center;
    border-radius: 5px;
}

.wpcf7-popup-ty-close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.3;
    cursor: pointer;
}

.wpcf7-popup-ty-close:hover {
    opacity: 1;
}

.wpcf7-popup-ty-close::before,
.wpcf7-popup-ty-close::after {
    content: '';
    width: 2px;
    height: 20px;
    position: absolute;
    left: 9px;
    background-color: #333;
}

.wpcf7-popup-ty-close::before {
    transform: rotate(45deg);
}

.wpcf7-popup-ty-close::after {
    transform: rotate(-45deg);
}


/*--------------------------------------------------------------
    Animation
--------------------------------------------------------------*/

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}


/*--------------------------------------------------------------
    @Media
--------------------------------------------------------------*/

@media (min-width: 1000px) {

    /* Home Page */

    #slider-home .swiper-wrapper {
        width: 100%;
        height: calc(100vw / 2.533);
        display: flex;
        line-height: 0;
        visibility: hidden;
    }

    #slider-home .swiper-slide {
        width: calc(100% - (var(--home_slider-slide-width) * (var(--home_slider-slide-quantity) - 1)));
        height: 100%;
        flex-shrink: inherit;
        position: relative;
        visibility: visible;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.5s linear;
    }

    #slider-home .swiper-slide.swiper-slide-active {
        /* width: calc(100% - (var(--home_slider-slide-width) * (var(--home_slider-slide-quantity) - 1))); */
        flex-shrink: 0;
        cursor: default;
    }

    #slider-home .swiper-slide::after {
        content: '';
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgb(0 0 0 / 60%);
        opacity: 0;
        transition: all 0.2s linear;
        z-index: 2;
    }

    #slider-home .swiper-slide:not(.swiper-slide-active)::after {
        opacity: 1;
    }

    #slider-home .swiper-slide img {
        width: auto;
        min-width: 100%;
        height: auto;
        min-height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    #slider-home .swiper-slide .number-desktop {
        width: var(--home_slider-slide-width);
        display: inline-block;
        position: absolute;
        left: 0;
        bottom: calc(100vw / 64);
        color: #fff;
        font-size: calc(100vw / 96);
        text-align: center;
        line-height: 1.2;
        z-index: 3;
    }

    #slider-home .slider-swiper-pagination,
    #slider-home .slider-swiper-pager {
        display: none;
    }

    /* Strict alignment of the wrapper - Start */

    #our_houses-slider.swiper:not(.swiper-initialized) .swiper-slide {
        width: calc(100% / 4.5);
        margin-right: 32px;
    }

    /* Strict alignment of the wrapper - End */

    #modular_houses-home {
        margin: 100px 0 0;
    }
}

@media (min-width: 769px) {

    /* Header */

    body.home #header .header-content.top .primary-navigation-list > li:not(.book_consultation) a {
        color: #fff;
    }

    /* Home Page */

    #special_offers-home .item {
        min-width: 200px;
        height: 440px;
        flex: 0 1 calc(50% - 22px);
    }

    #rent_it-home .rent_it-video video {
        height: 500px;
        border-radius: 0 10px 10px 0;
    }

    /* Page "Your Wood&Me Journey" */

    #photos-how_work .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        grid-gap: 10px;
    }

    #photos-how_work .swiper-slide {
        line-height: 0;
    }

    #photos-how_work .swiper-slide.slide-1 {
        grid-area: 1 / 1 / span 1 / span 3;
    }

    #photos-how_work .swiper-slide.slide-2 {
        grid-area: 1 / 4 / span 1 / span 2;
    }

    #photos-how_work .swiper-slide.slide-3 {
        grid-area: 1 / 6 / span 1 / span 2;
    }

    #photos-how_work .swiper-slide.slide-4 {
        grid-area: 2 / 1 / span 1 / span 2;
    }

    #photos-how_work .swiper-slide.slide-5 {
        grid-area: 2 / 3 / span 1 / span 2;
    }

    #photos-how_work .swiper-slide.slide-6 {
        grid-area: 2 / 5 / span 1 / span 3;
    }

    #photos-how_work .swiper-slide.slide-7 {
        grid-area: 3 / 1 / span 1 / span 3;
    }

    #photos-how_work .swiper-slide.slide-8 {
        grid-area: 3 / 4 / span 1 / span 2;
    }

    #photos-how_work .swiper-slide.slide-9 {
        grid-area: 3 / 6 / span 1 / span 2;
    }

    #photos-how_work .swiper-slide.slide-10 {
        grid-area: 4 / 1 / span 1 / span 2;
    }

    #photos-how_work .swiper-slide.slide-11 {
        grid-area: 4 / 3 / span 1 / span 2;
    }

    #photos-how_work .swiper-slide.slide-12 {
        grid-area: 4 / 5 / span 1 / span 3;
    }

    #photos-how_work .swiper-slide img {
        height: 360px;
        border-radius: 5px;
        object-fit: cover;
    }

    #photos-how_work .photos-swiper-pagination,
    #photos-how_work .photos-swiper-pager {
        display: none;
    }
}

@media (max-width: 999px) {

    /* indents */

    .h1 {
        font-size: 40px;
        font-family: var(--font-family-default);
        line-height: 40px;
    }

    .h2 {
        font-size: 24px;
        font-family: var(--font-family-semibold);
        line-height: 28.8px;
    }

    .h3 {
        font-size: 20px;
        font-family: var(--font-family-default);
        line-height: 32px;
    }

    .h4,
    .h5,
    .h6 {
        font-size: 16px;
        font-family: var(--font-family-medium);
        line-height: 26px;
    }

    /* Document */

    .entry-header {
        margin: 20px 0;
    }

    .entry-header-top {
        min-height: auto;
    }

    .entry-header-top-inner {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
        margin-bottom: 20px;
    }

    .entry-header .sub_title {
        font-size: 16px;
        line-height: 25.6px;
    }

    .swiper-pager-long_arrows .swiper-button-next,
    .swiper-pager-long_arrows .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .swiper-pager-long_arrows .swiper-button-next:after,
    .swiper-pager-long_arrows .swiper-button-prev:after {
        background-size: 12px auto;
    }

    .swiper-pagination-text_bullets {
        bottom: 0;
    }

    .swiper-pagination-text_bullets .swiper-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-text_bullets .swiper-pagination-bullets.swiper-pagination-horizontal {
        width: 100%;
        display: block;
        border-radius: 0;
    }

    .swiper-pagination-text_bullets .swiper-pagination-bullet {
        font-size: 10px;
    }

    .swiper-pager-long_arrows .swiper-button-next:hover,
    .swiper-pager-long_arrows .swiper-button-prev:hover {
        opacity: 1;
    }

    /* Header */

    body #page::before {
        display: none;
    }

    body.menu_show #page::before {
        content: '';
        width: 100vw;
        height: 100vh;
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgb(0 0 0 / 70%);
        z-index: 2;
    }

    #header .header-content-inner {
        height: 60px;
        grid-template-columns: auto 50px;
    }

    #header .header-logo {
        margin-left: 50px;
    }

    #header .header-navigation-button {
        display: block;
        text-align: center;
    }

    #header .header-navigation-button button {
        width: 32px;
        height: 32px;
        position: relative;
        background-color: rgb(255 255 255 / 0%);
        touch-action: manipulation;
        cursor: pointer;
        -webkit-user-select: none;
        user-select: none;
        -webkit-appearance: button;
        appearance: button;
        transition: all .5s ease-in-out 0s;
    }

    #header .header-navigation-button button::before,
    #header .header-navigation-button button::after {
        content: '';
        width: 22px;
        height: 2px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgb(0 0 0 / 100%);
        transition: all .5s ease-in-out 0s;
    }

    body.home #header .header-content.top .header-navigation-button button::before,
    body.home #header .header-content.top .header-navigation-button button::after {
        background-color: rgb(255 255 255 / 100%);
    }

    #header .header-navigation-button button::before {
        top: calc(50% - 5px);
    }

    body.menu_show #header .header-navigation-button button::before {
        top: 48%;
        transform: translate(-50%, 0%) rotate(45deg);
    }

    #header .header-navigation-button button::after {
        top: calc(50% + 5px);
    }

    body.menu_show #header .header-navigation-button button::after {
        top: 48%;
        transform: translate(-50%, 0%) rotate(-45deg);
    }

    #header .header-navigation-content {
        width: 100%;
        height: calc(100vh - 60px);
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        overflow: auto;
    }

    #header .header-content-inner {
        transition: all .1s ease-in-out 0.4s;
    }

    body.menu_show #header .header-content-inner {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        transition: none;
    }

    #header .primary-navigation-list {
        width: 254px;
        display: block;
        font-size: 20px;
        line-height: 24px;
        text-align: center;
        margin: 60px auto 90px;
    }

    #header .primary-navigation-list > li {
        padding: 10px 0;
        margin: 0 0 60px;
    }

    #header .primary-navigation-list > li:first-child {
        padding: 0 0 10px;
    }

    #header .primary-navigation-list > li:last-child {
        padding: 10px 0 0;
    }

    #header .primary-navigation-list > li.current-menu-item {
        border-bottom: 2px solid #0c0c0e;
    }

    #header .primary-navigation-list > li a {
        display: inline-block;
        position: relative;
        text-decoration: none;
    }

    #header .primary-navigation-list > li a::after {
        display: none;
    }

    /* Footer */

    #footer {
        height: auto;
    }

    #footer .footer-inner {
        display: block;
        text-align: center;
        padding: 40px 0;
    }

    #footer .footer-navigation-list {
        display: block;
    }

    #footer .footer-navigation-list > li {
        margin: 0 15px;
    }

    #footer .footer-branding {
        display: block;
    }

    #footer .footer-contacts-title {
        margin: 0 0 5px 0;
    }

    /* Page */

    #main {
        padding: 60px 0 0 0;
    }

    /* Home Page */

    #slider-home .swiper-wrapper {
        align-items: stretch;
    }

    #slider-home .swiper-slide {
        height: auto;
    }

    #slider-home picture,
    #slider-home picture img {
        height: 100%;
        object-fit: cover;
    }

    #slider-home .swiper-slide .number-desktop {
        display: none;
    }

    #slider-home .swiper-pagination span {
        color: #fff;
        font-family: var(--font-family-light);
    }

    #slider-home .swiper-pagination {
        bottom: 20px;
        top: auto;
        line-height: 1;
        z-index: 1;
    }

    #slider-home .swiper-pagination .current,
    #slider-home .swiper-pagination .separator {
        font-size: 20px;
    }

    #modular_houses-home {
        margin: 100px 0 0;
    }

    #modular_houses-home .modular_houses-top {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    #modular_houses-home .modular_houses-title {
        font-size: 40px;
        line-height: 40px;
    }

    /* Page "Contact Us" */

    #information-contact_us {
        width: calc(100vw - var(--scrollbar-width));
        margin-left: calc((100% - (100vw - var(--scrollbar-width))) / 2);
    }

    #information-contact_us .information-contact_us-inner {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }

    #information-contact_us .address,
    #page-contact_us-form {
        border-radius: 0;
    }

    #information-contact_us .banner {
        height: calc(100vw / 1.34);
        grid-area: 3 / 1 / span 1 / span 1;
        border-radius: 0;
    }

    /* Page "Your Wood&Me Journey" */

    #your_journey-how_work .your_journey-how_work-inner {
        grid-template-columns: 1fr;
        grid-gap: 30px 0;
        padding: 0 0 80px 40px;
    }

    #your_journey-how_work .your_journey-how_work-inner::before {
        height: 100%;
        top: 0;
        left: 15px;
    }

    #your_journey-how_work .your_journey-how_work-inner::after {
        top: -40px;
        left: 0;
    }

    #your_journey-how_work .item_05 {
        grid-area: 6 / 1 / span 1 / span 1;
    }

    /* Page "Partnership" */

    #advantages-partnership {
        margin: 80px 0 0;
    }

    #advantages-partnership .button-wrap {
        display: block;
        padding: 30px 10px;
    }

    #advantages-partnership .button-wrap > * {
        margin: 0;
    }

    #advantages-partnership .button-wrap > span {
        display: block;
        margin: 0 0 15px;
    }

    #offer-partnership .info .offer {
        font-size: 36px;
    }

    #offer-partnership .info .num {
        font-size: 32px;
    }

    #offer-partnership .info .text {
        font-size: 16px;
        margin: 0;
    }

    #offer-partnership .button {
        margin: 10px 0 0;
    }

    /* Page "Welcome to SAGA House!" [Quiz] */

    #steps-quiz .swiper-pager-long_arrows .swiper-button-next,
    #steps-quiz .swiper-pager-long_arrows .swiper-button-prev {
        bottom: 50% !important;
    }

    #steps-quiz #step_1 .swiper-pager-long_arrows .swiper-button-prev {
        left: 15px;
    }

    #steps-quiz #step_1 .swiper-pager-long_arrows .swiper-button-next {
        right: 15px;
    }

    #steps-quiz #step_1 .swiper-pager-long_arrows .swiper-button-next:after,
    #steps-quiz #step_1 .swiper-pager-long_arrows .swiper-button-prev:after {
        background-color: #fff;
    }

    /* Post of modular house */

    #spec-modular_house .spec-modular_house-inner {
        display: block;
    }

    #spec-modular_house .spec-modular_house-add_images {
        display: block;
    }

    #spec-modular_house .h3 {
        font-size: 24px;
        line-height: 38.4px;
    }

    #spec-modular_house .spec-modular_house-features,
    #spec-modular_house .spec-modular_house-upgrades {
        border-top: none;
        padding: 0;
        margin: 0;
    }

    #spec-modular_house .add_image {
        margin: 30px 0;
    }

    #spec-modular_house .spec-modular_house-features .h4,
    #spec-modular_house .spec-modular_house-upgrades .h4 {
        font-size: 20px;
    }

    #swiper-download_specs .swiper-slide img {
        width: 100%;
        height: auto;
        max-height: none;
    }

    #download_specs-modular_house .swiper-pagination-text_bullets {
        top: auto;
        bottom: calc(100% + 15px);
    }

    #download_specs-modular_house .swiper-pagination-text_bullets .swiper-horizontal > .swiper-pagination-bullets,
    #download_specs-modular_house .swiper-pagination-text_bullets .swiper-pagination-bullets.swiper-pagination-horizontal {
        background-color: transparent;
    }

    #download_specs-modular_house .swiper-pagination-text_bullets .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
    #download_specs-modular_house .swiper-pagination-text_bullets .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        border: 1px solid rgb(0 0 0 / 10%);
    }

    #download_specs-modular_house .download_specs-button {
        position: relative;
        bottom: auto;
        top: auto;
        margin: 20px 0 0;
    }

    #download_specs-modular_house .download_specs-button a {
        border: 1px solid #0c8ce9;
    }

    /* Category "Explore Our Modular Houses" */

    #category-modular_houses .entry-header {
        margin: 20px 0 60px;
    }

    /* 404 Error */

    #header.site-header-404 .header-logo {
        margin-left: 0;
    }

    /* Popup Forms */

    .form-cf7_book .form-cf7_book-inner {
        max-width: 100vw;
        top: 0;
        border-radius: 0;
    }

    .form-cf7_book.open .form-cf7_book-inner {
        top: 0;
    }
}

@media (max-width: 860px) {

    /* Page 'Revenue Share' */

    #revenue-hero .hero-in {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0;
    }

    #revenue-hero .hero-photo {
        order: -1;
        min-height: 240px;
    }

    #revenue-infographic .info-in {
        grid-template-columns: 1fr 1fr;
    }

    #revenue-infographic .info-item:nth-child(3) {
        border-left: none;
    }

    #revenue-infographic .info-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    #revenue-how .how-grid {
        grid-template-columns: 1fr;
    }

    #revenue-how .split-band {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #revenue-gallery-sec .gallery {
        grid-template-columns: 1fr 1fr;
    }

    #revenue-roles-sec .roles-grid {
        grid-template-columns: 1fr;
    }

    #revenue-timeline .tl-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    #revenue-timeline .tl .rail {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Footer */

    #footer-navigation .footer-navigation-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    #footer .footer-nav {
        margin: 0 0 30px;
    }

    #footer .social-nav {
        margin: 0 0 30px;
    }

    #footer .footer-branding {
        margin: 35px 0 0;
    }

    /* Home Page */

    #hero-banner .hero-banner-inner {
        height: 100svh;
    }

    #hero-banner .hero-scroll {
        width: 30px;
        height: 30px;
        bottom: 25px;
        left: calc((100% / 2) - 12px);
        background-size: 24px auto;
    }

    #swiper-slider {
        height: calc(100vw / 0.75);
    }

    #swiper-slider img {
        height: calc(100vw / 0.75);
        object-fit: cover;
    }

    #slider-home .swiper-button-next,
    #slider-home .swiper-button-prev {
        top: auto;
        bottom: 15px;
    }

    #swiper-modular_houses,
    #swiper-rent_it,
    #swiper-grow_home,
    #latest_ventures-home .swiper-latest_ventures {
        height: calc(100vw - 20px);
    }

    #swiper-modular_houses img,
    #swiper-rent_it img,
    #swiper-grow_home img,
    #latest_ventures-home .swiper-latest_ventures img {
        height: calc(100vw - 20px);
        object-fit: cover;
    }

    #all_in_one-home .all_in_one-home-inner {
        grid-template-columns: 1fr;
    }

    #all_in_one-home .item_00 {
        font-size: 24px;
        line-height: 28.8px;
    }

    #all_in_one-home .item_00 .div_1 div,
    #all_in_one-home .item_00 .div_2 div {
        display: inline-block;
    }

    #rent_it-home .rent_it-home-inner {
        grid-template-columns: 1fr;
    }

    #rent_it-home .rent_it-left {
        border-radius: 10px 10px 0 0;
        padding: 40px 20px;
    }

    #rent_it-home .rent_it-left .text {
        padding: 0;
    }

    #swiper-rent_it {
        border-radius: 0 0 10px 10px;
    }

    #rent_it-home .swiper-pagination-text_bullets {
        width: 100%;
        left: 0;
    }

    #rent_it-home .rent_it-video video {
        border-radius: 0 0 10px 10px;
    }

    #from_concept-home .from_concept-home-inner > div {
        height: 100vw;
    }

    #from_concept-home .item_00 {
        height: auto !important;
        grid-area: 1 / 1 / span 1 / span 6;
        padding: 30px 0;
    }

    #from_concept-home .item_01 {
        grid-area: 2 / 1 / span 1 / span 6;
    }

    #from_concept-home .item_02 {
        grid-area: 3 / 1 / span 1 / span 6;
    }

    #from_concept-home .item_03 {
        grid-area: 4 / 1 / span 1 / span 6;
    }

    #from_concept-home .item_00 .item00_content {
        position: relative;
        bottom: auto;
    }

    #from_concept-home .item_00 .text {
        font-size: 16px;
    }

    #from_concept-home .item_content {
        width: calc(100% - 20px);
        right: 10px;
        bottom: 20px;
        text-align: left;
    }

    #from_concept-home .number {
        margin: 0 0 10px 0;
    }

    #from_concept-home .number span {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    #from_concept-home .content-wrap {
        width: 100%;
    }

    #latest_ventures-home .posts .post-wrap {
        grid-template-columns: 1fr;
    }

    #latest_ventures-home .information {
        border-radius: 10px 10px 0 0;
    }

    #latest_ventures-home .swiper-latest_ventures {
        border-radius: 0 0 10px 10px;
    }

    #special_offers-home .special_offers-home-discounts {
        height: auto;
        gap: 20px;
    }

    #special_offers-home .item {
        height: calc(100vw - 20px);
        background-position: 50%;
    }

    /* Page "Your Wood&Me Journey" */

    #your_journey-how_work .note {
        width: 100%;
    }

    #photos-how_work .photos-how_work-wrap {
        background-color: #fff;
        padding: 0 0 60px;
    }

    #swiper-photos {
        line-height: 0;
        border-radius: 5px;
    }

    #swiper-photos .swiper-wrapper {
        align-items: stretch;
    }

    #swiper-photos .swiper-slide {
        height: auto;
    }

    #swiper-photos .swiper-slide picture {
        height: 100%;
    }

    #swiper-photos .swiper-slide img {
        height: 100%;
        object-fit: cover;
    }

    #consult-how_work .consult-how_work-wrap {
        height: calc(100vw / 0.72);
        background-image: url('assets/image/design/your_journey_consult_mobile.webp');
    }

    #consult-how_work .consult-how_work-inner {
        height: 100%;
        padding: calc(100vw / 6) 0;
    }

    #consult-how_work .title {
        font-size: calc(100vw / 9);
        line-height: calc(100vw / 7.5);
    }

    #consult-how_work .text {
        width: calc(100vw - calc(100vw / 18));
        font-size: calc(100vw / 22.5);
        line-height: calc(100vw / 14.06);
        margin: calc(100vw / 18) auto 0;
    }

    #consult-how_work .button {
        margin: calc(100vw / 18) 0 0;
    }

    #consult-how_work .button a {
        width: calc(100% - calc(100vw / 18));
        max-width: 400px;
        height: calc(100vw / 7.5);
        font-size: calc(100vw / 22.5);
        line-height: calc(100vw / 8);
        border-radius: calc(100vw / 72);
    }

    /* Page "Partnership" */

    body.page-template-page-partnership #footer {
        margin-top: 0;
    }

    #banner-partnership .banner-partnership-wrap {
        height: calc(100vw / 0.56);
        background-image: url('assets/image/design/partnership_banner_mobile2.webp');
        padding: calc(100vw / 6) 0;
    }

    #banner-partnership .banner-partnership-inner {
        display: block;
        font-size: calc(100vw / 24);
        line-height: calc(100vw / 15);
        margin: 0 10px;
    }

    #banner-partnership .item {
        margin: 0 0 calc(100vw / 18);
    }

    #advantages-partnership .items {
        grid-template-columns: 1fr;
    }

    #advantages-partnership .button {
        margin: 35px 0 0;
    }

    #offer-partnership {
        margin: 80px 0 0;
    }

    #offer-partnership .thumbnail img {
        border-radius: 10px 10px 0 0;
    }

    #offer-partnership .info {
        position: relative;
        background-color: #f7f8f8;
        border-radius: 0 0 10px 10px;
        padding: 30px 10px 40px;
    }

    #offer-partnership .info .num {
        margin: 0;
    }

    #offer-partnership .info .text {
        margin: 15px 0 0;
    }

    #look-partnership .look-partnership-wrap {
        width: calc(100vw - var(--scrollbar-width));
        margin-left: calc((100% - (100vw - var(--scrollbar-width))) / 2);
    }

    #look-partnership .look-partnership-inner {
        padding: 60px 10px;
        border-radius: 0;
    }

    #look-partnership .items {
        margin: 40px 0 0;
    }

    #look-partnership .button {
        margin: 30px 0 0;
    }

    /* Page "Welcome to SAGA House!" [Quiz] */

    body.page-template-page-quiz .entry-header .sub_title {
        line-height: inherit;
    }

    body.page-template-page-quiz #main {
        padding-bottom: 20px;
    }

    body.page-template-page-quiz #footer .footer-inner {
        padding: 10px 0 0;
    }

    body.page-template-page-quiz #footer .social-nav {
        margin: 0 0 5px;
    }

    body.page-template-page-quiz #footer .footer-branding {
        margin: 5px 0 0;
    }

    body.page-template-page-quiz #footer .footer-copyright {
        margin: 0;
    }

    #steps_number-quiz .name {
        display: none;
    }

    #steps-quiz h2,
    #steps-quiz h3 {
        line-height: 24px;
    }

    #steps-quiz h3 {
        height: 48px;
        overflow: hidden;
    }

    #steps-quiz #step_1 .information .cost {
        display: grid;
        gap: 10px;
    }

    #steps-quiz #step_1 .information .price-title,
    #steps-quiz #step_1 .information .area-title {
        font-size: 10px;
        line-height: 1.5;
    }

    #steps-quiz #step_1 .information .price-data span:first-child,
    #steps-quiz #step_1 .information .area-data span:first-child {
        font-size: 20px;
    }

    #steps-quiz #step_1 .houses-carousel {
        padding: 20px 0;
    }

    /* Strict alignment of the wrapper - Start */

    #swiper_houses-quiz.swiper:not(.swiper-initialized) .swiper-slide {
        width: 100%;
    }

    /* Strict alignment of the wrapper - End */

    #steps-quiz #step_2_2 .q_title {
        line-height: 1.2;
    }

    #steps-quiz #step_2_2 .question .q_choose {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    #steps-quiz #step_2_2 .q_choose label {
        line-height: 1.2;
    }

    #steps-quiz #step_3 .field-social {
        grid-area: 3 / 1 / span 1 / span 2;
    }

    #steps-quiz #step_3 .field-phone {
        grid-area: 4 / 1 / span 1 / span 2;
    }

    #steps-quiz #step_3 .field-country {
        grid-area: 5 / 1 / span 1 / span 2;
    }

    #steps-quiz #step_3 .field-city {
        grid-area: 6 / 1 / span 1 / span 2;
    }

    #steps-quiz #step_3 .field-info-contacts {
        grid-area: 7 / 1 / span 1 / span 2;
    }

    #steps-quiz #step_3 .field-info-message {
        grid-area: 8 / 1 / span 1 / span 2;
    }

    #steps-quiz #step_3 .field-message {
        grid-area: 9 / 1 / span 1 / span 2;
    }

    #steps-quiz #step_3 .field-turnstile {
        min-width: calc(100vw - 120px);
        overflow: auto;
    }

    #steps-quiz .buttons .buttons-wrap {
        display: block;
    }

    #steps-quiz .buttons .buttons-inner {
        display: grid;
    }

    #steps-quiz .buttons button,
    #steps-quiz .buttons .prev,
    #steps-quiz .buttons .next,
    #steps-quiz .buttons .send,
    #steps-quiz .buttons .button-submit {
        width: 100%;
        display: block;
    }

    /* Category "Explore Our Modular Houses" */

    #category-modular_houses .category-articles-wrap {
        background-color: #f7f8f8;
        padding: 30px 0;
    }

    #category-modular_houses .category-articles article {
        margin: 0 0 20px;
    }

    #category-modular_houses .thumbnail-cat_mod_houses {
        margin: 0 10px;
    }

    #category-modular_houses .thumbnail-cat_mod_houses img {
        border-radius: 10px 10px 0 0;
    }

    #category-modular_houses .spec-cat_mod_houses {
        max-width: 100%;
        position: relative;
        left: 0;
        bottom: auto;
        background-color: #fff;
        border-radius: 0 0 10px 10px;
    }

    #spec-modular_house .spec-features-text .format-cols_2,
    #spec-modular_house .spec-upgrades-text .format-cols_2 {
        column-count: auto;
    }

    #spec-modular_house .spec-modular_house-experts {
        grid-template-columns: 1fr;
    }

    #spec-modular_house .spec-experts-href {
        text-align: left;
    }

    #spec-modular_house .spec-modular_house-order a {
        max-width: 100%;
    }

    /* Post of modular house */

    #spec-modular_house .spec-modular_house-price {
        display: grid;
        gap: 10px;
    }

    /* Popup Forms */

    .form-cf7_book .form-cf7_book-content {
        grid-template-columns: 1fr;
    }

    .form-cf7_book .form-cf7_book-bg {
        display: none;
    }
}

@media (max-width: 520px) {

    /* Document */

    .wrap-1 {
        padding: 0 18px;
    }

    /* Page 'Revenue Share' */

    body.page-template-page-revenue section {
        padding: 52px 0;
    }

    #revenue-timeline .tl-grid {
        grid-template-columns: 1fr;
    }

    #revenue-apply .opts.two {
        grid-template-columns: 1fr;
    }

    #revenue-apply .wz-head,
    #revenue-apply .wz-body,
    #revenue-apply .wz-foot,
    #revenue-apply .wz-secure {
        padding-left: 20px;
        padding-right: 20px;
    }

    #revenue-apply .wz-foot {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    #revenue-apply .wizard-field-turnstile {
        overflow-x: auto;
    }
}

@media (max-width: 480px) {

    /* Footer */

    body.page-template-page-contact_us #footer {
        margin-top: 0;
    }

    #footer-navigation .footer-navigation-list > li a {
        font-size: 16px;
    }

    #social-navigation .footer-navigation-list > li a {
        font-size: 14px;
    }

    /* Home Page */

    #all_in_one-home .text,
    #rent_it-home .rent_it-left .text,
    #from_concept-home .content .text,
    #latest_ventures-home .description-short,
    #special_offers-home .text {
        font-size: 14px;
    }

    #special_offers-home .item {
        padding: 20px;
    }

    #instagram_home-home .instagram_home-home-wrap {
        overflow: hidden;
    }

    #instagram_home-home .insta_name-name {
        font-size: 16px;
    }

    #instagram_home-home .insta_name img {
        width: 28px;
        height: 28px;
    }

    #instagram_home-home .insta_name-img::before {
        width: 34px;
        height: 34px;
        top: -3px;
        left: -3px;
    }

    #instagram_home-home .insta_name-img::after {
        width: 30px;
        height: 30px;
        top: -1px;
        left: -1px;
    }

    #instagram_home-home .instagram_home-carousel {
        width: calc(100% + 20px);
    }

    #instagram_home-home .instagram_home-swiper-pager {
        display: none;
    }

    #swiper-instagram_home.swiper:not(.swiper-initialized) .swiper-slide {
        width: calc(100% / 3);
    }

    /* Page "Contact Us" */

    #information-contact_us .address {
        padding: 20px 10px;
    }

    #information-contact_us .social-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }

    #information-contact_us .social-list div {
        margin: 0;
    }

    #information-contact_us .social-list div:first-child {
        text-align: left;
    }

    #information-contact_us .social-list div:last-child {
        text-align: right;
    }

    #information-contact_us .social-list a {
        font-size: 12px;
    }

    #information-contact_us .email,
    #information-contact_us .addr,
    #information-contact_us .phone {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }

    #information-contact_us .addr,
    #information-contact_us .phone {
        margin: 20px 0 0;
    }

    #information-contact_us .email div:last-child,
    #information-contact_us .addr div:last-child,
    #information-contact_us .phone div:last-child {
        text-align: left;
    }

    #page-contact_us-form button[type="submit"] {
        width: 100%;
        display: block;
    }

    #page-contact_us-form {
        padding: 20px 10px 30px;
    }

    #page-contact_us-form .form-cf7_book-spinner {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Page "Welcome to SAGA House!" [Quiz] */

    #steps-quiz #step_3 .form-field.field-social .field-label {
        font-size: 12px;
    }

    /* 404 Error */

    .error-404 .text {
        font-size: 16px;
    }

    /* Popup Forms */

    .wpcf7-popup-ty-wrap {
        width: 100vw;
        max-width: 100vw;
        height: calc(100vh - 60px);
        top: 60px;
        border-radius: 0;
        margin: 0;
        padding: 40px 20px;
        overflow: auto;
        transform: none;
    }
}

@media (max-width: 360px) {

    /* Page "Welcome to SAGA House!" [Quiz] */

    #steps-quiz #step_3 .form-field.field-social .form-field-wrap.error::after,
    #steps-quiz #step_3 .form-field.field-social .form-field-wrap.success::after {
        right: 20px;
        background-color: #fff;
    }

    /* Page "Revenue Share" */

    #revenue-gallery-sec .gallery figcaption {
        font-size: 10px;
    }

    /* Category "Explore Our Modular Houses" */

    #category-modular_houses .price_from-number,
    #category-modular_houses .price_area-number {
        font-size: 22px;
    }
}

@media (max-width: 999px) and (min-width: 769px) {

    /* Footer */

    #footer .footer-nav {
        margin: 0 0 20px;
    }

    #footer .social-nav {
        margin: 0 0 20px;
    }

    #footer .footer-branding {
        margin: 25px 0 0;
    }

    /* Home Page */

    /* Strict alignment of the wrapper - Start */

    #our_houses-slider.swiper:not(.swiper-initialized) .swiper-slide {
        width: calc(100% / 2.5);
        margin-right: 20px;
    }

    /* Strict alignment of the wrapper - End */

    #all_in_one-home .all_in_one-home-inner {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 44px 20px;
    }

    #rent_it-home .swiper-pagination-text_bullets {
        width: 100%;
        left: 0;
    }

    #from_concept-home .item_00 {
        grid-area: 1 / 1 / span 1 / span 3;
    }

    #from_concept-home .item_01 {
        grid-area: 1 / 4 / span 1 / span 3;
    }

    #from_concept-home .item_02 {
        grid-area: 2 / 1 / span 1 / span 3;
    }

    #from_concept-home .item_03 {
        grid-area: 2 / 4 / span 1 / span 3;
    }

    #from_concept-home .item_content {
        right: 20px;
        bottom: 20px;
    }

    #from_concept-home .content-wrap {
        width: calc(100% - 20px);
    }

    /* Page "Your Wood&Me Journey" */

    #photos-how_work .swiper-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    #photos-how_work .swiper-slide {
        grid-area: inherit !important;
    }

    #photos-how_work .photos-how_work-wrap {
        padding: 80px 0;
    }

    /* Page "Partnership" */

    #advantages-partnership .items {
        grid-template-columns: repeat(2, 1fr);
    }

    #offer-partnership .info {
        padding: 20px 10px;
    }

    /* Category "Explore Our Modular Houses" */

    #category-modular_houses .spec-cat_mod_houses {
        left: 10px;
    }

    #category-modular_houses .thumbnail-cat_mod_houses img {
        min-height: 450px;
        object-fit: cover;
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

@media (max-width: 768px) and (min-width: 481px) {}


/*--------------------------------------------------------------
    Custom CSS Block
--------------------------------------------------------------*/

@media (max-width: 999px) {
    #header .header-logo {
        text-align: left;
        margin-left: 0;
    }

    #header .logo img {
        width: 70%;
    }

    #header.site-header-404 .logo img {
        height: 50px;
    }

    .swiper-pager-long_arrows .swiper-button-next,
    .swiper-pager-long_arrows .swiper-button-prev {
        width: 32px;
        height: 32px;
        top: auto;
        bottom: 15px !important;
        z-index: 9;
    }

    #grow_home-home .swiper-pager-long_arrows .swiper-button-next,
    #grow_home-home .swiper-pager-long_arrows .swiper-button-prev {
        bottom: 55px !important;
    }

    .form-cf7_book.open .form-cf7_book-wrap {
        top: 100px;
    }
}

.vwt select option[value="Whatsapp"] {
    background-image: url('/image/logos_telegram.png');
}

.new01 div {
    color: #0c0c0e;
    font-size: 20px;
    font-family: var(--font-family-default);
    font-weight: normal;
    line-height: 32px;
    margin-top: 20px;
}

.new01 input {
    width: 100%;
    height: 60px;
    display: block;
    color: #0c0c0e;
    background-color: #fff;
    border: 1px solid #e2e6e9;
    border-radius: 5px;
    padding: 0 20px;
}

.new01 select {
    height: 60px;
    display: block;
    color: #0c0c0e;
    background-color: #fff;
    border: 1px solid #e2e6e9;
    border-radius: 5px;
    padding: 0 20px;
}

.new01 textarea {
    width: 100%;
    height: 90px;
    display: block;
    color: #0c0c0e;
    background-color: #fff;
    border: 1px solid #e2e6e9;
    border-radius: 5px;
    padding: 0 20px;
}

.new01 input.prinyatie {
    width: 15px;
    display: inline-block;
    vertical-align: middle;
}

.new01 input.submit1 {
    width: 240px;
    height: 48px;
    display: inline-block;
    color: #fff;
    text-align: center;
    background: #0c8ce9;
    border-radius: 5px;
}

.new01 input.submit1:hover {
    background: #0c8ce9;
}

a.but01:hover {
    opacity: 0.7;
}