/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (2.02) typography styles start ---------
 ==== */

/* ==== 
 --------- (1.01) mixins start ---------
 ==== */

/* ==== 
 --------- (1.01) mixins end ---------
 ==== */

/* ==== 
 --------- (1.02) variables start ---------
 ==== */

:root {
    --inter: "Maison Neue", sans-serif;
    --fraunces: "Maison Neue", sans-serif;
    --elicyon: "Maison Neue", sans-serif;
    --maison-neue: "Maison Neue", sans-serif;
    --font-sans: var(--maison-neue);
    --template-font: var(--maison-neue);
    --heading-font: var(--maison-neue);
    --template-bg: #F5F2EE;
    --template-color: #481800;
    --white: #ffffff;
    --black: #000000;
    --primary-color: #C08860;
    --secondary-color: #f5f3f1;
    --tertiary-color: #fdfcfa;
    --quaternary-color: #98918f;
    --quinary-color: #585858;
    --senary-color: #481800bd;
    --septenary-color: #48180070;
    --octonary-color: #f3d000;
    --nonary-color: #705c5c;
    --border-color: #E3DFDA;
    --txt-light: #4F4B47;
    --txt-light-2: #afa8a1;
    --txt-light-3: #706d6a;
    --txt-light-4: #F5F2EE;
    --txt-light-5: #B8B3AE;
    --black-2: #481800;
    --transition: all 0.5s ease;
    --shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.05);
}

.home-one {
    --primary-color: #C08860;
}

/* ==== 
 --------- (1.02) variables end ---------
 ==== */

/* ==== 
 --------- (2.01) reset styles start ---------
 ==== */

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

*::-moz-selection {
    color: #ffffff;
    background-color: #1770c8;
}

*::selection {
    color: #ffffff;
    background-color: #1770c8;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--template-font);
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: var(--template-color);
    background-color: var(--template-bg);
    overflow-x: clip;
}

body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-track {
    background-color: #cae6f7;
    border-radius: 5px;
}

body::-webkit-scrollbar-button,
body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 5px;
}

.page-wrapper {
    overflow-x: clip;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.body-active {
    height: 100vh;
    overflow: clip;
}

button {
    background-color: transparent;
    border: 0px;
    outline: 0px;
}

a,
button {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    outline: 0px;
    border: 0px;
    transition: var(--transition);
    cursor: pointer;
    color: var(--template-color);
}

a i,
a span,
button i,
button span {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

a:hover,
button:hover {
    text-decoration: none;
    border: 0px;
    outline: 0px;
}

a:focus,
button:focus {
    box-shadow: none;
    outline: 0px;
}

ul,
ol {
    list-style-type: none;
    list-style-position: inside;
    margin: 0px;
    padding: 0px;
}

hr,
blockquote,
textarea {
    margin: 0px;
    opacity: 1;
}

input,
textarea {
    border: 0px;
    outline: 0px;
}

input:focus,
textarea:focus {
    box-shadow: none;
}

input::placeholder,
textarea::placeholder {
    color: #ffffff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0px;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type=checkbox] {
    width: initial;
    height: initial;
}

textarea {
    min-height: 150px;
    resize: none;
}

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

iframe {
    border: 0px;
    width: 100%;
}

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

/* ==== 
 --------- (2.01) reset styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

@font-face {
    font-family: "Maison Neue";
    src: url("../fonts/MaisonNeue-Light.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Maison Neue";
    src: url("../fonts/MaisonNeue-LightItalic.woff2") format("woff2");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

p,
th,
td,
li,
input,
textarea,
select,
label,
blockquote,
span,
a,
button {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--template-color);
    letter-spacing: -0.03em;
}

p {
    margin-top: -4px;
}

.text-xxl {
    font-size: 20px;
    line-height: 26px;
}

@media only screen and (min-width: 1200px) {
    .text-xxl {
        font-size: 24px;
        line-height: 30px;
    }
}

.text-xl {
    font-size: 16px;
    line-height: 22px;
}

@media only screen and (min-width: 768px) {
    .text-xl {
        font-size: 18px;
        line-height: 24px;
    }
}

@media only screen and (min-width: 1200px) {
    .text-xl {
        font-size: 20px;
        line-height: 26px;
    }
}

.text-lg {
    font-size: 16px;
    line-height: 22px;
}

@media only screen and (min-width: 1200px) {
    .text-lg {
        font-size: 18px;
        line-height: 24px;
    }
}

.text-md {
    font-size: 16px;
    line-height: 22px;
}

.text-sm {
    font-size: 14px;
    line-height: 20px;
}

.text-xs {
    font-size: 12px;
    line-height: 18px;
}

h1 {
    font-size: 30px;
    line-height: 36px;
}

@media only screen and (min-width: 576px) {
    h1 {
        font-size: 36px;
        line-height: 42px;
    }
}

@media only screen and (min-width: 768px) {
    h1 {
        font-size: 40px;
        line-height: 46px;
    }
}

@media only screen and (min-width: 992px) {
    h1 {
        font-size: 60px;
        line-height: 66px;
    }
}

@media only screen and (min-width: 1200px) {
    h1 {
        font-size: 80px;
        line-height: 86px;
    }
}

.title-xxl {
    font-size: clamp(30px, 10vw, 110px);
    line-height: calc(100% + 6px);
    letter-spacing: -0.05em;
}

@media only screen and (min-width: 768px) {
    .title-xxl {
        font-size: clamp(100px, 13vw, 200px);
    }
}

@media only screen and (min-width: 1600px) {
    .title-xxl {
        font-size: clamp(200px, 13vw, 240px);
    }
}

.title-xl {
    font-size: clamp(30px, 9vw, 70px);
    line-height: calc(100% + 6px);
    letter-spacing: -0.05em;
}

@media only screen and (min-width: 768px) {
    .title-xl {
        font-size: clamp(60px, 10vw, 100px);
    }
}

@media only screen and (min-width: 1200px) {
    .title-xl {
        font-size: clamp(110px, 10vw, 160px);
    }
}

@media only screen and (min-width: 1600px) {
    .title-xl {
        font-size: clamp(160px, 10vw, 190px);
    }
}

.title-lg {
    font-size: clamp(24px, 4.5vw, 36px);
    line-height: calc(100% + 6px);
    letter-spacing: -0.05em;
}

@media only screen and (min-width: 768px) {
    .title-lg {
        font-size: clamp(36px, 4vw, 50px);
    }
}

@media only screen and (min-width: 1200px) {
    .title-lg {
        font-size: clamp(50px, 5vw, 70px);
    }
}

@media only screen and (min-width: 1600px) {
    .title-lg {
        font-size: clamp(80px, 12vw, 110px);
    }
}

.title-md {
    font-size: 26px;
    line-height: 32px;
}

@media only screen and (min-width: 576px) {
    .title-md {
        font-size: 32px;
        line-height: 48px;
    }
}

@media only screen and (min-width: 768px) {
    .title-md {
        font-size: 36px;
        line-height: 42px;
    }
}

@media only screen and (min-width: 992px) {
    .title-md {
        font-size: 44px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 1200px) {
    .title-md {
        font-size: 80px;
        line-height: 86px;
    }
}

.title-sm {
    font-size: 24px;
    line-height: 30px;
}

@media only screen and (min-width: 576px) {
    .title-sm {
        font-size: 30px;
        line-height: 36px;
    }
}

@media only screen and (min-width: 768px) {
    .title-sm {
        font-size: 36px;
        line-height: 42px;
    }
}

@media only screen and (min-width: 992px) {
    .title-sm {
        font-size: 44px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 1200px) {
    .title-sm {
        font-size: 60px;
        line-height: 66px;
    }
}

h2 {
    font-size: 26px;
    line-height: 32px;
}

@media only screen and (min-width: 576px) {
    h2 {
        font-size: 32px;
        line-height: 38px;
    }
}

@media only screen and (min-width: 768px) {
    h2 {
        font-size: 36px;
        line-height: 42px;
    }
}

@media only screen and (min-width: 992px) {
    h2 {
        font-size: 44px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 1200px) {
    h2 {
        font-size: 60px;
        line-height: 66px;
    }
}

h3,
.title-lg-sm {
    font-size: 24px;
    line-height: 30px;
}

@media only screen and (min-width: 576px) {
    h3,
    .title-lg-sm {
        font-size: 28px;
        line-height: 34px;
    }
}

@media only screen and (min-width: 768px) {
    h3,
    .title-lg-sm {
        font-size: 32px;
        line-height: 38px;
    }
}

@media only screen and (min-width: 992px) {
    h3,
    .title-lg-sm {
        font-size: 36px;
        line-height: 42px;
    }
}

@media only screen and (min-width: 1200px) {
    h3,
    .title-lg-sm {
        font-size: 44px;
        line-height: 50px;
    }
}

h4 {
    font-size: 22px;
    line-height: 28px;
}

@media only screen and (min-width: 576px) {
    h4 {
        font-size: 24px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 768px) {
    h4 {
        font-size: 28px;
        line-height: 34px;
    }
}

@media only screen and (min-width: 1200px) {
    h4 {
        font-size: 40px;
        line-height: 46px;
    }
}

h5,
.title-xs {
    font-size: 20px;
    line-height: 26px;
}

@media only screen and (min-width: 768px) {
    h5,
    .title-xs {
        font-size: 24px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 1200px) {
    h5,
    .title-xs {
        font-size: 34px;
        line-height: 40px;
    }
}

h6,
.title-xxs {
    font-size: 18px;
    line-height: 24px;
}

@media only screen and (min-width: 768px) {
    h6,
    .title-xxs {
        font-size: 20px;
        line-height: 26px;
    }
}

@media only screen and (min-width: 1200px) {
    h6,
    .title-xxs {
        font-size: 24px;
        line-height: 30px;
    }
}

h1 a,
h1 span,
h2 a,
h2 span,
h3 a,
h3 span,
h4 a,
h4 span,
h5 a,
h5 span,
h6 a,
h6 span,
p a,
p span {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    letter-spacing: -0.4%;
}

.neutral-top {
    margin-block-start: -8px;
}

/* ==== 
 --------- (2.02) typography styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (2.03) global styles start ---------
 ==== */

img {
    max-width: 100%;
    height: auto;
    border: 0px;
    outline: 0px;
    object-fit: cover;
    object-position: left top;
}

i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

span {
    display: inline-block;
}

.unset {
    max-width: unset;
}

.dir-rtl {
    direction: rtl;
}

.fw-3 {
    font-weight: 300;
}

.fw-4 {
    font-weight: 400;
}

.fw-5 {
    font-weight: 500;
}

.fw-6 {
    font-weight: 600;
}

.fw-7 {
    font-weight: 700;
}

.fw-8 {
    font-weight: 800;
}

.italic {
    font-style: italic;
}

.lh-0 {
    line-height: 0;
}

.inter {
    font-family: var(--template-font);
}

.fraunces {
    font-family: var(--heading-font);
}

.elicyon {
    font-family: var(--heading-font);
}

.maison-neue {
    font-family: var(--maison-neue);
}

.template-color {
    color: var(--template-color);
}

.primary-text {
    color: var(--primary-color);
}

.secondary-text {
    color: var(--secondary-color);
}

.tertiary-text {
    color: var(--tertiary-color);
}

.quaternary-text {
    color: var(--quaternary-color);
}

.quinary-text {
    color: var(--quinary-color);
}

.senary-text {
    color: var(--senary-color);
}

.septenary-text {
    color: var(--septenary-color);
}

.text-gray {
    color: rgba(255, 255, 255, 0.7411764706);
}

.txt-light {
    color: var(--txt-light);
}

.txt-light-4 {
    color: rgba(245, 242, 238, 0.5843137255);
}

.txt-light-6 {
    color: rgba(72, 24, 0, 0.7333333333);
}

.txt-light-5 {
    color: var(--txt-light-5);
}

.txt-light-fix {
    color: #F5F2EE;
}

.template-bg {
    background-color: var(--template-bg);
}

.dark-bg {
    background-color: var(--template-color);
}

.black-two {
    background-color: var(--black-2);
}

.primary-bg {
    background-color: var(--primary-color);
}

.secondary-bg {
    background-color: var(--secondary-color);
}

.tertiary-bg {
    background-color: var(--tertiary-color);
}

.quaternary-bg {
    background-color: var(--quaternary-color);
}

.quinary-bg {
    background-color: var(--quinary-color);
}

.senary-bg {
    background-color: var(--quinary-color);
}

.septenary-bg {
    background-color: var(--septenary-color);
}

.white-bg {
    background-color: var(--white);
}

.black-bg {
    background-color: var(--black);
}

.bg-alt {
    background-color: #E9E6E0;
}

.bg-alt-2 {
    background-color: #EEE9E2;
}

.gray-hover {
    color: rgba(255, 255, 255, 0.7411764706);
}

.gray-hover:hover {
    color: var(--white);
}

.gutter-70 {
    row-gap: 40px;
}

@media only screen and (min-width: 1200px) {
    .gutter-70 {
        row-gap: 70px;
    }
}

.gutter-60 {
    row-gap: 60px;
}

.gutter-40 {
    row-gap: 40px;
}

.gutter-30 {
    row-gap: 30px;
}

.gutter-24 {
    row-gap: 24px;
}

.gutter-20 {
    row-gap: 20px;
}

.gutter-16 {
    row-gap: 16px;
}

.gutter-12 {
    row-gap: 16px;
}

.gutter-sm-16 {
    row-gap: 24px;
}

@media only screen and (min-width: 576px) {
    .gutter-sm-16 {
        row-gap: 16px;
    }
}

.pt-140 {
    padding-block-start: 80px;
}

@media only screen and (min-width: 768px) {
    .pt-140 {
        padding-block-start: 100px;
    }
}

@media only screen and (min-width: 1200px) {
    .pt-140 {
        padding-block-start: 140px;
    }
}

.pt-100 {
    padding-block-start: 80px;
}

.pt-80 {
    padding-block-start: 80px;
}

.pb-140 {
    padding-block-end: 80px;
}

@media only screen and (min-width: 768px) {
    .pb-140 {
        padding-block-end: 100px;
    }
}

@media only screen and (min-width: 1200px) {
    .pb-140 {
        padding-block-end: 140px;
    }
}

.pb-120 {
    padding-block-end: 60px;
}

@media only screen and (min-width: 768px) {
    .pb-120 {
        padding-block-end: 80px;
    }
}

@media only screen and (min-width: 1200px) {
    .pb-120 {
        padding-block-end: 120px;
    }
}

.pb-100 {
    padding-block-end: 80px;
}

.pb-80 {
    padding-block-end: 80px;
}

.pt-25 {
    padding-block-start: 25px;
}

.pb-25 {
    padding-block-end: 25px;
}

.mt-160 {
    margin-block-start: 120px;
}

.mt-140 {
    margin-block-start: 80px;
}

@media only screen and (min-width: 768px) {
    .mt-140 {
        margin-block-start: 100px;
    }
}

@media only screen and (min-width: 1200px) {
    .mt-140 {
        margin-block-start: 140px;
    }
}

.mt-100 {
    margin-block-start: 80px;
}

@media only screen and (min-width: 1200px) {
    .mt-100 {
        margin-block-start: 100px;
    }
}

.pt-fix {
    padding-block-start: 171px;
}

@media only screen and (min-width: 768px) {
    .pt-fix {
        padding-block-start: 191px;
    }
}

@media only screen and (min-width: 1200px) {
    .pt-fix {
        padding-block-start: 239px;
    }
}

.pt-fix-light {
    padding-block-start: 91px;
}

@media only screen and (min-width: 1200px) {
    .pt-fix-light {
        padding-block-start: 99px;
    }
}

.mt-fix {
    margin-block-start: 91px;
}

@media only screen and (min-width: 1200px) {
    .mt-fix {
        margin-block-start: 99px;
    }
}

.mt-80 {
    margin-block-start: 50px;
}

@media only screen and (min-width: 992px) {
    .mt-80 {
        margin-block-start: 80px;
    }
}

.mt-60 {
    margin-block-start: 40px;
}

@media only screen and (min-width: 1200px) {
    .mt-60 {
        margin-block-start: 60px;
    }
}

.mt-55 {
    margin-block-start: 35px;
}

.mt-50 {
    margin-block-start: 50px;
}

.mt-45 {
    margin-block-start: 45px;
}

.mt-40 {
    margin-block-start: 40px;
}

.mt-35 {
    margin-block-start: 35px;
}

.mt-30 {
    margin-block-start: 30px;
}

.mt-25 {
    margin-block-start: 25px;
}

.mt-20 {
    margin-block-start: 20px;
}

.mt-18 {
    margin-block-start: 18px;
}

.mt-16 {
    margin-block-start: 16px;
}

.mt-14 {
    margin-block-start: 14px;
}

.mt-12 {
    margin-block-start: 12px;
}

.mt-10 {
    margin-block-start: 10px;
}

.mt-8 {
    margin-block-start: 8px;
}

.mt-6 {
    margin-block-start: 6px;
}

.mt-4 {
    margin-block-start: 4px !important;
}

.mt-2 {
    margin-block-start: 2px !important;
}

.mb-160 {
    margin-block-end: 120px;
}

.mb-100 {
    margin-block-end: 80px;
}

.mb-80 {
    margin-block-end: 60px;
}

@media only screen and (min-width: 992px) {
    .mb-80 {
        margin-block-end: 80px;
    }
}

.mb-60 {
    margin-block-end: 40px;
}

@media only screen and (min-width: 1200px) {
    .mb-60 {
        margin-block-end: 60px;
    }
}

.mb-55 {
    margin-block-end: 35px;
}

.mb-50 {
    margin-block-end: 50px;
}

.mb-45 {
    margin-block-end: 45px;
}

.mb-40 {
    margin-block-end: 40px;
}

.mb-35 {
    margin-block-end: 35px;
}

.mb-30 {
    margin-block-end: 30px;
}

.mb-25 {
    margin-block-end: 25px;
}

.mb-20 {
    margin-block-end: 20px;
}

.mb-15 {
    margin-block-end: 15px;
}

.mb-10 {
    margin-block-end: 10px;
}

.mb-8 {
    margin-block-end: 8px;
}

.mb-5 {
    margin-block-end: 5px !important;
}

.mb-3 {
    margin-block-end: 3px !important;
}

.w-full {
    width: 100%;
    max-width: 100% !important;
}

.sticky-wrapper {
    position: relative;
}

.sticky-item {
    position: sticky;
    inset-block-start: 120px;
}

.divider {
    border-color: rgba(34, 35, 44, 0.2392156863);
}

@media only screen and (min-width: 1200px) {
    .container-lg {
        max-width: calc(100% - 80px);
    }
}

@media only screen and (min-width: 1400px) {
    .container-lg {
        max-width: calc(100% - 160px);
    }
}

.container-lg-alt {
    padding-inline: 12px;
    margin-inline-start: auto;
}

@media only screen and (min-width: 1200px) {
    .container-lg-alt {
        max-width: calc(100vw - 40px);
    }
}

@media only screen and (min-width: 1400px) {
    .container-lg-alt {
        max-width: calc(100vw - 80px);
    }
}

.house-bg {
    position: absolute;
    inset-inline-start: 0px;
    inset-block-start: 140px;
    z-index: -1;
}

.house-bg img {
    max-width: 65vw;
    min-width: 200px;
}

.social {
    display: flex;
    align-items: center;
    gap: 24px;
    row-gap: 16px;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icons a {
    font-size: 20px;
    color: var(--txt-light);
}

.social-icons a:hover {
    color: var(--template-color);
}

.hover-line-bottom {
    color: rgba(255, 255, 255, 0.7411764706);
    position: relative;
}

.hover-line-bottom::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1.5px;
    background-color: var(--white);
    transition: var(--transition);
}

.hover-line-bottom:hover {
    color: var(--white);
}

.hover-line-bottom:hover::before {
    width: 100%;
}

.hover-line-bottom-two {
    color: #292827;
    position: relative;
}

.hover-line-bottom-two::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1.5px;
    background-color: #292827;
    transition: var(--transition);
}

.hover-line-bottom-two:hover {
    color: black;
}

.hover-line-bottom-two:hover::before {
    width: 100%;
}

.hover-line-bottom-gray {
    color: var(--txt-light);
    position: relative;
}

.hover-line-bottom-gray::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1.5px;
    background-color: var(--template-color);
    transition: var(--transition);
}

.hover-line-bottom-gray:hover {
    color: var(--template-color);
}

.hover-line-bottom-gray:hover::before {
    width: 100%;
}

@media only screen and (min-width: 1400px) {
    .offset-xxl-1 {
        margin-left: unset;
        margin-inline-start: 8.33333333%;
    }
}

.title-animation,
.title-animation-lg {
    overflow: hidden;
}

.split-parent {
    overflow: hidden;
    display: block;
}

.split-child {
    display: inline-block;
}

.split-parent-lg {
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
}

.split-child-lg {
    display: inline-block;
}

.sub-title ul {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background-color: var(--template-color);
    border-radius: 50px;
    flex-wrap: wrap;
}

.sub-title li {
    color: var(--white);
}

.sub-title a {
    color: rgba(255, 255, 255, 0.4392156863);
}

.sub-title a:hover {
    color: var(--white);
}

.sub-title .dot {
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #C08860;
}

.light-sub-title ul {
    background-color: var(--white);
}

.light-sub-title ul a {
    color: #7b746d;
}

.light-sub-title ul a:hover {
    color: var(--black);
}

.light-sub-title ul li {
    color: var(--black);
}

.lines {
    overflow: hidden;
}

.lines .line {
    position: fixed;
    width: 1px;
    height: calc(100% + 200px);
    min-height: 100vh;
    top: 50%;
    transform: translateY(-50%);
    background: #E3DFDA;
    z-index: -1;
}

.lines .line:nth-of-type(1) {
    inset-inline-start: calc(15% - 3px);
}

.lines .line:nth-of-type(1)::after {
    animation-delay: 10s;
}

.lines .line:nth-of-type(2) {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.lines .line:nth-of-type(3) {
    inset-inline-end: calc(15% - 3px);
}

.lines .line:nth-of-type(3)::after {
    animation-delay: 30s;
}

.l-alt .line:nth-of-type(1) {
    inset-inline-start: calc(30% - 3px);
}

.l-alt .line:nth-of-type(2) {
    display: none;
}

.l-alt .line:nth-of-type(3) {
    inset-inline-end: calc(30% - 3px);
}

.brace {
    position: relative;
    padding-inline-start: 8px;
    padding-inline-end: 8px;
}

.brace::before {
    content: "[";
    position: absolute;
    inset-inline-start: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #C08860;
}

.brace::after {
    content: "]";
    position: absolute;
    inset-inline-end: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #C08860;
}

.color-palate {
    position: relative;
}

.color-palate .color-palate-inner {
    position: fixed;
    right: -252px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    width: 250px;
    background-color: #000000;
    text-align: center;
    padding: 60px 20px;
    box-shadow: 0px 0px 2px #c6e757;
    transition: all 0.3s ease;
}

.color-palate .color-icon {
    position: fixed;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    z-index: 9999;
    transition: all 0.3s ease;
}

.color-palate .color-icon button {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background-color: var(--octonary-color);
    color: #000000;
}

.color-palate .color-icon .close-color {
    display: none;
}

.color-palate .color-icon i {
    margin-top: 0px !important;
}

.color-palate .open-color i {
    animation: rotation 5s infinite linear;
}

.color-palate .text-white {
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
}

.color-palate ul {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.color-palate ul li {
    cursor: pointer;
    padding: 12px 0px;
    background-color: #fff0dc;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    width: calc(50% - 8px);
    text-align: center;
    transition: all 0.3s ease;
}

.color-palate ul li:hover {
    background-color: var(--octonary-color);
    color: #000000;
}

.color-palate ul .active {
    background-color: var(--octonary-color);
}

.color-palate ul .active:hover {
    background-color: var(--octonary-color);
}

.color-palate .group {
    margin-bottom: 40px;
}

.color-palate .group:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.parallax-image-wrap img {
    width: 100%;
    height: 105%;
    object-fit: cover;
}

.parallax-image-wrap {
    position: relative;
}

.parallax-image-inner {
    height: 100%;
}

.hover-image {
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.hover-image img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    position: relative;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.hover-image canvas {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 2;
    pointer-events: none;
}

.hover-image .arrow {
    position: absolute;
    z-index: 10;
}

.title-animation,
.title-animation-lg,
.title-animation-sd,
.title-animation-color {
    opacity: 0;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

/* ==== 
 --------- (2.03) global styles end ---------
 ==== */

/* ==== 
 --------- (3.01) buttons styles start ---------
 ==== */

.btn-primary {
    gap: 0px;
    overflow: hidden;
    transition: 0.5s;
}

.btn-primary .btn-animated-text {
    padding: 12px 24px 14px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.5s;
    line-height: 1;
    position: relative;
    direction: ltr;
    width: 100%;
    border: 1px solid var(--senary-color);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.btn-primary .btn-animated-text span {
    color: var(--txt-light);
    display: inline-block;
    position: relative;
    transition: 0.5s;
    font-weight: 500;
}

.btn-primary .btn-animated-text span:nth-child(odd) {
    transform: translateY(-50px);
}

.btn-primary .btn-animated-text span:nth-child(odd)::before {
    content: attr(data-text);
    position: absolute;
    transform: translateY(50px);
    left: 0;
}

.btn-primary .btn-animated-text span:nth-child(even) {
    transform: translateY(50px);
}

.btn-primary .btn-animated-text span:nth-child(even)::before {
    content: attr(data-text);
    position: absolute;
    transform: translateY(-50px);
    left: 0;
}

.btn-primary:hover .btn-animated-text {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover .btn-animated-text span {
    color: var(--white);
}

.btn-primary:hover .btn-animated-text span:nth-child(odd) {
    transform: translateY(0);
}

.btn-primary:hover .btn-animated-text span:nth-child(even) {
    transform: translateY(0);
}

.btn-secondary {
    gap: 0px;
    overflow: hidden;
    transition: 0.5s;
}

.btn-secondary .btn-animated-text {
    padding: 16px 30px 18px;
    background-color: var(--white);
    border-radius: 30px;
    font-size: 14px;
    transition: 0.5s;
    line-height: 1;
    position: relative;
    direction: ltr;
    width: 100%;
    border: 1px solid var(--white);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.btn-secondary .btn-animated-text span {
    color: var(--black);
    display: inline-block;
    position: relative;
    transition: 0.5s;
    font-weight: 500;
}

.btn-secondary .btn-animated-text span:nth-child(odd) {
    transform: translateY(-50px);
}

.btn-secondary .btn-animated-text span:nth-child(odd)::before {
    content: attr(data-text);
    position: absolute;
    transform: translateY(50px);
    left: 0;
}

.btn-secondary .btn-animated-text span:nth-child(even) {
    transform: translateY(50px);
}

.btn-secondary .btn-animated-text span:nth-child(even)::before {
    content: attr(data-text);
    position: absolute;
    transform: translateY(-50px);
    left: 0;
}

.btn-secondary:hover .btn-animated-text {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover .btn-animated-text span {
    color: var(--white);
}

.btn-secondary:hover .btn-animated-text span:nth-child(odd) {
    transform: translateY(0);
}

.btn-secondary:hover .btn-animated-text span:nth-child(even) {
    transform: translateY(0);
}

.btn-tertiary {
    gap: 0px;
    overflow: hidden;
    transition: 0.5s;
}

.btn-tertiary .btn-animated-text {
    padding: 14px 24px 16px;
    border-radius: 30px;
    font-size: 16px;
    transition: 0.5s;
    line-height: 1;
    position: relative;
    direction: ltr;
    width: 100%;
    border: 1px solid var(--template-color);
    background-color: var(--template-color);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.btn-tertiary .btn-animated-text span {
    color: var(--template-bg);
    display: inline-block;
    position: relative;
    transition: 0.5s;
    font-weight: 500;
}

.btn-tertiary .btn-animated-text span:nth-child(odd) {
    transform: translateY(-50px);
}

.btn-tertiary .btn-animated-text span:nth-child(odd)::before {
    content: attr(data-text);
    position: absolute;
    transform: translateY(50px);
    left: 0;
}

.btn-tertiary .btn-animated-text span:nth-child(even) {
    transform: translateY(50px);
}

.btn-tertiary .btn-animated-text span:nth-child(even)::before {
    content: attr(data-text);
    position: absolute;
    transform: translateY(-50px);
    left: 0;
}

.btn-tertiary:hover .btn-animated-text {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-tertiary:hover .btn-animated-text span {
    color: var(--white);
}

.btn-tertiary:hover .btn-animated-text span:nth-child(odd) {
    transform: translateY(0);
}

.btn-tertiary:hover .btn-animated-text span:nth-child(even) {
    transform: translateY(0);
}

.btn-quaternary {
    gap: 0px;
    overflow: hidden;
    transition: 0.5s;
}

.btn-quaternary .btn-animated-text {
    padding: 16px 24px 18px;
    background-color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    transition: 0.5s;
    line-height: 1;
    position: relative;
    direction: ltr;
    width: 100%;
    border: 1px solid var(--primary-color);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.btn-quaternary .btn-animated-text span {
    color: var(--white);
    display: inline-block;
    position: relative;
    transition: 0.5s;
    font-weight: 500;
}

.btn-quaternary .btn-animated-text span:nth-child(odd) {
    transform: translateY(-50px);
}

.btn-quaternary .btn-animated-text span:nth-child(odd)::before {
    content: attr(data-text);
    position: absolute;
    transform: translateY(50px);
    left: 0;
}

.btn-quaternary .btn-animated-text span:nth-child(even) {
    transform: translateY(50px);
}

.btn-quaternary .btn-animated-text span:nth-child(even)::before {
    content: attr(data-text);
    position: absolute;
    transform: translateY(-50px);
    left: 0;
}

.btn-quaternary:hover .btn-animated-text span:nth-child(odd) {
    transform: translateY(0);
}

.btn-quaternary:hover .btn-animated-text span:nth-child(even) {
    transform: translateY(0);
}

.btn-quinary {
    gap: 0px;
    overflow: hidden;
    transition: 0.5s;
}

.btn-quinary .btn-animated-text {
    padding: 12px 24px 14px;
    background-color: transparent;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.5s;
    line-height: 1;
    position: relative;
    direction: ltr;
    width: 100%;
    border: 1px solid rgba(72, 24, 0, 0.1725490196);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.btn-quinary .btn-animated-text span {
    color: var(--template-color);
    display: inline-block;
    position: relative;
    transition: 0.5s;
    font-weight: 500;
}

.btn-quinary .btn-animated-text span:nth-child(odd) {
    transform: translateY(-50px);
}

.btn-quinary .btn-animated-text span:nth-child(odd)::before {
    content: attr(data-text);
    position: absolute;
    transform: translateY(50px);
    left: 0;
}

.btn-quinary .btn-animated-text span:nth-child(even) {
    transform: translateY(50px);
}

.btn-quinary .btn-animated-text span:nth-child(even)::before {
    content: attr(data-text);
    position: absolute;
    transform: translateY(-50px);
    left: 0;
}

.btn-quinary:hover .btn-animated-text {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-quinary:hover .btn-animated-text span {
    color: var(--white);
}

.btn-quinary:hover .btn-animated-text span:nth-child(odd) {
    transform: translateY(0);
}

.btn-quinary:hover .btn-animated-text span:nth-child(even) {
    transform: translateY(0);
}

.btn-light {
    gap: 0px;
    overflow: hidden;
    transition: 0.5s;
}

.btn-light .btn-animated-text {
    background-color: transparent;
    transition: 0.5s;
    line-height: 1;
    position: relative;
    direction: ltr;
    width: 100%;
    letter-spacing: -0.03em;
}

.btn-light .btn-animated-text span {
    display: inline-block;
    position: relative;
    transition: 0.5s;
    font-weight: 500;
    color: #f5f2ee;
}

.btn-light .btn-animated-text span:nth-child(odd) {
    transform: translateY(-50px);
}

.btn-light .btn-animated-text span:nth-child(odd)::before {
    content: attr(data-text);
    position: absolute;
    transform: translateY(50px);
    left: 0;
}

.btn-light .btn-animated-text span:nth-child(even) {
    transform: translateY(50px);
}

.btn-light .btn-animated-text span:nth-child(even)::before {
    content: attr(data-text);
    position: absolute;
    transform: translateY(-50px);
    left: 0;
}

.btn-light:hover .btn-animated-text span {
    color: var(--primary-color);
}

.btn-light:hover .btn-animated-text span:nth-child(odd) {
    transform: translateY(0);
}

.btn-light:hover .btn-animated-text span:nth-child(even) {
    transform: translateY(0);
}

.btn-light-2 {
    gap: 0px;
    overflow: hidden;
    transition: 0.5s;
}

.btn-light-2 .btn-animated-text {
    padding: 14px 24px 16px;
    border-radius: 30px;
    font-size: 16px;
    transition: 0.5s;
    line-height: 1;
    position: relative;
    direction: ltr;
    width: 100%;
    border: 1px solid rgba(245, 242, 238, 0.3137254902);
    background-color: transparent;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.btn-light-2 .btn-animated-text span {
    color: #F5F2EE;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    font-weight: 500;
}

.btn-light-2 .btn-animated-text span:nth-child(odd) {
    transform: translateY(-50px);
}

.btn-light-2 .btn-animated-text span:nth-child(odd)::before {
    content: attr(data-text);
    position: absolute;
    transform: translateY(50px);
    left: 0;
}

.btn-light-2 .btn-animated-text span:nth-child(even) {
    transform: translateY(50px);
}

.btn-light-2 .btn-animated-text span:nth-child(even)::before {
    content: attr(data-text);
    position: absolute;
    transform: translateY(-50px);
    left: 0;
}

.btn-light-2:hover .btn-animated-text {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-light-2:hover .btn-animated-text span {
    color: var(--white);
}

.btn-light-2:hover .btn-animated-text span:nth-child(odd) {
    transform: translateY(0);
}

.btn-light-2:hover .btn-animated-text span:nth-child(even) {
    transform: translateY(0);
}

/* ==== 
 --------- (3.01) buttons styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (3.02) form styles start ---------
 ==== */

.input-group {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.input-group .input-single {
    margin-bottom: 0px;
}

.input-single {
    width: 100%;
    margin-bottom: 12px;
}

.input-single input,
.input-single textarea,
.input-single .select {
    width: 100%;
    padding: 16px 24px;
    background-color: #F5F2EE;
    color: #481800;
    transition: var(--transition);
    border-radius: 6px;
    border: 0px solid transparent;
}

.input-single input::placeholder,
.input-single textarea::placeholder,
.input-single .select::placeholder {
    opacity: 0.5;
    color: #481800;
}

.input-single textarea {
    min-height: 170px;
    border-radius: 6px;
}

.check-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-group input {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    width: 0px;
    height: 0px;
}

.check-group label {
    position: relative;
    padding-inline-start: 12px;
    margin-inline-start: 8px;
    cursor: pointer;
}

.check-group label::before {
    content: "";
    position: absolute;
    inset-inline-end: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    background-color: transparent;
    border-radius: 4px;
}

.check-group label::after {
    content: "\ea5e";
    font-family: "tabler-icons";
    position: absolute;
    inset-inline-end: calc(100% + 2px);
    top: 50%;
    transform: translateY(-50%);
    top: 50%;
    font-size: 0px;
}

.check-group input:checked+label::after {
    font-size: 18px;
}

.review__form input,
.review__form textarea {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: transparent;
    color: var(--template-color);
}

.review__form input::placeholder,
.review__form textarea::placeholder {
    color: var(--template-color);
    opacity: 0.5;
}

.review__form input:focus,
.review__form textarea:focus {
    border: 1px solid var(--primary-color);
}

.review__form .input-group .input-single {
    width: 100%;
}

@media only screen and (min-width: 576px) {
    .review__form .input-group .input-single {
        width: calc(50% - 12px);
    }
}

/* ==== 
 --------- (3.02) form styles end ---------
 ==== */

/* ==== 
 --------- (3.03) preloader styles start ---------
 ==== */

.preloader {
    position: fixed;
    inset: 0;
    background: #481800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.preloader-inner {
    text-align: center;
    width: 300px;
}

.preloader-logo span {
    font-size: 18px;
    letter-spacing: 6px;
    color: #aaa;
    margin-bottom: 30px;
}

.preloader-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.22);
    overflow: hidden;
    margin-bottom: 20px;
}

.preloader-progress {
    height: 100%;
    width: 0%;
    background: #fff;
}

.preloader-count {
    color: #aaa;
    font-size: 14px;
}

/* ==== 
 --------- (3.03) preloader styles end ---------
 ==== */

/* ==== 
 --------- (3.04) custom cursor styles start ---------
 ==== */

.cursor-outer {
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    border: 1px solid #c9f31d;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 1;
    transition: all 0.43s ease-out;
    mix-blend-mode: difference;
}

.cursor-outer.cursor-hover {
    margin-left: -8px;
    margin-top: -8px;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    opacity: 1;
}

.cursor-outer.cursor-big {
    width: 160px;
    height: 160px;
    margin-left: -80px;
    margin-top: -80px;
    background-color: var(--template-bg);
}

.cursor-outer.cursor-big.drag-cursor,
.cursor-outer.cursor-big.view-cursor,
.cursor-outer.cursor-big.play-cursor {
    opacity: 0;
}

.cursor-outer.cursor-hover.drag-cursor,
.cursor-outer.cursor-hover.view-cursor {
    opacity: 1;
}

.cursor-outer.drag-cursor,
.cursor-outer.view-cursor,
.cursor-outer.not-cursor-outer {
    opacity: 0;
}

.cursor-big.play-cursor,
.cursor-big.drag-cursor,
.cursor-big.view-cursor {
    width: 80px !important;
    height: 80px !important;
    margin-left: -40px !important;
    margin-top: -40px !important;
    mix-blend-mode: normal !important;
}

.cursor-big.view-cursor {
    width: 200px !important;
    height: 200px !important;
    margin-left: -100px !important;
    margin-top: -100px !important;
    mix-blend-mode: normal !important;
    background-color: var(--primary-color);
    opacity: 1 !important;
}

.cursor-big.view-cursor .view {
    mix-blend-mode: unset !important;
    z-index: 9;
}

.cursor-big.view-cursor i {
    font-size: 60px;
    color: #ffffff;
}

.cursor-big.view-cursor.cursor-outer {
    opacity: 0 !important;
}

.mouseCursor {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translateZ(0);
    visibility: hidden;
    text-align: center;
}

.cursor-inner {
    margin-left: -5px;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: #c9f31d;
    opacity: 1;
    transition: all 0.26s ease-out;
    mix-blend-mode: difference;
}

.cursor-inner.cursor-big {
    opacity: 1;
}

.cursor-inner.cursor-hover {
    opacity: 0;
}

.cursor-inner.not-cursor-outer {
    opacity: 0;
}

.cursor-inner.play-cursor,
.cursor-inner.drag-cursor,
.cursor-inner.view-cursor {
    width: 0;
    height: 0;
    margin: 0;
}

.cursor-inner span {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    margin-left: -40px;
    margin-top: -40px;
    color: var(--secondary-color);
    line-height: 1;
    opacity: 0;
    font-size: 14px;
    transform: scale(0);
    text-transform: uppercase;
    transition: all 0.4s ease-out;
    letter-spacing: 1px;
    mix-blend-mode: difference;
    text-align: center;
}

.cursor-inner span i {
    font-size: 24px;
    margin-bottom: -8px;
}

.draggable-cursor {
    cursor: grab !important;
}

.viewable-cursor {
    cursor: pointer !important;
}

.drag-cursor .drag,
.view-cursor .view,
.play-cursor .play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cursor-none .cursor-inner,
.cursor-none .cursor-outer {
    opacity: 0;
}

.cursor-inner span {
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
}

/* ==== 
 --------- (3.04) custom cursor styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (3.05) scroll porgress button styles start ---------
 ==== */

.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    height: 50px;
    width: 50px;
    padding: 6px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    background-color: #cae6f7;
    box-shadow: inset 0 0 0 8px #cae6f7;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
    z-index: 99;
    overflow: hidden;
}

@media only screen and (min-width: 992px) {
    .progress-wrap {
        bottom: 80px;
    }
}

.progress-wrap span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    background-color: var(--white);
    border-radius: 50%;
    overflow: hidden;
}

.progress-wrap span::after {
    content: "\f60e";
    font-family: "tabler-icons";
    position: absolute;
    text-align: center;
    line-height: 34px;
    font-size: 32px;
    border-radius: 50%;
    color: var(--primary-color);
    left: 50%;
    top: 50%;
    transform: translate(-50%, 200%);
    height: 34px;
    width: 34px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 300ms linear;
    margin-top: -2px;
}

.progress-wrap span::before {
    position: absolute;
    content: "\f60e";
    font-family: "tabler-icons";
    text-align: center;
    line-height: 34px;
    font-size: 32px;
    border-radius: 50%;
    color: var(--primary-color);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 34px;
    width: 34px;
    cursor: pointer;
    display: block;
    margin-top: -2px;
    z-index: 2;
    transition: all 300ms linear;
}

.progress-wrap:hover span::before {
    transform: translate(-50%, -200%);
}

.progress-wrap:hover span::after {
    transform: translate(-50%, -50%);
}

.progress-wrap path {
    fill: none;
}

.progress-wrap .progress-circle path {
    stroke: var(--primary-color);
    stroke-width: 4;
    box-sizing: content-box;
    transition: all 200ms linear;
}

.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==== 
 --------- (3.05) scroll porgress button styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (3.06) widgets styles start ---------
 ==== */

.service-overview__single img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.service-overview__single p {
    max-width: 250px;
}

@media only screen and (min-width: 768px) {
    .service-overview__single p {
        max-width: 260px;
    }
}

.service-overview__single .content {
    margin-top: 30px;
}

@media only screen and (min-width: 992px) {
    .service-overview__single .content {
        margin-top: 40px;
    }
}

.sidebar__widget {
    padding: 40px 20px;
    background-color: #E9E6E0;
}

@media only screen and (min-width: 1200px) {
    .sidebar__widget {
        padding: 40px 30px;
    }
}

.sidebar__widget-header {
    padding-bottom: 20px;
    border-block-end: 1px solid #D2CEC8;
    position: relative;
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
    .sidebar__widget-header {
        margin-bottom: 40px;
    }
}

.search-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    padding: 6px;
    background-color: #F5F2EE;
}

.search-wrap input {
    border: 0px;
    background-color: transparent;
    flex-grow: 1;
    padding-block: 13px;
    padding-inline-start: 18px;
    width: 100%;
    color: var(--template-color);
}

.search-wrap input::placeholder {
    color: var(--template-color);
    opacity: 0.6;
}

.search-wrap button {
    font-size: 20px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: #481800;
    border-radius: 0px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.search-wrap button:hover {
    color: var(--white);
    background-color: var(--primary-color);
}

.sidebar__categories li {
    margin-bottom: 20px;
}

.sidebar__categories li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.sidebar__categories a {
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    background-color: #F5F2EE;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #4F4B47;
}

.sidebar__categories a i {
    font-size: 24px;
}

.sidebar__categories a:hover {
    background-color: var(--template-color);
    color: var(--white);
}

.recent-item-single {
    display: flex;
    gap: 16px;
    row-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
}

.recent-item-single:nth-last-of-type(1) {
    margin-bottom: 0px;
}

@media only screen and (min-width: 576px) {
    .recent-item-single {
        flex-direction: row;
        align-items: center;
    }
}

.recent-item-single .recent-thumb {
    line-height: 0px;
}

.recent-item-single .recent-thumb a {
    min-width: 108px;
    height: 108px;
}

.recent-item-single .recent-thumb a img {
    width: 100%;
    height: 100%;
}

.recent-item-single p {
    margin-bottom: 8px;
    margin-top: 0px;
}

.recent-item-single h6 {
    font-size: 18px;
    line-height: 24px;
}

.recent-item-single h6 a:hover {
    color: var(--primary-color);
}

.sidebar__tags {
    display: flex;
    align-items: center;
    gap: 8px;
    row-gap: 12px;
    flex-wrap: wrap;
}

.sidebar__tags a {
    padding: 10px 20px;
    background-color: #F5F2EE;
    border-radius: 60px;
    color: var(--txt-light);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.sidebar__tags a:hover {
    background-color: var(--template-color);
    color: var(--template-bg);
}

/* ==== 
 --------- (3.06) widgets styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (4.01) header styles start ---------
 ==== */

.header {
    z-index: 99;
    background-color: var(--template-bg);
    padding-block: 16px;
    position: absolute;
    inset-inline: 0px;
    top: 0px;
    overflow-x: clip;
    border-bottom: 1px solid var(--border-color);
}

@media only screen and (min-width: 1200px) {
    .header {
        padding-block: 20px;
    }
}

.header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.header .navbar__menu-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: clamp(30px, 8vw, 180px);
}

@media only screen and (min-width: 1600px) {
    .header .navbar__menu-wrapper {
        column-gap: clamp(40px, 11vw, 230px);
    }
}

.header .navbar-logo {
    line-height: 0px;
}

.header .navbar-logo a {
    line-height: 0px;
}

.header .navbar-logo img {
    max-width: 160px;
    height: auto;
}

.header .navbar__list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .navbar__list li {
    line-height: 0px;
}

.header .navbar__item {
    position: relative;
    margin-inline: 18px;
}

.header .navbar__item::before {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1.5px;
    background-color: var(--template-color);
    transition: var(--transition);
}

.header .navbar__item a {
    font-weight: 500;
    padding-inline: 0px;
    padding-block: 20px;
    width: 100%;
    font-size: 14px;
    line-height: 1;
    color: var(--txt-light);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.header .navbar__item a::after {
    content: none !important;
}

.header .navbar__item a:hover {
    color: var(--template-color);
}

.header .navbar__item .dropdown-label-alter {
    position: relative;
}

.header .navbar__item .dropdown-label-alter::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    border: 10px solid transparent;
    border-bottom-color: var(--template-color);
    opacity: 0;
    transform: translateX(-50%) translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.header .navbar__item:hover .dropdown-label-alter::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0%);
}

.header .navbar__item:hover::before {
    width: 100%;
}

.header .navbar__item.active::before {
    width: 100%;
}

.header .navbar__item--has-children {
    position: relative;
}

.header .navbar__item--has-children:hover>.navbar__dropdown-label {
    color: var(--template-color);
}

.header .navbar__item--has-children:hover>.navbar__sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-20px) translateY(0px);
    pointer-events: all;
}

.header .navbar__item--has-children:hover>.navbar__sub-menu.mega-menu {
    transform: translateY(0px) translateX(-45%);
}

.header .navbar__dropdown-label {
    position: relative;
    justify-content: space-between;
}

.header .navbar__sub-menu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0px;
    min-width: 230px;
    max-width: 250px;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px) translateY(30px);
    pointer-events: none;
    transition: var(--transition);
    box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.1), 0 0 0 1px hsla(230, 13%, 9%, 0.075), 0 0.3px 0.4px hsla(230, 13%, 9%, 0.02), 0 0.9px 1.5px hsla(230, 13%, 9%, 0.045), 0 3.5px 6px hsla(230, 13%, 9%, 0.09);
    padding: 20px 0px;
    z-index: 9;
}

.header .navbar__sub-menu li {
    margin-inline: 0px;
}

.header .navbar__sub-menu li::before {
    content: none;
}

.header .navbar__sub-menu li:nth-last-of-type(1)>a {
    border-bottom: 0px;
}

.header .navbar__sub-menu a {
    width: 100%;
    display: flex;
    padding: 20px 32px;
    color: #705c5c;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(228, 218, 218, 0.83);
    text-transform: uppercase;
}

.header .navbar__sub-menu a::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 20px;
    height: 1px;
    margin-top: 0px;
    width: 0px;
    transition: var(--transition);
    background-color: var(--black);
}

.header .navbar__sub-menu a:hover {
    color: var(--template-color);
    padding-inline-start: 40px;
}

.header .navbar__sub-menu a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
    width: 10px;
}

.header .navbar__sub-menu .active>a {
    padding-inline-start: 40px;
    color: #ffffff;
}

.header .navbar__sub-menu .active>a::before {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
    width: 10px;
}

.header .navbar__sub-menu .navbar__item--has-children:hover>.navbar__dropdown-label-sub {
    color: var(--template-color);
}

.header .navbar__sub-menu__nested {
    top: 0%;
    inset-inline-start: 100%;
    min-width: 230px;
}

.header .navbar__sub-menu__nested::before {
    content: "";
    position: absolute;
    transition: var(--transition);
    z-index: -1;
    inset-inline-start: -20px;
    border: 10px solid transparent;
    top: 21px;
    border-inline-end-color: var(--black);
}

.header .active>.navbar__dropdown-label,
.header .active>a {
    color: var(--template-color);
}

.header .navbar__options {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header .open-offcanvas-nav {
    padding: 0px;
    display: inline-block;
    background-color: transparent;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 8px;
}

.header .open-offcanvas-nav span {
    height: 2px;
    background-color: var(--template-color);
    transition: var(--transition);
}

.header .open-offcanvas-nav .top-bar {
    width: 30px;
}

.header .open-offcanvas-nav .middle-bar {
    width: 34px;
}

.header .open-offcanvas-nav .bottom-bar {
    width: 16px;
}

.header .open-offcanvas-nav:hover span {
    background-color: var(--primary-color);
}

.header .open-offcanvas-nav-active .middle-bar {
    opacity: 0;
}

.header .open-offcanvas-nav-active .top-bar,
.header .open-offcanvas-nav-active .bottom-bar {
    width: 30px;
}

.header .open-offcanvas-nav-active .top-bar {
    transform: rotate(45deg) translateY(5px) translateX(9px);
    background-color: var(--primary-color);
}

.header .open-offcanvas-nav-active .bottom-bar {
    transform: rotate(-45deg) translateY(-5px) translateX(9px);
    background-color: var(--primary-color);
}

.header .mega-menu {
    max-width: 100%;
    background-color: var(--white);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 1180px;
    left: 40%;
    transform: translateY(30px) translateX(-45%);
    transition: var(--transition);
}

.header .mega-menu li>a {
    justify-content: center;
    border-bottom: 0px;
    padding-inline: 0px;
    font-weight: 700;
    padding-bottom: 10px;
}

.header .mega-menu li>a::before {
    content: none;
}

.header .mega-menu li {
    flex-grow: 1;
}

.header .mega-menu li:hover .mega-content-wrapper .mega-content {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.header .mega-menu li:hover .mega-content-wrapper .mega-content a {
    transform: scale(1);
}

.header .mega-menu li:hover>a {
    color: var(--black);
}

.header .mega-menu li:hover>a:hover {
    padding-inline: 0px;
}

.header .mega-menu .mega-content-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 400px;
}

.header .mega-menu .mega-content-wrapper img {
    width: 100%;
    height: min-content;
    border-radius: 5px;
    object-position: top;
}

.header .mega-menu .mega-content {
    position: absolute;
    inset: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0%);
    transition: var(--transition);
    overflow: hidden;
    padding: 0px 24px;
}

.header .mega-menu .mega-content a {
    display: inline-flex;
    justify-content: center;
    border-radius: 60px;
    border: 0px solid transparent;
    font-weight: 500;
    background-color: var(--white);
    color: var(--black);
    padding: 16px 24px;
    transform: scale(0%);
    transition-delay: 0.3s;
}

.header .mega-menu .mega-content a::before,
.header .mega-menu .mega-content a::after {
    content: none;
}

.header .mega-menu .mega-content a:nth-of-type(2) {
    background-color: var(--primary-color);
    color: var(--white);
}

.header .mega-menu .active>a {
    color: var(--black);
    padding-inline: 0px;
}

.header-light {
    border-bottom: 0px solid transparent;
    background-color: transparent;
}

.header-light .navbar__item a {
    color: rgba(245, 242, 238, 0.7254901961);
}

.header-light .navbar__item a:hover {
    color: var(--white) !important;
}

.header-light .navbar__item--has-children:hover>.navbar__dropdown-label {
    color: var(--white) !important;
}

.header-light .navbar__item::before {
    background-color: var(--white);
}

.header-light .active>.navbar__dropdown-label,
.header-light .active>a {
    color: var(--white);
}

.header-light .navbar__item .navbar__dropdown-label::before {
    border-bottom-color: #9f938f;
}

.header-light .navbar__sub-menu {
    background-color: #3c3333;
}

.header-light .navbar__sub-menu a {
    border-color: rgba(131, 109, 109, 0.1647058824);
}

.header-light .navbar__sub-menu a::before {
    background-color: var(--white);
}

.header-light .navbar__sub-menu .active>a {
    color: var(--white);
}

.header-light .btn-primary:hover .btn-animated-text {
    border-color: var(--primary-color) !important;
}

.header-light .btn-primary .btn-animated-text {
    border-color: rgba(245, 242, 238, 0.4745098039) !important;
}

.header-light .btn-primary .btn-animated-text span {
    color: #F5F2EE;
}

.header-light .open-offcanvas-nav span {
    background-color: #f5f2ee;
}

.header-light.sticky-header {
    background-color: #2a2826;
    border-bottom: 1px solid rgba(161, 125, 125, 0.3764705882);
}

.sticky-header {
    position: fixed;
    top: 0px;
    inset-inline: 0px;
    width: 100%;
    animation: stickyNavbar 0.5s ease-in-out;
    background: var(--template-bg);
    border-bottom: 1px solid var(--border-color);
}

@keyframes stickyNavbar {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0px);
    }
}

.mobile-menu {
    position: fixed;
    inset: 0px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    max-width: 400px;
    transition: all 900ms ease;
}

.mobile-menu .mobile-menu__header {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0px 40px;
    justify-content: space-between;
}

.mobile-menu .logo {
    line-height: 0px;
}

.mobile-menu .logo a {
    line-height: 0px;
}

.mobile-menu .logo img {
    max-width: 160px;
}

.mobile-menu .close-mobile-menu {
    font-size: 40px;
    color: var(--txt-light-2);
    position: relative;
    top: -60px;
    inset-inline-end: -8px;
}

.mobile-menu .close-mobile-menu:hover {
    color: var(--template-color);
}

.mobile-menu .mobile-menu__wrapper {
    position: absolute;
    inset-inline-start: -400px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-color: var(--template-bg);
    padding: 80px 0px;
    z-index: 99999;
    border-radius: 0px;
    overflow-y: auto;
    overflow-x: clip;
    display: flex;
    flex-direction: column;
    gap: 60px;
    transition: all 900ms ease;
}

.mobile-menu .mobile-menu__wrapper::-webkit-scrollbar {
    width: 0px;
}

.mobile-menu .navbar__list {
    flex-direction: column;
    border: 0px;
}

.mobile-menu .navbar__list>li>a,
.mobile-menu .navbar__list>li button {
    border-bottom: 1px solid rgb(227, 227, 227);
}

.mobile-menu .navbar__list>li:nth-of-type(2) {
    border-top: 1px solid rgb(227, 227, 227);
}

.mobile-menu .navbar__item {
    width: 100%;
    transition: var(--transition);
}

.mobile-menu .navbar__item a {
    color: var(--txt-light);
    padding-block: 24px;
    padding-inline: 40px 80px;
    line-height: 1;
    font-size: 14px;
    text-transform: uppercase;
    width: 100%;
    position: relative;
    font-weight: 400;
}

.mobile-menu .navbar__item a:hover {
    color: var(--template-color);
}

.mobile-menu .navbar__item a:hover::after {
    color: var(--template-color);
}

.mobile-menu .navbar__item a::after {
    transition: var(--transition);
    color: var(--txt-light-2);
}

.mobile-menu .nav-fade {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.7s ease-in-out !important;
}

.mobile-menu .navbar__item--has-children .navbar__dropdown-label::after {
    content: "+";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 0px;
    inset-inline-end: 0px;
    bottom: 0px;
    height: 100%;
    width: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg);
    border-inline-start: 1px solid rgb(227, 227, 227);
}

.mobile-menu .navbar__item--has-children:hover .navbar__dropdown-label::after {
    transform: rotate(0deg);
}

.mobile-menu .navbar__item--has-children:hover>.navbar__dropdown-label-sub {
    color: var(--template-color);
}

.mobile-menu .navbar__item--has-children:hover>.navbar__dropdown-label-sub:hover {
    color: var(--template-color);
}

.mobile-menu .navbar__item--has-children .navbar__item-active {
    color: var(--template-color);
    font-weight: 500;
}

.mobile-menu .navbar__item--has-children .navbar__item-active::after {
    content: "\f068";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.mobile-menu .navbar__sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    width: 100%;
    max-width: 100%;
    padding: 0px;
    display: none;
    transition: none;
    background-color: transparent;
    border-radius: 0px;
}

.mobile-menu .navbar__sub-menu::before {
    content: none;
}

.mobile-menu .navbar__sub-menu a,
.mobile-menu .navbar__sub-menu button {
    color: var(--template-color);
    padding: 20px 40px;
    font-size: 14px;
    border-bottom: 1px solid rgb(227, 227, 227);
}

.mobile-menu .navbar__sub-menu a::before,
.mobile-menu .navbar__sub-menu button::before {
    content: none;
}

.mobile-menu .navbar__sub-menu li:nth-last-of-type(1) a,
.mobile-menu .navbar__sub-menu li:nth-last-of-type(1) button {
    border-bottom: 1px solid rgb(227, 227, 227);
}

.mobile-menu .navbar__sub-menu .navbar__item--has-children>a:hover {
    color: var(--template-color);
}

.mobile-menu .mobile-menu__options {
    padding: 0px 40px;
}

.mobile-menu .mobile-menu__options a,
.mobile-menu .mobile-menu__options button {
    width: 100%;
}

.mobile-menu .mobile-menu__cta {
    text-align: center;
    padding: 0px 40px;
}

.mobile-menu .mobile-menu__social {
    transition: var(--transition);
    padding: 0px 12px;
    justify-content: center;
}

.mobile-menu .active>.navbar__dropdown-label,
.mobile-menu .active>a {
    color: var(--template-color);
    font-weight: 400;
}

.mobile-menu .active>.navbar__dropdown-label::after,
.mobile-menu .active>a::after {
    font-weight: 900;
}

.mobile-menu__backdrop {
    position: fixed;
    inset-inline-end: 0;
    top: 0;
    width: 0%;
    height: 100%;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.3764705882);
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
    visibility: hidden;
    transform: translateX(101%);
    transition: all 900ms ease;
    transition-delay: 300ms;
}

.mobile-menu__backdrop-active {
    width: 100%;
    visibility: visible;
    transition: all 900ms ease;
    transform: translateX(0%);
}

.show-menu {
    opacity: 1;
    visibility: visible;
}

.show-menu .mobile-menu__wrapper {
    inset-inline-start: 0px;
    transition-delay: 600ms;
}

.show-menu .nav-fade {
    animation: navLinkFade 0.5s ease forwards;
    transition: all 0.7s ease-in-out !important;
}

.nav-fade-active {
    animation: navLinkFade 1s ease reverse !important;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navLinkFadeReverse {
    from {
        opacity: 0;
        transform: translateY(0px);
    }
    to {
        opacity: 0;
        transform: translateY(100%);
    }
}

.header-two::before {
    content: "";
    position: absolute;
    top: 20px;
    inset-inline-end: 0px;
    width: 75vw;
    height: 1px;
    background-color: var(--border-color);
}

@media only screen and (min-width: 1400px) {
    .header-two::before {
        width: 80vw;
    }
}

.header-two .navbar__menu-wrapper {
    position: relative;
}

.header-two .navbar__menu-wrapper::before {
    content: "";
    position: absolute;
    inset-inline-start: 7vw;
    width: 1px;
    height: 150px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--border-color);
    display: none;
}

@media only screen and (min-width: 576px) {
    .header-two .navbar__menu-wrapper::before {
        display: block;
    }
}

@media only screen and (min-width: 992px) {
    .header-two .navbar__menu-wrapper::before {
        inset-inline-start: 7vw;
    }
}

@media only screen and (min-width: 1200px) {
    .header-two .navbar__menu-wrapper::before {
        inset-inline-start: 10vw;
    }
}

@media only screen and (min-width: 1400px) {
    .header-two .navbar__menu-wrapper::before {
        inset-inline-start: 3vw;
    }
}

@media only screen and (min-width: 1600px) {
    .header-two .navbar__menu-wrapper::before {
        inset-inline-start: 8vw;
    }
}

.header-two .navbar__item {
    margin-inline: 0px;
    padding-inline: 10px;
}

.header-two .navbar__item::after {
    content: "/";
    position: absolute;
    inset-inline-end: -3px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--txt-light-3);
}

.header-two .navbar__item::before {
    content: none;
}

.header-two .navbar__item:nth-last-of-type(1)::after {
    content: none;
}

.header-two .navbar__item a {
    font-weight: 600;
    color: var(--txt-light-3);
}

.header-two .navbar__options a {
    position: relative;
    padding-inline-start: 14px;
    font-weight: 600;
    z-index: 1;
}

.header-two .navbar__options a:hover {
    color: var(--white);
}

.header-two .navbar__options a:hover::before {
    background-color: var(--white);
}

.header-two .navbar__options a:hover::after {
    height: 78px;
}

.header-two .navbar__options a::before {
    content: "";
    position: absolute;
    top: 50%;
    inset-inline-start: 0px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.header-two .navbar__options a::after {
    content: none;
    position: absolute;
    inset-block-end: 2px;
    inset-inline-start: -20px;
    height: 21px;
    width: 300px;
    transform: translateY(39px);
    transition: var(--transition);
    background-color: var(--primary-color);
    z-index: -3;
}

@media only screen and (min-width: 1200px) {
    .header-two .navbar__options a::after {
        content: "";
    }
}

.header-two .navbar__mobile-options {
    position: relative;
    padding-inline-start: 20px;
}

.header-two .navbar__mobile-options::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    width: 1px;
    height: 110px;
    transform: translateY(-38px);
    background-color: var(--border-color);
}

@media only screen and (min-width: 1200px) {
    .header-two .navbar__mobile-options::before {
        height: 130px;
    }
}

.header-two .navbar__sub-menu .navbar__item--has-children {
    padding-inline: 0px;
}

.header-two .navbar__sub-menu .navbar__item--has-children::after {
    inset-inline-end: 32px;
    font-family: "tabler-icons";
    font-weight: 900;
    content: "\ea61";
    font-size: 20px;
}

.brand-date span {
    font-family: var(--heading-font);
    font-style: italic;
}

.header-three {
    border-bottom: 0px;
    background-color: transparent;
}

.header-three .navbar__menu-wrapper {
    column-gap: 120px;
}

.header-three .navbar__item::before {
    background-color: #F5F2EE;
}

.header-three .navbar__item a {
    color: rgba(245, 242, 238, 0.8156862745);
    text-transform: uppercase;
}

.header-three .navbar__item a:hover {
    color: #F5F2EE;
}

.header-three .active>.navbar__dropdown-label,
.header-three .header .active>a {
    color: #F5F2EE;
}

.header-three .navbar__item--has-children:hover>.navbar__dropdown-label {
    color: #F5F2EE;
}

.header-three .navbar__item .dropdown-label-alter::before {
    border-bottom-color: #F5F2EE;
}

.header-three .navbar__sub-menu {
    background-color: #1e1a1a;
}

.header-three .navbar__sub-menu a {
    border-bottom-color: #483535;
}

.header-three .navbar__sub-menu a::before {
    background-color: #ffffff;
}

.header-three .btn-primary .btn-animated-text {
    background-color: #F5F2EE;
    border-color: #F5F2EE;
}

.header-three .btn-primary .btn-animated-text span {
    text-transform: uppercase;
    color: #481800;
}

.header-three .btn-primary:hover .btn-animated-text {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.header-three .btn-primary:hover .btn-animated-text span {
    color: #ffffff;
}

.header-three .mega-menu .active>a {
    color: white;
}

.header-three .mega-menu a:hover {
    color: white;
}

.header-three .mega-menu li:hover a {
    color: white;
}

.header-three .mega-menu li:hover .mega-content a {
    color: black;
}

.header-three .navbar__sub-menu::before {
    border-inline-end-color: white;
}

.header-three .navbar__sub-menu .navbar__item--has-children {
    padding-inline: 0px;
}

.header-three .navbar__sub-menu .navbar__item--has-children:hover::after {
    color: #F5F2EE !important;
}

.header-three .navbar__sub-menu .navbar__item--has-children::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 32px;
    font-family: "tabler-icons";
    font-weight: 500;
    content: "\ea61";
    font-size: 20px;
    color: rgba(245, 242, 238, 0.6156862745);
    transition: var(--transition);
}

.header-three .open-offcanvas-nav span {
    background-color: #F5F2EE;
}

.header-three .navbar__item--has-children:hover>.navbar__dropdown-label {
    color: #F5F2EE !important;
}

.header-three.sticky-header {
    border-bottom: 1px solid #4c4c4c;
    background-color: #3E2B2E;
}

.pioneer-header {
    padding-top: 0px;
}

.pioneer-header__top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    min-height: 34px;
    color: rgba(245, 242, 238, 0.86);
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(245, 242, 238, 0.14);
}

.pioneer-header__top a {
    color: rgba(245, 242, 238, 0.86);
}

.pioneer-header__top a:hover {
    color: var(--primary-color);
}

.pioneer-header .main-header__menu-box {
    padding-top: 12px;
}

.pioneer-header .navbar__menu-wrapper {
    column-gap: 56px;
}

.pioneer-header .navbar__item {
    margin-inline: 12px;
    font-family: var(--template-font);
    font-style: normal;
}

.pioneer-header .navbar__item a {
    font-size: 13px;
    letter-spacing: 0.04em;
}

.pioneer-header .navbar__sub-menu {
    min-width: 270px;
}

.pioneer-header .navbar__sub-menu__nested {
    min-width: 300px;
}

.pioneer-header.sticky-header .pioneer-header__top {
    display: none;
}

.pioneer-header.sticky-header .main-header__menu-box {
    padding-top: 0px;
}

@media only screen and (max-width: 1199px) {
    .pioneer-header__top {
        justify-content: center;
    }

    .pioneer-header .main-header__menu-box {
        padding-top: 10px;
    }
}

@media only screen and (max-width: 575px) {
    .pioneer-header__top {
        gap: 8px;
        font-size: 11px;
    }
}

.header-four {
    border-bottom: 0px solid transparent !important;
}

.header-four .navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

@media only screen and (min-width: 425px) {
    .header-four .navbar-logo {
        gap: 40px;
    }
}

.header-four .navbar-logo p {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-four .navbar-logo .dot {
    width: 5px;
    height: 5px;
    background-color: var(--template-color);
    border-radius: 5px;
}

.header-line {
    position: absolute;
    inset-block-end: 0px;
    inset-inline: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-line span {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    flex-grow: 1;
}

.header-line span:nth-of-type(1) {
    max-width: 415px;
}

.header-line span:nth-of-type(2) {
    max-width: 315px;
}

/* ==== 
 --------- (4.01) header styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (4.02) banner styles start ---------
 ==== */

.hero {
    padding-top: 190px;
}

@media only screen and (min-width: 992px) {
    .hero {
        padding-top: 190px;
    }
}

@media only screen and (min-width: 1200px) {
    .hero {
        padding-top: 280px;
    }
}

@media only screen and (min-width: 576px) {
    .hero__inner h1 {
        margin-block-start: -0.35em;
    }
}

.hero__inner .fraunces {
    margin-inline-end: -0.12em;
    margin-inline-start: -0.14em;
    font-style: italic;
}

.hero__inner h2 .split-child-lg:nth-last-of-type(1) {
    padding-inline-end: 0.017em;
}

.hero__inner h2 span:nth-of-type(1) {
    line-height: 1;
    font-size: 25px;
    vertical-align: text-top;
}

@media only screen and (min-width: 768px) {
    .hero__inner h2 span:nth-of-type(1) {
        font-size: 0.4em;
        margin-inline-end: -0.45em;
    }
}

.hero__inner p {
    text-align: end;
}

@media only screen and (min-width: 768px) {
    .hero__inner p {
        margin-block-start: -1.15em;
    }
}

.hero__inner .title-xxl {
    letter-spacing: -0.06em;
}

.hero__inner .title-xl {
    letter-spacing: -0.06em;
    margin-top: -0.2em;
}

.hero__inner .title-xl span {
    letter-spacing: -0.095em;
}

.hero-two {
    padding-top: 190px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media only screen and (min-width: 992px) {
    .hero-two {
        padding-top: 250px;
    }
}

@media only screen and (min-width: 1200px) {
    .hero-two {
        padding-top: 270px;
    }
}

.hero-two::before {
    content: "";
    position: absolute;
    inset-inline: 0px;
    inset-block-end: 0px;
    height: 27%;
    background-color: var(--black-2);
    z-index: -1;
}

.hero-two .title-lg {
    line-height: 1;
}

.hero-two .cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
    padding-bottom: 0.15em;
    padding-inline-start: 0.06em;
}

.hero-two .cd-words-wrapper .app {
    display: inline-block;
}

.hero-two .cd-words-wrapper i {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.hero-two .cd-words-wrapper i.is-visible {
    position: relative;
}

.hero-two .no-js .cd-words-wrapper i {
    opacity: 0;
}

.hero-two .no-js .cd-words-wrapper i.is-visible {
    opacity: 1;
}

.hero-two .cd-headline.clip span {
    display: inline-block;
}

.hero-two .cd-headline.clip .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}

.hero-two .cd-headline.clip .cd-words-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: var(--tp-theme-primary);
}

.hero-two .cd-headline.clip i {
    opacity: 0;
}

.hero-two .cd-headline.clip i.is-visible {
    opacity: 1;
}

@media only screen and (min-width: 1200px) {
    .hero-two__intro {
        height: 155px;
        display: flex;
        align-items: flex-end;
    }
}

@media only screen and (min-width: 1400px) {
    .hero-two__intro {
        height: 190px;
    }
}

@media only screen and (min-width: 1600px) {
    .hero-two__intro {
        height: 302px;
    }
}

.hero-two__intro p {
    max-width: 160px;
}

.hero-two__content {
    position: relative;
    z-index: 11;
    background-color: var(--template-bg);
}

.hero__heading .title-lg {
    letter-spacing: -0.04em;
    position: relative;
    z-index: 12;
    color: var(--white);
    mix-blend-mode: difference;
}

@media only screen and (min-width: 1200px) {
    .hero__heading .title-lg {
        line-height: calc(100% - 10px);
    }
}

.hero__heading .dr {
    margin-inline: -0.2em -0.25em;
}

.hero__heading .cfc {
    color: #467ab3;
}

.hero-two__thumb {
    position: relative;
    z-index: 10;
}

.hero-two__thumb img {
    width: 100%;
    min-height: 400px;
}

.hero-two__lang {
    display: flex;
    align-items: center;
    gap: 6px;
    transform: rotate(90deg);
}

.hero-two__lang button,
.hero-two__lang span {
    font-family: var(--heading-font);
    color: var(--txt-light);
    font-style: italic;
    font-weight: 600;
}

.hero-two__lang button:hover {
    color: var(--template-color);
}

.hero-two__cta-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 25vh;
    height: 100vh;
    position: absolute;
    inset-inline-end: 3%;
    top: 30%;
    z-index: 9;
}

@media only screen and (min-width: 992px) {
    .hero-two__cta-wrapper {
        top: 270px;
    }
}

@media only screen and (min-width: 1200px) {
    .hero-two__cta-wrapper {
        top: 280px;
    }
}

@media only screen and (min-width: 1400px) {
    .hero-two__cta-wrapper {
        top: 290px;
    }
}

.hero-two__cta a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    flex-direction: column;
    position: relative;
}

.hero-two__cta a span {
    position: absolute;
    top: 50%;
    transform: rotate(90deg) translateX(-25px) translateY(-2%);
    padding: 12px;
    min-width: -moz-max-content;
    min-width: max-content;
    background: var(--template-bg);
    letter-spacing: 1px;
}

.hero-two__cta a img {
    max-width: 260px;
}

.hero-three {
    padding-top: 260px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

@media only screen and (min-width: 992px) {
    .hero-three {
        padding-top: 215px;
    }
}

@media only screen and (min-width: 1400px) {
    .hero-three {
        padding-top: 350px;
    }
}

.hero-three .hero-three-bg {
    position: absolute;
    inset: 0px;
    z-index: -1;
}

.hero-three .hero-three-bg::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-three .hero-three-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease;
    z-index: 0;
}

.hero-three .hero-three-bg .active-bg {
    opacity: 1;
}

.hero-three .title-lg,
.hero-three .title-lg-sm,
.hero-three p,
.hero-three .hero-three__cta {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 800ms ease;
}

.hero-three .swiper-slide-active .title-lg {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 300ms;
}

.hero-three .swiper-slide-active .title-lg-sm {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 600ms;
}

.hero-three .swiper-slide-active p {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 900ms;
}

.hero-three .swiper-slide-active .hero-three__cta {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1200ms;
}

@media only screen and (max-width: 991px) {
    .hero-three .container {
        width: 100%;
        max-width: 100%;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-three .container {
        max-width: calc(100% - 80px);
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .hero-three .container {
        max-width: calc(100% - 160px);
    }
}

.hero-three .hero-three-pagination {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: row;
    position: absolute;
    left: 50%;
    top: 27%;
    transform: translateY(-27%) translateX(-50%);
    margin-inline: auto;
    height: max-content !important;
}

@media only screen and (max-width: 991px) {
    .hero-three .hero-three-pagination {
        width: calc(100% - 24px);
        max-width: 100%;
    }
}

@media only screen and (min-width: 992px) {
    .hero-three .hero-three-pagination {
        width: 936px;
        top: 30%;
        transform: translateY(-30%) translateX(-50%);
    }
}

@media only screen and (min-width: 1200px) {
    .hero-three .hero-three-pagination {
        top: 25%;
        transform: translateY(-25%) translateX(-50%);
    }
}

@media only screen and (min-width: 1400px) {
    .hero-three .hero-three-pagination {
        top: 30%;
        transform: translateY(-30%) translateX(-50%);
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-three .hero-three-pagination {
        width: calc(100% - 104px);
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .hero-three .hero-three-pagination {
        width: calc(100% - 184px);
    }
}

@media only screen and (min-width: 1600px) {
    .hero-three .hero-three-pagination {
        top: 39%;
        transform: translateY(-31%);
        inset-inline-start: 92px;
        flex-direction: column;
        max-width: max-content;
    }
}

.hero-three .hero-three-pagination .swiper-pagination-bullet {
    background-color: unset !important;
    border-radius: unset !important;
    width: unset !important;
    height: unset !important;
    margin: unset !important;
    font-size: 20px;
    font-family: var(--heading-font);
    color: #F5F2EE;
}

.hero-three .social {
    display: none;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: 31%;
    transform: translateY(-30%);
    inset-inline-end: 12px;
}

@media only screen and (min-width: 576px) {
    .hero-three .social {
        display: flex;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-three .social {
        align-items: flex-end;
        width: 960px;
        inset-inline-start: 50%;
        transform: translateX(-50%) translateY(-30%);
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-three .social {
        top: 25%;
        transform: translateY(-25%);
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .hero-three .social {
        top: 31%;
        transform: translateY(-29%);
    }
}

@media only screen and (min-width: 1200px) {
    .hero-three .social {
        inset-inline-end: 52px;
    }
}

@media only screen and (min-width: 1400px) {
    .hero-three .social {
        inset-inline-end: 92px;
    }
}

@media only screen and (min-width: 1600px) {
    .hero-three .social {
        top: 38%;
        transform: translateY(-40%);
    }
}

.hero-three .social a {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(245, 242, 238, 0.0784313725);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(245, 242, 238, 0.3137254902);
    color: var(--white);
}

.hero-three .social a:hover {
    background-color: #F5F2EE;
    color: var(--black);
}

.hero-three .scroll-down {
    position: absolute;
    inset-block-end: 95px;
    inset-inline-end: 12px;
    color: #F5F2EE;
    z-index: 3;
}

@media only screen and (min-width: 425px) {
    .hero-three .scroll-down {
        inset-inline-start: 45%;
        inset-inline-end: unset;
    }
}

@media only screen and (min-width: 768px) {
    .hero-three .scroll-down {
        inset-block-end: 115px;
    }
}

@media only screen and (min-width: 992px) {
    .hero-three .scroll-down {
        inset-inline-start: 30%;
    }
}

@media only screen and (min-width: 1200px) {
    .hero-three .scroll-down {
        inset-block-end: 155px;
        inset-inline-start: 25%;
    }
}

@media only screen and (min-width: 1600px) {
    .hero-three .scroll-down {
        inset-inline-start: 50px;
    }
}

@media only screen and (min-width: 1700px) {
    .hero-three .scroll-down {
        inset-inline-start: 92px;
    }
}

.hero-three .scroll-down:hover {
    color: var(--primary-color);
}

.hero-three .slider-navigation {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
}

@media only screen and (min-width: 425px) {
    .hero-three .slider-navigation {
        position: absolute;
        inset-block-end: 80px;
        inset-inline-end: 12px;
        margin-top: 0px;
        z-index: 3;
    }
}

@media only screen and (min-width: 768px) {
    .hero-three .slider-navigation {
        inset-block-end: 100px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-three .slider-navigation {
        justify-content: flex-end;
        width: 936px;
        inset-inline-start: 50%;
        transform: translateX(-50%) translateY(-30%);
    }
}

@media only screen and (min-width: 1200px) {
    .hero-three .slider-navigation {
        inset-block-end: 140px;
        inset-inline-end: 52px;
    }
}

@media only screen and (min-width: 1400px) {
    .hero-three .slider-navigation {
        inset-inline-end: 92px;
    }
}

.hero-three .slider-navigation button {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(245, 242, 238, 0.0784313725);
    font-size: 20px;
    border: 1px solid var(--white);
    border-radius: 0px 140px 130px;
    color: var(--white);
    backdrop-filter: blur(5px);
}

.hero-three .slider-navigation button:nth-of-type(2) {
    border-radius: 130px 140px 0px;
}

.hero-three .slider-navigation button:hover {
    background-color: var(--white);
    color: var(--black);
}

.hero-three .lines-cr {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-three .lines-cr .line-cr {
    position: absolute;
    width: 1px;
    height: calc(100% + 200px);
    min-height: 100vh;
    top: 50%;
    transform: translateY(-50%);
    background: #F5F2EE;
    opacity: 7%;
    z-index: 1;
}

.hero-three .lines-cr .line-cr:nth-of-type(1) {
    inset-inline-start: calc(2% - 3px);
}

.hero-three .lines-cr .line-cr:nth-of-type(2) {
    inset-inline-start: calc(25% - 3px);
}

.hero-three .lines-cr .line-cr:nth-of-type(3) {
    inset-inline-start: calc(50% - 3px);
}

.hero-three .lines-cr .line-cr:nth-of-type(4) {
    inset-inline-start: calc(75% - 3px);
}

.hero-three .lines-cr .line-cr:nth-of-type(5) {
    inset-inline-end: calc(2% - 3px);
}

.hero-three__content {
    position: relative;
    z-index: 2;
}

.hero-three__content p {
    max-width: 410px;
}

.hero-three__cta {
    margin-top: 60px;
}



.hero-three__cta .btn-quinary .btn-animated-text {
    background-color: transparent;
    border: 1px solid var(--white);
    padding-block: 16px 18px;
}

.hero-three__cta .btn-quinary .btn-animated-text span {
    color: var(--white);
}

.hero-three__cta .btn-quinary:hover .btn-animated-text {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.hero-four {
    padding-top: 140px;
    border-block-end: 1px solid var(--border-color);
}

@media only screen and (min-width: 768px) {
    .hero-four {
        padding-top: 100px;
    }
}

.hero-four .hero-four__inner {
    text-align: end;
}

.hero-four .hero-four__inner .title-xxl {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 0px;
}

.hero-four .hero-four__inner .reg {
    font-size: 40px;
    line-height: 0px;
    padding-block-end: 0.25em;
    padding-inline-start: 8px;
}

@media only screen and (min-width: 768px) {
    .hero-four .hero-four__inner .reg {
        padding-block-end: 0.8em;
    }
}

@media only screen and (min-width: 1200px) {
    .hero-four .hero-four__inner .reg {
        font-size: 80px;
        padding-block-end: 0.8em;
    }
}

.hero-four .title-xxl {
    margin-bottom: -0.25em;
    display: inline-flex;
}

@media only screen and (min-width: 1200px) {
    .hero-four .title-xxl {
        font-size: clamp(200px, 20vw, 350px);
    }
}

@media only screen and (max-width: 575px) {
    .hero-four .title-xxl {
        font-size: clamp(40px, 10vw, 110px);
    }
}

.hero-four .hero-four__bottom-right .split-parent {
    display: flex !important;
    align-items: center;
    width: max-content;
    padding-inline-end: 0.03em;
    margin-inline-start: auto;
}

.hero-four .title-lg {
    margin-bottom: -0.25em;
}

.hero-four .title-lg img {
    border-radius: 40px;
    margin-inline: 0.2em;
    max-width: 15vw;
    opacity: 0;
    visibility: hidden;
}

.hero-four .img-text {
    background-image: linear-gradient(135deg, var(--primary-color), var(--template-color));
    background-size: cover;
    background-position: center;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-four__inner {
    margin-block-start: 120px;
}

@media only screen and (min-width: 576px) {
    .hero-four__inner {
        margin-block-start: 180px;
    }
}

@media only screen and (min-width: 1400px) {
    .hero-four__inner {
        margin-block-start: 260px;
    }
}

.hero-four__intro-left {
    max-width: 420px;
    flex-grow: 1;
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .hero-four__intro-left {
        text-align: start;
    }
}

.hero-four__intro-left a {
    font-weight: 500;
    color: var(--template-color);
}

.hero-four__intro-left a:hover {
    color: var(--primary-color);
}

.hero-four__intro-center {
    max-width: 320px;
    min-width: 320px;
    flex-grow: 1;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .hero-four__intro-center {
        margin-inline: auto;
        text-align: center;
    }
}

.hero-four__intro-right {
    width: 100%;
    flex-grow: 1;
    width: 100%;
    text-align: end;
}

.hero-four__intro {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

@media only screen and (max-width: 767px) {
    .hero-four__intro {
        flex-direction: column;
    }
}

@media only screen and (min-width: 768px) {
    .hero-four__intro-center,
    .hero-four__intro-right,
    .hero-four__intro-left {
        border-top: 1px solid #4F4B47;
        padding-top: 40px;
    }
}

.hero-four__bottom-left a span {
    position: relative;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--txt-light);
    transition: var(--transition);
}

.hero-four__bottom-left a span::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    inset-block-end: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--txt-light);
    transition: var(--transition);
}

.hero-four__bottom-left a i {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: -3px;
    color: var(--txt-light);
}

.hero-four__bottom-left a:hover {
    color: var(--primary-color);
}

.hero-four__bottom-left a:hover span {
    color: var(--primary-color);
}

.hero-four__bottom-left a:hover span::before {
    width: 100%;
    background-color: var(--primary-color);
}

.hero-four__bottom-left a:hover i {
    color: var(--primary-color);
}

.about-banner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 190px;
}

@media only screen and (min-width: 992px) {
    .about-banner {
        padding-top: 200px;
    }
}

@media only screen and (min-width: 1200px) {
    .about-banner {
        padding-top: 220px;
    }
}

.about-banner .title-xxl {
    display: inline-flex;
}

.about-banner .title-xxl span {
    color: #C08860;
}

.about-banner-bg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.about-banner-bg img {
    width: 100%;
    height: 100%;
}

.about-banner__content {
    max-width: max-content;
    margin-inline-start: auto;
}

.about-banner__wrapper {
    max-width: 1260px;
    margin-inline: auto;
}

.about-banner__content-inner {
    max-width: 540px;
}

.about-banner-time {
    display: flex;
    gap: 0px;
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
    .about-banner-time {
        transform: translateY(35px);
        flex-direction: column;
        gap: 60px;
        margin-bottom: 0px;
    }
}

.about-banner-time p {
    padding: 12px 20px;
    background-color: #F5F2EE;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #F5F2EE;
}

@media only screen and (min-width: 768px) {
    .about-banner-time p {
        width: max-content;
        transform: rotate(90deg) translateY(26px);
        transform-origin: center center;
    }
}

.about-banner-time p:nth-of-type(1) {
    border: 1px solid rgba(245, 242, 238, 0.3764705882);
    background-color: transparent;
}

.about-banner__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    margin-top: -35px;
}

@media only screen and (max-width: 767px) {
    .about-banner__scroll {
        padding-top: 40px;
    }
}

.about-banner__scroll p {
    color: rgba(245, 242, 238, 0.7254901961);
    text-align: center;
}

.about-banner__scroll a {
    width: 90px;
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-width: 0px 0px 3px 0px;
    border-style: solid;
    border-color: rgba(245, 242, 238, 0.3764705882);
    font-size: 40px;
    color: #F5F2EE;
}

@media only screen and (min-width: 1200px) {
    .about-banner__scroll a {
        width: 140px;
        min-width: 140px;
        height: 140px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.about-banner__scroll a img {
    max-width: 40px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(11%) saturate(3890%) hue-rotate(6deg) brightness(114%) contrast(89%);
    transition: filter 0.2s ease;
}

@media only screen and (min-width: 1200px) {
    .about-banner__scroll a img {
        max-width: 48px;
    }
}

.about-banner__scroll a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.about-banner__scroll a:hover img {
    filter: brightness(0) saturate(100%) invert(60%) sepia(13%) saturate(1716%) hue-rotate(351deg) brightness(91%) contrast(82%);
}

.service-banner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 190px;
}

@media only screen and (min-width: 992px) {
    .service-banner {
        padding-top: 290px;
    }
}

@media only screen and (min-width: 1200px) {
    .service-banner {
        padding-top: 380px;
    }
}

.service-banner-bg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.service-banner-bg::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(72, 24, 0, 0.5647058824);
    z-index: 1;
}

.service-banner-bg img {
    width: 100%;
    height: 100%;
}

.service-banner__text p {
    max-width: 200px;
}

@media only screen and (min-width: 768px) {
    .service-banner__text p {
        margin-inline-start: auto;
    }
}

.service-details-banner p {
    max-width: 100%;
}

@media only screen and (min-width: 768px) {
    .service-details-banner p {
        margin-inline-start: auto;
        max-width: 300px;
    }
}

.common-banner {
    border-block-end: 1px solid #E3DFDA;
}

.overflow-x-clip {
    overflow-x: clip;
}

.common-banner__inner {
    max-width: 380px;
}

@media only screen and (min-width: 576px) {
    .common-banner__inner {
        max-width: 580px;
    }
}

@media only screen and (min-width: 992px) {
    .common-banner__inner {
        max-width: 580px;
    }
}

@media only screen and (min-width: 1200px) {
    .common-banner__inner {
        max-width: 880px;
    }
}

/* ==== 
 --------- (4.02) banner styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (4.03) footer styles start ---------
 ==== */

.footer {
    position: relative;
    z-index: 1;
}

.footer__item-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: clamp(24px, 10vw, 200px);
}

.footer__item-row-single {
    min-width: max-content;
}

.footer__info a {
    color: var(--txt-light);
}

.footer__info a:hover {
    color: var(--template-color);
}

@media only screen and (min-width: 992px) {
    .left-auto {
        max-width: min-content;
        margin-inline-start: auto;
    }
}

@media only screen and (min-width: 992px) {
    .center-auto {
        max-width: 200px;
        margin-inline: auto;
    }
}

.footer__newsletter {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__newsletter form {
    margin-top: 40px;
}

@media only screen and (min-width: 1200px) {
    .footer__newsletter form {
        margin-top: 80px;
    }
}

.footer__newsletter p {
    max-width: 340px;
}

@media only screen and (min-width: 768px) {
    .footer__newsletter p {
        max-width: 380px;
    }
}

@media only screen and (min-width: 1200px) {
    .footer__newsletter p {
        max-width: 400px;
    }
}

.footer__newsletter .input-single {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    position: relative;
}

@media only screen and (min-width: 1200px) {
    .footer__newsletter .input-single {
        max-width: 560px;
    }
}

.footer__newsletter .input-single .underline {
    position: absolute;
    inset-inline: 0px;
    inset-block-end: 0px;
    width: 100%;
    border-bottom: 1px solid var(--senary-color);
    transition: border-color 0.3s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.footer__newsletter .input-single:focus-within span {
    border-bottom-color: var(--primary-color);
}

.footer__newsletter .input-single input {
    flex-grow: 1;
    width: 100%;
    padding: 0px;
    padding-bottom: 18px;
    color: var(--template-color);
    background-color: transparent;
}

.footer__newsletter .input-single input::placeholder {
    color: var(--txt-light);
}

.footer__newsletter .input-single button {
    color: var(--txt-light);
    padding-bottom: 18px;
}

.footer__newsletter .input-single button i {
    font-size: 20px;
}

.footer__newsletter .input-single button:hover {
    color: var(--template-color);
}

.footer-two {
    background-color: #481800;
}

.footer-two .input-single input {
    color: white;
}

.footer-two .input-single input::placeholder {
    color: rgba(245, 242, 238, 0.8);
}

.footer-two .input-single .underline {
    border-bottom: 1px solid rgba(245, 242, 238, 0.6588235294);
}

.footer-two .input-single button {
    color: var(--primary-color);
}

.footer-two .input-single button i {
    font-size: 24px;
    font-weight: 600;
}

.footer-two .input-single button:hover {
    color: #ffffff;
}

.footer-two__single {
    height: 100%;
}

@media only screen and (min-width: 1200px) {
    .footer-two__newsletter {
        max-width: 340px;
    }
}

.footer-two__intro {
    max-width: 200px;
}

.footer-two__intro p {
    color: rgba(245, 242, 238, 0.8);
}

.footer-two__newsletter {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.footer-two__list span {
    color: rgba(245, 242, 238, 0.8);
}

.footer-two__list li {
    line-height: 1;
    margin-bottom: 30px;
    font-family: var(--maison-neue);
}

.footer-two__list li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.footer-two__list li a {
    font-size: inherit;
    line-height: inherit;
    color: #f5f2ee;
}

.footer-two__list li a::before {
    background-color: var(--primary-color);
}

.footer-two__list li a:hover {
    color: var(--primary-color);
}

.footer-two-cta {
    padding: 12px 16px;
    border: 1px solid rgba(245, 242, 238, 0.3215686275);
    border-radius: 30px;
    color: rgba(245, 242, 238, 0.6156862745);
    letter-spacing: 0.01em;
}

.footer-two-cta:hover {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.footer-three__intro {
    max-width: 320px;
}

.footer-three__single-intro h6 {
    position: relative;
    display: inline-block;
}

.footer-three__single-intro h6::before {
    content: "";
    position: absolute;
    inset-block-end: 0px;
    inset-inline: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--template-color);
}

.footer-three__address {
    max-width: 280px;
    margin-top: 30px;
}

@media only screen and (min-width: 1200px) {
    .footer-three__address {
        margin-top: 40px;
    }
}

.footer-three__address li {
    margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) {
    .footer-three__address li {
        margin-bottom: 30px;
    }
}

.footer-three__address li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.footer-three__address a {
    display: block;
    color: var(--txt-light);
}

.footer-three__address a:hover {
    color: var(--template-color);
}

.footer-three__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

@media only screen and (min-width: 1200px) {
    .footer-three__list {
        margin-top: 40px;
    }
}

.footer-three__list li {
    width: calc(50% - 10px);
}

.footer-three__list a {
    color: var(--txt-light);
    position: relative;
}

.footer-three__list a::before {
    content: "";
    position: absolute;
    inset-block-end: 0px;
    inset-inline: 0px;
    width: 0%;
    height: 1px;
    background-color: var(--template-color);
    transition: var(--transition);
}

.footer-three__list a:hover {
    color: var(--template-color);
}

.footer-three__list a:hover::before {
    width: 100%;
}

.footer-four__single {
    height: 100%;
}

.footer-four__single p {
    color: #ddd8d2;
}

.footer-four__intro {
    max-width: 300px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

@media only screen and (min-width: 1200px) {
    .footer-four__intro {
        max-width: 360px;
    }
}

.footer-four__intro p,
.footer-four__intro a {
    color: #F5F2EE;
}

.footer-four__intro span {
    color: #ddd8d2;
}

@media only screen and (min-width: 1200px) {
    .footer-four__list {
        border-inline: 1px solid #b19d86;
    }
}

.footer-four__list li {
    line-height: 1;
    margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) {
    .footer-four__list li {
        text-align: center;
        margin-bottom: 40px;
    }
}

.footer-four__list li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.footer-four__list li a {
    color: #ddd8d2;
    position: relative;
    font-size: inherit;
}

.footer-four__list li a::before {
    content: "";
    position: absolute;
    inset-block-end: 0px;
    inset-inline: 0px;
    width: 0%;
    height: 1px;
    background-color: #F5F2EE;
    transition: var(--transition);
}

.footer-four__list li a:hover {
    color: #F5F2EE;
}

.footer-four__list li a:hover::before {
    width: 100%;
}

.footer-four__single-last-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

.footer-four__single-last-item .btn-secondary:hover .btn-animated-text {
    background-color: #ddd8d2;
    border: 1px solid #ddd8d2;
}

.footer-four__single-last-item .btn-secondary:hover .btn-animated-text span {
    color: var(--black);
}

.footer-four__single-last-item .t-end {
    width: 100%;
    text-align: end;
}

.footer-four__single-last-item button {
    color: #ddd8d2;
}

.footer-four__single-last-item button i {
    font-size: 22px;
    margin-bottom: -2px;
}

.footer-four__single-last-item button:hover {
    color: #F5F2EE;
}

@media only screen and (min-width: 1200px) {
    .footer-four__inner {
        padding-block: 40px;
        border-block: 1px solid #b19d86;
    }
}

.footer-bottom__left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    row-gap: 8px;
    flex-wrap: wrap;
}

@media only screen and (min-width: 1200px) {
    .footer-bottom__left {
        max-width: 450px;
        justify-content: space-between;
    }
}

.footer-bottom__right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    row-gap: 8px;
    flex-wrap: wrap;
}

@media only screen and (min-width: 992px) {
    .footer-bottom__right {
        justify-content: flex-end;
    }
}

@media only screen and (min-width: 1200px) {
    .footer-bottom__right {
        max-width: 480px;
        justify-content: space-between;
        margin-inline-start: auto;
    }
}

.footer-two__bottom {
    padding-block: 60px;
}

@media only screen and (min-width: 768px) {
    .footer-two__bottom {
        padding-block: 25px;
    }
}

.footer-two__bottom-inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    row-gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
}

@media only screen and (min-width: 768px) {
    .footer-two__bottom-inner {
        flex-direction: row;
        align-items: center;
    }
}

.footer-two__bottom-inner__single p {
    color: #fff;
    line-height: 1;
}

.footer-two__bottom-inner__single p a,
.footer-two__bottom-inner__single p button {
    color: #fff;
}

.footer-two__bottom-inner__single p a i,
.footer-two__bottom-inner__single p button i {
    font-size: 22px;
}

.footer-two__bottom-inner__single p a:hover,
.footer-two__bottom-inner__single p button:hover {
    color: #ebdfdf;
}

.footer-two__bottom-inner__single .hover-line-bottom-two::before {
    background-color: #ebdfdf;
    bottom: -6px;
}

.footer-three-bottom {
    border-top: 1px solid var(--border-color);
}

.footer-three-bottom p {
    line-height: 1;
}

.footer-three-bottom p a,
.footer-three-bottom p button {
    color: var(--txt-light);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
}

@media only screen and (min-width: 1400px) {
    .footer-three-bottom p a,
    .footer-three-bottom p button {
        font-size: 18px;
    }
}

.footer-three-bottom p a:hover,
.footer-three-bottom p button:hover {
    color: var(--template-color);
}

@media only screen and (min-width: 1200px) {
    .footer-three-bottom button {
        gap: 24px;
    }
}

.footer-three-bottom button i {
    margin-top: -4px;
    font-size: 20px;
}

@media only screen and (min-width: 1200px) {
    .footer-three-bottom button i {
        font-size: 24px;
    }
}

.footer-three-bottom__inner-cn {
    display: flex;
    align-items: center;
    gap: 30px;
    row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

@media only screen and (min-width: 1400px) {
    .footer-three-bottom__inner-cn {
        gap: 40px;
    }
}

@media only screen and (min-width: 1200px) {
    .footer-three-bottom__inner-cn {
        justify-content: flex-end;
    }
}

.footer-three-bottom .social-icons {
    justify-content: center;
}

@media only screen and (min-width: 1200px) {
    .footer-three-bottom .social-icons {
        justify-content: flex-start;
    }
}

.pioneer-footer {
    background: var(--primary-color);
    color: var(--template-bg);
    padding: 44px 0px 24px;
    font-family: var(--template-font);
}

.pioneer-footer a {
    color: inherit;
}

.pioneer-footer__brand {
    display: flex;
    justify-content: center;
    margin-bottom: 34px;
}

.pioneer-footer__brand img {
    width: min(170px, 42vw);
    height: auto;
    filter: brightness(0) invert(1);
}

.pioneer-footer__grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(4, minmax(110px, 1fr));
    gap: 34px 28px;
}

.pioneer-footer__column {
    min-width: 0px;
}

.pioneer-footer__column h2 {
    color: var(--template-bg);
    font-family: var(--template-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
    padding-bottom: 10px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(245, 242, 238, 0.28);
}

.pioneer-footer__column p,
.pioneer-footer__column li,
.pioneer-footer__column a {
    color: rgba(245, 242, 238, 0.86);
    font-size: 14px;
    line-height: 1.55;
}

.pioneer-footer__column p {
    margin-bottom: 12px;
}

.pioneer-footer__column strong {
    display: block;
    color: var(--template-bg);
    font-weight: 700;
    margin-bottom: 4px;
}

.pioneer-footer__column li {
    margin-bottom: 7px;
}

.pioneer-footer__column a {
    transition: var(--transition);
}

.pioneer-footer__column a:hover {
    color: var(--white);
}

.pioneer-footer__column--address {
    max-width: 250px;
}

.pioneer-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 18px;
    margin-top: 42px;
    padding-top: 18px;
    border-top: 1px solid rgba(245, 242, 238, 0.28);
}

.pioneer-footer__bottom p {
    color: rgba(245, 242, 238, 0.88);
    font-size: 14px;
    line-height: 1.45;
    margin: 0px;
}

.pioneer-footer__request {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0px 18px;
    border: 1px solid rgba(245, 242, 238, 0.7);
    color: var(--template-bg);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition);
}

.pioneer-footer__request:hover {
    background: var(--template-bg);
    color: var(--template-color);
}

@media only screen and (max-width: 1199px) {
    .pioneer-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pioneer-footer__column--address {
        max-width: none;
        grid-column: span 2;
    }
}

@media only screen and (max-width: 767px) {
    .pioneer-footer {
        padding-top: 34px;
    }

    .pioneer-footer__brand {
        justify-content: flex-start;
        margin-bottom: 28px;
    }

    .pioneer-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 22px;
    }

    .pioneer-footer__column--address {
        grid-column: 1 / -1;
    }

    .pioneer-footer__bottom {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 480px) {
    .pioneer-footer__grid {
        grid-template-columns: 1fr;
    }
}

.footer-four-bottom__inner ul {
    display: flex;
    align-items: center;
    gap: 20px;
    row-gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

@media only screen and (min-width: 1200px) {
    .footer-four-bottom__inner ul {
        justify-content: flex-start;
    }
}

.footer-four-bottom__inner li,
.footer-four-bottom__inner a {
    color: var(--txt-light);
    font-weight: 500;
}

.footer-four-bottom__inner a {
    position: relative;
}

.footer-four-bottom__inner a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1.5px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.footer-four-bottom__inner a:hover {
    color: var(--primary-color);
}

.footer-four-bottom__inner a:hover::before {
    width: 100%;
}

.footer-four-bottom__inner .divider {
    height: 24px;
    width: 1px;
    background-color: var(--border-color);
    display: none;
}

@media only screen and (min-width: 576px) {
    .footer-four-bottom__inner .divider {
        display: block;
    }
}

.footer-four-bottom__inner.t-end {
    text-align: center;
}

@media only screen and (min-width: 1200px) {
    .footer-four-bottom__inner.t-end {
        text-align: end;
    }
}

.newsletter {
    background-color: #481800;
}

.newsletter__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 80px;
}

@media only screen and (min-width: 576px) {
    .newsletter__inner {
        margin-top: 120px;
    }
}

@media only screen and (min-width: 1200px) {
    .newsletter__inner {
        margin-top: 200px;
    }
}

.newsletter__inner form {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

@media only screen and (max-width: 991px) {
    .newsletter__inner form {
        flex-wrap: wrap;
    }
}

.newsletter__inner .input-single {
    margin: 0px;
    width: 100%;
}

@media only screen and (min-width: 576px) {
    .newsletter__inner .input-single {
        width: calc(50% - 12px);
    }
}

@media only screen and (min-width: 992px) {
    .newsletter__inner .input-single {
        flex-grow: 1;
        width: 100%;
    }
}

.newsletter__inner .input-single input,
.newsletter__inner .input-single button {
    width: 100%;
}

.newsletter__inner .input-single input {
    background-color: transparent;
    border: 1px solid rgba(245, 242, 238, 0.0823529412);
    border-radius: 30px;
    color: var(--white);
    font-weight: 400;
    padding-inline: 40px;
}

.newsletter__inner .input-single input::placeholder {
    color: #F5F2EE;
    font-weight: 400;
}

.newsletter__inner .btn-secondary .btn-animated-text {
    padding-block: 20px 22px;
}

/* ==== manufacturing cta styles start ==== */
.manufacturing-cta {
    background-color: #481800;
    overflow: hidden;
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.manufacturing-cta::before {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: -1;
    background: rgba(72, 24, 0, 0.68);
}

.manufacturing-cta__bg {
    position: absolute;
    inset: 0px;
    z-index: -2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.manufacturing-cta__content {
    max-width: 640px;
}

.manufacturing-cta__content h2 {
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 52px;
    font-weight: 300;
    letter-spacing: 0px;
}

.manufacturing-cta__content p {
    font-size: 15px;
    line-height: 22px;
}

.manufacturing-cta__action {
    display: flex;
    justify-content: flex-end;
}

.manufacturing-cta__action .btn-secondary .btn-animated-text {
    padding: 17px 34px 19px;
    font-size: 13px;
}

@media only screen and (max-width: 991px) {
    .manufacturing-cta__action {
        justify-content: flex-start;
    }

    .manufacturing-cta__content h2 {
        font-size: 34px;
        line-height: 44px;
    }
}

@media only screen and (max-width: 575px) {
    .manufacturing-cta__content h2 {
        font-size: 28px;
        line-height: 36px;
    }
}

/* ==== manufacturing cta styles end ==== */

/* ==== home video section styles start ==== */
.home-video {
    overflow: hidden;
}

.home-video__intro {
    max-width: 760px;
}

.home-video__intro h2 {
    color: var(--template-color);
}

.home-video__text {
    max-width: 520px;
    margin-inline-start: auto;
}

.home-video__frame {
    background: var(--secondary-color);
    overflow: hidden;
    position: relative;
}

.home-video__frame video {
    aspect-ratio: 16 / 9;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

@media only screen and (max-width: 991px) {
    .home-video__text {
        margin-inline-start: 0;
    }
}

@media only screen and (max-width: 575px) {
    .home-video__frame video {
        aspect-ratio: 4 / 5;
    }
}

/* ==== home video section styles end ==== */

.footer {
    overflow: hidden;
}

.footer .line {
    position: absolute;
}

/* ==== 
 --------- (4.03) footer styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.01) overview styles start ---------
 ==== */

.overview {
    border-block-start: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
    background-color: var(--template-bg);
    overflow: hidden;
}

.overview .container-fluid {
    padding-inline: 0px;
}

.overview__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: column;
    padding-block: 40px;
}

@media only screen and (min-width: 1200px) {
    .overview__inner {
        flex-direction: row;
        padding-block: 0px;
    }
}

.overview__single {
    text-align: center;
    padding: 14px 12px 15px;
}

@media only screen and (min-width: 1200px) {
    .overview__single {
        padding: 10px 6px 33px;
    }
}

@media only screen and (min-width: 1400px) {
    .overview__single {
        padding: 10px 6px 30px;
    }
}

.overview__single strong {
    font-family: var(--heading-font);
    font-style: italic;
    font-weight: 400;
}

.overview__single p {
    position: relative;
    display: inline-block;
    padding-inline-start: 12px;
}

.overview__single p::before {
    content: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 0px;
    width: 6px;
    height: 6px;
    background-color: #C08860;
    border-radius: 50%;
}

@media only screen and (min-width: 1400px) {
    .overview__single p::before {
        content: "";
    }
}

.overview__single p a:hover {
    color: var(--primary-color);
}

.overview__single .social-icons a {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview__single-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    row-gap: 0px;
    flex-wrap: wrap;
    width: 100%;
}

@media only screen and (min-width: 1200px) {
    .overview__single-wrapper {
        flex-wrap: nowrap;
    }
}

@media only screen and (min-width: 1200px) {
    .overview__single-wrapper .overview__single {
        flex-grow: 1;
        width: 100%;
    }
}

.overview__single-wrapper .overview__single p {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media only screen and (min-width: 1400px) {
    .overview__single-wrapper .overview__single p {
        flex-direction: row;
    }
}

.overview__single-cta {
    padding: 0px;
    position: relative;
    z-index: 1;
}

.overview__single-cta::after {
    content: "";
    position: absolute;
    inset-inline-start: 100%;
    inset-block-end: 0px;
    height: 20px;
    width: 100vw;
    background-color: #C08860;
    z-index: 1;
    display: none;
}

@media only screen and (min-width: 1200px) {
    .overview__single-cta::after {
        display: block;
    }
}

.overview__single-cta a {
    width: 100%;
    background-color: var(--template-color);
    color: var(--template-bg);
    justify-content: center;
    padding: 12px;
    text-transform: uppercase;
    gap: 14px;
}

@media only screen and (min-width: 1200px) {
    .overview__single-cta a {
        padding: 32px 12px 33px;
    }
}

@media only screen and (min-width: 1400px) {
    .overview__single-cta a {
        padding: 22px 12px 23px;
    }
}

.overview__single-cta a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.overview__single-cta a i {
    font-size: 24px;
}

@media only screen and (min-width: 1200px) {
    .overview__single-cta a i {
        font-size: 36px;
    }
}

.social-wrapper {
    padding: 0px 12px;
}

@media only screen and (min-width: 1200px) {
    .social-wrapper {
        border-inline-start: 1px solid var(--border-color);
        padding: 23px 6px 43px;
    }
}

@media only screen and (min-width: 1400px) {
    .social-wrapper {
        padding: 10px 6px 30px;
    }
}

.social-icons {
    justify-content: center;
    gap: 6px;
}

.social-icons .divide {
    width: 4px;
    height: 4px;
    background-color: var(--border-color);
    border-radius: 5px;
    min-width: 4px;
}

.social-icons a {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--template-color);
}

.social-icons a:hover {
    background-color: var(--template-color);
    color: var(--template-bg);
    border: 1px solid var(--border-color);
}

.overview__single-cta,
.social-wrapper {
    min-width: 280px;
}

.overview-two {
    position: relative;
    z-index: 1;
    overflow-x: clip;
}

.overview-two .container-fluid {
    padding-inline: 0px;
}

.overview-two .overview-two__inner {
    position: relative;
}

.overview-two .overview-two__inner img {
    min-height: 400px;
    width: 100%;
}

@media only screen and (min-width: 1200px) {
    .overview-two .overview-two__inner img {
        min-height: 850px;
    }
}

.overview-two__single-wrapper {
    position: absolute;
    bottom: 0px;
    inset-inline-start: 5%;
    width: 95%;
    padding-inline: 12px;
}

.overview-two__single {
    background-color: #481800;
    width: 100%;
    max-width: 713px;
    clip-path: polygon(0% 0%, 93% 0%, 100% 25%, 100% 100%, 0% 100%, 0% 0%);
    overflow: hidden;
}

.overview-two__single::after {
    content: "";
    position: absolute;
    inset-inline-start: 12px;
    inset-block-start: 45px;
    height: 125px;
    width: 20px;
    background-color: #C08860;
}

.overview-two__single .overview-two__right {
    position: relative;
}

.overview-two__single .overview-two__right::after {
    content: "";
    position: absolute;
    inset-inline-start: -40px;
    top: 50%;
    transform: translateY(-50%);
    height: 400px;
    width: 1px;
    background-color: rgba(245, 242, 238, 0.062745098);
}

.overview-two__single sup {
    font-size: 1em;
    top: -0.1em;
}

.overview-two__single .overview-cta__left ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.overview-two__single .overview-cta__left ul a {
    position: relative;
}

.overview-two__single .overview-cta__left ul a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1.5px;
    background-color: var(--white);
    transition: var(--transition);
}

.overview-two__single .overview-cta__left li,
.overview-two__single .overview-cta__left a {
    font-style: italic;
    color: rgba(245, 242, 238, 0.5019607843);
}

.overview-two__single .overview-cta__left a:hover {
    color: #ffffff;
}

.overview-two__single .overview-cta__left a:hover::before {
    width: 100%;
}

.overview-two__cta {
    padding: 20px 40px;
    border-top: 1px solid rgba(245, 242, 238, 0.062745098);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

@media only screen and (min-width: 576px) {
    .overview-two__cta {
        padding: 20px 35px 20px 60px;
    }
}

.overview-two__wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 20px 0px 40px;
}

@media only screen and (min-width: 576px) {
    .overview-two__wrapper {
        padding: 30px 35px 0px 60px;
    }
}

.overview-two__wrapper .overview-two__left {
    max-width: 360px;
}

.overview-cta__right a {
    font-weight: 600;
    color: #ffffff;
}

.overview-cta__right a:hover {
    color: var(--primary-color);
}

.overview-three {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.overview-three__tab-btns {
    position: absolute;
    top: 140px;
    inset-inline: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 4;
}

.overview-three-tab-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.overview-three-tab-btn:hover .tab-ic {
    background-color: #F5F2EE;
}

.overview-three-tab-btn:hover .tab-ic img {
    filter: brightness(0) saturate(100%) invert(60%) sepia(55%) saturate(448%) hue-rotate(351deg) brightness(83%) contrast(80%);
}

.overview-three-tab-btn:hover .tab-ic .ph-caret-down {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) translateX(-50%);
}

.overview-three-tab-btn:hover .text-xxl {
    color: #F5F2EE;
}

.overview-three-tab-btn .tab-ic {
    width: 90px;
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #F5F2EE;
    transition: var(--transition);
}

.overview-three-tab-btn .tab-ic img {
    filter: brightness(0) saturate(100%) invert(85%) sepia(3%) saturate(271%) hue-rotate(2deg) brightness(103%) contrast(90%);
    transition: filter 0.2s ease-in;
}

.overview-three-tab-btn .tab-ic .ph-caret-down {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateY(-20px) translateX(-50%);
    font-size: 20px;
    color: #F5F2EE;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.overview-three-tab-btn .text-xxl {
    color: rgba(245, 242, 238, 0.5176470588);
    transition: var(--transition);
}

.overview-three-tab-btn.active .tab-ic {
    background-color: #F5F2EE;
}

.overview-three-tab-btn.active .tab-ic img {
    filter: brightness(0) saturate(100%) invert(60%) sepia(55%) saturate(448%) hue-rotate(351deg) brightness(83%) contrast(80%);
}

.overview-three-tab-btn.active .tab-ic .ph-caret-down {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) translateX(-50%);
}

.overview-three-tab-btn.active .text-xxl {
    color: #F5F2EE;
}

.overview-three__thumb {
    position: relative;
    z-index: 1;
}

.overview-three__thumb::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, #C08860 0%, rgba(192, 136, 96, 0.3764705882) 100%);
}

.overview-three__thumb img {
    width: 100%;
    min-height: 1100px;
}

.overview-three__thumb-header {
    position: absolute;
    top: 380px;
    z-index: 3;
    left: 0%;
    transform: translateX(0%);
    width: max-content;
}

.overview-three__thumb-header .title-lg {
    color: #F5F2EE;
    font-style: italic;
}

.overview-three__list {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 5%;
    z-index: 3;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.overview-three__list-single {
    position: absolute;
}

@media only screen and (max-width: 991px) {
    .overview-three__list-single:nth-of-type(1) {
        inset-inline-start: 16%;
    }
}

.overview-three__list-single:nth-of-type(2) {
    inset-inline-start: 20%;
    inset-block-end: 20%;
}

.overview-three__list-single:nth-of-type(3) {
    inset-inline-start: 40%;
    inset-block-end: 40%;
}

.overview-three__list-single:nth-of-type(4) {
    inset-inline-start: 60%;
    inset-block-end: 20%;
}

.overview-three__list-single:nth-of-type(5) {
    inset-inline-start: 70%;
    inset-block-end: 40%;
}

@media only screen and (min-width: 1600px) {
    .overview-three__list-single:nth-of-type(5) {
        inset-inline-start: 80%;
    }
}

.overview-three__list-single .overview-three__list-single-number:hover+.overview-three__list-single-content {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(-50%) translateX(-100px);
}

@media only screen and (min-width: 992px) {
    .overview-three__list-single .overview-three__list-single-number:hover+.overview-three__list-single-content {
        transform: translateY(-50%) translateX(0px);
    }
}

.overview-three__list-single:hover .overview-three__list-single-number::before {
    width: 140px;
    opacity: 1;
    visibility: visible;
}

.overview-three__list-single:hover .overview-three__list-single-number::after {
    left: calc(100% + 135px);
    opacity: 1;
    visibility: visible;
}

.overview-three__list-single-number {
    position: relative;
    z-index: 4;
}

.overview-three__list-single-number::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 0px;
    height: 1px;
    background-color: white;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media only screen and (max-width: 991px) {
    .overview-three__list-single-number::before {
        display: none;
    }
}

.overview-three__list-single-number::after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    left: 0px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media only screen and (max-width: 991px) {
    .overview-three__list-single-number::after {
        display: none;
    }
}

.overview-three__list-single-number span {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(245, 242, 238, 0.2705882353);
    border: 1px solid #F5F2EE;
    border-radius: 50%;
    transition: var(--transition);
    color: #413838;
    cursor: pointer;
    backdrop-filter: blur(20px);
}

.overview-three__list-single-number span:hover {
    color: var(--primary-color);
    background-color: #F5F2EE;
}

.overview-three__list-single-content {
    padding: 24px;
    background-color: var(--primary-color);
    min-width: 200px;
    min-height: 200px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-80px);
    left: 25px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media only screen and (min-width: 992px) {
    .overview-three__list-single-content {
        transform: translateY(-50%) translateX(50px);
    }
}

.overview-three__list-single-content p {
    max-width: 120px;
    color: rgba(252, 247, 242, 0.7450980392);
}

.overview-three__list-single-content .sr {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: -1;
}

/* ==== 
 --------- (5.01) overview styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.02) video styles start ---------
 ==== */

.video-container {
    position: relative;
}

.video-container .container-fluid {
    padding-inline: 0px;
}

.video-container__inner {
    position: relative;
}

.video-container__inner img {
    min-height: 560px;
    width: 100%;
}

.video-cta-wrapper {
    position: absolute;
    z-index: 1;
    inset-inline-end: 0px;
    inset-block-end: 0px;
    width: calc(100% - 12px);
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

@media only screen and (min-width: 768px) {
    .video-cta-wrapper {
        justify-content: flex-end;
        flex-direction: row;
        max-width: 600px;
    }
}

.discover {
    padding: 30px 40px;
    text-align: center;
    background-color: rgba(245, 242, 238, 0.0784313725);
    border: 1px solid rgba(245, 242, 238, 0.0784313725);
    backdrop-filter: blur(7px);
}

@media only screen and (min-width: 768px) {
    .discover {
        max-width: 100px;
        padding: 0px;
    }
}

.discover p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
}

@media only screen and (min-width: 768px) {
    .discover p {
        transform: rotateZ(90deg) translateY(75px) translateX(65%);
        min-width: max-content;
        justify-content: flex-start;
    }
}

.discover p span {
    width: 60px;
    height: 1px;
    background-color: rgba(245, 242, 238, 0.4588235294);
    display: none;
}

@media only screen and (min-width: 425px) {
    .discover p span {
        display: block;
    }
}

.video__button-wrapper {
    width: 100%;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #481800;
    overflow: hidden;
    padding-inline: 20px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) {
    .video__button-wrapper {
        width: 400px;
        min-width: 400px;
    }
}

.video__button-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 0px;
    width: 4px;
    height: 120px;
    background-color: var(--white);
}

.video__button-wrapper img {
    position: absolute;
    inset-inline-end: 0px;
    inset-block-end: 0px;
    z-index: -1;
    min-height: auto;
}

.video__button-wrapper a {
    gap: 48px;
    flex-direction: column;
}

@media only screen and (min-width: 576px) {
    .video__button-wrapper a {
        flex-direction: row;
    }
}

.video__button-wrapper a:hover .video-icon {
    background-color: var(--primary-color);
}

.video__button-wrapper a:hover span {
    color: var(--primary-color);
}

.video__button-wrapper .video-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #C08860;
    border-radius: 50%;
    animation: ripple 1s linear infinite;
}

.video__button-wrapper .video-icon:hover {
    background-color: var(--primary-color);
}

.video__button-wrapper .video-icon i {
    color: var(--white);
    font-size: 20px;
}

.video__button-wrapper span {
    transition: var(--transition);
    color: var(--white);
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 1, 1, 0.3), 0 0 0 8px rgba(242, 1, 1, 0.3), 0 0 0 16px rgba(242, 1, 1, 0.3), 0 0 0 32px rgba(242, 1, 1, 0.3);
    }
    100% {
        box-shadow: 0 0 0 8px rgba(242, 1, 1, 0.3), 0 0 0 16px rgba(242, 1, 1, 0.3), 0 0 0 32px rgba(242, 1, 1, 0.3), 0 0 0 40px rgba(242, 1, 1, 0);
    }
}

/* ==== 
 --------- (5.02) video styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.03) about styles start ---------
 ==== */

.about {
    overflow-x: clip;
    position: relative;
    z-index: 1;
}

.about__intro {
    margin-bottom: 30px;
}

@media only screen and (min-width: 1400px) {
    .about__intro {
        margin-bottom: 0px;
        position: absolute;
        inset-inline-start: 80px;
        z-index: -1;
        margin-top: 6px;
    }
}

@media (min-width: 1400px) and (max-width: 1700px) {
    .about__intro {
        inset-inline-start: 80px;
    }
}

.about__intro p {
    position: relative;
    display: inline-block;
    padding-inline-start: 12px;
}

.about__intro p::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 0px;
    width: 6px;
    height: 6px;
    background-color: #C08860;
    border-radius: 50%;
}

@media (min-width: 1400px) and (max-width: 1500px) {
    .about__content {
        max-width: 1150px;
        margin-inline-start: auto;
    }
}

.about__content-group-sm {
    max-width: 320px;
}

.about__content-group-lg {
    max-width: 340px;
    margin-inline-start: auto;
}

.about__content-group-lg a span {
    position: relative;
    font-weight: 500;
}

.about__content-group-lg a span::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    inset-block-end: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--txt-light);
    transition: var(--transition);
}

.about__content-group-lg a i {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: -3px;
}

.about__content-group-lg a:hover {
    color: var(--primary-color);
}

.about__content-group-lg a:hover span::before {
    width: 100%;
    background-color: var(--primary-color);
}

.about-overview {
    position: relative;
    z-index: 1;
}

.about-overview .btn-animated-text {
    padding-block: 15px;
    padding-inline: 24px;
}

.about-overview__thumb {
    position: relative;
    z-index: -1;
}

.about-overview__thumb img {
    width: 100%;
    min-height: 300px;
}

@media only screen and (min-width: 1200px) {
    .about-overview__thumb img {
        min-height: 800px;
    }
}

@media only screen and (min-width: 1600px) {
    .about-overview__thumb img {
        height: 960px;
    }
}

@media only screen and (min-width: 1200px) {
    .about-counter__inner {
        height: 590px;
        overflow: hidden;
    }
}

@media only screen and (min-width: 1600px) {
    .about-counter__inner {
        height: 620px;
    }
}

@media only screen and (min-width: 1900px) {
    .about-counter__inner {
        height: 742px;
    }
}

.about-counter__single {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-block: 30px 40px;
    border-top: 1.5px dashed var(--txt-light);
    background-color: var(--template-bg);
    z-index: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-counter__single:nth-last-of-type(1) {
    border-bottom: 1.5px dashed var(--txt-light);
}

.about-counter__single:nth-of-type(5) {
    padding-top: 60px;
    padding-bottom: 0px;
}

@media only screen and (min-width: 576px) {
    .about-counter__single {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        text-align: start;
    }
}

@media only screen and (min-width: 1200px) {
    .about-counter__single {
        transform: translateY(300px);
        opacity: 0;
    }
}

.about-counter__single:hover .icon img {
    filter: brightness(0) saturate(100%) invert(44%) sepia(87%) saturate(4599%) hue-rotate(341deg) brightness(118%) contrast(102%);
}

.about-counter__single .content {
    flex-grow: 1;
}

.about-counter__single .icon {
    min-width: 100px;
}

@media only screen and (min-width: 1200px) {
    .about-counter__single .icon {
        min-width: 160px;
    }
}

.about-counter__single .icon img {
    filter: brightness(0) saturate(100%) invert(2%) sepia(21%) saturate(4497%) hue-rotate(18deg) brightness(96%) contrast(99%);
    transition: filter 0.3s ease;
}

.about-counter__single h2 {
    line-height: 1;
    margin-bottom: -0.25em;
}

.about-counter__single .title-xl-cs {
    font-size: clamp(30px, 9vw, 70px);
}

@media only screen and (min-width: 768px) {
    .about-counter__single .title-xl-cs {
        font-size: 100px;
    }
}

@media only screen and (min-width: 1600px) {
    .about-counter__single .title-xl-cs {
        font-size: 150px;
    }
}

@media only screen and (min-width: 1900px) {
    .about-counter__single .title-xl-cs {
        font-size: 190px;
    }
}

.about-counter__single sup {
    top: -1.1em;
    font-weight: 300;
    font-size: 0.4em;
    margin-inline-start: -0.4em;
}

.about-counter__single .tag span {
    padding: 8px 16px;
    border: 1px solid var(--txt-light);
    color: var(--txt-light);
    border-radius: 40px;
}

.about-counter__single .odometer-inside {
    margin-bottom: -0.5em;
}

.about-counter__single .odometer-digit {
    padding-inline-end: 0.05em;
}

.about-counter__single .odometer-formatting-mark {
    display: none;
}

.about-two {
    background-color: var(--black-2);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.about-two .thumb-lg img {
    width: 100%;
}

.about-two .thumb-lg-content {
    max-width: 400px;
    margin-inline: auto;
}

@media only screen and (max-width: 991px) {
    .about-two .thumb-lg-content {
        margin-bottom: 40px;
        margin-top: 40px !important;
    }
}

.about-two .about-two__thumb-sm-wrapper img {
    width: 100%;
}

.about-two .thumb-sm-two {
    max-width: 650px;
    margin-inline: auto;
}

.about-two .lines-cr {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.about-two .lines-cr .line-cr {
    position: absolute;
    width: 1px;
    height: calc(100% + 200px);
    min-height: 100vh;
    top: 50%;
    transform: translateY(-50%);
    background: #F5F2EE;
    opacity: 7%;
    z-index: 1;
}

.about-two .lines-cr .line-cr:nth-of-type(1) {
    inset-inline-start: calc(12% - 3px);
}

.about-two .lines-cr .line-cr:nth-of-type(4) {
    inset-inline-start: calc(7% - 3px);
}

.about-two .lines-cr .line-cr:nth-of-type(2) {
    left: 45%;
    transform: translateX(-45%) translateY(-50%);
}

.about-two .lines-cr .line-cr:nth-of-type(5) {
    left: 55%;
    transform: translateX(-55%) translateY(-50%);
}

.about-two .lines-cr .line-cr:nth-of-type(3) {
    inset-inline-end: calc(12% - 3px);
}

.about-two .lines-cr .line-cr:nth-of-type(6) {
    inset-inline-end: calc(7% - 3px);
}

.about-two__intro {
    max-width: 440px;
    margin-inline-start: auto;
}

@media only screen and (max-width: 991px) {
    .about-two__intro {
        margin-bottom: 40px;
    }
}

.about-three .about-three__header {
    max-width: 800px;
    text-align: center;
    margin-inline: auto;
}

.about-three .about-three__header .line {
    width: 80px;
    height: 1px;
    background-color: #481800;
    margin-bottom: 1rem;
    display: none;
}

@media only screen and (min-width: 576px) {
    .about-three .about-three__header .line {
        display: inline-block;
    }
}

.about-three .about-three__header .title-lg-sm {
    line-height: 1.2;
}

@media only screen and (max-width: 575px) {
    .about-three .about-three__header .title-lg-sm {
        font-size: 18px;
        line-height: 30px;
    }
}

.about-three .about-three__header p {
    max-width: 430px;
    margin-inline: auto;
    text-align: center !important;
}

.about-three .space {
    width: 30px;
}

.about-three .space-lg {
    width: 50px;
}

.about-three .about-three__contact-single p:nth-of-type(2) {
    margin-top: 0px;
}

.about-three__contact {
    max-width: 460px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-three__contact a:hover {
    color: var(--primary-color);
}

.about-three__thumb img {
    width: 100%;
}

.about-three__thumb .parallax-image-wrap,
.about-three__thumb .parallax-image-inner,
.about-three__thumb img {
    min-height: 400px;
}

.about-three__thumb .parallax-image-wrap,
.about-three__thumb .parallax-image-inner {
    width: 100%;
    height: 100%;
}

.about-three__content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    justify-content: space-between;
}

@media only screen and (min-width: 1200px) {
    .about-three__content-wrapper {
        margin-inline-start: 100px;
    }
}

.about-three-sm-thumb {
    max-width: 280px;
    margin-inline-start: auto;
}

.about-three-sm-thumb img {
    width: auto;
}

.about-three__content {
    max-width: 400px;
}

.about-three__content a {
    font-size: 60px;
    color: var(--template-color);
}

.about-three__content a:hover {
    color: var(--primary-color);
}

.about-four__thumb {
    height: 600px;
    border-radius: 10px;
}

.about-four__thumb img {
    width: 100%;
    min-height: 400px;
    height: 600px;
}

.about-four__content {
    max-width: 1200px;
    margin-inline: auto;
    text-align: center;
}

.about-four__content .divide-cs {
    width: 1px;
    height: 100px;
    background-color: #D2CEC8;
    margin-block: 40px;
}

.about-four__content p {
    max-width: 730px;
    margin-inline: auto;
}

.about-four__content .btn-primary .btn-animated-text {
    padding-block: 16px 18px;
    padding-inline: 32px;
}

/* ==== 
 --------- (5.03) about styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.04) work styles start ---------
 ==== */

.work {
    position: relative;
    z-index: 1;
    overflow: clip;
}

@media only screen and (max-width: 575px) {
    .work .mt-100 {
        margin-top: 0px;
    }
}

.work-bg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: #481800;
    z-index: -1;
}

.fixed-text {
    position: absolute;
    font-size: clamp(200px, 30vw, 590px);
    color: rgba(79, 75, 71, 0.2039215686);
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    inset-block-start: 0.9em;
}

.work__header {
    margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
    .work__header {
        position: relative;
        top: 160px;
        margin-bottom: 0px;
        margin-top: -45px;
    }
}

@media only screen and (min-width: 992px) {
    .work__header {
        margin-top: -55px;
    }
}

@media only screen and (min-width: 1200px) {
    .work__header {
        margin-top: -90px;
    }
}

@media only screen and (max-width: 991px) {
    .work-dr {
        margin-inline-start: auto;
    }
}

@media only screen and (max-width: 575px) {
    .work-mt {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .work__single {
        max-width: 320px !important;
        width: 260px;
    }
    .work__single .thumb {
        width: 100%;
    }
    .work__single .thumb img {
        width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .work__single {
        width: 100%;
        max-width: 100% !important;
    }
}

.work__single .thumb {
    position: relative;
}

.work__single .thumb img {
    width: 100%;
    min-height: 200px;
}

.work__single .arrow {
    position: absolute;
    inset-inline-end: 30px;
    inset-block-start: 30px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: var(--transition);
    z-index: 2;
}

.work__single .arrow a img {
    min-height: auto;
}

.work__single .content {
    display: flex;
    gap: 40px;
    max-width: 260px;
}

@media only screen and (min-width: 1400px) {
    .work__single .content {
        gap: 60px;
        max-width: 300px;
    }
}

.work__single span {
    transition: var(--transition);
}

.work__single .text-lg {
    color: #F5F2EE;
}

.work__single .text-xxl {
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    transition: background-size 0.5s;
    display: inline;
    background-position: 100% 90%;
    background-size: 0 0.06em;
}

.work__single a {
    color: #F5F2EE;
    display: inline;
}

.work__single:hover .arrow {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.work__single:hover .text-lg {
    color: #C08860;
}

.work__single:hover .text-xxl {
    background-position: 0 90%;
    background-size: 100% 0.06em;
}

.work__single:hover a {
    color: var(--white);
}

.work__variant-one {
    display: flex;
    gap: 60px;
    row-gap: 30px;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
}

@media only screen and (max-width: 575px) {
    .work__variant-one {
        margin-top: 40px;
    }
}

@media only screen and (min-width: 576px) {
    .work__variant-one {
        max-width: 320px;
        margin-inline-start: auto;
        position: relative;
        top: -120px;
        margin-bottom: -120px;
    }
    .work__variant-one .thumb {
        max-width: 400px;
    }
}

@media only screen and (min-width: 992px) {
    .work__variant-one {
        top: -200px;
        margin-bottom: -200px;
        max-width: 400px;
    }
}

@media only screen and (min-width: 1200px) {
    .work__variant-one {
        align-items: flex-start;
        justify-content: flex-end;
        flex-direction: row;
        max-width: 1020px;
        top: -250px;
        margin-bottom: -250px;
    }
}

@media only screen and (min-width: 1700px) {
    .work__variant-one {
        top: -400px;
        margin-bottom: -400px;
    }
}

@media only screen and (min-width: 1600px) {
    .work__variant-one .thumb {
        max-width: 100%;
    }
}

.work__variant-three {
    max-width: 560px;
    margin-inline-start: auto;
}

.work__variant-four {
    top: 0px;
    margin-bottom: 0px;
}

.right-auto {
    max-width: 700px;
    margin-inline-start: unset;
}

.work__cta {
    text-align: center;
    margin-top: 60px;
}

@media only screen and (min-width: 1200px) {
    .work__cta {
        position: relative;
        top: -50px;
        margin-bottom: -50px;
        max-width: 650px;
        margin-inline-start: auto;
        text-align: start;
        margin-top: 0px;
    }
}

.work-two .work-two__thumbs {
    height: clamp(400px, 30vw, 450px);
    position: relative;
}

@media only screen and (min-width: 1600px) {
    .work-two .work-two__thumbs {
        height: clamp(400px, 40vw, 650px);
    }
}

@media only screen and (max-width: 1199px) {
    .work-two .work-two__thumbs {
        height: 560px;
    }
}

@media only screen and (max-width: 575px) {
    .work-two .work-two__thumbs {
        height: 425px;
        width: 100%;
    }
}

.work-two .work-two__thumb-single {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

@media only screen and (min-width: 576px) {
    .work-two__cta {
        text-align: end;
    }
}

.work-two__cta a span {
    position: relative;
}

.work-two__cta a span::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    inset-block-end: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--txt-light);
    transition: var(--transition);
}

.work-two__cta a i {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: -3px;
}

.work-two__cta a:hover {
    color: var(--primary-color);
}

.work-two__cta a:hover span::before {
    width: 100%;
    background-color: var(--primary-color);
}

.work-two__inner {
    padding-block: 12px;
    border-block: 1px solid #E9E6E0;
}

.work-two__lists {
    height: 100%;
    padding-block-start: 40px;
}

@media only screen and (min-width: 576px) {
    .work-two__lists {
        padding-inline-start: 12px;
    }
}

@media only screen and (min-width: 992px) {
    .work-two__lists {
        padding-block-start: 70px;
    }
}

@media only screen and (min-width: 1200px) {
    .work-two__lists {
        padding-inline-start: 0px;
        padding-block-start: 0px;
    }
}

.work-two__lists ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.work-two__lists li {
    margin-bottom: 30px;
    max-width: max-content;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.work-two__lists li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.work-two__lists li:hover {
    padding-inline-start: 40px;
}

.work-two__lists li:hover .serial {
    transform: translateX(0px);
}

.work-two__lists li:hover .content {
    color: var(--template-color);
}

.work-two__lists li:hover .content::before {
    width: 100%;
}

.work-two__lists li span {
    transition: var(--transition);
}

.work-two__lists li .content {
    color: #98918F;
    position: relative;
}

.work-two__lists li .content::before {
    content: "";
    position: absolute;
    inset-inline: 0px;
    inset-block-end: 0px;
    width: 0%;
    height: 100%;
    background-color: var(--template-color);
    height: 1px;
    transition: var(--transition);
}

.work-two__lists li .serial {
    font-size: 14px;
    font-weight: 400;
    top: 0px;
    inset-inline-start: 0px;
    font-family: var(--template-font);
    letter-spacing: 1px;
    margin-inline-end: 8px;
    transform: translateX(-100%);
    position: absolute;
}

.work-two__lists .active {
    padding-inline-start: 40px;
}

.work-two__lists .active .serial {
    transform: translateX(0px);
}

.work-two__lists .active .content {
    color: var(--template-color);
}

.work-two__lists .active .content::before {
    width: 100%;
}

.work-two__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    row-gap: 40px;
    flex-direction: column;
}

@media only screen and (min-width: 576px) {
    .work-two__content {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

@media only screen and (min-width: 768px) {
    .work-two__content {
        gap: 60px;
    }
}

.work-two__thumbs {
    flex-grow: 1;
    position: relative;
}

@media only screen and (min-width: 576px) {
    .work-two__thumbs {
        padding-inline: 12px;
    }
}

.work-two__thumbs::before {
    content: "";
    position: absolute;
    inset-block-start: -100px;
    inset-inline-start: 0px;
    width: 1px;
    height: 360px;
    background-color: #E9E6E0;
}

.work-two__thumbs::after {
    content: "";
    position: absolute;
    inset-block-end: -40px;
    inset-inline-end: 0px;
    width: 1px;
    height: 360px;
    background-color: #E9E6E0;
}

.work-two__thumb-single {
    max-width: 630px;
    margin-inline: auto;
}

.work-two__thumb-single .parallax-image-inner,
.work-two__thumb-single .parallax-image-wrap {
    width: 100%;
    height: 100%;
}

.work-two__thumb-single img {
    width: 100%;
    min-height: 400px;
    height: 100%;
}

.work-two__text {
    position: relative;
    height: 475px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

@media only screen and (min-width: 576px) {
    .work-two__text {
        max-width: 250px;
    }
}

@media only screen and (min-width: 768px) {
    .work-two__text {
        max-width: 280px;
    }
}

@media only screen and (min-width: 1400px) {
    .work-two__text {
        max-width: 400px;
    }
}

@media only screen and (min-width: 1600px) {
    .work-two__text {
        min-width: 400px;
        height: 216px;
    }
}

@media only screen and (max-width: 1199px) {
    .work-two__text {
        height: 475px;
        min-width: 260px;
    }
}

@media only screen and (max-width: 575px) {
    .work-two__text {
        height: 260px;
        min-width: 300px;
    }
}

.work-two__text-single {
    position: absolute;
    inset-inline: 0px;
    inset-block-end: 0px;
    width: 100%;
}

@media only screen and (min-width: 576px) {
    .work-two__text-single p:nth-of-type(2) {
        text-indent: 6em;
        text-align: justify;
    }
}

.work-three .work-bg {
    background-color: var(--template-bg);
}

.work-three .work__single .text-lg {
    color: var(--template-color);
}

.work-three .work__single a {
    color: var(--template-color);
}

/* ==== 
 --------- (5.04) work styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.05) service styles start ---------
 ==== */

.service-marquee {
    overflow-x: clip;
    direction: ltr;
}

.service-marquee .service__marquee-inner {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 0px;
    direction: ltr;
}

.service-marquee .service__marquee-inner:hover .service__slider {
    animation-play-state: paused;
}

.service-marquee .service__slider {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0px;
    direction: ltr;
    min-width: max-content;
    justify-content: space-between;
    animation: scroll 15s linear infinite;
}

.service-marquee .service__single {
    flex: 0 0 auto;
    padding-inline: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-marquee .service__single:hover h2 {
    color: var(--template-color);
}

@media only screen and (min-width: 992px) {
    .service-marquee .service__single {
        padding-inline: 30px;
        gap: 60px;
    }
}

.service-marquee h2 {
    letter-spacing: 0px;
    color: #B8B3AE;
    transition: var(--transition);
}

.service__thumb {
    position: relative;
}

@media only screen and (min-width: 1200px) {
    .service__thumb {
        height: 160px;
    }
}

@media only screen and (min-width: 1400px) {
    .service__thumb {
        height: 190px;
    }
}

@media only screen and (min-width: 1600px) {
    .service__thumb {
        height: 260px;
    }
}

.service__thumb-single {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 16px;
}

.service__thumb-single img {
    border-radius: 145px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service__thumb-single.active {
    display: block;
}

.service__intro {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service__intro a {
    color: var(--txt-light);
    position: relative;
    margin-top: 10px;
    font-weight: 500;
}

.service__intro a i {
    font-size: 21px;
}

.service__intro a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: var(--txt-light);
    transition: var(--transition);
}

.service__intro a:hover {
    color: var(--template-color);
}

.service__intro a:hover::before {
    width: 0%;
}

.service__intro-right p {
    position: relative;
    display: inline-block;
    padding-inline-start: 12px;
    color: var(--txt-light);
}

.service__intro-right p::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 0px;
    width: 6px;
    height: 6px;
    background-color: var(--txt-light);
    border-radius: 50%;
}

.service__list-single {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-direction: column;
    margin-top: 8px;
    padding-bottom: 12px;
    position: relative;
    justify-content: space-between;
    margin-bottom: 37px;
}

@media only screen and (min-width: 768px) {
    .service__list-single {
        flex-direction: row;
        align-items: center;
    }
}

.service__list-single:nth-last-of-type(1) {
    margin-bottom: 0px;
}

@media only screen and (min-width: 1200px) {
    .service__list-single .title-lg-sm {
        font-size: 36px;
        line-height: 42px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service__list-single .title-lg-sm {
        font-size: clamp(20px, 1.7vw, 44px) !important;
    }
}

@media only screen and (min-width: 1600px) {
    .service__list-single .title-lg-sm {
        font-size: 44px;
        line-height: 50px;
    }
}

.service__list-single .title-lg-sm a {
    font-weight: 300;
}

.service__list-single .line {
    position: absolute;
    inset-block-end: 0px;
    inset-inline: 0px;
    width: 100%;
    height: 1px;
    background-color: transparent;
}

.service__list-single .line::before {
    content: "";
    position: absolute;
    height: 100%;
    inset-inline: 0px;
    inset-block-start: 0px;
    background-color: var(--template-color);
    width: 0%;
}

.service__list-single:hover .title-lg-sm a {
    color: var(--template-color);
    font-weight: 500;
}

.service__list-single:hover .service__list-single-right p,
.service__list-single:hover .service__list-single-right .service__cta {
    transform: translateX(0px);
    opacity: 1;
}

.service__list-single:hover .line {
    background-color: #B8B3AE;
}

.service__list-single.active .line {
    background-color: #B8B3AE;
}

.service__list-single.active .line::before {
    animation: serviceProgress 10s linear forwards;
}

.service__list-single.active .title-lg-sm a {
    color: var(--template-color);
    font-weight: 500;
}

.service__list-single.active .service__list-single-left .sup-cs {
    transform: translateX(0px);
    opacity: 1;
}

.service__list-single.active .service__list-single-right p,
.service__list-single.active .service__list-single-right .service__cta {
    transform: translateX(0px);
    opacity: 1;
}

.service__list-single-left {
    min-width: max-content;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.service__list-single-left .title-lg-sm a {
    color: #B8B3AE;
    font-weight: 400;
}

.service__list-single-left .title-lg-sm a:hover {
    color: var(--template-color);
}

.service__list-single-left .sup-cs {
    margin-top: -12px;
}

@media only screen and (min-width: 768px) {
    .service__list-single-left .sup-cs {
        opacity: 0;
        transform: translateX(-10px);
        transition: var(--transition);
    }
}

.service__list-single-left .sup-cs a {
    color: var(--txt-light);
}

.service__list-single-left .sup-cs a:hover {
    color: var(--template-color);
}

.service__list-single-right {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: max-content;
}

.service__list-single-right p {
    max-width: 280px;
    color: var(--txt-light);
}

@media only screen and (min-width: 768px) {
    .service__list-single-right p {
        opacity: 0;
        transform: translateX(-10px);
        transition: var(--transition);
    }
}

.service__cta {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-end;
}

@media only screen and (min-width: 768px) {
    .service__cta {
        opacity: 0;
        transform: translateX(-10px);
        transition: var(--transition);
    }
}

.service__cta .tag {
    padding: 2px 14px;
    background-color: #C08860;
    border-radius: 30px;
    letter-spacing: 1px;
    color: var(--white);
    font-weight: 300;
}

.breadcrumb-cs span {
    font-family: var(--heading-font);
}

.breadcrumb-cs span:nth-of-type(1) {
    color: #B8B3AE;
}

.service__inner {
    max-width: 1170px;
    margin-inline-start: auto;
}

.service-two__content-single {
    cursor: pointer;
}

.service-two__content-single:nth-of-type(1) .service-two__right {
    border-top: 1px solid #E3DFDA;
}

.service-two__content-single-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    justify-content: space-between;
}

@media only screen and (min-width: 1200px) {
    .service-two__content-single-wrapper {
        margin-inline-end: 40px;
    }
}

.service-two__content-single-wrapper .service-two__left {
    padding-block-start: 25px;
}

.service-two__content-single-wrapper .service-two__right {
    width: 100%;
    max-width: 80%;
    flex-grow: 1;
    padding-block: 20px;
    border-bottom: 1px solid #E3DFDA;
}

.service-two__content-single-wrapper .cr-number {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition);
}

.service-two__content-single-wrapper a {
    pointer-events: none;
}

.service-two__content-single.active .service-two__single-content {
    grid-template-rows: 1fr;
    padding-top: 30px;
    padding-bottom: 20px;
}

.service-two__content-single.active .service-two__single-intro p {
    color: var(--template-color);
}

.service-two__content-single.active a {
    pointer-events: all;
}

.service-two__content-single.active .service-two__content-single-wrapper .cr-number {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

.service-two__content-single.active i {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}

.service-two__single-intro {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.service-two__single-intro .at-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    flex-grow: 1;
    width: 100%;
}

.service-two__single-intro p {
    transition: var(--transition);
    color: #B8B3AE;
}

.service-two__single-intro i {
    font-size: 30px;
    transform: translateX(-10px);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    margin-top: 4px;
}

@media only screen and (min-width: 1200px) {
    .service-two__single-intro i {
        font-size: 36px;
    }
}

.service-two__single-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 750ms ease, padding 750ms ease;
    padding-top: 0px;
    max-width: 620px;
}

.service-two__single-content p {
    overflow: hidden;
}

.service-two__cta {
    max-width: 80%;
    margin-inline-start: auto;
}

.cvrt {
    text-align: end;
}

.cvrt p {
    position: relative;
    display: inline-block;
    padding-inline-start: 12px;
    color: var(--txt-light);
}

.cvrt p::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 0px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.service-two__thumbs {
    position: relative;
    height: 580px;
}

@media only screen and (min-width: 1200px) {
    .service-two__thumbs {
        height: 780px;
    }
}

.service-two__thumbs img {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.service-two__thumb-single {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.service-two__thumb-single.active {
    position: relative;
}

.service-three {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-three__header .line {
    width: 80px;
    height: 1px;
    background-color: #481800;
    margin-bottom: 1rem;
    display: none;
}

@media only screen and (min-width: 576px) {
    .service-three__header .line {
        display: inline-block;
    }
}

.service-three__single {
    border-bottom: 1px solid rgba(72, 24, 0, 0.0823529412);
}

.service-three__single:hover .service-three__inner {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.service-three__single .title-xl {
    line-height: calc(100% + 20px);
    margin-bottom: -0.25em;
}

.service-three__single.active .service-three__inner {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.t-border {
    border-top: 1px solid rgba(72, 24, 0, 0.0823529412);
}

.service-three__content-wrapper {
    position: relative;
    padding-block: 80px;
}

.service-three__inner {
    position: absolute;
    inset: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    gap: 24px;
    justify-content: space-between;
    transition: var(--transition);
    transform: translateX(30px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    flex-wrap: wrap;
    padding-block: 20px;
}

@media only screen and (min-width: 576px) {
    .service-three__inner {
        flex-wrap: nowrap;
        padding-block: 0px;
    }
}

@media only screen and (min-width: 768px) {
    .service-three__inner {
        gap: 100px;
        row-gap: 24px;
    }
}

.service-three__link p {
    min-width: max-content;
}

.service-three__link a:hover {
    color: var(--primary-color);
}

.service-three__thumbs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex-grow: 1;
}

.service-three__thumb-single {
    line-height: 0px;
}

.service-three__thumb-single img {
    min-height: 110px;
}

.service-three__count p {
    color: #98918F;
    margin-top: 3px;
}

.service-three__cta {
    padding-block-start: 80px;
}

.service-three__cta a span {
    position: relative;
    font-weight: 500;
}

.service-three__cta a span::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    inset-block-end: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--txt-light);
    transition: var(--transition);
}

.service-three__cta a i {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: -3px;
}

.service-three__cta a:hover {
    color: var(--primary-color);
}

.service-three__cta a:hover span::before {
    width: 100%;
    background-color: var(--primary-color);
}

.service-three__cta-content {
    max-width: 360px;
}

@media only screen and (min-width: 768px) {
    .service-three__cta-content {
        max-width: 600px;
        margin-inline-start: auto;
    }
}

.service-three__cta-content .title-xs {
    line-height: calc(100% + 20px);
}

.service-three__cta-content sup {
    color: var(--txt-light);
    font-size: 14px;
    top: -1.1em;
    font-weight: 300;
}

@media only screen and (min-width: 992px) {
    .service-three__cta-content sup {
        top: -1.5em;
    }
}

.service-four {
    background-color: #EEE9E2;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-four__intro {
    max-width: 460px;
    position: relative;
}

@media only screen and (min-width: 576px) {
    .service-four__intro {
        max-width: 570px;
    }
}

@media only screen and (min-width: 768px) {
    .service-four__intro {
        max-width: 780px;
    }
}

.service-four__intro .service-four-sub {
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    .service-four__intro .service-four-sub {
        position: absolute;
        inset-block-start: 0px;
        inset-inline-start: 0px;
    }
}

.service-four__intro .fraunces {
    display: inline;
}

@media only screen and (min-width: 768px) {
    .service-four__intro .title-sm>.split-word:nth-of-type(1) {
        margin-inline-start: 4.2em;
    }
}

.title-animation-color {
    --char-default: #B8B3AE;
    --char-active: #481800;
}

.title-animation-color .split-word {
    display: inline;
    color: var(--char-default);
}

@media only screen and (min-width: 768px) {
    .service-four__cta {
        text-align: end;
    }
}

.service-four__cta .btn-primary .btn-animated-text {
    padding-block: 16px 18px;
    padding-inline: 32px;
}

.service-four__single-wrapper {
    position: relative;
    z-index: 1;
    overflow-x: clip;
    z-index: 1;
    transition: var(--transition);
    margin-bottom: 80px;
}

.service-four__single-wrapper:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.service-four__single-wrapper h2,
.service-four__single-wrapper span,
.service-four__single-wrapper p,
.service-four__single-wrapper li,
.service-four__single-wrapper a,
.service-four__single-wrapper i {
    transition: var(--transition);
}

.service-four__single-wrapper:hover {
    background-color: #481800;
    padding-block: 80px;
}

.service-four__single-wrapper:hover .service-four-thumb {
    opacity: 1;
}

.service-four__single-wrapper:hover h2,
.service-four__single-wrapper:hover span,
.service-four__single-wrapper:hover p,
.service-four__single-wrapper:hover a,
.service-four__single-wrapper:hover i {
    color: #F5F2EE;
}

.service-four__single-wrapper:hover a span::before {
    background-color: #F5F2EE;
}

.service-four__single-wrapper:hover .service-four__single-intro {
    border-block-end-color: transparent;
}

.service-four__single-wrapper:hover .service-four__single-content {
    grid-template-rows: 1fr;
}

.service-four__single-wrapper:hover .service-four__single-cta a {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    pointer-events: all;
    transition-delay: 0.5s;
}

.service-four__single-wrapper:hover .service-four-thumb {
    opacity: 1;
}

.service-four__single-wrapper.active {
    background-color: #481800;
    padding-block: 80px;
}

.service-four__single-wrapper.active h2,
.service-four__single-wrapper.active span,
.service-four__single-wrapper.active p,
.service-four__single-wrapper.active a,
.service-four__single-wrapper.active i {
    color: #F5F2EE;
}

.service-four__single-wrapper.active a span::before {
    background-color: #F5F2EE;
}

.service-four__single-wrapper.active .service-four__single-intro {
    border-block-end-color: transparent;
}

.service-four__single-wrapper.active .service-four__single-content {
    grid-template-rows: 1fr;
}

.service-four__single-wrapper.active .service-four__single-cta a {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    pointer-events: all;
    transition-delay: 0.5s;
}

.service-four__single {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
    position: relative;
    position: relative;
    z-index: 2;
}

@media only screen and (min-width: 576px) {
    .service-four__single {
        flex-direction: row;
        align-items: flex-end;
    }
}

@media only screen and (min-width: 768px) {
    .service-four__single {
        gap: 50px;
    }
}

@media only screen and (min-width: 992px) {
    .service-four__single {
        gap: 100px;
    }
}

@media only screen and (min-width: 1760px) {
    .service-four__single {
        gap: 240px;
    }
}

.service-four__single-intro {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    padding-block-end: 20px;
    border-block-end: 1px solid #D2CEC8;
    transition: var(--transition);
}

@media only screen and (min-width: 768px) {
    .service-four__single-intro {
        padding-block-end: 30px;
    }
}

@media only screen and (min-width: 1200px) {
    .service-four__single-intro {
        padding-block-end: 40px;
    }
}

@media only screen and (min-width: 1400px) {
    .service-four__single-intro {
        padding-block-end: 60px;
    }
}

.service-four__single-right {
    flex-grow: 1;
    max-width: 1300px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

@media only screen and (min-width: 576px) {
    .service-four__single-right {
        gap: 20px;
    }
}

.service-four__single-right .text-lg {
    color: var(--txt-light);
}

.service-four__single-right .service-four-wrap-one {
    padding-block-start: 4px;
}

@media only screen and (min-width: 576px) {
    .service-four__single-right .service-four-wrap-one {
        padding-block-start: 6px;
    }
}

@media only screen and (min-width: 768px) {
    .service-four__single-right .service-four-wrap-one {
        padding-block-start: 12px;
    }
}

@media only screen and (min-width: 992px) {
    .service-four__single-right .service-four-wrap-one {
        padding-block-start: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    .service-four__single-right .service-four-wrap-one {
        padding-block-start: 30px;
    }
}

@media only screen and (min-width: 1400px) {
    .service-four__single-right .service-four-wrap-one {
        padding-block-start: 35px;
    }
}

@media only screen and (min-width: 1600px) {
    .service-four__single-right .service-four-wrap-one {
        padding-block-start: 40px;
    }
}

.service-four__single-right .service-four-wrap-two {
    flex-grow: 1;
    width: 100%;
}

.service-four__single-right h2 {
    display: flex;
    align-items: flex-end;
    margin-bottom: -0.25em;
    width: 100%;
}

.service-four__single-right a {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    color: var(--template-color);
    width: 100%;
}

.service-four__single-right a i {
    color: var(--primary-color);
}

.service-four__single-content {
    max-width: 520px;
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.6s grid-template-rows ease;
}

.service-four__single-content .service-four__single-content-inner {
    overflow: hidden;
}

.service-four__single-content p {
    transition: var(--transition);
}

.service-four__single-content li {
    margin-bottom: 20px;
}

.service-four__single-content li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.service-four__single-content li a {
    width: max-content;
    position: relative;
}

.service-four__single-content li a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    inset-inline: 0px;
    width: 0%;
    height: 1.5px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.service-four__single-content li a:hover {
    color: var(--primary-color);
}

.service-four__single-content li a:hover::before {
    width: 100%;
}

.service-four__single-cta {
    width: max-content;
}

.service-four__single-cta a {
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    pointer-events: none;
    transition-delay: 0s;
}

.service-four__single-cta a span {
    position: relative;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--txt-light);
    transition: var(--transition);
}

.service-four__single-cta a span::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    inset-block-end: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--txt-light);
    transition: var(--transition);
}

.service-four__single-cta a i {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: -3px;
    color: var(--txt-light);
}

.service-four__single-cta a:hover {
    color: var(--primary-color);
}

.service-four__single-cta a:hover span {
    color: var(--primary-color);
}

.service-four__single-cta a:hover span::before {
    width: 100%;
    background-color: var(--primary-color);
}

.service-four__single-cta a:hover i {
    color: var(--primary-color);
}

.service-four-thumb {
    width: 180px;
    height: 220px;
    position: absolute;
    top: -10%;
    inset-inline-end: 80px;
    transform: rotate(10deg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    transition: transform 0.2s ease-out, opacity 0.3s;
    pointer-events: none;
    z-index: -1;
}

@media only screen and (min-width: 992px) {
    .service-four-thumb {
        width: 300px;
        height: 300px;
    }
}

@media only screen and (min-width: 1400px) {
    .service-four-thumb {
        width: 400px;
        height: 460px;
    }
}

.marquee h2 {
    color: var(--template-color);
}

.marquee img {
    pointer-events: none;
}

.marquee .divider {
    border-color: #e9e2d9;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 0px));
    }
}

@keyframes serviceProgress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

@media only screen and (min-width: 1400px) {
    .service-details .thumb-group {
        padding-inline-end: 40px;
    }
}

.service-details .thumb-lg {
    width: 100%;
}

.service-details .thumb-lg img {
    min-height: 300px;
}

.service-details .thumb-sm {
    max-width: 480px;
    margin-inline-start: auto;
}

.service-details .thumb-sm img {
    min-height: 300px;
}

.service-details .dot-left {
    position: relative;
    padding-inline-start: 16px;
}

.service-details .dot-left::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    width: 8px;
    height: 8px;
    background-color: #C08860;
    border-radius: 50%;
    top: 55%;
    transform: translateY(-50%);
}

.service-details__poster img {
    width: 100%;
    min-height: 400px;
}

.work-process__single {
    padding-block: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #D2CEC8;
    position: relative;
    z-index: 1;
    background-color: var(--template-bg);
}

.work-process__single:nth-of-type(1) {
    border-top: 1px solid #D2CEC8;
}

.work-process__single .title-md {
    margin-top: -4px;
}

.work-process__single:hover .title-md {
    color: #C08860;
}

.work-process__single:hover {
    max-height: 300px;
}

.work-process__single.active {
    transition: max-height 0.6s ease;
}

.work-process__single.active .title-md {
    color: #C08860;
}

.work-process__single.active {
    max-height: 300px;
}

.work-process__single-left .title-md {
    color: #E9E6E0;
    transition: var(--transition);
}

.work-process__single-left .title-md:hover {
    color: #C08860;
}

.work-process__single-right {
    max-width: 550px;
}

.work-process__single {
    max-height: 80px;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.service-details-footer__inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    row-gap: 24px;
    justify-content: space-between;
    max-width: 700px;
    margin-inline-start: auto;
    padding-top: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

@media only screen and (min-width: 576px) {
    .service-details-footer__inner {
        flex-wrap: nowrap;
    }
}

.service-details-footer__inner::before {
    content: "";
    position: absolute;
    top: 0px;
    inset-inline-end: 0px;
    width: calc(100% + 200px);
    height: 1px;
    z-index: -1;
    background-color: #D2CEC8;
}

.service-details-footer__inner .title-xxs {
    width: max-content;
}

.service-details-footer__right {
    max-width: 400px;
    margin-inline-start: auto;
}

.group-list li {
    padding-block: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    border-bottom: 1px solid #D2CEC8;
}

.group-list li:nth-of-type(1) {
    border-top: 1px solid #D2CEC8;
}

/* ==== 
 --------- (5.05) service styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.06) process styles start ---------
 ==== */

.process {
    position: relative;
}

.process__intro span {
    position: relative;
    display: inline-block;
    padding-inline-start: 12px;
    color: var(--txt-light);
}

.process__intro span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 0px;
    width: 6px;
    height: 6px;
    background-color: var(--txt-light);
    border-radius: 50%;
}

.process__thumb img,
.process__thumb .parallax-image-wrap,
.process__thumb .parallax-image-inner {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

@media only screen and (min-width: 1200px) {
    .process__thumb img,
    .process__thumb .parallax-image-wrap,
    .process__thumb .parallax-image-inner {
        min-height: 600px;
    }
}

.process__wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

@media only screen and (min-width: 1200px) {
    .process__wrapper {
        margin-inline-start: 40px;
    }
}

.process__wrapper .process__content {
    width: 100%;
}

.process__wrapper .divider {
    border-color: #D2CEC8;
}

.process__inner {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

@media only screen and (min-width: 576px) {
    .process__inner {
        flex-wrap: nowrap;
    }
}

.process__inner-left {
    width: 100%;
}

@media only screen and (min-width: 576px) {
    .process__inner-left {
        max-width: 360px;
    }
}

.process__inner-left-tab-wrapper {
    position: relative;
    height: 375px;
}

@media only screen and (min-width: 1200px) {
    .process__inner-left-tab-wrapper {
        height: 437px;
    }
}

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

.proces__inner-left-tab.active {
    display: block;
}

.process__inner-left-intro {
    padding-bottom: 20px;
    border-bottom: 1px solid #D2CEC8;
}

.process__inner-left-content li {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-block: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #D2CEC8;
}

.process__inner-left-content li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.process__inner-right {
    width: 100%;
}

@media only screen and (min-width: 576px) {
    .process__inner-right {
        max-width: 320px;
    }
}

.process__inner-right li {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-block: 10px;
    margin-bottom: 10px;
    color: var(--txt-light);
    transition: var(--transition);
    position: relative;
}

.process__inner-right li .line {
    position: absolute;
    inset-block-end: 0px;
    inset-inline: 0px;
    width: 100%;
    height: 1px;
    background-color: #B8B3AE;
}

.process__inner-right li .line::before {
    content: "";
    position: absolute;
    height: 100%;
    inset-inline: 0px;
    inset-block-start: 0px;
    background-color: #C08860;
    width: 0%;
}

.process__inner-right li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.process__inner-right li i {
    font-size: 20px;
    transition: var(--transition);
}

.process__inner-right li:hover {
    color: var(--template-color);
}

.process__inner-right li:hover i {
    transform: rotate(90deg);
    color: #C08860;
}

.process__inner-right .process-tab-btn.active .line::before {
    animation: serviceProgress 10s linear forwards;
}

.proces__inner-right-thumb {
    height: 300px;
    position: relative;
}

@media only screen and (min-width: 1200px) {
    .proces__inner-right-thumb {
        height: 345px;
    }
}

.process__inner-right-thumb-single {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.process__inner-right-thumb-single img {
    width: 100%;
    min-height: 260px;
}

.process__inner-right-thumb-single.active {
    display: block;
}

.process-border-top {
    border-top: 1px solid var(--txt-light);
}

/* ==== 
 --------- (5.06) process styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.07) testimonial styles start ---------
 ==== */

.testimonial {
    background-color: #E9E6E0;
}

.testimonial .testimonial__single {
    max-width: 600px;
}

@media only screen and (min-width: 1200px) {
    .testimonial .testimonial__single {
        max-width: 700px;
    }
}

.testimonial .testimonial__content {
    position: relative;
    padding-bottom: 30px;
    padding-top: 8px;
}

.testimonial .testimonial__content .title-lg-sm {
    opacity: 0;
    transform: translateX(-20px);
    transition-duration: 0.5s;
    transition-timing-function: ease;
    transition-property: opacity, transform;
    transition-delay: 600ms;
}

.testimonial .testimonial__content .line {
    position: absolute;
    inset-block-end: 0px;
    inset-inline: 0px;
    width: 100%;
    height: 1px;
    background-color: #B8B3AE;
}

.testimonial .testimonial__content .line::before {
    content: "";
    position: absolute;
    height: 100%;
    inset-inline: 0px;
    inset-block-start: 0px;
    background-color: #C08860;
    width: 0%;
}

.testimonial .testimonial__cta-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(-20px);
    transition-duration: 0.5s;
    transition-timing-function: ease;
    transition-property: opacity, transform;
    transition-delay: 1000ms;
}

.testimonial .testimonial__cta {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    gap: 24px;
}

@media only screen and (min-width: 1200px) {
    .testimonial .testimonial__cta {
        flex-direction: column;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.testimonial .swiper-slide-active .testimonial__content .title-lg-sm {
    opacity: 1;
    transform: translateX(0);
}

.testimonial .swiper-slide-active .testimonial__content .line::before {
    animation: serviceProgress 6s linear forwards;
}

.testimonial .swiper-slide-active .testimonial__cta-wrapper {
    opacity: 1;
    transform: translateX(0);
}

.testimonial .slider-navigation {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.testimonial .slider-btn {
    width: 80px;
    height: 40px;
    min-width: 80px;
    background-color: transparent;
    border: 1px solid var(--txt-light);
    border-radius: 40px;
    color: var(--template-color);
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonial .slider-btn:hover {
    background-color: var(--template-color);
    border: 1px solid var(--template-color);
    color: var(--white);
}

.testimonial .fraction {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: min-content;
    z-index: 1;
    position: relative;
    padding-inline-start: 8px;
    padding-inline-end: 8px;
}

.testimonial .fraction::before {
    content: "(";
    position: absolute;
    inset-inline-start: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--template-color);
    font-size: 24px;
}

.testimonial .fraction::after {
    content: ")";
    position: absolute;
    inset-inline-end: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--template-color);
    font-size: 24px;
}

.testimonial .fraction .current-slide-number {
    color: var(--template-color);
}

.testimonial .fraction span {
    font-weight: 500;
    color: var(--txt-light);
    font-family: var(--heading-font);
}

.testimonial .fraction .full-slides-number {
    color: var(--txt-light);
}

.testimonial-two {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-two .author__content p:nth-of-type(2) {
    margin-top: 4px;
}

.testimonial-two .fraction-wrapper {
    text-align: end;
    margin-top: 10px;
}

@media only screen and (min-width: 576px) {
    .testimonial-two .fraction {
        position: relative;
        top: -56px;
    }
}

.testimonial-two .fraction span {
    color: #B8B3AE;
}

.testimonial-two .fraction .current-slide-c-number {
    color: var(--template-color);
}

@media only screen and (min-width: 576px) {
    .testimonial-two .fraction-wrapper {
        text-align: end;
        margin-bottom: -26px;
        pointer-events: none;
        margin-top: 0px;
    }
}

.testimonial-two__intro {
    text-align: center;
    position: relative;
}

.testimonial-two__intro p {
    margin-bottom: 25px;
}

@media only screen and (min-width: 768px) {
    .testimonial-two__intro p {
        position: absolute;
        inset-inline-start: 0px;
        top: 12px;
        margin-bottom: 0px;
    }
}

.testimonial-two__intro .divide-cs {
    width: 1.5px;
    height: 80px;
    background-color: #D2CEC8;
    position: relative;
    overflow: hidden;
    --progress: 0%;
}

.testimonial-two__intro .divide-cs::after {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: 0;
    width: 100%;
    height: var(--progress);
    background-color: var(--template-color);
    transition: height 0.1s linear;
}

.testimonial-two-slider__wrapper {
    max-width: 680px;
    margin-inline: auto;
}

.testimonial-two-slider__wrapper .title-xs {
    font-style: italic;
    text-align: center;
}

@media only screen and (max-width: 424px) {
    .testimonial-two-slider__wrapper .title-xs {
        font-size: 18px;
    }
}

.testimonial-two-slider__wrapper .author__info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.testimonial-two-slider__wrapper .author__thumb img {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-two-slider__wrapper .title-xs,
.testimonial-two-slider__wrapper .author__info {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 1000ms ease;
}

.testimonial-two-slider__wrapper .swiper-slide-active .title-xs,
.testimonial-two-slider__wrapper .swiper-slide-active .author__info {
    opacity: 1;
    transform: scaleY(1);
}

.testimonial-two-slider__wrapper .swiper-slide-active .title-xs {
    transition-delay: 600ms;
}

.testimonial-two-slider__wrapper .swiper-slide-active .author__info {
    transition-delay: 1000ms;
}

/* ==== 
 --------- (5.07) testimonial styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.08) field styles start ---------
 ==== */

.field {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.field p {
    margin-bottom: 30px;
}

@media only screen and (min-width: 1200px) {
    .field p {
        inset-block-start: 190px;
        position: absolute;
        inset-inline-start: 5%;
        z-index: 1;
    }
}

@media only screen and (min-width: 1600px) {
    .field p {
        inset-inline-start: 3%;
    }
}

.field__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    row-gap: 20px;
    flex-wrap: wrap;
}

@media only screen and (min-width: 1200px) {
    .field__inner {
        max-width: 56rem;
        margin-inline: auto;
    }
}

@media only screen and (min-width: 1600px) {
    .field__inner {
        max-width: 70rem;
    }
}

.field__inner .title-lg a {
    color: #B8B3AE;
    font-weight: 500 !important;
}

.field__inner .divide-cs {
    width: 8px;
    height: 8px;
    background-color: #B8B3AE;
    margin-top: 10px;
    border-radius: 50%;
    display: none;
}

@media only screen and (min-width: 576px) {
    .field__inner .divide-cs {
        display: block;
    }
}

.field__inner .field__single {
    position: relative;
    z-index: 1;
}

.field__inner .field__single:hover {
    z-index: 10;
}

.field__inner .field__single:hover .field-thumb {
    opacity: 1;
}

.field__inner .field__single:hover .title-lg a {
    color: #481800;
    position: relative;
    z-index: 9;
}

.field__inner .field-thumb {
    width: 200px;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 2;
}

@media only screen and (min-width: 1400px) {
    .field__inner .field-thumb {
        width: 400px;
        height: 500px;
    }
}

/* ==== 
 --------- (5.08) field styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.09) counter styles start ---------
 ==== */

.counter {
    position: relative;
    z-index: 1;
    background-color: #E9E6E0;
    border-top: 1px solid var(--primary-color);
}

.counter .cvv {
    position: absolute;
    inset-inline-start: 5%;
    padding: 8px 20px;
    background-color: #E9E6E0;
    inset-block-start: -17px;
}

.counter .divider {
    border-color: rgba(72, 24, 0, 0.062745098);
}

.counter .odometer-digit {
    padding-inline-end: 0.05em;
}

.counter .title-lg {
    display: flex;
    align-items: center;
    gap: 6px;
}

.counter p {
    font-weight: 500;
}

.counter__inner-right,
.counter__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

@media only screen and (min-width: 768px) {
    .counter__inner-right,
    .counter__inner {
        gap: 100px;
    }
}

.counter__inner-right {
    justify-content: flex-end;
}

.counter-two {
    overflow: hidden;
}

.counter-two__inner {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    row-gap: 0px;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .counter-two__inner {
        flex-wrap: nowrap;
        text-align: start;
    }
}

@media only screen and (min-width: 1200px) {
    .counter-two__inner {
        gap: 40px;
    }
}

@media only screen and (min-width: 1600px) {
    .counter-two__inner {
        gap: 80px;
    }
}

.counter-two__wrapper {
    margin-top: 40px;
}

@media only screen and (min-width: 768px) {
    .counter-two__wrapper {
        margin-top: 60px;
    }
}

@media only screen and (min-width: 1200px) {
    .counter-two__wrapper {
        margin-top: 100px;
    }
}

.counter-two__single {
    flex-grow: 1;
    width: 100%;
    border-top: 1px solid #D2CEC8;
    padding-block: 40px;
}

@media only screen and (min-width: 425px) {
    .counter-two__single {
        width: calc(50% - 25px);
    }
}

@media only screen and (min-width: 768px) {
    .counter-two__single {
        width: 100%;
        padding-block: 20px 0px;
    }
}

.counter-two__single:hover {
    border-color: var(--primary-color);
}

.counter-two__single .prefix {
    line-height: 0;
    margin-top: -5px;
}

@media only screen and (min-width: 1200px) {
    .counter-two__single .prefix {
        margin-top: -10px;
    }
}

.counter-two__single .title-xl {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

@media only screen and (min-width: 768px) {
    .counter-two__single .title-xl {
        justify-content: flex-start;
    }
}

.counter-two__single .odometer-digit {
    padding-inline-end: 0.03em;
}

/* ==== 
 --------- (5.09) counter styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.10) concept styles start ---------
 ==== */

.concept {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.concept .container-fluid {
    padding-inline-end: 0px;
}

.concept__content-wrapper {
    height: 100%;
}

.concept__content-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    row-gap: 20px;
    justify-content: space-between;
    height: 100%;
    padding-inline: 0px;
    flex-direction: column;
}

@media only screen and (min-width: 1200px) {
    .concept__content-inner {
        padding-inline: 20px;
        flex-direction: row;
    }
}

@media only screen and (min-width: 1400px) {
    .concept__content-inner {
        padding-inline: 40px;
    }
}

@media only screen and (min-width: 1600px) {
    .concept__content-inner {
        padding-inline: 40px 40px;
    }
}

.concept__content-right {
    max-width: 460px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 60px;
}

@media only screen and (min-width: 1200px) {
    .concept__content-right {
        gap: 50px;
    }
}

@media only screen and (min-width: 1600px) {
    .concept__content-right {
        gap: 100px;
    }
}

.concept__right-intro {
    max-width: 300px;
}

@media only screen and (min-width: 768px) {
    .concept__right-intro {
        max-width: 380px;
    }
}

@media only screen and (min-width: 1200px) {
    .concept__right-intro {
        max-width: 460px;
        min-width: 460px;
    }
}

.concept__right-list li {
    color: #B8B3AE;
    margin-bottom: 12px;
    font-family: var(--maison-neue);
}

.concept__right-list li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.concept-footer__inner {
    width: 100%;
}

.concept__footer-intro {
    padding-block: 20px;
    border-block: 1px solid rgba(72, 24, 0, 0.062745098);
}

.concept__content-left p {
    min-width: max-content;
}

.concept__cta a {
    color: #4F4B47;
    font-weight: 500;
}

.concept__cta a:hover {
    color: var(--primary-color);
}

.concept__cta a i {
    font-size: 24px;
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .concept__thumbs {
        margin-inline-start: 120px;
    }
}

.concept__thumb-single {
    position: relative;
}

.concept__thumb-single .thumb-lg img {
    width: 100%;
    min-height: 700px;
}

@media only screen and (min-width: 768px) {
    .concept__thumb-single .thumb-lg img {
        min-height: 900px;
    }
}

@media only screen and (min-width: 1600px) {
    .concept__thumb-single .thumb-lg img {
        min-height: 1000px;
    }
}

.concept__thumb-single .thumb-sm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}

.concept__thumb-single .thumb-sm img {
    max-width: 460px;
    width: 100%;
    min-height: 260px;
    max-height: 60vh;
}

.concept__thumb-single .thumb-sm .thumb-sm-wrapper {
    position: relative;
}

.concept__thumb-single .thumb-sm a {
    position: absolute;
    inset-inline-end: 15px;
    inset-block-end: 15px;
    width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    font-size: 40px;
    color: var(--white);
}

@media only screen and (min-width: 1200px) {
    .concept__thumb-single .thumb-sm a {
        inset-inline-end: -45px;
        inset-block-end: -45px;
    }
}

.concept__thumb-single .thumb-sm a:hover {
    background-color: var(--white);
    color: var(--black);
}

.concept__thumbs {
    overflow: hidden;
}

.concept__thumb-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.concept__thumb-single {
    width: 100%;
    flex-shrink: 0;
}

.concept__footer-wrapper {
    position: relative;
    overflow: hidden;
}

.concept__right-footer {
    position: absolute;
    width: 100%;
}

/* ==== 
 --------- (5.10) concept styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.11) team styles start ---------
 ==== */

.team {
    position: relative;
    z-index: 1;
}

.team .team__intro {
    margin-bottom: 24px;
}

@media only screen and (min-width: 1600px) {
    .team .team__intro {
        position: absolute;
        inset-inline-start: 5%;
        inset-block-start: 140px;
    }
}

.team .team__content {
    max-width: 460px;
}

@media only screen and (min-width: 992px) {
    .team .team__cta {
        text-align: end;
    }
}

.team .team__wrapper {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
}

.team .team__single {
    max-width: 296px;
    width: 100%;
    min-width: 296px;
    overflow: hidden;
}

@media only screen and (min-width: 768px) {
    .team .team__single {
        max-width: 360px;
        min-width: 360px;
    }
}

@media only screen and (min-width: 1600px) {
    .team .team__single {
        max-width: 445px;
        min-width: 445px;
    }
}

.team .team__single:hover .team__name,
.team .team__single:hover .team__designation {
    transform: translateY(0px);
}

.team .team__single:hover .team__thumb::before {
    transform: translateY(0px);
}

.team .team__single.active .team__name,
.team .team__single.active .team__designation {
    transform: translateY(0px);
}

.team .team__single.active .team__thumb::before {
    transform: translateY(0px);
}

.team .team__thumb {
    position: relative;
    z-index: 1;
}

.team .team__thumb::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(72, 24, 0, 0.3137254902);
    transition: var(--transition);
    transform: translateY(-100%);
}

.team .team__thumb img {
    width: 100%;
    min-height: 400px;
}

@media (min-width: 1000px) and (max-width: 1599px) {
    .team .team__thumb img {
        max-height: 400px;
    }
}

.team .team__name {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transform: translateY(120%);
    transition: var(--transition);
}

.team .team__name a {
    color: #F5F2EE;
    font-weight: 400;
}

.team .team__designation {
    transform: translateY(-170%);
    transition: var(--transition);
}

.team-two__intro .title-xl,
.team-two__intro .title-lg {
    line-height: calc(100% + 20px);
}

.team-two__lists li {
    max-width: max-content;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

@media only screen and (min-width: 768px) {
    .team-two__lists li {
        gap: 80px;
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 1600px) {
    .team-two__lists li {
        gap: 200px;
    }
}

.team-two__lists li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.team-two__lists li .list-wrapper {
    display: flex;
    gap: 12px;
    position: relative;
    overflow: hidden;
    width: max-content;
    flex-direction: column;
    align-items: flex-start;
}

@media only screen and (min-width: 768px) {
    .team-two__lists li .list-wrapper {
        flex-direction: row;
        align-items: unset;
    }
}

.team-two__lists li .list-wrapper i {
    font-size: 20px;
}

.team-two__lists li:hover .serial,
.team-two__lists li:hover i {
    transform: translateX(0px);
}

.team-two__lists li:hover .content {
    color: var(--template-color);
}

.team-two__lists li:hover .content::before {
    width: 100%;
}

.team-two__lists li:hover sup {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}

.team-two__lists li span {
    transition: var(--transition);
}

.team-two__lists li .content {
    color: #98918F;
    position: relative;
}

.team-two__lists li .content::before {
    content: "";
    position: absolute;
    inset-inline: 0px;
    inset-block-end: 0px;
    width: 0%;
    height: 100%;
    background-color: var(--template-color);
    height: 1px;
    transition: var(--transition);
}

.team-two__lists li .serial {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--template-font);
    letter-spacing: 1px;
    transform: translateX(-100%);
    transition: var(--transition);
}

.team-two__lists li sup {
    line-height: 1;
    font-size: 14px;
    top: unset;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20%);
    transition: var(--transition);
}

.team-two__lists li i {
    transform: translateX(-100%);
    transition: var(--transition);
}

.team-two__lists .active .serial,
.team-two__lists .active i {
    transform: translateX(0px);
}

.team-two__lists .active .content {
    color: var(--template-color);
}

.team-two__lists .active .content::before {
    width: 100%;
}

.team-two__lists .active sup {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .team-two__lists .title-lg-sm {
        font-size: 36px;
        line-height: 44px;
    }
}

.team-two__thumbs {
    position: relative;
    overflow: hidden;
}

.team-two__thumbs .rip {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.team-two-thumb {
    position: absolute;
    inset: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.team-two-thumb img {
    width: 100%;
    height: 100%;
    min-height: 360px;
}

@media only screen and (min-width: 576px) {
    .team-two__cta {
        text-align: end;
    }
}

.team-two__cta a span {
    position: relative;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--txt-light);
    transition: var(--transition);
}

.team-two__cta a span::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    inset-block-end: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--txt-light);
    transition: var(--transition);
}

.team-two__cta a i {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: -3px;
    color: var(--txt-light);
}

.team-two__cta a:hover {
    color: var(--primary-color);
}

.team-two__cta a:hover span {
    color: var(--primary-color);
}

.team-two__cta a:hover span::before {
    width: 100%;
    background-color: var(--primary-color);
}

.team-two__cta a:hover i {
    color: var(--primary-color);
}

.team-three .team-three__header p {
    max-width: 460px;
}

@media only screen and (min-width: 992px) {
    .team-three .team-three__cta {
        text-align: end;
    }
}

.team-three .thumb-wrapper {
    position: relative;
    overflow: hidden;
}

.team-three .thumb img {
    width: 100%;
    min-height: 280px;
}

.team-three .thumb-content {
    position: absolute;
    inset: 0px;
    background-color: #481800;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-block: 30px;
    transition: var(--transition);
    transform: translateY(100%);
}

.team-three .thumb-content a {
    color: rgba(245, 242, 238, 0.4588235294);
    font-weight: 500;
    position: relative;
}

.team-three .thumb-content a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    inset-inline-start: 0px;
    width: 0%;
    height: 1px;
    background-color: var(--white);
    transition: var(--transition);
}

.team-three .thumb-content a:hover {
    color: var(--white);
}

.team-three .thumb-content a:hover::before {
    width: 100%;
}

.team-three .thumb-content-top {
    padding-inline: 24px;
}

.team-three .thumb-content-bottom {
    text-align: end;
    border-bottom: 1px solid rgba(245, 242, 238, 0.1254901961);
    padding-inline-start: 24px;
}

.team-three .thumb-content-bottom a {
    padding: 30px;
    flex-direction: column;
    gap: 24px;
}

.team-three .thumb-content-bottom a::before {
    inset-block-end: 0px;
    inset-inline-start: 0px;
    width: 1px !important;
    height: calc(100% + 30px);
    background-color: rgba(245, 242, 238, 0.1254901961);
}

.team-three .thumb-content-bottom a::after {
    content: "";
    position: absolute;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    width: calc(100% + 30px);
    height: 1px;
    background-color: rgba(245, 242, 238, 0.1254901961);
}

.team-three .thumb-content-bottom a img {
    filter: brightness(0) saturate(100%) invert(56%) sepia(62%) saturate(7028%) hue-rotate(340deg) brightness(111%) contrast(95%);
}

.team-three .thumb-content-bottom a span {
    position: relative;
}

.team-three .thumb-content-bottom a span::before {
    content: "";
    position: absolute;
    bottom: 0px;
    inset-inline-start: 0px;
    width: 0%;
    height: 1px;
    background-color: #C08860;
    transition: var(--transition);
}

.team-three .thumb-content-bottom a:hover {
    color: #C08860;
}

.team-three .thumb-content-bottom a:hover span::before {
    width: 100%;
}

.team-three .team-three__single {
    position: relative;
    z-index: 2;
}

.team-three .team-three__single:hover .thumb-content {
    transform: translateY(0px);
}

.team-three .team-three__content a {
    font-weight: 500;
    position: relative;
}

.team-three .team-three__content a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    inset-inline-start: 0px;
    width: 0%;
    height: 1px;
    background-color: var(--template-color);
    transition: var(--transition);
}

.team-three .team-three__content a:hover::before {
    width: 100%;
}

.team-three .team-three__content p {
    margin-top: 2px;
}

@media only screen and (min-width: 1400px) {
    .team-three .offset-xxl-3 {
        margin-left: unset;
        margin-inline-start: auto;
    }
}

.team-three__intro p {
    position: relative;
    padding-inline-start: 16px;
}

.team-three__intro p::before {
    content: "";
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    inset-inline-start: 0px;
    width: 8px;
    height: 8px;
    background-color: var(--txt-light);
    border-radius: 50%;
}

@media only screen and (min-width: 1600px) {
    .team-three__items-wrapper .row {
        margin-inline: -30px;
    }
}

@media only screen and (min-width: 1600px) {
    .team-three__items-wrapper .row>* {
        padding-inline: 30px;
    }
}

.c-row {
    margin-right: unset;
}

@media only screen and (min-width: 1200px) {
    .c-row {
        width: 90vw;
    }
}

@media only screen and (min-width: 1700px) {
    .c-row {
        width: 80vw;
    }
}

/* ==== 
 --------- (5.11) team styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.12) transform styles start ---------
 ==== */

.transform {
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.transform .transform__wrapper {
    padding: 60px 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    gap: 120px;
    max-width: 420px;
    position: relative;
    z-index: 9;
}

@media only screen and (min-width: 576px) {
    .transform .transform__wrapper {
        padding: 60px 30px;
    }
}

@media only screen and (min-width: 992px) {
    .transform .transform__wrapper {
        gap: 190px;
        max-width: 470px;
    }
}

.transform .transform__wrapper::after,
.transform .transform__wrapper::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    width: 1px;
    height: 100vh;
    min-height: 200vh;
    top: 50%;
    transform: translateY(-50%);
    background-color: #F5F2EE;
    opacity: 25%;
    z-index: -1;
    pointer-events: none;
}

.transform .transform__wrapper::before {
    inset-inline-start: unset;
    inset-inline-end: 0px;
}

.transform .transform__wrapper .line-cs {
    position: absolute;
    inset: 0px;
    pointer-events: none;
}

.transform .transform__wrapper .line-cs::after,
.transform .transform__wrapper .line-cs::before {
    content: "";
    position: absolute;
    inset-block-start: 0px;
    width: 100vw;
    min-width: 200vw;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F5F2EE;
    opacity: 25%;
}

.transform .transform__wrapper .line-cs::before {
    inset-block-start: unset;
    inset-block-end: 0px;
}

.transform .title-lg-sm,
.transform .transform__cta {
    max-width: 390px;
}

.transform .transform-bg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.transform .transform-bg::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: #481800;
    opacity: 40%;
    z-index: 1;
}

@media only screen and (min-width: 992px) {
    .transform .transform-bg::before {
        opacity: 20%;
    }
}

.transform .transform-bg .parallax-image-wrap,
.transform .transform-bg .parallax-image-inner {
    width: 100%;
    height: 100%;
}

.transform .transform-bg img {
    width: 100%;
    height: 100%;
}

/* ==== 
 --------- (5.12) transform styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.13) instagram feed styles start ---------
 ==== */

@media only screen and (min-width: 576px) {
    .insta-feed .insta-feed__title {
        text-align: end;
    }
}

.insta-feed .insta-feed__title p {
    position: relative;
    display: inline-block;
    padding-inline-start: 12px;
    color: var(--txt-light);
}

.insta-feed .insta-feed__title p::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 0px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.insta-feed .insta-feed__inner {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 0px;
    direction: ltr;
}

.insta-feed .insta-feed__inner:hover .insta-feed__slider {
    animation-play-state: paused;
}

.insta-feed .insta-feed__slider {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0px;
    direction: ltr;
    min-width: max-content;
    justify-content: space-between;
    animation: scroll 15s linear infinite;
}

.insta-feed__single {
    position: relative;
    overflow: hidden;
    z-index: 1;
    flex: 0 0 auto;
    margin-inline: 12px;
    max-width: 280px;
}

@media only screen and (min-width: 576px) {
    .insta-feed__single {
        max-width: 350px;
    }
}

@media only screen and (min-width: 576px) {
    .insta-feed__single {
        max-width: 430px;
    }
}

.insta-feed__single::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(72, 24, 0, 0.3137254902);
    transition: var(--transition);
    transform: translateY(-100%);
}

.insta-feed__single:hover::before {
    transform: translateY(0px);
}

.insta-feed__single:hover a {
    transform: translate(-50%, -50%) scale(1);
}

.insta-feed__single img {
    width: 100%;
}

.insta-feed__single .parallax-image-wrap,
.insta-feed__single .parallax-image-inner {
    width: 100%;
    height: 100%;
}

.insta-feed__single a {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    font-size: 36px;
    color: var(--white);
    transform: translate(-50%, -50%) scale(0);
}

/* ==== 
 --------- (5.13) instagram feed styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.14) project styles start ---------
 ==== */

.project {
    direction: ltr;
}

.project__header {
    position: relative;
    max-width: max-content;
    margin-inline: auto;
}

@media only screen and (max-width: 424px) {
    .project__header .title-lg-sm {
        font-size: 20px;
        line-height: 30px;
    }
}

.project__header a span {
    position: relative;
    font-weight: 500;
}

.project__header a span::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    inset-block-end: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--txt-light);
    transition: var(--transition);
}

.project__header a i {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: -3px;
}

.project__header a:hover {
    color: var(--primary-color);
}

.project__header a:hover span::before {
    width: 100%;
    background-color: var(--primary-color);
}

.project__header p {
    max-width: 360px;
    margin-inline: auto;
}

.project__header sup {
    color: var(--txt-light);
    font-size: 14px;
    font-weight: 300;
    position: relative;
    letter-spacing: 0px;
    text-transform: lowercase;
    top: -2em;
    left: 10px;
}

@media only screen and (min-width: 425px) {
    .project__header sup {
        top: -2.4em;
    }
}

@media only screen and (min-width: 576px) {
    .project__header sup {
        top: -2.9em;
    }
}

@media only screen and (min-width: 768px) {
    .project__header sup {
        top: -3.4em;
    }
}

@media only screen and (min-width: 992px) {
    .project__header sup {
        top: -3.9em;
    }
}

@media only screen and (min-width: 1200px) {
    .project__header sup {
        top: -4.5em;
    }
}

.project__header span {
    text-transform: uppercase;
}

.project__header .our {
    display: inline-flex;
}

.project__header .our-wrapper {
    position: relative;
    inset-inline-end: -6.3em;
    width: max-content;
}

@media only screen and (min-width: 425px) {
    .project__header .our-wrapper {
        inset-inline-end: -5.7em;
    }
}

@media only screen and (min-width: 576px) {
    .project__header .our-wrapper {
        inset-inline-end: -5.3em;
    }
}

@media only screen and (min-width: 768px) {
    .project__header .our-wrapper {
        inset-inline-end: -4.9em;
    }
}

@media only screen and (min-width: 992px) {
    .project__header .our-wrapper {
        inset-inline-end: -4.7em;
    }
}

@media only screen and (min-width: 1200px) {
    .project__header .our-wrapper {
        inset-inline-end: -4.3em;
    }
}

.project__header .projects {
    display: inline-flex;
}

.project__header .projects .r {
    margin-inline: 0.6em;
}

.project__header .o,
.project__header .u {
    transform: translateY(-1.25em) translateX(-0.4em);
}

.project__header .r {
    transform: scale(2.5) translateY(-0.19em);
}

.project-title .o,
.project-title .u,
.project-title .r,
.project-title .our-wrapper {
    will-change: transform;
}

.project__single {
    overflow-x: clip;
}

.project__single-intro {
    padding-block: 20px;
    border-block: 1px solid #D2CEC8;
    margin-bottom: 20px;
}

.project__single-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

@media only screen and (min-width: 768px) {
    .project__single-inner {
        justify-content: space-between;
    }
}

.project__single-inner .elicyon {
    margin-bottom: -5px;
}

.project__single-inner .time {
    padding: 5px 24px;
    border: 1px solid #B8B3AE;
    border-radius: 30px;
}

.project__single-inner a {
    color: var(--txt-light);
    font-weight: 400;
}

.project__single-inner a::before {
    background-color: var(--template-color);
    height: 1px;
}

.project__single-inner a:hover {
    color: var(--template-color);
}

.project__single-thumb {
    overflow: hidden;
}

.project__single-thumb img {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

@media only screen and (max-width: 991px) {
    .project__single-thumb img {
        max-height: 500px;
    }
}

.project__single-thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.project__single-thumb::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-color: rgba(72, 24, 0, 0.4588235294);
    z-index: 2;
}

.project__single-content {
    position: absolute;
    inset-block-end: 40px;
    width: calc(100% - 400px);
    height: 70%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.project__single-content .title-xl {
    display: flex;
    justify-content: space-between;
}

.map-link span {
    position: relative;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--txt-light);
    transition: var(--transition);
}

.map-link span::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    inset-block-end: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--txt-light);
    transition: var(--transition);
}

.map-link i {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: -3px;
    color: var(--txt-light);
}

.map-link:hover {
    color: var(--primary-color);
}

.map-link:hover span {
    color: var(--primary-color);
}

.map-link:hover span::before {
    width: 100%;
    background-color: var(--primary-color);
}

.map-link:hover i {
    color: var(--primary-color);
}

.project-details__single .thumb img {
    width: 100%;
    min-height: 300px;
}

.project-details__single .text-xxl {
    max-width: 440px;
}

.project-details-meta__single {
    padding-block: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #D2CEC8;
    position: relative;
    z-index: 1;
    background-color: var(--template-bg);
}

@media only screen and (min-width: 992px) {
    .project-details-meta__single {
        align-items: flex-start;
    }
}

.project-details-meta__single:nth-of-type(1) {
    border-top: 1px solid #D2CEC8;
}

.project-details-meta__single .odometer-digit {
    padding-inline-end: 0.03em;
}

.project-details-meta__single .title-md {
    margin-bottom: -0.25em;
}

.project-details-banner__cta {
    text-align: end;
}

.project-details-banner__cta a {
    position: relative;
    z-index: 2;
}

.project-details-banner__cta img {
    animation: rotation 25s linear infinite;
}

.project-details-banner__cta i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--template-color);
    font-weight: 600;
}

.project-details-banner__cta span {
    position: absolute;
    padding: 30px;
    background-color: #C08860;
    color: var(--white);
    inset-block-start: 120%;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    transform: rotate(-90deg);
    margin-left: -90px;
}

.project-details-poster img {
    width: 100%;
    min-height: 360px;
}

.project-slider {
    position: relative;
    z-index: 1;
    overflow: clip;
    min-height: 100vh;
    max-height: 100vh;
}

.project-slider .swiper-slide-active .project-slider-bg {
    animation: backgroundAnimation 12s ease-in-out;
    transform: scale(1.2);
    transition-delay: 1s;
}

.project-slider .swiper-slide-active .text-xl,
.project-slider .swiper-slide-active .title-lg-sm,
.project-slider .swiper-slide-active .project-slider__cta {
    opacity: 1;
    transform: scaleY(1);
}

.project-slider .swiper-slide-active .text-xl {
    transition-delay: 600ms;
}

.project-slider .swiper-slide-active .title-lg-sm {
    transition-delay: 1000ms;
}

.project-slider .swiper-slide-active .project-slider__cta {
    transition-delay: 1400ms;
}

.project-slider .project-slider-pagination {
    position: absolute;
    z-index: 9;
    width: max-content;
    inset-inline-end: 12px;
    inset-block-end: 28px;
    left: unset;
}

@media only screen and (min-width: 768px) {
    .project-slider .project-slider-pagination {
        inset-inline-end: 80px;
        inset-block-end: 42px;
    }
}

.project-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 1px solid #B8B3AE;
    border-radius: 0px;
    opacity: 1;
    margin: 0px 5px;
}

.project-slider .swiper-pagination-bullet-active {
    background-color: var(--white);
    border-color: var(--white);
}

.proect-slider-single {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: flex-end;
}

.proect-slider-single::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: #481800;
    opacity: 45%;
    z-index: 2;
}

@media only screen and (min-width: 992px) {
    .proect-slider-single::before {
        opacity: 20%;
    }
}

.project-slider-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    inset: 0px;
    z-index: -1;
    transform: scale(1);
}

.project-slider__box {
    padding: 54px 20px;
    max-width: 520px;
    margin-top: 0px;
    margin-bottom: 0px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 64px;
    position: relative;
    z-index: 9;
}

@media only screen and (max-width: 767px) {
    .project-slider__box {
        margin-bottom: 0px;
    }
}

@media only screen and (min-width: 576px) {
    .project-slider__box {
        gap: 72px;
        padding: 70px 40px;
    }
}

@media only screen and (min-width: 992px) {
    .project-slider__box {
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

@media only screen and (min-width: 1200px) {
    .project-slider__box {
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

@media (min-width: 992px) and (max-width: 1699px) {
    .project-slider__box {
        margin-inline-start: 160px;
    }
}

.project-slider__box a span {
    position: relative;
    font-weight: 500;
    letter-spacing: 1px;
}

.project-slider__box a span::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    inset-block-end: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--txt-light);
    transition: var(--transition);
}

.project-slider__box a img {
    width: 14px;
    height: 14px;
    margin-bottom: -3px;
    transition: filter 0.2s ease-in;
}

.project-slider__box a:hover {
    color: var(--primary-color);
}

.project-slider__box a:hover span::before {
    width: 100%;
    background-color: var(--primary-color);
}

.project-slider__box .text-xl,
.project-slider__box .title-lg-sm,
.project-slider__box .project-slider__cta {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 1000ms ease;
}

.project-slider__box .project-slider__cta a {
    font-weight: 400;
}

.project-slider__box .project-slider__cta a span {
    font-weight: 400;
}

.project-slider__box .project-slider__cta a:hover img {
    filter: brightness(0) saturate(100%) invert(51%) sepia(65%) saturate(349%) hue-rotate(351deg) brightness(95%) contrast(89%);
}

.project-slider-navigation {
    position: absolute;
}

@media only screen and (max-width: 991px) {
    .project-slider-navigation {
        width: 696px;
        left: 50%;
        top: 110px;
        z-index: 9;
        transform: translateX(-50%);
    }
}

@media only screen and (max-width: 767px) {
    .project-slider-navigation {
        width: 516px;
    }
}

@media only screen and (max-width: 767px) {
    .project-slider-navigation {
        width: calc(100% - 24px);
    }
}

@media only screen and (min-width: 992px) {
    .project-slider-navigation {
        position: absolute;
        inset-inline-start: 80px;
        inset-block-end: 42px;
        z-index: 9;
    }
}

.project-slider-navigation .slider-navigation {
    display: flex;
    align-items: center;
    gap: 40px;
}

.project-slider-navigation .slider-navigation button img {
    transition: filter 0.3s ease;
}

.project-slider-navigation .slider-navigation button:hover img {
    filter: brightness(0) saturate(100%) invert(51%) sepia(65%) saturate(349%) hue-rotate(351deg) brightness(95%) contrast(89%);
}

/* ==== featured interiors styles start ==== */
.featured-interiors {
    overflow: clip;
}

.featured-interiors__header {
    max-width: 760px;
}

.featured-interiors__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px 24px;
}

@media only screen and (min-width: 768px) {
    .featured-interiors__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (min-width: 1200px) {
    .featured-interiors__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 56px 26px;
    }
}

.featured-interiors__single {
    position: relative;
}

.featured-interiors__thumb {
    display: block;
    aspect-ratio: 1 / 1.08;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.featured-interiors__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-interiors__single.fade-up .featured-interiors__thumb {
    transform-origin: bottom;
}

.featured-interiors__thumb:hover img {
    transform: scale(1.06);
}

.featured-interiors__content {
    margin-top: 24px;
}

.featured-interiors__content span {
    color: var(--txt-light-3);
    font-size: 14px;
    line-height: 20px;
    display: block;
    margin-bottom: 10px;
}

.featured-interiors__content h3 {
    margin: 0px;
    max-width: 360px;
}

.featured-interiors__content h3 a {
    color: var(--template-color);
    font-family: var(--heading-font);
    font-size: 24px;
    line-height: 31px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
     line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-interiors__content h3 a:hover {
    color: var(--primary-color);
}

.featured-interiors__content p {
    color: var(--txt-light);
    margin-top: 16px;
    max-width: 390px;
}

@media only screen and (max-width: 575px) {
    .featured-interiors__content h3 a {
        font-size: 24px;
        line-height: 30px;
    }
}

/* ==== featured interiors styles end ==== */

/* ==== decorative services zigzag styles start ==== */
.decorative-services {
    overflow: clip;
}

.decorative-services__header {
    max-width: 720px;
}

.decorative-services__title {
    max-width: 650px;
    font-size: 58px;
    line-height: 66px;
    letter-spacing: 0px;
}

.decorative-services__intro {
    max-width: 640px;
    margin-top: 26px;
    font-size: 16px;
    line-height: 27px;
}

.decorative-services__list {
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.decorative-services__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}

@media only screen and (min-width: 992px) {
    .decorative-services__item {
        grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
        gap: 86px;
    }

    .decorative-services__item--reverse {
        grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
    }

    .decorative-services__item--reverse .decorative-services__media {
        order: 2;
    }
}

.decorative-services__media {
    min-height: 420px;
    aspect-ratio: 1.42 / 1;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.decorative-services__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.decorative-services__item:hover .decorative-services__media img {
    transform: scale(1.05);
}

.decorative-services__content {
    position: relative;
    padding: 46px 0px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.decorative-services__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border: 1px solid rgba(72, 24, 0, 0.18);
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 1;
}

.decorative-services__content > .txt-light {
    margin-bottom: 12px;
}

.decorative-services__content h3 {
    margin-top: 0px;
    margin-bottom: 22px;
    font-size: 42px;
    line-height: 50px;
    color: var(--template-color);
}

.decorative-services__content > p:not(.txt-light) {
    margin-top: 14px;
    max-width: 560px;
    color: var(--txt-light);
    line-height: 28px;
}

.decorative-services__content ul {
    display: grid;
    gap: 14px;
    margin-top: 30px;
    max-width: 560px;
}

.decorative-services__content li {
    position: relative;
    padding-left: 28px;
    color: var(--template-color);
}

.decorative-services__content li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0px;
    width: 14px;
    height: 1px;
    background-color: var(--primary-color);
}

.decorative-services__cta {
    margin-top: 38px;
}

.decorative-services__cta:hover .btn-animated-text {
    border-color: var(--template-color) !important;
}

.decorative-services__cta:hover .btn-animated-text span {
    color: var(--template-color) !important;
}

@media only screen and (max-width: 1199px) {
    .decorative-services__list {
        gap: 78px;
    }

    .decorative-services__item {
        gap: 46px;
    }

    .decorative-services__media {
        min-height: 360px;
    }
}

@media only screen and (max-width: 575px) {
    .decorative-services__list {
        gap: 64px;
    }

    .decorative-services__media {
        min-height: 260px;
        aspect-ratio: 1 / 1.04;
    }

    .decorative-services__content {
        padding: 34px 0px;
    }

    .decorative-services__content h3 {
        margin-bottom: 18px;
        font-size: 32px;
        line-height: 40px;
    }

    .decorative-services__title {
        font-size: 38px;
        line-height: 46px;
    }

    .decorative-services__intro {
        margin-top: 20px;
        font-size: 15px;
        line-height: 25px;
    }

    .decorative-services__cta {
        margin-top: 30px;
    }
}

/* ==== decorative services zigzag styles end ==== */

/* ==== main category styles start ==== */
.main-category-section {
    overflow: hidden;
    background-color: var(--white);
}

.main-category-section + .decorative-services {
    padding-top: 56px !important;
}

.main-category-section__header {
    max-width: 760px;
}

.main-category-section__title {
    color: var(--template-color);
    font-family: var(--heading-font);
    font-weight: 300;
    letter-spacing: 0px;
    max-width: 760px;
}

.main-category-section__intro {
    color: var(--txt-light);
    font-family: var(--heading-font);
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0px;
    margin-inline-start: auto;
    max-width: 520px;
}

.main-category-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media only screen and (min-width: 1100px) {
    .main-category-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .main-category-section__item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc((100% - 30px) / 2);
    }
}

.main-category-section__item {
    height: 380px;
    min-height: 320px;
    position: relative;
    display: block;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(192, 136, 96, 0.55);
    border-radius: 18px;
    background-color: #060504;
    box-shadow: var(--shadow);
}

.main-category-section__item::before {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(6, 5, 4, 0.68) 0%, rgba(6, 5, 4, 0.42) 46%, rgba(6, 5, 4, 0.08) 100%),
        linear-gradient(180deg, rgba(72, 24, 0, 0.02) 0%, rgba(72, 24, 0, 0.28) 100%);
    transition: var(--transition);
}

.main-category-section__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) brightness(1.08);
    transition: transform 1s ease, filter 0.5s ease;
}

@media only screen and (min-width: 1400px) {
    .main-category-section__item {
        height: 420px;
    }
}

.main-category-section__content {
    position: absolute;
    inset-inline: 34px;
    inset-block-end: 34px;
    z-index: 2;
    color: var(--white);
    max-width: min(410px, calc(100% - 68px));
}

.main-category-section__content i {
    color: var(--primary-color);
    display: inline-block;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 16px;
}

.main-category-section__content p {
    color: rgba(245, 242, 238, 0.7);
    font-family: var(--heading-font);
    letter-spacing: 0px;
    margin-bottom: 10px;
}

.main-category-section__content h2 {
    color: var(--white);
    font-family: var(--heading-font);
    font-weight: 300;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0px;
    max-width: 420px;
}

.main-category-section__content span {
    color: var(--white);
    display: inline-block;
    font-family: var(--heading-font);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    margin-top: 24px;
    padding: 11px 22px 12px;
    position: relative;
    border: 1px solid rgba(245, 242, 238, 0.82);
    border-radius: 8px;
    background-color: rgba(6, 5, 4, 0.55);
    transition: var(--transition);
}

.main-category-section__content span::before {
    content: none;
}

.main-category-section__item:hover img {
    transform: scale(1.025);
    filter: saturate(1) brightness(1.1);
}

.main-category-section__item:hover::before {
    background:
        linear-gradient(90deg, rgba(6, 5, 4, 0.62) 0%, rgba(6, 5, 4, 0.36) 46%, rgba(6, 5, 4, 0.06) 100%),
        linear-gradient(180deg, rgba(72, 24, 0, 0.02) 0%, rgba(72, 24, 0, 0.34) 100%);
}

.main-category-section__item:hover .main-category-section__content span {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.decorative-services__item[id] {
    scroll-margin-top: 112px;
}

@media only screen and (max-width: 991px) {
    .main-category-section + .decorative-services {
        padding-top: 46px !important;
    }

    .main-category-section__intro {
        margin-inline-start: 0px;
    }

    .main-category-section__title {
        max-width: 680px;
    }

    .main-category-section__item {
        height: 330px;
        min-height: 0px;
    }
}

@media only screen and (max-width: 575px) {
    .main-category-section + .decorative-services {
        padding-top: 36px !important;
    }

    .main-category-section__item {
        height: 300px;
    }

    .main-category-section__content {
        inset-inline: 26px;
        inset-block-end: 28px;
        max-width: calc(100% - 52px);
    }

    .main-category-section__content h2 {
        font-size: 24px;
        line-height: 31px;
    }

    .main-category-section__content span {
        margin-top: 20px;
        padding: 10px 18px 11px;
    }
}

/* ==== main category styles end ==== */

/* ==== finish collection styles start ==== */
.finish-collection {
    overflow: hidden;
}

.finish-collection__intro {
    max-width: 760px;
    margin-inline: auto;
}

.finish-collection__tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding-block: 14px;
}

@media only screen and (min-width: 768px) {
    .finish-collection__tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (min-width: 1200px) {
    .finish-collection__tabs {
        grid-template-columns: 1.2fr 1.2fr 0.72fr 0.88fr 1fr;
        gap: 10px;
    }
}

.finish-collection__tabs button {
    min-height: 58px;
    border: 1px solid transparent;
    background-color: transparent;
    color: var(--template-color);
    font-family: var(--template-font);
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: var(--transition);
    padding: 12px 16px;
}

.finish-collection__tabs button.active,
.finish-collection__tabs button:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 500;
}

.finish-collection__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px 28px;
}

@media only screen and (min-width: 768px) {
    .finish-collection__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (min-width: 1200px) {
    .finish-collection__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.finish-card__thumb {
    min-height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #efede8 0%, #d8d5ce 100%);
}

.finish-card__thumb img {
    width: 78%;
    height: 78%;
    object-fit: cover;
    box-shadow: 0px 18px 34px rgba(72, 24, 0, 0.12);
    transition: transform 0.8s ease;
}

.finish-card:hover .finish-card__thumb img {
    transform: translateY(-8px) scale(1.03);
}

.finish-card__tag,
.finish-card__size {
    position: absolute;
    z-index: 2;
    color: var(--white);
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.finish-card__tag {
    inset-inline-start: 26px;
    inset-block-start: 0px;
    background-color: var(--primary-color);
    padding: 14px 9px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.finish-card__size {
    inset-inline-end: 28px;
    inset-block-start: 96px;
    background-color: rgba(72, 24, 0, 0.64);
    padding: 6px 10px;
}

.finish-card h3 {
    color: var(--template-color);
    font-family: var(--heading-font);
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
    margin-top: 28px;
}

@media only screen and (max-width: 575px) {
    .finish-collection__tabs,
    .finish-collection__grid {
        margin-top: 44px !important;
    }

    .finish-collection__tabs {
        gap: 8px;
        padding-block: 10px;
    }

    .finish-collection__tabs button {
        min-height: 52px;
        font-size: 12px;
        line-height: 17px;
        padding-inline: 12px;
    }

    .finish-card__thumb {
        min-height: 340px;
    }

    .finish-card h3 {
        font-size: 21px;
        line-height: 28px;
    }
}

/* ==== finish collection styles end ==== */

/* ==== parallax cta styles start ==== */
.parallax-cta {
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding-block: clamp(48px, 8vh, 84px);
    isolation: isolate;
}

.parallax-cta::before {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: -1;
    background: linear-gradient(90deg, rgba(72, 24, 0, 0.52) 0%, rgba(72, 24, 0, 0.26) 48%, rgba(72, 24, 0, 0.08) 100%);
}

.parallax-cta__bg {
    position: absolute;
    inset: -16% 0px;
    z-index: -2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transform: scale(1.03);
    will-change: transform;
}

.parallax-cta__content {
    max-width: 620px;
}

.parallax-cta__content h2 {
    color: var(--txt-light-4);
    font-size: 30px;
    line-height: 40px;
    margin-top: 12px;
    letter-spacing: 0px;
}

.parallax-cta__link {
    color: var(--white);
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
    margin-top: 22px !important;
}

.parallax-cta__link::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    inset-block-end: -3px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transition: var(--transition);
}

.parallax-cta__link:hover {
    color: var(--primary-color);
}

.parallax-cta__link:hover::before {
    width: 60%;
}

@media only screen and (max-width: 1199px) {
    .parallax-cta__content h2 {
        font-size: 28px;
        line-height: 38px;
    }
}

@media only screen and (max-width: 767px) {
    .parallax-cta {
        min-height: 100vh;
        min-height: 100svh;
        padding-block: 50px;
    }

    .parallax-cta::before {
        background: rgba(72, 24, 0, 0.48);
    }

    .parallax-cta__bg {
        inset: -10% 0px;
        background-position: center center;
    }

    .parallax-cta__content h2 {
        font-size: 24px;
        line-height: 32px;
    }
}

/* ==== parallax cta styles end ==== */

/* ==== quote maker styles start ==== */
.quote-maker {
    background-color: var(--secondary-color);
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;    
    border-top: 1px solid var(--border-color);
}

.quote-maker__intro {
    max-width: 720px;
    margin-inline: auto;
}

.quote-maker__intro h2 {
    text-transform: capitalize;
}

.quote-maker__form {
    max-width: 1264px;
    margin-inline: auto;
    margin-top: clamp(32px, 5vh, 54px) !important;
}

.quote-maker__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

@media only screen and (min-width: 992px) {
    .quote-maker__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 48px;
    }
}

.quote-maker__stack {
    display: grid;
    gap: 20px;
}

.quote-maker__split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media only screen and (min-width: 576px) {
    .quote-maker__split {
        grid-template-columns: minmax(0, 1.55fr) minmax(180px, 0.95fr);
    }
}

.quote-maker__field {
    width: 100%;
}

.quote-maker__field label {
    color: var(--txt-light);
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

.quote-maker__field input,
.quote-maker__field select,
.quote-maker__field textarea,
.quote-maker__field .nice-select {
    width: 100%;
    min-height: 54px;
    border: 1px solid var(--border-color);
    border-radius: 0px;
    background-color: var(--tertiary-color);
    color: var(--template-color);
    font-family: var(--template-font);
    font-size: 17px;
    line-height: 24px;
    font-weight: 300;
    padding: 14px 18px;
    transition: var(--transition);
}

.quote-maker__field .nice-select {
    float: none;
    height: 54px;
    display: flex;
    align-items: center;
    padding: 14px 48px 14px 18px;
}

.quote-maker__field .nice-select::after {
    border-color: var(--template-color);
    width: 9px;
    height: 9px;
    right: 22px;
}

.quote-maker__field .nice-select .current {
    color: var(--template-color);
    font-weight: 300;
}

.quote-maker__field .nice-select .list {
    width: 100%;
    border-radius: 0px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.quote-maker__field .nice-select .option {
    min-height: 42px;
    line-height: 42px;
}

.quote-maker__field select {
    appearance: auto;
}

.quote-maker__field textarea {
    min-height: 244px;
    resize: vertical;
}

.quote-maker__field input::placeholder,
.quote-maker__field textarea::placeholder {
    color: var(--txt-light-3);
}

.quote-maker__field input:focus,
.quote-maker__field select:focus,
.quote-maker__field textarea:focus,
.quote-maker__field .nice-select:focus,
.quote-maker__field .nice-select.open {
    border-color: var(--primary-color);
    background-color: var(--white);
}

.quote-maker__field--textarea {
    grid-row: span 3;
}

.quote-maker__cta .btn-primary {
    border-radius: 0px;
    min-width: 150px;
}

.quote-maker__cta {
    margin-top: clamp(32px, 5vh, 54px) !important;
}

.quote-maker__cta .btn-primary .btn-animated-text {
    padding: 15px 38px 17px;
    border-color: var(--template-color);
    background-color: var(--template-color);
    border-radius: 0px;
}

.quote-maker__cta .btn-primary .btn-animated-text span {
    color: var(--white);
}

@media only screen and (max-width: 991px) {
    .quote-maker__field--textarea {
        grid-row: auto;
    }
}

@media only screen and (max-width: 575px) {
    .quote-maker__form {
        margin-top: 42px !important;
    }

    .quote-maker__cta {
        margin-top: 42px !important;
    }

    .quote-maker__field input,
    .quote-maker__field select,
    .quote-maker__field textarea,
    .quote-maker__field .nice-select {
        font-size: 16px;
    }
}

/* ==== quote maker styles end ==== */

/* ==== journal section styles start ==== */
.journal-section {
    overflow: hidden;
}

.journal-section__header {
    max-width: 720px;
}

.journal-section__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.journal-section__navigation button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    transition: var(--transition);
}

.journal-section__navigation button img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.journal-section__navigation button:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.journal-section__navigation button:hover img {
    filter: brightness(0) invert(1);
}

.journal-section__slider {
    overflow: visible;
}

.journal-card__thumb {
    display: block;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    overflow: hidden;
    background-color: var(--secondary-color);
    width: 100%;
}

.journal-card__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.journal-card:hover .journal-card__thumb img {
    transform: scale(1.05);
}

.journal-card__content {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.journal-card__content span {
    color: var(--txt-light-3);
    display: block;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 0px;
}

.journal-card__content h3 {
    max-width: 360px;
    margin: 0px;
    line-height: 20px !important;
}

.journal-card__content h3 a {
    color: var(--template-color);
    font-family: var(--heading-font);
    font-size: 20px;
    line-height: 1.45;
    font-weight: 300;
}

@media only screen and (max-width: 767px) {
    .journal-card__thumb {
        min-height: 210px;
    }

    .journal-card__content {
        margin-top: 16px;
        gap: 10px;
    }
}

.journal-card__content h3 a:hover {
    color: var(--primary-color);
}

/* ==== journal section styles end ==== */

/* ==== ideas inspiration styles start ==== */
.ideas-inspiration {
    overflow: hidden;
}

.ideas-inspiration__intro {
    max-width: 760px;
}

.ideas-inspiration__text {
    max-width: 520px;
    margin-inline-start: auto;
}

.ideas-inspiration__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media only screen and (min-width: 768px) {
    .ideas-inspiration__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (min-width: 1200px) {
    .ideas-inspiration__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-rows: 260px;
        gap: 30px;
    }
}

.ideas-inspiration__item {
    min-height: 320px;
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--secondary-color);
}

@media only screen and (min-width: 1200px) {
    .ideas-inspiration__item {
        min-height: auto;
    }

    .ideas-inspiration__item--tall {
        grid-row: span 2;
    }

    .ideas-inspiration__item--wide {
        grid-column: span 2;
    }
}

.ideas-inspiration__item::before {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: 1;
    background: linear-gradient(180deg, rgba(72, 24, 0, 0.02) 0%, rgba(72, 24, 0, 0.48) 100%);
    opacity: 0.88;
    transition: var(--transition);
}

.ideas-inspiration__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
}

.ideas-inspiration__item span {
    position: absolute;
    inset-inline-start: 24px;
    inset-block-end: 22px;
    z-index: 2;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 24px;
    line-height: 30px;
    font-weight: 300;
}

.ideas-inspiration__item:hover img {
    transform: scale(1.06);
}

.ideas-inspiration__item:hover::before {
    opacity: 1;
}

.ideas-inspiration__cta .btn-primary .btn-animated-text {
    padding: 17px 36px 19px;
}

@media only screen and (max-width: 991px) {
    .ideas-inspiration__text {
        margin-inline-start: 0px;
    }
}

@media only screen and (max-width: 575px) {
    .ideas-inspiration__grid {
        margin-top: 50px !important;
    }

    .ideas-inspiration__cta {
        margin-top: 50px !important;
    }

    .ideas-inspiration__item {
        min-height: 280px;
    }
}

/* ==== ideas inspiration styles end ==== */

/* ==== why choose styles start ==== */
.why-choose {
    overflow: hidden;
    padding-bottom: 120px !important;
}

.why-choose__intro {
    max-width: 760px;
}

.why-choose__text {
    max-width: 520px;
    margin-inline-start: auto;
}

.why-choose__grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

@media only screen and (min-width: 768px) {
    .why-choose__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (min-width: 1200px) {
    .why-choose__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.why-choose__single1 {
	min-height: 330px;
	padding: 34px 28px;
	border-right: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	transition: var(--transition);
}

.why-choose__single1 span {
	color: var(--primary-color);
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	margin-bottom:16px;
}

.why-choose__single1 h3 {
	color: var(--template-color);
	font-family: var(--heading-font);
	font-size: 30px;
	line-height: 38px;
	font-weight: 300;
	margin-top:24px;
	min-height:60px;
}

.why-choose__single1 p {
	color: var(--txt-light);
	max-width: 330px;
}

.why-choose__single1:hover {
	background-color: var(--tertiary-color);
}

@media only screen and (max-width: 991px) {
	.why-choose__text {
		margin-inline-start: 0px;
	}
}

@media only screen and (max-width: 575px) {
	.why-choose__grid {
		margin-top: 50px !important;
	}

	.why-choose__single1 {
		min-height: 280px;
		padding: 28px 22px;
	}

	.why-choose__single1 h3 {
		font-size: 26px;
		line-height: 34px;
		min-height: auto;
	}
}
.why-choose__single {
    min-height: 330px;
    padding: 34px 28px;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.why-choose__single span {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.why-choose__single h3 {
    color: var(--template-color);
    font-family: var(--heading-font);
    font-size: 30px;
    line-height: 38px;
    font-weight: 300;
    margin-top: 82px;
    min-height: 76px;
}

.why-choose__single p {
    color: var(--txt-light);
    margin-top: 20px;
    max-width: 330px;
}

.why-choose__single:hover {
    background-color: var(--tertiary-color);
}

@media only screen and (max-width: 991px) {
    .why-choose__text {
        margin-inline-start: 0px;
    }
}

@media only screen and (max-width: 575px) {
    .why-choose__grid {
        margin-top: 50px !important;
    }

    .why-choose__single {
        min-height: 280px;
        padding: 28px 22px;
    }

    .why-choose__single h3 {
        font-size: 26px;
        line-height: 34px;
        min-height: auto;
        margin-top: 58px;
    }
}

/* ==== why choose styles end ==== */

body:not(.home-page) .why-choose .row {
    justify-content: center;
    text-align: center;
}

body:not(.home-page) .why-choose__intro,
body:not(.home-page) .why-choose__text,
body:not(.home-page) .decorative-services__header,
body:not(.home-page) .decorative-services__intro {
    margin-inline: auto;
    text-align: center;
}

@media only screen and (min-width: 1200px) {
    body:not(.home-page) .why-choose__grid:has(> article:nth-child(5)) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@keyframes backgroundAnimation {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.project-four {
    position: relative;
    z-index: 1;
    overflow: clip;
    background-color: var(--primary-color);
}

.project-four .title-animation-color {
    --char-default: #B8B3AE;
    --char-active: #F5F2EE;
}

.project-four .swiper-slide {
    max-width: calc(100% - 24px);
    opacity: 0.5;
}

@media only screen and (min-width: 576px) {
    .project-four .swiper-slide {
        max-width: calc(100% - 160px);
    }
}

@media only screen and (min-width: 768px) {
    .project-four .swiper-slide {
        max-width: 600px;
    }
}

@media only screen and (min-width: 992px) {
    .project-four .swiper-slide {
        max-width: 800px;
    }
}

@media only screen and (min-width: 1200px) {
    .project-four .swiper-slide {
        max-width: 1000px;
    }
}

@media only screen and (min-width: 1400px) {
    .project-four .swiper-slide {
        max-width: 1296px;
    }
}

.project-four .swiper-slide-active {
    opacity: 1;
}

.project-four .swiper-slide-active .content-wrapper {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.project-four .btn-secondary .btn-animated-text {
    padding-block: 20px 22px;
}

.project-four .btn-secondary:hover .btn-animated-text {
    background-color: #ddd8d2;
    border: 1px solid #ddd8d2;
}

.project-four .btn-secondary:hover .btn-animated-text span {
    color: var(--black);
}

.project-four__inner {
    max-width: 880px;
    margin-inline: auto;
}

.project-four__inner .divide-cs {
    width: 1px;
    height: 100px;
    background-color: rgba(245, 242, 238, 0.3294117647);
}

.project-four-slider__single {
    width: 100%;
}

.project-four-slider__single .thumb-wrapper {
    position: relative;
}

.project-four-slider__single .thumb {
    position: relative;
    z-index: 1;
}

.project-four-slider__single .thumb::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(72, 24, 0, 0.4392156863);
}

.project-four-slider__single .thumb img {
    min-height: 500px;
}

.project-four-slider__single .project-four-meta {
    position: absolute;
    inset-inline-end: 0px;
    inset-block: 0px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px 0px;
    background-color: rgba(245, 242, 238, 0.1254901961);
    backdrop-filter: blur(10px);
    max-width: 90px;
    transition: var(--transition);
    transition-delay: 0.7s;
}

@media only screen and (min-width: 576px) {
    .project-four-slider__single .project-four-meta {
        max-width: 100%;
    }
}

.project-four-slider__single .project-four-meta__single {
    transform: rotate(90deg) translateY(16px);
    transform-origin: center center;
    width: max-content;
}

@media only screen and (min-width: 576px) {
    .project-four-slider__single .project-four-meta__single {
        transform: rotate(90deg);
    }
}

.project-four-slider__single .project-four-meta__single p,
.project-four-slider__single .project-four-meta__single a {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(245, 242, 238, 0.8470588235);
}

.project-four-slider__single .project-four-meta__single a:hover {
    color: var(--white);
}

.project-four-slider__single p,
.project-four-slider__single span,
.project-four-slider__single .title-lg,
.project-four-slider__single a {
    color: #F5F2EE;
}

.project-four-slider__single p,
.project-four-slider__single span {
    letter-spacing: 1px;
}

.project-four-slider__single .content-left {
    max-width: 1000px;
}

.project-four-slider__single .title-lg {
    margin-bottom: -0.25em;
}

.project-four-slider__single .title-lg a {
    display: inline-block;
}

.project-four-slider__single .title-lg a i {
    position: relative;
    bottom: 0px;
    font-weight: 500;
    margin-inline-start: 12px;
    bottom: -3px;
}

@media only screen and (min-width: 576px) {
    .project-four-slider__single .title-lg a i {
        bottom: -5px;
    }
}

@media only screen and (min-width: 992px) {
    .project-four-slider__single .title-lg a i {
        bottom: -6px;
    }
}

@media only screen and (min-width: 1200px) {
    .project-four-slider__single .title-lg a i {
        bottom: -10px;
    }
}

@media only screen and (min-width: 1400px) {
    .project-four-slider__single .title-lg a i {
        bottom: -10px;
    }
}

@media only screen and (min-width: 1600px) {
    .project-four-slider__single .title-lg a i {
        bottom: -15px;
    }
}

.project-four-slider__single .content-wrapper {
    padding-inline: 20px;
    position: relative;
    z-index: 2;
    top: -240px;
    margin-bottom: -240px;
    transform: translateX(40px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    transition-delay: 0.7s;
}

@media only screen and (min-width: 768px) {
    .project-four-slider__single .content-wrapper {
        padding-inline: 40px;
        top: -202px;
        margin-bottom: -202px;
    }
}

@media only screen and (min-width: 992px) {
    .project-four-slider__single .content-wrapper {
        top: -210px;
        margin-bottom: -210px;
    }
}

@media only screen and (min-width: 1200px) {
    .project-four-slider__single .content-wrapper {
        top: -285px;
        margin-bottom: -285px;
    }
}

@media only screen and (min-width: 1400px) {
    .project-four-slider__single .content-wrapper {
        top: -300px;
        margin-bottom: -300px;
    }
}

@media only screen and (min-width: 1600px) {
    .project-four-slider__single .content-wrapper {
        top: -330px;
        margin-bottom: -330px;
    }
}

.project-four-slider__single .content-wrapper .fraunces {
    font-weight: 200;
}

.project-four-slider__single .content-inner {
    display: flex;
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

@media only screen and (min-width: 768px) {
    .project-four-slider__single .content-inner {
        align-items: center;
        flex-direction: row;
    }
}

.project-four-slider__single .content-right {
    margin-top: 60px;
}

@media only screen and (min-width: 576px) {
    .project-four-slider__single .content-right {
        margin-top: 50px;
    }
}

@media only screen and (min-width: 768px) {
    .project-four-slider__single .content-right {
        margin-top: 80px;
    }
}

.project-four-slider__single .content-right p {
    position: relative;
    padding-inline-start: 18px;
    font-weight: 300;
    color: rgba(245, 242, 238, 0.8470588235);
}

.project-four-slider__single .content-right p::before {
    content: "";
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    inset-inline-start: 0px;
    width: 12px;
    height: 12px;
    border: 1px solid #F5F2EE;
    border-radius: 50%;
}

.slider-progress {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(245, 242, 238, 0.2666666667);
    overflow: hidden;
    max-width: 100%;
    margin-inline: auto;
}

@media only screen and (min-width: 576px) {
    .slider-progress {
        max-width: calc(100% - 100px);
    }
}

@media only screen and (min-width: 768px) {
    .slider-progress {
        max-width: 600px;
    }
}

@media only screen and (min-width: 992px) {
    .slider-progress {
        max-width: 800px;
    }
}

@media only screen and (min-width: 1200px) {
    .slider-progress {
        max-width: 1000px;
    }
}

@media only screen and (min-width: 1400px) {
    .slider-progress {
        max-width: 1296px;
    }
}

.slider-progress-fill {
    width: 0%;
    height: 100%;
    position: absolute;
    background: #F5F2EE;
    inset: 0px;
}

.project-four-cta-bottom {
    max-width: 100%;
    margin-inline: auto;
}

@media only screen and (min-width: 576px) {
    .project-four-cta-bottom {
        max-width: calc(100% - 100px);
    }
}

@media only screen and (min-width: 768px) {
    .project-four-cta-bottom {
        max-width: 600px;
    }
}

@media only screen and (min-width: 992px) {
    .project-four-cta-bottom {
        max-width: 800px;
    }
}

@media only screen and (min-width: 1200px) {
    .project-four-cta-bottom {
        max-width: 1000px;
    }
}

@media only screen and (min-width: 1400px) {
    .project-four-cta-bottom {
        max-width: 1296px;
    }
}

.project-tabs-wrapper {
    max-width: 460px;
    margin-inline-start: auto;
}

.project-tabs__btns {
    border-bottom: 1px solid #D2CEC8;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    overflow-x: clip;
}

.project-tabs__btns .project-tab-btn {
    padding-bottom: 14px;
    position: relative;
    z-index: 1;
}

.project-tabs__btns .project-tab-btn::before {
    content: "";
    position: absolute;
    inset-block-start: calc(100% - 0.7px);
    inset-inline-start: 0px;
    height: 2px;
    width: 0px;
    background-color: var(--template-color);
    transition: var(--transition);
}

.project-tabs__btns .project-tab-btn:hover::before {
    width: 140%;
}

.project-tabs__btns .project-tab-btn.active::before {
    width: 140%;
}

.project-tabs__single li {
    margin-bottom: 20px;
}

.project-tabs__single li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.project-tabs__single .project-cm-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #D2CEC8;
    padding-bottom: 16px;
    color: rgba(72, 24, 0, 0.5019607843);
    font-weight: 500;
}

.project-tabs__single .project-cm-btn span {
    padding: 8px 20px 4px;
    background-color: #E9E6E0;
    border-radius: 20px;
    color: var(--template-color);
    transition: var(--transition);
}

.project-tabs__single .project-cm-btn:hover {
    color: var(--template-color);
}

.project-tabs__single .project-cm-btn:hover span {
    background-color: #C08860;
    color: var(--white);
}

.project-tabs__single .project-cm-btn.active {
    color: var(--template-color);
}

.project-tabs__single .project-cm-btn.active span {
    background-color: #C08860;
    color: var(--white);
}

/* ==== 
 --------- (5.14) project styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.15) creative styles start ---------
 ==== */

.creative {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.creative .thumb img {
    width: 100%;
    min-height: 240px;
}

.creative .parallax-image-inner,
.creative .parallax-image-wrap {
    width: 100%;
    height: 100%;
}

.creative .small-thumb-wrapper {
    max-width: 320px;
}

.creative .small-thumb-wrapper a span {
    position: relative;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--txt-light);
    transition: var(--transition);
}

.creative .small-thumb-wrapper a span::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    inset-block-end: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--txt-light);
    transition: var(--transition);
}

.creative .small-thumb-wrapper a i {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: -3px;
    color: var(--txt-light);
}

.creative .small-thumb-wrapper a:hover {
    color: var(--primary-color);
}

.creative .small-thumb-wrapper a:hover span {
    color: var(--primary-color);
}

.creative .small-thumb-wrapper a:hover span::before {
    width: 100%;
    background-color: var(--primary-color);
}

.creative .small-thumb-wrapper a:hover i {
    color: var(--primary-color);
}

.creative .divider {
    max-width: 150px;
}

.creative .large-thumb-wrapper img {
    min-height: 460px;
}

.creative .content-cta {
    margin-top: 30px;
}

@media only screen and (min-width: 576px) {
    .creative .content-cta {
        margin-top: 80px;
    }
}

.creative__text {
    max-width: 340px;
}

@media only screen and (min-width: 768px) {
    .creative__text {
        margin-inline-start: auto;
    }
}

.creative__text span {
    color: #C08860;
}

@media only screen and (min-width: 768px) {
    .creative__link {
        text-align: end;
    }
}

.creative__link a:hover::before {
    background-color: var(--primary-color);
}

.creative__link a:hover {
    color: var(--primary-color);
}

@media only screen and (min-width: 992px) {
    .creative__wrapper {
        margin-block-start: 200px;
    }
}

.creative__wrapper .hover-line-bottom-two {
    color: var(--txt-light);
}

.creative__wrapper .hover-line-bottom-two:hover::before {
    background-color: var(--primary-color);
}

.creative__wrapper .hover-line-bottom-two::before {
    width: 100%;
    background-color: var(--txt-light);
}

.creative-four__intro {
    position: relative;
}

@media only screen and (max-width: 1399px) {
    .creative-four__intro {
        max-width: 630px;
        margin-inline: auto;
    }
}

@media only screen and (max-width: 991px) {
    .creative-four__intro {
        max-width: 380px;
    }
}

@media only screen and (max-width: 767px) {
    .creative-four__intro {
        margin-inline: unset;
        max-width: 430px;
    }
}

@media only screen and (min-width: 1200px) {
    .creative-four__intro .title-sm {
        line-height: 54px;
    }
}

@media only screen and (min-width: 1400px) {
    .creative-four__intro .title-sm {
        max-width: 630px;
        margin-inline: auto;
    }
}

.creative-four__intro .fraunces {
    display: inline;
}

.creative-four__intro .subtle {
    margin-bottom: 30px;
}

@media only screen and (min-width: 1400px) {
    .creative-four__intro .subtle {
        position: absolute;
        inset-inline-start: 0px;
        inset-block-start: 6px;
        margin-bottom: 0px;
    }
}

/* ==== 
 --------- (5.15) creative styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.16) news styles start ---------
 ==== */

.news {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media only screen and (min-width: 768px) {
    .news .news__cta {
        text-align: end;
    }
}

.news .news__single {
    width: 100%;
    overflow: hidden;
}

.news .news__single:hover .news__name {
    transform: translateY(0px);
}

.news .news__single:hover .news__thumb::before {
    transform: translateY(0px);
}

.news .news__single:hover .news__content a {
    color: var(--primary-color);
}

.news .news__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.news .news__meta .divide-cs {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.news .news__thumb {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.news .news__thumb::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(72, 24, 0, 0.3137254902);
    transition: var(--transition);
    transform: translateY(-100%);
}

.news .news__thumb img {
    width: 100%;
    min-height: 400px;
}

.news .news__thumb .parallax-image-wrap,
.news .news__thumb .parallax-image-inner {
    width: 100%;
    height: 100%;
}

.news .news__name {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transform: translateY(100%);
    transition: var(--transition);
}

.news .news__name a {
    color: #F5F2EE;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.news .news__name a::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #F5F2EE;
    border-radius: 50%;
}

@media (min-width: 768px) and (max-width: 991px) {
    .news .news__content {
        max-width: 350px;
    }
}

.news-two__single:hover .thumb-wrapper::before {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.news-two__single:hover .news-two-btn {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.news-two__single:hover .content a {
    color: var(--primary-color);
}

.news-two__single:hover .content a span {
    background-position: 0 90%;
    background-size: 100% 0.06em;
}

.news-two__single .thumb-wrapper {
    position: relative;
    overflow: hidden;
}

.news-two__single .thumb-wrapper::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(72, 24, 0, 0.3764705882);
    z-index: 1;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
}

.news-two__single .thumb-wrapper a,
.news-two__single .thumb-wrapper img {
    width: 100%;
    display: inline-block;
}

.news-two__single .thumb-wrapper img {
    min-height: 400px;
}

.news-two__single a:hover {
    color: var(--primary-color);
}

.news-two__single .thumb {
    overflow: hidden;
}

@media only screen and (min-width: 768px) {
    .news-two__single .content {
        max-width: 460px;
    }
}

.news-two__single .content a {
    display: inline;
}

.news-two__single .content a span {
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    transition: background-size 0.5s;
    display: inline;
    background-position: 100% 90%;
    background-size: 0 0.06em;
}

.news-two__single .content a:hover {
    color: var(--primary-color);
}

.news-two__single .content a:hover span {
    background-position: 0 90%;
    background-size: 100% 0.06em;
}

.news-two__single .news-two-btn {
    position: absolute;
    inset-inline-end: 0px;
    inset-block-end: 0px;
    z-index: 2;
    transition: var(--transition);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.news-two__single .news-two-btn a {
    padding: 17px 32px 19px;
    background-color: var(--primary-color);
}

.news-two__single .news-two-btn a span {
    position: relative;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--white);
    transition: var(--transition);
}

.news-two__single .news-two-btn a span::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    inset-block-end: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--white);
    transition: var(--transition);
}

.news-two__single .news-two-btn a i {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: -3px;
    color: var(--white);
}

.news-two__single .news-two-btn a:hover {
    color: var(--white);
}

.news-two__single .news-two-btn a:hover span {
    color: var(--white);
}

.news-two__single .news-two-btn a:hover span::before {
    width: 100%;
    background-color: var(--white);
}

.news-two__single .news-two-btn a:hover i {
    color: var(--white);
}

.news-two-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.news-two-meta span {
    color: var(--primary-color);
}

.news-three__filter ul {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media only screen and (min-width: 992px) {
    .news-three__filter ul {
        justify-content: flex-end;
    }
}

.news-three__filter button {
    padding: 10px 20px 12px;
    border: 1px solid #D2CEC8;
    border-radius: 60px;
}

.news-three__filter button:hover {
    background-color: var(--template-color);
    color: var(--template-bg);
    border-color: var(--template-color);
}

.news-three__filter .active {
    background-color: var(--template-color);
    color: var(--template-bg);
    border-color: var(--template-color);
}

.news-three {
    position: relative;
    z-index: 1;
}

.news-three .grid {
    margin-bottom: -40px;
}

.news-three__single {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.news-three__single .thumb-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.news-three__single .thumb-wrapper::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(72, 24, 0, 0.0823529412);
    z-index: 2;
    backdrop-filter: blur(15px);
    transition: var(--transition);
    transform: translateY(-100%);
}

.news-three__single .thumb-wrapper a {
    position: absolute;
    inset-block-end: 0px;
    inset-inline-start: 0px;
    padding: 24px 30px;
    background-color: #481800;
    color: white;
    z-index: 3;
    transform: translateY(150%);
}

.news-three__single .thumb-wrapper a span {
    position: absolute;
    width: 36px;
    height: 36px;
    inset-inline-start: 100%;
    inset-block-end: 100%;
    background-color: #C08860;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0% 0%, 70% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 0%);
}

.news-three__single .thumb a,
.news-three__single .thumb img {
    width: 100%;
}

.news-three__single .thumb img {
    min-height: 400px;
}

.news-three__single .thumb-list img {
    max-height: 480px;
}

.news-three__single .news-three__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-block: 16px;
    border-bottom: 1px solid #D2CEC8;
}

.news-three__single .news-three__meta p {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    letter-spacing: 0.5px;
    gap: 6px;
}

.news-three__single .news-three__meta p i {
    font-size: 20px;
}

.news-three__single .news-three__meta .author {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.news-three__single .tags {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-three__single .tags a {
    padding: 2px 14px;
    background-color: var(--template-bg);
    border: 1px solid #D2CEC8;
    border-radius: 24px;
    font-size: 14px;
}

.news-three__single .tags a:hover {
    background-color: var(--template-color);
    color: var(--template-bg);
}

@media only screen and (min-width: 768px) {
    .news-three__single .title-xxs {
        max-width: 380px;
    }
}

.news-three__single .title-xxs a:hover {
    color: var(--primary-color);
}

.news-three__single .title-lg-sm a:hover {
    color: var(--primary-color);
}

.news-three__single:hover .thumb-wrapper::before,
.news-three__single:hover .thumb-wrapper a {
    transform: translateY(0px);
}

.news-details-banner h2 {
    letter-spacing: -0.04em;
    max-width: 380px;
    margin-inline: auto;
}

@media only screen and (min-width: 576px) {
    .news-details-banner h2 {
        max-width: 100%;
    }
}

.news-details__banner-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.news-details__banner-meta-single {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 60px;
}

.news-details__banner-meta-single i {
    font-size: 20px;
    margin-top: -5px;
}

.news-details-poster img {
    width: 100%;
    min-height: 260px;
}

.news-details__group-list li {
    position: relative;
    padding-inline-start: 20px;
    margin-bottom: 20px;
}

.news-details__group-list li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.news-details__group-list li::before {
    content: "";
    position: absolute;
    top: 24%;
    transform: translateY(-24%);
    inset-inline-start: 0px;
    width: 6px;
    height: 6px;
    background-color: var(--template-color);
    border-radius: 50%;
}

.poster-sm img {
    width: 100%;
    min-height: 200px;
}

.news-details__group-thumb {
    display: flex;
    align-items: center;
    gap: 24px;
}

.news-details__group-thumb .thumb-lg {
    width: calc(58% - 12px);
    height: 100%;
}

.news-details__group-thumb .thumb-sm {
    width: calc(42% - 12px);
    height: 100%;
}

.news-details__group-thumb img {
    width: 100%;
    height: 100%;
    min-height: 230px;
}

@media only screen and (min-width: 576px) {
    .news-details__group-thumb img {
        min-height: 370px;
    }
}

.news-quote {
    padding: 40px 20px;
    background-color: #E9E6E0;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

@media only screen and (min-width: 576px) {
    .news-quote {
        gap: 50px;
        padding: 45px 60px;
    }
}

.news-quote blockquote {
    max-width: 540px;
}

@media only screen and (min-width: 1200px) {
    .news-quote blockquote {
        font-size: 34px;
        line-height: 44px;
    }
}

.news-quote p {
    position: relative;
    padding-block-start: 8px;
}

.news-quote p::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    inset-block-end: 100%;
    width: 40px;
    height: 1px;
    background-color: var(--txt-light);
}

.news-details__group-meta {
    padding-block: 24px;
    border-block: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
}

@media only screen and (min-width: 768px) {
    .news-details__group-meta {
        flex-direction: row;
        align-items: center;
    }
}

.news-details__group-meta .author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-details__group-meta .dot {
    width: 6px;
    height: 6px;
    background-color: #C08860;
    border-radius: 50%;
    margin-top: -4px;
}

.tags-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

@media only screen and (min-width: 768px) {
    .tags-wrapper {
        justify-content: flex-end;
    }
}

.tags-wrapper a {
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 60px;
    border: 1px solid var(--border-color);
    color: var(--txt-light);
    letter-spacing: 1px;
}

.tags-wrapper a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.comment-single {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-block: 40px;
    border-block-start: 1px solid var(--border-color);
}

@media only screen and (min-width: 576px) {
    .comment-single {
        gap: 24px;
    }
}

.comment-single .author {
    min-width: 60px;
}

@media only screen and (min-width: 576px) {
    .comment-single .author {
        min-width: 80px;
    }
}

.comment-single .author-review {
    flex-grow: 1;
    width: 100%;
}

.comment-single .author-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    row-gap: 12px;
    justify-content: space-between;
}

.comment-single .author-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.comment-single .author-cta p {
    margin-top: 0px;
}

@media only screen and (min-width: 576px) {
    .comment-single .author-cta {
        justify-content: flex-end;
    }
}

.comment-single .reply-button button {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--txt-light);
    line-height: 1;
}

.comment-single .reply-button button:hover {
    background-color: #C08860;
    color: var(--white);
    border: 1px solid #C08860;
}

.comment-single .reply-button .active {
    background-color: #C08860;
    color: var(--white);
    border: 1px solid #C08860;
}

.reply-comment {
    margin-top: 30px;
    display: none;
}

.reply-comment .input-single {
    width: 100%;
}

.reply-comment .input-single textarea {
    background-color: transparent;
    border: 1px solid var(--border-color);
    height: 120px;
    min-height: 120px;
    transition: var(--transition);
    color: var(--txt-light);
}

.reply-comment .input-single textarea:focus {
    border-color: var(--primary-color);
}

.reply-comment .input-single textarea::placeholder {
    color: var(--txt-light);
    opacity: 0.5;
}

.comment-single-reply {
    margin-inline-start: 0px;
}

@media only screen and (min-width: 768px) {
    .comment-single-reply {
        margin-inline-start: 60px;
    }
}

.comment-single-wrapper:nth-last-of-type(1) .comment-single {
    border-block-end: 1px solid var(--border-color);
}

/* ==== 
 --------- (5.16) news styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.17) contact styles start ---------
 ==== */

.contact-banner {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-banner .contact-banner__content .title-md {
    letter-spacing: -0.01em;
    margin-top: 20px;
    max-width: 240px;
}

@media only screen and (min-width: 576px) {
    .contact-banner .contact-banner__content .title-md {
        max-width: 300px;
    }
}

@media only screen and (min-width: 768px) {
    .contact-banner .contact-banner__content .title-md {
        max-width: 100%;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .contact-banner .contact-banner__content .title-md {
        font-size: 50px;
        line-height: 60px;
    }
}

@media only screen and (min-width: 992px) {
    .contact-banner .contact-banner__content .title-md {
        margin-top: 30px;
    }
}

.contact-banner .contact-banner__content .contact-banner__content-cta {
    margin-top: 30px;
}

@media only screen and (min-width: 992px) {
    .contact-banner .contact-banner__content .contact-banner__content-cta {
        margin-top: 40px;
    }
}

@media only screen and (min-width: 1200px) {
    .contact-banner .contact-banner__content .btn-primary .btn-animated-text {
        padding: 16px 32px 18px;
        font-weight: 600;
        font-size: 16px;
    }
}

.contact-banner__address {
    margin-top: 420px;
}

@media only screen and (min-width: 576px) {
    .contact-banner__address {
        margin-top: 350px;
    }
}

@media only screen and (min-width: 1400px) {
    .contact-banner__address {
        margin-top: 350px;
    }
}

.contact-banner__address .text-xxl {
    position: relative;
    display: inline-block;
    line-height: 1;
}

.contact-banner__address .text-xxl::before {
    content: "";
    position: absolute;
    inset-inline: 0px;
    inset-block-end: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--template-color);
}

.contact-banner__address-list {
    max-width: 260px;
    margin-top: 30px;
}

.contact-banner__address-list ul {
    margin-top: 30px;
}

.contact-banner__address-list li {
    margin-bottom: 12px;
}

.contact-banner__address-list li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.contact-banner__address-list a {
    color: var(--txt-light);
}

.contact-banner__address-list a i {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: -1px;
}

.contact-banner__address-list a:hover {
    color: var(--primary-color);
}

.contact-banner__thumb-content {
    display: flex;
    gap: 0px;
    background-color: #E9E6E0;
    position: absolute;
    z-index: 1;
    inset-inline-end: 12px;
    inset-block-end: 20%;
    min-width: 240px;
}

@media only screen and (min-width: 576px) {
    .contact-banner__thumb-content {
        position: relative;
        inset-inline-end: unset;
        inset-block-end: unset;
        min-width: auto;
    }
}

.contact-banner__thumb-content .thumb {
    background-color: #C08860;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 64px;
}

.contact-banner__thumb-content .thumb i {
    font-size: 20px;
    color: var(--white);
}

.contact-banner__thumb-content .content {
    flex-grow: 1;
}

.contact-banner__thumb-content .intro {
    padding: 24px 20px;
}

.contact-banner__thumb-content .content-info {
    padding: 30px 20px;
    border-block-start: 1px solid #D2CEC8;
    border-inline-start: 1px solid #D2CEC8;
}

.contact-banner__thumb-content a {
    position: relative;
}

.contact-banner__thumb-content a::before {
    content: "";
    position: absolute;
    inset-block-end: 0px;
    inset-inline: 0px;
    width: 0%;
    height: 1px;
    background-color: #C08860;
    transition: var(--transition);
}

.contact-banner__thumb-content a:hover {
    color: #C08860;
}

.contact-banner__thumb-content a:hover::before {
    width: 100%;
}

.contact-banner__thumb-wrapper {
    direction: ltr;
}

.contact-banner__thumb-left {
    min-width: 250px;
}

.contact-banner__thumb {
    position: absolute;
    inset-inline-end: 0px;
    inset-block-start: 90px;
    width: 46vw;
    min-width: 46vw;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media only screen and (min-width: 1200px) {
    .contact-banner__thumb {
        inset-block-start: 98px;
    }
}

@media only screen and (min-width: 1400px) {
    .contact-banner__thumb {
        justify-content: flex-end;
        inset-block-start: 98px;
    }
}

.contact-banner__thumb-right img {
    min-width: 460px;
}

.contact-banner__thumb-single {
    position: relative;
}

@media only screen and (max-width: 991px) {
    .contact-banner__thumb-single {
        z-index: -1;
    }
}

.contact-banner__thumb-single img {
    min-height: 320px;
}

@media only screen and (min-width: 992px) {
    .contact-banner__thumb-single:nth-last-of-type(1) img {
        min-height: 600px;
    }
}

@media only screen and (min-width: 1200px) {
    .contact-banner__thumb-single:nth-last-of-type(1) img {
        min-height: 725px;
    }
}

@media only screen and (min-width: 1400px) {
    .contact-banner__thumb-single:nth-last-of-type(1) img {
        min-height: 725px;
    }
}

.contact-form .contact-form__inner {
    position: relative;
    z-index: 1;
}

.contact-form .contact-form__inner::after {
    content: "";
    position: absolute;
    inset-inline: 0px;
    inset-block-end: 0px;
    height: 20px;
    background-color: #C08860;
}

.contact-form .contact-form__inner::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0px;
    background-color: rgba(72, 24, 0, 0.368627451);
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
}

.contact-form .divider {
    margin-block: 100px 80px;
    border-color: rgba(245, 242, 238, 0.2039215686);
}

.contact-form .contact-form-bg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: -3;
}

.contact-form .contact-form-bg img,
.contact-form .contact-form-bg .parallax-image-wrap,
.contact-form .contact-form-bg .parallax-image-inner {
    width: 100%;
    height: 100%;
}

.contact-form__content-intro h2 {
    max-width: 170px;
}

@media only screen and (min-width: 425px) {
    .contact-form__content-intro h2 {
        max-width: 100%;
    }
}

@media only screen and (min-width: 992px) {
    .contact-form__content-intro h2 {
        max-width: 280px;
    }
}

@media only screen and (min-width: 1200px) {
    .contact-form__content-intro h2 {
        max-width: 100%;
    }
}

.contact-form__content-intro p {
    max-width: 480px;
    margin-top: 10px;
}

@media only screen and (min-width: 992px) {
    .contact-form__content-intro p {
        max-width: 100%;
        margin-top: 16px;
    }
}

.office-location {
    padding: 14px;
    background-color: var(--template-bg);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    max-width: 480px;
}

@media only screen and (min-width: 992px) {
    .office-location {
        margin-top: 100px;
        max-width: 100%;
    }
}

.office-location img {
    width: 100%;
    max-width: 180px;
    height: 150px;
}

.office-location .location-content {
    max-width: 220px;
}

.office-location a {
    color: var(--txt-light);
}

.office-location a:hover {
    color: var(--template-color);
}

.office-location .cta a span {
    position: relative;
    font-weight: 500;
}

.office-location .cta a span::before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    inset-block-end: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--txt-light);
    transition: var(--transition);
}

.office-location .cta a i {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: -3px;
}

.office-location .cta a:hover span::before {
    width: 100%;
    background-color: var(--template-color);
}

.contact-form__main {
    padding: 40px 20px;
    background-color: rgba(159, 154, 147, 0.8);
    border: 1px solid rgba(110, 101, 78, 0.7);
    border-radius: 8px;
}

@media only screen and (min-width: 576px) {
    .contact-form__main {
        padding: 40px;
    }
}

.contact-form__main .btn-secondary {
    width: 100%;
    justify-content: center;
}

.contact-form__main .btn-animated-text {
    border-radius: 6px;
    font-size: 16px;
    background-color: #481800;
    border-color: #481800;
}

.contact-form__main .btn-animated-text span {
    color: var(--white);
    letter-spacing: 2px;
    font-weight: 600;
}

.contact-form__main .btn-animated-text:hover {
    background-color: var(--white);
    border-color: var(--white);
}

.contact-form__main .btn-animated-text:hover span {
    color: #481800;
}

/* ==== 
 --------- (5.17) contact styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.18) partner styles start ---------
 ==== */

.partner {
    overflow-x: clip;
    direction: ltr;
}

.partner .container-fluid {
    padding-inline: 0px;
}

.partner .partner__inner {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 0px;
    direction: ltr;
}

.partner .partner__inner:hover .partner__slider {
    animation-play-state: paused;
}

.partner img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(5569%) hue-rotate(303deg) brightness(87%) contrast(61%);
    transition: filter 0.2s ease;
    max-width: 200px;
}

@media only screen and (min-width: 992px) {
    .partner img {
        max-width: 300px;
    }
}

.partner .partner__slider {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0px;
    direction: ltr;
    min-width: max-content;
    justify-content: space-between;
    animation: scroll 15s linear infinite;
}

.partner .partner__single {
    flex: 0 0 auto;
    padding-inline: 30px;
}

@media only screen and (min-width: 992px) {
    .partner .partner__single {
        padding-inline: 70px;
    }
}

.partner .partner__single:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(109deg) brightness(113%) contrast(100%);
}

.partner-hover-red {
    border-bottom: 1px solid var(--txt-light);
}

.partner-hover-red .partner__single:hover img {
    filter: brightness(0) saturate(100%) invert(37%) sepia(53%) saturate(2071%) hue-rotate(336deg) brightness(98%) contrast(100%);
}

.partner-hover-black {
    border-top: 1px solid #D2CEC8;
}

.partner-hover-black .partner__single:hover img {
    filter: brightness(0) saturate(100%) invert(3%) sepia(33%) saturate(920%) hue-rotate(323deg) brightness(105%) contrast(102%);
}

.partner-two {
    border-bottom: 1px solid #E3DFDA;
}

.partner-two .container-fluid {
    padding-inline: 0px;
}

.partner-two .partner__inner {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 0px;
    direction: ltr;
}

.partner-two .partner__inner:hover .partner__slider {
    animation-play-state: paused;
}

.partner-two .partner__slider {
    display: flex;
    align-items: center;
    gap: 0px;
    width: 100%;
    flex-shrink: 0;
    direction: ltr;
    min-width: max-content;
    justify-content: space-between;
    animation: scroll 15s linear infinite;
}

.partner-two .partner__single {
    flex-grow: 1;
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-right: 1px solid #E3DFDA;
    transition: var(--transition);
}

@media only screen and (min-width: 992px) {
    .partner-two .partner__single {
        height: 300px;
    }
}

.partner-two .partner__single:hover {
    background-color: var(--primary-color);
}

.partner-two .partner__single:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7482%) hue-rotate(206deg) brightness(105%) contrast(97%);
}

.partner-two img {
    filter: brightness(0) saturate(100%) invert(86%) sepia(9%) saturate(168%) hue-rotate(349deg) brightness(86%) contrast(83%);
    transition: filter 0.2s ease;
    max-width: 70%;
}

@media only screen and (min-width: 992px) {
    .partner-two img {
        max-width: 80%;
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 0px));
    }
}

/* ==== 
 --------- (5.18) partner styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (5.19) vision styles start ---------
 ==== */

.vision {
    position: relative;
    z-index: 1;
}

.vision::after {
    content: "";
    position: absolute;
    inset-inline: 0px;
    inset-block-end: 0px;
    height: 20px;
    background-color: #C08860;
}

.vision .vision__inner {
    position: relative;
    margin-top: 160px;
    overflow: hidden;
    padding-inline: 12px;
    padding-block: 80px;
}

@media only screen and (min-width: 768px) {
    .vision .vision__inner {
        padding-inline: 20px;
        margin-top: 300px;
    }
}

@media only screen and (min-width: 1200px) {
    .vision .vision__inner {
        margin-top: 520px;
        padding-block: 100px;
    }
}

.vision .vision-blur-img {
    position: absolute;
    inset-inline: 0px;
    bottom: 20px;
    border: 1px solid #685f51;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.vision .vision-blur-img img {
    width: 100%;
    height: 100%;
}

.vision h3 {
    max-width: 320px;
}

@media only screen and (min-width: 768px) {
    .vision h3 {
        max-width: 400px;
    }
}

@media only screen and (min-width: 1200px) {
    .vision h3 {
        max-width: 100%;
    }
}

.vision .vision__content .title-md {
    line-height: 1;
}

.vision .vision__content .title-md span {
    margin-top: -0.9em;
}

.vision p {
    max-width: 420px;
    margin-top: 20px;
}

@media only screen and (min-width: 768px) {
    .vision p {
        max-width: 700px;
    }
}

@media only screen and (min-width: 1200px) {
    .vision p {
        margin-top: 30px;
        max-width: 760px;
    }
}

@media only screen and (min-width: 992px) {
    .vision .vision__cta {
        text-align: end;
    }
}

.vision .vision-bg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: -3;
}

.vision .vision-bg img {
    max-height: 960px;
}

.vision .vision-bg img,
.vision .vision-bg .parallax-image-wrap,
.vision .vision-bg .parallax-image-inner {
    width: 100%;
    height: 100%;
}

/* ==== 
 --------- (5.19) vision styles end ---------
 ==== */

/* ==== 
 --------- (5.20) coming soon section styles start ---------
 ==== */

.soon {
    padding: 100px 0px;
    height: auto;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: #3E2B2E;
}

.soon .soon__inner {
    position: relative;
    z-index: 2;
}

.soon .soon__logo {
    text-align: center;
}

.soon .soon__logo img {
    width: 100%;
    max-width: 230px;
}

.soon .time-counter {
    position: relative;
}

.soon .time-countdown {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: max-content;
}

.soon .counter-column {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 180px;
    height: 180px;
    font-size: 20px;
    line-height: 1em;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    z-index: 7;
    border-radius: 20px;
    margin: 0 15px 20px;
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.soon .count {
    position: relative;
    display: block;
    font-size: 72px;
    line-height: 1;
    color: #ffffff;
    font-weight: 700;
}

.soon .content {
    text-align: center;
}

.soon .content h4 {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center !important;
}

.soon .content p {
    color: #e7e0e0;
    font-weight: 500;
    font-size: 18px;
}

.soon .content p:nth-last-of-type(1) {
    margin-top: 4px;
}

.soon .form-group {
    margin-top: 40px;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
    max-width: 600px;
    margin-inline: auto;
}

.soon .form-group input {
    flex-grow: 1;
    width: 100%;
    padding: 13px 24px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #564c4c;
    border-radius: 30px;
    font-size: 14px;
}

.soon .form-group input::placeholder {
    text-transform: uppercase;
    opacity: 0.5;
}

.soon .form-group button {
    min-width: max-content;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.soon .soon-bg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.soon .soon-bg::after {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.soon .soon-bg img {
    width: 100%;
    height: 100%;
}

.soon .soon-bg .parallax-image-wrap,
.soon .soon-bg .parallax-image-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
}

.soon .countdown-wrapper {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-block: 60px;
}

.soon .clock {
    position: relative;
    width: 500px;
    height: 500px;
    background-color: rgba(10, 10, 10, 0.3764705882);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.soon .clock::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), rgba(25, 25, 25, 0.1) 75%);
    pointer-events: none;
    z-index: -1;
}

.soon .hand {
    position: absolute;
    background-color: #fff;
    transform-origin: bottom;
    border-radius: 99px;
}

.soon .hour-hand {
    width: 15px;
    height: 175px;
    top: 75px;
    background-color: #bdbaba;
}

.soon .minute-hand {
    width: 12px;
    height: 175px;
    top: 75px;
    background-color: #5a5a5a;
}

.soon .second-hand {
    position: absolute;
    width: 6px;
    height: 200px;
    top: 50px;
    background-color: #9d9a95;
    transform-origin: bottom;
}

.soon .second-hand::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 50px;
    top: 187px;
    background-color: #9d9a95;
    border-radius: 99px;
    transform-origin: top;
}

.soon .center-dot {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
}

.soon .center-dot-orange {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: black;
    border-radius: 50%;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.soon .hour-markers {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.soon .hour-marker {
    position: absolute;
    color: #fff;
    transform: rotate(0deg) translateY(-216.25px);
    transform-origin: center;
}

.soon .hour-marker span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: rgb(143, 137, 137);
}

.soon .minute-marker {
    position: absolute;
    width: 2px;
    height: 11.25px;
    background-color: rgba(255, 255, 255, 0.3);
    transform: rotate(0deg) translateY(-216.25px);
    transform-origin: center;
    display: none;
}

@media only screen and (max-width: 991.98px) {
    .soon {
        padding: 100px 0px;
    }
    .soon .counter-column {
        width: calc(50% - 30px);
    }
    .soon .logo img {
        max-width: 180px;
    }
}

@media only screen and (max-width: 499.98px) {
    .soon .time-countdown {
        flex-direction: column;
        position: relative;
        transform: none;
        inset: unset;
    }
    .soon .counter-column {
        width: 180px;
        height: 180px;
    }
    .soon .countdown-wrapper {
        height: auto;
    }
    .soon .countdown-wrapper .clock {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .soon .form-group {
        flex-direction: column;
        gap: 16px;
    }
    .soon .form-group button {
        justify-content: center;
        width: 100%;
    }
}

.rtl .soon {
    direction: ltr;
}

/* ==== 
 --------- (5.20) coming soon section styles end ---------
 ==== */

/* ==== 
 --------- (5.21) error section styles start ---------
 ==== */

.error {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.error .thumb {
    margin-bottom: 40px;
}

.error .thumb img {
    max-width: 500px;
    width: 100%;
}

.error h3 {
    font-weight: 900;
    color: var(--black);
    text-align: center !important;
}

.error p {
    font-weight: 500;
    margin-top: 20px;
    font-size: 18px;
    line-height: 30px;
    color: var(--black);
    max-width: 600px;
    margin-inline: auto;
}

.error .btn--primary {
    padding: 18px 40px;
    border-radius: 60px;
    font-weight: 700;
    gap: 8px;
}

.error .btn--primary::before,
.error .btn--primary::after {
    border-radius: 0px;
}

.error .btn--primary i {
    transform: rotate(-45deg);
    transition: transform 0.5s ease, color 0s ease;
    font-size: 18px;
}

.error .btn--primary:hover i {
    transform: rotate(0deg);
}

.error .spade {
    position: absolute;
    bottom: -5%;
    inset-inline-start: 10%;
    z-index: -1;
}

.error .spade img {
    max-width: 20vw;
    min-width: 60px;
    animation: pulse 4s infinite ease-in-out;
}

.error .spade-green {
    position: absolute;
    top: 18%;
    inset-inline-end: 3%;
    z-index: -1;
}

.error .spade-green img {
    max-width: 5vw;
    min-width: 30px;
    animation: pulse 4s infinite ease-in-out;
}

.error__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
    padding: 100px 0px;
}

@media only screen and (max-width: 767.98px) {
    .error p {
        max-width: 400px;
        font-size: 17px;
    }
}

.rtl .error {
    direction: ltr;
}

.dark-mode .error {
    background: radial-gradient(#224646, #182828) repeat;
}

.dark-mode .error p,
.dark-mode .error .title-animation {
    color: var(--white);
}

/* ==== 
 --------- (5.21) error section styles end ---------
 ==== */

/* ==== 
 --------- (6.00) dark mode styles start ---------
 ==== */

.dark-mode {
    --template-bg: #3E2B2E;
    --template-color: #fdfafa;
    --senary-color: #443939;
    --border-color: #443939;
    --txt-light: #c9beb3;
    --txt-light-3: #c4bfb9;
}

.dark-mode .txt-light-6 {
    color: rgba(255, 255, 255, 0.5843137255);
}

.dark-mode .cursor-outer.cursor-big {
    background-color: var(--template-color);
}

.dark-mode .sub-title li {
    color: var(--black);
}

.dark-mode .sub-title a {
    color: #a59894;
}

.dark-mode .sub-title a:hover {
    color: var(--black);
}

.dark-mode .house-bg img {
    filter: brightness(0) saturate(100%) invert(97%) sepia(6%) saturate(1245%) hue-rotate(301deg) brightness(86%) contrast(96%);
}

.dark-mode .hover-line-bottom-gray {
    color: var(--white);
}

.dark-mode .hover-line-bottom-gray::before {
    background-color: var(--primary-color);
}

.dark-mode .hover-line-bottom-gray:hover {
    color: var(--primary-color);
}

.dark-mode .header .navbar__sub-menu {
    background-color: #1e1a1a;
}

.dark-mode .header .navbar__sub-menu a {
    border-bottom-color: #483535;
    color: rgba(245, 242, 238, 0.6156862745);
}

.dark-mode .header .navbar__sub-menu a::before {
    background-color: #ffffff;
}

.dark-mode .header .navbar__sub-menu a:hover {
    color: #f5f2ee;
}

.dark-mode .header .mega-menu .active>a {
    color: white;
}

.dark-mode .header .mega-menu a:hover {
    color: white;
}

.dark-mode .header .mega-menu li:hover a {
    color: white;
}

.dark-mode .header .mega-menu li:hover .mega-content a {
    color: black;
}

.dark-mode .sticky-header {
    border-bottom: 1px solid #443939;
}

.dark-mode .mobile-menu .mobile-menu__wrapper {
    background-color: var(--template-bg);
}

.dark-mode .mobile-menu .navbar__list>li:nth-of-type(2) {
    border-top: 1px solid #443939;
}

.dark-mode .mobile-menu .navbar__list>li a,
.dark-mode .mobile-menu .navbar__list>li button {
    border-bottom: 1px solid #443939;
}

.dark-mode .mobile-menu .navbar__item--has-children .navbar__dropdown-label::after {
    border-inline-start: 1px solid #443939;
}

.dark-mode .service-two .service-two__content-single {
    border-color: #48433d !important;
}

.dark-mode .overview__single-cta a img {
    filter: brightness(0) saturate(100%) invert(9%) sepia(7%) saturate(636%) hue-rotate(349deg) brightness(97%) contrast(96%);
    transition: filter 0.2s ease-in;
}

.dark-mode .overview__single-cta a:hover img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(2%) saturate(26%) hue-rotate(353deg) brightness(105%) contrast(100%);
}

.dark-mode .testimonial {
    background-color: #443939;
}

.dark-mode .testimonial .slider-btn i {
    transition: var(--transition);
}

.dark-mode .testimonial .slider-btn:hover i {
    color: black;
}

.dark-mode .partner-two {
    border-bottom-color: #404040;
}

.dark-mode .partner-two .partner__single {
    border-color: #404040;
}

.dark-mode .sidebar__widget,
.dark-mode .news-quote {
    background-color: #3a3937;
}

.dark-mode .search-wrap {
    background-color: #484745;
}

.dark-mode .search-wrap button {
    background-color: #2a2928;
}

.dark-mode .search-wrap button:hover {
    background-color: var(--primary-color);
}

.dark-mode .hero__heading .cfc {
    color: #C08860;
}

.dark-mode .sidebar__categories a,
.dark-mode .sidebar__tags a {
    background-color: #2a2928;
    color: #b1a2a2;
}

.dark-mode .sidebar__categories a:hover,
.dark-mode .sidebar__tags a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.dark-mode .sidebar__widget-header {
    border-block-end: 1px solid #484745;
}

.dark-mode .contact-form__main input,
.dark-mode .contact-form__main textarea,
.dark-mode .contact-form__main .select {
    background-color: #726466;
    color: var(--white);
}

.dark-mode .contact-form__main input::placeholder,
.dark-mode .contact-form__main textarea::placeholder,
.dark-mode .contact-form__main .select::placeholder {
    color: var(--white);
}

.dark-mode .contact-banner__thumb-content {
    background-color: #403d3e;
}

.dark-mode .contact-banner__thumb-content .content-info {
    border-block-start: 1px solid #504d48;
    border-inline-start: 1px solid #504d48;
}

.dark-mode .footer-four .btn-secondary .btn-animated-text {
    background-color: var(--white);
}

.dark-mode .footer-four .btn-secondary .btn-animated-text span {
    color: var(--black);
}

.dark-mode .footer-four .btn-secondary .btn-animated-text:hover {
    background-color: #ddd8d2;
    border-color: #ddd8d2;
}

.dark-mode .footer-four .btn-secondary .btn-animated-text:hover span {
    color: var(--black);
}

.dark-mode .lines .line {
    background-color: rgba(202, 230, 247, 0.0509803922);
}

.dark-mode .news .btn-quinary .btn-animated-text,
.dark-mode .team__cta .btn-quinary .btn-animated-text {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dark-mode .bg-alt {
    background-color: #443939;
}

.dark-mode .bg-alt-2 {
    background-color: #4b4444;
}

.dark-mode .concept__cta a {
    color: rgba(255, 255, 255, 0.5843137255);
}

.dark-mode .counter {
    background-color: #443939;
}

.dark-mode .counter .cvv {
    background-color: #443939;
}

.dark-mode .field__inner {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-mode .concept__right-list li {
    color: #B8B3AE !important;
}

.dark-mode .about-three .about-three__header .line {
    background-color: #fdfafa;
}

.dark-mode .about-three .about-three__content a img {
    filter: brightness(0) saturate(100%) invert(94%) sepia(11%) saturate(362%) hue-rotate(338deg) brightness(83%) contrast(87%);
}

.dark-mode .service-three__header .line {
    background-color: #fdfafa;
}

.dark-mode .service-three .t-border {
    border-color: rgba(255, 255, 255, 0.12);
}

.dark-mode .service-three .service-three__single {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.dark-mode .project__single-intro {
    border-block: 1px solid #5c5750;
}

.dark-mode .work-two__inner {
    border-color: #46433c;
}

.dark-mode .work-two__thumbs::before,
.dark-mode .work-two__thumbs::after {
    background-color: #46433c;
}

.dark-mode .divider {
    border-color: #46433c;
}

.dark-mode .partner-hover-black {
    border-color: #5c5953;
}

.dark-mode .partner-hover-black .partner__single:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7483%) hue-rotate(228deg) brightness(106%) contrast(97%);
}

.dark-mode .hero-four__intro-center,
.dark-mode .hero-four__intro-right,
.dark-mode .hero-four__intro-left {
    border-top-color: #d1c8be;
}

.dark-mode .about-four__content .divide-cs {
    background-color: #5f5c54;
}

.dark-mode .about-four .btn-primary .btn-animated-text {
    border-color: #5f5c54;
}

.dark-mode .service-four__single-intro {
    border-block-end-color: #5f5c54;
}

.dark-mode .service-four .title-animation-color .split-word,
.dark-mode .creative .title-animation-color .split-word {
    color: white !important;
}

.dark-mode .service-four__cta .btn-primary .btn-animated-text,
.dark-mode .counter-two__single {
    border-color: #5f5c54;
}

.dark-mode .partner-hover-red,
.dark-mode .process-border-top {
    border-color: #5f5c54;
}

.dark-mode .service-overview__single img {
    filter: brightness(0) saturate(100%) invert(63%) sepia(26%) saturate(161%) hue-rotate(6deg) brightness(92%) contrast(88%);
}

.dark-mode .project-tabs__single .project-cm-btn {
    border-color: #5f5c54;
    color: #8a867c;
}

.dark-mode .project-tabs__single .project-cm-btn.active,
.dark-mode .project-tabs__single .project-cm-btn.active span {
    color: var(--template-color);
}

.dark-mode .project-tabs__single .project-cm-btn span {
    color: #504e49;
}

.dark-mode .common-banner,
.dark-mode .work-three .btn-primary .btn-animated-text,
.dark-mode .team-three .btn-primary .btn-animated-text,
.dark-mode .service-details .team-three .btn-primary .btn-animated-text,
.dark-mode .work-process__single,
.dark-mode .group-list li,
.dark-mode .project-details-meta__single,
.dark-mode .btn-primary .btn-animated-text {
    border-color: #5f5c54;
}

.dark-mode .service-details .service-details-footer__inner::before {
    background-color: #5f5c54;
}

.dark-mode .about-counter__single .icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(19%) saturate(2267%) hue-rotate(173deg) brightness(103%) contrast(77%);
}

.dark-mode .about-counter__single:hover .icon img {
    filter: brightness(0) saturate(100%) invert(44%) sepia(87%) saturate(4599%) hue-rotate(341deg) brightness(118%) contrast(102%);
}

/* ==== 
 --------- (6.00) dark mode styles end ---------
 ==== */

/* ==============
 ========= css table of contents =========

 * template name: Archinex
 * version: 1.0
 * description: Modern Architecture & Interior Design HTML Template
 * author: theme_sonic
 * author-url: https://themeforest.net/user/theme_sonic

 01. abstracts
     1.01 --> mixins
     1.02 --> variables

 02. base
     2.01 --> reset
     2.02 --> typography
     2.03 --> global

 03. components
     3.01 --> buttons
     3.02 --> forms
     3.03 --> preloader
     3.04 --> cursor
     3.05 --> scroll progress
     3.06 --> widgets

 04. layout
     4.01 --> header
     4.02 --> banner
     4.03 --> footer

 05. sections
     5.01 --> overview
     5.02 --> video
     5.03 --> about
     5.04 --> work
     5.05 --> service
     5.06 --> process
     5.07 --> testimonial
     5.08 --> field
     5.09 --> counter
     5.10 --> concept
     5.11 --> team
     5.12 --> transform
     5.13 --> instagram feed
     5.14 --> project
     5.15 --> creative
     5.16 --> news
     5.17 --> contact
     5.18 --> partner
     5.19 --> vision
     5.20 --> coming soon
     5.21 --> error
     5.22 --> dark mode
     5.21 --> rtl mode

 06. dark mode

 07. rtl mode

    ==================================
============== */

/* ==== 
 --------- (7.00) rtl mode styles start ---------
 ==== */

.rtl {
    direction: rtl;
}

.rtl .swiper {
    direction: ltr;
}

.rtl .flip-img {
    scale: -1 1;
}

.rtl .parallax-image-wrap {
    scale: -1 1;
}

.rtl .color-palate .color-palate-inner {
    direction: ltr;
}

.rtl .header .navbar__item--has-children>.navbar__sub-menu {
    transform: translateX(30px) translateY(20px);
}

.rtl .header .navbar__item--has-children:hover>.navbar__sub-menu {
    transform: translateX(30px) translateY(0px);
}

.rtl .header .navbar__item--has-children>.navbar__sub-menu.mega-menu {
    transform: translateY(30px) translateX(43.5%) !important;
}

@media only screen and (min-width: 1400px) {
    .rtl .header .navbar__item--has-children>.navbar__sub-menu.mega-menu {
        transform: translateY(30px) translateX(45%) !important;
    }
}

.rtl .header .navbar__item--has-children:hover>.navbar__sub-menu.mega-menu {
    transform: translateX(43.5%) translateY(0px) !important;
}

@media only screen and (min-width: 1400px) {
    .rtl .header .navbar__item--has-children:hover>.navbar__sub-menu.mega-menu {
        transform: translateX(45%) translateY(0px) !important;
    }
}

.rtl .mobile-menu,
.rtl .mobile-menu__backdrop {
    direction: ltr;
}

.rtl .title-animation,
.rtl .title-animation-lg {
    direction: ltr;
    text-align: end;
}

.rtl .title-animation .split-parent,
.rtl .title-animation-lg .split-parent {
    text-align: end !important;
}

.rtl .text-end.title-animation-lg {
    text-align: start !important;
}

.rtl .text-center.title-animation {
    direction: ltr;
    text-align: center;
}

.rtl .text-center.title-animation .split-parent {
    text-align: center !important;
}

.rtl .text-center .title-animation {
    direction: ltr;
    text-align: center;
}

.rtl .text-center .title-animation .split-parent {
    text-align: center !important;
}

.rtl .contact-banner__thumb-wrapper {
    direction: rtl;
}

.rtl .hero-three__content p {
    margin-inline-start: auto;
    direction: ltr;
    text-align: end;
}

.rtl .hero-three__content h2,
.rtl .hero-three__content h3 {
    text-align: end;
}

.rtl .hero-three__cta {
    direction: rtl;
}

.rtl .hero-four .title-xxl {
    flex-direction: row-reverse;
}

.rtl .hero-four .ltr-fix {
    direction: ltr;
}

.rtl .service-four-thumb {
    inset-inline-start: 80px;
    inset-inline-end: unset;
}

.rtl .service .service__wrapper {
    direction: ltr;
}

.rtl .service-two {
    direction: ltr;
}

.rtl .service-two .title-animation .split-parent {
    text-align: start !important;
}

.rtl .concept,
.rtl .team {
    direction: ltr;
}

.rtl .concept .title-animation .split-parent,
.rtl .team .title-animation .split-parent {
    text-align: start !important;
}

.rtl .testimonial .swiper-slide {
    text-align: end;
}

.rtl .testimonial .slider-navigation {
    flex-direction: row-reverse;
}

.rtl .testimonial .testimonial__single {
    margin-inline-end: auto !important;
    display: inline-block;
}

.rtl .project__header {
    direction: ltr;
}

.rtl .project-slider__box {
    margin-inline-start: auto;
}

.rtl .team-two__lists li i,
.rtl .team-two__lists li .serial {
    transform: translateX(100%);
}

.rtl .team-two__lists li:hover .serial,
.rtl .team-two__lists li:hover i {
    transform: translateX(0px);
}

.rtl .team-two__lists li.active .serial,
.rtl .team-two__lists li.active i {
    transform: translateX(0px);
}

.rtl .work-two__lists li .serial {
    transform: translateX(100%);
}

.rtl .work-two__lists li:hover .serial {
    transform: translateX(0px);
}

.rtl .work-two__lists li.active .serial {
    transform: translateX(0px);
}

.rtl .service-four__single-right a i {
    scale: -1 1;
}

.rtl .header-two .navbar__sub-menu .navbar__item--has-children::after,
.rtl .header-three .navbar__sub-menu .navbar__item--has-children::after {
    scale: -1 1;
}

@media only screen and (min-width: 1600px) {
    .rtl .hero-three .hero-three-pagination {
        margin-inline: unset;
        margin-inline-end: auto;
        width: unset !important;
    }
}

/* ==== 
 --------- (7.00) rtl mode styles end ---------
 ==== */

/* === CTA solid/inverse states === */
.page-wrapper :is(.btn-primary, .btn-secondary, .btn-tertiary, .btn-quaternary, .btn-quinary, .btn-light-2) .btn-animated-text {
    align-items: center;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    display: inline-flex;
    justify-content: center;
    overflow: hidden;
    vertical-align: top;
}

.page-wrapper :is(.btn-primary, .btn-secondary, .btn-tertiary, .btn-quaternary, .btn-quinary, .btn-light-2) .btn-animated-text span {
    color: var(--white);
}

.page-wrapper :is(.btn-primary, .btn-secondary, .btn-tertiary, .btn-quaternary, .btn-quinary, .btn-light-2):hover .btn-animated-text {
    background-color: var(--white);
    border-color: var(--primary-color);
}

.page-wrapper :is(.btn-primary, .btn-secondary, .btn-tertiary, .btn-quaternary, .btn-quinary, .btn-light-2):hover .btn-animated-text span {
    color: var(--primary-color);
}

/* ==== infrastructure page styles start ==== */
.infrastructure-page {
    --infra-bg: #EEE9E2;
    --infra-panel: #F8F4EF;
    --infra-deep: #481800;
    --infra-accent: #C08860;
    --infra-line: rgba(72, 24, 0, .13);
    --infra-muted: rgba(72, 24, 0, .7);
    --infra-image-bg: #DED1C5;
    background: var(--infra-bg);
    color: var(--infra-deep);
    overflow: hidden;
}

.infrastructure-page *,
.infrastructure-page *::before,
.infrastructure-page *::after {
    box-sizing: border-box;
}

.infrastructure-page img {
    max-width: 100%;
}

.infra-hero {
    align-items: end;
    background:
        linear-gradient(90deg, rgba(16, 10, 6, .92) 0%, rgba(16, 10, 6, .58) 48%, rgba(16, 10, 6, .2) 100%),
        url("../images/infrastructure/banner.jpg") center / cover no-repeat;
    display: flex;
    min-height: clamp(560px, 76vh, 720px);
    padding: 140px 0 68px;
}

.infra-hero__content {
    max-width: 820px;
}

.infra-kicker {
    color: var(--infra-accent);
    display: inline-block;
    font-family: var(--maison-neue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.infra-hero h1 {
    color: #fff;
    font-size: 88px;
    font-weight: 300;
    line-height: 1;
    margin: 0;
    max-width: 780px;
    overflow-wrap: break-word;
}

.infra-hero p {
    color: rgba(255, 255, 255, .78);
    font-size: 20px;
    line-height: 1.8;
    margin: 30px 0 0;
    max-width: 650px;
}

.infra-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.infrastructure-page .infra-video__intro {
    margin: 0 auto 32px;
    max-width: 700px;
    text-align: center;
}

.infrastructure-page .infra-video__intro .infra-kicker {
    margin-bottom: 12px;
}

.infrastructure-page .infra-video__intro p {
    color: var(--infra-muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 16px auto 0;
    max-width: 540px;
}

.infrastructure-page .infra-video .home-video__frame {
    margin: 0 auto;
    max-width: 1100px;
}

.infrastructure-page .infra-video .home-video__frame video {
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

.infrastructure-page .infra-video__cta {
    display: flex;
    margin: 28px auto 0;
    width: fit-content;
}

.infra-btn {
    align-items: center;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 999px;
    color: var(--infra-deep);
    display: inline-flex;
    font-family: var(--maison-neue);
    font-size: 13px;
    font-weight: 600;
    gap: 10px;
    justify-content: center;
    letter-spacing: .08em;
    min-height: 52px;
    padding: 15px 24px;
    text-transform: uppercase;
}

.infra-btn:hover {
    background: var(--infra-accent);
    border-color: var(--infra-accent);
    color: #fff;
}

.infra-btn--ghost {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .38);
    color: #fff;
}

.infra-btn i {
    font-size: 18px;
}

.infra-breadcrumb {
    align-items: center;
    border-bottom: 1px solid #E6D8CC;
    display: flex;
    gap: 10px;
    padding: 18px 0;
}

.infra-breadcrumb a,
.infra-breadcrumb span {
    color: rgba(72, 24, 0, .72);
    font-family: var(--maison-neue);
    font-size: 14px;
}

.infra-breadcrumb a:hover,
.infra-breadcrumb .current {
    color: var(--infra-deep);
}

.infra-section {
    padding: 120px 0;
}

.infra-editorial {
    align-items: start;
    display: grid;
    gap: clamp(36px, 5vw, 72px);
    grid-template-columns: minmax(0, .85fr) minmax(0, .95fr);
}

.infra-title {
    color: var(--infra-deep);
    font-size: 46px;
    font-weight: 300;
    line-height: 1.12;
    margin: 0;
    overflow-wrap: break-word;
}

.infra-copy {
    color: var(--infra-muted);
    font-size: 15px;
    line-height: 1.78;
    margin: 0;
}

.infra-copy + .infra-copy {
    margin-top: 20px;
}

.infra-stats {
    border-top: 1px solid var(--infra-line);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 48px;
}

.infra-stat {
    border-bottom: 1px solid var(--infra-line);
    border-right: 1px solid var(--infra-line);
    min-height: 132px;
    padding: 24px 22px;
}

.infra-stat:nth-child(4n) {
    border-right: 0;
}

.infra-stat strong {
    align-items: baseline;
    color: var(--infra-deep);
    display: flex;
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 300;
    gap: 2px;
    line-height: 1.22;
}

.infra-stat .odometer {
    color: inherit;
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.22;
    overflow: visible;
}

.infra-stat .odometer *,
.infra-stat .odometer-digit,
.infra-stat .odometer-digit-spacer,
.infra-stat .odometer-value {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.22;
}

.infra-stat__suffix {
    color: inherit;
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.22;
}

.infra-stat > span {
    color: rgba(72, 24, 0, .66);
    display: block;
    font-size: 13px;
    line-height: 1.55;
    margin-top: 13px;
}

.infrastructure-page .louver-story {
    background: var(--secondary-color, #f5f3f1);
    padding-bottom: 60px !important;
}

.infrastructure-page .louver-story > .container-lg {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.infrastructure-page .louver-story > .container-lg > .row {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.infrastructure-page .louver-story .decorative-services__header {
    margin: 0 auto;
    max-width: 760px;
    text-align: center;
}

.infrastructure-page .louver-story .decorative-services__title {
    color: var(--template-color, #481800);
    font-family: var(--heading-font);
    max-width: none;
}

.infrastructure-page .louver-story .decorative-services__intro {
    margin-left: auto;
    margin-right: auto;
}

.infrastructure-page .louver-story .decorative-services__list {
    gap: 0;
    margin-top: 72px !important;
}

.infrastructure-page .louver-story .decorative-services__item,
.infrastructure-page .louver-story .decorative-services__item--reverse {
    align-items: stretch;
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 0;
}

.infrastructure-page .louver-story .decorative-services__media {
    aspect-ratio: auto;
    background: #eee9e2;
    height: clamp(400px, 32vw, 480px);
    min-height: 0;
    overflow: hidden;
    width: 100%;
}

.infrastructure-page .louver-story .decorative-services__media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.infrastructure-page .louver-story .decorative-services__media--grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.infrastructure-page .louver-story .decorative-services__media--grid img {
    background: #fff;
    object-fit: contain;
    padding: clamp(18px, 3vw, 42px);
}

.infrastructure-page .louver-story .decorative-services__content {
    border: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: 48px clamp(36px, 5vw, 78px);
}

.infrastructure-page .louver-story .decorative-services__content h3 {
    color: var(--template-color, #481800);
    font-family: var(--heading-font);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.18;
    margin-bottom: 18px;
    max-width: 560px;
    text-transform: none;
}

.infrastructure-page .louver-story .decorative-services__content > p:not(.txt-light) {
    color: var(--txt-light, #4f4b47);
    font-size: 16px;
    line-height: 1.75;
    margin-top: 10px;
    max-width: 610px;
}

.infrastructure-page .louver-story .decorative-services__count {
    display: none;
}

.infrastructure-page .louver-story .decorative-services__content > .txt-light {
    color: var(--primary-color, #c08860);
    font-family: var(--heading-font, 'Maison Neue', sans-serif);
}

@media (min-width: 992px) {
    .infrastructure-page .louver-story .decorative-services__item--reverse .decorative-services__media {
        order: 2;
    }
}

.infra-flow {
    background: var(--infra-deep);
    color: #fff;
    padding: clamp(76px, 8vw, 118px) 0;
}

.infra-flow .infra-title {
    color: #fff;
}

.infra-flow .infra-copy {
    color: rgba(255, 255, 255, .72);
}

.infra-flow__steps {
    border-top: 1px solid rgba(255, 255, 255, .16);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 48px;
}

.infra-step {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    border-right: 1px solid rgba(255, 255, 255, .16);
    min-height: 230px;
    padding: 30px 24px;
}

.infra-step:nth-child(4n) {
    border-right: 0;
}

.infra-step i {
    color: var(--infra-accent);
    display: block;
    font-size: 32px;
    margin-bottom: 24px;
}

.infra-step h3 {
    color: #fff;
    font-family: var(--maison-neue);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.28;
    margin: 0 0 12px;
}

.infra-step p {
    color: rgba(255, 255, 255, .64);
    font-size: 14px;
    line-height: 1.68;
    margin: 0;
}

.infrastructure-page .infra-gallery .row {
    display: grid;
    gap: clamp(16px, 2vw, 24px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
}

.infrastructure-page .infra-gallery .row > [class*="col-"] {
    padding: 0;
    width: auto;
}

.infrastructure-page .gallery_item {
    background: #fff;
    aspect-ratio: 16 / 9;
    contain: layout paint;
    content-visibility: auto;
    contain-intrinsic-size: 320px 240px;
    height: 100%;
    overflow: hidden;
    padding: 0px 20px;
    border: none !important;
}

.infrastructure-page .gallery_item a {
    cursor: zoom-in;
    display: block;
    height: 100%;
}

.infrastructure-page .gallery_item img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    width: 100%;
}

.infra-contact {
    align-items: center;
    display: grid;
    gap: clamp(30px, 5vw, 70px);
    grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
}

.infra-contact-list {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.infra-contact-card {
    background: var(--infra-panel);
    border: 1px solid var(--infra-line);
    border-radius: 8px;
    min-height: 180px;
    padding: 24px;
}

.infra-contact-card h3 {
    color: var(--infra-deep);
    font-family: var(--maison-neue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.infra-contact-card p,
.infra-contact-card a {
    color: var(--infra-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    overflow-wrap: anywhere;
}

.infra-contact-card a:hover {
    color: var(--infra-accent);
}

@media (max-width: 1199px) {
    .infra-hero h1 {
        font-size: 72px;
    }

    .infra-title {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .infrastructure-page .container-lg {
        padding-left: 24px;
        padding-right: 24px;
    }

    .infra-hero {
        min-height: 560px;
        padding: 126px 0 52px;
    }

    .infra-hero h1 {
        font-size: 56px;
        max-width: 620px;
    }

    .infra-hero p {
        font-size: 18px;
    }

    .infra-title {
        font-size: 36px;
    }

    .infra-stat strong {
        font-size: 38px;
    }

    .infra-editorial,
    .infrastructure-page .louver-story .decorative-services__item,
    .infrastructure-page .louver-story .decorative-services__item--reverse,
    .infra-contact {
        grid-template-columns: 1fr;
    }

    .infrastructure-page .louver-story {
        padding-bottom: 80px !important;
        padding-top: 90px !important;
    }

    .infrastructure-page .louver-story .decorative-services__list {
        margin-top: 54px !important;
    }

    .infrastructure-page .louver-story .decorative-services__media {
        height: clamp(300px, 58vw, 430px);
    }

    .infrastructure-page .louver-story .decorative-services__content {
        min-height: 0;
        padding: 45px 28px 54px;
    }

    .infra-stats,
    .infra-flow__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .infrastructure-page .infra-gallery .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .infrastructure-page .infra-gallery .row > [class*="col-"] {
        min-width: 0;
    }

    .infrastructure-page .gallery_item {
        height: auto;
        margin-bottom: 0;
        padding: 0;
    }

    .infra-stat:nth-child(2n),
    .infra-step:nth-child(2n) {
        border-right: 0;
    }
}

@media (max-width: 767px) {
    .infrastructure-page {
        max-width: 100vw;
        text-align: center;
    }

    .infrastructure-page .container-lg {
        max-width: 100%;
        overflow: hidden;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }

    .infrastructure-page .infra-hero__content,
    .infrastructure-page .infra-editorial,
    .infrastructure-page .louver-story .decorative-services__content,
    .infrastructure-page .infra-contact {
        text-align: center;
    }

    .infrastructure-page .infra-hero__actions,
    .infrastructure-page .infra-breadcrumb {
        justify-content: center;
    }

    .infrastructure-page .infra-video {
        padding-bottom: 64px !important;
        padding-top: 64px !important;
    }

    .infrastructure-page .infra-video__intro {
        margin-bottom: 24px;
    }

    .infrastructure-page .infra-video__intro p {
        font-size: 15px;
    }

    .infrastructure-page .infra-video__cta {
        width: 100%;
    }

    .infrastructure-page .louver-story {
        padding-bottom: 65px !important;
        padding-top: 65px !important;
    }

    .infrastructure-page .louver-story > .container-lg > .row {
        padding-left: 0;
        padding-right: 0;
    }

    .infrastructure-page .louver-story .decorative-services__media {
        height: clamp(250px, 72vw, 340px);
    }

    .infrastructure-page .louver-story .decorative-services__content {
        padding: 36px 20px 44px;
    }

    .infrastructure-page .louver-story .decorative-services__content > p:not(.txt-light) {
        font-size: 15px;
        line-height: 1.7;
    }

    .infra-hero {
        min-height: 520px;
    }

    .infra-hero h1 {
        font-size: 36px;
        line-height: 1.04;
        max-width: 100%;
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .infra-hero p {
        font-size: 16px;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .infra-title {
        font-size: 30px;
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .infra-hero__actions,
    .infra-btn {
        max-width: 100%;
        width: 100%;
    }

    .infra-copy,
    .infra-step p,
    .infra-contact-card p,
    .infra-contact-card a {
        overflow-wrap: anywhere;
    }

    .infra-stats,
    .infra-flow__steps,
    .infrastructure-page .infra-gallery .row,
    .infra-contact-list {
        grid-template-columns: 1fr;
    }

    .infra-stat,
    .infra-step {
        border-right: 0;
        min-height: auto;
    }
}

@media (max-width: 420px) {
    .infra-hero h1 {
        font-size: 34px;
    }

    .infra-title {
        font-size: 28px;
    }
}

/* ==== infrastructure page styles end ==== */

/* ==== career page styles start ==== */
.career-title {
    color: var(--black-2);
    font-size: clamp(2.05rem, 3.25vw, 3.25rem);
    font-weight: 300;
    line-height: 1.08;
    margin: 0;
    max-width: 760px;
    overflow-wrap: break-word;
}

.career-copy {
    color: var(--txt-light);
    font-size: 18px;
    line-height: 1.75;
    margin: 0;
    max-width: 560px;
    overflow-wrap: break-word;
}

.career-values,
.career-openings__grid {
    display: grid;
    gap: 24px;
}

.career-values {
    align-items: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.career-value,
.career-card,
.career-detail__aside,
.career-detail__panel {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(72, 24, 0, 0.12);
    border-radius: 4px;
}

.career-value {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 245px;
    padding: 34px 30px;
}

.career-value span {
    color: var(--primary-color);
    display: block;
    font-size: 13px;
    letter-spacing: 0.18em;
    margin-bottom: 34px;
}

.career-value h3 {
    color: var(--black-2);
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.career-value p,
.career-card p,
.career-detail__panel p,
.career-detail__panel li {
    color: var(--txt-light);
    font-size: 15px;
    line-height: 1.75;
    overflow-wrap: break-word;
}

.career-openings__grid {
    align-items: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.career-openings__header {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 auto 48px;
    max-width: 720px;
    text-align: center;
}

.career-openings__header .sub-title,
.career-openings__header .career-title,
.career-openings__header .career-copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.career-openings__header .career-title {
    font-size: clamp(2.2rem, 3.6vw, 3.6rem);
    max-width: 680px;
}

.career-openings__header .career-copy {
    max-width: 560px;
}

.career-openings__grid {
    grid-auto-rows: 1fr;
}

.career-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 410px;
    padding: clamp(28px, 3vw, 42px);
    transition: var(--transition);
}

.career-card:hover {
    border-color: rgba(192, 136, 96, 0.55);
    transform: translateY(-4px);
}

.career-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.career-card__meta span {
    border: 1px solid rgba(72, 24, 0, 0.16);
    border-radius: 4px;
    color: var(--black-2);
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 8px 12px;
    text-transform: uppercase;
}

.career-card h3 {
    color: var(--black-2);
    font-size: clamp(2rem, 2.7vw, 2.7rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 20px;
    overflow-wrap: break-word;
}

.career-card dl,
.career-detail__aside dl {
    display: grid;
    gap: 16px;
    margin: 28px 0 0;
}

.career-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.career-card dt,
.career-detail__aside dt {
    color: rgba(72, 24, 0, 0.58);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.career-card dd,
.career-detail__aside dd {
    color: var(--black-2);
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
    overflow-wrap: break-word;
}

.career-card__link {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    letter-spacing: 0.08em;
    margin-top: auto;
    padding-top: 34px;
    width: fit-content;
}

.career-card__link .btn-animated-text {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    overflow: hidden;
    min-width: 168px;
    padding: 16px 28px 18px;
    text-align: center;
}

.career-card__link .btn-animated-text span {
    color: var(--white);
}

.career-card__link:hover .btn-animated-text {
    background-color: var(--white);
    border-color: var(--primary-color);
}

.career-card__link:hover .btn-animated-text span {
    color: var(--primary-color);
}

.career-openings__empty {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(72, 24, 0, 0.12);
    border-radius: 6px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 52px);
    width: 100%;
}

.career-openings__grid + .career-openings__empty {
    margin-top: 48px;
}

.career-openings__empty-intro {
    margin: 0 auto 30px;
    max-width: 680px;
    text-align: center;
}

.career-openings__empty-intro h3 {
    color: var(--black-2);
    font-size: clamp(2rem, 3vw, 3.25rem);
    font-weight: 300;
    line-height: 1.08;
    margin-bottom: 16px;
}

.career-openings__empty-intro p {
    color: var(--txt-light);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.career-openings__empty .career-application-form {
    margin-left: auto;
    margin-right: auto;
}

.career-detail-hero {
    background:
        linear-gradient(90deg, rgba(12, 8, 5, 0.94) 0%, rgba(12, 8, 5, 0.72) 50%, rgba(12, 8, 5, 0.2) 100%),
        url("../images/infrastructure/banner.jpeg") center / cover no-repeat;
    min-height: clamp(560px, 76vh, 720px);
    padding: 150px 0 90px;
}

.career-breadcrumb {
    align-items: center;
    color: rgba(255, 255, 255, 0.64);
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 10px;
    margin-bottom: 86px;
}

.career-breadcrumb a,
.career-breadcrumb strong {
    color: var(--white);
}

.career-detail-hero__content {
    max-width: 790px;
}

.career-detail-hero__content h1 {
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 300;
    line-height: 1.02;
    margin-bottom: 24px;
}

.career-detail-hero__content p:not(.sub-title) {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.85;
    max-width: 650px;
}

.career-detail-hero__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
}

.career-text-link {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.career-text-link:hover {
    color: var(--primary-color);
}

.career-detail__aside {
    padding: 34px;
    position: sticky;
    top: 120px;
}

.career-detail__aside h2,
.career-detail__panel h2 {
    color: var(--black-2);
    font-size: 24px;
    margin-bottom: 26px;
}

.career-detail__panel {
    padding: 46px;
}

.career-detail__panel section + section {
    border-top: 1px solid rgba(72, 24, 0, 0.12);
    margin-top: 40px;
    padding-top: 40px;
}

.career-detail__panel ul {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.career-detail__panel li {
    list-style: none;
    padding-left: 28px;
    position: relative;
}

.career-detail__panel li::before {
    background: var(--primary-color);
    border-radius: 50%;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    top: 12px;
    width: 7px;
}

.career-detail__apply p {
    margin-bottom: 26px;
}

.career-application-form {
    margin-top: 30px;
    max-width: 920px;
}

.career-application-form__field label {
    color: var(--black-2);
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.career-application-form__field input,
.career-application-form__field textarea {
    background: var(--white);
    border: 1px solid rgba(72, 24, 0, 0.16);
    border-radius: 6px;
    color: var(--black-2);
    font-size: 15px;
    min-height: 54px;
    padding: 14px 16px;
    transition: var(--transition);
    width: 100%;
}

.career-application-form__field input::placeholder,
.career-application-form__field textarea::placeholder {
    color: rgba(72, 24, 0, 0.45);
}

.career-application-form__field input:focus,
.career-application-form__field textarea:focus {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(192, 136, 96, 0.14);
    outline: 0;
}

.career-application-form__field input[readonly] {
    background: #f5f2ee;
    color: rgba(72, 24, 0, 0.68);
    cursor: default;
}

.career-application-form__field input[type="file"] {
    cursor: pointer;
    padding: 12px 14px;
}

.career-application-form__field input[type="file"]::file-selector-button {
    background: var(--primary-color);
    border: 0;
    border-radius: 999px;
    color: var(--white);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-right: 14px;
    padding: 10px 16px;
    text-transform: uppercase;
}

.career-application-form__field textarea {
    min-height: 140px;
    resize: vertical;
}

.career-application-form__field small {
    color: rgba(72, 24, 0, 0.58);
    display: block;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
}

.career-application-form__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 4px;
}

.career-application-form__submit {
    background: transparent;
    border: 0;
    padding: 0;
}

.career-application-form__submit:disabled {
    cursor: wait;
    opacity: 0.68;
}

.career-application-form__status {
    flex: 1 1 240px;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.career-application-form__status:empty {
    display: none;
}

.career-application-form__status.is-pending {
    color: rgba(72, 24, 0, 0.68);
}

.career-application-form__status.is-success {
    color: #2d6b3f;
}

.career-application-form__status.is-error {
    color: #a33a2b;
}

.career-page {
    max-width: 100%;
    overflow-x: clip;
}

.career-page,
.career-page * {
    box-sizing: border-box;
}

.career-page .container-lg {
    max-width: 1320px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: min(100% - 48px, 1320px);
}

.career-page .pioneer-page-hero {
    min-height: clamp(600px, 72vh, 700px);
}

.career-page .pioneer-page-hero__content {
    max-width: 720px;
}

.career-page .pioneer-page-hero__title {
    font-size: clamp(3.6rem, 5.6vw, 5.6rem);
    max-width: 720px;
    overflow-wrap: break-word;
}

.career-page .pioneer-page-hero__text {
    max-width: 610px;
    overflow-wrap: break-word;
}

.career-intro .row {
    align-items: flex-start !important;
}

.career-intro .col-lg-5 {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .career-values,
    .career-openings__grid {
        grid-template-columns: 1fr;
    }

    .career-value,
    .career-card {
        min-height: 0;
    }

    .career-intro .col-lg-5 {
        justify-content: flex-start;
    }

    .career-detail__aside {
        position: static;
    }
}

@media (max-width: 767px) {
    .career-page {
        width: 100%;
    }

    .career-intro,
    .career-openings,
    .career-detail {
        padding-bottom: 70px !important;
        padding-top: 70px !important;
    }

    .career-values {
        margin-top: 48px !important;
    }

    .career-title {
        font-size: 33px;
        line-height: 1.08;
        max-width: 326px;
    }

    .career-copy {
        max-width: 326px;
    }

    .career-page .container-lg {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100%;
    }

    .career-page .pioneer-page-hero {
        min-height: 560px;
    }

    .career-page .pioneer-page-hero__content {
        padding-bottom: 54px;
    }

    .career-page .pioneer-page-hero__title {
        font-size: 32px;
        line-height: 1.06;
        max-width: 320px;
        white-space: normal;
        word-break: normal;
    }

    .career-page .pioneer-page-hero__text {
        font-size: 15px;
        line-height: 1.75;
        max-width: 320px;
        white-space: normal;
    }

    .career-title,
    .career-copy,
    .career-value p,
    .career-card p,
    .career-card h3,
    .career-card dd {
        white-space: normal;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .career-value p,
    .career-card p,
    .career-card h3,
    .career-card dd {
        max-width: 280px;
        width: min(100%, 280px);
    }

    .career-card,
    .career-value {
        max-width: calc(100vw - 32px);
        overflow: hidden;
        width: 100%;
    }

    .career-card,
    .career-value,
    .career-detail__aside,
    .career-detail__panel {
        padding: 26px 22px;
    }

    .career-openings__header {
        margin-bottom: 34px;
        max-width: 326px;
    }

    .career-openings__header .career-title,
    .career-openings__header .career-copy {
        max-width: 326px;
        width: 100%;
    }

    .career-card dl {
        grid-template-columns: 1fr;
    }

    .career-card__link,
    .career-card__link .btn-animated-text {
        width: 100%;
    }

    .career-detail-hero {
        min-height: 560px;
        padding: 124px 0 64px;
    }

    .career-breadcrumb {
        margin-bottom: 58px;
    }

    .career-detail-hero__content h1 {
        font-size: 38px;
    }

    .career-detail-hero__actions,
    .career-detail-hero__actions .btn-quinary {
        align-items: stretch;
        width: 100%;
    }

    .career-application-form__actions,
    .career-application-form__submit,
    .career-application-form__submit .btn-animated-text {
        justify-content: center;
        width: 100%;
    }

    .career-application-form__status {
        flex-basis: 100%;
    }
}
/* ==== career page styles end ==== */

/*# sourceMappingURL=main.css.map */
