/* #region [global] body */

body {
    margin: 0;
}

/* #endregion */

/* #region [global] .site */

.site {
    overflow: hidden;
}

/* #endregion */

/* #region [global][wordpress] .site */

/*
.site-main {
   // margin-top: 60px; /* top margin to position content under the top nav bar 
}
*/

/* #endregion */

/* #region [global][utility] box-sizing */

*, *:after, *:before {
    box-sizing: border-box;
}

/* #endregion */

/* #region [global][utility] display */

.--display-none {
    display: none!important;
}

/* #endregion display */

/* #region [global][utility] nobreak  */

.--nobreak {
    white-space: nowrap;
}

/* #endregion */

/* #region [global][utility] image pseudo background */

.--pseudo-background:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
}



/* #endregion */

/* #region [global][style] box shadow */

:root {

    --box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);

}


/* #endregion */

/* #region [global][style] rounded corners */

:root {
    --rounded-corner: 8px;
}

.--rounded-corner {
    border-radius: var(--rounded-corner);
    overflow: hidden;
}

/* #endregion */

/* #region [global][style] transition-durations */

:root {
    --transition-duration-medium : 0.3s 
}

/* #endregion */

/* #region [global][style] text alignments */

.--text-align-left {
	text-align: left;
}

.--text-align-center {
	text-align: center;
}

.--text-align-right {
	text-align: right;
}

/* #endregion */

/* #region [global][style] heights */

.--h-auto {
    flex-basis: auto;
    flex-grow: 1;
}

.--vh10 {
	height: 10vh;
}

.--vh20 {
	height: 20vh;
}

.--vh25 {
	height: 25vh;
}

.--vh30 {
	height: 30vh;
}

.--vh40 {
	height: 40vh;
}

.--vh50 {
	height: 50vh;
}

.--vh60 {
	height: 60vh;
}

.--vh70 {
	height: 70vh;
}

.--vh75 {
	height: 75vh;
}

.--vh100 {
	height: 100vh;
}

.--h10 {
	height: 10%;
}

.--h20 {
	height: 20%;
}

.--h25 {
	height: 25%;
}

.--h30 {
	height: 30%;
}

.--h40 {
	height: 40%;
}

.--h50 {
	height: 50%;
}

.--h60 {
	height: 60%;
}

.--h70 {
	height: 70%;
}

.--h75 {
	height: 75%;
}

.--h100 {
	height: 100%;
}

/* #endregion */

/* #region [global][style] widths */

.--w-auto {
    flex-basis: 100%;
    flex-grow: 1;
}

.--w10 {
	width: 10%;
}

.--w20 {
	width: 20%;
}

.--w25 {
	width: 25%;
}

.--w30 {
	width: 30%;
}

.--w33 {
	width: 33.3%;
}

.--w40 {
	width: 40%;
}

.--w50 {
	width: 50%;
}

.--w60 {
	width: 60%;
}

.--w70 {
	width: 70%;
}

.--w75 {
	width: 75%;
}

.--w80 {
	width: 80%;
}

.--w90 {
	width: 90%;
}

.--w100 {
	width: 100%;
}

/* #endregion */

/* #region [global][style] paddings */

.--padding-10 {
    padding: 10px;
}

.--padding-10-0 {
    padding: 10px 0;
}

.--padding-20 {
    padding: 20px;
}

.--padding-20-0 {
    padding: 20px 0;
}

.--padding-30 {
    padding: 30px;
}

.--padding-40 {
    padding: 40px;
}

.--padding-40-0 {
    padding: 40px 0;
}

.--padding-60 {
    padding: 60px;
}

.--padding-60-0 {
    padding: 60px 0;
}

/* #endregion */

/* #region [global][style] margins */

.--margin-top-2 {
    margin-top: 2px;
}

.--margin-top-4 {
    margin-top: 4px;
}

.--margin-top-8 {
    margin-top: 8px;
}

.--margin-top-16 {
    margin-top: 16px;
}

.--margin-top-24 {
    margin-top: 24px;
}

.--margin-top-32 {
    margin-top: 32px;
}

.--margin-top-40 {
    margin-top: 40px;
}

.--margin-top-48 {
    margin-top: 48px;
}

.--margin-top-60 {
    margin-top: 60px;
}

.--margin-bottom-2 {
    margin-bottom: 2px;
}

.--margin-bottom-4 {
    margin-bottom: 4px;
}

.--margin-bottom-8 {
    margin-bottom: 8px;
}

.--margin-bottom-16 {
    margin-bottom: 16px;
}

.--margin-bottom-24 {
    margin-bottom: 24px;
}

.--margin-bottom-32 {
    margin-bottom: 32px;
}

.--margin-bottom-40 {
    margin-bottom: 40px;
}

.--margin-bottom-48 {
    margin-bottom: 48px;
}

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

/* #endregion */

/* #region [global][style] dropshadow filter */

:root{
    --dropshadow: drop-shadow(0px 20px 20px rgba(0,0,0,.56));
}

.--dropshadow {
    filter: var(--dropshadow);
}

/* #endregion */

/* #region [global][layout] page paddings and content width - before rows and columns */

:root {
    /* layout */
	--page-padding: 60px;
    --boxed-content-width: 1400px;
}

@media (max-width: 1024px) {

    :root {
        /* layout */
        --page-padding: 40px;
    }

}

@media (max-width: 767px) {

    :root {
        /* layout */
        --page-padding: 40px;
    }

}

/* #endregion root */

/* #region [global][layout] rows */

._row {
	display: flex;
	flex-direction: row;
}

._row.--padded-left-right {
    padding-left: var(--page-padding);
    padding-right: var(--page-padding);
}

._row.--boxed-content {
    padding-left: var(--page-padding);
    padding-right: var(--page-padding);
    max-width: var(--boxed-content-width);
    margin: 0 auto;
}

/* #endregion */

/* #region [global][layout] columns */

._column {
	display: flex;
	flex-direction: column;
}

._column.--padded-left-right {
    padding-left: var(--page-padding);
    padding-right: var(--page-padding);
}

._column.--boxed-content {
    padding-left: var(--page-padding);
    padding-right: var(--page-padding);
    max-width: var(--boxed-content-width);
    margin: 0 auto;
}

/* #endregion */

/* #region [global][layout] aspect-ratio containers */

._square-container {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
}

._three-by-two-container {
    width: 100%;
    padding-bottom: 66.67%;
    position: relative;
}

._four-by-three-container {
    width: 100%;
    padding-bottom: 75%;
    position: relative;
}

._sixteen-by-nine-container {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
}

._absolute-centered-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* #endregion */

/* #region [global][layout] center align - horizontally  */

._column.--horizontal-align-center {
    align-items: center;
}

._row.--horizontal-align-center {
    justify-content: center;
}

/* #endregion  */

/* #region [global][layout] center align - vertically  */

._column.--vertical-align-center {
    justify-content: center;
}

._row.--vertical-align-center {
    align-items: center;
}

/* #endregion  */

/* #region [global][layout] flex gap */

.--gap10 {
    gap: 10px;
}

.--gap20 {
    gap: 20px;
}

.--gap30 {
    gap: 30px;
}

.--gap40 {
    gap: 40px;
}

.--gap60 {
    gap: 60px;
}

/* #endregion */

/* #region [global][images] */

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

img.--contain {
    object-fit: contain;
}

/* #endregion  */

/* #region [global][component] list unstyled */

ul.--list-no-style {
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
}

/* #endregion /*

/* #region general */

body.logged-in .header
{
	margin-top: 32px;
}

/* #endregion  */

/* #region [global][component] card */

._card {
    border: 1px solid var(--primary-color-30);
    border-radius: var(--rounded-corner);
    padding: 20px;
}

/* #endregion */

/* #region [global][component] buttons defaults  */

._button a,
._button.distributor
{
    font-family: var(--secondary-font);
    text-transform: uppercase;
    font-size: 14px;
    padding: 6px 16px;
    text-align: center;
    color: white;
    text-decoration: none;
    transition-duration: var(--transition-duration-medium);
    display: inline-block;
    min-width: 140px;
}

._button.--dropshadow {
    box-shadow: var(--box-shadow);
}

._button:hover {

}

/* #endregion */

/* #region [global][component] button colors  */

._button.property-id-24 a,
._button.property-id-24
{
    background-color: var(--chasse-residency-90);
    border: 1px solid var(--chasse-residency-90);
}

._button.property-id-24 a:hover,
._button.property-id-24:hover

{
    background-color: var(--chasse-residency-100);
    border: 1px solid var(--chasse-residency-100);
    cursor: pointer;
}

._button.property-id-22 a,
._button.property-id-22
{
    background-color: var(--chasse-hotel-90);
    border: 1px solid var(--chasse-hotel-90);
}

._button.property-id-22 a:hover,
._button.property-id-22:hover
{
    background-color: var(--chasse-hotel-100);
    border: 1px solid var(--chasse-hotel-100);
    cursor: pointer;
}

/* #endregion */

/* #region [global][component] buttons secondary  */

.--secondary-button._button a {
    background-color: white!important;
}

.--secondary-button._button.property-id-22 a
{
    color: var(--chasse-hotel-90);
}

.--secondary-button._button.property-id-22 a:hover
{   
    
    border: 1px solid var(--chasse-hotel-100);
    color: var(--chasse-hotel-100);
    background-color: var(--chasse-hotel-20)!important;
}

.--secondary-button._button.property-id-24 a
{
    color: var(--chasse-residency-90);
}

.--secondary-button._button.property-id-24 a:hover
{   
    border: 1px solid var(--chasse-residency-100);
    color: var(--chasse-residency-100);
    background-color: var(--chasse-residency-20)!important;
}


/* #endregion  */

/* #region [global][component] buttons material icons */

.--icon a:after,
.--icon.distributor:after
{
    font-family: 'Material Symbols Outlined';
    font-size: 20px;
    line-height: 1;
    font-style: normal;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    text-transform: none;
    word-wrap: normal;
    margin-block: 0;
    margin-inline: 4px 0;
    vertical-align: text-bottom;

}

.--open-in-new a:after,
.--open-in-new.distributor:after
{
    content: "open_in_new"
}



/* #endregion */

/* #region [global][component] next and previous buttons */

.next-button,
.previous-button
{
    background-color: var(--primary-color-100);
    width: 40px;
    height: 40px;
    border-radius: 40px;
    box-shadow: var(--box-shadow);
    top: 50%;	
}
	

.next-button:hover,
.previous-button:hover		
{
    cursor: pointer;
}
	
.next-button:before,
.previous-button:before	
{
    color: white;
    font-size: 30px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;	
    line-height: 30px;
    width: 100%;
    height: 100%;
}
	
.previous-button:before {
    content: "\f104";
}

.next-button:before {
  content: "\f105";
}

/* #endregion  */

/* #region [global][component] slick dots */

.slick-dots {
    position: absolute;
    width: 100%;
    bottom: -20px;
    display: flex;
    gap: 10px;
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;    
}

.slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: var(--chasse-neutral-100);
    text-indent: -9999px;
}

.slick-dots button:hover {
    cursor: pointer;
}

/* #endregion */

/* #region [front-page & property-pages][intro section] */

.property-intro {
    display: flex;
    border: 1px solid var(--chasse-neutral-90);
    margin-top: 80px!important;
    margin-bottom: 90px!important;
    background-color: white;
    padding: 60px 0;
    z-index: 1;
}

.page-id-6 .property-intro {
    border-color: var(--chasse-hotel-30);
}

.page-id-8 .property-intro {
    border-color: var(--chasse-residency-30);
}

.property-intro__main-column {
    flex-basis: 100%;
    border-right: 1px solid var(--chasse-neutral-90);
    padding: 0 60px;
}

.property-intro__main-column h1,
.property-intro__main-column h2,
p
{
    margin-top: 0;
    margin-bottom: 16px;
}

.page-id-6 .property-intro__main-column {
    border-right-color: var(--chasse-hotel-30);
}

.page-id-8 .property-intro__main-column {
    border-right-color: var(--chasse-residency-30);
}

h2.property-intro__sign-off {
    margin-top: 20px;
    color: var(--chasse-neutral-160);
    font-family: var(--script-font);
    font-size: 48px;
}

.page-id-6 .property-intro__sign-off {
    color: var(--chasse-hotel-100);
}

.page-id-8 .property-intro__sign-off {
    color: var(--chasse-residency-100);
}

.property-intro__side-column {
    width: 30%;
    flex-shrink: 0;
    padding: 20px 20px 0 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.page-id-6 .property-intro__side-column,
.page-id-8 .property-intro__side-column
{
    align-items: flex-start;
}


.property-intro__feature {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.property-intro__feature:first-child{
    width: 100%;
}

.property-intro__feature-image {
    width: 100px;
    height: 100px;
    /*
    border-radius: 100%;
    border: 1px solid var(--chasse-neutral-90);
    */
    overflow: hidden;
}

.property-intro__feature-label {
    font-size: 12px;;
    line-height: 1.4em;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-intro__background {
    max-height: 500px;
    margin-top: -150px;
    justify-content: space-between;
    align-items: flex-end;
    overflow: visible;
    /*
    background-image: url('/wp-content/uploads/2023/07/91250-Converted.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    */
}

.left-background,
.right-background {
    background-repeat: no-repeat;
    background-size: 90%;
    opacity: 0.7;
    filter: grayscale(100%);    
}

.left-background {
    background-position: left bottom;

}

.right-background {
    background-position: right bottom; 
}

@media(max-width: 1024px){

    .property-intro {
        margin-left: -10px;
        margin-right: -10px;
        margin-top: 20px!important;
        padding: 30px 0;
    }

    .property-intro__main-column {
        padding: 0 30px;
    }

    .property-intro__side-column {
        padding: 0 10px;
    }

    .property-intro__feature-image {
        width: 80px;
        height: 80px;
    }

    .property-intro__background {
        margin-top: -150px;
        min-height: 380px;
    }
    
}

@media(max-width: 767px){

    .property-intro{
        flex-direction: column-reverse;
        padding: 30px 20px;
    }

    .property-intro__main-column {
        border-right-width: 0;
        border-top: 1px solid var(--chasse-neutral-90);
        padding: 30px 0;
    }

    .property-intro__side-column {
        width: 100%;
        padding: 30px 0;
    }


}

/* #endregion */

/* #region [front-page] section-1 */

.section-1 {

}

.property-row 
{
    padding: 120px 0;
    position: relative;
}

.property-card__background {
    opacity: 0.05;
    z-index: -1;
}

.section-1 .property-row:nth-child(odd) .property-card__background {
    left: 25%;
    transform: translateX(50%);
}

.section-1 .property-row:nth-child(even) .property-card__background {
    right: 25%;
    transform: translateX(-50%);
}


.section-1 .property-row:nth-child(odd) .property-card {
    margin-left: 60px;
}

.section-1 .property-row:nth-child(even) .property-card {
    flex-direction: row-reverse;
    margin-right: 60px;
}

.property-card__container {
    gap: 60px;
}

.property-card {
    display: flex;
}

.property-card__image-column {
    width: 50%;
}

/* fix for equal height slides */
.property-card .slick-track
{
    display: flex !important;
}

.property-card .slick-slide
{
    height: inherit !important;
}

.property-card__gallery {
    position: relative;
}

/* gradient backgrounds */ 

.property-card__gallery:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
}

.property-id__22 .property-card__gallery:before {
    background: var(--chasse-hotel-40);
}

.property-id__24 .property-card__gallery:before {
    background: var(--chasse-residency-40);
}

.section-1 .property-row:nth-child(odd) .property-card__gallery:before {
    transform: translate(-40px, -40px);

}

.section-1 .property-row:nth-child(even) .property-card__gallery:before {
    transform: translate(40px, -40px);
}

.property-card__text-column {
    width: 50%;
    padding: 40px;
}

.property-card__logo-container {
    max-width: 160px;
   /* margin-left: -82px; */
}

.property-card__text-container {

    max-width: 400px;
    margin: auto;

}

.property-card__text-container p{
    margin: 4px;
}

.property-card__button-group {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.section-1 .property-row:nth-child(odd) .slick-dots {
    justify-content: flex-end;
}

.section-1 .slick-dots li.slick-active button {
    background-color: var(--chasse-neutral-160);
}

.section-1 .property-id__24 .slick-dots  button {
    background-color: var(--chasse-residency-40);
}

.section-1 .property-id__24 li.slick-active button {
    background-color: var(--chasse-residency-90);
}

.section-1 .property-id__22 .slick-dots  button {
    background-color: var(--chasse-hotel-40);
}

.section-1 .property-id__22 li.slick-active button {
    background-color: var(--chasse-hotel-90);
}


@media(max-width: 1024px){

    .property-row {
        padding-bottom: 0;
    }

    .property-card
    {
        flex-direction: column;
    }

    .section-1 .property-row:nth-child(even) .property-card {
        flex-direction: column;
    }

    .property-card__image-column,
    .property-card__text-column
    {
        width: 100%
    }

    .section-1 .property-row:nth-child(odd) .property-card .property-card__text-container {
        flex-direction: row-reverse;
    }

    .property-card__text-container{
        max-width: fit-content;
        margin-left: -40px;
        margin-right: -40px;
        display: flex;
    }

    .property-card__logo-container {
        min-width: 300px;
        height: fit-content;
        padding: 40px;
    }

}

@media(max-width: 767px) {

    .section-1 .property-row:first-child{
        margin-top: 80px;
    }

    .property-row {
        padding:  20px 10px;
    }

    .section-1 .property-row:nth-child(odd) .property-card,
    .section-1 .property-row:nth-child(even) .property-card
    {
        margin: 0;
    }

    .property-card__text-container {
        flex-direction: column!important;
    }

    .property-card__logo-container {
        min-width: auto;
        max-width: 50%;
        height: fit-content;
        padding: 0 ;
    }

    .section-1 .property-row:nth-child(odd) .property-card__gallery:before {
        transform: translate(-10px, -10px);
    }

    .section-1 .property-row:nth-child(even) .property-card__gallery:before {
        transform: translate(10px, -10px);
    }

    .property-card__button-group {
        flex-direction: column;
    }

    .property-card__button-group ._button a {
        width: 100%;
    }

}

/* #endregion */

/* #region [front-page] section-2 */

/* #endregion */

/* #region [global][component] section header */

.section-header {
    height: 200px;
}

.section-header__inner-container {
    min-width: 300px;
    margin: 0 auto;
    transform: translateY(calc(-100% + 40px));
}


.section-header__heading-container {
    position: relative;
    z-index: 2;
    background-color: white;
}

.section-header__heading-container:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--chasse-neutral-160);
    position: absolute;
    top: 40px; 
    left: 40px;
    z-index: -1;
}

.section-header__heading {
    margin: 0;
    margin: 60px 0;
    color: var(--chasse-neutral-160);
    text-transform: uppercase;
    font-weight: 400;
}

@media(max-width: 1024px){
    
    .section-header {
        height: 60px;
    }

}

@media(max-width: 767px) {

    .section-header__heading-container {
        margin-left: -20px;
    }

}



/* #endregion */

/* #region [global][footer] */

.footer {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
    padding: 30px 30px 20px 30px;
    margin: 40px auto 40px auto;
    background-color: white;
}

.footer__row {
    display: flex;
    gap: 40px;
    position: relative;
    width: 100%;
}

.footer__row:NOT(:first-child):before{
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--chasse-neutral-90);
    position: absolute;
    top: -20px;
}

.footer__column {
    position: relative;
    height: 100%;
    flex-basis: 100%;
}

.footer__column:NOT(:first-child):before{
    content: '';
    width: 1px;
    height: 100%;
    background-color: var(--chasse-neutral-90);
    position: absolute;
    left: -20px;
}

.footer__panel {
    gap: 20px;
}

.footer__image-column {
    width: 180px;
}

.footer__text-column {
    font-size: 14px;
    line-height: 1.5em;
}

.hotel-details.social-media-list {
    display: flex;
    gap: 10px;
}

.hotel-details.social-media-list li {
    width: 30px;
    height: 30px;
    border: 1px solid var(--chasse-neutral-90);
    border-radius: 100%;
}

.footer-bg {
    background-color: var(--chasse-neutral-90);
}

/* Chasse hotel residency */
.page-id-6 .footer-bg
{
    background-color: var(--chasse-hotel-20);
}

/* Chasse hotel residency */
.page-id-8 .footer-bg {
    background-color: var(--chasse-residency-20);
}

@media(max-width: 1024px){

    .footer {
        width: 100%;
    }


    .footer__row {
        flex-direction: column;
        width: 100%;
    }

    .footer__column:NOT(:first-child):before{
        width: 100%;
        height: 1px;
        top: -30px;
    }

}

@media(max-width: 768px){

    .footer__panel {
        flex-wrap: wrap;
        gap: 0;

    }

    .footer__column:NOT(:first-child):before{
        left: 0;
    }

    .footer___image-column {
        width: 60%;
    }

}

@media(max-width: 767px){

    .footer__column:NOT(:first-child):before{
        top: -20px;
    }

}


/* #endregion */

/* #region [page-347 Our History] */

.our-history {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.our-history__row {
    display: flex;
    flex-direction: row;
}

.our-history__row:nth-child(even) {
    flex-direction: row-reverse;
}


.our-history__image-column {
    margin: 40px 0 40px 40px;
    position: relative;
    z-index: 1;
    width: 50%;
}

.our-history__image-column ._square-container:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-40px, -40px);
    z-index: -1;
}

.our-history__row:nth-child(even) .our-history__image-column {
    margin: 40px 40px 40px 0;
}

.our-history__row:nth-child(even) ._square-container:after {
    transform: translate(40px, -40px);
}

/* 1 */
.our-history__row:nth-child(3n + 1) ._square-container:after {
    background-color: var(--chasse-neutral-120);
}

/* 2*/
.our-history__row:nth-child(3n + 2) ._square-container:after {
    background-color: var(--chasse-neutral-140);
}

/* 3*/
.our-history__row:nth-child(3n + 3) ._square-container:after {
    background-color: var(--chasse-hotel-50);
}

.our-history__image.--contain {
    height: 130%;
}

.our-history__text-column {
    width: 50%;
    padding: 40px;
}

.our-history__text-container {
    max-width: 400px;
    margin: auto;
}

.our-history__text-container p:last-child {
    margin-bottom: 0;
}

.our_history__final-row {
    position: relative;
    justify-content: space-between;
    margin-top: -200px;
    padding-top: 200px;
    z-index: -1
}

.our_history__final-row-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    max-width: 1130px;
    padding: 40px;
    z-index: 1;
}

.our_history__final-row-text p:last-child {
    margin-bottom: 0;
}

.our_history__final-row-text:before,
.our_history__final-row-text:after
{
    content: '';
    background-color: var(--chasse-hotel-90);
    position: absolute;
}

.our_history__final-row-text:before {
    width: 10px;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(-10px, 10px);
}

.our_history__final-row-text:after {
    width: 25%;
    height: 10px;
    bottom: 0;
    left: 0;
    transform: translate(-10px, 10px);
}

@media(max-width: 1024px){

    .our-history {
        gap: 60px;
    }

    .our_history__final-row {
        margin-top: -100px;
    }

}

@media(max-width: 767px){

    .our-history {
        padding: 40px 0;
    }

    .our-history__row {
        flex-direction: column;
    }

    .our-history__row:nth-child(even) {
        flex-direction: column;
    }

    .our-history__image-column {
        width: 100%;
    }

    .our-history__text-column {
        width: 100%;
        padding: 0;
    }

    .our_history__final-row {
        margin-top: 0;
        padding: 40px 20px;
    }

    .our_history__final-row ._column:nth-child(1),
    .our_history__final-row ._column:nth-child(3)    
    {
        display: none;
    }


    .our_history__final-row-text {
        position: static;
        width: 100%;
        padding: 20px;
        transform: translate(0, 0);
    }

}

/* #endregion */


