/* @group Site nav
------------------------------------ */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--beige);
	width: 100%;
	height: 6.5rem;
	z-index: 11;
	opacity: 0;
	transition: transform 0.7s ease, opacity 0.7s ease;
}

.site-nav .row {
	height: 6.5rem;
}
.site-nav .main-logo {
	display: inline-block;
}
.site-nav .main-logo img {
	display: inline-block;
	width: 20rem;
	height: auto;
}
/* Burguer menu */
.site-nav .burguer-bttn {
	position: relative;
	cursor: pointer;
	font-size: 0;
    border-radius: 0;
}
.site-nav .burguer-bttn i {
	font-size: 2.5rem;
	display: inline-block;
	pointer-events: none;
	color: var(--light-green);
}

@media only screen and (min-width: 961px) {
	.site-nav {
		background-color: var(--beige);
		width: 8rem;
		height: 100%;
	}
	.site-nav .row {
		height: 100%;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
	}
	.site-nav .col-left,
	.site-nav .col-right,
	.col-social-media {
		text-align: center;
	}
	.site-nav .col-left,
	.col-social-media {
		padding: 3rem 0;
	}
	.col-social-media {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		row-gap: 3rem;
	}
	.site-nav .col-right {
		position: absolute;
		top: 35.5vh;
		left: 0;
		z-index: 2;
	}
	.site-nav .main-logo img {
		display: inline-block;
		width: auto;
		height: 23vh;
	}
	.site-nav .col-social-media li {
		font-size: 1.7vh;
	}
	.site-nav .col-social-media .eho-end {
		font-size: 2.2vh;
	}
	.site-nav .col-social-media i {
		font-size: inherit;
		color: var(--light-green);
	}

	/* Burguer menu */
	.site-nav .burguer-bttn {
		width: 5rem;
		height: 3.5rem;
	}
	.site-nav .burguer-bttn i {
		font-size: 2.6vh;
		display: inline-block;
	}

	/* Hovers */
	.site-nav .col-social-media a:hover {
		opacity: 0.7;
	}
}
@media only screen and (min-width: 961px) and (max-width: 1440px) {
}
@media only screen and (min-width: 0) and (max-width: 960px) {
	.site-nav {
		border-bottom: 0.1rem solid var(--spanish-moss);
	}
	.site-nav .col-left,
	.site-nav .col-right {
		box-sizing: content-box;
		padding: 0 3rem;
	}
	.site-nav .col-left {
		flex: 0 1 3.3rem;
		max-width: 3.3rem;
		text-align: center;
	}
	.site-nav .col-right {
		order: -1;
		flex: 1;
	}
}

/* @end */

/* @group Fixed Menu
------------------------------------ */
.fixed-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	background-color: #5b7282;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transition: transform 0.7s ease, opacity 0.7s ease;
}
.fixed-menu::before {
	content: '';
	inset: 0;
	background: url('../../img/layout/frontpage/update/bg-soar-amenities.jpg');
	opacity: 1;
	position: absolute;
	pointer-events: none;
	z-index: 0;
}
.fixed-menu .menu {
	margin: 10.5rem 0 4.2rem;
}
.fixed-menu .menu li {
	font-size: unset;
	line-height: unset;
	margin-bottom: 2.3rem;
}
.fixed-menu .menu li a {
	font-family: var(--playfair-font);
	color: var(--beige);
	font-weight: 700;
	font-size: 3.5em;
    letter-spacing: normal;
	line-height: normal;
}
.fixed-menu .bttns-options a {
    letter-spacing: 0.176em;
}
.fixed-menu .bttns-options li {
	font-size: unset;
}
.fixed-menu .bttns-options li:not(:last-child) a {
	margin-bottom: 2.5rem;
}
.fixed-menu .description {
	background-color: var(--dark-blue);
	position: relative;
	text-align: center;
	padding: 4rem 2rem 4rem 2rem;
}
.fixed-menu .description::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: -13.7rem;
	left: 0;
	width: 100%;
	height: 14.7rem;
	background-image: url(../../img/layout/fixed-menu/shape-aside-mobile.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
	position: absolute;
	z-index: 0;
	pointer-events: none;
}
.fixed-menu figcaption h3,
.fixed-menu figcaption p {
	color: var(--beige);
}
.fixed-menu figcaption h3 {
	font-family: var(--playfair-font);
	font-size: 3em;
	line-height: normal;
	font-weight: 700;
	letter-spacing: normal;
	margin-bottom: 2rem;
}
.fixed-menu figcaption p {
	font-size: 1.6em;
	line-height: 1.3em;
	letter-spacing: 0.125em;
	margin: 0 0 3.6rem;
}
.fixed-menu .bttn-container {
	text-align: right;
}
.fixed-menu .see-more {
	font-family: var(--rubric-font);
	font-size: 1.7em;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.17em;
	text-transform: uppercase;
	color: var(--beige);
}
.fixed-menu .see-more i {
	color: var(--beige);
	margin-left: 2.1rem;
}
@media only screen and (min-width: 961px) {
	.fixed-menu {
		height: 100%;
		overflow: hidden;
		opacity: 0.999 !important;
		isolation: isolate;
		display: flex;
		flex-direction: column;
		min-height: 0;
	}

	.fixed-menu .row {
		max-width: 100%;
		flex: 1 1 auto;
		min-height: 0;
		flex-wrap: nowrap;
		align-items: stretch;
		position: relative;
		z-index: 1;
	}
	.fixed-menu .col-left {
		flex: 1;
		margin-left: calc(8rem + 10vh);
		min-height: 0;
		max-height: 100%;
		overflow-y: auto;
		overflow-x: hidden;
		z-index: 99;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
		scrollbar-color: rgba(251, 248, 239, 0.42) transparent;
	}
	.fixed-menu .col-left::-webkit-scrollbar {
		width: 4px;
	}
	.fixed-menu .col-left::-webkit-scrollbar-track {
		background: transparent;
	}
	.fixed-menu .col-left::-webkit-scrollbar-thumb {
		background-color: rgba(251, 248, 239, 0.48);
		border-radius: 100px;
	}
	.fixed-menu .col-left::-webkit-scrollbar-thumb:hover {
		background-color: rgba(251, 248, 239, 0.72);
	}
	.fixed-menu .col-right {
		flex: 0 1 58.1rem;
		height: 100%;
	}
	.fixed-menu .menu {
		margin: 16.2vh 0 5.6vh;
	}
	.fixed-menu .menu li:not(:last-child) {
		margin-bottom: 4.47vh;
	}
	.fixed-menu .menu li a {
		font-size: 5vh;
		line-height: normal;
		letter-spacing: 0.003em;
		text-transform: capitalize;
	}
	.fixed-menu .bttns-options a {
		width: 15.1rem;
		padding: 0;
	}
	.fixed-menu .bttns-options a {
		height: 4.11vh;
		font-size: 1.43vh;
		width: 20vh;
		padding-top: .35rem;
	}
	.fixed-menu .bttns-options a:first-child {
		margin-bottom: 3.13vh;
	}
	.fixed-menu .description {
		height: 100%;
		padding: 4.47vh 8.68rem 0 7.16vh;
        padding-inline: 20vh;
	}
	.fixed-menu .description::before {
		background-image: url('../../img/layout/frontpage/update/square-fixed-top.svg');
		left: -26vh;
		width: 26vh;
		height: 35vh;
		top: 0;
		position: absolute;
		z-index: 1;
		background-position: top right;
		background-size: contain;
		background-repeat: no-repeat;
	}
	.fixed-menu .description::after {
		content: '';
		background-image: url('../../img/layout/frontpage/update/square-fixed-bot.svg');
		left: -17.7vh;
		width: 17.9vh;
		height: 26.5vh;
		bottom: 0;
		position: absolute;
		z-index: 1;
		background-position: bottom right;
		background-size: contain;
		background-repeat: no-repeat;
	}
	.fixed-menu .description figure {
		overflow: visible;
		height: 75vh;
		width: 61.5vh;
	}
	.fixed-menu .description figure img {
		position: relative;
		z-index: 2;
	}
	.fixed-menu .description figure::after {
		content: '';
		display: inline-block;
		position: absolute;
		top: 1.7vh;
		left: 1.8vh;
		width: 100%;
		height: 100%;
		background-image: url('../../img/layout/frontpage/update/intro-bg.jpg');
		background-repeat: no-repeat;
		background-size: cover;
		position: absolute;
		z-index: 1;
		pointer-events: none;
	}
	.fixed-menu figcaption::before {
        content: "";
        display: block;
        position: absolute;
        height: 42.4rem;
        width: 100%;
        bottom: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.70) 81.25%);
		left: 0;
		z-index: -1;
    }
	.fixed-menu figcaption {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 3;
		text-align: left;
		padding: 7.4vh 3.5vh;
	}
	.fixed-menu figcaption h3 {
		font-size: 5.8vh;
		margin-bottom: 0.89vh;
		max-width: 40vh;
	}
	.fixed-menu figcaption p {
		font-size: 1.7vh;
		line-height: 1.3em;
		max-width: 40vh;
		margin: 0;
	}
	.fixed-menu .bttn-container {
		position: absolute;
		width: 100%;
		bottom: -14vh;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
	}
	.fixed-menu .see-more {
		font-size: 1.6vh;
		letter-spacing: 0.16em;
		line-height: normal;
		text-transform: uppercase;
		color: #704933;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		width: 17.9vh;
		height: 17.9vh;
		border-radius: 100%;
		background-color: var(--beige);
	}
	.fixed-menu .see-more i {
		position: absolute;
		top: 50%;
		translate: 0 -50%;
		right: -1.8vh;
		color: var(--beige);
		font-size: 3.3vh;
	}
	/* Hovers */
	.fixed-menu .menu li a:hover {
		opacity: 0.7;
	}
	.fixed-menu .see-more:hover {
		background-color: var(--rust);
		color: var(--beige);
		border: 0.1rem solid var(--beige);
	}
}
@media only screen and (min-width: 961px) and (max-width: 1440px) {
}
@media only screen and (min-width: 0) and (max-width: 960px) {
	.fixed-menu > .row.top {
		height: 100%;
		align-content: space-between;
	}
	.fixed-menu .col-left {
		padding: 0 0 13.5rem 3rem;
	}
	.fixed-menu .col-right {
		padding: 0;
	}
	.fixed-menu .col-left,
	.fixed-menu .col-right {
		flex: 0 1 100%;
		max-width: 100%;
	}
	.fixed-menu .bttns-options li a {
		width: auto;
		height: auto;
		border: none;
		padding: 0;
		letter-spacing: 0.176em;
	}

	.fixed-menu .description img {
		display: none;
	}
	.fixed-menu .bttns-options .bttn {
		background: none;
	}
}

/* @end */

/* Animations */
[data-menu='open'] .site-nav .burguer-bttn i::before {
	content: '\e907';
}
@media only screen and (min-width: 961px) {
	[data-menu='closed'] .fixed-menu {
		transform: translate3d(-100%, 0, 0);
	}
	[data-menu='open'] .fixed-menu {
		opacity: 1;
		visibility: visible;
		transform: translate3d(0, 0, 0);
	}
}
@media only screen and (min-width: 0) and (max-width: 960px) {
	.fixed-menu {
		transform: translate3d(0, -100%, 0);
	}
	[data-menu='open'] .fixed-menu {
		opacity: 1;
		visibility: visible;
		transform: translate3d(0, 0, 0);
	}
}
