:root {
    --color-white: #FFF;
    --color-black: #000;
    --color-beige: #FFFBF5;
    --color-green: #6A6955;
    --color-orange: #B99259;
    --font-title: 'Astralaga', serif;
    --font-text: 'Montserrat', sans-serif;
}

@font-face {
    font-family: 'Astralaga';
    src: url('../assets/fonts/AstralagaRegular.ttf');
}

body {
    position: relative;
    background-color: var(--color-beige);
    font-family: var(--font-text);
    font-optical-sizing: auto;
    font-size: 15px;
    font-style: normal;
}

* {
    box-sizing: border-box;
    touch-action: manipulation;
    margin: 0;
    padding: 0;
}


/* --------------------------------------General-------------------------------------- */

/* Sections */
section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
section.full {
    min-height: 100vh;
}
section.start {
    align-items: start;
}
section.end {
    align-items: end;
}

/* Header */
nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    gap: 4rem;
    padding: 3rem 0;
    color: var(--color-white);
}

nav.green {
    color: var(--color-green);
}

nav img {
    display: block;
    width: 36px;
    object-fit: contain;
}

nav > a:not(:has(img)) {
    color: inherit;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8em;
    font-weight: 600;
    line-height: 1.66em;
}

.nav-group {
    position: relative;
    padding: 5px 2px;
    cursor: default;
}

.nav-group > a,
.nav-group span {
    color: inherit;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8em;
    font-weight: 600;
    line-height: 1.66em;
}

.nav-group div {
    position: absolute;
    display: flex;
    flex-direction: column;
    bottom: 0;
    left: 0;
    gap: 3px;
    translate: 0 100%;
    color: inherit;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.nav-group div a {
    display: flex;
    align-items: center;
    padding: 0 0.6rem;
    width: min-content;
    height: 30px;
    background-color: #FFFFFF1A;
    border-radius: 3px;
    color: inherit;
    text-decoration: none;
    font-size: 0.8em;
    font-weight: 500;
    transition: background-color 0.25s, box-shadow 0.25s;
}

.nav-group div a:hover {
    background-color: #FFFFFF4D;
    box-shadow: 0 4px 4px #0000001A;
    font-weight: 700;
}

.nav-group:hover div {
    opacity: 1;
    pointer-events: all;
}

/* Footer */
footer {
    background-color: var(--color-green);
}

footer > p {
    display: block;
    padding: 1rem;
    color: var(--color-white);
    text-align: center;
    text-transform: uppercase;
    font-size: 0.6em;
    line-height: 2em;
}

.footer__grid {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    padding: 4.6rem 5.5rem 7rem 5.5rem;
}

.footer__grid img {
    justify-self: center;
    display: block;
    height: 120px;
    object-fit: contain;
}

.footer__links {
    align-self: start;
    padding-left: 1.5rem;
    border-left: 1px solid var(--color-white);
}

.footer__links.left {
    padding: 0 1.5rem 0 0;
    border-left: none;
    border-right: 1px solid var(--color-white);
    text-align: end;
}

.footer__links a {
    display: block;
    color: var(--color-beige);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8em;
    line-height: 2em;
}

.footer__links div {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.footer__links div i {
    font-size: 15px;
}

/* Contact */
.luxze__contact-cont {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 4rem;
    padding: 9rem 0 3.5rem 5rem;
    width: 100%;
    background-color: var(--color-green);
    color: var(--color-beige);
    overflow: hidden;
}

.luxze__contact-cont > img {
    position: absolute;
    display: block;
    top: 3.2rem;
    z-index: 0;
    height: 260px;
    object-fit: contain;
}

.luxze__contact-cont .img-left {
    left: -1.6rem;
}

.luxze__contact-cont .img-right {
    right: 0;
    translate: 50%;
}

.luxze__contact-links {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
    gap: 2rem;
    padding-top: 2rem;
}

.luxze__contact-links h2 {
    font-family: var(--font-title);
    font-size: 3em;
    font-weight: 400;
}

.luxze__contact-links div {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1px auto;
    column-gap: 1rem;
    row-gap: 0.8rem;
    width: max-content;
    font-size: 1.07em;
}

.luxze__contact-links a {
    color: inherit;
    text-decoration: none;
}

.luxze__contact-form {
    justify-self: center;
    position: relative;
    display: grid;
    grid-template-columns: 23fr 50fr;
    grid-template-rows: 40px 40px 100px 55px;
    z-index: 1;
    column-gap: 0.5rem;
    row-gap: 0.66rem;
    width: 100%;
    max-width: 520px;
}

.luxze__contact-form input {
    display: block;
    padding: 0 0.85rem;
    width: 100%;
    height: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--color-beige);
    color: inherit;
    font-size: 0.95em;
}

.luxze__contact-form input:first-child {
    grid-column: 1 / -1;
}

.luxze__contact-form input::placeholder,
.luxze__contact-form textarea::placeholder {
    color: #FFFBF5B0;
}

.luxze__contact-form textarea {
    grid-column: 1 / -1;
    align-self: end;
    display: block;
    padding: 12px;
    width: 100%;
    height: 40px;
    max-height: 100px;
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--color-beige);
    color: inherit;
    font-size: 14px;
    resize: none;
}

.luxze__contact-form textarea::-webkit-scrollbar {
    width: 0;
}

.luxze__contact-form button {
    grid-column: 1 / -1;
    align-self: end;
    justify-self: end;
    display: block;
    padding: 0 2rem;
    height: 40px;
    background-color: var(--color-beige);
    outline: none;
    border: none;
    border-radius: 20px;
    color: var(--color-green);
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.luxze__contact-form button:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
}

/* Other */
.luxze-whats {
    position: fixed;
    right: 4rem;
    bottom: 5rem;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    aspect-ratio: 1;
    background-color: var(--color-green);
    border-radius: 30px;
    color: var(--color-beige);
    text-decoration: none;
    font-size: 2.6em;
    -webkit-filter: drop-shadow(2.56px 2.56px 8.54px #00000026);
    filter: drop-shadow(2.56px 2.56px 8.54px #00000026);
    transition:  background-color 0.3s;
}

.luxze-whats:hover {
    background-color: var(--color-black);
    -webkit-filter: drop-shadow(2.56px 2.56px 8.54px #FFFBF526);
    filter: drop-shadow(2.56px 2.56px 8.54px #FFFBF526);
}

hr {
    color: var(--color-green);
}

hr.light {
    color: var(--color-beige);
}



/* ----------------------------------------Home---------------------------------------- */

/* Hero */
.home__hero-cont {
    height: calc(100vh - 4rem);
}

.home__hero-cont video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home__hero-bkg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, #1F1D1E66 0%, #6A695582 100%);
}

.home__hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    width: 100%;
    min-height: calc(100vh - 4rem);
    color: var(--color-white);
}

.home__hero > img {
    display: block;
    height: 100px;
    object-fit: contain;
}

.home__hero-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 7rem;
}

.home__hero-quote p {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.07em;
    font-weight: 600;
}

.home__hero-quote a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    background-color: var(--color-white);
    border-radius: 25px;
    color: var(--color-green);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.home__hero-quote a:hover {
    background-color: var(--color-green);
    color: var(--color-beige);
}

/* Services */
.home__services {
    display: grid;
    grid-template-columns: 30% 5fr minmax(215px, 3fr) minmax(215px, 3fr);
    column-gap: 0.6rem;
    row-gap: 1.5rem;
    padding: 8rem 0 4rem 5rem;
}

.home__services-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.home__services-text h2 {
    max-width: 260px;
    color: var(--color-green);
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 3em;
    line-height: 1.2em;
}

.home__services-text p {
    max-width: 260px;
    font-size: 1.07em;
    line-height: 1.35em;
}

.home__services-text span {
    text-transform: uppercase;
}

.home__services-img {
    position: relative;
    display: block;
    width: 100%;
    height: 600px;
}

.home__services-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home__services-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000033;
}

.home__services-img .info {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 5.5rem 2rem;
    width: 100%;
    height: 100%;
    background-color: var(--color-green);
    color: var(--color-white);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.home__services-img:hover .info {
    opacity: 1;
    pointer-events: all;
}

.home__services-img .info span {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.07em;
    font-weight: 700;
    line-height: 1.35em;
    letter-spacing: 0.05em;
}

.home__services-img .info ul {
    list-style-position: inside;
    margin: 1.5rem 0;
    text-align: center;
    font-size: 1.07em;
    line-height: 1.35em;
}

.home__services-img .info p {
    margin: 0;
    max-width: 120px;
    text-align: center;
    font-size: 1.07em;
    line-height: 1.35em;
}

.home__services-img .info a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    width: 100%;
    height: 40px;
    max-width: 150px;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    color: inherit;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.75em;
    font-weight: 600;
}

.home__services-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.home__services-link h3 {
    color: var(--color-green);
    text-transform: uppercase;
    font-size: 1.33em;
    font-weight: 700;
}

.home__services-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    height: 27px;
    border: 1.5px solid var(--color-green);
    border-radius: 13.5px;
    color: var(--color-green);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.7em;
    font-weight: 600;
    line-height: 1em;
    transition: background-color 0.3s, color 0.3s;
}

.home__services-link a:hover {
    background-color: var(--color-green);
    color: var(--color-beige);
}

/* Portfolio */
.home__portfolio {
    gap: 4rem;
    padding: 3rem 0 10rem 0;
    background-color: var(--color-black);
}

.home__portfolio h2 {
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-title);
    font-size: 3em;
    font-weight: 400;
}

.home__portfolio-content {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.home__portfolio-grid {
    display: grid;
    grid-template-columns: auto repeat(7, min-content) auto;
    grid-template-rows: repeat(5, min-content);
    gap: 2rem;
    width: max-content;
}

.home__portfolio-grid p {
    width: 900px;
    color: var(--color-white);
}

.home__portfolio-grid img {
    display: block;
    width: 290px;
    aspect-ratio: 1;
    object-fit: cover;
}

.home__portfolio-grid video {
    grid-column: 6 / 8;
    grid-row: 4 / 6;
    display: block;
    width: 290px;
    aspect-ratio: 1;
    object-fit: cover;
}

.home__portfolio-grid #img-1 {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
}

.home__portfolio-grid #img-2 {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
}

.home__portfolio-grid #img-3 {
    grid-column: 4 / 6;
    grid-row: 2 / 4;
}

.home__portfolio-grid #img-4 {
    grid-column: 3 / 5;
    grid-row: 4 / 6;
    margin-top: 2rem;
}

.home__portfolio-grid #img-5 {
    grid-column: 7 / 9;
    grid-row: 1 / 3;
    margin-top: 1.5rem;
}

.home__portfolio-grid #img-7 {
    grid-column: 9 / 10;
    grid-row: 3 / 5;
}

/* Instagram */
.home__instagram {
    gap: 2.5rem;
    padding: 7rem 0;
}

.home__instagram h2 {
    color: var(--color-green);
    text-align: center;
    font-family: var(--font-title);
    font-size: 3em;
    font-weight: 400;
}

.home__insta-swiper {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.home__insta-swiper .swiper {
    width: 100%;
    height: 100%;
}

.home__insta-swiper .swiper-slide {
    display: block;
    width: 265px;
    aspect-ratio: 1;
}

.home__insta-swiper .swiper-slide:first-child {
    padding-left: 5rem;
    width: calc(265px + 5rem);
    height: 265px;
    aspect-ratio: unset;
}

.home__insta-swiper .swiper-slide:last-child {
    padding-right: 5rem;
    width: calc(265px + 5rem);
    height: 265px;
    aspect-ratio: unset;
}

.home__insta-swiper img,
.home__insta-swiper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pinterest */
.home__pinterest-cont {
    padding: 7rem 3rem;
}

.home__pinterest-cont img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    height: 280px;
    object-fit: contain;
    translate: -50% -50%;
}

.home__pinterest {
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 2rem;
    row-gap: 2.6rem;
    max-width: 780px;
    color: var(--color-green);
}

.home__pinterest h2 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    text-align: center;
    font-family: var(--font-title);
    font-size: 3em;
    font-weight: 400;
}

.home__pinterest p {
    max-width: 420px;
    text-align: end;
    font-size: 1.07em;
    line-height: 1em;
    letter-spacing: 0.02em;
}

.home__pinterest p span {
    text-transform: uppercase;
}

.home__pinterest a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    height: 60px;
    background-color: var(--color-green);
    border-radius: 30px;
    color: var(--color-beige);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8em;
    font-weight: 600;
    transition: background-color 0.3s;
}

.home__pinterest a:hover {
    background-color: var(--color-orange);
}

/* Spaces */
.home__spaces {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.home__spaces > div:not(:last-child) {
    border-right: 1px solid var(--color-green);
}

.home__spaces-row {
    display: block;
    width: 100%;
    padding: 4rem 3rem;
}

.home__spaces-row > div {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: repeat(3, 135px 60px);
    align-items: center;
    justify-items: center;
    margin: 0 auto;
    max-width: 265px;
}

.home__spaces-row img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home__spaces-row img.hall {
    grid-row: 1 / 4;
}

.home__spaces-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    height: 100%;
    color: var(--color-green);
    text-align: center;
    text-transform: uppercase;
}

.home__spaces-link h3 {
    font-size: 1.3em;
    font-weight: 700;
}

.home__spaces-link a {
    color: inherit;
    font-size: 0.75em;
    font-weight: 600;
}

.home__spaces-link a:hover {
    font-weight: 700;
}

.home__spaces-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    width: 100%;
    height: 100%;
    color: var(--color-green);
    text-align: center;
}

.home__spaces-texts h2 {
    font-family: var(--font-title);
    font-size: 3em;
    font-weight: 400;
}

.home__spaces-texts p {
    margin: 2rem 0 1.6rem 0;
    font-size: 0.95em;
    font-weight: 500;
    line-height: 1.35em;
}

.home__spaces-texts a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    border: 1px solid var(--color-green);
    border-radius: 20px;
    color: inherit;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.75em;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.home__spaces-texts a:hover {
    background-color: var(--color-green);
    color: var(--color-beige);
}

/* Blog */
.home__blog {
    padding: 7rem 4rem;
    background-color: var(--color-green);
    color: var(--color-beige);
}

.home__blog h2 {
    font-family: var(--font-title);
    font-size: 3em;
    font-weight: 400;
}

.home__blog > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 185px;
    height: 40px;
    background-color: var(--color-beige);
    border-radius: 20px;
    color: var(--color-green);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.75em;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.home__blog > a:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.home__blog-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.35rem;
    row-gap: 2.5rem;
    margin: 3rem 0 2rem 0;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.home__blog-post {
    width: 100%;
}

.home__blog-post span {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.75em;
    line-height: 3em;
    letter-spacing: 0.05em;
}

.home__blog-post h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 1.3rem;
    width: 100%;
    height: calc(2 * 1.35em);
    text-overflow: ellipsis;
    font-size: 1.3em;
    font-weight: 700;
    line-height: 1.35em;
    letter-spacing: 0.02em;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.home__blog-post a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0 2rem;
    width: max-content;
    height: 30px;
    background-color: transparent;
    border: 1px solid var(--color-beige);
    border-radius: 15px;
    color: var(--color-beige);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.75em;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.home__blog-post a:hover {
    background-color: var(--color-beige);
    color: var(--color-green);
}

.home__blog-img {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 57 / 37;
}

.home__blog-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home__blog-img div {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000033;
}



/* --------------------------------------Services-------------------------------------- */

/* Hero */
.services__hero-cont {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: min-content auto;
    justify-content: start;
}

.services__hero {
    display: grid;
    grid-template-columns: 320px 1fr;
    column-gap: 4rem;
    padding: 2rem 0 5rem 5rem;
    width: 100%;
    height: 100%;
}

.services__hero-texts {
    align-self: center;
}

.services__hero-texts h1 {
    margin-bottom: 1.5rem;
    color: var(--color-green);
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2em;
}

.services__hero-texts p {
    margin-bottom: 7px;
    font-size: 1.07em;
    line-height: 1.35em;
}

.services__hero-texts ul {
    padding-left: 20px;
    font-size: 1.07em;
    line-height: 1.35em;
}

.services__hero-texts a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 0 2rem;
    width: max-content;
    height: 40px;
    border: 1px solid var(--color-green);
    border-radius: 20px;
    color: var(--color-green);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.75em;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.services__hero-texts a:hover {
    background-color: var(--color-green);
    color: var(--color-beige);
}

.services__hero-video {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.services__hero video {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Incentives */
.services__incentives {
    padding: 6rem 4rem;
    gap: 2.5rem;
}

.services__incentives h2 {
    color: var(--color-green);
    text-align: center;
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 400;
}

.services__incentives-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
}

.services__incentives-grid .vr {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-green);
}

.services__incentives-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 1.3rem;
    color: var(--color-green);
    text-align: center;
}

.services__incentives-item span {
    font-size: 0.95em;
    font-weight: 700;
    line-height: 1.35em;
    letter-spacing: 0.05em;
}

.services__incentives-item p {
    font-size: 0.95em;
    font-weight: 500;
    line-height: 1.35em;
}

/* Features */
.services__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.services__features > div:not(:last-child) {
    border-right: 1px solid var(--color-green);
}

.services__features-row {
    display: block;
    width: 100%;
    padding: 4rem 3rem;
}

.services__features-row > div {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: repeat(3, 180px auto);
    align-items: center;
    justify-items: center;
    margin: 0 auto;
    max-width: 265px;
}

.services__features-img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.services__features-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services__features-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000066;
}

.services__features-img .info {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: var(--color-green);
    opacity: 0;
    overflow: auto;
    transition: opacity 0.3s;
}

.services__features-img .info::-webkit-scrollbar {
    width: 6px;
}

.services__features-img .info::-webkit-scrollbar-track {
    background: transparent;
}

.services__features-img .info::-webkit-scrollbar-thumb {
    background: #FFFBF590;
    border-radius: 3px;
}

.services__features-img:hover .info {
    opacity: 1;
}

.services__features-img .info p {
    padding: 1.5rem;
    color: var(--color-white);
    text-align: center;
    font-size: 0.8em;
    line-height: 1.35em;
}

.services__features-row h3 {
    padding: 3px 0;
    height: calc(1.35em * 2);
    color: var(--color-green);
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.35em;
    letter-spacing: 0.02em;
}

.services__features-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    width: 100%;
    height: 100%;
    color: var(--color-green);
    text-align: center;
}

.services__features-texts h2 {
    font-family: var(--font-title);
    font-size: 3em;
    font-weight: 400;
}

.services__features-texts p {
    margin: 2rem 0 1.6rem 0;
    font-size: 0.95em;
    font-weight: 500;
    line-height: 1.35em;
}

.services__features-texts a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.8rem;
    height: 40px;
    border: 1px solid var(--color-green);
    border-radius: 20px;
    color: inherit;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.75em;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.services__features-texts a:hover {
    background-color: var(--color-green);
    color: var(--color-beige);
}

/* Reviews */
.services__reviews {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 4.5rem;
    padding: 4.5rem;
    width: 100%;
    background-color: var(--color-green);
}

.services__reviews > img {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: center;
    display: block;
    width: 250px;
    object-fit: contain;
}

.services__reviews button {
    display: block;
    width: 30px;
    aspect-ratio: 1;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-beige);
    font-size: 1.4em;
    cursor: pointer;
}

.services__reviews-swiper {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.services__reviews-swiper .swiper {
    width: 100%;
    height: 100%;
}

.services__reviews-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-beige);
    text-align: center;
}

.services__reviews-swiper .swiper-slide img {
    display: block;
    width: 30px;
    object-fit: contain;
}

.services__reviews-swiper .swiper-slide p {
    margin: 3rem 0 2.5rem 0;
    max-width: 700px;
    font-size: 1.33em;
    line-height: 1.4em;
}

.services__reviews-swiper .swiper-slide span {
    text-transform: uppercase;
    font-size: 1.07em;
    font-weight: 600;
}



/* ---------------------------------------Spaces--------------------------------------- */

/* Hero */
.spaces__hero-cont {
    height: calc(100vh - 4rem);
}

.spaces__hero-cont video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spaces__hero-bkg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, #1F1D1E66 0%, #6A695582 100%);
}

.spaces__hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    width: 100%;
    min-height: calc(100vh - 4rem);
    color: var(--color-white);
}

.spaces__hero > img {
    display: block;
    height: 100px;
    object-fit: contain;
}

.spaces__hero-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 7rem;
}

.spaces__hero-quote p {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.07em;
    font-weight: 600;
}

.spaces__hero-quote a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    background-color: var(--color-white);
    border-radius: 25px;
    color: var(--color-green);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.spaces__hero-quote a:hover {
    background-color: var(--color-green);
    color: var(--color-beige);
}

/* Category */
.spaces__category {
    padding: 6rem 0;
    gap: 2.5rem;
    border-bottom: 1px solid var(--color-green);
}

.spaces__category h2 {
    color: var(--color-green);
    font-family: var(--font-title);
    font-size: 3em;
    font-weight: 400;
}

.spaces__category-swiper {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.spaces__category-swiper .swiper {
    width: 100%;
    height: 100%;
}

.spaces__category-swiper .swiper-slide {
    width: max-content;
}

.spaces__category-swiper .swiper-slide:first-child {
    padding-left: 5rem;
}

.spaces__category-swiper .swiper-slide:last-child {
    padding-right: 5rem;
}

.spaces__item {
    display: block;
    width: 265px;
}

.spaces__item img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.spaces__item > div {
    padding: 0.9rem 0.6rem 0.9rem 0.9rem;
}

.spaces__item-header {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 0.6rem;
    width: 100%;
    color: var(--color-green);
}

.spaces__item-header h3 {
    text-transform: uppercase;
    font-size: 1.3em;
    font-weight: 700;
    line-height: 1.1em;
    letter-spacing: 0.02em;
}

.spaces__item-header span {
    font-size: 1.3em;
    line-height: 1.1em;
    letter-spacing: 0.02em;
}

.spaces__item-header button {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    display: block;
    width: 25px;
    height: 25px;
    background-color: transparent;
    outline: none;
    border: none;
    color: inherit;
    font-size: 1.4em;
    cursor: pointer;
}

.spaces__item-content {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 0.9rem;
}

.spaces__item-content .overlay {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-beige);
    transition: height 0.3s;
}

.spaces__item-content span {
    font-size: 0.95em;
    font-weight: 500;
    font-variant: small-caps;
    line-height: 1.35em;
}

.spaces__item-content p {
    margin: 0.6rem 0 1.1rem 0;
    font-size: 0.95em;
    line-height: 1.35em;
}

.spaces__item-links {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.spaces__item-links a {
    color: var(--color-green);
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: 600;
}

.spaces__item-links a:last-child {
    color: var(--color-orange);
}

.spaces__item-links a:hover {
    font-weight: 700;
}



/* --------------------------------------Portfolio------------------------------------- */


/* Hero */
.portfolio__hero-cont {
    height: calc(100vh - 4rem);
}

.portfolio__hero-cont video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio__hero-bkg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, #1F1D1E66 0%, #6A695582 100%);
}

.portfolio__hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    width: 100%;
    min-height: calc(100vh - 4rem);
    color: var(--color-white);
}

.portfolio__hero > img {
    display: block;
    height: 100px;
    object-fit: contain;
}

.portfolio__hero-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 7rem;
}

.portfolio__hero-quote p {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.07em;
    font-weight: 600;
}

.portfolio__hero-quote a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    background-color: var(--color-white);
    border-radius: 25px;
    color: var(--color-green);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.portfolio__hero-quote a:hover {
    background-color: var(--color-green);
    color: var(--color-beige);
}

/* Gallery */
.portfolio__gallery {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 8rem 5rem;
    column-gap: 5%;
    row-gap: 5vw;
    width: 100%;
    background-color: var(--color-black);
    overflow: hidden;
}

.portfolio__gallery img,
.portfolio__gallery video {
    display: block;
    width: 30%;
    height: 290px;
    object-fit: cover;
}

.portfolio__gallery .w-25 {
    width: 25%;
}

.portfolio__gallery .w-40 {
    width: 40%;
}

.portfolio__gallery .w-half {
    width: 47.5%;
}

/* Instagram */
.portfolio__instagram {
    gap: 2.5rem;
    padding: 3.6rem 0 10rem 0;
    background-color: var(--color-black);
}

.portfolio__instagram h2 {
    color: var(--color-beige);
    text-align: center;
    font-family: var(--font-title);
    font-size: 3em;
    font-weight: 400;
}

.portfolio__insta-swiper {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.portfolio__insta-swiper .swiper {
    width: 100%;
    height: 100%;
}

.portfolio__insta-swiper .swiper-slide {
    display: block;
    width: 265px;
    aspect-ratio: 1;
}

.portfolio__insta-swiper .swiper-slide:first-child {
    padding-left: 5rem;
    width: calc(265px + 5rem);
    height: 265px;
    aspect-ratio: unset;
}

.portfolio__insta-swiper .swiper-slide:last-child {
    padding-right: 5rem;
    width: calc(265px + 5rem);
    height: 265px;
    aspect-ratio: unset;
}

.portfolio__insta-swiper img,
.portfolio__insta-swiper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ----------------------------------------Blog---------------------------------------- */

/* Hero */
.blog__hero-cont {
    height: 100vh;
    padding-bottom: 4rem;
}

.blog__hero-cont > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 4rem);
    object-fit: cover;
}

.blog__hero-bkg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 4rem);
    z-index: 1;
    background: linear-gradient(90deg, #1F1D1E66 0%, #6A695582 100%);
}

.blog__hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    width: 100%;
    height: 100%;
    color: var(--color-white);
}

.blog__hero > img {
    display: block;
    height: 100px;
    object-fit: contain;
}

.blog__hero-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 7rem;
}

.blog__hero-quote p {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.07em;
    font-weight: 600;
}

.blog__hero-quote a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    background-color: var(--color-white);
    border-radius: 25px;
    color: var(--color-green);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.blog__hero-quote a:hover {
    background-color: var(--color-green);
    color: var(--color-beige);
}

/* Posts */
.blog__post {
    display: grid;
    grid-template-columns: 4fr 5fr;
    column-gap: 5.3rem;
    margin: 0 auto;
    padding: 4rem 0 4rem 5rem;
    width: 100%;
    /* max-width: 1400px; */
    border-bottom: 1px solid var(--color-green);
}

.blog__post-content {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    width: 100%;
}

.blog__post-content .date {
    font-size: 0.95em;
    line-height: 2em;
    letter-spacing: 0.05em;
}

.blog__post-content h2 {
    color: var(--color-green);
    font-family: var(--font-title);
    font-size: 3em;
    font-weight: 400;
    line-height: 1.2em;
}

.blog__post-content .title {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 1rem;
}

.blog__post-content button {
    display: block;
    padding: 0;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-green);
    font-size: 2em;
    cursor: pointer;
}

.blog__post-content .desc {
    margin: 2.2rem 0 1.5rem 0;
    font-size: 1.3em;
    line-height: 1.35em;
}

.blog__post-content .body {
    height: 0;
    overflow: hidden;
    transition: height 0.3s;
}

.blog__post-content p {
    font-size: 0.95em;
    line-height: 1.35em;
}

.blog__post-img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.blog__post-img img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pinterest */
.blog__pinterest-cont {
    padding: 7rem 3rem;
}

.blog__pinterest-cont img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    height: 280px;
    object-fit: contain;
    translate: -50% -50%;
}

.blog__pinterest {
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 2rem;
    row-gap: 2.6rem;
    max-width: 780px;
    color: var(--color-green);
}

.blog__pinterest h2 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    text-align: center;
    font-family: var(--font-title);
    font-size: 3em;
    font-weight: 400;
}

.blog__pinterest p {
    max-width: 420px;
    text-align: end;
    font-size: 1.07em;
    line-height: 1em;
    letter-spacing: 0.02em;
}

.blog__pinterest p span {
    text-transform: uppercase;
}

.blog__pinterest a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    height: 60px;
    background-color: var(--color-green);
    border-radius: 30px;
    color: var(--color-beige);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8em;
    font-weight: 600;
    transition: background-color 0.3s;
}

.blog__pinterest a:hover {
    background-color: var(--color-orange);
}



/* ---------------------------------------Contact--------------------------------------- */

/* Hero */
.contact__hero {
    position: relative;
    display: grid;
    grid-template-columns: 17fr 30fr;
    padding: 4rem 0 7rem 0;
    width: 100%;
}

.contact__hero > img {
    position: absolute;
    top: 1rem;
    left: 25%;
    height: 340px;
    object-fit: contain;
}

.contact__hero-links {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
    gap: 2rem;
    padding: 2rem 0 0 5rem;
    color: var(--color-green);
}

.contact__hero-links h1 {
    font-family: var(--font-title);
    font-size: 3em;
    font-weight: 400;
}

.contact__hero-links div {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1px auto;
    column-gap: 1rem;
    row-gap: 0.8rem;
    width: max-content;
    font-size: 1.07em;
}

.contact__hero-links a {
    color: inherit;
    text-decoration: none;
}

.contact__hero-img {
    justify-self: end;
    position: relative;
    display: block;
    z-index: 1;
    width: 100%;
    height: 308px;
    max-width: 680px;
}

.contact__hero-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form */
.contact__form {
    display: grid;
    grid-template-columns: 9fr 25fr;
    padding: 4.2rem 0;
    background-color: var(--color-green);
}

.contact__form img {
    display: block;
    width: 100%;
    height: 308px;
    object-fit: cover;
}

.contact__form form {
    justify-self: center;
    position: relative;
    display: grid;
    grid-template-columns: 23fr 50fr;
    grid-template-rows: 40px 40px 100px 55px;
    z-index: 1;
    column-gap: 0.5rem;
    row-gap: 0.66rem;
    width: 100%;
    max-width: 520px;
}

.contact__form input {
    display: block;
    padding: 0 0.85rem;
    width: 100%;
    height: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--color-beige);
    color: inherit;
    font-size: 0.95em;
}

.contact__form input:first-child {
    grid-column: 1 / -1;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: #FFFBF5B0;
}

.contact__form textarea {
    grid-column: 1 / -1;
    align-self: end;
    display: block;
    padding: 12px;
    width: 100%;
    height: 40px;
    max-height: 100px;
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--color-beige);
    color: inherit;
    font-size: 14px;
    resize: none;
}

.contact__form textarea::-webkit-scrollbar {
    width: 0;
}

.contact__form button {
    grid-column: 1 / -1;
    align-self: end;
    justify-self: end;
    display: block;
    padding: 0 2rem;
    height: 40px;
    background-color: var(--color-beige);
    outline: none;
    border: none;
    border-radius: 20px;
    color: var(--color-green);
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.contact__form button:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
}



/* -----------------------------------------Q&A----------------------------------------- */

.questions__cont {
    padding: 0rem 5rem 8rem 5rem;
    gap: 6rem;
}

.questions__cont h1 {
    margin: 0;
    color: var(--color-green);
    text-align: center;
    font-family: var(--font-title);
    font-size: 3em;
    font-weight: 400;
    line-height: 1.2em;
}

.questions__list {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
}

.questions__list img {
    position: absolute;
    display: block;
    top: 4rem;
    left: 50%;
    z-index: 0;
    width: 45%;
    object-fit: contain;
    translate: -50%;
}

.questions__list hr {
    position: relative;
    z-index: 1;
}

.question__item {
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    z-index: 1;
    padding: 2rem 0.6rem;
    width: 100%;
}

.question__item h2 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    color: var(--color-green);
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.8em;
}

.question__item button {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: block;
    width: 25px;
    height: 25px;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-green);
    font-size: 1.33em;
    cursor: pointer;
}

.question__item div {
    height: 0;
    overflow: hidden;
    transition: height 0.3s;
}

.question__item p {
    padding: 1rem 0 0 1.5rem;
    font-size: 1.07em;
    line-height: 1.4em;
}



/* --------------------------------------Specials-------------------------------------- */

.hidden {
    display: none;
}

.grecaptcha-badge {
    display: none !important;
}




/* -------------------------------------Responsive------------------------------------- */


@media screen and (max-width: 1080px) {
    /* General */
    .luxze__contact-cont {
        padding: 9rem 3rem 3.5rem 3rem;
        gap: 5rem;
    }
    .footer__grid {
        padding: 4.6rem 3.5rem 7rem 3.5rem;
    }
    .footer__grid img {
        height: 100px;
    }
    /* Home */
    .home__services {
        padding: 8rem 0 8rem 2rem;
        grid-template-columns: 215px 5fr minmax(200px, 3fr) minmax(200px, 3fr);
    }
    .home__services-text {
        padding-right: 1rem;
    }
    .home__services-img .info {
        padding: 5.5rem 1.5rem;
    }
    .home__portfolio-grid {
        gap: 1.5rem;
    }
    .home__portfolio-grid img,
    .home__portfolio-grid video {
        width: 250px;
    }
    .home__blog {
        padding: 7rem 3rem;
    }
    /* Services */
    .services__hero {
        padding: 2rem 0 5rem 3.5rem;
    }
    /* Contact */
    .contact__hero {
        gap: 4rem;
    }
    .contact__hero > img {
        left: 20%;
    }
}

@media screen and (max-width: 900px) {
    /* General */
    .footer__grid {
        padding: 4.6rem 2.5rem 7rem 2.5rem;
    }
    .footer__grid img {
        height: 75px;
    }
    /* Home */
    .home__services {
        grid-template-columns: 5fr minmax(215px, 3fr) minmax(215px, 3fr);
        padding: 6rem 0 6rem 3rem;
    }
    .home__services > br {
        display: none;
    }
    .home__services-text {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
        align-items: center;
        margin-bottom: 2rem;
        padding-right: 3rem;
        text-align: center;
    }
    .home__portfolio-grid img,
    .home__portfolio-grid video {
        width: 210px;
    }
    .home__pinterest {
        grid-template-columns: 1fr 250px;
    }
    .home__spaces-row {
        padding: 4rem 2.2rem;
    }
    .home__spaces-texts {
        padding: 2.2rem;
    }
    .home__blog {
        padding: 7rem 2rem;
    }
    /* Services */
    .services__hero {
        grid-template-columns: 100%;
        row-gap: 4rem;
    }
    .services__hero-texts {
        align-self: start;
        max-width: 370px;
    }
    .services__hero-texts h1 {
        margin: 0 0 1.5rem 0;
    }
    .services__hero-video {
        justify-self: end;
        width: 90%;
        aspect-ratio: 16 / 9;
    }
    .services__incentives {
        padding: 6rem 2.5rem;
    }
    .services__features-row {
        padding: 4rem 2.2rem;
    }
    .services__features-texts {
        padding: 2.2rem;
    }
    .services__reviews {
        padding: 4.5rem 3rem;
    }
    /* Blog */
    .blog__post {
        grid-template-columns: 100%;
        justify-items: center;
        padding: 4rem;
    }
    .blog__post > div {
        max-width: 550px;
    }
    .blog__post-img {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        height: unset;
        aspect-ratio: 16 / 9;
    }
    .blog__pinterest {
        grid-template-columns: 1fr 250px;
    }
    /* Contact */
    .contact__form {
        grid-template-columns: 13fr 25fr;
    }
    .contact__form form {
        padding: 0 2rem;
    }
}

@media screen and (max-width: 760px) {
    /* General */
    nav {
        gap: 1.6rem;
    }
    nav img {
        width: 28px;
    }
    .nav-group > a,
    .nav-group span,
    nav > a:not(:has(img)) {
        font-size: 0.7em;
    }
    .luxze__contact-cont {
        grid-template-columns: 100%;
    }
    .luxze__contact-links h2 {
        font-size: 2.3em;
    }
    .luxze__contact-form {
        justify-self: end;
    }
    .luxze__contact-cont .img-right {
        top: unset;
        bottom: 2.5rem;
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 3rem;
    }
    .footer__grid img {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    .footer__links a {
        display: block;
    }
    .footer__links:not(.left) {
        border: none;
    }
    /* Home */
    .home__hero {
        padding: 0 1rem;
    }
    .home__hero > img {
        height: 70px;
    }
    .home__hero-quote p {
        max-width: 380px;
    }
    .home__services {
        grid-template-columns: 100%;
        padding: 6rem 2rem;
    }
    .home__services-text {
        padding-right: 0;
    }
    .home__services-text h2 {
        font-size: 2.3em;
    }
    .home__services-img {
        height: 400px;
    }
    .home__services-img .info {
        padding: 2rem 1rem;
    }
    .home__services-link {
        margin-bottom: 2rem;
    }
    .home__services-link.proms {
        grid-row: 3 / 4;
    }
    .home__services-link.corporate {
        grid-row: 5 / 6;
    }
    .home__portfolio h2 {
        font-size: 2.3em;
    }
    .home__portfolio-grid {
        grid-template-columns: auto repeat(6, min-content) auto;
        grid-template-rows: repeat(3, auto);
        column-gap: 0;
        row-gap: 20px;
    }
    .home__portfolio-grid img {
        width: 130px;
    }
    .home__portfolio-grid video {
        width: 195px;
        margin-bottom: 1rem;
    }
    .home__portfolio-grid #img-1 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        align-self: end;
    }
    .home__portfolio-grid #img-2 {
        grid-column: 2 / 4;
        grid-row: 1 / 2;
    }
    .home__portfolio-grid #img-5 {
        grid-column: 5 / 7;
        grid-row: 1 / 2;
        margin-top: 1.5rem;
    }
    .home__portfolio-grid video {
        grid-column: 3 / 6;
        grid-row: 2 / 3;
    }
    .home__portfolio-grid #img-7 {
        grid-column: 7 / 9;
        grid-row: 2 / 3;
    }
    .home__portfolio-grid #img-4 {
        grid-column: 3 / 5;
        grid-row: 3 / 4;
        margin-top: 2rem;
    }
    .home__portfolio-grid #img-3 {
        grid-column: 6 / 8;
        grid-row: 3 / 4;
    }
    .home__instagram h2 {
        padding: 0 2rem;
        font-size: 2.3em;
    }
    .home__pinterest {
        display: flex;
        flex-direction: column;
    }
    .home__pinterest h2 {
        font-size: 2.3em;
    }
    .home__pinterest p {
        text-align: center;
    }
    .home__spaces {
        grid-template-columns: 1fr 1fr;
    }
    .home__spaces-texts h2 {
        font-size: 2.3em;
    }
    .home__spaces > .home__spaces-texts:not(:last-child) {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
        border-right: none;
        border-bottom: 1px solid var(--color-green);
    }
    .home__spaces-row {
        padding: 4rem 1.5rem;
    }
    .home__blog h2 {
        font-size: 2.3em;
    }
    .home__blog-posts {
        grid-template-columns: 100%;
        margin: 0;
        padding: 5rem 3rem;
    }
    /* Services */
    .services__hero {
        padding: 2rem 0 5rem 2.5rem;
    }
    .services__hero-texts h1 {
        font-size: 2.3em;
    }
    .services__incentives h2 {
        font-size: 2.3em;
    }
    .services__incentives-grid {
        grid-template-columns: 100%;
        grid-template-rows: auto 1px auto 1px auto;
    }
    .services__features {
        grid-template-columns: 1fr 1fr;
    }
    .services__features h2 {
        font-size: 2.3em;
    }
    .services__features > .services__features-texts:not(:last-child) {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
        border-right: none;
        border-bottom: 1px solid var(--color-green);
    }
    .services__features-row {
        padding: 4rem 1.5rem;
    }
    .services__features-row h3 {
        padding: 7px 0;
        height: calc(1.35em * 2 + 14px);
    }
    .services__reviews {
        grid-template-columns: 1fr 1fr;
        column-gap: 0;
        row-gap: 3rem;
    }
    .services__reviews-swiper {
        grid-column: 1 / 3;
    }
    .services__reviews button {
        justify-self: center;
    }
    .services__reviews > img {
        grid-column: 1 / 3;
    }
    /* Spaces */
    .spaces__hero {
        padding: 0 1rem;
    }
    .spaces__hero > img {
        height: 70px;
    }
    .spaces__hero-quote p {
        max-width: 380px;
    }
    .spaces__category {
        padding: 3.5rem 0;
    }
    .spaces__category h2 {
        font-size: 2.3em;
    }
    .spaces__category-swiper .swiper-slide:first-child {
        padding-left: 3rem;
    }
    .spaces__category-swiper .swiper-slide:last-child {
        padding-right: 3rem;
    }
    /* Portfolio */
    .portfolio__hero {
        padding: 0 1rem;
    }
    .portfolio__hero > img {
        height: 70px;
    }
    .portfolio__hero-quote p {
        max-width: 380px;
    }
    .portfolio__gallery {
        padding: 6rem 1.5rem;
    }
    .portfolio__gallery img,
    .portfolio__gallery video {
        height: 180px;
    }
    .portfolio__instagram h2 {
        padding: 0 2rem;
        font-size: 2.3em;
    }
    /* Blog */
    .blog__hero {
        padding: 0 1rem;
    }
    .blog__hero > img {
        height: 70px;
    }
    .blog__hero-quote p {
        max-width: 380px;
    }
    .blog__post {
        padding: 4rem 2rem;
    }
    .blog__post-content h2 {
        font-size: 2.3em;
    }
    .blog__post-content button {
        font-size: 1.75em;
    }
    .blog__pinterest {
        display: flex;
        flex-direction: column;
    }
    .blog__pinterest h2 {
        font-size: 2.3em;
    }
    .blog__pinterest p {
        text-align: center;
    }
    /* Contact */
    .contact__hero {
        grid-template-columns: 100%;
        row-gap: 6rem;
    }
    .contact__hero-links h1 {
        font-size: 2.3em;
    }
    .contact__hero-img {
        width: 85%;
    }
    .contact__hero > img {
        top: 2rem;
        left: 40%;
        height: 260px;
    }
    .contact__form {
        grid-template-columns: 100%;
        row-gap: 4rem;
    }
    .contact__form form {
        padding: 0 1.5rem 0 3rem;
    }
    .contact__form img {
        grid-row: 2 / 3;
        width: 50%;
        height: 260px;
    }
    /* Q&A */
    .questions__cont {
        gap: 4rem;
        padding: 0rem 3rem 8rem 3rem;
    }
    .questions__cont h1 {
        font-size: 2.3em;
    }
}

@media screen and (max-width: 480px) {
    /* General */
    .luxze-whats {
        right: 2rem;
    }
    .footer__grid {
        padding: 4.6rem 0.8rem 7rem 0.8rem;
    }
    .footer__links {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        padding-left: 1rem;
    }
    .footer__links.left {
        padding: 0 1rem 0 0;
    }
    .footer__links a {
        font-size: 0.75em;
    }
    .footer__links div {
        gap: 2rem;
    }
    .footer__links div i {
        font-size: 20px;
    }
    /* Home */
    .home__hero > img {
        height: 55px;
    }
    .home__spaces-row {
        padding: 4rem 1.2rem;
    }
    .home__blog {
        padding: 7rem 0;
    }
    .luxze__contact-cont {
        padding: 9rem 2rem 3.5rem 2rem;
    }
    /* Services */
    .services__incentives {
        padding: 4rem 2.5rem 2rem 2.5rem;
    }
    .services__features-row {
        padding: 4rem 1.2rem;
    }
    /* Spaces */
    .spaces__hero > img {
        height: 55px;
    }
    /* Portfolio */
    .portfolio__hero > img {
        height: 55px;
    }
    .portfolio__gallery {
        padding: 6rem 5%;
    }
    /* Blog */
    .blog__hero > img {
        height: 55px;
    }
    .blog__post-content .desc {
        font-size: 1.17em;
    }
    /* Contact */
    .contact__hero-links {
        padding: 2rem 0 0 3rem;
    }
    .contact__form form {
        padding: 0 1.5rem 0 2.5rem;
    }
    .contact__form img {
        width: 60%;
    }
    /* Q&A */
    .questions__cont {
        gap: 0;
        padding: 0rem 1.5rem 8rem 1.5rem;
    }
    .questions__cont h1 {
        margin: 1rem 0 3rem;
    }
    .question__item h2 {
        font-size: 1.15em;
    }
}

/* IPhone SE */
@media screen and (max-width: 376px) and (max-height: 668px) {

}