@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&family=Yellowtail&display=swap');

:root {
    --primary: #C69D5D !important;
    --dark: #313131 !important;
    --soft: #DFDFDF !important;

    --whatsapp: #6BCE72 !important;

    --thin: 100 !important;
    --ultraLight: 100 !important;
    --light: 300 !important;
    --regular: 400 !important;
    --medium: 500 !important;
    --semiBold: 600 !important;
    --bold: 700 !important;
    --extraBold: 800 !important;
    --black: 900 !important;

    --ttfirs: 'TTFirs' !important;
    --wix: "Wix Madefor Display", sans-serif;
    --yellowtail: "Yellowtail", serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong {
    color: var(--primary);
    margin-bottom: 0;
}

img {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'TTFirs' !important;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    overflow-x: hidden;
    overflow-y: scroll
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.pointer {
    cursor: pointer;
}

a,
a:hover {
    text-decoration: none !important;
    transition: 400ms !important;
}

/* .inner-page {
    margin-top: 150px !important;
} */
body.menu-active {
    overflow: hidden;
}


/*** Header ***/

header {
    position: fixed;
    width: 100%;
    z-index: 999;
    height: 125px;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    border-bottom: 1px solid #fff;
}

body:has(.inner-page) header,
.scrolled header {
    background: rgb(255, 255, 255);
}

.header-logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 35px;
}

.header-logo a img {
    height: 55px;
}

.header-logo a img.dark-logo {
    display: none;
}

.header-logo a img.light-logo {
    display: block;
}

.header-right {
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    padding: 0 35px;
}

.header-menu {
    display: none;
}

ul.header-lang-list,
ul.header-lang-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.lang-dropdown {
    position: absolute;
    top: 100%;
    background: #fff;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 0;
    padding: 15px !important;
    transition: 400ms;
    opacity: 0;
    pointer-events: none !important;
}

.header-lang.no-mobile {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100px;
    height: 100%;
    align-items: center;
    cursor: pointer;
}

.header-lang.no-mobile:hover ul.lang-dropdown {
    transition: 400ms;
    pointer-events: all !important;
    opacity: 1;
}

ul.lang-dropdown li a {
    font-size: 16px;
    font-weight: var(--regular);
    color: var(--dark);
    margin: 4px 0;
    display: block;
    transition: 400ms;
}

ul.lang-dropdown li a:hover {
    color: var(--primary);
    transition: 400ms;
}

.active-lang {
    display: flex;
    align-items: center;
}

.active-lang .lang-arrow {
    margin-left: 10px;
    transform-origin: center;
    transition: 400ms;
}

.header-lang.no-mobile:hover .lang-arrow {
    transform: rotate(180deg);
    transition: 400ms;
}

.header-contact {
    display: flex;
    margin: 0 35px;
}

.header-contact a {
    display: flex;
    transition: 0 !important;
}

.header-contact a:hover {
    transition: 0 !important;
    color: #fff;
}

.header-contact a:first-child {
    margin-right: 35px;
}

.active-lang,
.header-contact a {
    font-size: 16px;
    color: #fff;
    font-weight: var(--regular);
    transition: none !important;
}

.header-contact-icon {
    margin-right: 30px;
}

.header-menu-button .menu-button {
    border: none !important;
    background: none !important;
    outline: none !important;
    padding: 0 !important;
}

.header-menu-button .menu-button img {
    height: 21px !important;
    width: 29px !important;
    object-fit: contain;
}


body:has(.inner-page) .header-lang span,
body:has(.inner-page) .header-contact a,
.scrolled .header-lang span,
.scrolled .header-contact a {
    color: var(--dark);
    transition: none !important;
}

body:has(.inner-page) .header-right svg g,
body:has(.inner-page) .header-right svg path,
.scrolled .header-right svg g,
.scrolled .header-right svg path {
    stroke: var(--dark);
}

body:has(.inner-page) .header-logo a img.dark-logo,
.scrolled .header-logo a img.dark-logo {
    display: block;
}

body:has(.inner-page) .header-logo a img.light-logo,
.scrolled .header-logo a img.light-logo {
    display: none;
}

body:has(.inner-page) .header-menu-button .menu-button img,
.scrolled .header-menu-button .menu-button img {
    filter: invert(1);
}

.scrolled header {
    box-shadow: 0px 1px 35px -10px #0000001f;
    transition: 400ms;
}

body:has(.inner-page) header {
    border-bottom: 1px solid #E2E2E2;
    transition: 400ms;
}


.header-menu {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100dvh;
    background: #F0F0F0;
    background-position: right;
    background-repeat: no-repeat;
    z-index: 999999999;
    opacity: 0;
    pointer-events: none;
    transition: 400ms;
}


body.menu-active .header-menu {
    opacity: 1;
    pointer-events: all;
    transition: 400ms;
}

.header-menu .menu-right {
    background: url(images/header-menu-bg.jpg);
    background-size: cover !important;
    background-repeat: no-repeat;
    width: 100%;
    height: 100dvh;
}


.col-md-6.menu-dark {
    background: var(--dark);
    width: 100%;
    height: 100dvh;
    padding: 50px 65px;
}

.col-md-6:has(.menu-right) {
    padding: 0;
}

.col-md-6.menu-primary {
    background: var(--primary);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 0;
}

.menu-dark-area {
    display: flex;
    flex-direction: column;
}

.menu-close {
    margin-bottom: 150px;
}

button.menu-close-button {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    font-weight: var(--medium);
    transition: 400ms;
}

button.menu-close-button:hover {
    color: var(--primary);
    transition: 400ms;
}

button.menu-close-button img {
    height: 16px;
    width: 16px;
    object-fit: contain;
    margin-left: 10px;
}

a.dark-area-link {
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
}

a.dark-area-link .title {
    font-size: 30px;
    font-weight: var(--regular);
    color: #6C6C6C;
    margin-bottom: 30px;
    transition: 400ms;
}

a.dark-area-link .more {
    font-size: 16px;
    font-weight: var(--regular);
    color: #6C6C6C;
    transition: 400ms;
}

a.dark-area-link .more img {
    margin-left: 20px;
    transform: translateX(-15px);
    opacity: 0;
    transition: 400ms;
}

a.dark-area-link:hover span {
    color: #fff;
    transition: 400ms;
}

a.dark-area-link:hover img {
    transform: translateX(0);
    opacity: 1;
    transition: 400ms;
}

.menu-logo {
    margin-bottom: 70px;
}

.menu-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list ul li a {
    margin: 20px 0;
    display: flex;
    font-size: 30px;
    font-weight: var(--bold);
    color: #fff;
    transition: 400ms;
}

.menu-right .row {
    height: 100%;
}

.menu-right .row .col-md-6:first-child {
    border-right: 1px solid #D9D9D9;
}

.menu-socials a {
    font-size: 25px;
    margin-right: 20px;
    color: #90621A;
    transition: 400ms;
}

.menu-socials a:hover {
    color: #ffffff;
    transition: 400ms;
}

.menu-contact a {
    font-size: 22px;
    font-weight: var(--regular);
    color: #90621A;
    transition: 400ms;
    margin-top: 25px;
    display: block;
}

.menu-contact a:hover {
    color: #ffffff;
    display: block;
}

.menu-list ul li a img {
    margin-left: 10px;
    opacity: 0;
    object-fit: contain;
    transform: translate(-25px, 0);
    transition: 400ms;
}

.menu-list ul li a:hover img {
    opacity: 1;
    transform: translate(0, 0);
    transition: 400ms;
}

.menu-lang {
    margin: 35px 0;
}

ul.menu-lang-list {
    list-style: none;
    padding: 0;
    border-radius: 17px;
    height: 35px;
    overflow: hidden;
    cursor: pointer;
    transition: 400ms;
}

ul.menu-lang-list:hover {
    height: 155px;
    overflow: hidden;
    transition: 400ms;
}

ul.menu-lang-list ul {
    list-style: none;
    padding: 0;
    padding-left: 35px;
}

ul.menu-lang-list ul a {
    color: #fff;
    margin-top: 5px;
    display: flex;
    transition: 400ms;
}

ul.menu-lang-list ul a:hover {
    padding-left: 5px;
    transition: 400ms;
}

ul.menu-lang-list span.active-lang-menu {
    color: #fff;
    font-size: 13px;
    font-weight: var(--bold);
    display: flex;
    align-items: center;
    padding: 0 8px;
    height: 35px;
}

ul.menu-lang-list span.active-lang-menu img {
    margin-right: 10px;
}

/*** Header-End ***/



/*** Main-slider ***/

.main-slider {
    height: 100dvh;
    width: 100%;
    position: relative;
}

.slider-lines .slider-line:not(:last-child) {
    border-right: 1px solid #fff;
    height: 100%;
}

.slider-lines {
    position: absolute;
    left: 0;
    top: 125px;
    width: 100%;
    height: calc(100dvh - 125px);
    z-index: 9;
    pointer-events: none;
}

.slider-lines a,
.slider-lines button {
    pointer-events: all !important;
}

.slider-lines .row {
    height: 100%;
}

.main-slider .slider-overlay {
    z-index: 2;
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.main-slider .slider-overlay img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.main-slider .slider-item {
    height: 100dvh;
    background-repeat: no-repeat;
    background-size: cover !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-position: center;
}

.slider-main {
    display: block;
    position: relative;
    z-index: 9;
    width: 100%;
    height: 100%;
    padding-top: 125px;
}

.slider-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    padding: 50px 60px;
}

.slider-main .row {
    height: 100%;
}

.slider-content .subtitle {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: var(--bold);
    color: #fff;
}

.slider-content .title {
    font-size: 55px;
    font-weight: var(--extraBold);
    color: #fff;
    line-height: 68px;
}

.slider-lines .slider-line:first-child {
    position: relative;
    padding-right: 0;
    display: flex;
    align-items: end;
    justify-content: end;
    padding-bottom: 65px;
}

.slider-lines .slider-line:first-child .main-slider-buttons button {
    width: 45px;
    height: 45px;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--dark);
    background: #FFFFFF;
    transition: 400ms;
}

.slider-lines .slider-line:first-child .main-slider-buttons button:hover {
    color: #FFFFFF;
    background: var(--primary);
    transition: 400ms;
}

.slider-lines .slider-line:first-child .main-slider-buttons {
    transform: translateX(45px);
    display: flex;
    z-index: 9;
}


.slider-counter {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    padding: 65px 35px;
    font-size: 70px;
    line-height: 1;
}

.slider-counter span {
    font-weight: 200;
    color: #fff;
}


.slider-link-box {
    z-index: 99999999;
    display: flex;
    position: relative;
    pointer-events: all !important;
    width: 100%;
    height: 100%;
    align-items: end;
    background: #00000000 !important;
    padding: 75px 50px !important;
    transition: 400ms;
}

.slider-link-box:hover {
    background: #000000a6 !important;
    transition: 400ms;
}

.slider-link-box .theme-link {
    color: #fff;
    font-size: 16px;
    font-weight: var(--bold);
}

.slider-link-box .theme-link svg line,
.slider-link-box .theme-link svg path {
    stroke: #fff;
}

/*** Main-slider-End ***/


/*** Main-about ***/

.main-about {
    height: 750px;
}

.main-about .row {
    height: 100%;
}

.main-about .about-box {
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.main-about .about-box:not(:last-child) {
    border-right: 1px solid #D9D9D9;
}

.main-about .about-box:last-child {
    background: #E6E6E6;
}

.about-year-box {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text-box {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-box p {
    font-size: 18px;
    font-weight: var(--regular);
    color: var(--dark);
    line-height: 36px;
}

.about-title-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 35px;
}

.about-title-box .subtitle {
    font-size: 16px;
    font-weight: var(--bold);
    margin-bottom: 10px;
}

.about-title-box .title {
    font-size: 58px;
    font-weight: var(--extraBold);
    line-height: 72px;
    color: var(--dark);
    margin-bottom: 25px;
}

.theme-link {
    display: flex;
    flex-direction: column;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: none;
    font-weight: var(--bold);
}

.theme-link svg {
    margin-bottom: 18px;
    transition: 400ms;
}

.theme-link:hover svg {
    transform: translate(5px, -5px);
    transition: 400ms;
}

.about-title-box .theme-link {
    font-size: 16px;
    font-weight: var(--bold);
    color: var(--primary);
}

.about-year-box tspan {
   /* font-weight: var(--extraBold);*/
}

/*** Main-about-End ***/

/*** Footer ***/

footer {
    background: #F5F5F5;
    padding-top: 60px;
}

footer * {
    color: var(--dark) !important;
}

.footer-logo img {
    height: 95px;
    width: 275px;
    object-fit: contain;
    object-position: left;
}

.footer-logo {
    margin-bottom: 60px;
}

span.footer-about-title {
    font-size: 18px;
    font-weight: var(--bold);
    margin-bottom: 50px;
    display: block;
}

p.footer-about-text {
    font-size: 16px;
    font-weight: var(--regular);
    line-height: 32px;
    color: #101010;
}

h3.footer-menu-title {
    font-size: 18px;
    font-weight: var(--bold);
    margin-bottom: 40px;
}

.footer-menu-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-item ul li a {
    line-height: 48px;
    color: #B4B4B4 !important;
    font-weight: var(--bold);
    font-size: 18px;
    transition: 400ms;
}

.footer-menu-item ul li a:hover {
    color: var(--primary) !important;
    transition: 400ms;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact ul li {
    text-align: end;
}

.footer-menu-item .footer-address {
    color: #A7A7A7 !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 32px;
}

.footer-menu-item .footer-address * {
    color: #B4B4B4 !important;
    font-weight: var(--bold);
    font-size: 18px;
    transition: 400ms;
}

.footer-socials a {
    font-size: 26px;
    margin-right: 15px;
    transition: 400ms;
}

.footer-socials a i {
    color: var(--primary) !important;
    transition: 400ms;
}


.footer-socials a:hover i {
    color: var(--dark) !important;
    transition: 400ms;
}

a.footer-whatsapp {
    margin-top: 25px;
    padding: 45px 28px;
    border-radius: 0;
    display: flex;
    background: var(--whatsapp);
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    border: 2px solid var(--whatsapp);
    transition: 400ms;
    flex-direction: row-reverse;
}

a.footer-whatsapp:hover {
    background: none;
    border: 2px solid var(--whatsapp);
    transition: 400ms;
}

a.footer-whatsapp * {
    transition: 400ms;
}

a.footer-whatsapp:hover * {
    color: var(--whatsapp);
    transition: 400ms;
}

.footer-whatsapp-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 15px;
}

.footer-whatsapp-content span {
    color: #fff;
}

.footer-whatsapp-content span.light {
    font-size: 14px;
    font-weight: 300;
}

.footer-whatsapp-content span.bold {
    font-size: 18px;
    font-weight: 600;
}

.footer-whatsapp-icon i {
    font-size: 65px;
    color: #fff;
    padding-left: 15px;
}

.copyright {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 55px;
    margin-top: 50px;
}

.copyright span {
    font-size: 14px;
    color: #CBCBCB !important;
}

.copyright a {
    display: flex;
    align-items: end;
    height: 100%;
}

a.footer-whatsapp * {
    color: #fff !important;
}

a.footer-whatsapp:hover * {
    color: var(--whatsapp) !important;
}

ul.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    margin: 30px 0;
}

ul.footer-contact a {
    font-size: 18px !important;
    font-weight: var(--bold) !important;
    margin-bottom: 5px !important;
    display: block !important;
    color: var(--dark) !important;
    line-height: 32px !important;
    transition: 400ms;
}

ul.footer-contact a:hover {
    color: var(--primary) !important;
    letter-spacing: 1px;
    transition: 400ms;
}

button.return-top-button {
    height: 80px;
    width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    background: var(--primary);
    transition: 400ms;
}

button.return-top-button:hover {
    border: 1px solid var(--primary);
    background: #ffffff00;
    transition: 400ms;
}


button.return-top-button span {
    color: #fff !important;
    font-size: 14px;
    font-weight: 400;
    margin-right: 15px;
    transition: 400ms;
}

button.return-top-button:hover span {
    color: var(--primary) !important;
    transition: 400ms;
}

button.return-top-button:hover img {
    filter: brightness(0) saturate(100%) invert(69%) sepia(10%) saturate(1740%) hue-rotate(358deg) brightness(93%) contrast(84%);
    transition: 400ms;
}

/*** Footer-End ***/


/*** Contact-Page ***/

.contact-page {
    margin-top: 275px;
}


.contact-page .section-top {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 60px;
}

.contact-page .section-top .subtitle {
    font-weight: var(--extraBold);
    z-index: 9;
    padding-bottom: 10px;
}

.contact-page .section-top .title {
    color: var(--dark);
    font-size: 30px;
    font-weight: var(--extraBold);
    line-height: 40px;
    z-index: 9;
}

.contact-form {
    margin-bottom: 75px;
}

.contact-form input,
.contact-form textarea {
    height: 55px;
    border: none;
    background: #E8E8E8;
    width: 100%;
    margin-bottom: 15px;
    padding-left: 15px;
    font-weight: 300;
    outline: none;
    transition: 400ms;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    background: #EBDDC6 !important;
    color: #9d7340 !important;
    transition: 400ms;
}

.contact-form textarea {
    height: 200px;
    padding-top: 15px;
}

.contact-form textarea::placeholder,
.contact-form input::placeholder {
    color: #000;
    font-weight: var(--medium);
    transition: 400ms;
}

.contact-form button {
    margin-top: 30px;
    color: var(--dark) !important;
}

.contact-informations {
    padding-top: 125px !important;
    padding-left: 125px !important;
}

span.contact-item-title {
    font-size: 24px !important;
    font-weight: var(--extraBold) !important;
    line-height: 31px !important;
    margin-bottom: 20px !important;
    display: block;
    margin-left: 45px;
}

.contact-item {
    margin-bottom: 100px !important;
}

.contact-item i {
    font-size: 19px;
    color: var(--dark);
    height: 36px;
    display: flex;
    align-items: center;
    width: 20px;
    justify-content: right;
    margin-right: 25px;
}

.contact-item a,
.contact-item p {
    font-size: 24px;
    font-weight: var(--extraBold) !important;
    color: var(--dark);
}

/*** Contact-Page-End ***/


/*** Main-project-area ***/

.main-projects-area {
    height: 750px;
    position: relative;
    pointer-events: none;
}

.project-area-lines {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.project-area-lines .project-line:not(:last-child) {
    border-right: 1px solid #fff;
    height: 100%;
}

.project-area-lines .project-line {
    pointer-events: none;
}

.project-area-lines .row {
    height: 100%;
}

.left-area,
.right-area {
    height: 750px;
    display: block;
    position: relative;
    z-index: 0;
    pointer-events: all;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.left-area {
    background: url(images/left-bg.jpg);
}

.right-area {
    background: url(images/right-bg.jpg);
}

.left-area:after,
.right-area:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: -1;
    mix-blend-mode: multiply;
    transition: 400ms;
}

.left-area:hover:after,
.right-area:hover:after {
    opacity: .35;
    transition: 400ms;
}

.left-area:after {
    background: url(images/left-overlay.png);
}

.right-area:after {
    background: url(images/right-overlay.png);
}

.project-title-area {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    padding: 125px 30px;
}

.project-title-area .subtitle {
    font-size: 16px;
    font-weight: var(--bold);
    margin-bottom: 10px;
}

.project-title-area .title {
    font-size: 58px;
    color: #fff;
    font-weight: var(--extraBold);
    line-height: 72px;
}

.project-link-area {
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: start;
    padding: 125px 30px;
}

.project-link-area .theme-link {
    color: #fff;
    font-weight: var(--bold);
}

.project-link-area .theme-link svg line,
.project-link-area .theme-link svg path {
    stroke: #fff;
}

/*** Main-project-area-End ***/


/*** Modist-area ***/

.modist-area {
    height: 850px;
    padding-bottom: 175px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.modist-area-lines {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.modist-area-lines .modist-line:not(:last-child) {
    border-right: 1px solid #D9D9D9;
    height: 100%;
}

.modist-area-lines .modist-line {
    pointer-events: none;
}

.modist-area-lines .row {
    height: 100%;
}

lottie-player#birds-animation {
    position: absolute;
    top: -235px;
    z-index: 3;
    opacity: .5;
    filter: contrast(0.5);
}

.modist-area-text {
    height: 287px;
    position: relative;
    width: 100%;
    z-index: 9;
}

.modist-area-text .col-md-6 {
    padding: 0;
}

.modist-text-content img {
    width: 111%;
}

.modist-text-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.modist-text-content span {
    position: absolute;
    font-family: var(--yellowtail);
    font-size: 58px;
    font-weight: var(--regular);
}

.modist-area-text:after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 150%;
    background: #ffffff;
    z-index: 8;
    left: calc(50% - 1px);
    top: -25%;
}

/*** Modist-area-End ***/


/*** Main-Bottom ***/

.main-bottom {
    height: 775px;
    position: relative;
}

.main-bottom-lines {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.main-bottom-lines .main-bottom-line:not(:last-child) {
    border-right: 1px solid #D9D9D9;
    height: 100%;
}

.main-bottom-lines .main-bottom-line {
    pointer-events: none;
}

.main-bottom-lines .row {
    height: 100%;
}

.row.main-bottom-row {
    justify-content: space-around;
    z-index: 9;
    position: relative;
}

a.bottom-item {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 45px 40px;
}

.main-bottom-row .col-md-3:nth-child(1) .bottom-item {
    background: var(--primary);
}

.main-bottom-row .col-md-3:nth-child(2) .bottom-item {
    background: var(--dark);
}

.main-bottom-row .col-md-3:nth-child(3) .bottom-item {
    background: var(--soft);
}


.main-bottom-row .col-md-3:nth-child(1) .bottom-item *,
.main-bottom-row .col-md-3:nth-child(2) .bottom-item * {
    color: #fff;
}

.main-bottom-row .col-md-3:nth-child(3) .bottom-item * {
    color: var(--dark);
    stroke: var(--dark);
}

span.bottom-item-title {
    font-size: 36px;
    font-weight: var(--extraBold);
}

a.bottom-item .theme-link {
    font-weight: var(--bold);
}

a.bottom-item:hover .theme-link svg {
    transform: translate(5px, -5px);
}

.main-bottom .section-top {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    margin-top: -68px;
}

.main-bottom .section-top .subtitle {
    font-weight: var(--bold);
    background: #fff;
    z-index: 9;
    padding-bottom: 10px;
    padding-top: 25px;
}

.main-bottom .section-top .title {
    color: var(--dark);
    font-size: 58px;
    font-weight: var(--extraBold);
    line-height: 72px;
    background: #fff;
    z-index: 9;
    padding-bottom: 40px;
}

.bottom-item-images img {
    height: 65px;
}

/*** Main-Bottom-End ***/


/*** Media-Page ***/

.media-page-banner {
    margin-top: 125px;
    background: url(images/media-banner.jpg);
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center;
}

.banner-content {
    height: 100%;
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.page-banner .row {
    height: 100%;
}

.banner-box {
    padding: 55px 115px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
}

.banner-box .subtitle {
    font-size: 20px;
    font-weight: var(--bold);
}

.banner-box .title {
    font-size: 60px;
    font-weight: var(--extraBold);
    color: var(--dark);
    line-height: 64px;
}


a.media-photo-item {
    width: 100%;
    height: auto;
    display: flex;
    aspect-ratio: 1;
    overflow: hidden;
}

a.media-photo-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    transition: 1000ms;
}

a.media-photo-item:hover img {
    scale: 1.06;
    transition: 1000ms;
}

.media-photos .row .col-md-4 {
    padding: 35px 50px;
}

.media-photos {
    margin: 75px 110px;
}

.media-news-list.media-list-section {
    padding-top: 80px;
}

.media-page .section-top {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 150px;
}

.media-page .section-top .subtitle {
    font-weight: var(--extraBold);
    z-index: 9;
    padding-bottom: 10px;
    font-size: 16px;
}

.media-page .section-top .title {
    color: var(--dark);
    font-size: 58px;
    font-weight: var(--extraBold);
    line-height: 72px;
    z-index: 9;
    text-align: center;
}

a.media-kits {
    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--dark);
    margin: 200px 0;
    padding: 50px 120px 50px 85px;
}

a.media-kits:hover .theme-link svg {
    transform: translate(5px, -5px);
}

.container-padding {
    padding: 0 145px !important;
}

.kits-title {
    font-size: 36px;
    font-weight: var(--extraBold);
    color: #ffffff;
    line-height: 44px;
    margin-bottom: 30px;
    display: block;
}

.kits-left .theme-link {
    color: #fff
}

a.media-news-item img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    display: flex !important;
    aspect-ratio: 1;
    position: relative;
}


a.media-news-item .news-title {
    margin: 45px 0 25px 0;
    font-size: 32px;
    display: block;
    font-weight: var(--extraBold);
    color: var(--primary);
    line-height: 43px;
}

a.media-news-item .news-summary p {
    font-size: 16px;
    font-weight: var(--medium);
    color: #A2A2A2;
    line-height: 34px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*** Media-Page-End ***/


/*** News-Detail-Page ***/

.media-detail-page span.page-about-title {
    font-size: 50px;
    font-weight: 900;
    color: var(--dark);
    line-height: 60px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.media-detail-page .page-about-description p {
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    line-height: 35px;
}

.media-detail-page .page-content {
    background: #F4F4F4;
    margin-top: 15px;
}

.media-detail-page .page-content-left {
    padding: 90px 150px 90px 70px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    height: 100%;
}

.media-detail-page .page-content-right img,
.media-detail-page .page-content-right {
    height: auto;
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1 !important;
}

.media-detail-page .news-detail-page-content {
    margin-bottom: 125px;
}


.media-detail-page {
    margin-top: 175px;
}

/*** News-Detail-Page-End ***/

/*** Corporate-Page ***/

a.corporate-gallery-item {
    height: 750px;
    display: flex;
    border-right: 1px solid #fff;
}

a.corporate-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corporate-gallery {
    margin-left: -15px !important;
    margin-right: -15px !important;
}

.corporate-gallery-slider {
    transition: 400ms;
}

.corporate-gallery-slider .item.slider-item,
.corporate-gallery-slider .item.slider-item a {
    width: 100%;
}

.corporate-gallery-slider:hover a {
    filter: grayscale(1);
    transition: 400ms;
}

.corporate-gallery-slider a:hover {
    filter: grayscale(0);
    transition: 400ms;
}

section.corporate-page.inner-page .modist-area {
    height: 700px;
    padding-bottom: 0;
}

.corporate-top-title-area {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
}

.corporate-top-title-area .subtitle {
    font-size: 16px;
    font-weight: var(--bold);
    margin-bottom: 10px;
    line-height: 21px;
}

.corporate-top-title-area .title {
    font-size: 58px;
    font-weight: var(--extraBold);
    line-height: 72px;
    color: var(--dark);
}

.corporate-top-text-area p {
    font-size: 18px;
    font-weight: var(--regular);
    color: var(--dark);
    line-height: 36px;
}

.corporate-top-content {
    background: #DFDFDF;
    padding-bottom: 175px;
    padding-top: 225px;
    margin-top: -150px;
}

.corporate-top {
    margin-top: -415px;
    z-index: 9;
    position: relative;
}

section.corporate-page.inner-page {
    margin-top: 125px;
    width: 100%;
    overflow: hidden;
}

.corporate-banner-lines {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.corporate-banner-lines .corporate-banner-line:nth-child(1),
.corporate-banner-lines .corporate-banner-line:nth-child(3) {
    border-right: 1px solid #D9D9D9;
    height: 100%;
}

.corporate-banner-lines .project-line {
    pointer-events: none;
}

.corporate-banner-lines .row {
    height: 100%;
}

.corporate-banner {
    height: 775px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}



.corporate-banner-image {
    position: absolute;
    width: 100%;
    margin-bottom: 45px;
}

.corporate-banner-image img {
    width: 100%;
    object-fit: contain;
}

.corporate-banner-content {
    height: 100%;
    padding-top: 90px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.corporate-banner-content .subtitle {
    font-size: 16px;
    font-weight: var(--bold);
    margin-bottom: 10px;
    z-index: 99;
}

.corporate-banner-content .title {
    font-size: 58px;
    font-weight: var(--extraBold);
    color: var(--dark);
    line-height: 72px;
    text-align: center;
    z-index: 99;
}

/*** Corporate-Page-End ***/

/*** Project-Page ***/

section.product-detail-page.inner-page {
    overflow: hidden;
    width: 100%;
}

.project-page-banner {
    margin-top: 125px;
    background: url(images/project-banner.jpg);
    height: 1080px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.page-banner.project-page-banner .col-md-3:has(.banner-content) {
    padding: 0;
}

.page-banner.project-page-banner .banner-box {
    /* padding: 55px 55px; */
    padding: 40px 35px;
    width: 100%;
}

.page-banner.project-page-banner .banner-box .title {
    font-size: 56px;
    line-height: 62px;
}

.project-page-lines {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    pointer-events: none;
}

.project-page-lines .project-page-line:not(:last-child) {
    border-right: 1px solid #D9D9D9;
    height: 100%;
}

.project-page-lines .project-line {
    pointer-events: none;
}

.project-page-lines .row {
    height: 100%;
}

.project-page-content {
    position: relative;
}

.counter-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    text-align: center;
    padding: 100px 0;
}

.counter-item .count {
    color: var(--dark);
    font-size: 56px;
    font-weight: var(--bold);
    line-height: 75px;
}

.counter-item .title {
    font-size: 31px;
    font-weight: var(--medium);
    line-height: 36px;
}

.project-plan-image a {
    width: 100%;
}

.project-plan-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 9;
}

.project-plan-image .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 65px 0 50px 0;
    background: #fff;
    z-index: 9;
}

.project-plan-image {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.project-plan-image .section-content .subtitle {
    font-size: 16px;
    font-weight: var(--bold);
    margin-bottom: 10px;
}

.project-plan-image .section-content .title {
    font-size: 58px;
    font-weight: var(--extraBold);
    line-height: 72px;
    text-align: center;
    color: var(--dark);
}

.project-bottom-right {
    background: url(images/catalog.jpg) #c69d5d;
    height: 700px;
    z-index: 9;
    position: relative;
    background-size: cover;
    background-position: right;
    padding: 50px 115px;
    display: flex;
    flex-direction: column;

}

.project-page-bottom .row {
    margin: 0 !important;
}

.project-page-bottom .col-md-3,
.project-page-bottom .col-md-6 {
    padding: 0;
}

.project-bottom-right a {
    color: #fff !important;
    margin-bottom: 33px;
}

.project-bottom-right .title {
    color: #E6E6E6;
    font-size: 62px;
    line-height: 65px;
    font-weight: var(--extraBold)
}

.project-bottom-right .subtitle {
    color: #E6E6E6;
    font-size: 21px;
    font-weight: var(--extraBold)
}

.project-bottom-left-image {
    height: 100%;
    display: flex;
    align-items: center;
}

.project-bottom-left-image img {
    transform: translate(80px, 0px);
    height: 395px;
    width: 100%;
    object-fit: contain;
    z-index: 99;
    position: relative;
}

.project-bottom-left-content {
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-left: 75px;
}

.project-bottom-left-content .subtitle {
    font-size: 21px;
    font-weight: var(--bold);
    margin-bottom: 10px;
}

.project-bottom-left-content .title {
    color: var(--dark);
    font-size: 63px;
    font-weight: var(--extraBold);
    line-height: 72px;
    margin-bottom: 45px;
}

.project-bottom-left-content a {
    color: var(--primary) !important;
}



.floor-slider-buttons button {
    width: 45px;
    height: 45px;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--dark);
    background: #D9D9D9;
    transition: 400ms;
}

.floor-slider-buttons button:hover {
    color: #FFFFFF;
    background: var(--primary);
    transition: 400ms;
}

.slider-button-col {
    padding: 0 !important;
}

.floor-slider-buttons {
    display: flex;
    z-index: 9;
}

.slider-right {
    padding: 0 160px 0 125px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-content: flex-end;
}

.slider-right .slider-right-top {
    margin-bottom: 30px;
    display: flex;
    position: relative;
}

.floor-plan-rooms {
    background: #D9D9D9;
    padding: 50px 45px;
    width: 100%;
}

.floor-plan-rooms ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.floor-plan-rooms ul li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    border-bottom: 1px solid #C6C6C6;
}

.floor-plan-rooms ul li span {
    color: var(--dark);
    font-size: 20px;
    font-weight: var(--medium);
}

.floor-plan-rooms ul li:last-child {
    border: none;
}

.floor-plan-rooms ul li span:last-child {
    font-size: 18px;
}

span.floor-plan-title {
    font-size: 52px;
    font-weight: var(--extraBold);
    color: var(--dark);
    text-align: end;
    line-height: 1;
    margin-bottom: 30px;
}

.floor-slider-control {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 99;
    pointer-events: all;
}

.project-floor-plan {
    position: relative;
    margin: 75px 0;
    z-index: 99;
    pointer-events: none;
}

.slider-left {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 50px;
    pointer-events: all !important;
}

/*** Project-Page-End ***/

.video-item video {
    width: 100%;
    height: auto;
}

.media-photos .section-top {
    margin-bottom: 25px;
    padding-top: 50px;
}