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


/****************************************************************************************************
        FONTS       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 900;
    src: url("./fonts/Lato-Black.woff2") format("woff2"),
        url("./fonts/Lato-Black.woff") format("woff");
}
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 700;
    src: url("./fonts/Lato-Bold.woff2") format("woff2"),
        url("./fonts/Lato-Bold.woff") format("woff");
}
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 400;
    src: url("./fonts/Lato-Regular.woff2") format("woff2"),
        url("./fonts/Lato-Regular.woff") format("woff");
}
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 300;
    src: url("./fonts/Lato-Hairline.woff2") format("woff2"),
        url("./fonts/Lato-Hairline.woff") format("woff");
}



/****************************************************************************************************
        VARIABLES       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
:root {
    /* colors */
    --white: #fff;
    --black: #000;
    --dark: rgba(10, 30, 50, 1);
    --semidark: rgba(10, 30, 50, 0.5); 
    --bluegrey: rgba(126, 147, 168, 1);

    /* fonts */
    --font-basic: "Lato", sans-serif;

    /* text */
    --text-black: var(--black);
    --text-dark: var(--dark);
    --text-semidark: var(--semidark);
    --text-white: var(--white);
    --text-bluegrey: var(--bluegrey);

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



/****************************************************************************************************
        BASIC       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
body {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-basic);
    line-height: 24px;
}
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-size: 44px;
    line-height: 56px;
    font-weight: 900;
    margin: 45px 0;
}
h2, .heading--h2 {
    font-size: 36px;
    line-height: 44px;
    font-weight: 900;
    margin: 40px 0;
}
h3, .heading--h3 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 400;
    margin: 35px 0;
}
h4, .heading--h4 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 400;
    margin: 30px 0;
}
h5, .heading--h5 {
    font-size: 22px;
    line-height: 36px;
    font-weight: 700;
    margin: 25px 0;
}
h6, .heading--h6 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin: 20px 0;
}
ul,
ol {
    margin: 20px 0;
}
ul {
    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-white);
}
.color--dark {
    color: var(--text-dark);
}
.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;
}

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

/* 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;
}

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

/* 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: 38px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-dark);
    background-color: var(--background-white);
    border:  1px solid var(--bluegrey);
    border-radius: 8px;
    padding: 5px 15px;
    text-decoration: none;
}
.btn:hover {
    background-color: var(--background-bluegrey)
}
.btn--dark {
    color: var(--text-white);
    background-color: var(--background-dark);
}
.btn--transparent {
    color: var(--text-white);
    background-color: transparent;
}
.btn--transparent:hover {
	background-color: var(--background-dark);
}


/* LINK ********************************************************************************/
.link {
    text-transform: uppercase;
    text-decoration: underline;
    color: var(--text-dark);
    text-decoration-color: var(--text-bluegrey);
    text-decoration-thickness: 1x;
    text-underline-offset: 4px;
    transition: all .2s ease;
}
.link:hover {
    color: var(--text-bluegrey);
    text-underline-offset: 3px;
}

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

/* SECTION ********************************************************************************/
section {
    position: relative;
    margin: 90px 0;
    z-index: 1;
}
.section.has--bg {
    padding: 90px 0;
}
.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: 880px;
    max-width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}
.section__container.section__container--stretched {
    width: 100%;
    padding: 0 50px;
}
.section__container.section__container--lg {
    width: 1200px;
    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 RESPONSIVE */
@media (max-width: 767px) {
    .section__container.section__container--stretched,
    .section__container.section__container--lg {
        padding: 0 30px;
    }
}
@media (max-width: 575px) {
    section {
        margin: 60px 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;
    padding: 30px 50px;
    border-bottom: 1px solid var(--bluegrey);
    z-index: 100;
}
.header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 60px;
}
.header__logo {
    display: flex;
    align-items: center;
    width: 350px;
    height: auto;
    flex-shrink: 0;
}
.header__logo img {
    max-width: 100%;
    max-height: 100%;
}
.header__menu .menu {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header__menu .menu li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: var(--text-bluegrey);
    text-transform: uppercase;
}
.header__menu .menu li a {
    color: inherit;
}
.header__menu .menu li.current_page_item a, 
.header__menu .menu li a:hover {
    color: var(--text-dark);
}

/* 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 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__menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 360px;
        transform: translateX(100%);
        transition: all .4s ease;
        padding: 60px 30px 15px 30px;
        background-color: var(--background-white);
        z-index: 222;
    }
    body.menu--on .header__menu {
        transform: translateX(0);
    }
    .header__menu .close {
        position: absolute;
        top: 30px;
        right: 30px;
    }
    .header__menu__scroller {
        overflow: hidden;
        overflow-y: auto;
        max-height: 100%;
    }
    .header__menu .menu {
        flex-wrap: wrap;
    }
    .header__menu .menu li {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .header {
        padding: 20px 30px;
    }
    .header .inner {
        gap: 30px;
    }
}
@media (max-width: 575px) {
    .header {
        padding: 20px 15px;
    }
    .header__logo {
        width: 200px;
    }
    .header__menu {
        padding: 60px 15px 15px;
    }
    .header__menu .close {
        right: 15px;
    }
}



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


/* PAGE TITLE ********************************************************************************/
.page_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    text-transform: uppercase;
    color: var(--text-bluegrey);
    padding: 30px 0;
}
.tmpl--project .page_title h2 {
    font-weight: 400;
    text-transform: none;
}

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


/* HERO ********************************************************************************/
.hero__item .section__background:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-image: linear-gradient(to bottom, transparent, var(--background-dark));
    z-index: 1;
}
.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: 46vw;
    color: var(--text-white);
}


/* ANNOTATION ********************************************************************************/
.annotation {
    background-color: var(--background-bluegrey);
    padding: 100px 0;
}
.annotation .section__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.annotation .section__inner > img {
    width: 268px;
    flex-shrink: 0;
    margin-left: 40px;
}
.annotation .section__content {
    width: 680px;
    color: var(--text-white);
}
.annotation .section__content .btn--transparent {
    border-color: var(--white);
}
.annotation .section__content .section__text:not(:first-child) {
    margin-top: 25px;
}
.annotation .section__content .btn:not(:first-child) {
    margin-top: 40px;
}

/* ANNOTATION RESPONSIVE */
@media (max-width: 991px) {
    .annotation .section__inner > img {
        width: 200px;
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .annotation .section__inner {
        flex-direction: column;
    }
}
@media (max-width: 575px) {
    .annotation {
        padding: 60px 0;
    }
}


/* CTA ********************************************************************************/
.cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 28vw;
    color: var(--text-white);
}
.cta h3 {
    margin-bottom: 0;
}
.cta .btn:not(:first-child) {
    margin-top: 40px;
}

/* 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__item__description {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 50px;
    color: var(--text-white);
    background-color: var(--background-semidark);
    padding: 90px 100px;
    z-index: 1;
}
.gallery__item__description__inner {
    width: 260px;
    max-height: 100%;
    overflow: hidden;
    overflow-y: auto;
}
.gallery__item__description h6 {
    position: relative;
    display: block;
    padding-bottom: 18px;
    margin-bottom: 18px;
    z-index: 1;
}
.gallery__item__description h6:not(:last-child)::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 12px;
    height: 1px;
    background-color: var(--white);
    z-index: 1;
}
.gallery__item__description .btn:not(:first-child) {
    margin-top: 40px;
}

/* GALLERY RESPONSIVE */
@media (max-width: 1199px) {
    .gallery__item__description {
        inset: 30px;
        padding: 40px 30px;
    }
    .gallery__item__description__inner {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .gallery__item {
        width: 100% !important;
    }
}
@media (max-width: 575px) {
    .gallery__item__description {
        inset: 15px;
        padding: 30px 15px;
    }
}


/* TEXT ********************************************************************************/
.text .section__content {
    width: 540px;
}
.text .section__content h6 {
    position: relative;
    display: block;
    padding-bottom: 18px;
    margin-bottom: 18px;
    z-index: 1;
}
.text .section__content h6:not(:last-child)::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 12px;
    height: 1px;
    background-color: var(--bluegrey);
    z-index: 1;
}
.text .section__content small {
    display: block;
    color: var(--text-bluegrey);
}
.text .section__content small:not(:last-child) {
    margin-bottom: 25px;
}
.text .section__text {
    color: var(--text-bluegrey);
}
.text .btn:not(:first-child) {
    margin-top: 40px;
}


/* TEXT AND IMAGE ********************************************************************************/
.text_and_image .section__inner {
    display: flex;
    align-items: center;
    gap: 70px;
}
.text_and_image:not(.is--part-of-a-group) .section__inner {
    align-items: flex-start;
    justify-content: space-between;
}
.text_and_image.is--part-of-a-group .section__inner {
    padding-top: 30px;
    margin-bottom: 30px;
    border-top: 1px solid var(--bluegrey);
}
.text_and_image .section__inner.is--reversed {
    flex-direction: row-reverse;
}
.text_and_image img {
    width: 400px;
    flex-shrink: 0;
}
.text_and_image.is--part-of-a-group img {
    width: 350px;
}
.text_and_image .section__content {
    width: 260px;
}
.text_and_image.is--part-of-a-group .section__content {
    width: 540px;
}
.text_and_image .section__content h6 {
    position: relative;
    display: block;
    padding-bottom: 18px;
    margin-bottom: 18px;
    z-index: 1;
}
.text_and_image .section__content h6:not(:last-child)::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 12px;
    height: 1px;
    background-color: var(--bluegrey);
    z-index: 1;
}
.text_and_image .section__content small {
    display: block;
    color: var(--text-bluegrey);
}
.text_and_image .section__content small:not(:last-child) {
    margin-bottom: 25px;
}
.text_and_image .section__text {
    color: var(--text-bluegrey);
}
.text_and_image .btn:not(:first-child) {
    margin-top: 40px;
}

/* TEXT AND IMAGE RESPONSIVE */
@media (max-width: 991px) {
    .text_and_image .section__inner {
        gap: 50px;
    }
}
@media (max-width: 767px) {
    .text_and_image .section__inner,
    .text_and_image .section__inner.is--reversed {
        flex-direction: column;
    }
    .text_and_image img,
    .text_and_image .section__content,
    .text_and_image.is--part-of-a-group img {
        width: 100%;
    }
}



/* PROJECTS LIST ********************************************************************************/
.projects__list {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    z-index: 1;
}
.projects__list__item {
    position: relative;
    padding-bottom: 150%;
    z-index: 1;
}
.projects__list__item__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.projects__list__item__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.projects__list__item__overlay {
    position: absolute;
    inset: 50px;
    opacity: 0;
    transition: all .2s ease;
    color: var(--text-white);
    background-color: var(--background-semidark);
    z-index: 1;
}
.projects__list__item:hover .projects__list__item__overlay {
    opacity: 1;
}
.projects__list__item__location {
    position: absolute;
    left: 10px;
    top: 5px;
    right: 10px;
    z-index: 1;
}
.projects__list__item__data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    height: 100%;
    width: 100%;
    text-align: center;
    padding: 30px;
}
.projects__list__item__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.projects__list__item__title * {
    margin: 0;
}

/* PROJECTS LIST RESPONSIVE */
@media (max-width: 991px) {
    .projects__list {
        grid-template-columns: 1fr 1fr;
    }
    .projects__list__item__overlay {
        opacity: 1;
    }
}
@media (max-width: 767px) {
    .projects__list__item__overlay {
        inset: 30px;
    }
}
@media (max-width: 575px) {
    .projects__list {
        grid-template-columns: 1fr;
    }
}


/* 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;
    }
}


/* CONTACT ********************************************************************************/
.contact {
    padding: 50px 0;
    background-color: var(--background-bluegrey);
}
.contact .section__inner {
    display: flex;
    align-items: flex-start;
    gap: 160px;
}
.contact .section__content {
    width: 260px;
    flex-shrink: 0;
}
.contact .section__content h5,
.contact .section__form h5 {
    position: relative;
    display: block;
    padding-bottom: 18px;
    margin-bottom: 18px;
    z-index: 1;
}
.contact .section__content h5:not(:last-child)::before,
.contact .section__form h5:not(:last-child)::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 12px;
    height: 1px;
    background-color: var(--white);
    z-index: 1;
}
.contact .section__content .section__text {
    color: var(--text-white);
}
.contact .section__form h6 {
    color: var(--text-white);
}

/* CONTACT RESPONSIVE */
@media (max-width: 1199px) {
    .contact .section__inner {
        gap: 120px;
    }
}
@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: 12px;
    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-white);
}
.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(--white);
}
.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: 12px;
    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(--color-white);
	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: 16px;
    font-weight: 700;
	font-family: var(--font-basic) !important;
}
.nf-form-wrap form nf-fields-wrap nf-field ::-webkit-input-placeholder {
  font-size: 12px;
  font-weight: 700;
	font-family: var(--font-basic) !important;
}
.nf-form-wrap form nf-fields-wrap nf-field :-ms-input-placeholder {
  font-size: 12px;
  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: 12px;
  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: 10px;
    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: 16px;
    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: 20px !important;
    height: 20px !important;
 }


/****************************************************************************************************
        SOCIALS GALLERY       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.socials {
    margin: 0;
}
.socials__html {
    
}
.socials__link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--background-bluegrey);
    min-height: 100px;
    padding: 20px 30px;
}
.socials__link .link {
    font-size: 26px;
    line-height: 36px;
    font-weight: 400;
    text-decoration: none;
    color: var(--text-dark);
    text-underline-offset: 6px;
    text-transform: lowercase;
}
.socials__link .link:hover {
    text-decoration: underline;
    color: inherit;
}

/* SOCIALS GALLERY RESPONSIVE */




/****************************************************************************************************
        FOOTER       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.footer {
    position: relative;
    min-height: 56.25vw;
    z-index: 1;
}
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 125px 0;
}
.footer__logo {
    width: 260px;
    flex-shrink: 0;
}
.footer__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.footer__background img,
.footer__background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* FOOTER RESPONSIVE */
@media (max-width: 1199px) {
    .footer__logo {
        width: 220px;
    }
}
@media (max-width: 767px) {
    .footer__inner {
        padding: 80px 0;
    }
    .footer__logo {
        width: 180px;
    }
}



/****************************************************************************************************
        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;
    }
    .grid--4 {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 767px) {
    .hide--sm,
    .visibility--desktop_only {
        display: none !important;
    }
    .show--sm,
    .visibility--mobile_only {
        display: block;
    }
    .grid--2 {
        gap: 10px;
    }
}
@media only screen and (max-width: 575px) {
    .hide--xs {
        display: none !important;
    }
    .show--xs {
        display: block;
    }
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .slick-dots {
        gap: 8px;
    }
    .slick-dots li {
        width: 12px;
        height: 12px;
    }
}
@media only screen and (max-width: 359px) {}