/**
Theme Name: Partum Interiors
Theme Description: Partum Interiors wp-theme
*/


/****************************************************************************************************
        FONTS       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
@font-face {
    font-family: "Jost";
    font-style: normal;
    font-display: swap;
    font-weight: 400 600 700;
    src: url("./fonts/Jost-Variable.woff2") format("woff2"),
        url("./fonts/Jost-Variable.woff") format("woff");
}
@font-face {
    font-family: "OpenSans";
    font-style: normal;
    font-display: swap;
    font-weight: 400 600 700;
    src: url("./fonts/OpenSans-Variable.woff2") format("woff2"),
        url("./fonts/OpenSans-Variable.woff") format("woff");
}



/****************************************************************************************************
        VARIABLES       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
:root {
    /* colors */
    --white: #fff;
    --black: #000;
    --dark: rgba(56, 41, 28, 1);
    --beige: rgba(226, 219, 209, 1);
    --light: rgba(249, 248, 246, 1);

    /* fonts */
    --font-primary: "Opens", sans-serif;
    --font-secondary: "Jost", sans-serif;

    /* text */
    --text-black: var(--black);
    --text-dark: var(--dark);
    --text-beige: var(--beige);
    --text-light: var(--light);
    --text-white: var(--white);

    /* backgrond */
    --background-black: var(--black);
    --background-dark: var(--dark);
    --background-beige: var(--beige);
    --background-light: var(--light);
    --background-white: var(--white);
   
    --text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}



/****************************************************************************************************
        BASIC       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
body {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-primary);
    line-height: 28px;
    background-color: var(--background-light);
}
body * {
    box-sizing: border-box;
    outline: 0;
    max-width: 100%;
}
body.menu--on {
    overflow: hidden;
}
select {
    -webkit-appearance: none;
}
a {
    text-decoration: none;
    transition: all .2s ease;
}
p {
    margin: 0;
    margin-bottom: 15px;
}
img {
    max-width: 100%;
    height: auto;
}
h1, .heading--h1 {
    font-family: var(--font-secondary);
    font-size: 42px;
    line-height: 56px;
    font-weight: 600;
    margin: 45px 0;
}
h2, .heading--h2 {
    font-family: var(--font-secondary);
    font-size: 34px;
    line-height: 44px;
    font-weight: 600;
    margin: 40px 0;
}
h3, .heading--h3 {
    font-family: var(--font-secondary);
    font-size: 30px;
    line-height: 42px;
    font-weight: 400;
    margin: 35px 0;
}
h4, .heading--h4 {
    font-family: var(--font-secondary);
    font-size: 25px;
    line-height: 34px;
    font-weight: 400;
    margin: 30px 0;
}
h5, .heading--h5 {
    font-family: var(--font-secondary);
    font-size: 21px;
    line-height: 34px;
    font-weight: 700;
    margin: 25px 0;
}
h6, .heading--h6 {
    font-family: var(--font-secondary);
    font-size: 17px;
    line-height: 28px;
    font-weight: 700;
    margin: 20px 0;
}
ul, ol {
    margin: 20px 0;
}
ul, ol {
    padding: 0;
}
ul li {
    list-style: none;
}
ul:first-child,
ol:first-child,
h1:first-child, 
h2:first-child, 
h3:first-child, 
h4:first-child, 
h5:first-child, 
h6:first-child {
    margin-top: 0 !important;
}
ul:last-child,
ol:last-child,
ul li:last-child,
p.zero-margin,
p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0 !important;
}

/* BASIC RESPONSIVE */
@media (max-width: 575px) {
    h1, .heading--h1 {
        font-size: 32px;
        line-height: 44px;
        margin: 35px 0;
    }
    h2, .heading--h2 {
        font-size: 26px;
        line-height: 44px;
        font-weight: 900;
        margin: 30px 0;
    }
    h3, .heading--h3 {
        font-size: 24px;
        line-height: 36px;
        font-weight: 400;
        margin: 25px 0;
    }
    h4, .heading--h4 {
        font-size: 20px;
        line-height: 28px;
        margin: 20px 0;
    }
    h5, .heading--h5 {
        font-size: 16px;
        line-height: 28px;
        margin: 15px 0;
    }
    h6, .heading--h6 {
        font-size: 12px;
        line-height: 20px;
        margin: 10px 0;
    }
}

/* COMMON CLASSES ********************************************************************************/
.body__inner {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
body.is-loading .body__inner {
    opacity: 0.2;
}
.cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.color--light {
    color:  var(--text-light);
}
.color--dark {
    color: var(--text-dark);
}
.has--bg {
    padding: 70px 0;
}
.bg--beige {
    background-color: var(--background-beige);
}
.wp-block-image {
    margin: 30px 0;
}
.wp-block-image:first-child {
    margin-top: 0;
}
.wp-block-image:last-child {
    margin-bottom: 0;
}
.disable-margin--top {
    margin-top: 0 !important;
}
.disable-margin--bottom {
    margin-bottom: 0 !important;
}
.disable-margin--top-and-bottom {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.visibility--hidden {
    display: none !important;
}
.ajax,
.ajax-url {
    display: none;
}

/* COMMON CLASSES RESPONSIVE */
@media (max-width: 575px) {
    .has--bg {
        padding: 50px 0;
    }
}

/* GRID ********************************************************************************/
.grid {
    display: grid;
    gap: 25px;
}
.grid--2 {
    grid-template-columns: 1fr 1fr;
}
.grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.grid--1-2 {
    grid-template-columns: 1fr 2fr;
}
.grid--2-1 {
    grid-template-columns: 2fr 1fr;
}
.grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* GRID RESPONSIVE */
@media only screen and (max-width: 991px) {
    .grid--4 {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 767px) {
    .grid--2,
    .grid--3,
    .grid--1-2,
    .grid--2-1,
    .grid--4 {
        grid-template-columns: 1fr;
    }
}
@media only screen and (max-width: 575px) {
    .grid {
        grid-template-columns: 1fr !important;
    }
}

/* LOADING ********************************************************************************/
@keyframes loading {
    from {
      transform: scale(0);
      opacity: 1;
    }
  
    to {
      transform: scale(1);
      opacity: 0;
    }
}
.loading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    z-index: 555;
}
body.is-loading .loading {
    display: block;
}
.loading div {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 0.3rem solid #000;
    animation: 1.5s loading infinite;
}
.loading div:nth-child(2) {
    animation-delay: 0.5s;
}

/* BUTTON ********************************************************************************/
.btns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.btns:not(:first-child) {
    margin-top: 30px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    color: var(--text-dark);
    background-color: transparent;
    border:  1px solid var(--dark);
    padding: 5px 15px;
    text-decoration: none;
}
.btn:hover {
    color: var(--text-light);
    background-color: var(--background-dark);
}
.btn--dark {
    color: var(--text-light);
    background-color: var(--background-dark);
}
.btn--dark:hover {
    text-decoration: none;
    color: var(--text-dark);
    background-color: var(--background-beige);
}
.btn--light {
    color: var(--text-light);
    border-color: var(--beige);
}
.btn--light:hover {
    text-decoration: none;
    color: var(--text-dark);
    background-color: var(--background-beige);
}

/* LINK ********************************************************************************/
.link {
    display: inline-block;
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 13px;
    line-height: 28px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration-color: var(--text-dark);
    text-decoration-thickness: 1x;
    text-underline-offset: 4px;
    transition: all .2s ease;
}
.link:hover {
    color: var(--text-dark);
    text-underline-offset: 3px;
}

/* CLOSE ********************************************************************************/
.close {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1;
}
.close::before,
.close::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    height: 4px;
    width: 36px;
    border-radius: 2px;
    background-color: var(--background-beige);
    z-index: 1;
}
.close::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.close::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* ACCORDION ********************************************************************************/
.js-accordion-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    margin: 0;
    padding-right: 30px;
    z-index: 1;
}
.js-accordion-title-status {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
    z-index: 1;
}
.js-accordion-title-status:before,
.js-accordion-title-status:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--background-dark);
    z-index: 1;
}
.js-accordion-title-status:before {
    transform: translate(-50%, -50%) rotate(90deg);
}
.js-accordion-title-status:after {
    transform: translate(-50%, -50%);
}
.js-accordion.is-expanded .js-accordion-title-status:after {
    opacity: 0;
}
.js-accordion-text {
    display: none;
}
.js-accordion.is-expanded .js-accordion-text {
    display: block;
}

/* SECTION ********************************************************************************/
section {
    position: relative;
    margin: 70px 0;
    z-index: 1;
}
.section__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.section__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.text--white {
    color: #fff ;
}
.section__container {
    width: 1300px;
    max-width: 100%;
    padding: 0 50px;
    margin: 0 auto;
}
.section__container.section__container--stretched {
    width: 100%;
    padding: 0 50px;
}
.section__container.section__container--lg {
    width: 1400px;
    padding: 0 50px;
}
.section__title {
    margin-bottom: 50px;
}
.section__title * {
    margin: 0;
}
.section__title *:not(:last-child) {
    margin-bottom: 10px;
}
.section__text a:not(.btn) {
    color: inherit;
    text-decoration: underline;
}
.section__text ul li {
    list-style: disc;
}
.section__text ul li,
.section__text ol li {
    list-style-position: inside;
    padding-left: 2ch;
}

/* SECTION RESPONSIVE */
@media (max-width: 767px) {
    .section__container,
    .section__container.section__container--stretched,
    .section__container.section__container--lg {
        padding: 0 30px;
    }
}
@media (max-width: 575px) {
    section {
        margin: 50px 0;
    }
    .section__container,
    .section__container.section__container--stretched,
    .section__container.section__container--lg {
        padding: 0 15px;
    }
}

/* SLICK SLIDER ********************************************************************************/
.slick-slider {
    max-width: 100%;
}
.slick-track {
    max-width: unset;
    margin: 0;
}
.slick-dots {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 15px;
    bottom: 20px;
    left: 0;
    width: 100%;
    margin: 0;
    z-index: 1;
}
.slick-dots li {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    opacity: 0.5;
    z-index: 1;
}
.slick-dots li.slick-active {
    opacity: 1;
} 
.slick-dots li button {
    display: none;
}
.slick-dots li:only-child {
    display: none;
}
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all .2s ease;
    cursor: pointer;
    z-index: 1;
}
.slick-prev {
    left: 0;
}
.slick-next {
    right: 0;
}
.slick-arrow:before,
.slick-arrow:after {
   position: absolute;
   content: "";
   left: 50%;
   width: 18px;
   height: 2px;
   background-color: #fff;
   z-index: 1;
}
.slick-prev:before {
    top: 18px;
    transform: translateX(-50%) rotate(-45deg);
}
.slick-prev:after {
    bottom: 18px;
    transform: translateX(-50%) rotate(45deg);
}
.slick-next:before {
    top: 18px;
    transform: translateX(-50%) rotate(45deg);
}
.slick-next:after {
    bottom: 18px;
    transform: translateX(-50%) rotate(-45deg);
}

/* MODAL ********************************************************************************/
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 200;
}
.modal.is-visible {
    display: block;
}
.modal .close {
    position: absolute;
    top: 68px;
    right: 58px;
}
.modal .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 90px;
}
.modal iframe {
    width: 900px;
    max-width: 100%;
    height: 500px;
    max-height: 100%;
}
.modal video {
    width: 900px;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}



/****************************************************************************************************
        HEADER       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.header {
    position: relative;
    background-color: var(--background-beige);
    z-index: 100;
}
body.home .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 111;
}
body.home .header:before {
	position: absolute;
	content: "";
	inset: 0;
	background-image: linear-gradient(to bottom, var(--background-dark), transparent);	
	z-index: -1;
}
.header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    gap: 0 60px;
}
.header__logo {
    display: flex;
    align-items: center;
    width: auto;
    height: 126px;
    flex-shrink: 0;
}
.header__logo img {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
}
.header__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 450px;
    transform: translateX(100%);
    transition: all .4s ease;
    padding: 150px 50px 15px 50px;
    background-color: var(--background-dark);
    z-index: 222;
}
body.menu--on .header__menu {
    transform: translateX(0);
}
.header__menu .close {
    position: absolute;
    top: 30px;
    right: 50px;
}
.header__menu__scroller {
    overflow: hidden;
    overflow-y: auto;
    max-height: 100%;
    border-top: 1px solid var(--beige);
}
.header__menu .menu {
    width: 260px;
    flex-wrap: wrap;
}
.header__menu .menu li {
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
    font-family: var(--font-secondary);
    width: 100%;
    color: var(--text-light);
    text-transform: uppercase;
    padding: 25px 0;
    border-bottom: 1px solid var(--beige);
}
.header__menu .menu li a {
    color: inherit;
}
.header__menu .menu li.current_page_item a, 
.header__menu .menu li a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
}

/* SUBMENU ********************************************************************************/
.header__menu .menu li.menu-item-has-children {
    position: relative;
    padding-right: 20px;
    z-index: 1;
}
.header__menu .menu li.menu-item-has-children::before,
.header__menu .menu li.menu-item-has-children::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 1px;
    top: 50%;
    background-color: var(--background-black);
    pointer-events: none;
    margin-top: 2px;
    z-index: 1;
}
.header__menu .menu li.menu-item-has-children::before {
    right: 5px;
    transform: translate(0, -50%) rotate(45deg);
}
.header__menu .menu li.menu-item-has-children::after {
    right: 0;
    transform: translate(0, -50%) rotate(-45deg);
}
.header__menu .menu li .sub-menu {
    display: block;
    max-width: 100%;
    padding: 10px;
    margin: 0;
}
.header__menu .menu li .sub-menu li {
    padding: 0;
}
.header__menu .menu li .sub-menu li:not(:last-child) {
    margin-bottom: 5px;
}

/* HEADER SOCIALS */
.header .socials__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 260px;
    padding: 20px 0;
    color: var(--text-light);
}
.header .socials__links h6 {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 15px;
    z-index: 1;
}
.header .socials__links h6:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 15px;
    height: 2px;
    background-color: var(--background-light);
    z-index: 1;
}
.header .socials__links .link {
    color: var(--text-light);
    margin-right: 4px;
    text-decoration-color: var(--light);
}
.header .socials__links .link:not(:first-child) {
    position: relative;
    padding-left: 10px;
    z-index: 1;
}
.header .socials__links .link:not(:first-child):before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--background-light);
    z-index: 1;
}

/* HAMBURGER ********************************************************************************/
.hamburger {
    position: relative;
    width: 40px;
    height: 22px;
    cursor: pointer;
    z-index: 1;
}
.hamburger::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-top: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
    pointer-events: none;
    z-index: 1;
}
body.home .hamburger:before {
	border-color: var(--light);
}
.hamburger::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    pointer-events: none;
    z-index: 1;
}
body.home .hamburger:after {
	background-color: var(--light);
}

/* HEADER RESPONSIVE */
@media only screen and (min-width: 992px) {
    .header__menu .menu li .sub-menu {
        display: none;
        position: absolute;
        bottom: 0;
        left: -15px;
        transform: translateY(100%);
        max-width: unset;
        border-radius: 6px;
        background-color: var(--background-white);
        padding: 15px;
        z-index: 1;
    }
    .header__menu .menu li.menu-item-has-children:hover .sub-menu {
        display: block;
    }
    .header__menu .menu li .sub-menu li {
        white-space: nowrap;
    }
}
@media (max-width: 991px) {
    .header__logo {
        height: 100px;
    }
}
@media (max-width: 767px) {
    .header .inner {
        padding: 20px 30px;
    }
    .header .inner {
        gap: 30px;
    }
    .header__logo {
        height: 80px;
    }
}
@media (max-width: 575px) {
    .header .inner {
        padding: 20px 15px;
    }
    .header__logo {
        height: 46px;
    }
    .header__menu {
        padding: 150px 15px 15px;
    }
    .header__menu .close {
        right: 15px;
    }
}



/****************************************************************************************************
        PAGEBUILDER       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/


/* PAGE TITLE ********************************************************************************/
.page_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
    padding: 30px 0;
}
.page_title h6 {
    text-transform: uppercase;
}
.page_title h6:not(:last-child) {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
    z-index: 1;
}
.page_title h6:not(:last-child):before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 15px;
    height: 2px;
    background-color: var(--dark);
    z-index: 1;
}
.page_title small {
    font-size: 11px;
    line-height: 24px;
    font-weight: 600;
}
.page_title__links {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.page_title__links a {
	position: relative;
	display: block;
	font-size: 11px;
    line-height: 24px;
    font-weight: 600;
	color: var(--dark);
	z-index: 1;
}
.page_title__links a:not(:first-child):before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	transform: translate(-12px, 10px);
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--dark);
	z-index: 1;
}

/* PAGE TITLE RESPONSIVE */
@media (max-width: 767px) {}
@media (max-width: 575px) {
    .page_title {
        min-height: unset;
    }
}


/* HERO ********************************************************************************/
.hero__item__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: var(--text-white);
    min-height: 58.334vw;
    padding: 70px 0;
}

/* HERO RESPONSIVE */
@media (max-width: 767px) {
    .hero__item .section__background:before {
        height: 80%;
    }
    .hero__item__content {
        min-height: 120vw;
    }
}


/* BANNER ********************************************************************************/
.banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 59vw;
    color: var(--text-white);
}
.banner .section__background img {
    object-position: center top;
}
.banner .section__inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner .section__content {
    padding: 60px 0;
    text-align: center;
    width: 540px;
    color: var(--text-light);
    border-top: 1px solid var(--beige);
    border-bottom: 1px solid var(--beige);
}
.banner .section__content h1 {
    font-weight: 700;
}
.banner .section__content h1:not(:last-child) {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 25px;
    z-index: 1;
}
.banner .section__content h1:not(:last-child):before {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 20px;
    height: 2px;
    background-color: var(--background-beige);
    z-index: 1;
}
.banner .section__content h4 {
    font-style: italic;
}


/* ANNOTATION ********************************************************************************/
.annotation {
    background-color: var(--background-beige);
    padding: 90px 0;
}
.annotation .section__inner {
    position: relative;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
}
.annotation .section__inner::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 60px;
    transform: translateY(100%);
    width: 143px;
    height: 184px;
    background-image: url('./images/partum-interiors-logo-monogram-footer-desktop.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
}
.annotation .section__content {
    width: 66.6666%;
}
.annotation .section__content h6 {
    position: relative;
    display: block;
    margin-bottom: 20px;
    z-index: 1;
}
.annotation .section__content small {
    display: block;
}
.annotation .section__content small:not(:last-child) {
    margin-bottom: 25px;
}
.annotation .section__text {
    font-size: 16px;
    line-height: 28px;
    font-weight: 700;
}
.annotation .btn:not(:first-child) {
    margin-top: 40px;
}

/* ANNOTATION RESPONSIVE */
@media (max-width: 767px) {
    .annotation .section__content {
        width: 100%;
    }
    .annotation .section__inner::before {
        left: auto;
        right: 0;
        width: 90px;
        height: 114px;
        bottom: 0;
    }
}
@media (max-width: 575px) {
    .annotation {
        padding: 50px 0;
    }
    .annotation .section__inner::before {
        width: 54px;
        height: 70px;
    }
}


/* CTA ********************************************************************************/
.cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
    color: var(--text-light);
}
.cta h3 {
    margin-bottom: 0;
}
.cta h3:not(:last-child) {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    z-index: 1;
}
.cta h3:not(:last-child):before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 585px;
    max-width: 70%;
    height: 1px;
    background-color: var(--beige);
}

/* GALLERY ********************************************************************************/
.gallery__items {
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.gallery__item {
    position: relative;
    z-index: 1;
}
.gallery__item img {
    display: block;
    width: 100%;
}

/* GALLERY RESPONSIVE */
@media (max-width: 1199px) {}
@media (max-width: 767px) {
    .gallery__item {
        width: 100% !important;
    }
}
@media (max-width: 575px) {}



/* TEXT ********************************************************************************/
.text .section__content {
    width: 540px;
    margin-left: 140px;
}
.text h4:not(:last-child) {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
    z-index: 1;
}
.text h4:not(:last-child):before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 15px;
    height: 2px;
    background-color: var(--background-dark);
    z-index: 1;
}
.text .section__content small,
.text .section__text {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 28px;
}
.text .section__text:not(:first-child) {
    margin-top: 30px;
}
.text .section__content .btn:not(:first-child) {
    margin-top: 25px;
}

/* TEXT RESPONSIVE */
@media (max-width: 767px) {
    .text .section__content {
        margin-left: 0;
    }
}


/* TEXT AND BACKGROUND ********************************************************************************/
.text_and_background {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}
.text_and_background .section__content {
    width: 640px;
}
.text_and_background .section__text:not(:last-child) {
    margin-bottom: 35px;
}

/* TEXT AND BACKGROUND RESPONSIVE */
@media (max-width: 575px) {
    .text_and_background {
        min-height: unset;
    }
}


/* TEXT AND GALLERY ********************************************************************************/
.text_and_gallery:not(:first-child) .section__inner {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--dark);
}
.text_and_gallery .section__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 25px;
}
.text_and_gallery .section__inner.is--reversed {
    grid-template-columns: 2fr 1fr;
}
.text_and_gallery__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    order: 1;
}
.text_and_gallery__item.horizontal {
    grid-column: 1 / -1;
}
.text_and_gallery .section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 0;
}
.text_and_gallery .section__inner:not(.is--reversed) .section__content {
    padding-right: 90px;
}
.text_and_gallery .section__inner.is--reversed .section__content {
    order: 1;
    padding-left: 90px;
}
.text_and_gallery .section__content h4:not(:last-child) {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
    z-index: 1;
}
.text_and_gallery .section__content h4:not(:last-child):before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 15px;
    height: 2px;
    background-color: var(--dark);
    z-index: 1;
}
.text_and_gallery .section__text {
    font-size: 13px;
    line-height: 28px;
    font-weight: 600;
}
.text_and_gallery .section__content .link:not(:first-child) {
    margin-top: 40px;
}

/* TEXT AND GALLERY RESPONSIVE */
@media (max-width: 1199px) {
    .text_and_gallery .section__inner:not(.is--reversed) .section__content {
        padding-right: 60px;
    }
    .text_and_gallery .section__inner.is--reversed .section__content {
        padding-left: 60px;
    }
}
@media (max-width: 991px) {
    .text_and_gallery .section__inner,
    .text_and_gallery .section__inner.is--reversed {
        grid-template-columns: 1fr;
    }
   .text_and_gallery__items {
    order: 0 !important;
   }
   .text_and_gallery .section__content {
    order: 1 !important;
   }
   .text_and_gallery .section__inner:not(.is--reversed) .section__content {
        padding-right: 0;
    }
    .text_and_gallery .section__inner.is--reversed .section__content {
        padding-left: 0;
    }
}
@media (max-width: 575px) {
    .text_and_gallery__items {
        grid-template-columns: 1fr;
    }
}


/* CONTENT SNIPPET ********************************************************************************/
.content_snippet__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.content_snippet__items.grid--1 .content_snippet__item {
    gap: 0;
}
.content_snippet__item__image {
    width: 100%;
    display: block;
    height: 463px;
}
.grid--1 .content_snippet__item__image {
    height: 760px;
}
.grid--2 .content_snippet__item__image {
    height: 372px;
}
.content_snippet__item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content_snippet__item__content {
    position: relative;
    z-index: 1;
}
.content_snippet__item__content * {
    margin: 0;
}
.content_snippet__items.grid--1 .content_snippet__item__content {
    color: var(--text-light);
    padding: 20px 50px;
    min-height: 225px;
}
.content_snippet__item__content .section__background img {
    object-position: left center;
}
.content_snippet__item__content__inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 260px;
}
.content_snippet__item__title:not(:last-child) {
    position: relative;
    padding-bottom: 15px;
}
.content_snippet__item__title:not(:last-child):before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 15px;
    height: 2px;
    background-color: var(--background-dark);
    z-index: 1;
}
.content_snippet__items.grid--1 .content_snippet__item__title:not(:last-child):before {
    background-color: var(--background-light);
}
.content_snippet__items.grid--1 .content_snippet__item__content .link {
    color: var(--text-light);
    text-decoration-color: var(--text-light);
}

/* CONTENT SNIPPET RESPONSIVE */
@media (max-width: 1199px) {
    .content_snippet__item__image {
        height: 400px;
    }
    .grid--1 .content_snippet__item__image {
        height: 600px;
    }
    .grid--2 .content_snippet__item__image {
        height: 320px;
    }
}
@media (max-width: 991px) {
    .content_snippet__item__image {
        height: 280px;
    }
    .grid--1 .content_snippet__item__image {
        height: 500px;
    }
    .grid--2 .content_snippet__item__image {
        height: 220px;
    }
    .content_snippet__item__content__inner {
        width: 206px;
    }
}
@media (max-width: 767px) {
    .content_snippet__items {
        gap: 60px 0;
    }
    .content_snippet__item__image {
        height: auto !important;
    }
    .content_snippet__item__image img {
        display: block;
        height: auto;
        object-fit: contain;
    }
    .content_snippet__item__content__inner {
        width: 100%;
    }
    .content_snippet__items.grid--1 .content_snippet__item__content {
        padding: 20px 30px;
        min-height: 180px;
    }
}
@media (max-width: 575px) {
    .content_snippet__items {
        gap: 50px 0;
    }
    .content_snippet__items.grid--1 .content_snippet__item__content {
        padding: 20px 15px;
    }
}


/* SERVICES LIST ********************************************************************************/
.services_list .section__inner > h2 {
    color: var(--text-bluegrey);
}
.services__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px 15px;
}
.services__list__item h6 {
    position: relative;
    display: block;
    padding-bottom: 18px;
    margin-bottom: 18px;
    z-index: 1;
}
.services__list__item h6:not(:last-child)::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 12px;
    height: 1px;
    background-color: var(--background-bluegrey);
    z-index: 1;
}
.services__list__item .section__text {
    color: var(--text-bluegrey);
}
.services__list__item .link:not(:first-child) {
    display: inline-block;
    margin-top: 25px;
}

/* SERVICES LIST RESPONSIVE */
@media (max-width: 767px) {
    .services__list {
        grid-template-columns: 1fr;
    }
}


/* FAQ ********************************************************************************/
.faq .section__inner {
    margin-left: 140px;
}
.faq .section__content {
    width: 540px;
}
.faq .section__content h2 {
    font-weight: 700;
}
.faq__item {
    padding: 25px 0;
    border-top: 1px solid var(--dark);
}
.faq__item:last-child {
    border-bottom: 1px solid var(--dark);
}
.faq__item__text {
    padding-top: 20px;
}

/* FAQ RESPONSIVE */
@media (max-width: 767px) {
    .faq .section__inner {
        margin-left: 0;
    }
}

/* CONTACT ********************************************************************************/
.contact {
    padding: 50px 0;
    background-color: var(--background-beige);
}
.contact .section__inner {
    display: flex;
    align-items: flex-start;
    gap: 160px;
}
.contact .section__content {
    width: 280px;
    flex-shrink: 0;
}
.contact .section__content h6:not(:last-child),
.contact .section__form h4:not(:last-child) {
    position: relative;
    display: block;
    padding-bottom: 15px;
    margin-bottom: 15px;
    z-index: 1;
}
.contact .section__content h6:not(:last-child)::before,
.contact .section__form h4:not(:last-child)::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 15px;
    height: 2px;
    background-color: var(--dark);
    z-index: 1;
}
.contact .section__content .section__text,
.contact .section__form  {
    color: var(--text-dark);
}
.contact .section__form {
    margin-right: 120px;
    max-width: 1100px;
}

/* CONTACT RESPONSIVE */
@media (max-width: 1199px) {
    .contact .section__inner {
        gap: 120px;
    }
    .contact .section__form {
        margin-right: 0;
        max-width: 100%;
    }
}
@media (max-width: 991px) {
    .contact .section__inner {
        gap: 50px;
    }
    .contact .section__content {
        width: 220px;
    }
}
@media (max-width: 767px) {
    .contact .section__inner {
        flex-direction: column;
    }
    .contact .section__content {
        width: 100%;
    }
}

/* FORM ********************************************************************************/
.nf-form-wrap form {
    font-size: 11px;
    font-weight: 700;
	font-family: var(--font-basic) !important;
}
.nf-form-wrap form .nf-before-form-content {
    display: none;
}
.nf-form-wrap form label,
.nf-form-wrap form nf-field .nf-field-label {
    text-transform: uppercase;
    color: var(--text-dark);
}
.nf-form-wrap form nf-fields-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}
.nf-form-wrap form nf-fields-wrap nf-field {
    width: 100%;
}
.nf-form-wrap form nf-fields-wrap nf-field .nf-field-container {
    margin: 0;
}
.nf-form-wrap form nf-fields-wrap nf-field .ninja-forms-req-symbol {
    color: var(--dark);
}
.nf-form-wrap form nf-fields-wrap nf-field:has(.half) {
    width: calc(50% - 10px);
}
.nf-form-wrap form nf-fields-wrap nf-field input {
    height: 40px;
    border-radius: 8px;
    border: none;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 700;
	font-family: var(--font-basic) !important;
}
.nf-form-wrap form nf-fields-wrap nf-field input[type="submit"] {
    font-size: 16px;
    text-transform: uppercase;
    padding: 0 20px;
    cursor: pointer;
	border: 1px solid var(--dark);
    border-radius: 0;
    background-color: transparent;
	transition: all .2s ease;
}
.nf-form-wrap form nf-fields-wrap nf-field input[type="submit"]:hover {
	background-color: var(--background-dark);
	color: var(--text-white);
	outline: none;
}
.nf-form-wrap form nf-fields-wrap nf-field textarea {
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-size: 11px;
    font-weight: 700;
	font-family: var(--font-basic) !important;
}
.nf-form-wrap form nf-fields-wrap nf-field ::-webkit-input-placeholder {
  font-size: 11px;
  font-weight: 700;
	font-family: var(--font-basic) !important;
}
.nf-form-wrap form nf-fields-wrap nf-field :-ms-input-placeholder {
  font-size: 11px;
  font-weight: 700;
	font-family: var(--font-basic) !important;
}
.nf-form-wrap form nf-fields-wrap nf-field ::-moz-placeholder {
  font-size: 12px;
  font-weight: 700;
	font-family: var(--font-basic) !important;
  opacity: 1;
}
.nf-form-wrap form nf-fields-wrap nf-field :-moz-placeholder {
  font-size: 11px;
  font-weight: 700;
	font-family: var(--font-basic) !important;
  opacity: 1;
}
.nf-form-wrap form nf-fields-wrap nf-field .nf-field-element ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.nf-form-wrap form nf-fields-wrap nf-field .nf-field-element ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 !important;
    cursor: pointer;
}
.nf-form-wrap form nf-fields-wrap nf-field .nf-field-element ul li input {
    margin: 0;
    cursor: pointer;
}
.nf-form-wrap form nf-fields-wrap nf-field .nf-field-element ul li label {
    margin: 0;
    font-size: 11px;
    cursor: pointer;
}
.nf-form-wrap form nf-fields-wrap nf-field .nf-field-element ul li input[type="radio"] {
    display: block;
    accent-color: var(--dark);
    border: 0px !important;
    width: 18px !important;
    height: 18px !important;
}




/****************************************************************************************************
        SOCIALS GALLERY       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.socials {
    margin: 50px 0 0;
}
.socials__html {
    padding: 50px 0;
    border-top: 1px solid var(--dark);
    border-bottom: 1px solid var(--dark);
}
.socials .socials__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 260px;
    padding: 20px 0;
    border-bottom: 1px solid var(--dark);
}
.socials .socials__links h6 {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 15px;
    z-index: 1;
}
.socials .socials__links h6:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 15px;
    height: 2px;
    background-color: var(--background-dark);
    z-index: 1;
}
.socials .socials__links .link:not(:first-child) {
    position: relative;
    padding-left: 10px;
    z-index: 1;
}
.socials .socials__links .link:not(:first-child):before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--background-dark);
    z-index: 1;
}

/* SOCIALS RESPONSIVE */
@media (max-width: 767px) {
    .socials {
        margin: 30px 0;
    }
}



/****************************************************************************************************
        FOOTER       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.footer {
    position: relative;
    z-index: 1;
}
.footer__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}
.footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 70px;
}
.footer__contacts__inner {
    min-width: 260px;
}
.footer__contacts h6 {
    position: relative;
    display: block;
    z-index: 1;
}
.footer__contacts h6:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.footer__contacts h6:not(:last-child)::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 15px;
    height: 2px;
    background-color: var(--dark);
    z-index: 1;
}
.footer__contacts p {
    font-weight: 600;
    line-height: 24px;
    font-size: 11px;
}
.footer__contacts a {
    display: block;
    color: inherit;
}
.footer__banner {
    position: relative;
    padding: 50px 0;
    z-index: 1;
}
.footer__banner__inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 170px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--light);
    z-index: 1;
}
.footer__banner__inner::before {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 29px;
    height: 36px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('./images/partum-interiors-logo-monogram-footer-desktop.svg');
    margin-top: -25px;
    z-index: 1;
}
.footer__logo {
    display: block;
    width: 510px;
}
.footer__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.footer__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FOOTER RESPONSIVE */
@media (max-width: 767px) {
    .footer__contacts__inner {
        min-width: unset;
    }
    .footer__logo {
        width: 410px;
    }
    .footer__contacts {
        align-items: flex-start;
    }
}
@media (max-width: 575px) {
    .footer__banner {
        padding: 25px 0;
    }
    .footer__banner__inner {
        padding-bottom: 25px;
        min-height: 100px;
    }
    .footer__logo {
        width: 280px;
    }
    .footer__banner__inner::before {
        width: 16px;
        height: 20px;
        margin-top: -12px;
    }
}
@media (max-width: 359px) {
    .footer__logo {
        width: 240px;
    }
}



/****************************************************************************************************
        404       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.lost .content {
    width: 520px;
    text-align: center;
    margin: 0 auto;
}
.lost__icon {
    max-width: 156px;
    max-height: 156px;
}
.lost__icon:not(:last-child) {
    margin-bottom: 30px;
}
.lost__title {
    font-size: 66px;
    line-height: 1;
    margin: 0 0 30px 0;
}
.lost__subtitle {
    text-transform: uppercase;
}
.lost .content .btns {
    justify-content: center;
}



/****************************************************************************************************
        RESPONSIVE       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.show--lg,
.show--md,
.show--sm,
.show--xs,
.visibility--mobile_only {
    display: none;
}

@media only screen and (max-width: 1199px) {
    .hide--lg {
        display: none !important;
    }
    .show--lg {
        display: block;
    }
}
@media only screen and (max-width: 991px) {
    .hide--md {
        display: none !important;
    }
    .show--md {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    .hide--sm,
    .visibility--desktop_only {
        display: none !important;
    }
    .show--sm,
    .visibility--mobile_only {
        display: block;
    }
}
@media only screen and (max-width: 575px) {
    .hide--xs {
        display: none !important;
    }
    .show--xs {
        display: block;
    }
    .slick-dots {
        gap: 8px;
    }
    .slick-dots li {
        width: 12px;
        height: 12px;
    }
}
@media only screen and (max-width: 359px) {}