@charset "UTF-8";

/*
Theme Name: Level 5 Hospitality - 2023
Version: 1.1
*/

/* ============================================ */
/* Fonts 

Muldial Hair
font-family: "mundial", sans-serif;
font-weight: 100;
font-style: normal;

Muldial Light
font-family: "mundial", sans-serif;
font-weight: 300;
font-style: normal;

Muldial Regular
font-family: "mundial", sans-serif;
font-weight: 400;
font-style: normal;

Muldial Bold
font-family: "mundial", sans-serif;
font-weight: 700;
font-style: normal;

*/
/* ============================================ */

/* ============================================ */
/* Variables */
/* ============================================ */
:root {    
    --l-green: #b4c0b6;
    --d-green: #2c3f36;
    --gray: #eeeeee;
    --white: #fff;
    --black: #000;

    --gradient-wg: linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(255,255,255,0) 100%);
    --gradient-gw: linear-gradient(180deg, rgba(238,238,238,1) 0%, rgba(255,255,255,0) 100%);
    --gradient-b: linear-gradient(174deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.8) 100%);

    --step--2: clamp(0.78rem, calc(0.77rem + 0.03vw), 0.80rem);
    --step--1: clamp(0.94rem, calc(0.92rem + 0.11vw), 1.00rem);
    --step-0: clamp(1.13rem, calc(1.08rem + 0.22vw), 1.25rem);
    --step-1: clamp(1.35rem, calc(1.28rem + 0.37vw), 1.56rem);
    --step-2: clamp(1.62rem, calc(1.50rem + 0.58vw), 1.95rem);
    --step-3: clamp(1.94rem, calc(1.77rem + 0.87vw), 2.44rem);
    --step-4: clamp(2.33rem, calc(2.08rem + 1.25vw), 3.05rem);
    --step-5: clamp(2.80rem, calc(2.45rem + 1.77vw), 3.82rem);

    --height: calc(100% - {padding});
    --width: calc(2*var(--height));  
}

/* ============================================ */
/* Global */
/* ============================================ */
h1 {
    font-size: var(--step-5);
    font-family: "mundial", sans-serif;
    font-weight: 700;
    font-style: normal;
}
h2 {
    font-size: var(--step-4);
    font-family: "mundial", sans-serif;
    font-weight: 700;
    font-style: normal;
}
h3 {
    font-size: var(--step-3);
    font-family: "mundial", sans-serif;
    font-weight: 700;
    font-style: normal;
}
h4 {
    font-size: var(--step-2);
    font-family: "mundial", sans-serif;
    font-weight: 700;
    font-style: normal;
}
h5 {
    font-size: var(--step-1);
    font-family: "mundial", sans-serif;
    font-weight: 700;
    font-style: normal;
}
h6 {
    font-size: var(--step-0);
    font-family: "mundial", sans-serif;
    font-weight: 400;
    font-style: normal;
}
p {
    font-size: var(--step-0);
    font-family: "mundial", sans-serif;
    font-weight: 300;
    font-style: normal;
}
a {
    font-size: var(--step-0);
    font-family: "mundial", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    cursor: pointer;
}
strong {
    font-size: var(--step-0);
    font-family: "mundial", sans-serif;
    font-weight: 700;
    font-style: normal;
}
small {
    font-size: var(--step-0);
    font-family: "mundial", sans-serif;
    font-weight: 100;
    font-style: normal;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
small img {
    height: var(--step-0);
    margin-right: .5rem;
}

/* Buttons */
/* .btn-primary {
    background: var(--white);
    border: 2px solid var(--d-green);
    border-radius: 50px;
    padding: 8px 20px 10px 20px;
    text-transform: uppercase;
    font-family: "mundial", sans-serif;
    font-weight: 100;
    font-style: normal;
    letter-spacing: .1rem;
    color: var(--d-green);
    cursor: pointer;
    transition: .2s all;
}
.btn-primary:hover {
    cursor: pointer;
    background: var(--d-green);
    color: var(--white);
} */
.btn-secondary, .btn-primary {
    background: var(--d-green);
    border: 2px solid var(--d-green);
    border-radius: 50px;
    padding: 8px 20px 10px 20px;
    text-transform: uppercase;
    font-family: "mundial", sans-serif;
    font-weight: 100;
    font-style: normal;
    letter-spacing: .1rem;
    color: var(--white);
    cursor: pointer;
    transition: .2s all;
}
.btn-secondary:hover, .btn-primary:hover {
    cursor: pointer;
    background: var(--white);
    border: 2px solid var(--white);
    color: var(--d-green);
}

/* Layout */
.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.page-width {
    width: 70%;
}
@media(max-width: 2000px) {
    .page-width {
        width: 80%;
    }
}

/* ============================================ */
/* HEADER */
/* ============================================ */
.main-menu-container {
    padding-top: 4rem;
    margin-bottom: -12rem;
    position: relative;
    z-index: 6;
}
.main-menu-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-menu-left img {
    height: 5rem;
    width: auto;
}
/* .main-menu-right {
    display: flex;
    justify-content: center;
    align-items: ;
} */
.main-menu-socials {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: -1rem 0 1rem 0;
}
.main-menu-socials a {
    margin-left: 1rem;
    font-size: var(--step--1);
}
.main-menu-socials a i {
    background: var(--white);
    color: var(--d-green);
    height: 2rem;
    width: 2rem;
    border-radius: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s all;
}
.main-menu-socials a:hover i {
    color: var(--white);
    background: var(--l-green);
}
.main-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}
.main-menu li a {
    margin-left: 2rem;
    padding-bottom: 2px;
    text-transform: uppercase;
    color: var(--white);
    transition: .2s all;
    border-bottom: 0px solid var(--l-green);
}
.main-menu li a:hover {
    color: var(--l-green);
    border-bottom: 2px solid var(--l-green);
}
.mobile-toggle-container {
    position: relative;
}
.mobile-toggle {
    display: none;
}

/* Icon 3 */
#nav-icon3 {
    width: 50px;
    margin-top: -1.5rem;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
} 
#nav-icon3 span{
    display: block;
    position: absolute;
    height: 7px;
    width: 100%;
    background: var(--l-green);
    border-radius: 10px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
#nav-icon3 span:nth-child(1) {
    top: 0px;
}
#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
    top: 18px;
}
#nav-icon3 span:nth-child(4) {
    top: 36px;
}
#nav-icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}


@media(max-width: 1175px) {
    .mobile-toggle {
        display: block;
    }
    .main-menu-show {
        width: 0;
        height: 100vh;
        background: var(--d-green);
        position: absolute;
        right: 0;
        top: 0;
        overflow: hidden;
        transition: .2s all;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    }
    .main-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 0 0 2rem 0;
    }
    .main-menu-socials {
        justify-content: center;
    }
    .main-menu li {
        margin-bottom: 1rem;
    }
    .main-menu li a {
        padding-left: 0;
        margin-bottom: 1rem;
    }
}
@media (max-width: 550px) {
    .main-menu-left img {
        height: 4rem;
    }
}

/* Interior header */
.interior-header-container {
    height: 15rem;
    position: relative;
    z-index: 5;
}

/* ============================================ */
/* HOMEPAGE */
/* ============================================ */
/* Hero */
.hero-container {
    padding: 25rem 0 17rem 0;
    background-color: var(--l-green);
}
.hero-content {
    text-align: center;
    width: 45%;
}
.hero-content h1 {
    color: var(--l-green);
    text-transform: uppercase;
}
.hero-content h4 {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 300 !important;
}
@media(max-width: 1500px) {
    .hero-content {
        width: 75%;
    }
}
@media(max-width: 750px) {
    .hero-content h4 {
        font-size: var(--step-0) !important;
    }
    .hero-container {
        padding: 17rem 0 8rem 0;
    }
}

/* Subhero */
.subhero-container {
    margin: 2rem 0;
}
.subhero-bg {
    background: var(--l-green);
    margin-right: 15%;
    border-radius: 0 100rem 100rem 0;
    position: relative;
}
.half-circle {
    position: absolute;
    right: -3rem;
    width: 22rem;
    height: 12rem;
    background-color: transparent;
    border-top-left-radius: 100rem; 
    border-top-right-radius: 100rem;
    border: 1.5rem solid var(--white);
    background: transparent;
    border-bottom: 0;
    transform: rotate(90deg);
}
.subhero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5rem 0;
}
.subhero-content h2 {
    color: var(--d-green);
    text-transform: uppercase;
    padding: 1rem 0;
}
.subhero-content small {
    color: var(--white);
}
@media(max-width: 2168px) {
    .half-circle {
        width: 24rem;
    }
}
@media(max-width: 2000px) {
    .half-circle {
        width: 22rem !important;
    }
}
@media(max-width: 1900px) {
    .half-circle {
        width: 24rem !important;
    }
}
@media(max-width: 1000px) {
    .subhero-bg {
        margin-right: 5%;
    }
}
@media(max-width: 850px) {
    .half-circle {
        display: none;
    }
    .subhero-content h2 {
        font-size: var(--step-2);
    }
}
@media(max-width: 450px) {
    .subhero-bg {
        margin: 0;
        border-radius: 0;
    }
    .subhero-container {
        margin: 0;
    }
    .hp-success-container {
        padding: 0 0 5rem 0 !important;
    }
}

/* Success */
.hp-success-container {
    padding: 5rem 0;
    background: var(--gradient-wg);
}
.hp-success-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hp-success-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hp-success-right {
    color: var(--d-green);
}
.hp-success-right ul {
    list-style: none;
    padding: 1rem 0;
    text-transform: uppercase;
    color: var(--d-green);
}
.hp-success-right ul li {
    display: flex;
    align-items: center;
}
.hp-success-right ul li h5 {
    color: var(--white);
    background: var(--l-green);
    font-size: var(--step-1);
    font-family: "mundial", sans-serif;
    font-weight: 700;
    padding-bottom: 5px;
    font-style: normal;
    margin-right: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp-success-right h4 {
    color: var(--d-green);
}
.hp-success-left img {
    border-radius: 100rem;
    width: 35rem;
    height: 35rem;
    object-fit: cover;
}

@media(max-width: 1400px) {
    .hp-success-left img {
        width: 25rem;
        height: 25rem;
    }
}
@media(max-width: 1200px) {
    .hp-success-left img {
        width: 20rem;
        height: 20rem;
    }
}
@media(max-width: 1000px) {
    .hp-success-content {
        flex-direction: column;
    }
    .hp-success-left {
        width: 125%;
    }
    .hp-success-left img {
        width: 100%;
        height: 35rem;
        margin-bottom: 2rem;
        border-radius: 0;
        object-position: center;
    }
}
@media(max-width: 850px) {
    .hp-success-right h4 {
        font-size: var(--step-0);
    }
    .hp-success-left img {
        height: 20rem;
        object-position: top;   
    }
}

/* Lifestyle */
.hp-lifestyle-container {
    margin: 2rem 0;
    position: relative;    
}
.hp-lifestyle-bg {
    background: var(--white);
    height: 100%;
    margin-left: 55%;
    border-radius: 90rem 0 0 90rem;
    position: relative;
}
.half-circle-2 {
    position: absolute;
    left: -3rem;
    width: 27rem;
    height: 14rem;
    background-color: transparent;
    border-top-left-radius: 100rem; 
    border-top-right-radius: 100rem;
    border: 1.5rem solid var(--l-green);
    background: transparent;
    border-bottom: 0;
    transform: rotate(-90deg);
}
.hp-lifestyle-mobile-header {
    display: none;
}
.hp-lifestyle-content {
    padding: 8rem 4rem 8rem 5rem;
}
.hp-lifestyle-content h2 {
    text-align: center;
    color: var(--l-green);
    text-transform: uppercase;
}
.hp-lifestyle-content p {
    color: var(--d-green);
    padding: 1rem 0;
}
.hp-lifestyle-content a {
    display: none;
}

@media(max-width: 1300px) {
    .hp-lifestyle-bg {
        margin-left: 50%;
    }
    .hp-lifestyle-container {
        background-size: 100% !important;
    }
}
@media(max-width: 950px) {
    .hp-lifestyle-bg {
        margin-left: 25%;
    }
}
@media(max-width: 800px) {
    .hp-lifestyle-mobile-header {
        display: block;
        width: 100%;
        overflow: hidden;
    }
    .hp-lifestyle-mobile-header img {
        width: 100%;
    }
    .hp-lifestyle-mobile-header h2 {
        text-align: center;
        background: var(--l-green);
        color: var(--white);
        text-transform: uppercase;
        padding: 2rem 0;
    }
    .hp-lifestyle-container {
        padding: 0;
        margin: 0;
        background: none !important;
    }
    .hp-lifestyle-bg .half-circle-2 {
        display: none;
    }
    .hp-lifestyle-bg {
        border-radius: 0;
        margin: 0;
    }
    .hp-lifestyle-content {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 4rem 0;
        border-bottom: 1px solid var(--d-green);
    }
    .hp-lifestyle-content h2 {
        display: none;
    }
    .hp-lifestyle-content p {
        padding: 0 0 1rem 0;
    }
    .hp-lifestyle-content a {
        display: block;
    }
}

/* Clients */
.hp-clients-content {
    padding: 5rem 0;
    text-align: center;
}
.hp-clients-content small {
    color: var(--d-green);
    margin-bottom: 2rem;
}
.hp-clients-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hp-clients-logos img {
    width: 10rem;
}

@media(max-width: 2150px) {
    .hp-clients-logos {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        row-gap: 2rem;
    }
}
@media(max-width: 1750px) {
    .hp-clients-logos img {
        width: 10rem;
    }
    .hp-clients-logos {
        padding-top: 2rem;
    }
}
@media(max-width: 1075px) {
    .hp-clients-logos {
        grid-template-columns: 1fr 1fr;
    }
}
@media(max-width: 875px) {
    .hp-clients-logos img {
        width: 15rem;
        margin-bottom: 5rem;
    }
    .hp-clients-logos {
        flex-wrap: wrap;
    }
}
@media(max-width: 715px) {
    .hp-clients-logos img {
        width: 12rem;
    }
}
@media(max-width: 550px) {
    .hp-clients-content {
        padding: 4rem 0;
    }
    .hp-clients-logos img {
        width: 10rem;
    }
}
@media(max-width: 475px) {
    .hp-clients-logos img {
        width: 8rem;
    }
}

/* Testimonials */
.hp-testimonials-container {
    padding: 5rem 0;
    background: var(--gradient-gw);
}
.hp-testimonials-content h4 {
    color: var(--d-green);
    text-align: center;
}
.hp-testimonials-content small {
    text-align: center;
    color: var(--d-green);
    padding-top: 2rem;
}
.hp-testimonials-content .splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.splide__arrow--prev {
    left: -5rem !important;
}
.splide__arrow--next {
    right: -5rem !important;
}
.splide__arrow {
    background-color: var(--l-green) !important;
    opacity: 1 !important;
}
.splide__arrow svg {
    fill: var(--white) !important;
}
.splide__arrow:disabled {
    opacity: 1 !important;
}

/* Portfolio */
.hp-portfolio-container {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
    background: var(--l-green);
}
.hp-portfolio-content h2 {
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
}
.hp-portfolio-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 0;
}
.hp-portfolio-list h4 {
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hp-portfolio-list h4 img {
    height: var(--step-0);
    margin-bottom: 1rem;
}
.hp-portfolio-content a {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
@media(max-width: 850px) {
    .hp-portfolio-list {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .hp-portfolio-list img {
        display: none;
    }
    .hp-portfolio-list h4 {
        margin-bottom: 2rem;
    }
}

/* Join Team */
.hp-join-team-container {
    margin: 2rem 0;
}
.hp-join-team-bg {
    padding: 5rem 0;
    background: var(--white);
    height: 100%;
    margin-right: 60%;
    padding-left: 10%;
    /* border-radius: 0 90rem 90rem 0; */
    position: relative;
}
.hp-join-team-content {
    position: relative;
    z-index: 3;
}
.half-circle-3 {
    position: absolute;
    right: -19rem;
    width: 55rem;
    height: 27rem;
    background-color: transparent;
    border-top-left-radius: 100rem; 
    border-top-right-radius: 100rem;
    border: 2rem solid var(--white);
    background: transparent;
    border-bottom: 0;
    transform: rotate(90deg);
}
.half-circle-4 {
    position: absolute;
    right: -13rem;
    width: 50rem;
    height: 27rem;
    background-color: transparent;
    border-top-left-radius: 100rem; 
    border-top-right-radius: 100rem;
    border: 3rem solid var(--white);
    background: transparent;
    border-bottom: 0;
    transform: rotate(90deg);
}
.hp-join-team-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hp-join-team-content small {
    text-align: center;
    width: 100%;
    color: var(--d-green);
}
.hp-join-team-content h2 {
    text-align: center;
    color: var(--d-green);
    text-transform: uppercase;
}
.hp-join-team-content p {
    padding: 1rem 0;
    text-align: center;
}
.hp-join-team-buttons a {
    margin-right: 2rem;
}
.hp-join-team-mobile-header {
    display: none;
}

@media(max-width: 1700px) {
    .hp-join-team-container {
        background-size: 55% !important;
    }
    .hp-join-team-bg {
        margin-right: 50%;
    }
}
@media(max-width: 1400px) {
    .hp-join-team-bg {
        padding-left: 5%;
    }
    .hp-join-team-container {
        background-size: 60% !important;
    }
}
@media(max-width: 1275px) {
    .hp-join-team-container {
        background: none !important;
        padding: 0;
        margin: 0;
    }
    .hp-join-team-content {
        padding: 5rem 0;
    }
    .hp-join-team-bg {
        margin: 0;
        padding: 0;
        border-radius: 0;
    }
    .hp-join-team-mobile-header {
        display: block;
        position: relative;
        height: 30rem;
        width: 100%;
    }
    .half-circle-5 {
        position: absolute;
        left: -31rem;
        width: 50rem;
        height: 100%;
        background-color: transparent;
        border-top-left-radius: 100rem; 
        border-top-right-radius: 100rem;
        border: 3rem solid var(--white);
        background: transparent;
        border-bottom: 0;
        transform: rotate(90deg);
    }
    .half-circle-6 {
        position: absolute;
        left: -32rem;
        width: 40rem;
        height: 100%;
        background-color: transparent;
        border-top-left-radius: 100rem; 
        border-top-right-radius: 100rem;
        border: 3rem solid var(--white);
        background: transparent;
        border-bottom: 0;
        transform: rotate(90deg);
    }
    .hp-join-team-mobile-header img {
        width: 100%;
    }
    .half-circle-3, .half-circle-4 {
        display: none;
    }
}
@media(max-width: 750px) {
    .hp-join-team-mobile-header {
        height: 20rem;
    }
    .half-circle-5 {
        width: 30rem;
        left: -17rem;
    }
    .half-circle-6 {
        width: 20rem;
        left: -18rem;
    }
}
@media(max-width: 600px) {
    .half-circle-6 {
        display: none;
    }
    .half-circle-5 {
        left: -20rem;
    }
    .hp-join-team-buttons a {
        margin-right: 1rem;
    }
}
@media(max-width: 500px) {
    .hp-join-team-mobile-header {
        height: 15rem;
    }
    .half-circle-5 {
        left: -18rem;
        border: 2rem solid var(--white);
    }
}
@media(max-width: 450px) {
    .hp-join-team-buttons {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .hp-join-team-buttons a {
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

/* ============================================ */
/* INTERIOR PAGE: TEAM */
/* ============================================ */
/* The Team */
.interior-team-container {
    margin: 2rem 0;
}
.interior-team-bg {
    padding: 5rem 0;
    background: var(--white);
    height: 100%;
    margin-right: 50%;
    padding-left: 10%;
    /* border-radius: 0 90rem 90rem 0; */
    position: relative;
}
.interior-team-content {
    position: relative;
    z-index: 3;
}
.half-circle-3-interior {
    position: absolute;
    right: -17rem;
    width: 55rem;
    height: 100%;
    background-color: transparent;
    border-top-left-radius: 100rem; 
    border-top-right-radius: 100rem;
    border: 3rem solid var(--white);
    background: transparent;
    border-bottom: 0;
    transform: rotate(90deg);
}
.half-circle-4-interior {
    position: absolute;
    right: -7rem;
    width: 48rem;
    height: 100%;
    background-color: transparent;
    border-top-left-radius: 100rem; 
    border-top-right-radius: 100rem;
    border: 3rem solid var(--white);
    background: transparent;
    border-bottom: 0;
    transform: rotate(90deg);
}
.interior-team-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.interior-team-content small {
    text-align: center;
    width: 100%;
    color: var(--d-green);
}
.interior-team-content h2 {
    text-align: center;
    color: var(--d-green);
    text-transform: uppercase;
}
.interior-team-content p {
    padding: 1rem 0;
    text-align: center;
}
.interior-team-mobile-header {
    display: none;
}
@media(max-width: 2000px) {
    .interior-team-bg {
        padding-left: 6%;
    }
}
@media(max-width: 1920px) {
    .interior-team-container {
        background-size: 55% !important;
    }
    .half-circle-4-interior {
        right: -6rem;
    }
    .half-circle-3-interior {
        right: -16rem;
    }
}
@media(max-width: 1700px) {
    .interior-team-container {
        background-size: 60% !important;
    }
    .interior-team-bg {
        margin-right: 50%;
    }
}
@media(max-width: 1446px) {
    .interior-team-bg {
        margin-right: 45%;
    }
}
@media(max-width: 1400px) {
    .interior-team-bg {
        padding-left: 5%;
    }
    .interior-team-container {
        background-size: 60% !important;
    }
}
@media(max-width: 1275px) {
    .hp-join-team-container {
        background: none !important;
        padding: 0;
        margin: 0;
    }
    .interior-team-content {
        padding: 5rem 0;
    }
    .interior-team-bg {
        margin: 0;
        padding: 0;
        border-radius: 0;
    }
    .interior-team-mobile-header {
        display: block;
        position: relative;
        height: 30rem;
        width: 100%;
    }
    .half-circle-5-interior {
        position: absolute;
        left: -31rem;
        width: 50rem;
        height: 100%;
        background-color: transparent;
        border-top-left-radius: 100rem; 
        border-top-right-radius: 100rem;
        border: 3rem solid var(--white);
        background: transparent;
        border-bottom: 0;
        transform: rotate(90deg);
    }
    .half-circle-6-interior {
        position: absolute;
        left: -32rem;
        width: 40rem;
        height: 100%;
        background-color: transparent;
        border-top-left-radius: 100rem; 
        border-top-right-radius: 100rem;
        border: 3rem solid var(--white);
        background: transparent;
        border-bottom: 0;
        transform: rotate(90deg);
    }
    .hp-jointeriorin-team-mobile-header img {
        width: 100%;
    }
    .half-circle-3-interior, .half-circle-4-interior {
        display: none;
    }
}
@media(max-width: 1000px) {
    .team-quote-content {
        width: 75% !important;
    }
}
@media(max-width: 750px) {
    .interior-team-mobile-header {
        height: 20rem;
    }
    .half-circle-5-interior {
        width: 30rem;
        left: -17rem;
    }
    .half-circle-6-interior {
        width: 20rem;
        left: -18rem;
    }
}
@media(max-width: 600px) {
    .half-circle-6-interior {
        display: none;
    }
    .half-circle-5-interior {
        left: -20rem;
    }
    .interior-team-buttons a {
        margin-right: 1rem;
    }
}
@media(max-width: 500px) {
    .interior-team-mobile-header {
        height: 15rem;
    }
    .half-circle-5 {
        left: -18rem;
        border: 2rem solid var(--white);
    }
}
@media(max-width: 450px) {
    .interior-team-buttons {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .interior-team-buttons a {
        margin-bottom: 1rem;
        margin-right: 0;
    }
}


/* Team Contact */
.team-contact-container {
    background: var(--l-green);
    padding: 5rem 0;
    position: relative;
    z-index: 5;
}
.team-contact-container h2 {
    text-transform: uppercase;
    color: var(--d-green);
    padding: 1rem 0;
}
.team-contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.team-icons {
    display: flex;
    align-items: center;
    flex-direction: row;
}
.team-icons a {
    height: 2rem;
    width: 2rem;
    border-radius: 50rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--d-green);
    margin-right: 1rem;
    transition: .2s all;
}
.team-icons a i {
    font-size: var(--step--1);
    color: var(--white);
}
.team-icons a:hover {
    background: var(--l-green);
}

/* Team 1 */
.team1-container {
    background: var(--gray);
    padding: 5rem 0;
}
.team1-content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.team1-content h4 {
    color: var(--l-green);
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.team1-content p {
    color: var(--d-green);
}
.team1-content img {
    min-width: 25rem;
    height: 25rem;
    object-fit: cover;
    object-position: top;
    border-radius: 50rem;
    margin-right: 5rem;
}

@media(max-width: 1000px) {
    .team1-content {
        flex-direction: column;
    }
    .team1-content img {
        margin-right: 0;
        margin-bottom: 2rem;
    }
}
@media(max-width: 600px) {
    .team1-content img {
        min-width: 18rem;
        height: 18rem;
    }
}

/* Team 2 */
.team2-container {
    padding: 5rem 0;
}
.team2-content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.team2-content h4 {
    color: var(--l-green);
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.team2-content p {
    color: var(--d-green);
}
.team2-content img {
    min-width: 25rem;
    height: 25rem;
    object-fit: cover;
    object-position: top;
    border-radius: 50rem;
    margin-left: 5rem;
}

@media(max-width: 1000px) {
    .team2-content {
        flex-direction: column-reverse;
    }
    .team2-content img {
        margin-left: 0;
        margin-bottom: 2rem;
    }
}
@media(max-width: 600px) {
    .team2-content img {
        min-width: 18rem;
        height: 18rem;
    }
}

/* Team quote */
.team-quote-container {
    background: var(--gradient-gw);
    padding: 5rem 0;
}
.team-quote-content {
    width: 50%;
}
.team-quote-content h4 {
    color: var(--d-green);
    text-transform: uppercase;
    text-align: center;
    padding: 1rem 0;
}
.team-quote-content p {
    text-align: center;
}

/* ============================================ */
/* INTERIOR PAGE: LIFESTYLE */
/* ============================================ */
/* Hero */
.interior-hero-container {
    text-align: center;
    padding: 4rem 0 2rem 0;
}
.interior-hero-content h2 {
    color: var(--l-green);
    text-transform: uppercase;
}

@media(max-width: 800px) {
    .interior-hero-container {
        padding: 4rem 0;
    }
}

/* More Than A Company */
.interior-lifestyle-container {
    margin: 2rem 0;
    position: relative;    
}
.interior-lifestyle-bg {
    background: var(--white);
    height: 100%;
    margin-left: 55%;
    border-radius: 90rem 0 0 90rem;
    position: relative;
}
.half-circle-2 {
    position: absolute;
    left: -3rem;
    width: 27rem;
    height: 14rem;
    background-color: transparent;
    border-top-left-radius: 100rem; 
    border-top-right-radius: 100rem;
    border: 1.5rem solid var(--l-green);
    background: transparent;
    border-bottom: 0;
    transform: rotate(-90deg);
}
.interior-lifestyle-mobile-header {
    display: none;
}
.interior-lifestyle-content {
    padding: 8rem 0 8rem 5rem;
}
.interior-lifestyle-content h2 {
    text-align: center;
    color: var(--l-green);
    text-transform: uppercase;
}
.interior-lifestyle-content p {
    color: var(--d-green);
    padding: 1rem 0;
    text-align: center;
}
.interior-lifestyle-content a {
    display: none;
}

@media(max-width: 1300px) {
    .interior-lifestyle-bg {
        margin-left: 50%;
    }
    .interior-lifestyle-container {
        background-size: 100% !important;
    }
}
@media(max-width: 1570px) {
    .interior-lifestyle-bg {
        margin-left: 50%;
    }
}
@media(max-width: 1260px) {
    .interior-lifestyle-bg {
        margin-left: 35%;
    }
}
@media(max-width: 950px) {
    .interior-lifestyle-bg {
        margin-left: 25%;
    }
}
@media(max-width: 800px) {
    .interior-lifestyle-mobile-header {
        display: block;
        width: 100%;
        overflow: hidden;
    }
    .interior-lifestyle-mobile-header img {
        width: 100%;
    }
    .interior-lifestyle-mobile-header h2 {
        text-align: center;
        background: var(--l-green);
        color: var(--white);
        text-transform: uppercase;
        padding: 2rem 0;
    }
    .interior-lifestyle-container {
        padding: 0;
        margin: 0;
        background: none !important;
    }
    .interior-lifestyle-bg .half-circle-2 {
        display: none;
    }
    .interior-lifestyle-bg {
        border-radius: 0;
        margin: 0;
    }
    .interior-lifestyle-content {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 4rem 0;
        border-bottom: 1px solid var(--d-green);
    }
    .interior-lifestyle-content h2 {
        display: none;
    }
    .interior-lifestyle-content p {
        padding: 0 0 1rem 0;
    }
    .interior-lifestyle-content a {
        display: block;
    }
}

/* Pillars of Succss */
.interior-success-container {
    padding: 5rem 0;
    background: var(--gray);
}
.interior-success-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.interior-success-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.interior-success-right {
    color: var(--d-green);
}
.interior-success-right ul {
    list-style: none;
    padding: 1rem 0;
    text-transform: uppercase;
    color: var(--d-green);
}
.interior-success-right ul li {
    display: flex;
    align-items: center;
}
.interior-success-right ul li h5 {
    color: var(--white);
    background: var(--l-green);
    font-size: var(--step-1);
    font-family: "mundial", sans-serif;
    font-weight: 700;
    padding-bottom: 5px;
    font-style: normal;
    margin-right: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.interior-success-right h4 {
    color: var(--d-green);
}
.interior-success-left img {
    border-radius: 100rem;
    width: 35rem;
    height: 35rem;
    object-fit: cover;
}

@media(max-width: 1400px) {
    .interior-success-left img {
        width: 25rem;
        height: 25rem;
    }
}
@media(max-width: 1200px) {
    .interior-success-left img {
        width: 20rem;
        height: 20rem;
    }
}
@media(max-width: 1000px) {
    .interior-success-container {
        padding: 0 0 5rem 0;
    }
    .interior-success-content {
        flex-direction: column;
    }
    .interior-success-left {
        width: 125%;
    }
    .interior-success-left img {
        width: 100%;
        height: 35rem;
        margin-bottom: 2rem;
        border-radius: 0;
        object-position: center;
    }
}
@media(max-width: 850px) {
    .interior-success-right h4 {
        font-size: var(--step-0);
    }
    .interior-success-left img {
        height: 20rem;
        object-position: top;   
    }
}

/* Commitment to Community */
.cc-container {
    margin: 2rem 0;
}
.cc-bg {
    background: var(--l-green);
    margin-right: 15%;
    border-radius: 0 100rem 100rem 0;
    position: relative;
}
.cc-half-circle {
    position: absolute;
    right: -3rem;
    width: 24rem;
    height: 12rem;
    background-color: transparent;
    border-top-left-radius: 100rem; 
    border-top-right-radius: 100rem;
    border: 1.5rem solid var(--white);
    background: transparent;
    border-bottom: 0;
    transform: rotate(90deg);
}
.cc-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5rem 0;
}
.cc-content img {
    width: 10rem;
}
.cc-content h2 {
    color: var(--d-green);
    text-transform: uppercase;
    text-align: center;
    padding: 1rem 0;
}
.cc-content p {
    color: var(--white);
    text-align: center;
}

@media(max-width: 2168px) {
    .half-circle {
        width: 24rem;
    }
}
@media(max-width: 1000px) {
    .cc-bg {
        margin-right: 5%;
    }
    .cc-half-circle {
        display: none;
    }
}
@media(max-width: 650px) {
    .cc-bg {
        border-radius: 0;
        margin-right: 0;
    }
    .cc-container {
        margin: 0;
    }
}

/* Awards */
.awards-container {
    display: none;
    margin: 5rem 0;
}
.awards-hotels {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.awards-hotel {
    margin: 0 1rem;
}
.awards-hotel h6 {
    color: var(--l-green);
    text-transform: uppercase;
}
.awards-hotel-logo {
    height: 13rem;
    width: 100%;
    display: flex;
    justify-items: center;
    align-items: center;
}
.awards-hotel-logo img {
    width: 50%;
    margin: 0 auto;
}
@media(max-width: 1250px) {
    .awards-hotels {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .awards-content small {
        margin-bottom: 2rem;
    }
    .awards-hotel-logo img {
        margin-bottom: 1rem;
    }
}
@media(max-width: 650px) {
    .awards-hotels {
        grid-template-columns: 1fr;
    }
}

/* Careers */
.lifestyle-careers-container {
    padding: 5rem 0;
    background: var(--gradient-gw);
}
.lifestyle-careers-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lifestyle-careers-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 5rem;
}
.lifestyle-careers-right p {
    margin: 1rem 0;
    text-align: center;
}
.lifestyle-careers-right h2 {
    text-transform: uppercase;
    color: var(--d-green);
}
.lifestyle-careers-left img {
    border-radius: 100rem;
    width: 35rem;
    height: 35rem;
    object-fit: cover;
}

@media(max-width: 1400px) {
    .lifestyle-careers-left img {
        width: 25rem;
        height: 25rem;
    }
}
@media(max-width: 1200px) {
    .lifestyle-careers-left img {
        width: 20rem;
        height: 20rem;
    }
}
@media(max-width: 1000px) {
    .lifestyle-careers-container {
        padding: 0 0 5rem 0;
    }
    .lifestyle-careers-right {
        margin-left: 0;
    }
    .lifestyle-careers-content {
        flex-direction: column;
    }
    .lifestyle-careers-left {
        width: 125%;
    }
    .lifestyle-careers-left img {
        width: 100%;
        height: 35rem;
        margin-bottom: 2rem;
        border-radius: 0;
        object-position: center;
    }
}
@media(max-width: 850px) {
    .lifestyle-careers-right h4 {
        font-size: var(--step-0);
    }
    .lifestyle-careers-left img {
        height: 20rem;
        object-position: top;   
    }
}

/* ============================================ */
/* INTERIOR PAGE: PORTFOLIO */
/* ============================================ */
/* Slider */
.portfolio-slider-container {
    padding: 2rem 0 0 0;
}
.client-slide {
    width: 100%;
    height: 45rem;

    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.slider-card {
    width: 35%;
    background: var(--gradient-b);
    padding: 2rem;
    margin-bottom: 5rem;
}
.slider-card h4 {
    color: var(--white);
    text-transform: uppercase;
}
.slider-card h6 {
    color: var(--l-green);
    text-transform: uppercase;
    font-weight: 700;
    margin: 1rem 0;
}
.slider-card p {
    color: var(--white);
}
.thumbnails {
    margin: 1rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 1rem;
    row-gap: 1rem;
} 
.thumbnail {
    width: 100%;
    height: 15rem;
    position: relative;
    overflow: hidden;
    object-fit: cover;
    list-style: none;
    cursor: pointer;
}
.portfolio-slider-container .is-active {
    background: var(--black);
}
.thumbnail i {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    top: 38%;
    left: 0;
    right: 0;
    width: 0;
    overflow: hidden;
    text-align: center;
    transition: .2s all;
}
.portfolio-slider-container .is-active i {
    display: block !important;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    top: 38%;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;

    color: var(--l-green);
    font-size: 4rem;
    transition: .2s all;
}
.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: .2s all;
}
.portfolio-slider-container .is-active img {
    opacity: .5 !important;
    transition: .2s all;
}

/* ADD IS ACTIVE STYLES HERE */

/* Description */
.portolio-desc-container {
    padding: 5rem 0;
}
.portfolio-desc-content img {
    margin-bottom: 2rem;
}

/* ============================================ */
/* INTERIOR PAGE: CONTACT */
/* ============================================ */
.contact-subhero-container {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
    padding: 5rem 0;
    background: var(--l-green);
}
.contact-subhero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contact-subhero-content h2 {
    color: var(--d-green);
    text-align: center;
    text-transform: uppercase;
    padding: 1rem 0;
}

.contact-form-container {
    margin: 5rem 0;
}
.contact-row p {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
}
.wpcf7-form-control-wrap {
    width: 100%;
}
.wpcf7-form-control-wrap input {
    width: 100%;
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
/* Contact */ 
.prefooter-contact-container {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
    background: var(--l-green);
}
.prefooter-contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.prefooter-contact-content small {
    color: var(--white);
}
.prefooter-contact-content h2 {
    color: var(--d-green);
    text-align: center;
    text-transform: uppercase;
    padding: 1rem 0;
}
.footer-container {
    margin: 2rem 0;
}
.footer-bg {
    background: var(--l-green);
    margin-left: 15%;
    border-radius: 100rem 0 0 100rem;
    position: relative;
}
.footer-content {
    padding: 5rem 0 5rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-left ul {
    list-style: none;
    padding-left: 0;
}
.footer-left ul li a {
    color: var(--white);
}
.footer-left p {
    color: var(--white);
    padding-top: 2rem;
}
.footer-content .footer-logo {
    width: 20rem;
    height: auto;
}
@media(max-width: 1000px) {
    .footer-content .footer-logo {
        width: 12rem;
    }
    .footer-bg {
        margin-left: 5%;
    }
}
@media(max-width: 715px) {
    .footer-container {
        margin: 0;
    }
    .footer-bg {
        margin: 0;
        border-radius: 0;
    }
    .footer-content {
        position: relative;
        padding: 5rem 0;
        align-items: flex-end;
    }
    .footer-left {
        padding-bottom: 8rem;
    }
    .footer-content .footer-logo {
        position: absolute;
        right: 0;
    }
}


























