/*!
Theme Name: fiftysevenocean
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: fiftysevenocean
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

fiftysevenocean is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
@font-face {
  font-family: 'Aaux Pro';
  font-display: swap;
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/aauxpro-bold-webfont.woff2") format("woff2"), url("../fonts/aauxpro-bold-webfont.woff") format("woff");
}

@font-face {
  font-family: 'Aaux Pro';
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/aauxpro-regular-webfont.woff2") format("woff2"), url("../fonts/aauxpro-regular-webfont.woff") format("woff");
}

@font-face {
  font-family: 'Aaux Pro';
  font-display: swap;
  font-weight: 100;
  font-style: normal;
  src: url("../fonts/aauxpro-thin-webfont.woff2") format("woff2"), url("../fonts/aauxpro-thin-webfont.woff") format("woff");
}

@font-face {
  font-family: 'Aaux Pro';
  font-display: swap;
  font-weight: 100;
  font-style: italic;
  src: url("../fonts/aauxpro-thinitalic-webfont.woff2") format("woff2"), url("../fonts/aauxpro-thinitalic-webfont.woff") format("woff");
}

@font-face {
  font-family: 'Saol Display';
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/SaolDisplay-Regular.woff2") format("woff2"), url("../fonts/SaolDisplay-Regular.woff") format("woff");
}

@font-face {
  font-family: 'Saol Display';
  font-display: swap;
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/SaolDisplay-RegularItalic.woff2") format("woff2"), url("../fonts/SaolDisplay-RegularItalic.woff") format("woff");
}

@font-face {
  font-family: 'Saol Display';
  font-display: swap;
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/SaolDisplay-Medium.woff2") format("woff2"), url("../fonts/SaolDisplay-Medium.woff") format("woff");
}

@font-face {
  font-family: 'Saol Display';
  font-display: swap;
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/SaolDisplay-Semibold.woff2") format("woff2"), url("../fonts/SaolDisplay-Semibold.woff") format("woff");
}

@font-face {
  font-family: 'icomoon';
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/icomoon.ttf?6jh8dr") format("truetype"), url("../fonts/icomoon.woff?6jh8dr") format("woff"), url("../fonts/icomoon.svg?6jh8dr#icomoon") format("svg");
}

/* line 74, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_font.scss */
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  pointer-events: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 88, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_font.scss */
.icon-facebook:before {
  content: "\f09a";
}

/* line 91, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_font.scss */
.icon-facebook-f:before {
  content: "\f09a";
}

/* line 94, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_font.scss */
.icon-instagram:before {
  content: "\f16d";
}

/* line 97, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_font.scss */
.icon-vimeo:before {
  content: "\f27d";
}

/*
	Margin / Padding Quick Resets
	example: top & bottom margin set to $spacing-unit
	.element {
		@include push--ends;
	}
	example: left & right padding set to $spacing-unit--small
	.element {
		@include soft--sides($spacing-unit--small);
	}
*/
/*
	Retina images
	example:
	.element {
		@include retina {
			background-image: url(../img/background@2x.png);
		}
	}
*/
/*
	Hide text
	example:
	.element {
		@include hide-text;
	}
*/
/*
	Responsive ratio
	Used for creating scalable elements that maintain the same ratio
	example:
	.element {
		@include responsive-ratio(400, 300);
	}
*/
/*
	Typography
	Text image replacement, with responsive ratio
	HTML:
	<h1 class="element">
		<span>Text to replace</span>
	</h1>
	example:
	.element {
		@include typography(200, 50, 'hello-world');
	}
*/
/*
	Icon
	For using fontastic icons in pseudo elements
*/
/*
	Fluid Property
	http://www.adrenalinmedia.com.au/the-agency/insights/this-changes-everything-css-fluid-properties.aspx
	HTML:
	<h1 class="element">
		<span>Text to replace</span>
	</h1>
	example:
	h1 {
		@include fp(font-size, 50, 100); // 50px at 320, 100px at 1920;
	}
	output:
	h1 {
		font-size: calc(3.125vw + 40px); //This is the magic!
	}
	@media (max-width:320px){ //Clips the start to the min value
		font-size:50px;
	}
	@media (min-width:1920px){ //Clips the end to the max value
		font-size:100px;
	}
*/
/*
	Misc
*/
/* Usage Examples
    .my-level-1-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 48px;
        margin: 0 0 0 16px;
    }

    .my-level-2-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 32px; // Don't need to change any settings, will work with any font size automatically
        margin: 0 0 0 16px;
    }

    .my-body-copy-class {
        @include text-crop($line-height: 2); // Larger line height desired, set the line height via the mixin
        font-size: 16px;
    }

    // Sometimes depending on the font-size, the rendering, the browser, etc. you may need to tweak the output.
    // You can adjust the top and bottom cropping when invoking the component using the $top-adjustment and $bottom-adjustment settings

    .slight-adjustment-needed {
        @include text-crop($top-adjustment: -0.5px, $bottom-adjustment: 2px);
        font-size: 17px;
    }

    .dont-do-this {
        @include text-crop;
        font-size: 16px;
        line-height: 3; // DO NOT set line height outside of the mixin, the mixin needs the line height value to calculate the crop correctly
    }
*/
/* line 19, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

/* line 20, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/* line 21, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
audio:not([controls]) {
  display: none;
}

/* line 23, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
* {
  margin: 0;
  padding: 0;
}

/* line 24, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
*, *:after, *:before {
  box-sizing: border-box;
  font-kerning: auto;
  font-variant-ligatures: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  font-smooth: always;
}

/* line 36, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* line 37, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
html, button, input, select, textarea {
  font-family: sans-serif;
  color: #222;
}

/* line 38, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
body {
  margin: 0;
  font-size: 1em;
  line-height: 1.4;
}

/* line 39, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym,
address, cite, code, del, dfn, em, img, ins, kbd, q, samp, strong, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label,
legend, table, caption, tbody, tfoot, thead, tr, th, td, figure {
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

/* line 47, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 48, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
td {
  vertical-align: top;
}

/* line 49, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
.floatLeft {
  float: left;
}

/* line 52, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
.floatRight {
  float: right;
}

/* line 55, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
a img, img {
  border: none;
}

/* line 58, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
img {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* line 63, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 64, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
td {
  vertical-align: top;
}

/* line 65, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
.floatLeft {
  float: left;
}

/* line 68, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
.floatRight {
  float: right;
}

/* line 71, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
.textCenter {
  text-align: center;
}

/* line 74, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
html {
  position: relative;
  font-family: "Aaux Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  overflow-x: hidden;
}

@media only screen and (max-width: 1024px) {
  /* line 74, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
  html {
    font-size: 15px;
  }
}

@media only screen and (max-width: 768px) {
  /* line 74, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
  html {
    font-size: 14px;
  }
}

/* line 103, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
.wrapper {
  width: 1222px;
  max-width: 89.327485380117%;
  margin: 0 auto;
  position: relative;
}

/* line 109, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
p {
  color: #6c6560;
  font-family: "Aaux Pro";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.57143;
  margin-bottom: 1.57143em;
  letter-spacing: normal;
}

/* line 117, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
p:last-of-type {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  /* line 109, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
  p {
    font-size: 1.0625rem;
  }
}

/* line 123, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
p a {
  color: inherit;
  text-decoration: underline;
}

/* line 129, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
::-moz-selection {
  background-color: #004a5a !important;
  color: #ebecec;
}

/* line 130, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
::selection {
  background-color: #004a5a !important;
  color: #ebecec;
}

/* line 132, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
a, a:after, a:before,
button, button:after, button:before,
input[type=submit] {
  outline: none;
  text-decoration: none;
  -webkit-text-underline-position: under;
  -ms-text-underline-position: below;
  text-underline-position: under;
  transition: all 0.3s ease-out;
}

/* line 142, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
a[href*=tel] {
  color: inherit;
}

/* line 145, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
.currentLink {
  cursor: default;
}

/* line 149, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 150, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
blockquote {
  margin: 1rem 2rem;
}

/* line 151, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
dfn {
  font-style: italic;
}

/* line 152, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/* line 153, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}

/* line 154, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* line 155, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
pre, code, kbd, samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

/* line 156, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* line 157, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
q {
  quotes: none;
}

/* line 158, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
q:before, q:after {
  content: "";
  content: none;
}

/* line 159, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
small {
  font-size: 85%;
}

/* line 160, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 161, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
sup {
  top: -0.5em;
}

/* line 162, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
sub {
  bottom: -0.25em;
}

/* line 163, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
h1, h2, h3, h4, h5, h6, strong {
  font-weight: normal;
}

/* line 166, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
.alignCenter {
  text-align: center;
}

/* line 169, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
.alignRight {
  text-align: right;
}

/* line 172, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
.alignLeft {
  text-align: left;
}

/* line 175, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
.textHide {
  font: 0/0;
}

/* line 178, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
figure.anim {
  position: relative;
  overflow: hidden;
}

/* line 181, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
figure.anim img {
  opacity: 0;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: none;
  transition: none;
}

/* line 190, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
figure.anim.active img {
  opacity: 1;
  -webkit-transform: scale(1) translate(0, 0);
  -ms-transform: scale(1) translate(0, 0);
  transform: scale(1) translate(0, 0);
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 15s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 15s cubic-bezier(0.19, 1, 0.22, 1);
}

/* line 201, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-image: none;
}

/* line 202, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resettop.scss */
dd {
  margin: 0;
}

/* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.scroll_indctr {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 93.6vh 0 13px;
  transform: translateX(-50%);
  color: #fff;
  font-family: "Saol Display";
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1;
  opacity: 1;
  transition: opacity 0.5s 2.3s ease-out;
  z-index: 10;
  pointer-events: none;
}

/* line 19, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.scroll_indctr svg {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 33px;
}

/* line 27, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.scroll_indctr svg path {
  stroke: #fff;
  stroke-dasharray: 31;
  stroke-dashoffset: 62;
  animation: wave 2s linear infinite;
}

@media only screen and (max-width: 1024px) {
  /* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
  .scroll_indctr {
    display: none;
  }
  /* line 37, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
  .home-old .scroll_indctr {
    display: block;
  }
}

@keyframes wave {
  100% {
    stroke-dashoffset: 0;
  }
}

/* line 47, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.img_has_tag {
  position: relative;
}

/* line 49, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.img_has_tag div {
  margin-bottom: 0.5625rem;
}

/* line 52, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.img_has_tag .img_tag {
  margin-left: 0.875rem;
}

/* line 56, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.img_tag {
  color: #6c6560;
  font-family: "Aaux Pro";
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.9;
  text-transform: uppercase;
  letter-spacing: normal;
  position: relative;
}

/* line 66, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.img_tag:after {
  content: '';
  background: url(../images/wave_svg.svg) 0 0 no-repeat;
  width: 1.16667em;
  height: 0.25em;
  display: block;
}

/* line 76, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.img_tag.img_tag_right {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 0;
  margin-right: 12px;
  margin-left: 0;
}

/* line 77, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.img_tag.img_tag_right:after {
  display: none;
}

/* line 85, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.img_tag.img_tag_right span {
  position: relative;
  padding-bottom: 3px;
}

/* line 88, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.img_tag.img_tag_right span:after {
  content: '';
  background: url(../images/wave_svg.svg) 0 0 no-repeat;
  width: 14px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 768px) {
  /* line 56, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
  .img_tag {
    font-size: 0.8125rem;
  }
}

@media only screen and (max-width: 767px) {
  /* line 56, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
  .img_tag {
    font-size: 0.875rem;
  }
}

/* line 112, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.device_desktop .anim_img div {
  position: relative;
  overflow: hidden;
}

/* line 117, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.device_desktop .anim_img div:after {
  content: '';
  position: absolute;
  top: -5%;
  left: 0;
  width: 100%;
  height: 103%;
  background-color: #eeebe7;
  z-index: 10;
  transform: scale(1.12);
  transition: transform 1s cubic-bezier(0.475, 0.425, 0, 0.995);
  transform-origin: top;
}

/* line 133, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.device_desktop .anim_img img {
  position: relative;
  z-index: 5;
  transform: translate3d(0, 10%, 0px) scale(1.3);
  transition: transform 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform-origin: center;
}

/* line 143, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.device_desktop .anim_img.animate div:after {
  transform: scaleY(0);
}

/* line 147, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.device_desktop .anim_img.animate img {
  transform: translate3d(0, 0, 0px) scale(1);
}

/* line 154, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider {
  position: relative;
  width: 100%;
}

/* line 157, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .js_slide,
.js_slider .js_slide_mask {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  will-change: transform;
  backface-visibility: hidden;
  z-index: 5;
}

/* line 172, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .js_slide_src {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* line 185, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .img_tag {
  position: absolute;
  bottom: 0;
  left: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}

/* line 194, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .js_slide.is-active .img_tag {
  opacity: 1;
  visibility: visible;
}

/* line 200, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .js_slider_btn {
  position: absolute;
  top: 50%;
  width: 18.33935vw;
  height: 18.33935vw;
  margin-top: -9.16968vw;
  border-radius: 18.33935vw;
  font-size: 0;
  z-index: 10;
  transform-origin: center;
  transition-property: opacity, visibility, pointer-events;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
}

/* line 217, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .js_slider_btn span {
  display: none;
}

/* line 228, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .js_slider_btn .btn_mt_svg {
  display: block;
  width: 100%;
  position: static;
}

/* line 232, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .js_slider_btn .btn_mt_svg .btn_mt_circle {
  fill: none;
  stroke: #f8e6d5;
  stroke-width: 2;
}

@media only screen and (max-width: 768px) {
  /* line 232, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
  .js_slider .js_slider_btn .btn_mt_svg .btn_mt_circle {
    stroke-width: 4;
    transform: scale(0.9);
    transform-origin: center;
  }
}

@media only screen and (max-width: 767px) {
  /* line 232, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
  .js_slider .js_slider_btn .btn_mt_svg .btn_mt_circle {
    stroke-width: 6;
  }
}

/* line 245, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .js_slider_btn .btn_mt_svg .btn_mt_arrow {
  fill: #fff;
}

@media only screen and (max-width: 768px) {
  /* line 245, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
  .js_slider .js_slider_btn .btn_mt_svg .btn_mt_arrow {
    transform: scale(1.5);
    transform-origin: center;
  }
}

/* line 255, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .js_slider_btn.to_animate .btn_mt_svg .btn_mt_circle {
  stroke-dasharray: 791;
  stroke-dashoffset: 791;
}

/* line 259, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .js_slider_btn.to_animate .btn_mt_svg .btn_mt_arrow {
  opacity: 0;
}

/* line 266, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .js_slider_btn.animate .btn_mt_svg .btn_mt_circle {
  stroke-dashoffset: 0;
  transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 270, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .js_slider_btn.animate .btn_mt_svg .btn_mt_arrow {
  opacity: 1;
  transition: opacity 0.5s 1s ease-out;
}

/* line 276, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .js_slider_btn.prev_btn {
  left: -2.59928vw;
}

/* line 284, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .js_slider_btn.next_btn {
  right: -2.59928vw;
}

/* line 292, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.js_slider .js_slider_btn.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0s;
}

/* line 305, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.section_nav {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1998;
  display: none;
}

/* line 312, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.section_nav li {
  display: block;
  display: flex;
  justify-content: flex-end;
}

/* line 319, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.section_nav a {
  padding: 7px 0;
  padding: 0;
  display: block;
  color: #fff;
  font-family: "Aaux Pro";
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 2px;
  padding: 7px 0;
}

/* line 341, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.section_nav a:after {
  content: '';
  width: 100%;
  width: 16px;
  height: 2px;
  background-color: #fff;
  display: block;
  transform: scaleX(0.36);
  transform: scaleX(1);
  transition: all 0.3s ease-out;
  transform-origin: right center;
  margin-left: 1.6em;
}

/* line 354, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.section_nav a span {
  position: absolute;
  top: -50%;
  top: 0;
  left: -1em;
  letter-spacing: 5px;
  text-align: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg) translateY(50%);
  transform-origin: center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

/* line 371, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.section_nav a:hover:after, .section_nav a:active:after {
  width: 44px;
}

/* line 375, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.section_nav a:hover span, .section_nav a:active span {
  opacity: 1;
}

/* line 382, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.section_nav li.active a:after {
  width: 44px;
}

/* line 386, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.section_nav li.active a span {
  opacity: 1;
}

/* line 392, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.is_dark .section_nav a {
  color: #afafaf;
}

/* line 394, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.is_dark .section_nav a:after {
  background-color: #afafaf;
}

/* line 401, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.neighborhood .section_nav a span {
  left: -2em;
}

/* line 408, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.btn_mt_svg {
  width: 254px;
  display: block;
  z-index: 5;
}

/* line 412, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.btn_mt_svg .btn_mt_circle {
  stroke: #f7f3ef;
  stroke-width: 2;
  fill: none;
}

/* line 417, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.btn_mt_svg .btn_mt_arrow {
  fill: #ddd7d0;
}

/* line 421, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.btn_mt_svg.to_animate .btn_mt_circle {
  stroke-dasharray: 791;
  stroke-dashoffset: 791;
}

@media only screen and (max-width: 768px) {
  /* line 421, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
  .btn_mt_svg.to_animate .btn_mt_circle {
    stroke-width: 4;
    transform: scale(0.9);
    transform-origin: center;
  }
}

@media only screen and (max-width: 767px) {
  /* line 421, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
  .btn_mt_svg.to_animate .btn_mt_circle {
    stroke-width: 6;
  }
}

/* line 433, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.btn_mt_svg.to_animate .btn_mt_arrow {
  opacity: 0;
}

/* line 438, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.btn_mt_svg.animate .btn_mt_circle {
  stroke-dashoffset: 0;
  transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 442, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.btn_mt_svg.animate .btn_mt_arrow {
  opacity: 1;
  transition: opacity 0.5s 1s ease-out;
}

/* line 448, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.link_mt {
  transition: none;
}

/* line 450, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.link_mt span {
  position: relative;
  z-index: 10;
}

/* line 454, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.link_mt .btn_mt_svg {
  pointer-events: none;
}

/* line 458, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.accordion {
  display: block;
  width: 275px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

/* line 464, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.accordion .panel {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0 auto 6px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

/* line 472, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.accordion .panel * {
  color: #fff;
  font-family: "Aaux Pro";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.57143;
  letter-spacing: 0.04em;
}

/* line 482, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.accordion .panel.closed .panel_header:after {
  content: '+';
}

/* line 489, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.accordion .panel:last-child .panel_header:after {
  display: none;
}

/* line 495, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.accordion .panel_header {
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.04em;
  user-select: none;
}

/* line 503, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.accordion .panel_header span {
  letter-spacing: 0.015em;
}

/* line 506, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.accordion .panel_header:after {
  content: '\2013';
  font-weight: 100;
  font-size: 2em;
  line-height: 0.5;
  float: right;
}

/* line 514, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.accordion .panel_content {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-right: 6px;
}

/* line 520, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.accordion .panel_content .wrp {
  padding: 1.6em 0;
}

/* line 523, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.accordion .panel_content p {
  font-weight: 400;
  line-height: 1.57143;
  letter-spacing: normal;
}

/* line 532, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.next_page_link {
  position: relative;
  z-index: 20;
}

/* line 535, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.next_page_link a {
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 3.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  display: inline-block;
  position: relative;
}

/* line 546, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.next_page_link a span {
  display: block;
  position: relative;
  z-index: 10;
  pointer-events: none;
}

/* line 552, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.next_page_link a .btn_mt_svg {
  width: 5.08em;
  display: block;
  position: absolute;
  top: -3.22em;
  right: -1.3em;
}

@media only screen and (max-width: 1368px) {
  /* line 535, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
  .next_page_link a {
    font-size: 3.61011vw;
  }
}

@media only screen and (max-width: 768px) {
  /* line 535, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
  .next_page_link a {
    font-size: 2.1875rem;
  }
}

@media only screen and (max-width: 767px) {
  /* line 535, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
  .next_page_link a {
    font-size: 1.75rem;
  }
}

/* line 576, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.device_mobile .sitemap .site_logo,
.device_desktop .sitemap .site_logo {
  transform: translateY(0);
}

/* line 582, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.sitemap_sec {
  min-height: 90vh;
  padding: 10.83032vw 0;
}

@media only screen and (max-width: 767px) {
  /* line 582, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
  .sitemap_sec {
    padding: 18.05054vw 0;
  }
}

/* line 588, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.sitemap_sec .wrap {
  width: 800px;
  max-width: 80%;
  margin: 0 auto;
}

/* line 593, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.sitemap_sec h2 {
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 4.6875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  text-align: center;
  margin-bottom: 1em;
}

@media only screen and (max-width: 768px) {
  /* line 593, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
  .sitemap_sec h2 {
    font-size: 3.125rem;
  }
}

/* line 606, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.sitemap_sec p {
  font-size: 2rem;
}

/* line 610, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.sitemap_sec ul li {
  font-size: 2rem;
  list-style: decimal;
}

/* line 613, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.sitemap_sec ul li a {
  color: #6c6560;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.sitemap_sec ul li a:hover, .sitemap_sec ul li a:active {
  text-decoration: underline;
}

/* line 619, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.sitemap_sec ul li ul {
  margin-left: 1.5rem;
}

/* line 622, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
.sitemap_sec ul li li {
  list-style: lower-alpha;
}

@media only screen and (max-width: 768px) {
  /* line 610, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_common.scss */
  .sitemap_sec ul li {
    font-size: 1.5rem;
  }
}

/* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_logo {
  width: 17.25rem;
  margin-left: 0.25rem;
  position: fixed;
  top: 3.10469vw;
  left: 5.27076vw;
  z-index: 2000;
}

@media only screen and (max-width: 767px) {
  /* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
  .site_logo {
    width: 12.5rem;
  }
}

/* line 11, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_logo a, .site_logo svg {
  display: block;
}

/* line 15, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_logo svg #svgid_1 {
  width: 72px;
  transition: all 1s 0s cubic-bezier(0.19, 1, 0.22, 1);
}

/* line 19, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_logo svg .logo_path {
  fill: #9b9ca0;
  transition: all 0.3s ease-out;
}

/* line 24, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_header.active .site_logo {
  transform: translateY(0);
}

/* line 27, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_header.active .site_logo svg #svgid_1 {
  width: 100%;
  transition: all 1s 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

/* line 35, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_header.blue_bg .site_logo svg .logo_path {
  fill: #fff;
}

/* line 40, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.device_mobile .home .site_logo,
.device_desktop .site_logo {
  transform: translateY(calc(-100% - 3.14327vw));
}

/* line 43, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.device_mobile .home .site_logo.active,
.device_desktop .site_logo.active {
  transition: transform 1.5s cubic-bezier(0, 0, 0.2, 1);
  transform: translateY(0);
}

/* line 49, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_header {
  width: 100%;
  top: 0;
  left: 0;
}

/* line 65, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_header.active .nav_contain {
  transform: translateY(0);
}

/* line 71, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_header.blue_bg .site_logo .logo_path {
  fill: #1D6F89;
}

/* line 75, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_header.blue_bg .menu_toggle .menu_close .st0 {
  stroke: #1D6F89;
  transition-duration: 0.3s;
  transition-delay: 0s;
}

/* line 80, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_header.blue_bg .nav_contain {
  background-color: #00A5B2;
}

/* line 83, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_header.blue_bg .nav_contain .primary_menu a {
  color: #1D6F89;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.site_header.blue_bg .nav_contain .primary_menu a:hover, .site_header.blue_bg .nav_contain .primary_menu a:active {
  color: #fff;
}

/* line 92, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_header.blue_bg .nav_footer .wrapper {
  color: #1D6F89;
}

/* line 94, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_header.blue_bg .nav_footer .wrapper * {
  color: inherit;
}

/* line 100, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.home-old .site_header {
  transition: none;
}

/* line 102, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.home-old .site_header .site_logo svg .logo_path {
  fill: #fff;
}

/* line 106, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.home-old .site_header.active .site_logo svg .logo_path {
  fill: #9b9ca0;
}

/* line 111, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.home-old .site_header.to_anim .site_misc_nav, .home-old .site_header.to_anim .site_logo {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  pointer-events: none;
}

/* line 120, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.home-old .site_header.down .site_misc_nav, .home-old .site_header.down .site_logo {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 1s 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* line 130, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_misc_nav {
  display: flex;
  align-items: center;
  position: fixed;
  top: 4.04332vw;
  right: 6.49819vw;
  z-index: 2000;
  mix-blend-mode: difference;
}

/* line 140, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.menu_toggle {
  width: 40px;
  height: 40px;
  position: relative;
}

/* line 144, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.menu_toggle svg {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease-out;
}

/* line 151, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.menu_toggle svg .st0 {
  stroke-dashoffset: 0;
  transition: all 1s ease;
  will-change: stroke-dashoffset;
}

/* line 155, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.menu_toggle svg .st0:last-child {
  transition-delay: 0.1s;
}

/* line 160, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.menu_toggle .menu_close {
  opacity: 0;
}

/* line 162, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.menu_toggle .menu_close .st0 {
  fill: none;
  stroke: #707070;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 38;
  stroke-dashoffset: 76;
}

/* line 171, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.menu_toggle .menu_open {
  opacity: 1;
}

/* line 173, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.menu_toggle .menu_open .st0 {
  fill: none;
  stroke: #6C6560;
  stroke-width: 1.5;
  stroke-dasharray: 30;
  stroke-dashoffset: 60;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* line 191, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.menu_toggle:hover .menu_open .st0 {
  stroke-dashoffset: 0;
}

/* line 197, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_header.active .menu_toggle .menu_open {
  opacity: 0;
}

/* line 199, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_header.active .menu_toggle .menu_open .st0 {
  stroke-dashoffset: 0 !important;
}

/* line 203, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_header.active .menu_toggle .menu_close {
  opacity: 1;
}

/* line 205, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.site_header.active .menu_toggle .menu_close .st0 {
  stroke-dashoffset: 0;
}

/* line 211, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.lang_menu, .wpml-ls ul {
  display: flex;
  margin-right: 16px;
  margin-top: -4px;
}

/* line 216, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.lang_menu .wpml-ls-display, .wpml-ls ul .wpml-ls-display {
  display: none;
}

/* line 221, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.lang_menu li.wpml-ls-current-language a,
.lang_menu li.active a, .wpml-ls ul li.wpml-ls-current-language a,
.wpml-ls ul li.active a {
  text-decoration: underline;
}

/* line 226, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.lang_menu a, .wpml-ls ul a {
  color: #a7a7a7;
  font-family: "Aaux Pro";
  font-size: 11px;
  padding: 0 8px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.lang_menu a:hover, .lang_menu a:active, .wpml-ls ul a:hover, .wpml-ls ul a:active {
  text-decoration: underline;
}

/* line 238, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.is_light .lang_menu a, .is_light .wpml-ls ul a {
  color: #fff;
}

/* line 243, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1999;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: background-color 0.3s ease-out, transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: left center;
  transform: translateY(-100%);
  will-change: transform;
  overflow: hidden;
}

/* line 262, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 150px;
  background: url(../images/bg_wave.svg) 0 0/100% no-repeat;
  pointer-events: none;
}

/* line 273, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain .menu_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
}

/* line 286, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain .menu_img image {
  opacity: 0;
}

/* line 290, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain .main_nav {
  margin-top: 23.17708vh;
  margin-left: 38.12274vw;
  position: relative;
  z-index: 100;
  display: inline-block;
}

@media screen and (max-height: 600px) {
  /* line 290, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
  .nav_contain .main_nav {
    margin-top: 5%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 290, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
  .nav_contain .main_nav {
    margin-left: 20%;
  }
}

@media screen and (max-height: 600px) and (max-width: 767px) {
  /* line 290, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
  .nav_contain .main_nav {
    margin-top: 25%;
  }
}

/* line 320, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain .primary_menu .has_child {
  position: relative;
}

/* line 323, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain .primary_menu .has_child:hover .sub-menu {
  display: block;
}

/* line 328, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain .primary_menu li {
  display: block;
}

/* line 331, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain .primary_menu li:hover a, .nav_contain .primary_menu li:active a {
  color: #1D6F89;
}

/* line 336, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain .primary_menu li.active a {
  color: #1D6F89;
}

/* line 341, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain .primary_menu a {
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 2.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.47059;
  display: block;
}

/* line 353, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain .primary_menu .sub-menu {
  margin-left: 2rem;
  margin-top: -1.0625rem;
  margin-top: 0;
  margin-bottom: 1.0625rem;
  white-space: nowrap;
  display: none;
}

/* line 363, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain .primary_menu .sub-menu a {
  font-family: "Aaux Pro";
  font-size: 1.25rem;
}

/* line 370, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain .nav_footer {
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* line 378, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain .nav_footer .wrapper {
  width: 1222px;
  max-width: 89.327485380117%;
}

/* line 382, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.nav_contain .nav_footer .go_up_btn {
  display: none;
}

@media screen and (max-height: 600px) {
  /* line 370, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
  .nav_contain .nav_footer {
    position: static;
  }
}

/* line 395, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.is_light .site_logo svg .logo_path {
  fill: #fff;
}

/* line 401, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.is_light .lang_menu a {
  color: #fff;
}

/* line 407, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.is_light .menu_toggle .menu_open .st0 {
  stroke: #fff;
}

/* line 415, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.is_light .site_header.active .site_logo svg .logo_path {
  fill: #9b9ca0;
}

/* line 421, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.is_light .site_header.active .lang_menu a {
  color: #a7a7a7;
}

/* line 429, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_header.scss */
.is_light .site_header.blue_bg .site_logo svg .logo_path {
  fill: #fff;
}

/* line 16, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
body.home-old {
  background-color: rgba(221, 215, 208, 0.5);
  background-attachment: fixed;
}

/* line 49, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_logo {
  width: 100vw;
  height: 100vh;
  height: calc(100vh - var(--vh-offset, 0px));
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1000;
  flex-direction: column;
  transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

/* line 63, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_logo .logo_svg {
  width: 17.25rem;
  display: block;
}

/* line 66, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_logo .logo_svg .intro_logo_path {
  fill: #fff;
}

@media only screen and (max-width: 1024px) {
  /* line 63, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_logo .logo_svg {
    width: 14.75rem;
  }
}

/* line 73, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_logo .intro_title {
  display: block;
  color: #ffffff;
  font-family: "Saol Display";
  font-size: 5.625rem;
  font-weight: 400;
  line-height: 1;
  margin-top: -1.3em;
  margin-bottom: 0.3em;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-out;
}

/* line 86, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_logo .intro_title.fade {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 1024px) {
  /* line 73, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_logo .intro_title {
    font-size: 4.375rem;
  }
}

/* line 94, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_logo .scroll_indctr {
  opacity: 0;
}

/* line 96, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.active .intro_logo .scroll_indctr {
  opacity: 1;
}

/* line 100, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_logo.up {
  transform: translateY(-100%);
}

/* line 102, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_logo.up .scroll_indctr {
  opacity: 0;
}

/* line 107, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.hero_intro {
  width: 100%;
  height: 100vh;
  height: calc(100vh - var(--vh-offset, 0px));
  overflow: hidden;
  perspective: 1000px;
  background-color: rgba(221, 215, 208, 0.5);
  transition: background-color 2s 1s ease-out;
}

/* line 115, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.hero_intro.active {
  top: 0 !important;
  background-color: #ddd7d0;
}

/* line 120, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.hero_intro_wrapper {
  height: 100vh;
  height: calc(100vh - var(--vh-offset, 0px));
  transform-style: preserve-3d;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

/* line 132, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.hero_intro_wrapper .panel {
  width: auto;
  display: inline-flex;
  flex-wrap: nowrap;
  flex: 0 0 auto;
}

/* line 140, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.hero_intro_wrapper.to_reveal {
  transform: translate(100vw, 0);
  transition: transform 1.3s cubic-bezier(0.77, 0, 0.175, 1);
}

/* line 147, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.hero_intro_wrapper.to_reveal .intro_video .video {
  transform: translate(-50%, -50%) scale(1.3);
  transition: transform 1.3s 0.25s cubic-bezier(0.4, 0.1, 0.4, 1);
}

/* line 151, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.hero_intro_wrapper.to_reveal .intro_video .intro_video_title {
  transform: translate(25%, 0);
  transition: transform 1.3s 0.25s cubic-bezier(0.4, 0.1, 0.4, 1);
}

/* line 157, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.hero_intro_wrapper.to_reveal .intro_img1 {
  transform: translate3d(100%, 0, 0);
  transition: transform 1.3s 0.25s cubic-bezier(0.4, 0.1, 0.4, 1);
}

/* line 163, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.hero_intro_wrapper.active {
  transform: translate(0, 0);
}

/* line 165, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.hero_intro_wrapper.active .intro_video {
  transform: translate(0, 0);
}

/* line 167, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.hero_intro_wrapper.active .intro_video .video {
  transform: translate(-50%, -50%);
}

/* line 170, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.hero_intro_wrapper.active .intro_video .intro_video_title {
  transform: translate(0, 0);
}

/* line 174, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.hero_intro_wrapper.active .intro_img1 {
  transform: translate3d(0, 0, 0);
}

/* line 180, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_video {
  width: 684px;
  height: 100vh;
  height: calc(100vh - var(--vh-offset, 0px));
  position: relative;
  overflow: hidden;
}

/* line 186, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_video .video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* line 197, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_video .intro_video_title {
  color: #ffffff;
  font-family: "Saol Display";
  font-size: 9.375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 18.88021vh;
}

@media screen and (max-height: 600px) {
  /* line 197, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_video .intro_video_title {
    margin-top: 11.71875vh;
  }
}

/* line 213, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_img {
  position: relative;
}

/* line 216, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_img img {
  display: block;
  width: 100%;
  backface-visibility: hidden;
  transform-origin: center;
}

/* line 223, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_img1 {
  width: 289px;
  margin-left: 15.01805vw;
  margin-top: 7.22022vw;
  z-index: 10;
}

/* line 234, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_img2 {
  z-index: 10;
  width: 234px;
  margin-left: 14.51264vw;
  align-self: flex-end;
  transform: translateX(100%);
}

/* line 240, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_img2 figcaption {
  position: absolute;
  top: 10%;
  left: -48%;
  color: #ffffff;
  font-family: "Saol Display";
  font-size: 5.625rem;
  font-weight: 400;
  line-height: 0.81111;
  white-space: nowrap;
  transform: translateX(40%);
}

/* line 251, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_img2 figcaption span {
  display: block;
  margin-left: 48%;
  margin-top: 0.1em;
}

/* line 258, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_img3 {
  width: 386px;
  margin-left: 10.75812vw;
  z-index: 10;
}

/* line 262, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_img3 figcaption {
  color: #ffffff;
  font-family: "Saol Display";
  font-size: 2.8125rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  display: block;
  margin-top: 203px;
  margin-left: -106px;
}

/* line 274, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_video2 {
  z-index: 9;
  margin-left: -10.83032vw;
}

/* line 277, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_video2:after {
  content: '';
  background: -moz-linear-gradient(top, #1d6f89 0%, #00a5b2 22%, #dbd6d1 59%, white 100%);
  background: -webkit-linear-gradient(top, #1d6f89 0%, #00a5b2 22%, #dbd6d1 59%, white 100%);
  background: linear-gradient(to bottom, #1d6f89 0%, #00a5b2 22%, #dbd6d1 59%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fc1d6f89', endColorstr='#ffffff',GradientType=0 );
  position: absolute;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}

/* line 291, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_video2 .video {
  z-index: 1;
}

/* line 295, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_video2 .intro_video_title {
  z-index: 15;
  font-size: 6.25rem;
  line-height: 0.63;
  margin-top: 33.213vw;
  margin-left: -2em;
}

/* line 301, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_video2 .intro_video_title i, .intro_video2 .intro_video_title span {
  display: block;
  margin-left: 1em;
}

/* line 305, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_video2 .intro_video_title span {
  margin-top: -0.6em;
  margin-left: 3.3em;
}

/* line 311, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.panel.two {
  width: 100vw;
  flex-wrap: wrap;
  transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
  position: relative;
  flex-direction: column;
}

/* line 318, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.panel.two:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: url(../images/57.png) left center no-repeat;
  background-size: cover;
  z-index: 10;
}

@media only screen and (max-width: 1024px) {
  /* line 318, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .panel.two:after {
    opacity: 0.5;
  }
}

/* line 334, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.panel.two.up {
  transform: translateY(-100vh);
  transform: translateY(calc(-100vh + var(--vh-offset, 0px)));
}

/* line 339, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: calc(100vh - var(--vh-offset, 0px));
  z-index: 5;
}

/* line 345, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_slider .intro_slider_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  transition: transform 1s cubic-bezier(0.4, 0.1, 0.4, 1);
}

/* line 357, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_slider .intro_slider_img.intro_slider_img1 {
  opacity: 1;
  visibility: visible;
}

/* line 361, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_slider .intro_slider_img.fade {
  opacity: 1;
  visibility: visible;
}

/* line 366, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_slider .intro_slider_img.is_first img {
  transform: translateX(0) scale(1);
}

/* line 370, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_slider .intro_slider_img:not(.is_first) {
  transform: translateX(100%);
}

/* line 373, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_slider .intro_slider_img.in {
  transform: translateX(0);
}

/* line 375, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_slider .intro_slider_img.in img {
  transform: translateX(0) scale(1);
}

/* line 381, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_slider .intro_slider_img.out img {
  transform: translateX(-50%) scale(1.5);
}

/* line 385, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_slider .intro_slider_img .intro_slider_mask {
  perspective: 1000px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  backface-visibility: hidden;
}

/* line 396, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_slider .intro_slider_img img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  object-position: 50% 50%;
  backface-visibility: hidden;
  transform-origin: center;
  transform: translateX(-50%) scale(1.5);
  transition: transform 1s cubic-bezier(0.4, 0.1, 0.4, 1);
}

/* line 412, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_sec {
  width: 100%;
  height: 100vh;
  height: calc(100vh - var(--vh-offset, 0px));
  position: relative;
  overflow: auto;
  z-index: 5;
}

/* line 422, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_list {
  width: 100%;
  height: 100vh;
  height: calc(100vh - var(--vh-offset, 0px));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  /* line 422, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list {
    display: block;
    height: auto;
    overflow: auto;
  }
}

@media screen and (max-height: 550px) {
  /* line 422, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list {
    padding: 5% 0;
    height: auto;
  }
}

/* line 441, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_list .intro_card_item {
  position: relative;
}

/* line 447, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_list .intro_card_item figure {
  position: relative;
}

/* line 451, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_list .intro_card_item figcaption {
  color: #ffffff;
  font-family: "Saol Display";
  font-size: 2.52708vw;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  position: absolute;
}

/* line 459, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_list .intro_card_item figcaption span {
  display: block;
}

@media only screen and (max-width: 768px) {
  /* line 441, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list .intro_card_item {
    position: relative;
    top: auto;
    left: auto;
    margin: 10% auto;
  }
  /* line 468, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list .intro_card_item figcaption {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 767px) {
  /* line 441, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list .intro_card_item {
    margin: 20% auto;
  }
}

/* line 476, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_list .round_btn {
  position: absolute;
}

/* line 479, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_list .intro_card_item_building {
  width: 39.27798vw;
  margin-top: 16.46209vw;
  margin-left: 3.03249vw;
  z-index: 5;
}

/* line 490, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_list .intro_card_item_building figcaption {
  bottom: -1.1em;
  left: 47%;
  position: static;
  margin-left: 28%;
  margin-top: -1.1em;
}

/* line 498, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_list .intro_card_item_building .round_btn {
  right: 0;
  bottom: -7%;
}

@media only screen and (max-width: 768px) {
  /* line 479, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list .intro_card_item_building {
    top: auto;
    left: auto;
    width: 70.83333vw;
    margin: 10% auto;
  }
}

@media only screen and (max-width: 767px) {
  /* line 479, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list .intro_card_item_building {
    width: 80%;
    margin: 20% auto;
  }
  /* line 513, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list .intro_card_item_building figcaption {
    margin-left: -5%;
  }
  /* line 519, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list .intro_card_item_building .round_btn {
    right: 0;
    bottom: -1.2em;
  }
}

/* line 525, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_list .intro_card_item_residences {
  width: 23.68231vw;
  margin-top: -2.74368vw;
  margin-left: -5.19856vw;
  margin-right: 5.05415vw;
  z-index: 10;
}

/* line 536, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_list .intro_card_item_residences figcaption {
  top: 6.04651%;
  left: -12.5%;
}

/* line 540, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_list .intro_card_item_residences .round_btn {
  right: -21.34146%;
  bottom: -10.23256%;
}

@media only screen and (max-width: 768px) {
  /* line 525, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list .intro_card_item_residences {
    top: auto;
    left: auto;
    width: 42.70833vw;
    margin: 10% auto;
  }
}

@media only screen and (max-width: 767px) {
  /* line 525, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list .intro_card_item_residences {
    width: 80%;
    margin: 20% auto;
  }
  /* line 554, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list .intro_card_item_residences figcaption {
    top: 5%;
    left: -5%;
  }
  /* line 558, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list .intro_card_item_residences .round_btn {
    right: 0;
    bottom: -3em;
  }
}

/* line 564, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_list .intro_card_item_amenities {
  width: 26.787vw;
  margin-top: -2.88809vw;
  z-index: 5;
}

/* line 571, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_list .intro_card_item_amenities figcaption {
  bottom: -0.7em;
  left: -9.43396%;
}

/* line 575, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.intro_cards_list .intro_card_item_amenities .round_btn {
  right: -6.469%;
  bottom: -21.01911%;
}

@media only screen and (max-width: 768px) {
  /* line 564, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list .intro_card_item_amenities {
    top: auto;
    left: auto;
    width: 48.30729vw;
    margin: 10% auto;
  }
}

@media only screen and (max-width: 767px) {
  /* line 564, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list .intro_card_item_amenities {
    width: 80%;
    margin: 20% auto;
  }
  /* line 589, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list .intro_card_item_amenities figcaption {
    top: 5%;
    left: -5%;
  }
  /* line 593, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .intro_cards_list .intro_card_item_amenities .round_btn {
    right: 0;
    bottom: -3em;
  }
}

/* line 600, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.round_btn {
  color: #6c6560;
  font-family: "Aaux Pro";
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.14px;
  line-height: 34px;
  text-decoration: underline;
}

/* line 609, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.round_btn:before {
  content: '';
  display: block;
  border-radius: 6rem;
  width: 6rem;
  height: 6rem;
  border: 1px solid #f5f5f5;
  margin-bottom: -2.375rem;
  margin-left: 3rem;
  background: url(../images/arrow.svg) center no-repeat/0.875rem;
  transition: all 0.3s ease-out;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.round_btn:hover, .round_btn:active {
  color: #1D6F89;
}

/* line 623, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.round_btn:hover:before, .round_btn:active:before {
  transform: scale(1.2);
}

@media only screen and (max-width: 768px) {
  /* line 628, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .round_btn:before {
    background: url(../images/arrow_white.svg) center no-repeat/0.875rem;
  }
}

/* line 635, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
body.home {
  background-color: #DDD7D0;
}

@media only screen and (max-width: 768px) {
  /* line 638, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  body.home .site_misc_nav {
    mix-blend-mode: initial;
  }
}

/* line 643, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_hero_section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* line 647, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_hero_section h1, .home_hero_section h2 {
  font-family: "Saol Display";
  font-size: 3.9375rem;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  position: absolute;
  bottom: 3.5rem;
  bottom: 0.2em;
  left: 4.67836%;
  z-index: 10;
}

/* line 658, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_hero_section h1 span, .home_hero_section h2 span {
  display: block;
}

@media only screen and (max-width: 767px) {
  /* line 647, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .home_hero_section h1, .home_hero_section h2 {
    font-size: 2.125rem;
  }
}

/* line 665, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_hero_section .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../images/mobile_vid_poster.jpg) 0 0/100% no-repeat;
}

/* line 673, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_hero_section .video video {
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 1;
}

/* line 685, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_hero_section .video:after {
  content: '';
  background-image: linear-gradient(to right, rgba(29, 111, 137, 0.99) 0%, #00a5b2 22%, #dbd6d1 59%, #ffffff 100%);
  position: absolute;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

/* line 697, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_hero_section .video.is_mobile_video:after {
  content: '';
  background: linear-gradient(to bottom, rgba(29, 111, 137, 0.99) 0%, rgba(0, 165, 178, 0.99) 22%, rgba(219, 214, 209, 0.99) 59%, white 100%);
  position: absolute;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

/* line 711, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_hero_section .logo_svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17.25rem;
  display: block;
  z-index: 10;
}

/* line 719, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_hero_section .logo_svg svg {
  width: 100%;
  display: block;
}

/* line 723, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_hero_section .logo_svg .intro_logo_path {
  fill: #fff;
}

@media only screen and (max-width: 1024px) {
  /* line 711, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .home_hero_section .logo_svg {
    width: 14.75rem;
  }
}

/* line 730, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_hero_section .scroll_indctr {
  color: #fff;
  top: auto;
  bottom: 2.125rem;
  padding: 0 0 13px;
}

@media only screen and (max-width: 1024px) {
  /* line 730, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .home_hero_section .scroll_indctr {
    display: none;
  }
}

/* line 756, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_hero_section .IIV::-webkit-media-controls-play-button,
.home_hero_section .IIV::-webkit-media-controls-start-playback-button {
  opacity: 0;
  pointer-events: none;
  width: 5px;
}

/* line 763, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_mid_section {
  position: relative;
  z-index: 10;
  background-color: #DDD7D0;
  overflow: hidden;
}

/* line 768, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_mid_section:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: url(../images/57_nw.png) left center no-repeat;
  background-size: cover;
  z-index: 5;
}

@media only screen and (max-width: 1024px) {
  /* line 768, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .home_mid_section:after {
    opacity: 0.5;
  }
}

/* line 783, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_mid_section .scroll_indctr {
  top: auto;
  bottom: 2.125rem;
  padding: 0 0 13px;
}

@media only screen and (max-width: 1024px) {
  /* line 783, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .home_mid_section .scroll_indctr {
    display: none;
  }
}

/* line 792, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_mid_section .sec_slide_1 {
  position: relative;
  height: 100vh;
}

/* line 796, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_mid_section .sec_slide.is_mobile_device {
  position: static;
  height: auto;
}

/* line 799, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_mid_section .sec_slide.is_mobile_device .video {
  position: relative;
  overflow: hidden;
}

/* line 802, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_mid_section .sec_slide.is_mobile_device .video video {
  width: 100%;
  position: static;
  min-width: initial;
  min-height: initial;
  transform: translate(0, 0);
}

/* line 812, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_mid_section h1, .home_mid_section h2 {
  font-family: "Saol Display";
  font-size: 3.9375rem;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  position: absolute;
  top: 0.3em;
  left: 4.67836%;
  z-index: 10;
}

/* line 824, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_mid_section h1 span, .home_mid_section h2 span {
  display: block;
}

@media only screen and (max-width: 767px) {
  /* line 812, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
  .home_mid_section h1, .home_mid_section h2 {
    font-size: 2.125rem;
  }
}

/* line 831, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_mid_section .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../images/mobile_vid_poster_2.jpg) 0 0/100% no-repeat;
}

/* line 839, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_mid_section .video video {
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  position: absolute;
  z-index: 1;
}

/* line 852, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_mid_section .intro_cards_list {
  z-index: 10;
  height: auto;
  padding: 7.01754% 0 7.09064%;
}

/* line 857, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_home.scss */
.home_mid_section .IIV::-webkit-media-controls-play-button,
.home_mid_section .IIV::-webkit-media-controls-start-playback-button {
  opacity: 0;
  pointer-events: none;
  width: 5px;
}

/* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
body.building {
  background-color: #fff;
}

/* line 14, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_bottom_part {
  display: none;
}

/* line 17, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_hero_sec {
  position: relative;
  z-index: 50;
}

/* line 20, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_hero_sec .wrap {
  position: relative;
  overflow: hidden;
  z-index: 5;
}

/* line 25, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_hero_sec .img_tag {
  position: absolute;
  bottom: -2.375rem;
  right: 2.3125rem;
}

/* line 30, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_hero_sec figure {
  position: relative;
  z-index: 5;
  width: 100%;
}

/* line 35, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_hero_sec figure:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #fff;
  transition: transform 0.5s ease;
}

/* line 45, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_hero_sec figure img {
  height: 100vh;
  background: url(../images/building_hero.jpg) right center no-repeat;
  background-size: cover;
}

/* line 51, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_hero_sec figure figcaption {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  color: #ffffff;
  font-family: "Saol Display";
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  opacity: 0;
  transition: all 0.5s ease;
}

@media only screen and (max-width: 1024px) {
  /* line 51, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_hero_sec figure figcaption {
    font-size: 2.125rem;
    padding: 0 2em;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 30, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_hero_sec figure {
    background: url(../images/57OCEAN_PH_01_Living.jpg) right center no-repeat;
    background-size: cover;
  }
  /* line 78, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_hero_sec figure:before {
    width: 100%;
    display: none;
  }
}

/* line 89, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_hero_sec .copy {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  padding: 9.5625rem 0;
  z-index: 10;
  will-change: transform;
}

/* line 99, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_hero_sec .copy h1 {
  color: #ddd7d0;
  font-family: "Saol Display";
  font-size: 9.375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.72;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 0.56667em;
  margin-left: 15.16245vw;
}

/* line 110, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_hero_sec .copy h1 span {
  display: block;
  font-size: 0.33333em;
  margin-left: -1em;
  letter-spacing: -0.01em;
}

@media only screen and (max-width: 1368px) {
  /* line 99, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_hero_sec .copy h1 {
    font-size: 10.83032vw;
  }
}

@media only screen and (max-width: 768px) {
  /* line 99, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_hero_sec .copy h1 {
    font-size: 13.02083vw;
    margin: 0 0 0.56667em;
  }
  /* line 122, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_hero_sec .copy h1 span {
    text-align: left;
    font-size: 0.5em;
    margin: 0;
  }
}

/* line 128, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
[data-lang='pt'] .building_hero_sec .copy h1 {
  margin-left: 7.58123vw;
}

@media only screen and (max-width: 1024px) {
  /* line 128, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  [data-lang='pt'] .building_hero_sec .copy h1 {
    margin-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  /* line 128, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  [data-lang='pt'] .building_hero_sec .copy h1 {
    text-align: center;
    white-space: normal;
  }
  /* line 136, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  [data-lang='pt'] .building_hero_sec .copy h1 span {
    text-align: center;
  }
}

/* line 142, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_hero_sec .copy .para_ct {
  width: 316px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  left: 1.15523vw;
}

@media only screen and (max-width: 1024px) {
  /* line 142, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_hero_sec .copy .para_ct {
    left: 0;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 89, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_hero_sec .copy {
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    padding: 9.5625rem 10%;
    background-color: #fff;
  }
}

/* line 162, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_hero_sec.active figure:before {
  transform: translateX(-100%);
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

/* line 166, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_hero_sec.active figure figcaption {
  opacity: 1;
  transform: translateY(-100%);
  transition: all 1s 0.5s ease;
}

@media only screen and (max-width: 1024px) {
  /* line 174, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_hero_sec.active figure:before {
    transform: translateX(0%) translateY(-100%);
  }
}

/* line 181, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_mid_sec {
  position: relative;
  padding-top: 60px;
  margin-bottom: 3.10469vw;
  z-index: 60;
}

/* line 186, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_mid_sec .float_img1 {
  width: 14.07942vw;
  position: absolute;
  top: -5.27076vw;
  left: 0;
  z-index: 5;
}

@media only screen and (max-width: 768px) {
  /* line 186, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_mid_sec .float_img1 {
    width: 25.39063vw;
    top: -9.50521vw;
  }
}

@media only screen and (max-width: 767px) {
  /* line 186, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_mid_sec .float_img1 {
    position: static;
    width: 33.62069vw;
    top: -10.73529vw;
    margin-bottom: 5%;
  }
}

/* line 203, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_mid_sec .copy {
  width: 17.4375rem;
  max-width: 81%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* line 209, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_mid_sec .copy p {
  letter-spacing: normal;
  margin-bottom: 3.5625rem;
}

@media only screen and (max-width: 767px) {
  /* line 203, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_mid_sec .copy {
    width: 80%;
  }
}

/* line 217, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_mid_sec .float_img2 {
  width: 24.25993vw;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 768px) {
  /* line 217, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_mid_sec .float_img2 {
    width: 43.75vw;
  }
}

@media only screen and (max-width: 767px) {
  /* line 217, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_mid_sec .float_img2 {
    width: 49.41176vw;
  }
}

/* line 229, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_mid_sec .building_slider {
  width: 100%;
  margin: -7.36462vw auto 0;
  z-index: 5;
  overflow: hidden;
}

/* line 234, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_mid_sec .building_slider .js_slider_track {
  position: relative;
  width: 84.76534vw;
  height: calc(45.12635vw + 2.125rem);
  overflow: hidden;
  z-index: 5;
  margin: 0 auto;
}

/* line 243, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_mid_sec .building_slider .js_slide_mask {
  height: 45.12635vw;
}

/* line 246, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_mid_sec .building_slider .js_slider_btn {
  top: 51.2%;
}

/* line 249, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_mid_sec .building_slider .js_slider_btn .btn_mt_svg .btn_mt_arrow {
  fill: #afafaf;
}

/* line 268, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_lobby_sec {
  margin-bottom: 0.57762vw;
}

/* line 270, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_lobby_sec .wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 1024px) {
  /* line 270, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_lobby_sec .wrapper {
    max-width: 89.327485380117%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 270, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_lobby_sec .wrapper {
    display: block;
    max-width: 80%;
    margin-left: auto;
  }
}

/* line 286, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_lobby_sec .copy {
  width: 16rem;
  margin-right: 2.85088%;
}

@media only screen and (max-width: 768px) {
  /* line 286, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_lobby_sec .copy {
    margin: 5% 0;
  }
}

@media only screen and (max-width: 767px) {
  /* line 286, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_lobby_sec .copy {
    width: 100%;
  }
}

/* line 296, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_lobby_sec .float_img1 {
  width: 58.84503%;
  margin-right: 2.67148vw;
}

@media only screen and (max-width: 768px) {
  /* line 296, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_lobby_sec .float_img1 {
    width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 296, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_lobby_sec .float_img1 {
    width: 100%;
    margin-bottom: 5%;
  }
}

/* line 307, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_lobby_sec .float_img2 {
  width: 14.15162vw;
  margin: -1.51625vw 0 0 0;
}

@media only screen and (max-width: 768px) {
  /* line 307, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_lobby_sec .float_img2 {
    width: 25.52083vw;
    margin: -2.73438vw 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  /* line 307, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_lobby_sec .float_img2 {
    width: 12.25rem;
  }
}

@media only screen and (max-width: 767px) {
  /* line 319, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_lobby_sec .wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
}

/* line 326, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_bottom_sec {
  margin-bottom: 4.69314vw;
}

/* line 328, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_bottom_sec .wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  /* line 328, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_bottom_sec .wrapper {
    max-width: 89.327485380117%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 328, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_bottom_sec .wrapper {
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 80%;
    margin: 0 auto;
  }
}

/* line 344, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_bottom_sec h2 {
  width: 37.54513vw;
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 5.41516vw;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-right: -13.3574vw;
  margin-top: -8.66426vw;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 768px) {
  /* line 344, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_bottom_sec h2 {
    width: 100%;
    flex-basis: 100%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  /* line 344, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_bottom_sec h2 {
    width: 50.78125vw;
    font-size: 7.32422vw;
  }
}

/* line 366, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_bottom_sec .float_img1 {
  width: 67.50903vw;
}

@media only screen and (max-width: 768px) {
  /* line 366, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_bottom_sec .float_img1 {
    width: 100%;
  }
}

/* line 372, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_bottom_sec .float_img2 {
  width: 20.86643vw;
  position: absolute;
  bottom: 0.86643vw;
  left: 20.86643vw;
}

@media only screen and (max-width: 768px) {
  /* line 372, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
  .building_bottom_sec .float_img2 {
    position: static;
    width: 40%;
    margin-top: -10%;
    margin-left: 5%;
  }
}

/* line 384, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_building.scss */
.building_bottom_sec .next_page_link {
  margin: 5% auto;
  text-align: right;
  padding-right: 10%;
}

/* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residences {
  position: relative;
  background-image: linear-gradient(180deg, #e4ceb7 0%, #e4ceb7 51%, #ffffff 100%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 168.59206vw;
}

/* line 7, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residences:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 168.59206vw;
  background-image: linear-gradient(180deg, #e4ceb7 0%, #e4ceb7 51%, #ffffff 100%);
}

@media only screen and (max-width: 767px) {
  /* line 7, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residences:before {
    height: 304.03646vh;
  }
}

/* line 20, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residences #page {
  position: relative;
  z-index: 999;
}

/* line 24, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residences .wrapper {
  width: 1368px;
  max-width: 100%;
}

@media only screen and (max-width: 1024px) {
  /* line 24, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residences .wrapper {
    max-width: 89.327485380117%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 24, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residences .wrapper {
    max-width: 80%;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residences {
    background-size: 100% 50%;
  }
}

/* line 38, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_intro_sec {
  padding-top: 33px;
  padding-bottom: 1.3125rem;
  position: relative;
  overflow: hidden;
}

/* line 43, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_intro_sec .res_hero {
  width: 36.9152%;
  margin-left: 7.74854%;
  flex: 0 0 auto;
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 768px) {
  /* line 43, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_intro_sec .res_hero {
    width: 100%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  /* line 43, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_intro_sec .res_hero {
    width: 100%;
  }
}

/* line 66, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_intro_sec .wrap {
  display: flex;
  align-items: flex-start;
}

@media only screen and (max-width: 768px) {
  /* line 66, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_intro_sec .wrap {
    flex-direction: column;
  }
}

/* line 76, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_intro_sec h1 {
  color: #fff;
  font-family: "Saol Display";
  font-size: 9.375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  margin: 0 0 0.66667em 0;
}

/* line 85, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_intro_sec h1 span {
  display: block;
  font-size: 0.33333em;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0.16em 0 0 0;
  text-align: right;
  padding-right: 3.6em;
}

/* line 95, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_intro_sec h1 i {
  font-style: italic;
}

@media only screen and (max-width: 1368px) {
  /* line 76, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_intro_sec h1 {
    font-size: 10.83032vw;
  }
}

/* line 102, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_intro_sec .copy {
  position: relative;
  z-index: 10;
  margin-top: 8.40643%;
  margin-left: -10.67251%;
}

/* line 107, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_intro_sec .copy .para_ct {
  width: 19.75rem;
  max-width: 100%;
  margin: 0 auto 4.22993% 40.88937%;
  position: relative;
  left: 11px;
}

/* line 113, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_intro_sec .copy .para_ct p {
  color: #fff;
}

/* line 117, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_intro_sec .copy figure {
  width: 71.58351%;
  margin-left: 15.9436%;
}

/* line 121, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
[data-lang='es'] .residence_intro_sec .copy {
  margin-left: -12.1345%;
}

@media only screen and (max-width: 768px) {
  /* line 121, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  [data-lang='es'] .residence_intro_sec .copy {
    margin-left: 0;
  }
}

/* line 127, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
[data-lang='pt'] .residence_intro_sec .copy {
  margin-top: 4.75146%;
  margin-left: -13.59649%;
}

/* line 130, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
[data-lang='pt'] .residence_intro_sec .copy h1 {
  text-align: right;
  white-space: normal;
}

@media only screen and (max-width: 768px) {
  /* line 127, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  [data-lang='pt'] .residence_intro_sec .copy {
    margin-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  /* line 102, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_intro_sec .copy {
    margin-left: 0;
  }
  /* line 140, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_intro_sec .copy h1 {
    margin: 0 0 0.74em 0;
    text-align: left;
    font-size: 11.71875vw;
  }
  /* line 144, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_intro_sec .copy h1 span {
    font-size: 0.5em;
    padding-right: 0;
  }
  /* line 149, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_intro_sec .copy .para_ct {
    width: 100%;
    margin-left: auto;
    left: 0;
  }
  /* line 154, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_intro_sec .copy figure {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  /* line 102, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_intro_sec .copy {
    margin: 5% auto 0;
  }
  /* line 160, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_intro_sec .copy figure {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 38, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_intro_sec {
    padding-top: 6.1875rem;
  }
}

/* line 171, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_main .js_slider {
  width: 100%;
  margin: 0 0 1.24269% auto;
  z-index: 5;
  overflow: hidden;
}

/* line 176, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_main .js_slider .js_slider_track {
  position: relative;
  width: 89.38628vw;
  height: calc(45.12635vw + 2.125rem);
  overflow: hidden;
  z-index: 5;
  margin: 0 0 0 auto;
}

/* line 185, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_main .js_slider .js_slide_mask {
  height: 45.12635vw;
}

/* line 188, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_main .js_slider .js_slider_btn {
  top: 51.2%;
}

/* line 191, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_main .js_slider .js_slider_btn .btn_mt_svg .btn_mt_arrow {
  fill: #fff;
}

/* line 196, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_main .js_slider .img_tag {
  left: 14px;
}

@media only screen and (max-width: 768px) {
  /* line 200, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_main .js_slider .js_slider_track {
    width: 100%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  /* line 171, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_main .js_slider {
    margin-bottom: 5%;
  }
  /* line 218, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_main .js_slider .js_slider_track {
    height: 52.70758vw;
  }
  /* line 221, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_main .js_slider .js_slider_btn {
    top: 40%;
    width: 23.09091vw;
    height: 23.09091vw;
  }
}

/* line 228, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_main .copy_1 {
  width: 19.875rem;
  margin: 0 auto 3.8125rem;
}

@media only screen and (max-width: 768px) {
  /* line 228, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_main .copy_1 {
    width: 100%;
  }
}

/* line 235, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_main .float_img1 {
  width: 14.32749%;
  margin: 0 11.47661% 0 auto;
}

@media only screen and (max-width: 768px) {
  /* line 235, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_main .float_img1 {
    width: 28.82353%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 235, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_main .float_img1 {
    width: 60%;
    margin: 0 0 0 auto;
  }
}

/* line 246, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_main .float_img2 {
  width: 38.30409%;
  margin-right: 3.50877%;
  margin-left: 2.70468%;
}

/* line 250, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_main .float_img2 .img_tag {
  text-align: right;
  margin-right: 0.75rem;
  margin-left: 0;
}

@media only screen and (max-width: 768px) {
  /* line 246, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_main .float_img2 {
    width: 100%;
    margin: 0;
  }
}

/* line 260, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_main .copy_2 {
  display: flex;
  align-items: center;
  margin-top: -7.16374%;
}

@media only screen and (max-width: 768px) {
  /* line 260, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_main .copy_2 {
    flex-direction: column;
    margin-top: 20px;
  }
}

/* line 269, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_main .para_ct {
  width: 19.75rem;
  margin-top: 2.375rem;
}

/* line 272, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_main .para_ct p {
  color: #58534e;
}

@media only screen and (max-width: 767px) {
  /* line 269, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_main .para_ct {
    width: 100%;
  }
}

/* line 280, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_bed {
  position: relative;
  margin-bottom: 1.24269%;
}

/* line 283, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_bed h2 {
  width: 29.75rem;
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 4.6875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: -0.87719% 2.92398% 5.19006% auto;
}

/* line 292, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_bed h2 i {
  font-style: italic;
}

@media only screen and (max-width: 768px) {
  /* line 283, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bed h2 {
    width: 58.59375%;
    font-size: 2.5rem;
    width: 85%;
    margin: 1em auto;
  }
}

@media only screen and (max-width: 767px) {
  /* line 283, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bed h2 {
    width: 100%;
  }
}

/* line 305, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_bed .float_img1 {
  width: 85.81871%;
  margin: 0 auto;
  position: relative;
  z-index: 12;
}

@media only screen and (max-width: 768px) {
  /* line 305, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bed .float_img1 {
    width: 100%;
  }
}

/* line 314, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_bed .float_img2 {
  width: 14.32749%;
  position: absolute;
  top: 71.8%;
  left: 0;
  margin: 0;
  z-index: 5;
}

@media only screen and (max-width: 768px) {
  /* line 314, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bed .float_img2 {
    width: 30%;
    position: static;
    margin: -5% 0 0;
  }
}

@media only screen and (max-width: 767px) {
  /* line 314, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bed .float_img2 {
    width: 60%;
    position: static;
    margin: 5% 0;
  }
}

/* line 333, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_bed .float_img3 {
  width: 50.65789%;
}

/* line 336, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_bed .copy {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 5;
  margin-top: -12.0614%;
  position: relative;
  z-index: 10;
}

/* line 345, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_bed .copy .para_ct {
  width: 18.0625rem;
  margin-top: 20.61404%;
  margin-left: 12.2076%;
  margin-right: 1.68129%;
}

@media only screen and (max-width: 768px) {
  /* line 336, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bed .copy {
    align-items: flex-end;
  }
  /* line 353, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bed .copy .para_ct {
    width: auto;
    margin-left: 0;
    margin-right: 1.4375rem;
  }
  /* line 358, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bed .copy .float_img3 {
    flex: 0 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  /* line 336, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bed .copy {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
  /* line 365, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bed .copy .para_ct {
    margin-top: 10%;
    margin-right: 0;
  }
  /* line 369, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bed .copy .float_img3 {
    width: 90%;
  }
}

/* line 374, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_bed .float_img4 {
  width: 21.12573%;
  position: absolute;
  top: 50.7%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 15;
}

@media only screen and (max-width: 768px) {
  /* line 374, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bed .float_img4 {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0, 0);
    width: 45%;
    margin: -10% 5% 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  /* line 374, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bed .float_img4 {
    width: 60%;
    margin: 10% 0 0 auto;
    z-index: 4;
  }
}

@media only screen and (max-width: 768px) {
  /* line 280, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bed {
    margin-bottom: 5%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 280, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bed {
    margin-bottom: 10%;
  }
}

/* line 402, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_bath {
  padding-bottom: 5.04386%;
}

/* line 404, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_bath .float_img1 {
  width: 46.92982%;
  margin-left: 26.53509%;
}

/* line 407, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_bath .float_img1 div {
  margin-bottom: 0.875rem;
}

/* line 410, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_bath .float_img1 .img_tag {
  margin-right: 1.5rem;
}

@media only screen and (max-width: 768px) {
  /* line 404, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_bath .float_img1 {
    width: 100%;
    margin: 0 auto;
  }
}

/* line 419, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_views {
  padding-top: 4.97076%;
  margin-bottom: 4.60526%;
}

/* line 423, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_views .wrap {
  display: flex;
  align-items: center;
  position: relative;
}

/* line 428, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_views .float_img {
  width: 50%;
}

/* line 430, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_views .float_img .img_tag {
  margin-right: 1.625rem;
}

/* line 434, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_views .copy {
  width: 17.5rem;
  margin: -5.84795% 0 0 2.92398%;
}

/* line 438, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_views .next_page_link {
  position: absolute;
  bottom: 2.50696%;
  right: 12.1345%;
}

/* line 442, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_views .next_page_link a {
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 3.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  display: block;
  position: relative;
}

/* line 451, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_views .next_page_link a span {
  display: block;
  position: relative;
  z-index: 10;
  pointer-events: none;
}

/* line 457, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.residence_views .next_page_link a .btn_mt_svg {
  width: 5.08em;
  position: absolute;
  top: -3.22em;
  right: -1.3em;
}

@media only screen and (max-width: 1368px) {
  /* line 442, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_views .next_page_link a {
    font-size: 3.61011vw;
  }
}

@media only screen and (max-width: 768px) {
  /* line 469, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_views .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 473, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_views .float_img {
    width: 80%;
  }
  /* line 475, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_views .float_img .img_tag {
    margin-right: 1.625rem;
  }
  /* line 479, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_views .copy {
    margin: 5% 0 0 15%;
  }
  /* line 482, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_views .next_page_link {
    position: static;
    align-self: flex-end;
    margin-right: 8%;
  }
  /* line 486, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_views .next_page_link a {
    font-size: 5.05415vw;
  }
}

@media only screen and (max-width: 767px) {
  /* line 492, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_views .wrap {
    flex-direction: column;
    align-items: center;
  }
  /* line 496, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_views .float_img {
    width: 100%;
    align-self: flex-start;
  }
  /* line 500, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_views .copy {
    width: 100%;
    margin: 5% 0;
  }
  /* line 504, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_views .next_page_link {
    margin-right: 15%;
  }
  /* line 506, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .residence_views .next_page_link a {
    font-size: 6.49819vw;
  }
}

/* line 528, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floorplans_sec .floor_wrap {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
}

/* line 534, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floorplans_sec .floor_wrap .floor_view_area,
.floorplans_sec .floor_wrap .floor_detail_area {
  width: 50%;
}

@media only screen and (max-width: 1024px) {
  /* line 534, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .floorplans_sec .floor_wrap .floor_view_area,
  .floorplans_sec .floor_wrap .floor_detail_area {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 534, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .floorplans_sec .floor_wrap .floor_view_area,
  .floorplans_sec .floor_wrap .floor_detail_area {
    padding: 20% 10%;
  }
}

/* line 546, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area {
  background-color: #fff;
  padding: 2.75rem 0;
  position: relative;
  position: fixed;
  height: 100%;
  z-index: 100;
  overflow: hidden;
}

/* line 555, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .close_floor_btn {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 3.3935vw;
  right: 6.5704vw;
  z-index: 20;
  cursor: pointer;
  display: none;
}

/* line 565, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .close_floor_btn span {
  display: none;
}

/* line 568, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .close_floor_btn .close_svg {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease-out;
}

/* line 575, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .close_floor_btn .close_svg .st0 {
  fill: none;
  stroke: #000;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 38;
  stroke-dashoffset: 76;
  transition: all 1s ease;
}

/* line 583, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .close_floor_btn .close_svg .st0:last-child {
  transition-delay: 0.1s;
}

/* line 590, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .close_floor_btn:hover .close_svg .st0 {
  stroke-dashoffset: 0;
}

/* line 596, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_img_view {
  width: 288px;
  margin: 0 auto;
}

/* line 602, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_img {
  width: 100%;
  margin: 0 auto;
}

/* line 608, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_map_controls {
  position: absolute;
  bottom: 2.5rem;
  left: 9.35673%;
  display: flex;
  flex-direction: column;
}

/* line 614, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_map_controls .floor_map_btn {
  width: 24px;
  height: 24px;
  background-color: #00a5b2;
  color: #ffffff;
  font-family: "Aaux Pro";
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  border-radius: 24px;
  border: 1px solid #00a5b2;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

/* line 629, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_map_controls .floor_map_btn:last-of-type {
  margin-bottom: 0;
}

/* line 632, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_map_controls .floor_map_btn:after {
  content: attr(data-val);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 18px;
  color: inherit;
}

/* line 643, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_map_controls .floor_map_btn span {
  display: none;
}

/* line 646, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_map_controls .floor_map_btn:hover {
  color: #00a5b2;
  background-color: transparent;
}

/* line 651, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_map_controls .back_btn {
  color: #1d6f89;
  font-family: "Aaux Pro";
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
  display: block;
  margin-top: 4.25rem;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.floor_view_area .floor_map_controls .back_btn:hover, .floor_view_area .floor_map_controls .back_btn:active {
  text-decoration: underline;
}

@media only screen and (max-width: 1024px) {
  /* line 651, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .floor_view_area .floor_map_controls .back_btn {
    display: none;
  }
}

/* line 668, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_view_controls {
  position: absolute;
  right: 6.43275%;
  bottom: 2.4375rem;
}

/* line 672, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_view_controls a {
  color: #00a5b2;
  font-family: "Saol Display";
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* line 679, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_view_controls a span {
  display: block;
  margin-right: -1.2em;
  margin-top: 0.86667em;
}

/* line 684, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_view_controls a .btn_mt_svg {
  width: 3.2em;
  height: 3.2em;
}

/* line 687, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_view_controls a .btn_mt_svg .btn_mt_circle {
  stroke: #f7f3ef;
}

/* line 690, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_view_controls a .btn_mt_svg .btn_mt_arrow {
  fill: #ddd7d0;
}

/* line 695, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_area .floor_view_controls .link_mt {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  /* line 546, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .floor_view_area {
    display: none;
  }
  /* line 702, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .floor_view_area .close_floor_btn {
    display: block;
  }
}

/* line 707, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 150;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}

/* line 716, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
body.views .floor_view_slider_contain {
  display: block;
}

/* line 719, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain .close_view_btn {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 3.3935vw;
  right: 6.5704vw;
  z-index: 20;
  cursor: pointer;
}

/* line 728, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain .close_view_btn span {
  display: none;
}

/* line 731, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain .close_view_btn .close_svg {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease-out;
}

/* line 738, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain .close_view_btn .close_svg .st0 {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 38;
  stroke-dashoffset: 76;
  transition: all 1s ease;
}

/* line 746, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain .close_view_btn .close_svg .st0:last-child {
  transition-delay: 0.1s;
}

/* line 753, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain .close_view_btn:hover .close_svg .st0 {
  stroke-dashoffset: 0;
}

/* line 759, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain .floor_view_slider {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  margin: 0 auto;
  z-index: 5;
  overflow: hidden;
}

/* line 767, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain .floor_view_slider .js_slider_track {
  position: relative;
  width: 98.77256vw;
  height: 55.45126vw;
  overflow: hidden;
  z-index: 5;
  margin: 0 auto;
}

/* line 776, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain .floor_view_slider .js_slide figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8.66426vw;
  min-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(221, 215, 208, 0.73);
  color: #ffffff;
  font-family: "Saol Display";
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* line 795, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain .floor_view_slider .js_slide_mask {
  height: 100%;
}

/* line 798, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain .floor_view_slider .js_slider_btn {
  width: 11.11913vw;
  height: 11.11913vw;
  top: 48.2%;
}

/* line 803, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain .floor_view_slider .js_slider_btn .btn_mt_svg .btn_mt_circle {
  stroke: #fff;
}

/* line 806, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain .floor_view_slider .js_slider_btn .btn_mt_svg .btn_mt_arrow {
  fill: #fff;
}

/* line 810, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain .floor_view_slider .js_slider_btn.prev_btn {
  left: -1.29964vw;
}

/* line 813, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_view_slider_contain .floor_view_slider .js_slider_btn.next_btn {
  right: -1.29964vw;
}

@media screen and (max-height: 768px) {
  /* line 707, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .floor_view_slider_contain {
    position: relative;
    height: auto;
  }
  /* line 821, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .floor_view_slider_contain .floor_view_slider {
    position: relative;
    top: 0;
    transform: translate(0, 0);
  }
}

/* line 828, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area {
  background-color: #ddd7d0;
  padding: 75px 60px;
  padding: 5.375rem 4.38596%;
  margin: 0 0 0 auto;
}

/* line 833, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_title {
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 3.125rem;
  font-weight: bold; /* changed by tp  from 400 */
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 1.14em;
}

/* line 844, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 5rem;
  align-items: flex-start;
}

/* line 850, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list li:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  /* line 844, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .floor_detail_area_list li {
    display: block;
    margin-bottom: 15%;
  }
}

/* line 858, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_title {
  color: #1d6f89;
  font-family: "Aaux Pro";
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5em;
  line-height: 1.23077;
  text-transform: uppercase;
  flex-basis: 100%;
  margin-bottom: 2.92308em;
  margin-bottom: 1em;
}

/* line 869, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_title strong {
  font-weight: 700;
}

/* line 873, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_blocks_list {
  margin-top: 3.5461%;
}

@media only screen and (max-width: 767px) {
  /* line 873, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .floor_detail_area_list .floor_blocks_list {
    margin: 0 0 10%;
  }
}

/* line 879, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_block_item {
  margin-bottom: 1.6875rem;
}

/* line 881, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_block_item:last-child {
  margin-bottom: 0;
}

/* line 884, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_block_item p {
  color: #58534e;
  font-family: "Aaux Pro";
  font-weight: 400; 
  line-height: 1.42857;
  margin: 0;
}

/* line 890, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_block_item p strong {
  font-family: "Saol Display";
  font-size: 1.14286em;
  font-weight: bold; /* Changed from 400 by tp */
}

/* line 897, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_map {
  width: 200px;
  margin-right: 9.57447%;
}

/* line 900, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_map .floor_svg {
  display: block;
  width: 100%;
}

/* line 903, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_map .floor_svg .floor_svg_block,
.floor_detail_area_list .floor_map .floor_svg .floor_svg_text {
  transition: all 0.3s ease-out;
}

/* line 908, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_map .floor_svg .floor_svg_block {
  fill: rgba(0, 0, 0, 0);
}

/* line 911, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_map .floor_svg .floor_svg_text {
  fill: #6c6560;
}

/* line 914, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_map .floor_svg .floor_svg_apt {
  pointer-events: all;
  cursor: pointer;
}

/* line 919, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_map .floor_svg .floor_svg_apt.active .floor_svg_block, .floor_detail_area_list .floor_map .floor_svg .floor_svg_apt:hover .floor_svg_block {
  fill: #00A5B2;
}

/* line 922, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_map .floor_svg .floor_svg_apt.active .floor_svg_text, .floor_detail_area_list .floor_map .floor_svg .floor_svg_apt:hover .floor_svg_text {
  fill: #fff;
}

/* line 926, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_map .floor_svg .floor_svg_apt.active {
  cursor: default;
  pointer-events: none;
}

@media only screen and (max-width: 1050px) {
  /* line 897, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .floor_detail_area_list .floor_map {
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  /* line 897, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .floor_detail_area_list .floor_map {
    width: 100%;
  }
}

/* line 939, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_map_bh {
  width: 201px;
}

@media only screen and (max-width: 767px) {
  /* line 939, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .floor_detail_area_list .floor_map_bh {
    width: 100%;
  }
}

/* line 945, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_map_rs {
  width: 199.6px;
}

@media only screen and (max-width: 767px) {
  /* line 945, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .floor_detail_area_list .floor_map_rs {
    width: 100%;
  }
}

/* line 951, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
.floor_detail_area_list .floor_map_sr {
  width: 199.2px;
}

@media only screen and (max-width: 767px) {
  /* line 951, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_residence.scss */
  .floor_detail_area_list .floor_map_sr {
    width: 100%;
  }
}

/* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.neighborhood {
  background-image: linear-gradient(180deg, #63b7d1 0%, #ffffff 100%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 237.40072vw;
}

/* line 8, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.neighborhood:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 237.40072vw;
  background-image: linear-gradient(180deg, #63b7d1 0%, #ffffff 100%);
}

/* line 18, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.neighborhood #page {
  position: relative;
  z-index: 999;
}

/* line 22, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.neighborhood .wrapper {
  width: 1368px;
  max-width: 100%;
}

@media only screen and (max-width: 1024px) {
  /* line 22, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .neighborhood .wrapper {
    max-width: 89.327485380117%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 22, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .neighborhood .wrapper {
    max-width: 80%;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .neighborhood {
    background-size: 100% 100%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .neighborhood {
    background-size: 100% 60%;
  }
}

/* line 45, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_intro_sec {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 7.72563vw;
  padding-bottom: 30px;
}

/* line 51, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_intro_sec .wrap {
  display: flex;
  align-items: flex-start;
}

@media only screen and (max-width: 768px) {
  /* line 51, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_intro_sec .wrap {
    display: block;
  }
}

/* line 58, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_intro_sec .nebor_hero {
  position: relative;
  z-index: 5;
  width: 52.63158%;
  flex: 0 0 auto;
  margin-left: 5.33626%;
}

@media only screen and (max-width: 768px) {
  /* line 58, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_intro_sec .nebor_hero {
    width: 100%;
    margin: 0;
  }
}

/* line 69, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_intro_sec h1 {
  color: #fff;
  font-family: "Saol Display";
  font-size: 9.375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
  margin-bottom: 35px;
  text-align: right;
}

/* line 80, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_intro_sec h1 span {
  display: block;
  font-size: 0.33333em;
  letter-spacing: -0.01em;
  margin-top: 9px;
  margin-right: -6px;
}

@media only screen and (max-width: 1368px) {
  /* line 69, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_intro_sec h1 {
    font-size: 10.83032vw;
  }
}

/* line 91, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_intro_sec .copy {
  position: relative;
  z-index: 10;
  margin-left: -24.19591%;
  margin-top: 0.1462%;
}

/* line 97, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
[data-lang='es'] .nebor_intro_sec .copy {
  margin-left: -31.50585%;
}

/* line 100, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_intro_sec .copy .para_ct {
  width: 18.5rem;
  margin-left: auto;
  margin-right: 5.4242%;
}

/* line 105, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_intro_sec .copy p {
  color: #fff;
}

@media only screen and (max-width: 1200px) {
  /* line 109, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_intro_sec .copy .para_ct {
    margin-right: 0;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 91, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_intro_sec .copy {
    margin-top: 5%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 91, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_intro_sec .copy {
    margin-left: 0;
  }
  /* line 118, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  [data-lang='es'] .nebor_intro_sec .copy {
    margin-left: 0;
  }
  /* line 121, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_intro_sec .copy h1 {
    font-size: 13.02083vw;
  }
  /* line 123, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_intro_sec .copy h1 span {
    font-size: 0.5em;
  }
  /* line 127, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_intro_sec .copy .para_ct {
    width: 100%;
    margin: 0;
  }
}

@media only screen and (max-width: 768px) {
  /* line 45, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_intro_sec {
    padding: 20% 0 10%;
  }
}

/* line 137, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_map_sec {
  position: relative;
}

/* line 139, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_map_sec .accordion {
  position: absolute;
  z-index: 15;
  width: 278px;
  top: 21.65207%;
  left: 61.62281%;
}

@media only screen and (max-width: 1024px) {
  /* line 147, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_map_sec .nebor_map_slider {
    margin-bottom: 5%;
  }
  /* line 150, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_map_sec .accordion {
    position: static;
    margin-left: 10%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 163, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_map_sec .accordion {
    width: 80%;
    margin: 0 auto;
  }
}

/* line 169, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_map_slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 10;
}

/* line 174, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_map_slider .js_slider_track {
  position: relative;
  width: 100%;
  height: 58.41155vw;
  overflow: hidden;
  z-index: 5;
  margin: 0 0 0 auto;
}

/* line 182, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_map_slider .js_slide,
.nebor_map_slider .js_slide_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* line 191, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_map_slider .js_slider_nav {
  position: absolute;
  top: 49.1%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 20;
}

/* line 197, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_map_slider .js_slider_nav .js_slider_btn {
  width: auto;
  height: auto;
  margin: 0;
  position: static;
  color: #1d6f89;
  font-family: "Aaux Pro";
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 2.42857;
  display: block;
  display: flex;
  align-items: center;
  pointer-events: all;
}

/* line 212, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_map_slider .js_slider_nav .js_slider_btn span {
  margin-top: 3.78571em;
  margin-right: -2.35714em;
  white-space: nowrap;
  display: block;
}

/* line 218, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_map_slider .js_slider_nav .js_slider_btn .btn_mt_svg {
  width: 6rem;
  height: 6rem;
  position: static;
}

/* line 222, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_map_slider .js_slider_nav .js_slider_btn .btn_mt_svg .btn_mt_circle {
  stroke: #67b0be;
}

/* line 225, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_map_slider .js_slider_nav .js_slider_btn .btn_mt_svg .btn_mt_arrow {
  fill: #fff;
}

/* line 229, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_map_slider .js_slider_nav .js_slider_btn.loc_view {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}

/* line 235, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_map_slider .js_slider_nav .js_slider_btn.loc_view .btn_mt_svg .btn_mt_circle {
  stroke: #fff;
}

/* line 238, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_map_slider .js_slider_nav .js_slider_btn.loc_view .btn_mt_svg .btn_mt_arrow {
  fill: #fff;
}

/* line 243, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.nebor_map_slider .js_slider_nav .js_slider_btn.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.nebor_map_slider .js_slider_nav .js_slider_btn:hover, .nebor_map_slider .js_slider_nav .js_slider_btn:active {
  text-decoration: underline;
}

@media only screen and (max-width: 1024px) {
  /* line 254, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_map_slider .js_slider_track {
    position: static;
    height: auto;
  }
  /* line 258, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_map_slider .js_slide,
  .nebor_map_slider .js_slide_mask {
    position: static;
  }
  /* line 263, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_map_slider .js_slide_mask img {
    width: 170%;
    max-width: initial;
    margin-left: -6.1%;
  }
  /* line 269, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .nebor_map_slider .js_slider_nav {
    display: none;
  }
}

/* line 274, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec {
  padding-top: 5.84838vw;
}

/* line 276, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col {
  display: flex;
  flex-wrap: wrap;
}

/* line 281, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col1 .float_img1 {
  width: 34.35673%;
  margin-left: 15.27778%;
}

/* line 285, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col1 .copy1 {
  margin-left: 2.41228%;
  margin-top: -0.1462%;
}

/* line 289, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col1 .copy1 p {
  width: 17.1875rem;
  color: #58534e;
}

/* line 293, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col1 .copy1 .link_mt_ct {
  display: inline-block;
  margin: 15% 0 0 20%;
}

/* line 296, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col1 .copy1 .link_mt_ct a {
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  display: block;
  position: relative;
}

/* line 305, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col1 .copy1 .link_mt_ct a span {
  display: block;
  position: relative;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
}

/* line 312, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col1 .copy1 .link_mt_ct a .btn_mt_svg {
  width: 3.175em;
  position: absolute;
  top: -0.7625em;
  right: -0.8125em;
}

/* line 317, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col1 .copy1 .link_mt_ct a .btn_mt_svg .btn_mt_arrow {
  fill: #fff;
}

@media only screen and (max-width: 1368px) {
  /* line 296, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col1 .copy1 .link_mt_ct a {
    font-size: 2.88809vw;
  }
}

@media only screen and (max-width: 768px) {
  /* line 296, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col1 .copy1 .link_mt_ct a {
    font-size: 2.5rem;
  }
}

@media only screen and (max-width: 767px) {
  /* line 296, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col1 .copy1 .link_mt_ct a {
    font-size: 1.875rem;
  }
}

/* line 333, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col1 strong {
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 768px) {
  /* line 280, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col1 {
    display: block;
  }
  /* line 339, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col1 .float_img1 {
    width: 80%;
    margin-left: 0;
    margin-bottom: 5%;
  }
  /* line 344, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col1 .copy1 {
    width: 100%;
    margin-left: 0;
  }
}

/* line 350, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .float_img2 {
  width: 33.04094%;
  margin-left: auto;
  margin-right: 5.33626%;
  margin-top: -2%;
}

@media only screen and (max-width: 1024px) {
  /* line 350, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .float_img2 {
    margin-top: 3%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 350, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .float_img2 {
    margin: 10% auto;
    width: 80%;
  }
}

/* line 364, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .float_img3 {
  width: 98.7013%;
  margin-bottom: 0.86643vw;
  margin-left: auto;
}

@media only screen and (max-width: 768px) {
  /* line 364, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .float_img3 {
    width: 80%;
  }
}

/* line 372, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .float_img4 {
  width: 36.36364%;
  margin-left: auto;
}

@media only screen and (max-width: 768px) {
  /* line 372, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .float_img4 {
    width: 40%;
    margin-top: 5%;
  }
}

/* line 380, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col2 {
  align-items: flex-end;
  margin-top: 3.53791vw;
}

/* line 383, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col2 .img_ct {
  width: 39.40058%;
  flex: 0 0 auto;
  margin-left: 22.00292%;
}

@media only screen and (max-width: 1024px) {
  /* line 383, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col2 .img_ct {
    margin-left: 5%;
    width: 60%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 383, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col2 .img_ct {
    width: 80%;
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  /* line 383, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col2 .img_ct {
    width: 100%;
  }
}

/* line 402, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col2 .copy2 {
  width: 17.1875rem;
  margin-left: 2.41228%;
  margin-bottom: -0.4386%;
}

@media only screen and (max-width: 768px) {
  /* line 402, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col2 .copy2 {
    width: 100%;
    margin-top: 5%;
    margin-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  /* line 380, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col2 {
    display: block;
  }
}

/* line 416, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .float_img5 {
  width: 25.5848%;
  align-self: flex-start;
  flex: 0 0 auto;
}

@media only screen and (max-width: 1024px) {
  /* line 416, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .float_img5 {
    width: 50%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 416, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .float_img5 {
    width: 100%;
  }
}

/* line 427, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .float_img6 {
  width: 73.35766%;
}

@media only screen and (max-width: 768px) {
  /* line 427, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .float_img6 {
    margin: 0 auto;
    width: 80%;
  }
}

/* line 434, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col3 {
  margin-top: 3.80117%;
  width: 100%;
  flex-wrap: nowrap;
  align-items: flex-end;
}

/* line 439, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col3 .img_ct {
  margin-left: -8.99123%;
  display: flex;
  align-items: flex-end;
  margin-top: 6.875rem;
  width: 80.11696%;
}

@media only screen and (max-width: 1024px) {
  /* line 439, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col3 .img_ct {
    margin-left: 0;
    margin-top: 5%;
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 439, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col3 .img_ct {
    display: block;
    margin-left: 0;
  }
}

/* line 455, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.miami_beach_sec .col3 .copy3 {
  width: 15.5625rem;
  margin-bottom: -0.18248%;
  margin-right: 3.92336%;
  flex: 0 0 auto;
}

@media only screen and (max-width: 768px) {
  /* line 455, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col3 .copy3 {
    margin-left: 0;
    width: 100%;
    margin-bottom: 5%;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 434, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col3 {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  /* line 434, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .miami_beach_sec .col3 {
    margin-top: 10%;
    display: block;
  }
}

/* line 476, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.design_des_sec {
  margin-top: 14.54678%;
  position: relative;
  margin-bottom: 14.07942vw;
}

/* line 480, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.design_des_sec .col {
  display: flex;
}

/* line 482, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.design_des_sec .col p {
  color: #58534e;
}

@media only screen and (max-width: 768px) {
  /* line 480, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .design_des_sec .col {
    display: block;
  }
}

/* line 489, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.design_des_sec .col1 {
  margin-bottom: 12px;
}

/* line 491, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.design_des_sec .col1 .float_img1 {
  width: 31.79825%;
  margin-left: 23.75731%;
}

@media only screen and (max-width: 1024px) {
  /* line 491, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .design_des_sec .col1 .float_img1 {
    width: 50%;
    margin-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  /* line 491, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .design_des_sec .col1 .float_img1 {
    width: 100%;
  }
}

/* line 502, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.design_des_sec .col1 .copy1 {
  width: 281px;
  margin-left: 2.77778%;
  margin-top: -0.1462%;
}

@media only screen and (max-width: 768px) {
  /* line 502, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .design_des_sec .col1 .copy1 {
    width: 100%;
    margin: 5% 0;
  }
}

/* line 511, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.design_des_sec .col1 strong {
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* line 516, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.design_des_sec .col2 {
  display: block;
  overflow: hidden;
}

/* line 519, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.design_des_sec .col2 .img_ct {
  width: 224px;
  margin: 0 auto;
  position: relative;
  left: -2.70468%;
}

@media only screen and (max-width: 768px) {
  /* line 519, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .design_des_sec .col2 .img_ct {
    width: 100%;
    left: 0;
    margin: 5% 0;
  }
}

/* line 530, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.design_des_sec .col2 .float_img2 {
  width: 100%;
  margin-bottom: 1.75rem;
}

/* line 535, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.design_des_sec .col3 {
  position: relative;
  margin-top: -21.56433%;
}

/* line 538, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.design_des_sec .col3 .float_img3 {
  position: absolute;
  top: 34.25076%;
  left: 9.57602%;
  width: 195px;
}

@media only screen and (max-width: 1024px) {
  /* line 538, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .design_des_sec .col3 .float_img3 {
    left: 0;
  }
}

@media only screen and (max-width: 768px) {
  /* line 538, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .design_des_sec .col3 .float_img3 {
    width: 60%;
    position: static;
    margin: 0;
  }
}

/* line 552, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.design_des_sec .col3 .img_ct {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-left: auto;
}

/* line 558, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.design_des_sec .col3 .img_ct .copy3 {
  width: 225px;
  margin-right: 6.06725%;
  margin-bottom: -0.2924%;
}

/* line 563, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.design_des_sec .col3 .img_ct .float_img4 {
  width: 38.37719%;
}

@media only screen and (max-width: 768px) {
  /* line 535, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .design_des_sec .col3 {
    margin-top: 10%;
  }
  /* line 569, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .design_des_sec .col3 .img_ct {
    width: 100%;
    display: block;
    margin: 5% 0;
  }
  /* line 573, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .design_des_sec .col3 .img_ct .copy3 {
    width: 100%;
    margin: 0 0 5%;
  }
  /* line 577, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .design_des_sec .col3 .img_ct .float_img4 {
    width: 80%;
    margin-left: auto;
    margin-right: 0;
  }
}

/* line 586, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.brickel_sec {
  margin-bottom: 5.99415%;
}

/* line 588, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.brickel_sec .col {
  display: flex;
}

/* line 590, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.brickel_sec .col p {
  color: #58534e;
}

@media only screen and (max-width: 768px) {
  /* line 588, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .brickel_sec .col {
    display: block;
  }
}

/* line 597, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.brickel_sec .col1 {
  margin-bottom: 2.99708%;
}

/* line 599, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.brickel_sec .col1 .float_img1 {
  width: 55.92105%;
  margin-left: 3.36257%;
}

@media only screen and (max-width: 768px) {
  /* line 599, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .brickel_sec .col1 .float_img1 {
    width: 100%;
    margin: 0 auto;
  }
}

/* line 607, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.brickel_sec .col1 .copy1 {
  width: 305px;
  margin-left: 2.31047vw;
  margin-top: -0.21661vw;
}

@media only screen and (max-width: 768px) {
  /* line 607, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .brickel_sec .col1 .copy1 {
    width: 100%;
    margin: 5% auto;
  }
}

/* line 616, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.brickel_sec .col1 strong {
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* line 621, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.brickel_sec .col2 {
  margin-bottom: 2.63158%;
}

/* line 623, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.brickel_sec .col2 .img_ct {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  /* line 623, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .brickel_sec .col2 .img_ct {
    flex-direction: column-reverse;
  }
}

/* line 631, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.brickel_sec .col2 .copy2 {
  margin-left: 27.85088%;
  width: 18.625rem;
}

@media only screen and (max-width: 768px) {
  /* line 631, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .brickel_sec .col2 .copy2 {
    margin-left: 0;
    width: 100%;
  }
}

/* line 639, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.brickel_sec .col2 .float_img2 {
  width: 195px;
  margin-top: 3.58187%;
}

@media only screen and (max-width: 768px) {
  /* line 639, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .brickel_sec .col2 .float_img2 {
    width: 50%;
    margin: 5% 0;
  }
}

@media only screen and (max-width: 767px) {
  /* line 639, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .brickel_sec .col2 .float_img2 {
    width: 80%;
  }
}

/* line 651, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.brickel_sec .col3 {
  display: block;
  margin: 0 auto;
  width: 28.25rem;
}

/* line 655, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.brickel_sec .col3 .float_img3 {
  width: 100%;
  margin-bottom: 2.5625rem;
}

/* line 659, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.brickel_sec .col3 .copy3 {
  width: 241px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  /* line 651, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .brickel_sec .col3 {
    margin: 10% 0;
    display: block;
    width: 100%;
  }
  /* line 667, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .brickel_sec .col3 .copy3 {
    width: 100%;
    margin: 0 auto;
  }
}

/* line 674, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.skyline_sec {
  position: relative;
  padding-bottom: 1.38889%;
  margin-bottom: 8.47953%;
}

/* line 678, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.skyline_sec h2 {
  bottom: 0;
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 4.6875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  z-index: 15;
  margin-left: 32.01754%;
  margin-top: -10%;
  position: relative;
}

/* line 692, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.skyline_sec h2 span {
  display: block;
}

@media only screen and (max-width: 767px) {
  /* line 692, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .skyline_sec h2 span {
    display: inline;
  }
}

/* line 699, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.skyline_sec .col {
  display: flex;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 767px) {
  /* line 699, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .skyline_sec .col {
    display: block;
  }
}

/* line 707, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.skyline_sec .float_img1 {
  width: 49.5614%;
}

@media only screen and (max-width: 1024px) {
  /* line 707, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .skyline_sec .float_img1 {
    width: 57%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 707, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .skyline_sec .float_img1 {
    width: 60%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 707, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .skyline_sec .float_img1 {
    width: 100%;
  }
}

/* line 719, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.skyline_sec .float_img2 {
  width: 23.875rem;
  margin-bottom: 1.25rem;
}

@media only screen and (max-width: 768px) {
  /* line 719, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .skyline_sec .float_img2 {
    width: 100%;
  }
}

/* line 726, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.skyline_sec .copy {
  width: 15.0625rem;
  max-width: 100%;
}

@media only screen and (max-width: 768px) {
  /* line 726, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .skyline_sec .copy {
    width: 100%;
  }
}

/* line 733, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.skyline_sec .img_ct {
  margin-left: 2.04678%;
}

@media only screen and (max-width: 768px) {
  /* line 733, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .skyline_sec .img_ct {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 733, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .skyline_sec .img_ct {
    width: 100%;
    margin: 0;
  }
}

/* line 743, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.skyline_sec .next_page_link {
  margin: 10% auto 0;
  text-align: right;
  padding-right: 10%;
}

/* line 747, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.skyline_sec .next_page_link span {
  margin-right: 2.5em;
}

@media only screen and (max-width: 1024px) {
  /* line 752, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .skyline_sec h2 {
    position: static;
    text-align: center;
    font-size: 3.125rem;
    margin: 5% 0;
  }
}

@media only screen and (max-width: 768px) {
  /* line 674, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .skyline_sec {
    display: block;
  }
}

/* line 764, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history-of-millionaires-row {
  background-color: #63b7d1;
  background-image: linear-gradient(180deg, #63b7d1 0%, #ffffff 100%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 200%;
}

/* line 770, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history-of-millionaires-row .wrapper {
  width: 1368px;
  max-width: 100%;
}

@media only screen and (max-width: 1024px) {
  /* line 770, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .history-of-millionaires-row .wrapper {
    max-width: 89.327485380117%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 770, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .history-of-millionaires-row .wrapper {
    max-width: 80%;
  }
}

/* line 780, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history-of-millionaires-row p {
  color: #fff;
}

/* line 784, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history-of-millionaires-row .site_footer * {
  color: #fff;
}

/* line 787, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history-of-millionaires-row .site_footer .go_up_btn svg .up_st0 {
  fill: #fff;
}

/* line 792, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec {
  padding: 12.5rem 0 6.25rem;
}

@media only screen and (max-width: 767px) {
  /* line 792, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .history_sec {
    padding: 6.25rem 0 3.125rem;
  }
}

/* line 797, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec h2 {
  color: #fff;
  font-family: "Saol Display";
  font-size: 9.375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  margin-left: 1em;
  margin-bottom: -0.4em;
  position: relative;
  z-index: 20;
}

/* line 809, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec h2 span {
  display: block;
  font-size: 0.33333em;
  letter-spacing: -0.01em;
  margin-bottom: 0.18em;
  margin-right: -0.12em;
}

@media only screen and (max-width: 1368px) {
  /* line 797, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .history_sec h2 {
    font-size: 10.83032vw;
  }
}

@media only screen and (max-width: 768px) {
  /* line 797, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .history_sec h2 {
    font-size: 5.625rem;
  }
}

@media only screen and (max-width: 767px) {
  /* line 797, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .history_sec h2 {
    margin-left: 0;
    font-size: 4.0625rem;
  }
}

/* line 827, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap1 {
  margin-bottom: 3.125rem;
}

/* line 829, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap1 .copy {
  display: flex;
}

/* line 831, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap1 .copy .float_img1 {
  width: 64.69298%;
  flex: 0 0 auto;
}

/* line 835, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap1 .copy .para_ct {
  width: 35.30702%;
  margin-top: 6%;
}

/* line 838, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap1 .copy .para_ct p {
  width: 409px;
  max-width: 80%;
  margin: 0 auto;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  /* line 829, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .history_sec .wrap1 .copy {
    display: block;
  }
  /* line 847, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .history_sec .wrap1 .copy .float_img1 {
    width: 100%;
  }
  /* line 850, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .history_sec .wrap1 .copy .para_ct {
    width: 100%;
  }
  /* line 852, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .history_sec .wrap1 .copy .para_ct p {
    width: 100%;
    max-width: 100%;
  }
}

/* line 860, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap2 {
  margin-bottom: 3.125rem;
}

/* line 862, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap2 .copy {
  width: 527px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  left: -4.67836%;
}

@media only screen and (max-width: 768px) {
  /* line 862, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .history_sec .wrap2 .copy {
    width: 100%;
    left: 0;
  }
}

/* line 873, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap2 .para_ct,
.history_sec .wrap2 .float_img2 {
  margin-bottom: 3.125rem;
}

/* line 877, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap2 .para_ct1 {
  margin-bottom: 0;
}

/* line 879, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap2 .para_ct1 > p {
  margin-bottom: 1.57143em;
}

/* line 882, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap2 .para_ct1 div {
  height: 0;
  overflow: hidden;
}

/* line 886, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap2 .para_ct1 div p strong {
  font-family: "Saol Display";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
}

/* line 895, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap2 .more_btn {
  color: #ffffff;
  font-family: "Saol Display";
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.5;
  position: relative;
  display: inline-block;
}

/* line 905, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap2 .more_btn:after {
  content: '';
  display: block;
  width: 1.9375em;
  height: 0.4375em;
  background: url(../images/wave_svg_white.svg) 0 0 no-repeat;
  background-size: 100%;
  margin: 0 auto;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.history_sec .wrap2 .more_btn:hover, .history_sec .wrap2 .more_btn:active {
  color: #1D6F89;
}

/* line 920, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap3 .float_img3 {
  width: 169px;
  margin-left: auto;
  margin-top: -8%;
  margin-right: 2.48538%;
  position: relative;
  z-index: 10;
}

/* line 928, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap3 .float_img4 {
  width: 684px;
  max-width: 100%;
  margin-left: auto;
  margin-right: 5.48246%;
  margin-top: -8%;
  position: relative;
  z-index: 8;
}

@media only screen and (max-width: 768px) {
  /* line 928, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .history_sec .wrap3 .float_img4 {
    width: 89.0625%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 928, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .history_sec .wrap3 .float_img4 {
    width: 100%;
  }
}

/* line 943, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap3 .para_ct {
  position: relative;
  z-index: 12;
  margin-left: 13.66959%;
  margin-top: -6.57895%;
}

/* line 948, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
.history_sec .wrap3 .para_ct h3 {
  width: 963px;
  max-width: 100%;
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 4.6875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  /* line 943, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .history_sec .wrap3 .para_ct {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  /* line 962, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_neighborhood.scss */
  .history_sec .wrap3 .para_ct h3 {
    font-size: 2.8125rem;
  }
}

/* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities {
  background-image: linear-gradient(180deg, #59a1a7 0%, #ffffff 100%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 124.47653vw;
}

/* line 8, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 124.47653vw;
  background-image: linear-gradient(180deg, #59a1a7 0%, #ffffff 100%);
}

/* line 24, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities #page {
  position: relative;
  z-index: 999;
}

/* line 28, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities.is_third_lvl {
  position: relative;
}

/* line 30, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities.is_third_lvl:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #59a1a7 0%, rgba(252, 253, 254, 0) 31%, #fff 100%);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 130.68592vw;
}

/* line 44, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities .wrapper {
  width: 1368px;
  max-width: 100%;
}

@media only screen and (max-width: 1024px) {
  /* line 44, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities .wrapper {
    max-width: 89.327485380117%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 44, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities .wrapper {
    max-width: 80%;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities {
    background-size: 100% 168.35938vw;
  }
  /* line 57, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities.is_third_lvl:after {
    background-size: 100% 176.75781vw;
  }
}

@media only screen and (max-width: 768px) {
  /* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities {
    background-size: 100% 224.47917vw;
  }
  /* line 65, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities.is_third_lvl:after {
    background-size: 100% 235.67708vw;
  }
}

@media only screen and (max-width: 767px) {
  /* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities {
    background-size: 100% 538.75vw;
  }
  /* line 73, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities.is_third_lvl:after {
    background-size: 100% 377.08333vw;
  }
}

/* line 80, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec {
  position: relative;
  padding-top: 9.9375rem;
  padding-bottom: 2.875rem;
}

/* line 84, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5.70175%;
  align-items: flex-start;
  position: relative;
}

/* line 90, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap .amenities_hero {
  width: 610px;
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 1024px) {
  /* line 90, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap .amenities_hero {
    width: 44.59064%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 90, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap .amenities_hero {
    position: static;
    width: 100%;
  }
}

/* line 103, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap .copy {
  margin-top: -3.50877%;
  position: relative;
  z-index: 10;
}

/* line 108, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
[data-lang='es'] .amenities_intro_sec .wrap .copy,
[data-lang='pt'] .amenities_intro_sec .wrap .copy {
  margin-left: 5%;
}

/* line 112, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap .copy .para_ct {
  width: 433px;
  max-width: 100%;
  margin-left: auto;
  margin-right: 0.5rem;
}

/* line 117, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap .copy .para_ct p {
  color: #fff;
}

/* line 121, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap .copy h1 {
  color: #fff;
  font-family: "Saol Display";
  font-size: 9.375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-left: -0.1em;
  margin-bottom: 0.64em;
}

/* line 130, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap .copy h1 span {
  display: block;
  font-size: 0.33333em;
  text-align: right;
  letter-spacing: -0.01em;
  margin-top: 0.14em;
  padding-right: 1.84em;
}

@media only screen and (max-width: 1024px) {
  /* line 103, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap .copy {
    margin-left: 10%;
  }
  /* line 141, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap .copy h1 {
    font-size: 6.25rem;
  }
}

@media only screen and (max-width: 768px) {
  /* line 103, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap .copy {
    width: 100%;
    margin: 5% auto 0;
  }
  /* line 148, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap .copy h1 {
    margin: 0 0 0.74em 0;
    text-align: left;
    font-size: 13.02083vw;
  }
  /* line 152, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap .copy h1 span {
    text-align: right;
    font-size: 0.5em;
    padding-right: 2em;
  }
  /* line 158, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap .copy .para_ct {
    margin: 0;
  }
}

@media only screen and (max-width: 768px) {
  /* line 84, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap {
    flex-direction: column-reverse;
  }
}

/* line 167, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap1 {
  position: relative;
}

/* line 169, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap1 .float_img1 {
  width: 190px;
  margin-left: 58.11404%;
  position: relative;
  z-index: 15;
}

@media only screen and (max-width: 768px) {
  /* line 169, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap1 .float_img1 {
    width: 24.73958vw;
  }
}

/* line 178, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap1 .copy {
  display: flex;
  position: relative;
  z-index: 10;
  margin-top: -4.38596%;
}

@media only screen and (max-width: 768px) {
  /* line 178, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap1 .copy {
    display: block;
  }
}

/* line 187, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap1 .float_img2 {
  width: 515px;
  margin-left: 23.46491%;
}

@media only screen and (max-width: 1024px) {
  /* line 187, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap1 .float_img2 {
    margin-left: 10%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 187, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap1 .float_img2 {
    width: 100%;
    margin: 0;
  }
}

/* line 198, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap1 .para_ct {
  width: 381px;
  margin-top: 5.55556%;
  margin-left: 2.70468%;
}

/* line 202, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap1 .para_ct h3, .amenities_intro_sec .wrap1 .para_ct p {
  color: #58534e;
}

/* line 205, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap1 .para_ct h3 {
  font-family: "Saol Display";
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.125;
  margin-bottom: 0.975em;
}

/* line 213, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap1 .para_ct p {
  width: 94.75066%;
}

@media only screen and (max-width: 768px) {
  /* line 198, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap1 .para_ct {
    width: 70%;
    margin-left: auto;
    margin-right: 10%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 198, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap1 .para_ct {
    width: 100%;
    margin: 6% 0 0;
  }
}

/* line 226, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_intro_sec .wrap1 .float_img3 {
  width: 452px;
  margin-top: -12.4269%;
}

@media only screen and (max-width: 768px) {
  /* line 226, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap1 .float_img3 {
    margin-top: 10%;
    width: 58.85417%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 226, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_intro_sec .wrap1 .float_img3 {
    width: 100%;
  }
}

/* line 239, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_list_sec {
  padding-top: 3.36257%;
  margin-bottom: 0.4375rem;
}

/* line 242, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.is_third_lvl .amenities_list_sec {
  margin-bottom: 3.5625rem;
}

/* line 245, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.is_ground_lvl .amenities_list_sec {
  margin-bottom: 6.375rem;
}

/* line 248, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_list_sec .amenities_list {
  display: flex;
  margin: 0 2.3125rem;
}

/* line 252, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_list_sec .amenities_list .col {
  position: relative;
  width: 50%;
}

/* line 259, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_list_sec .amenities_list .link_mt_ct {
  position: absolute;
  top: 48%;
  left: 47.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  perspective: 800px;
  z-index: 10;
}

/* line 268, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_list_sec .amenities_list .link_mt {
  color: #fff;
  font-family: "Saol Display";
  width: 6em;
  height: 6em;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  text-align: center;
  transition: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

/* line 284, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_list_sec .amenities_list .link_mt span {
  display: block;
}

/* line 287, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_list_sec .amenities_list .link_mt .btn_mt_svg {
  pointer-events: none;
  width: 96px;
  height: 96px;
  position: absolute;
  top: 111px;
  right: -40px;
}

/* line 296, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_list_sec .amenities_list .link_mt .btn_mt_svg .btn_mt_circle {
  stroke: #ddd7d0;
}

/* line 299, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_list_sec .amenities_list .link_mt .btn_mt_svg .btn_mt_arrow {
  fill: #fff;
}

/* line 305, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_list_sec .amenities_list .third_lvl .link_mt_ct {
  left: 53.1%;
  left: 50%;
}

/* line 308, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.amenities_list_sec .amenities_list .third_lvl .link_mt_ct .btn_mt_svg {
  right: -36px;
}

@media only screen and (max-width: 768px) {
  /* line 248, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_list_sec .amenities_list {
    display: block;
  }
  /* line 316, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .amenities_list_sec .amenities_list .col {
    width: 100%;
  }
}

/* line 324, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider1 {
  margin: 0 auto;
  z-index: 5;
  overflow: hidden;
  margin-bottom: 44px;
}

/* line 330, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider1 .js_slider_track {
  position: relative;
  width: 92.49097vw;
  height: calc(55.45126vw + 2.125rem);
  overflow: hidden;
  z-index: 5;
  margin: 0 auto;
}

/* line 340, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider1 .js_slide_mask {
  height: 55.45126vw;
}

/* line 344, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider1 .js_slider_btn {
  top: 48.2%;
}

/* line 347, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider1 .js_slider_btn .btn_mt_svg .btn_mt_circle {
  stroke: #ddd7d0;
}

/* line 350, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider1 .js_slider_btn .btn_mt_svg .btn_mt_arrow {
  fill: #fff;
}

/* line 355, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider1 figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 21.75rem;
  background-color: #fff;
  overflow: hidden;
  padding: 2.375rem;
  opacity: 0;
  transform: translateY(50%);
  transform-origin: 0 100%;
  transition: all 1s 1.3s cubic-bezier(0, 0, 0.2, 1);
}

/* line 367, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider1 figcaption p {
  color: #58534e;
  font-family: "Aaux Pro";
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.75;
  transition: opacity 0.75s 1.3s ease;
}

/* line 382, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider1 .js_slide.is-active figcaption {
  opacity: 1;
  transition-delay: 0s;
  transform: translateY(0%) rotate(0deg);
}

/* line 386, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider1 .js_slide.is-active figcaption p {
  transition-delay: 0s;
  opacity: 1;
}

/* line 392, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider1 .img_tag {
  left: auto;
  right: 12px;
}

@media only screen and (max-width: 768px) {
  /* line 402, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .ground_lvl_slider1 figcaption {
    width: 60%;
    padding: 1.625rem;
  }
}

@media only screen and (max-width: 767px) {
  /* line 324, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .ground_lvl_slider1 {
    margin-bottom: 1em;
  }
  /* line 418, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .ground_lvl_slider1 .js_slide_src {
    object-fit: initial;
    height: auto;
  }
  /* line 422, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .ground_lvl_slider1 figcaption {
    width: 80%;
    margin: 0 auto;
    padding: 1rem;
    position: static;
    transform: translate(0);
    opacity: 1;
  }
  /* line 433, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .ground_lvl_slider1 + .ground_lvl_detail_copy {
    width: 80%;
    margin: 0 auto;
    opacity: 1;
    margin-bottom: 2.75rem;
  }
}

/* line 467, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap1 {
  width: 324px;
  margin: 0 auto 81px;
}

/* line 470, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap1 .copy {
  width: 92.28395%;
  margin: 27px auto 0;
}

@media only screen and (max-width: 1024px) {
  /* line 467, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap1 {
    width: 31.64063%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 467, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap1 {
    width: 42.1875%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 467, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap1 {
    width: 100%;
  }
  /* line 482, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap1 .copy {
    width: 100%;
  }
}

/* line 487, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider2 {
  margin: 0 auto;
  z-index: 10;
  overflow: hidden;
}

/* line 491, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider2 .js_slider_track {
  position: relative;
  width: 89.38628vw;
  height: 47.29242vw;
  height: calc(45.12635vw + 2.125rem);
  overflow: hidden;
  z-index: 5;
  margin: 0 0 0 auto;
}

/* line 501, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider2 .js_slide_mask {
  height: 45.12635vw;
}

/* line 505, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider2 .js_slider_btn {
  top: 48.2%;
}

/* line 508, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider2 .js_slider_btn .btn_mt_svg .btn_mt_circle {
  stroke: #ddd7d0;
}

/* line 511, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider2 .js_slider_btn .btn_mt_svg .btn_mt_arrow {
  fill: #fff;
}

/* line 517, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider2 .js_slider_btn.prev_btn .btn_mt_svg .btn_mt_arrow {
  fill: #AFAFAF;
}

@media only screen and (max-width: 767px) {
  /* line 529, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .ground_lvl_slider2 .js_slider_track {
    margin: 0 auto;
  }
}

/* line 535, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap2 {
  position: relative;
  z-index: 5;
  margin-bottom: 3.72807%;
}

/* line 539, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap2 .copy {
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
  /* line 539, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap2 .copy {
    display: block;
  }
}

/* line 546, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap2 .float_img2 {
  width: 29.60526%;
  margin-right: 5.33626%;
  margin-top: -6.65205%;
}

@media only screen and (max-width: 767px) {
  /* line 546, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap2 .float_img2 {
    width: 70%;
    margin: 0 0 0 auto;
  }
}

/* line 555, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap2 .para_ct {
  width: 302px;
  margin-right: 3.94737%;
  margin-top: 1.38889%;
}

@media only screen and (max-width: 767px) {
  /* line 555, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap2 .para_ct {
    margin: 5% auto;
  }
}

/* line 563, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap2 .float_img3 {
  position: absolute;
  top: 6.787vw;
  left: 0;
  width: 196px;
}

@media only screen and (max-width: 1024px) {
  /* line 563, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap2 .float_img3 {
    width: 19.14063%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 563, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap2 .float_img3 {
    position: static;
    width: 25.52083%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 563, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap2 .float_img3 {
    width: 50%;
    margin-top: 3%;
  }
}

/* line 581, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap3 {
  position: relative;
  margin-bottom: 2.23827vw;
}

/* line 584, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap3 .copy {
  display: flex;
  align-items: flex-end;
}

@media only screen and (max-width: 767px) {
  /* line 584, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap3 .copy {
    display: block;
  }
}

/* line 591, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap3 .float_img4 {
  width: 642px;
}

@media only screen and (max-width: 1024px) {
  /* line 591, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap3 .float_img4 {
    width: 46.92982%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 591, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap3 .float_img4 {
    width: 94.41176%;
    margin: 0 auto;
  }
}

/* line 601, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap3 .para_ct {
  width: 273px;
  margin-right: 1.24269%;
  margin-left: 5.33626%;
  margin-bottom: 2.33918%;
}

@media only screen and (max-width: 767px) {
  /* line 601, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap3 .para_ct {
    width: 100%;
    margin: 15% auto 10%;
  }
}

/* line 612, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap4 {
  position: relative;
  margin-bottom: 9.86842%;
}

/* line 615, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap4 .copy {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  /* line 615, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap4 .copy {
    display: block;
  }
}

/* line 622, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap4 .float_img5 {
  width: 647px;
  margin-left: 5.33626%;
  margin-right: 3.36257%;
}

@media only screen and (max-width: 1024px) {
  /* line 622, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap4 .float_img5 {
    width: 47.29532%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 622, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap4 .float_img5 {
    width: 80%;
    margin-bottom: 5%;
  }
}

/* line 634, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap4 .para_ct {
  width: 407px;
  margin-top: -7.96784%;
}

/* line 637, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap4 .para_ct h3 {
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 2.1875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.28571;
}

@media only screen and (max-width: 768px) {
  /* line 637, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap4 .para_ct h3 {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 768px) {
  /* line 634, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap4 .para_ct {
    margin-top: 0;
    margin-left: auto;
    margin-right: 10%;
    width: 70%;
  }
  /* line 653, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap4 .para_ct h3 {
    font-size: 1.625rem;
  }
}

@media only screen and (max-width: 767px) {
  /* line 634, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap4 .para_ct {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

/* line 663, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap4 .float_img6 {
  position: absolute;
  right: 0;
  bottom: 217px;
  width: 194px;
}

@media only screen and (max-width: 1368px) {
  /* line 663, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap4 .float_img6 {
    bottom: 15.66787vw;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 663, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap4 .float_img6 {
    width: 18.94531%;
    bottom: 21.19141vw;
  }
}

@media only screen and (max-width: 768px) {
  /* line 663, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap4 .float_img6 {
    position: static;
    width: 25.26042%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 663, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap4 .float_img6 {
    width: 50%;
    margin: 5% 0;
  }
}

/* line 684, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap4 .float_img7 {
  margin: 0 auto;
  margin-top: -0.95029%;
  width: 583px;
}

@media only screen and (max-width: 1024px) {
  /* line 684, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap4 .float_img7 {
    width: 56.93359%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 684, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap4 .float_img7 {
    width: 75.91146%;
    margin-top: 3%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 684, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap4 .float_img7 {
    width: 80%;
  }
}

/* line 700, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap5 {
  position: relative;
  margin-bottom: 12.7193%;
}

/* line 703, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap5 .copy {
  display: flex;
  align-items: flex-end;
}

@media only screen and (max-width: 768px) {
  /* line 703, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap5 .copy {
    flex-direction: column-reverse;
  }
}

/* line 710, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap5 .para_ct {
  width: 264px;
  margin-left: 15.93567%;
  margin-right: 1.90058%;
  margin-bottom: 2.33918%;
}

@media only screen and (max-width: 768px) {
  /* line 710, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap5 .para_ct {
    width: 70%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 710, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap5 .para_ct {
    width: 100%;
    margin: 0;
  }
}

/* line 723, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap5 .float_img8 {
  width: 642px;
}

@media only screen and (max-width: 1024px) {
  /* line 723, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap5 .float_img8 {
    width: 62.69531%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 723, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap5 .float_img8 {
    width: 83.59375%;
  }
}

/* line 732, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .wrap5 .float_img9 {
  position: absolute;
  top: -106px;
  left: 0;
  width: 320px;
}

@media only screen and (max-width: 1368px) {
  /* line 732, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap5 .float_img9 {
    top: -7.65343vw;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 732, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap5 .float_img9 {
    width: 31.25%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 732, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap5 .float_img9 {
    width: 41.66667%;
    position: static;
    margin-top: 5%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 732, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .wrap5 .float_img9 {
    width: 70%;
  }
}

/* line 754, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider3 {
  margin: 0 auto 30px;
  z-index: 5;
  overflow: hidden;
}

/* line 758, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider3 .js_slider_track {
  position: relative;
  width: 88.01444vw;
  height: calc(45.12635vw + 2.125rem);
  overflow: hidden;
  z-index: 5;
  margin: 0;
}

/* line 767, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider3 .js_slide_mask {
  height: 45.12635vw;
}

/* line 770, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider3 .js_slider_btn {
  top: 47.5%;
}

/* line 773, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider3 .js_slider_btn .btn_mt_svg .btn_mt_circle {
  stroke: #f8e6d5;
}

/* line 776, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider3 .js_slider_btn .btn_mt_svg .btn_mt_arrow {
  fill: #afafaf;
}

/* line 780, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider3 .js_slider_btn.prev_btn {
  left: -2.81588vw;
}

/* line 783, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider3 .js_slider_btn.next_btn {
  right: -2.81588vw;
}

/* line 787, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider3 figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 348px;
  background-color: #fff;
  overflow: hidden;
  padding: 38px;
  opacity: 0;
  transform: translateY(50%);
  transform-origin: 0 100%;
  transition: all 1s 1.3s cubic-bezier(0, 0, 0.2, 1);
}

/* line 799, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider3 figcaption p {
  color: #58534e;
  font-family: "Aaux Pro";
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.75;
  transition: opacity 0.75s 1.3s ease;
}

/* line 811, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider3 .js_slide.is-active figcaption {
  opacity: 1;
  transition-delay: 0s;
  transform: translateY(0%) rotate(0deg);
}

/* line 815, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider3 .js_slide.is-active figcaption p {
  transition-delay: 0s;
  opacity: 1;
}

/* line 822, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_slider3 .js_slide:not(.is-first) .img_tag {
  left: auto;
  right: 0.75rem;
}

@media only screen and (max-width: 768px) {
  /* line 833, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .ground_lvl_slider3 figcaption {
    width: 60%;
    padding: 1.625rem;
  }
}

@media only screen and (max-width: 767px) {
  /* line 754, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .ground_lvl_slider3 {
    margin-bottom: 1em;
  }
  /* line 840, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .ground_lvl_slider3 .js_slider_track {
    width: 100%;
  }
  /* line 844, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .ground_lvl_slider3 figcaption {
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    padding: 1.625rem;
  }
  /* line 848, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .ground_lvl_slider3 figcaption p {
    font-size: 0.75rem;
  }
  /* line 852, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .ground_lvl_slider3 + .ground_lvl_detail_copy {
    width: 80%;
    margin: 0 auto;
    opacity: 1;
    margin-bottom: 2.75rem;
  }
}

/* line 861, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3.5rem;
}

@media only screen and (max-width: 768px) {
  /* line 861, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .ground_lvl_map .wrap {
    display: block;
  }
}

/* line 869, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img {
  width: 71.98556vw;
  position: relative;
}

/* line 872, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.71429em;
  height: 1.71429em;
  border: 1px solid #1d6f89;
  background-color: #ffffff;
  text-align: center;
  color: #58534e;
  font-family: "Aaux Pro";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.57143;
  border-radius: 1.71429em;
  user-select: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

/* line 892, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point.active, .ground_lvl_detail .ground_lvl_map .map_img .map_point:hover {
  background-color: #1d6f89;
  color: #fff;
}

/* line 897, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point.active {
  pointer-events: none;
}

/* line 900, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point1 {
  top: 47.08098%;
  left: 8.32497%;
}

/* line 904, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point2 {
  top: 47.08098%;
  left: 19.65898%;
}

/* line 908, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point3 {
  top: 28.81356%;
  left: 16.34905%;
}

/* line 912, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point4 {
  top: 22.78719%;
  left: 18.75627%;
}

/* line 916, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point5 {
  top: 25.04708%;
  left: 22.0662%;
}

/* line 920, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point6 {
  top: 13.18267%;
  left: 26.88064%;
}

/* line 924, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point7 {
  top: 31.07345%;
  left: 28.68606%;
}

/* line 928, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point8 {
  top: 33.33333%;
  left: 24.47342%;
}

/* line 932, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point9 {
  top: 47.08098%;
  left: 36.30893%;
}

/* line 936, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point10 {
  top: 20.52731%;
  left: 47.64293%;
}

/* line 940, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point11 {
  top: 65.53672%;
  left: 27.48245%;
}

/* line 944, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point12 {
  top: 71.37476%;
  left: 18.75627%;
}

/* line 948, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point13 {
  top: 81.16761%;
  left: 24.47342%;
}

/* line 952, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point14 {
  top: 47.08098%;
  left: 55.3661%;
}

/* line 956, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_img .map_point15 {
  top: 47.08098%;
  left: 88.3651%;
}

@media only screen and (max-width: 767px) {
  /* line 872, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .ground_lvl_map .map_img .map_point {
    font-size: 0.75rem;
  }
}

@media only screen and (max-width: 768px) {
  /* line 869, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .ground_lvl_detail .ground_lvl_map .map_img {
    width: 124%;
    margin: 0 -12%;
  }
}

/* line 970, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_accordion_data {
  margin-top: 24px;
  margin-left: 34px;
  width: 219px;
  flex: 0 0 auto;
}

/* line 975, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_accordion_data h4 {
  color: #58534e;
  font-family: "Aaux Pro";
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.57143;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* line 985, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_accordion {
  counter-reset: my-counter;
}

/* line 987, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_accordion li {
  counter-increment: my-counter;
}

/* line 989, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_accordion li > p {
  color: #58534e;
}

/* line 992, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_accordion li > p:before {
  content: counter(my-counter) ".";
  width: 26px;
  display: inline-block;
}

/* line 998, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_accordion li div {
  margin-left: 61px;
  overflow: hidden;
}

/* line 1001, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_accordion li div p {
  color: #afafaf;
  letter-spacing: -0.01em;
  line-height: 1.14286;
  margin-top: 6px;
}

/* line 1010, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_interation_link {
  margin: 0 auto;
  position: relative;
  display: inline-block;
  text-align: left;
  margin-left: -78px;
}

/* line 1016, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_interation_link h3 {
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 2.1875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* line 1023, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_interation_link h3 span {
  display: block;
}

/* line 1027, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_interation_link .link_mt {
  position: absolute;
  bottom: -3.5rem;
  right: -3.25rem;
  display: flex;
  align-items: flex-end;
  color: #1d6f89;
  font-family: "Aaux Pro";
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
}

/* line 1040, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_interation_link .link_mt * {
  pointer-events: none;
}

/* line 1043, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_interation_link .link_mt span {
  margin-right: -7.8125rem;
  margin-bottom: 0.875rem;
}

/* line 1047, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_interation_link .link_mt .btn_mt_svg {
  position: static;
  width: 6rem;
  height: 6rem;
}

/* line 1051, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_interation_link .link_mt .btn_mt_svg .btn_mt_circle {
  stroke: rgba(221, 215, 208, 0.45);
}

/* line 1054, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.ground_lvl_detail .ground_lvl_map .map_interation_link .link_mt .btn_mt_svg .btn_mt_arrow {
  fill: rgba(108, 101, 96, 0.36);
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.ground_lvl_detail .ground_lvl_map .map_interation_link .link_mt:hover, .ground_lvl_detail .ground_lvl_map .map_interation_link .link_mt:active {
  text-decoration: underline;
}

/* line 1067, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .float_img01 {
  width: 82.16374%;
  margin: 0 8.23105vw 0 auto;
}

@media only screen and (max-width: 767px) {
  /* line 1067, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .float_img01 {
    width: 100%;
  }
}

/* line 1074, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_slider1 {
  margin: 0 auto;
  z-index: 10;
  overflow: hidden;
}

/* line 1078, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_slider1 .js_slider_track {
  position: relative;
  width: 81.15523vw;
  height: 47.29242vw;
  overflow: hidden;
  z-index: 5;
  margin: 0 8.23105vw 0 auto;
}

/* line 1087, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_slider1 .js_slide_mask {
  height: 45.12635vw;
}

/* line 1091, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_slider1 .js_slider_btn {
  top: 47.8%;
}

/* line 1094, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_slider1 .js_slider_btn .btn_mt_svg .btn_mt_circle {
  stroke: #f8e6d5;
}

/* line 1097, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_slider1 .js_slider_btn .btn_mt_svg .btn_mt_arrow {
  fill: #ddd7d0;
}

@media only screen and (max-width: 1024px) {
  /* line 1103, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .third_lvl_slider1 .js_slider_track {
    height: 48.73646vw;
  }
}

@media only screen and (max-width: 767px) {
  /* line 1108, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .third_lvl_slider1 .js_slider_track {
    width: 100%;
    height: 51.62455vw;
  }
}

/* line 1114, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .wrap1 {
  margin-top: 10px;
}

/* line 1116, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .wrap1 .copy {
  display: flex;
  align-items: flex-end;
}

@media only screen and (max-width: 768px) {
  /* line 1116, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .wrap1 .copy {
    display: block;
  }
}

/* line 1123, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .wrap1 .para_ct {
  width: 298px;
  margin-left: 28.21637%;
  margin-right: 4.82456%;
  margin-bottom: -0.5117%;
}

@media only screen and (max-width: 768px) {
  /* line 1123, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .wrap1 .para_ct {
    display: block;
    width: 38.80208vw;
    margin: 5% 4.82456% 5% 28.21637%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 1123, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .wrap1 .para_ct {
    display: block;
    width: 100%;
    margin: 5% auto;
  }
}

/* line 1139, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .wrap1 .float_img1 {
  width: 29.67836%;
}

@media only screen and (max-width: 768px) {
  /* line 1139, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .wrap1 .float_img1 {
    width: 52.86458vw;
    margin: 5% 2.5rem 5% auto;
  }
}

@media only screen and (max-width: 767px) {
  /* line 1139, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .wrap1 .float_img1 {
    width: 60%;
  }
}

/* line 1151, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .wrap2 {
  position: relative;
  margin-top: 10.96491%;
}

/* line 1154, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .wrap2 .copy {
  display: flex;
}

@media only screen and (max-width: 768px) {
  /* line 1154, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .wrap2 .copy {
    display: block;
  }
}

/* line 1160, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .wrap2 .para_ct {
  width: 250px;
  margin-top: -0.1462%;
}

@media only screen and (max-width: 768px) {
  /* line 1160, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .wrap2 .para_ct {
    width: 50%;
    margin: 5% 10% 5% auto;
  }
}

@media only screen and (max-width: 767px) {
  /* line 1160, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .wrap2 .para_ct {
    width: 100%;
  }
}

/* line 1171, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .wrap2 .float_img2 {
  width: 46.92982%;
  margin-left: 5.33626%;
  margin-right: 1.60819%;
}

@media only screen and (max-width: 768px) {
  /* line 1171, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .wrap2 .float_img2 {
    width: 83.59375%;
  }
}

/* line 1179, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .wrap2 .float_img3 {
  position: absolute;
  bottom: -7.89474%;
  left: 53.87427%;
  width: 196px;
}

@media only screen and (max-width: 768px) {
  /* line 1179, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .wrap2 .float_img3 {
    width: 28.82353%;
    position: static;
  }
}

@media only screen and (max-width: 767px) {
  /* line 1179, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .wrap2 .float_img3 {
    width: 40%;
  }
}

/* line 1194, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .wrap4 {
  position: relative;
  margin-top: 12.6462%;
}

/* line 1197, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .wrap4 .copy {
  display: block;
}

/* line 1200, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .wrap4 .float_img4 {
  margin-bottom: 0.1462%;
}

@media only screen and (max-width: 768px) {
  /* line 1200, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .wrap4 .float_img4 {
    margin-bottom: 5%;
  }
}

/* line 1206, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .wrap4 .para_ct {
  width: 301px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  /* line 1194, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .wrap4 {
    margin-bottom: 10%;
  }
}

/* line 1215, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map {
  margin-top: 4.09357%;
}

/* line 1217, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

@media only screen and (max-width: 767px) {
  /* line 1217, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .third_lvl_map .wrap {
    display: block;
  }
}

/* line 1226, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_img {
  width: 37.2807%;
  position: relative;
}

/* line 1230, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_img .map_point {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #1d6f89;
  background-color: #ffffff;
  text-align: center;
  color: #58534e;
  font-family: "Aaux Pro";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.57143;
  border-radius: 1.5rem;
  user-select: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

/* line 1250, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_img .map_point.active, .third_lvl_detail .third_lvl_map .map_img .map_point:hover {
  background-color: #1d6f89;
  color: #fff;
}

/* line 1255, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_img .map_point.active {
  pointer-events: none;
}

/* line 1258, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_img .map_point1 {
  top: 62.19839%;
  left: 71.96078%;
}

/* line 1262, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_img .map_point2 {
  top: 34.4504%;
  left: 69.60784%;
}

/* line 1266, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_img .map_point3 {
  top: 59.78552%;
  left: 50%;
}

/* line 1270, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_img .map_point4 {
  top: 43.29759%;
  left: 49.21569%;
}

/* line 1274, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_img .map_point5 {
  top: 25.87131%;
  left: 69.60784%;
}

@media only screen and (max-width: 768px) {
  /* line 1226, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .third_lvl_map .map_img {
    width: 49.80469%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 1226, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .third_lvl_map .map_img {
    width: 100%;
  }
}

/* line 1286, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_accordion_data {
  margin-top: 6.35965%;
  margin-left: 4.82456%;
  width: 219px;
}

/* line 1290, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_accordion_data h4 {
  color: #58534e;
  font-family: "Aaux Pro";
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.57143;
  text-transform: uppercase;
  margin-bottom: 22px;
}

@media only screen and (max-width: 767px) {
  /* line 1286, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .third_lvl_map .map_accordion_data {
    margin-bottom: 10%;
  }
}

/* line 1303, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_accordion {
  counter-reset: my-counter;
}

/* line 1305, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_accordion li {
  counter-increment: my-counter;
}

/* line 1307, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_accordion li > p {
  color: #58534e;
}

/* line 1310, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_accordion li > p:before {
  content: counter(my-counter) ".";
  width: 1.85714em;
  display: inline-block;
}

/* line 1316, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_accordion li div {
  margin-left: 3.8125rem;
  overflow: hidden;
}

/* line 1319, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_accordion li div p {
  color: #afafaf;
  letter-spacing: -0.01em;
  line-height: 1.14286;
  margin-top: 0.42857em;
}

/* line 1328, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_interation_link {
  position: absolute;
  bottom: 57px;
  bottom: 12.7924%;
  right: 18.27485%;
}

/* line 1333, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_interation_link h3 {
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 2.1875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* line 1340, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_interation_link h3 span {
  display: block;
}

/* line 1344, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_interation_link .link_mt {
  position: absolute;
  bottom: -3.5rem;
  right: -3.25rem;
  display: flex;
  align-items: flex-end;
  color: #1d6f89;
  font-family: "Aaux Pro";
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
}

/* line 1357, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_interation_link .link_mt * {
  pointer-events: none;
}

/* line 1360, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_interation_link .link_mt span {
  margin-right: -7.8125rem;
  margin-bottom: 0.875rem;
}

/* line 1364, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_interation_link .link_mt .btn_mt_svg {
  position: static;
  width: 6rem;
  height: 6rem;
}

/* line 1368, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_interation_link .link_mt .btn_mt_svg .btn_mt_circle {
  stroke: #afafaf;
}

/* line 1371, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
.third_lvl_detail .third_lvl_map .map_interation_link .link_mt .btn_mt_svg .btn_mt_arrow {
  fill: #00a5b2;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.third_lvl_detail .third_lvl_map .map_interation_link .link_mt:hover, .third_lvl_detail .third_lvl_map .map_interation_link .link_mt:active {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  /* line 1328, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_amenities.scss */
  .third_lvl_detail .third_lvl_map .map_interation_link {
    position: static;
    display: inline-block;
    position: relative;
    bottom: auto;
    right: auto;
    text-align: left;
    margin-left: -78px;
  }
}

/* line 8, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team .wrapper {
  width: 1368px;
  max-width: 100%;
}

@media only screen and (max-width: 1024px) {
  /* line 8, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team .wrapper {
    max-width: 89.327485380117%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 8, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team .wrapper {
    max-width: 80%;
  }
  /* line 16, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team .wrapper .float_img.img_has_tag .img_tag {
    line-height: 1.3;
  }
}

/* line 22, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_intro_sec {
  position: relative;
  padding-top: 8.6875rem;
  margin-bottom: 5.77485%;
}

/* line 26, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_intro_sec .wrap {
  display: flex;
  align-items: flex-start;
}

@media only screen and (max-width: 768px) {
  /* line 26, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_intro_sec .wrap {
    flex-direction: column-reverse;
  }
}

/* line 33, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_intro_sec .team_hero {
  width: 36.9152%;
  position: absolute;
  top: 0;
  left: 50.3655%;
}

@media only screen and (max-width: 768px) {
  /* line 33, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_intro_sec .team_hero {
    width: 100%;
    position: static;
    margin: 0 auto;
  }
}

/* line 47, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_intro_sec .copy {
  position: relative;
  margin-left: 5.33626%;
  margin-top: 0.65789%;
  margin-right: -5.92105%;
  z-index: 15;
}

/* line 53, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_intro_sec .copy h2 {
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 9.375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-left: -0.1em;
  margin-bottom: 0.74em;
}

/* line 62, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_intro_sec .copy h2 span {
  display: block;
  font-size: 0.33333em;
  text-align: right;
  letter-spacing: -0.01em;
  margin-top: 0.14em;
  padding-right: 2.7em;
}

@media only screen and (max-width: 1368px) {
  /* line 53, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_intro_sec .copy h2 {
    font-size: 10.83032vw;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 75, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_intro_sec .copy .para_ct {
    left: 0;
    margin: 0;
  }
}

@media only screen and (max-width: 768px) {
  /* line 47, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_intro_sec .copy {
    padding: 0;
    margin: 5% auto 0;
    width: 100%;
  }
  /* line 84, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_intro_sec .copy h2 {
    margin: 0 0 0.74em 0;
    text-align: left;
    font-size: 13.02083vw;
  }
  /* line 88, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_intro_sec .copy h2 span {
    text-align: left;
    font-size: 0.5em;
  }
}

@media only screen and (max-width: 767px) {
  /* line 96, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_intro_sec .copy h2 {
    font-size: 14.70588vw;
  }
}

/* line 101, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_intro_sec .para_ct {
  width: 375px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  left: -0.4375rem;
}

/* line 109, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec {
  margin-bottom: 1.68129%;
}

/* line 111, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap {
  width: 1222px;
  max-width: 89.327485380117%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  /* line 111, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap {
    margin: 5% auto;
  }
}

@media only screen and (max-width: 768px) {
  /* line 111, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap {
    margin: 10% auto;
  }
}

/* line 123, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap .copy {
  display: flex;
}

@media only screen and (max-width: 1024px) {
  /* line 123, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap .copy {
    display: block;
  }
}

/* line 130, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap .img_has_tag .img_tag {
  text-transform: none;
}

/* line 134, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap .para_ct {
  color: #58534e;
}

/* line 136, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap .para_ct h3 {
  font-family: "Saol Display";
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 3px;
}

/* line 144, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap .para_ct h4 {
  font-family: "Aaux Pro";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.57143;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.57143em;
}

/* line 153, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap .para_ct a {
  color: #1d6f89;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.team_list_sec .wrap .para_ct a:hover, .team_list_sec .wrap .para_ct a:active {
  text-decoration: underline;
}

/* line 161, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap1 {
  margin-bottom: 6.21345%;
}

/* line 163, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap1 .copy {
  align-items: flex-start;
}

/* line 166, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap1 .float_img1 {
  width: 46.48118%;
  margin-right: 3.68249%;
  margin-left: 0.2455%;
}

/* line 170, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap1 .float_img1 div {
  margin-bottom: 1.0625rem;
}

/* line 173, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap1 .float_img1 .img_tag {
  margin-left: 4.25rem;
}

/* line 177, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap1 .para_ct {
  width: 31.09656%;
  margin-top: 19.72177%;
}

@media only screen and (max-width: 1024px) {
  /* line 161, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap1 {
    margin-bottom: 0;
  }
  /* line 183, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap1 .float_img1 {
    width: 60%;
  }
  /* line 186, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap1 .para_ct {
    width: 50%;
    margin: 0 0 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  /* line 192, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap1 .float_img1 {
    width: 80%;
  }
  /* line 195, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap1 .para_ct {
    width: 80%;
    margin: 3% 0 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  /* line 201, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap1 .float_img1 {
    width: 90%;
  }
  /* line 204, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap1 .para_ct {
    width: 100%;
    margin: 3% auto 0 auto;
  }
}

/* line 211, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap2 {
  margin-bottom: 7.23684%;
}

/* line 213, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap2 .copy {
  align-items: flex-start;
  margin-left: 16.20295%;
}

/* line 217, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap2 .float_img2 {
  position: absolute;
  right: -5.97381%;
  top: -12.92962%;
  width: 20.13093%;
}

/* line 223, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap2 .float_img3 {
  width: 331px;
  margin-right: 2.61866%;
}

/* line 226, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap2 .float_img3 div {
  margin-bottom: 1.3125rem;
}

/* line 229, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap2 .float_img3 .img_tag {
  line-height: 1.16667;
  width: 172px;
  margin-left: 1.0625rem;
}

/* line 233, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap2 .float_img3 .img_tag:after {
  margin-top: 0.5rem;
}

/* line 238, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap2 .para_ct {
  width: 37.07038%;
  margin-top: 20.5401%;
}

@media only screen and (max-width: 1024px) {
  /* line 211, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap2 {
    margin-bottom: 0;
  }
  /* line 244, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap2 .float_img2 {
    position: static;
    width: 24.02344%;
    margin: 5% 0 -5% auto;
  }
  /* line 249, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap2 .float_img3 {
    width: 32.32422vw;
  }
  /* line 252, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap2 .para_ct {
    width: 60%;
    margin: 0 0 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  /* line 211, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap2 {
    margin-bottom: 0;
  }
  /* line 259, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap2 .copy {
    margin-left: 0;
  }
  /* line 262, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap2 .float_img2 {
    width: 35%;
  }
  /* line 265, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap2 .float_img3 {
    width: 60%;
  }
  /* line 268, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap2 .para_ct {
    width: 80%;
    margin: 3% 0 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  /* line 274, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap2 .float_img2 {
    width: 45%;
  }
  /* line 277, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap2 .float_img3 {
    width: 80%;
  }
  /* line 280, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap2 .para_ct {
    width: 100%;
    margin: 3% auto 0 auto;
  }
}

/* line 287, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap3 .copy {
  align-items: flex-start;
}

/* line 291, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap3 .float_img4 {
  margin-top: 6.71031%;
  width: 43.28969%;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
}

/* line 297, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap3 .float_img4 div {
  width: 62.19282%;
  margin-bottom: 0;
}

/* line 301, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap3 .float_img4 .img_tag {
  line-height: 1.16667;
  width: 32.51418%;
  margin-left: 5.29301%;
  position: absolute;
  left: 100%;
  bottom: 0;
  position: static;
}

/* line 309, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap3 .float_img4 .img_tag:after {
  margin-top: 8px;
}

/* line 314, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap3 .para_ct {
  width: 37.07038%;
  margin-right: 2.86416%;
  margin-left: 12.60229%;
}

@media only screen and (max-width: 1024px) {
  /* line 320, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap3 .float_img4 {
    width: 45%;
    margin: -3% 0 0 auto;
    display: block;
  }
  /* line 324, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap3 .float_img4 div {
    width: 100%;
    margin-bottom: 1.0625rem;
  }
  /* line 329, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap3 .para_ct {
    width: 50%;
    margin: 0;
  }
}

@media only screen and (max-width: 768px) {
  /* line 335, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap3 .float_img4 {
    width: 60%;
    margin-top: 3%;
  }
  /* line 338, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap3 .float_img4 .img_tag {
    width: 70%;
  }
  /* line 342, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap3 .para_ct {
    width: 100%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  /* line 348, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap3 .float_img4 {
    width: 80%;
    margin-top: 10%;
  }
}

/* line 354, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap4 {
  margin-top: -2.70468%;
  margin-bottom: 2.99708%;
}

/* line 357, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap4 .float_img5 {
  width: 33.46972%;
  margin-right: 4.33715%;
}

/* line 360, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap4 .float_img5 div {
  margin-bottom: 1.3125rem;
}

/* line 363, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap4 .float_img5 .img_tag {
  line-height: 1.16667;
  width: 10.75rem;
  margin-left: 37.65281%;
}

/* line 367, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap4 .float_img5 .img_tag:after {
  margin-top: 5px;
}

/* line 372, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap4 .para_ct {
  width: 36.98854%;
  margin-top: 17.26678%;
}

@media only screen and (max-width: 1024px) {
  /* line 354, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap4 {
    margin-bottom: 0;
    margin-top: 0;
  }
  /* line 379, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap4 .float_img5 {
    width: 40%;
  }
  /* line 382, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap4 .para_ct {
    width: 60%;
    margin: 0 0 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  /* line 388, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap4 .float_img5 {
    width: 60%;
  }
  /* line 391, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap4 .para_ct {
    width: 80%;
    margin-top: 3%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 397, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap4 .float_img5 {
    width: 80%;
  }
  /* line 400, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap4 .para_ct {
    width: 100%;
  }
}

/* line 406, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap5 .copy {
  align-items: flex-start;
}

/* line 409, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap5 .float_img6 {
  width: 55.07365%;
  display: flex;
  align-items: flex-end;
}

/* line 413, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap5 .float_img6 div {
  width: 75.48291%;
  margin-bottom: 0;
}

/* line 417, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap5 .float_img6 .img_tag {
  line-height: 1.16667;
  width: 21.39673%;
  margin-left: 3.12036%;
  margin-bottom: 1rem;
}

/* line 426, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap5 .float_img6 .img_tag:after {
  margin-top: 5px;
}

/* line 431, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap5 .para_ct {
  width: 31.75123%;
  margin-top: 22.83142%;
  margin-left: 12.60229%;
  margin-right: 0.57283%;
}

@media only screen and (max-width: 1024px) {
  /* line 438, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap5 .float_img6 {
    width: 65%;
    display: block;
    margin: 0 0 0 auto;
  }
  /* line 442, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap5 .float_img6 div {
    width: 100%;
    margin-bottom: 1.0625rem;
  }
  /* line 446, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap5 .float_img6 .img_tag {
    width: 70%;
  }
  /* line 450, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap5 .para_ct {
    width: 60%;
    margin-top: 0;
  }
}

@media only screen and (max-width: 768px) {
  /* line 456, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap5 .float_img6 {
    width: 60%;
  }
  /* line 459, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap5 .para_ct {
    width: 80%;
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  /* line 465, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap5 .float_img6 {
    width: 90%;
  }
  /* line 468, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap5 .para_ct {
    width: 100%;
    margin-bottom: 5%;
  }
}

/* line 474, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap6 {
  margin-top: -0.57283%;
}

/* line 476, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap6 .copy {
  align-items: flex-start;
}

/* line 479, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap6 .float_img7 {
  width: 30.03273%;
  margin-right: 2.45499%;
  margin-left: 32.16039%;
}

/* line 483, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap6 .float_img7 div {
  margin-bottom: 0.625rem;
}

/* line 486, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap6 .float_img7 .img_tag {
  line-height: 1.16667;
  width: 201px;
  margin-left: 0.75rem;
}

/* line 490, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap6 .float_img7 .img_tag:after {
  margin-top: 5px;
}

/* line 495, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap6 .para_ct {
  width: 31.75123%;
  margin-top: 13.74795%;
}

/* line 499, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap6 .next_page_link {
  margin: 10% auto;
  text-align: right;
  padding-right: 10%;
}

/* line 503, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
.team_list_sec .wrap6 .next_page_link span {
  margin-right: 2.5em;
}

@media only screen and (max-width: 1024px) {
  /* line 474, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap6 {
    margin-top: 0;
  }
  /* line 509, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap6 .float_img7 {
    width: 35%;
    margin-left: 15%;
  }
  /* line 513, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap6 .para_ct {
    width: 60%;
    margin: 0 0 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  /* line 519, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap6 .float_img7 {
    width: 60%;
    margin: 0;
  }
  /* line 523, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap6 .para_ct {
    width: 80%;
    margin-top: 3%;
  }
}

@media only screen and (max-width: 767px) {
  /* line 529, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap6 .float_img7 {
    width: 80%;
  }
  /* line 532, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_team.scss */
  .team_list_sec .wrap6 .para_ct {
    width: 100%;
  }
}

/* line 7, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_catagory h3 {
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 0.6875em;
}

/* line 16, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_catagory h3:after {
  content: '';
  display: block;
  width: 31px;
  height: 7px;
  background: url(../images/wave_svg.svg) 0 0/100% no-repeat;
  margin: 6px 0 0 1px;
}

/* line 25, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_catagory li {
  margin-bottom: 1px;
}

/* line 28, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_catagory a {
  color: #afafaf;
  font-family: "Aaux Pro";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  letter-spacing: -0.01em;
  display: block;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.news_catagory a:hover, .news_catagory a:active {
  text-decoration: underline;
}

/* line 42, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_article_list article {
  margin-bottom: 22px;
}

/* line 48, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_article_list_link {
  display: flex;
  align-items: flex-start;
  padding-bottom: 46px;
  position: relative;
}

/* line 54, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_article_list_img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 33.97933%;
  margin-right: 5.29716%;
}

/* line 61, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_article_list_data {
  width: 470px;
  margin-top: -1.03359%;
}

/* line 65, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_article_list_title {
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.125;
  margin-bottom: 0.2em;
}

/* line 73, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_article_list_date {
  margin-bottom: 1.28571em;
}

/* line 77, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_article_list_link .link_mt {
  opacity: 0;
  transition: opacity 0.3s ease-out;
  color: #afafaf;
  font-family: "Aaux Pro";
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 31px;
}

/* line 91, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_article_list_link .link_mt span {
  margin-left: -20px;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.news_article_list_link .link_mt:hover, .news_article_list_link .link_mt:active {
  text-decoration: underline;
}

/* line 98, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_article_list_link .btn_mt_svg {
  width: 96px;
  height: 96px;
  position: static;
}

/* line 102, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_article_list_link .btn_mt_svg .btn_mt_circle {
  stroke: #f7f3ef;
}

/* line 105, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_article_list_link .btn_mt_svg .btn_mt_arrow {
  fill: #ddd7d0;
}

/* line 110, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_article_list_link:hover .link_mt {
  opacity: 1;
}

/* line 116, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_sec {
  padding-top: 11rem;
  margin-bottom: 5.375rem;
}

/* line 120, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_sec .wrap {
  width: 1290px;
  max-width: 94.29825%;
  margin: 0 auto;
  display: flex;
}

/* line 127, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_sec .prime_head {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: right;
  color: #ddd7d0;
  font-family: "Saol Display";
  font-size: 6.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* line 138, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_sec .news_catagory {
  margin-left: 4.72868%;
  margin-top: 0.69767%;
  flex: 0 0 auto;
}

/* line 143, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_sec .news_article_list {
  margin-top: 0.85271%;
  margin-left: 3.10078%;
}
.sl-video-player {
	padding-bottom: 60px;
}
.video-responsive{
  overflow:hidden;
  padding-bottom:56.25%;
  position:relative;
  height:0;
}


@media only screen and (max-width: 1024px) {
  /* line 149, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_sec .wrap {
    flex-wrap: wrap;
    max-width: 86%;
    flex-direction: row-reverse;
  }
  /* line 154, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_sec .prime_head {
    display: block;
    flex-basis: 100%;
    writing-mode: initial;
    transform: rotate(0deg);
    text-align: left;
    margin-bottom: 0.5em;
  }
  /* line 162, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_sec .news_catagory {
    margin: 0;
    width: 150px;
  }
  /* line 166, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_sec .news_article_list {
    width: calc(100% - 150px);
    margin: 0;
    padding-right: 3%;
  }
  /* line 172, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_sec .news_article_list_link {
    display: block;
  }
  /* line 175, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_sec .news_article_list_img {
    margin: 0 0 5.29716% 0;
  }
  /* line 178, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_sec .news_article_list_data {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  /* line 183, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_sec .prime_head {
    font-size: 4rem;
  }
  /* line 186, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_sec .news_article_list_img {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
  }
  /* line 191, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_sec .wrap {
    display: block;
    width: 80%;
    max-width: 80%;
  }
  /* .news_sec .wrap .sl-video-player {
    display: block;
    width: 90%;
    max-width: 90%;
  } */
  /* line 196, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_sec .news_catagory,
  .news_sec .news_article_list {
    width: 100%;
    margin: 5% 0;
  }
  /* line 201, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_sec .news_article_list_img {
    width: 100%;
  }
}

/* line 205, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_sec .next_page_link {
  margin: 10% auto;
  text-align: right;
  padding-right: 10%;
}

/* line 209, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_sec .next_page_link span {
  margin-right: 2.5em;
}

/* line 216, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_detail_sec {
  padding-top: 11.375rem;
  margin-bottom: 0.75rem;
}

/* line 219, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_detail_sec .back_to_news_link {
  position: fixed;
  z-index: 100;
  top: calc(92vh - 1px);
  left: 73px;
}

/* line 224, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_detail_sec .back_to_news_link a {
  color: #6c6560;
  display: inline-block;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.news_detail_sec .back_to_news_link a:hover, .news_detail_sec .back_to_news_link a:active {
  text-decoration: underline;
}

/* line 232, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_detail_sec .wrap {
  width: 1290px;
  max-width: 94.29825%;
  margin: 0 auto;
  display: flex;
  position: relative;
}

/* line 239, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_detail_sec .news_catagory {
  margin-left: 12.48062%;
  margin-top: 0.23256%;
}

/* line 246, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_detail_sec .news_detail_ct {
  width: 480px;
  max-width: 100%;
  margin: 0 0 0 15.50388%;
}

/* line 252, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_detail_sec .news_detail_article_head {
  margin-bottom: 30px;
}

/* line 255, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_detail_sec .news_detail_article_title {
  color: #6c6560;
  font-family: "Saol Display";
  font-size: 40px;
  font-weight: 400;
  line-height: 39px;
  margin-bottom: 5px;
}

/* line 263, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_detail_sec .news_detail_article_hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 35px;
}

/* line 271, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_detail_sec .news_detail_article .news_detail_article_content p strong {
  font-weight: 700;
  color: #555;
}

/* line 275, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_detail_sec .news_detail_article .news_detail_article_content p a {
  color: #1d6f89;
  font-weight: 700;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.news_detail_sec .news_detail_article .news_detail_article_content p a:hover, .news_detail_sec .news_detail_article .news_detail_article_content p a:active {
  text-decoration: underline;
}

/* line 284, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_detail_sec .news_detail_article_share {
  margin-top: 22px;
}

/* line 286, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
.news_detail_sec .news_detail_article_share p {
  text-decoration: underline;
  font-weight: 700;
}

@media only screen and (max-width: 1024px) {
  /* line 216, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_detail_sec {
    margin-bottom: 10%;
  }
  /* line 294, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_detail_sec .back_to_news_link {
    position: static;
    flex: 0 0 auto;
    flex-basis: 100%;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
  }
  /* line 301, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_detail_sec .wrap {
    max-width: 86%;
    flex-direction: row-reverse;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  /* line 307, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_detail_sec .news_catagory {
    margin: 0;
    width: 150px;
  }
  /* line 311, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_detail_sec .news_detail_ct {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  /* line 316, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_detail_sec .wrap {
    display: block;
    width: 80%;
    max-width: 80%;
  }
  /* line 321, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_news.scss */
  .news_detail_sec .news_catagory {
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 5%;
  }
}

/* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire {
  background: url(../images/inquire_bg.jpg) left bottom no-repeat;
  background-size: cover;
}

/* line 6, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire .site_header .site_logo {
  opacity: 0;
  pointer-events: none;
}

/* line 12, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec {
  position: relative;
}

/* line 14, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .wrap {
  position: relative;
  z-index: 5;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* line 25, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_content {
  width: 59.21053%;
  padding-top: 4.25rem;
}

@media only screen and (max-width: 1024px) {
  /* line 25, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
  .inquire_sec .inquire_content {
    width: 100%;
    margin-bottom: 5%;
  }
}

/* line 35, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_content_wrap {
  width: 479px;
  max-width: 80%;
  margin: 0 auto;
  position: relative;
}

/* line 41, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3.125rem;
}

/* line 47, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_head figure {
  width: 177px;
  margin-bottom: 30px;
  margin-top: 60px;
}

/* line 51, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_head p {
  font-size: 16px;
  margin-bottom: 0;
  color: #58534e;
}

/* line 56, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_head h6 {
  color: #58534e;
  font-family: "Saol Display";
  font-size: 18px;
  line-height: 1.46667;
  font-weight: 500;
  margin-top: 1.66667em;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  /* line 56, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
  .inquire_sec .inquire_head h6 {
    white-space: initial;
  }
}

/* line 69, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form_select {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

/* line 73, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form_select button {
  color: #1d6f89;
  font-family: "Aaux Pro";
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.6;
  border-bottom: 3px solid transparent;
  margin: 0 1.53333em;
  user-select: none;
}

/* line 83, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form_select button.active {
  border-bottom-color: #1d6f89;
  pointer-events: none;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.inquire_sec .inquire_form_select button:hover, .inquire_sec .inquire_form_select button:active {
  border-bottom-color: #1d6f89;
}

/* line 92, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form_wrapper {
  position: relative;
}

/* line 95, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}

/* line 106, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form.active {
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* line 111, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form .form_data {
  transform-origin: center top;
}

/* line 114, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form .row {
  display: flex;
  flex-wrap: wrap;
}

/* line 117, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form .row .form_fields_col {
  width: 50%;
  border-bottom: 1px solid rgba(221, 215, 208, 0.43);
}

/* line 120, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form .row .form_fields_col.captcha {
  width: 100%;
  display: flex;
}

/* line 124, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form .row .form_fields_col.error {
  border-bottom-color: rgba(255, 0, 0, 0.43);
}

@media only screen and (max-width: 767px) {
  /* line 117, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
  .inquire_sec .inquire_form .row .form_fields_col {
    width: 100%;
  }
}

/* line 133, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form .captcha .imgdiv {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

/* line 139, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form .captcha .captcha_img {
  width: auto;
}

/* line 142, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form .captcha .reloadSVG {
  width: 20px;
  cursor: pointer;
}

/* line 146, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form .captcha input {
  width: 50%;
}

/* line 150, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form input,
.inquire_sec .inquire_form select {
  background-color: transparent;
  border: 0;
  color: #1d6f89;
  font-family: "Aaux Pro";
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.6;
  padding: 0.66667em 0;
  display: block;
  width: 100%;
}

/* line 61, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.inquire_sec .inquire_form input.placeholder,
.inquire_sec .inquire_form select.placeholder {
  color: #1d6f89;
}

/* line 62, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.inquire_sec .inquire_form input:-moz-placeholder,
.inquire_sec .inquire_form select:-moz-placeholder {
  color: #1d6f89;
}

/* line 63, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.inquire_sec .inquire_form input::-moz-placeholder,
.inquire_sec .inquire_form select::-moz-placeholder {
  color: #1d6f89;
}

/* line 64, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.inquire_sec .inquire_form input:-ms-input-placeholder,
.inquire_sec .inquire_form select:-ms-input-placeholder {
  color: #1d6f89;
}

/* line 65, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.inquire_sec .inquire_form input::-webkit-input-placeholder,
.inquire_sec .inquire_form select::-webkit-input-placeholder {
  color: #1d6f89;
}

/* line 167, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form .form_info {
  text-align: right;
  color: #ddd7d0;
  margin-top: 6px;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}

/* line 174, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form .link_mt {
  color: #00a5b2;
  font-family: "Saol Display";
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 2.43333;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  margin: 0 auto;
  position: relative;
  left: 31px;
}

/* line 187, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form .link_mt span {
  letter-spacing: -0.01em;
  margin-right: -32px;
  margin-top: 28px;
}

/* line 192, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form .link_mt .btn_mt_svg {
  width: 94px;
  display: block;
  position: static;
}

/* line 196, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form .link_mt .btn_mt_svg .btn_mt_circle {
  stroke: #f7f3ef;
}

/* line 199, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_form .link_mt .btn_mt_svg .btn_mt_arrow {
  fill: #ddd7d0;
}

/* line 205, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_slider {
  width: 100%;
  height: 100%;
  margin: 0 0 0 auto;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 215, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_slider .js_slider_track {
  position: relative;
  width: 40.28881vw;
  height: 100%;
  overflow: hidden;
  z-index: 5;
  margin: 0 0 0 auto;
}

/* line 224, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_slider .js_slide_mask {
  height: 100%;
}

/* line 227, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_slider .js_slider_nav {
  display: none;
}

@media only screen and (max-width: 1024px) {
  /* line 205, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
  .inquire_sec .inquire_slider {
    display: none;
    opacity: 0.1;
  }
  /* line 238, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
  .inquire_sec .inquire_slider .js_slider_track {
    width: 54.49219vw;
  }
}

/* line 243, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_footer {
  position: absolute;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  margin: 0 auto;
}

/* line 254, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_footer .wrapper {
  width: 1154px;
  max-width: 84.35673%;
}

/* line 258, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.inquire_sec .inquire_footer .go_up_btn {
  display: none;
}

@media only screen and (max-width: 1024px) {
  /* line 243, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
  .inquire_sec .inquire_footer {
    position: static;
  }
}

/* line 267, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.frm_msg {
  margin: 14.40501% 0;
  text-align: center;
}

/* line 270, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.frm_msg h3 {
  color: #1d6f89;
  font-family: "Saol Display";
  font-size: 3.125rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.3em;
}

/* line 278, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.frm_msg h3 span {
  display: block;
}

/* line 282, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_inquire.scss */
.frm_msg p {
  color: #1d6f89;
  font-family: "Aaux Pro";
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer {
  padding: 3.36257% 0;
}

/* line 3, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer .wrapper {
  width: 1294px;
  width: 100%;
  max-width: 94.5906432748538%;
  display: flex;
  justify-content: space-between;
  justify-content: space-around;
  align-items: baseline;
  align-items: flex-end;
  color: #6c6560;
}

/* line 13, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.is_third_lvl .site_footer .wrapper {
  color: #fff;
}

/* line 16, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_header.active .site_footer .wrapper {
  color: #6c6560;
}

/* line 19, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
[data-lang='es'] .site_footer .wrapper,
[data-lang='pt'] .site_footer .wrapper {
  align-items: center;
}

/* line 24, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer .footer_address {
  font-style: normal;
  font-size: 1rem;
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

/* line 34, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer .footer_address strong {
  font-family: "Saol Display";
  font-size: 1.25rem;
  font-weight: 400;
  margin-right: 1.87726vw;
}

/* line 43, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer .footer_address span {
  display: flex;
}

/* line 45, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer .footer_address span a {
  color: inherit;
  margin-left: 1.22744vw;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.site_footer .footer_address span a:hover, .site_footer .footer_address span a:active {
  color: #1D6F89;
}

/* line 54, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer .social_menu {
  display: flex;
  align-items: baseline;
}

/* line 58, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer .social_menu a {
  display: block;
  font-size: 1.1875rem;
  padding: 0 0.57895em;
  color: inherit;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.site_footer .social_menu a:hover, .site_footer .social_menu a:active {
  color: #1D6F89;
}

/* line 68, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer .misc_footer_links {
  display: flex;
  align-items: baseline;
}

/* line 72, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer .misc_footer_links li {
  margin: 0 1.44404vw 0 0;
}

/* line 74, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer .misc_footer_links li:last-child {
  margin-right: 0;
}

/* line 78, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer .misc_footer_links a {
  color: inherit;
  font-family: "Aaux Pro";
  font-size: 0.9375rem;
  font-weight: 400;
  display: block;
  cursor: pointer;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.site_footer .misc_footer_links a:hover, .site_footer .misc_footer_links a:active {
  color: #1D6F89;
}

/* line 90, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer .go_up_btn {
  width: 23px;
  height: 26px;
  cursor: pointer;
}

/* line 95, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer .go_up_btn span {
  display: none;
}

/* line 98, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer .go_up_btn svg {
  pointer-events: none;
  display: block;
  width: 100%;
}

/* line 102, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_footer .go_up_btn svg .up_st0 {
  fill: #6c6560;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.is_third_lvl .site_footer .go_up_btn svg .up_st0 {
  fill: #fff;
}

@media only screen and (max-width: 1280px) {
  /* line 90, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .site_footer .go_up_btn {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media only screen and (max-width: 1280px) {
  /* line 1, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .site_footer {
    padding: 1.875rem 0;
  }
  /* line 118, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .site_footer .wrapper {
    flex-direction: column;
    align-items: center;
  }
  /* line 122, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .site_footer .social_menu,
  .site_footer .footer_address,
  .site_footer .misc_footer_links {
    margin: 0.1875rem 0;
  }
  /* line 128, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .site_footer .misc_footer_links li {
    margin: 0 1.44404vw;
  }
  /* line 130, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .site_footer .misc_footer_links li:last-child {
    margin: 0 1.44404vw;
  }
}

@media only screen and (max-width: 767px) {
  /* line 137, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .site_footer .footer_address {
    display: block;
    text-align: center;
  }
  /* line 140, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .site_footer .footer_address strong, .site_footer .footer_address span {
    margin: 0;
  }
  /* line 143, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .site_footer .footer_address span {
    flex-direction: column;
    align-items: center;
  }
  /* line 146, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .site_footer .footer_address span a {
    margin: 0;
  }
}

/* line 155, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.lb_common {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2100;
  display: none;
}

/* line 163, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.lb_common .lb_logo {
  position: absolute;
  width: 17.25rem;
  margin-left: 0.25rem;
  position: fixed;
  top: 3.10469vw;
  left: 5.27076vw;
  z-index: 2000;
}

/* line 171, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.lb_common .lb_logo svg {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  /* line 163, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .lb_common .lb_logo {
    width: 12.5rem;
  }
}

/* line 179, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.lb_common .close_lb_btn {
  width: 2.5rem;
  height: 2.5rem;
  position: fixed;
  top: 3.3935vw;
  right: 6.5704vw;
  z-index: 2100;
  cursor: pointer;
}

/* line 188, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.lb_common .close_lb_btn span {
  display: none;
}

/* line 191, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.lb_common .close_lb_btn .close_svg {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease-out;
}

/* line 198, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.lb_common .close_lb_btn .close_svg .st0 {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 38;
  stroke-dashoffset: 76;
  transition: all 1s ease;
}

/* line 206, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.lb_common .close_lb_btn .close_svg .st0:last-child {
  transition-delay: 0.1s;
}

/* line 213, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.lb_common .close_lb_btn:hover .close_svg .st0 {
  stroke-dashoffset: 0;
}

/* line 219, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.lb_common .lb_title {
  color: #ffffff;
  font-family: "Saol Display";
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 1.11765;
}

/* line 226, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.lb_common .lb_data {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

/* line 233, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.lb_common .lb_footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* line 238, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.lb_common .lb_footer .wrapper {
  color: #fff;
  width: 1154px;
  max-width: 84.35673%;
}

/* line 243, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.lb_common .lb_footer .go_up_btn {
  display: none;
}

/* line 248, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.downloads_lb {
  background-color: #358ba5;
  display: none;
}

/* line 253, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.downloads_lb .wrap {
  margin-left: 38.50659%;
}

@media only screen and (max-width: 1024px) {
  /* line 253, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .downloads_lb .wrap {
    margin: 0 auto;
    margin-top: -11.85944%;
  }
}

/* line 260, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.downloads_lb .downloads_links {
  width: 45.70397vw;
  display: flex;
  justify-content: space-between;
  margin-top: 8.95307vw;
}

/* line 270, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.downloads_lb .downloads_links .link_mt {
  display: block;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}

/* line 276, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.downloads_lb .downloads_links .link_mt span {
  margin-right: -38px;
  margin-top: -48px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 10;
}

/* line 283, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.downloads_lb .downloads_links .link_mt .btn_mt_svg {
  width: 6rem;
  height: 6rem;
  position: static;
}

/* line 287, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.downloads_lb .downloads_links .link_mt .btn_mt_svg .btn_mt_circle {
  stroke: #4795ad;
}

/* line 290, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.downloads_lb .downloads_links .link_mt .btn_mt_svg .btn_mt_arrow {
  fill: #fff;
}

/* line 104, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_mixin.scss */
.downloads_lb .downloads_links .link_mt:hover, .downloads_lb .downloads_links .link_mt:active {
  text-decoration: underline;
}

@media only screen and (max-width: 1024px) {
  /* line 260, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .downloads_lb .downloads_links {
    width: 500px;
    margin: 0 auto;
    margin-top: 8.95307vw;
  }
}

@media only screen and (max-width: 767px) {
  /* line 260, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .downloads_lb .downloads_links {
    display: block;
    width: 150px;
  }
  /* line 306, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .downloads_lb .downloads_links li {
    display: flex;
  }
  /* line 309, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .downloads_lb .downloads_links .link_mt {
    margin: 5% 0;
  }
}

/* line 315, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_crd_lb {
  background-color: #358ba5;
  background-size: cover;
  display: none;
}

/* line 320, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_crd_lb .wrap {
  margin-left: 38.45029%;
  margin-top: -16.00877%;
  max-width: 80%;
}

@media only screen and (max-width: 1024px) {
  /* line 320, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
  .site_crd_lb .wrap {
    margin: 0 auto;
    margin-top: -11.85944%;
  }
}

/* line 329, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_crd_lb .lb_title {
  margin-bottom: 3.0625rem;
}

/* line 333, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_crd_lb .lb_data p {
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 0.55556em;
}

/* line 337, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_crd_lb .lb_data p a {
  color: inherit;
  text-decoration: underline;
}

/* line 340, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.site_crd_lb .lb_data p a strong {
  font-weight: 700;
}

/* line 347, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.disclaimer_lb {
  background-color: #1d6f89;
}

/* line 349, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.disclaimer_lb .copy {
  position: absolute;
  width: 70%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow: auto;
  height: 50vh;
  padding-right: 2.1rem;
  color: #fff;
}

/* line 361, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_footer.scss */
.disclaimer_lb .copy p {
  color: #fff;
}

/* line 4, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-container {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 0;
}

/* line 9, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-container * {
  color: #1d6f89;
  font-family: "Aaux Pro";
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.71429;
  user-select: none;
  outline: none;
  white-space: nowrap;
}

/* line 20, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-container .selectboxit {
  width: 100%;
  cursor: pointer;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: block;
  position: relative;
}

/* line 29, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-container span, .selectboxit-container .selectboxit-options a {
  line-height: 1.71429;
  display: block;
}

/* line 33, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-container .selectboxit:focus {
  outline: 0;
}

/* line 38, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit.selectboxit-disabled, .selectboxit-options .selectboxit-disabled {
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  cursor: default;
}

/* line 47, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-text {
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
}

/* line 54, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit .selectboxit-option-icon-container {
  margin-left: 5px;
}

/* line 58, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-container .selectboxit-options {
  box-sizing: border-box;
  min-width: 100%;
  *width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
  display: none;
  z-index: 9999999999999;
  text-align: left;
  max-height: 200px;
}

/* line 75, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-option {
  text-indent: 5px;
  margin: 0;
  list-style-type: none;
}

/* line 76, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-option .selectboxit-option-anchor {
  padding: 0 2px;
}

/* line 78, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-option .selectboxit-option-anchor:hover {
  text-decoration: none;
}

/* line 87, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-optgroup-header {
  text-indent: 5px;
  margin: 0;
  list-style-type: none;
}

/* line 93, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-optgroup-header {
  font-weight: bold;
}

/* line 95, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-optgroup-header:hover {
  cursor: default;
}

/* line 99, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-arrow-container {
  width: 30px;
  position: absolute;
  right: 0;
}

/* line 105, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
}

/* line 111, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon {
  top: 30%;
}

/* line 116, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-option-icon-container {
  float: left;
}

/* line 120, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-container .selectboxit-option-icon {
  display: none;
}

/* line 124, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-option-icon-url {
  width: 18px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
  float: left;
}

/* line 133, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-rendering {
  display: inline-block !important;
  *display: inline !important;
  zoom: 1 !important;
  visibility: visible !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

/* line 144, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.jqueryui .ui-icon {
  background-color: inherit;
}

/* line 147, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.jqueryui .ui-icon-triangle-1-s {
  background-position: -64px -16px;
}

/* line 166, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-default-arrow {
  display: none;
}

/* line 170, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-list {
  background-color: #ffffff;
  border: 1px solid rgba(221, 215, 208, 0.43);
}

/* line 173, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-list .selectboxit-option-anchor {
  color: #58534e;
}

/* line 177, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
  color: #ffffff;
  background-color: #1d6f89;
}

/* line 181, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_selectboxit.scss */
.selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
  color: #999999;
}

/* line 5, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
form {
  margin: 0;
}

/* line 6, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/* line 7, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
button, input {
  line-height: normal;
}

/* line 8, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
button, input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

/* line 10, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
button[disabled], input[disabled] {
  cursor: default;
}

/* line 11, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
button {
  background: transparent;
  border: none;
  outline: none;
}

/* line 16, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px;
}

/* line 17, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/* line 18, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
input, button {
  outline: none;
  border: none;
}

/* line 21, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
input:focus, button:focus {
  outline: none;
}

/* line 32, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
.hidden {
  display: none !important;
  visibility: hidden;
}

/* line 37, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

/* line 41, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
.clearfix:after {
  clear: both;
}

/* line 44, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
.clearfix {
  *zoom: 1;
}

@media print {
  /* line 51, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  /* line 52, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
  a, a:visited {
    text-decoration: underline;
  }
  /* line 53, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }
  /* line 54, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* line 55, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }
  /* line 56, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /* line 57, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
  thead {
    display: table-header-group;
  }
  /* line 58, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
  tr, img {
    page-break-inside: avoid;
  }
  /* line 59, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  /* line 61, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 62, ../../../../wamp/www/helium/57/wp-content/themes/57ocean/sass/_resetbottom.scss */
  h2, h3 {
    page-break-after: avoid;
  }
}

/*# sourceMappingURL=style.css.map */




/* New Menu         */


#site_nav {
	 text-align: center;
	font-family: 'Saol Display';
}
ul#main_menu_x {
   
    position: absolute;
    z-index: 999;
    width: 100%;
    top: 1px;
    height: 100px;
    line-height: 100px;
}

.primary_menu_x li {
    display: inline-block;
    margin-left: 15px;
}

.home .primary_menu_x li a {
    color: #fff;
}
.primary_menu_x li a {
    color: #545252;
    font-size: 14px;
	font-weight: bold;
    text-transform: uppercase;
}

.primary_menu_x li ul.sub-menu li {
    display: block;
}

.primary_menu_x li.has_child:hover ul.sub-menu{
	display:block;
}

.primary_menu_x li ul.sub-menu{
	display: none;
    line-height: 30px;
    position: absolute;
    top: 70px;
    text-align: left;
	padding-right: 10px;	
}
.home .primary_menu_x li ul.sub-menu li a{
	color: #fff;	
}
.primary_menu_x li ul.sub-menu li a{
	color: #545252;	
}
.primary_menu_x li ul.sub-menu li{
	
	margin:0;
}
.primary_menu_x li ul.sub-menu li:hover{
	color:#555;
}

.primary_menu_x li.active{
    text-decoration: underline;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}


ul#main_menu_x.sticky{
	background-color: #ffffff4a;
	position:fixed;
	height: 100px;
    line-height: 100px;
	color: #545252;
}

.menu_toggle, .site_misc_nav {
	display: none;
}

.nav_contain .main_nav {
	margin-top: 10.17708vh;
}

.home #main_menu_x li:nth-last-child(2) span.wpml-ls-native{
	border-left:1px solid #fff;
	padding-left: 15px;
}
#main_menu_x li:nth-last-child(2) span.wpml-ls-native{
	border-left:1px solid #545252;
	padding-left: 15px;
}

#main_menu_x li a:first-last span.wpml-ls-native{
	border:0px 
}

@media only screen and (max-width: 1024px) {
  /* For mobile phones: */
  ul#main_menu_x{
    display: none;
	}
	.menu_toggle, .site_misc_nav {
		display: flex;
	}
	
	.wpml-ls{
		display: block !important;
	}
	
	.site_misc_nav{
		display:flex !important;
	}
}

.footer_address a{
	color: #6c6560!important;
}

.footer_address a:hover, .inquire_head h6:hover{
	color: #004a5a!important;
}

.footer-text{ 
    font-size: 0.8rem; 
    text-align: justify; 
    padding: 0 1em; 
    margin-bottom: 20px;
}

.footer-row {
  display: flex;
  padding: 0 4em;
}

.footer-column {
  flex: 50%;
}

@media only screen and (max-width: 768px) {
	.footer-column {
  flex: 100%;
		margin-bottom:30px;
}
	
	.footer-row {
  display: block;
  padding: 0 4em;
}
}