

body.oc-loading,
body.oc-loading * {
  cursor: wait !important;
}
.stripe-loading-indicator {
  height: 5px;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2000;
}
.stripe-loading-indicator .stripe,
.stripe-loading-indicator .stripe-loaded {
  height: 5px;
  display: block;
  background: #0090c0;
  position: absolute;
  -webkit-box-shadow: inset 0 1px 1px -1px #FFF, inset 0 -1px 1px -1px #FFF;
  box-shadow: inset 0 1px 1px -1px #FFF, inset 0 -1px 1px -1px #FFF;
}
.stripe-loading-indicator .stripe {
  width: 100%;
  -webkit-animation: oc-infinite-loader 60s linear;
  animation: oc-infinite-loader 60s linear;
}
.stripe-loading-indicator .stripe-loaded {
  width: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}
.stripe-loading-indicator.loaded {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.4s linear;
  transition: opacity 0.4s linear;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.stripe-loading-indicator.loaded .stripe-loaded {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: width 0.3s linear;
  transition: width 0.3s linear;
  width: 100% !important;
}
.stripe-loading-indicator.hide {
  display: none;
}
body > p.flash-message {
  position: fixed;
  width: 500px;
  left: 50%;
  top: 13px;
  margin-left: -250px;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 30px 10px 15px;
  z-index: 10300;
  word-wrap: break-word;
  text-shadow: 0 -1px 0px rgba(0, 0, 0, 0.15);
  text-align: center;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
body > p.flash-message.fade {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.5s, width 0s;
  transition: all 0.5s, width 0s;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
body > p.flash-message.fade.in {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
body > p.flash-message.success {
  background: #8da85e;
}
body > p.flash-message.error {
  background: #cc3300;
}
body > p.flash-message.warning {
  background: #f0ad4e;
}
body > p.flash-message.info {
  background: #5fb6f5;
}
body > p.flash-message button.close {
  float: none;
  position: absolute;
  right: 10px;
  top: 8px;
  color: white;
  font-size: 21px;
  line-height: 1;
  font-weight: bold;
  opacity: 0.2;
  filter: alpha(opacity=20);
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  outline: none;
}
body > p.flash-message button.close:hover,
body > p.flash-message button.close:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
@media (max-width: 768px) {
  body > p.flash-message {
    left: 10px;
    right: 10px;
    top: 10px;
    margin-left: 0;
    width: auto;
  }
}
[data-request][data-request-validate] [data-validate-for]:not(.visible),
[data-request][data-request-validate] [data-validate-error]:not(.visible) {
  display: none;
}
a.oc-loading:after,
button.oc-loading:after,
span.oc-loading:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-left: .4em;
  height: 1em;
  width: 1em;
  animation: oc-rotate-loader 0.8s infinite linear;
  border: .2em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
@-moz-keyframes oc-rotate-loader {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes oc-rotate-loader {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-o-keyframes oc-rotate-loader {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}
@-ms-keyframes oc-rotate-loader {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
  }
}
@keyframes oc-rotate-loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes oc-infinite-loader {
  0% {
    width: 0;
  }
  10% {
    width: 42%;
  }
  20% {
    width: 63%;
  }
  30% {
    width: 78.75%;
  }
  40% {
    width: 88.59375%;
  }
  50% {
    width: 94.130859375%;
  }
  60% {
    width: 97.07244873046875%;
  }
  70% {
    width: 98.58920574188232%;
  }
  80% {
    width: 99.35943391174078%;
  }
  90% {
    width: 99.74755670045852%;
  }
  100% {
    width: 99.9423761471391%;
  }
}
@-webkit-keyframes oc-infinite-loader {
  0% {
    width: 0;
  }
  10% {
    width: 42%;
  }
  20% {
    width: 63%;
  }
  30% {
    width: 78.75%;
  }
  40% {
    width: 88.59375%;
  }
  50% {
    width: 94.130859375%;
  }
  60% {
    width: 97.07244873046875%;
  }
  70% {
    width: 98.58920574188232%;
  }
  80% {
    width: 99.35943391174078%;
  }
  90% {
    width: 99.74755670045852%;
  }
  100% {
    width: 99.9423761471391%;
  }
}
@-o-keyframes oc-infinite-loader {
  0% {
    width: 0;
  }
  10% {
    width: 42%;
  }
  20% {
    width: 63%;
  }
  30% {
    width: 78.75%;
  }
  40% {
    width: 88.59375%;
  }
  50% {
    width: 94.130859375%;
  }
  60% {
    width: 97.07244873046875%;
  }
  70% {
    width: 98.58920574188232%;
  }
  80% {
    width: 99.35943391174078%;
  }
  90% {
    width: 99.74755670045852%;
  }
  100% {
    width: 99.9423761471391%;
  }
}
@-ms-keyframes oc-infinite-loader {
  0% {
    width: 0;
  }
  10% {
    width: 42%;
  }
  20% {
    width: 63%;
  }
  30% {
    width: 78.75%;
  }
  40% {
    width: 88.59375%;
  }
  50% {
    width: 94.130859375%;
  }
  60% {
    width: 97.07244873046875%;
  }
  70% {
    width: 98.58920574188232%;
  }
  80% {
    width: 99.35943391174078%;
  }
  90% {
    width: 99.74755670045852%;
  }
  100% {
    width: 99.9423761471391%;
  }
}
@keyframes oc-infinite-loader {
  0% {
    width: 0;
  }
  10% {
    width: 42%;
  }
  20% {
    width: 63%;
  }
  30% {
    width: 78.75%;
  }
  40% {
    width: 88.59375%;
  }
  50% {
    width: 94.130859375%;
  }
  60% {
    width: 97.07244873046875%;
  }
  70% {
    width: 98.58920574188232%;
  }
  80% {
    width: 99.35943391174078%;
  }
  90% {
    width: 99.74755670045852%;
  }
  100% {
    width: 99.9423761471391%;
  }
}

/*!
 * fullPage 2.9.4
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
    margin: 0;
    padding: 0;
    overflow:hidden;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#superContainer {
    height: 100%;
    position: relative;

    /* Touch detection for Windows 8 */
    -ms-touch-action: none;

    /* IE 11 on Windows Phone 8.1*/
    touch-action: none;
}
.fp-section {
    position: relative;
    -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box; /* <=28 */
    box-sizing: border-box;
}
.fp-slide {
    float: left;
}
.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}
.fp-slides {
    z-index:1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}
.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout:fixed;
    width: 100%;
}
.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.fp-slidesContainer {
    float: left;
    position: relative;
}
.fp-controlArrow {
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}
.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}
.fp-scrollable {
    overflow: hidden;
    position: relative;
}
.fp-scroller{
    overflow: hidden;
}
.iScrollIndicator{
    border: 0 !important;
}
.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}
#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
}
#fp-nav.right {
    right: 17px;
}
#fp-nav.left {
    left: 17px;
}
.fp-slidesNav{
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.fp-slidesNav.bottom {
    bottom: 17px;
}
.fp-slidesNav.top {
    top: 17px;
}
#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position:relative;
}
.fp-slidesNav ul li {
    display: inline-block;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span{
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 100%;
 }
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: #333;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span{
    width: 10px;
    height: 10px;
    margin: -5px 0px 0px -5px;
}
#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -7px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    cursor: pointer;
}
#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}
#fp-nav ul li .fp-tooltip.right {
    right: 24px;
}
#fp-nav ul li .fp-tooltip.left {
    left: 20px;
}
.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell{
    height: auto !important;
}

.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
    height: auto !important;
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}










@charset 'UTF-8';
/* Slider */


/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

@charset "UTF-8";
/* ----------------------- External Font ----------------------- */
/* ---------- Media Queries ---------- */
/* ---------- Placeholder Style ---------- */
/* ---------- Center an element (absolute) ---------- */
/* ---------- Center an element (relative) ---------- */
/* ---------- Animation Mixin Setup ---------- */
/* ---------- Gradient ---------- */
/* ----------------------- Rounded ----------------------- */
/* ----------------------- Opacity ----------------------- */
/* ----------------------- Transform ----------------------- */
/* ----------------------- Rotation ----------------------- */
/* ----------------------- Scale ----------------------- */
/* -------------------- Scale Horizontal -------------------- */
/* ------------------ Transform Origin ------------------ */
/* ----------------------- Transition ----------------------- */
/* ------------------ Transition Specific ------------------ */
/* ----------------------- Pseudo ----------------------- */
/* ----------------------- Filter ----------------------- */
/* 
  grayscale      ex: filter: grayscale(100%);
  sepia          ex: filter: sepia(100%);
  saturate       ex: filter: saturate(0%);
  hue-rotate     ex: filter: hue-rotate(45deg);
  invert         ex: filter: invert(100%);
  brightness     ex: filter: brightness(15%);
  contrast       ex: filter: contrast(200%);
  blur           ex: filter: blur(2px);
*/
/* ----------------------- Extra Mixin ----------------------- */
/* Can remove in another project */
/*
   .-----------------------------------------------------.
   |                        FONTS                        |
   '-----------------------------------------------------'
*/
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 100;
  src: local("Montserrat Thin Italic"), local("Montserrat-ThinItalic"), url(https://fonts.gstatic.com/s/montserrat/v11/1809Y0aW9bpFOPXsQTFwf2Gzaxpbdu59mCnw5pwycJw.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 100;
  src: local("Montserrat Thin Italic"), local("Montserrat-ThinItalic"), url(https://fonts.gstatic.com/s/montserrat/v11/1809Y0aW9bpFOPXsQTFwf_ZLGUYxk5QQ1Un914Iccq4.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 100;
  src: local("Montserrat Thin Italic"), local("Montserrat-ThinItalic"), url(https://fonts.gstatic.com/s/montserrat/v11/1809Y0aW9bpFOPXsQTFwfzUBvlJYYQI_sDPKrlKoP9Q.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 300;
  src: local("Montserrat Light Italic"), local("Montserrat-LightItalic"), url(https://fonts.gstatic.com/s/montserrat/v11/zhwB3-BAdyKDf0geWr9Ftwd90jv1VApqnZ9EZbtzxZE.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 300;
  src: local("Montserrat Light Italic"), local("Montserrat-LightItalic"), url(https://fonts.gstatic.com/s/montserrat/v11/zhwB3-BAdyKDf0geWr9Ft7sKtFnhOiVZh9MDlvO1Vys.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 300;
  src: local("Montserrat Light Italic"), local("Montserrat-LightItalic"), url(https://fonts.gstatic.com/s/montserrat/v11/zhwB3-BAdyKDf0geWr9Ft0ZRWJQ0UjzR2Uv6RollX_g.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: local("Montserrat Italic"), local("Montserrat-Italic"), url(https://fonts.gstatic.com/s/montserrat/v11/-iqwlckIhsmvkx0N6rwPmvgrLsWo7Jk1KvZser0olKY.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: local("Montserrat Italic"), local("Montserrat-Italic"), url(https://fonts.gstatic.com/s/montserrat/v11/-iqwlckIhsmvkx0N6rwPmojoYw3YTyktCCer_ilOlhE.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: local("Montserrat Italic"), local("Montserrat-Italic"), url(https://fonts.gstatic.com/s/montserrat/v11/-iqwlckIhsmvkx0N6rwPmhampu5_7CjHW5spxoeN3Vs.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  src: local("Montserrat SemiBold Italic"), local("Montserrat-SemiBoldItalic"), url(https://fonts.gstatic.com/s/montserrat/v11/zhwB3-BAdyKDf0geWr9Ft8gif8LsIGoxiaDHvDrXzKs.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  src: local("Montserrat SemiBold Italic"), local("Montserrat-SemiBoldItalic"), url(https://fonts.gstatic.com/s/montserrat/v11/zhwB3-BAdyKDf0geWr9Ft34iWgrNFAiT-cwBwpMBdno.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  src: local("Montserrat SemiBold Italic"), local("Montserrat-SemiBoldItalic"), url(https://fonts.gstatic.com/s/montserrat/v11/zhwB3-BAdyKDf0geWr9Ft93uLUHnU24AL_1IdxwhTqs.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: local("Montserrat Bold Italic"), local("Montserrat-BoldItalic"), url(https://fonts.gstatic.com/s/montserrat/v11/zhwB3-BAdyKDf0geWr9FtxWzg2zaPmhUBtv9M77358I.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: local("Montserrat Bold Italic"), local("Montserrat-BoldItalic"), url(https://fonts.gstatic.com/s/montserrat/v11/zhwB3-BAdyKDf0geWr9Ft0qWMeizceScn2Xpn1ZpsKI.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: local("Montserrat Bold Italic"), local("Montserrat-BoldItalic"), url(https://fonts.gstatic.com/s/montserrat/v11/zhwB3-BAdyKDf0geWr9Ft8hHwsiXhsDb0smKjAA7Bek.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100;
  src: local("Montserrat Thin"), local("Montserrat-Thin"), url(https://fonts.gstatic.com/s/montserrat/v11/CdKWaRAal2Bxq9mORLKRRfgrLsWo7Jk1KvZser0olKY.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100;
  src: local("Montserrat Thin"), local("Montserrat-Thin"), url(https://fonts.gstatic.com/s/montserrat/v11/CdKWaRAal2Bxq9mORLKRRYjoYw3YTyktCCer_ilOlhE.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100;
  src: local("Montserrat Thin"), local("Montserrat-Thin"), url(https://fonts.gstatic.com/s/montserrat/v11/CdKWaRAal2Bxq9mORLKRRRampu5_7CjHW5spxoeN3Vs.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  src: local("Montserrat Light"), local("Montserrat-Light"), url(https://fonts.gstatic.com/s/montserrat/v11/IVeH6A3MiFyaSEiudUMXE9RVd-_K1mWccr43Mya9Crg.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  src: local("Montserrat Light"), local("Montserrat-Light"), url(https://fonts.gstatic.com/s/montserrat/v11/IVeH6A3MiFyaSEiudUMXE1Yo3yjVQ1y6DauKPXl5S54.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  src: local("Montserrat Light"), local("Montserrat-Light"), url(https://fonts.gstatic.com/s/montserrat/v11/IVeH6A3MiFyaSEiudUMXEweOulFbQKHxPa89BaxZzA0.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url(https://fonts.gstatic.com/s/montserrat/v11/SKK6Nusyv8QPNMtI4j9J2wsYbbCjybiHxArTLjt7FRU.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url(https://fonts.gstatic.com/s/montserrat/v11/gFXtEMCp1m_YzxsBpKl68gsYbbCjybiHxArTLjt7FRU.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url(https://fonts.gstatic.com/s/montserrat/v11/zhcz-_WihjSQC0oHJ9TCYAzyDMXhdD8sAj6OAJTFsBI.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url(https://fonts.gstatic.com/s/montserrat/v11/q2OIMsAtXEkOulLQVdSl053YFo3oYz9Qj7-_6Ux-KkY.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url(https://fonts.gstatic.com/s/montserrat/v11/q2OIMsAtXEkOulLQVdSl02tASdhiysHpWmctaYEsrdw.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url(https://fonts.gstatic.com/s/montserrat/v11/q2OIMsAtXEkOulLQVdSl03XcDWh-RbO457623Zi1kyw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* vietnamese */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url(https://fonts.gstatic.com/s/montserrat/v11/IQHow_FEYlDC4Gzy_m8fcnv4bDVR720piddN5sbmjzs.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url(https://fonts.gstatic.com/s/montserrat/v11/IQHow_FEYlDC4Gzy_m8fcjrEaqfC9P2pvLXik1Kbr9s.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url(https://fonts.gstatic.com/s/montserrat/v11/IQHow_FEYlDC4Gzy_m8fcmaVI6zN22yiurzcBKxPjFE.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
  font-family: "Cormorant SC";
  font-style: normal;
  font-weight: 400;
  src: local("Cormorant SC Regular"), local("CormorantSC-Regular"), url(https://fonts.gstatic.com/s/cormorantsc/v5/o2HxNCgvhmwJdltu-68tzA7aC6SjiAOpAWOKfJDfVRY.woff2) format("woff2");
  unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
  font-family: "Cormorant SC";
  font-style: normal;
  font-weight: 400;
  src: local("Cormorant SC Regular"), local("CormorantSC-Regular"), url(https://fonts.gstatic.com/s/cormorantsc/v5/o2HxNCgvhmwJdltu-68tzBdwxCXfZpKo5kWAx_74bHs.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: "Cormorant SC";
  font-style: normal;
  font-weight: 400;
  src: local("Cormorant SC Regular"), local("CormorantSC-Regular"), url(https://fonts.gstatic.com/s/cormorantsc/v5/o2HxNCgvhmwJdltu-68tzPgrLsWo7Jk1KvZser0olKY.woff2) format("woff2");
  unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Cormorant SC";
  font-style: normal;
  font-weight: 400;
  src: local("Cormorant SC Regular"), local("CormorantSC-Regular"), url(https://fonts.gstatic.com/s/cormorantsc/v5/o2HxNCgvhmwJdltu-68tzIjoYw3YTyktCCer_ilOlhE.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Cormorant SC";
  font-style: normal;
  font-weight: 400;
  src: local("Cormorant SC Regular"), local("CormorantSC-Regular"), url(https://fonts.gstatic.com/s/cormorantsc/v5/o2HxNCgvhmwJdltu-68tzBampu5_7CjHW5spxoeN3Vs.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/*
   .-----------------------------------------------------.
   |                     BASIC STYLES                    |
   '-----------------------------------------------------'
*/

#confirm-message h2{
  font-size: 23px; 
 color: #23a928;
}
.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

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

input::-webkit-input-placeholder {
  color: rgba(167, 176, 183, 0.5);
}
input:-moz-placeholder {
  color: rgba(167, 176, 183, 0.5);
}
input::-moz-placeholder {
  color: rgba(167, 176, 183, 0.5);
}
input:-ms-input-placeholder {
  color: rgba(167, 176, 183, 0.5);
}

.error::-webkit-input-placeholder {
  color: #FF0000;
}
.error:-moz-placeholder {
  color: #FF0000;
}
.error::-moz-placeholder {
  color: #FF0000;
}
.error:-ms-input-placeholder {
  color: #FF0000;
}

table {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
}
table tr {
  padding: 0;
  margin: 0;
}
table th {
  font-style: normal;
  padding: 0;
  margin: 0;
}
table td {
  padding: 0;
  margin: 0;
}

address {
  font-style: normal;
}

blockquote {
  margin: 0;
  padding: 0;
}

body {
  font: 400 1em/28px "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #003851;
}

main {
  z-index: 2;
}

input[type=text],
textarea {
  outline: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type=submit] {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a {
  text-decoration: none;
  color: #000000;
}
a:hover {
  text-decoration: underline;
  color: #000000;
}

p {
  margin: 0 0 12px 0;
  padding: 0;
  font-size: 12px;
  line-height: 20px;
}

.dd-s-news-detail .dd-b-body .dd-b-top, .dd-s-about .dd-b-about, .dd-s-contact .dd-btn-group, .dd-b-wrapper, .dd-s-section .dd-b-container, .clearfix {
  *zoom: 1;
}
.dd-s-news-detail .dd-b-body .dd-b-top:before, .dd-s-about .dd-b-about:before, .dd-s-contact .dd-btn-group:before, .dd-b-wrapper:before, .dd-s-section .dd-b-container:before, .clearfix:before, .dd-s-news-detail .dd-b-body .dd-b-top:after, .dd-s-about .dd-b-about:after, .dd-s-contact .dd-btn-group:after, .dd-b-wrapper:after, .dd-s-section .dd-b-container:after, .clearfix:after {
  content: " ";
  display: table;
}
.dd-s-news-detail .dd-b-body .dd-b-top:after, .dd-s-about .dd-b-about:after, .dd-s-contact .dd-btn-group:after, .dd-b-wrapper:after, .dd-s-section .dd-b-container:after, .clearfix:after {
  clear: both;
}

.dd-row-fluid {
  *zoom: 1;
}
.dd-row-fluid:before {
  content: "";
  display: table;
}
.dd-row-fluid:after {
  content: "";
  display: table;
  clear: both;
}
.dd-row-fluid [class*=span-] {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
}
.dd-row-fluid [class*=span-]:first-child {
  margin-left: 0 !important;
}
.dd-row-fluid .no-gutter {
  margin-left: 0 !important;
}
.dd-row-fluid .pull-right {
  float: right;
}
.dd-row-fluid .span-1 {
  width: 100%;
}
.dd-row-fluid .span-2 {
  width: 100%;
}
.dd-row-fluid .span-3 {
  width: 100%;
}
.dd-row-fluid .span-4 {
  width: 100%;
}
.dd-row-fluid .span-5 {
  width: 100%;
}
.dd-row-fluid .span-6 {
  width: 100%;
}
.dd-row-fluid .span-7 {
  width: 100%;
}
.dd-row-fluid .span-8 {
  width: 100%;
}
.dd-row-fluid .span-9 {
  width: 100%;
}
.dd-row-fluid .span-10 {
  width: 100%;
}
.dd-row-fluid .span-11 {
  width: 100%;
}
.dd-row-fluid .span-12 {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .dd-row-fluid .span-1 {
    width: 6.3802083333%;
  }
  .dd-row-fluid .span-2 {
    width: 14.84375%;
  }
  .dd-row-fluid .span-3 {
    width: 23.3072916667%;
  }
  .dd-row-fluid .span-4 {
    width: 31.7708333333%;
  }
  .dd-row-fluid .span-5 {
    width: 40.234375%;
  }
  .dd-row-fluid .span-6 {
    width: 48.6979166667%;
  }
  .dd-row-fluid .span-7 {
    width: 57.1614583333%;
  }
  .dd-row-fluid .span-8 {
    width: 65.625%;
  }
  .dd-row-fluid .span-9 {
    width: 74.0885416667%;
  }
  .dd-row-fluid .span-10 {
    width: 82.5520833333%;
  }
  .dd-row-fluid .span-11 {
    width: 91.015625%;
  }
  .dd-row-fluid .span-12 {
    width: 99.4791666667%;
  }
  .dd-row-fluid [class*=span],
.dd-row-fluid [class*=span].has-gutter {
    margin-left: 2.0833333333%;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-row-fluid .span-1 {
    width: 6.5533980583%;
  }
  .dd-row-fluid .span-2 {
    width: 15.0485436893%;
  }
  .dd-row-fluid .span-3 {
    width: 23.5436893204%;
  }
  .dd-row-fluid .span-4 {
    width: 32.0388349515%;
  }
  .dd-row-fluid .span-5 {
    width: 40.5339805825%;
  }
  .dd-row-fluid .span-6 {
    width: 49.0291262136%;
  }
  .dd-row-fluid .span-7 {
    width: 57.5242718447%;
  }
  .dd-row-fluid .span-8 {
    width: 66.0194174757%;
  }
  .dd-row-fluid .span-9 {
    width: 74.5145631068%;
  }
  .dd-row-fluid .span-10 {
    width: 83.0097087379%;
  }
  .dd-row-fluid .span-11 {
    width: 91.5048543689%;
  }
  .dd-row-fluid .span-12 {
    width: 100%;
  }
  .dd-row-fluid [class*=span],
.dd-row-fluid [class*=span].has-gutter {
    margin-left: 1.9417475728%;
  }
}

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

@media only screen and (min-width: 768px) {
  .mobile-hide {
    display: inherit !important;
  }

  .tablet-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 1080px) {
  .mobile-hide {
    display: inherit !important;
  }

  .tablet-hide {
    display: inherit !important;
  }

  .desktop-hide {
    display: none !important;
  }
}
.dd-s-section {
  padding-top: 48px;
  padding-bottom: 48px;
}
@media only screen and (min-width: 768px) {
  .dd-s-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }
}
.dd-s-section .dd-b-container {
  position: relative;
  padding-left: 24px;
  padding-right: 24px;
}
@media only screen and (min-width: 768px) {
  .dd-s-section .dd-b-container {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-section .dd-b-container {
    max-width: 1124px;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
  }
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6, .sub-headline {
  font-weight: 700;
  margin: 0 0 12px 0;
  padding: 0;
}

/*
   .-----------------------------------------------------.
   |                    REUSE ELEMENTS                   |
   '-----------------------------------------------------'
*/
.dd-b-language {
  font-size: 0;
  line-height: 0;
  position: absolute;
  z-index: 70;
}
.dd-b-language li {
  padding: 0 12px;
  display: inline-block;
  border-right: 1px solid rgba(0, 0, 0, 0.75);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
}
.dd-b-language li a {
  color: rgba(0, 0, 0, 0.75);
}
.dd-b-language li:first-child {
  padding-left: 0;
}
.dd-b-language li:last-child {
  padding-right: 0;
  border: none;
}
.dd-b-language li.active {
  font-weight: 700;
}
.dd-b-language.at-menu {
  bottom: 27px;
  text-align: center;
  left: 0;
  right: 0;
}
.dd-b-language.at-header {
  top: 30px;
  right: 30px;
}
.dd-b-language.at-header li {
  line-height: 18px;
  border-right-color: #b7b7b7;
}
.dd-b-language.at-header li span,
.dd-b-language.at-header li a {
  color: #b7b7b7;
}
.dd-b-language.at-header li.active a {
  color: #FFFFFF;
  font-weight: 400;
}
.dd-b-language.at-header li:first-child:before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../themes/eden/assets/images/icon-language-white.svg) 0 0 no-repeat;
  background-size: 18px 18px;
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 17px;
}
@media only screen and (min-width: 1080px) {
  .dd-b-language.at-menu {
    bottom: 43px;
  }
  .dd-b-language.at-header {
    top: 45px;
    right: 45px;
  }
}

.dd-social-network {
  font-size: 0;
  line-height: 0;
}
.dd-social-network li {
  display: inline-block;
  margin-right: 30px;
}
.dd-social-network li a {
  width: 30px;
  height: 30px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
}
.dd-social-network li a:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.dd-social-network li:last-child {
  margin-right: 0 !important;
}
.dd-social-network.at-menu li a {
  border: 1px solid rgba(0, 0, 0, 0.75);
}
.dd-social-network.at-menu li a.facebook-icon {
  background-image: url(../themes/eden/assets/images/icon-fb-black.svg);
  background-size: 8px 18px;
}
.dd-social-network.at-menu li a.twitter-icon {
  background-image: url(../themes/eden/assets/images/icon-tw-black.svg);
  background-size: 16px 14px;
}
.dd-social-network.at-menu li a.instagram-icon {
  background-image: url(../themes/eden/assets/images/icon-ig-black.svg);
  background-size: 16px 16px;
}
.dd-social-network.at-menu li a.youtube-icon {
  background-image: url(../themes/eden/assets/images/icon-yt-black.svg);
  background-size: 17px 19px;
}
.dd-social-network.at-footer {
  margin-bottom: 16px;
}
.dd-social-network.at-footer li {
  margin-right: 22px;
}
.dd-social-network.at-footer li a {
  width: 37px;
  height: 37px;
  background-color: #FFFFFF;
}
.dd-social-network.at-footer li a.youtube-icon {
  background-image: url(../themes/eden/assets/images/icon-yt-navy.svg);
  background-size: 17px 19px;
}
.dd-social-network.at-footer li a.facebook-icon {
  background-image: url(../themes/eden/assets/images/icon-fb-navy.svg);
  background-size: 10px 19px;
}
.dd-social-network.at-footer li a.twitter-icon {
  background-image: url(../themes/eden/assets/images/icon-tw-navy.svg);
  background-size: 19px 16px;
}
.dd-social-network.at-footer li a.instagram-icon {
  background-image: url(../themes/eden/assets/images/icon-ig-navy.svg);
  background-size: 16px 16px;
}
.dd-social-network.at-bottom {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 888;
  width: 150px;
}
.dd-social-network.at-bottom li a {
  border: 1px solid #FFFFFF;
}
.dd-social-network.at-bottom li a.facebook-icon {
  background-image: url(../themes/eden/assets/images/icon-fb-white.svg);
  background-size: 8px 18px;
}
.dd-social-network.at-bottom li a.twitter-icon {
  background-image: url(../themes/eden/assets/images/icon-tw-white.svg);
  background-size: 16px 14px;
}
.dd-social-network.at-bottom li a.instagram-icon {
  background-image: url(../themes/eden/assets/images/icon-ig-white.svg);
  background-size: 16px 16px;
}
.dd-social-network.at-bottom li a.youtube-icon {
  background-image: url(../themes/eden/assets/images/icon-yt-white.svg);
  background-size: 17px 19px;
}
@media only screen and (min-width: 1080px) {
  .dd-social-network.at-footer {
    margin-bottom: 23px;
  }
  .dd-social-network.at-bottom {
    bottom: 50px;
    left: 50px;
  }
}

.dd-text-logo {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: absolute;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%);
  z-index: 1;
  top: 25px;
}
.dd-text-logo svg * {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-text-logo.hide {
  -webkit-transform: translate(-50%, -70px);
  -moz-transform: translate(-50%, -70px);
  -o-transform: translate(-50%, -70px);
  -ms-transform: translate(-50%, -70px);
  transform: translate(-50%, -70px);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
@media only screen and (min-width: 768px) {
  .dd-text-logo {
    top: 30px;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-text-logo {
    top: 50px;
  }
}

.dd-fullscreen-banner {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.dd-fullheight-banner {
  height: 100%;
  display: block;
  max-width: none;
}

@-webkit-keyframes move-the-hand {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: translateX(25px);
    -moz-transform: translateX(25px);
    -o-transform: translateX(25px);
    -ms-transform: translateX(25px);
    transform: translateX(25px);
  }
  50% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -o-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
  }
  75% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: translateX(25px);
    -moz-transform: translateX(25px);
    -o-transform: translateX(25px);
    -ms-transform: translateX(25px);
    transform: translateX(25px);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-moz-keyframes move-the-hand {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: translateX(25px);
    -moz-transform: translateX(25px);
    -o-transform: translateX(25px);
    -ms-transform: translateX(25px);
    transform: translateX(25px);
  }
  50% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -o-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
  }
  75% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: translateX(25px);
    -moz-transform: translateX(25px);
    -o-transform: translateX(25px);
    -ms-transform: translateX(25px);
    transform: translateX(25px);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-ms-keyframes move-the-hand {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: translateX(25px);
    -moz-transform: translateX(25px);
    -o-transform: translateX(25px);
    -ms-transform: translateX(25px);
    transform: translateX(25px);
  }
  50% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -o-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
  }
  75% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: translateX(25px);
    -moz-transform: translateX(25px);
    -o-transform: translateX(25px);
    -ms-transform: translateX(25px);
    transform: translateX(25px);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-o-keyframes move-the-hand {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: translateX(25px);
    -moz-transform: translateX(25px);
    -o-transform: translateX(25px);
    -ms-transform: translateX(25px);
    transform: translateX(25px);
  }
  50% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -o-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
  }
  75% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: translateX(25px);
    -moz-transform: translateX(25px);
    -o-transform: translateX(25px);
    -ms-transform: translateX(25px);
    transform: translateX(25px);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes move-the-hand {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: translateX(25px);
    -moz-transform: translateX(25px);
    -o-transform: translateX(25px);
    -ms-transform: translateX(25px);
    transform: translateX(25px);
  }
  50% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -o-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
  }
  75% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: translateX(25px);
    -moz-transform: translateX(25px);
    -o-transform: translateX(25px);
    -ms-transform: translateX(25px);
    transform: translateX(25px);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes dot-flicker {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-moz-keyframes dot-flicker {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-ms-keyframes dot-flicker {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-o-keyframes dot-flicker {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@keyframes dot-flicker {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}



/*.dd-category-menu ul.js-list{
  display: block;
}*/
.dd-category-menu ul.js-list li .current-li{
  background: #004462;
}
.dd-category-menu ul.js-list li .current-li{
  color: #ffffff;
}
.dd-category-menu .current.js-control{
  display: none;
}
.dd-b-how-to-view {
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  border-radius: 28px;
  max-width: 280px;
  width: 100%;
  padding: 26px 10px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 49;
  text-align: center;
}
.dd-b-how-to-view *:last-child {
  margin-bottom: 0;
}
.dd-b-how-to-view p {
  color: #FFFFFF;
  font-size: 12px;
  line-height: 1.5em;
}
.dd-b-how-to-view .dd-icons {
  margin: 0 auto 29px;
  width: 140px;
  font-size: 0;
  line-height: 0;
  text-align: center;
  display: block;
  position: relative;
  z-index: 40;
}
.dd-b-how-to-view .dd-icons span {
  background-color: #FFFFFF;
  display: inline-block;
  vertical-align: middle;
  width: 27px;
  height: 27px;
  margin-right: 17px;
}
.dd-b-how-to-view .dd-icons span:first-child, .dd-b-how-to-view .dd-icons span:last-child {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.dd-b-how-to-view .dd-icons span:first-child:before, .dd-b-how-to-view .dd-icons span:first-child:after, .dd-b-how-to-view .dd-icons span:last-child:before, .dd-b-how-to-view .dd-icons span:last-child:after {
  background-color: #003851;
  width: 6px;
  height: 1px;
  content: "";
  display: block;
  position: absolute;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  margin-left: -5px;
  margin-top: -1px;
}
.dd-b-how-to-view .dd-icons span:first-child:after, .dd-b-how-to-view .dd-icons span:last-child:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: -1px;
}
.dd-b-how-to-view .dd-icons span:nth-child(2), .dd-b-how-to-view .dd-icons span:nth-child(3), .dd-b-how-to-view .dd-icons span:nth-child(4) {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  -webkit-animation: dot-flicker 1.5s linear infinite;
  -moz-animation: dot-flicker 1.5s linear infinite;
  -ms-animation: dot-flicker 1.5s linear infinite;
  -o-animation: dot-flicker 1.5s linear infinite;
  animation: dot-flicker 1.5s linear infinite;
}
.dd-b-how-to-view .dd-icons span:nth-child(5) {
  background: url(../themes/eden/assets/images/hand.svg) 0 0 no-repeat;
  background-size: 24px 26px;
  width: 24px;
  height: 26px;
  margin-right: 0;
  position: absolute;
  z-index: 50;
  left: 41px;
  top: 15px;
  -webkit-animation: move-the-hand 3s linear infinite;
  -moz-animation: move-the-hand 3s linear infinite;
  -ms-animation: move-the-hand 3s linear infinite;
  -o-animation: move-the-hand 3s linear infinite;
  animation: move-the-hand 3s linear infinite;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.dd-b-how-to-view .dd-icons span:last-child {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  margin: 0;
}
@media only screen and (min-width: 1080px) {
  .dd-b-how-to-view {
    display: none !important;
  }
}

.dd-b-villa-breadcrumb {
  position: absolute;
  z-index: 3;
  top: 14vh;
  left: 20px;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 1.25em;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.dd-b-villa-breadcrumb a {
  color: #7C7C7C;
  display: inline-block;
  vertical-align: middle;
}
.dd-b-villa-breadcrumb span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 13px;
  font-weight: 700;
  margin-left: 8px;
  position: relative;
  z-index: 10;
  color: #003851;
  letter-spacing: 0;
}
.dd-b-villa-breadcrumb span:before, .dd-b-villa-breadcrumb span:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 1px;
  background-color: #7C7C7C;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  margin-top: -1px;
}
.dd-b-villa-breadcrumb span:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 1080px) {
  .dd-b-villa-breadcrumb {
    top: 47px;
    left: 150px;
  }
  .dd-b-villa-breadcrumb:before {
    width: 100px;
  }
}

.dd-villa-compass {
  position: absolute;
  z-index: 29;
  left: 50px;
  top: 33vh;
}
.dd-villa-compass img {
  display: block;
  margin-top: 5px;
  margin-left: 5px;
  width: 50px;
  height: 50px;
}
.dd-villa-compass .dd-compass-direction {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  font-size: 12px;
  line-height: 12px;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}

@-webkit-keyframes mini-map-hover {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  100% {
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-moz-keyframes mini-map-hover {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  100% {
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-ms-keyframes mini-map-hover {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  100% {
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-o-keyframes mini-map-hover {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  100% {
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@keyframes mini-map-hover {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  100% {
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-webkit-keyframes gallery-hotspot {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    width: 30px;
    height: 30px;
  }
  100% {
    width: 54px;
    height: 54px;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-moz-keyframes gallery-hotspot {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    width: 30px;
    height: 30px;
  }
  100% {
    width: 54px;
    height: 54px;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-ms-keyframes gallery-hotspot {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    width: 30px;
    height: 30px;
  }
  100% {
    width: 54px;
    height: 54px;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-o-keyframes gallery-hotspot {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    width: 30px;
    height: 30px;
  }
  100% {
    width: 54px;
    height: 54px;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@keyframes gallery-hotspot {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    width: 30px;
    height: 30px;
  }
  100% {
    width: 54px;
    height: 54px;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@media only screen and (min-width: 1080px) {
  .dd-villa-mini-map {
    position: absolute;
    z-index: 5;
    top: 42vh;
    left: 50px;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -o-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    transform-origin: 0 0;
  }
  .dd-villa-mini-map img {
    display: block;
    max-width: 320px;
  }
  .dd-villa-mini-map .dd-area {
    position: absolute;
    z-index: 6;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }
  .dd-villa-mini-map .dd-area span {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
    z-index: 7;
    display: block;
    background-color: #7C7C7C;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
  .dd-villa-mini-map .dd-area span:before {
    content: "";
    display: block;
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    white-space: nowrap;
    background: url(../themes/eden/assets/images/icon-plus-white.svg) center center no-repeat;
    background-size: 80%;
    width: 16px;
    height: 16px;
  }
  .dd-villa-mini-map .dd-area span:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 6;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background-color: rgba(124, 124, 124, 0.5);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
  .dd-villa-mini-map .dd-area.dd-area-orchid {
    width: 110px;
    height: 68px;
    left: 59px;
    top: 114px;
  }
  .dd-villa-mini-map .dd-area.dd-area-jasmine {
    width: 44px;
    height: 68px;
    left: 16px;
    top: 113px;
    background-image: url(../themes/eden/assets/images/mini-map-mask.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 44px 68px;
  }
  .dd-villa-mini-map .dd-area.dd-area-camellia {
    width: 66px;
    height: 68px;
    left: 235px;
    top: 25px;
  }
  .dd-villa-mini-map .dd-area.dd-area-camellia span {
    top: 28%;
  }
  .dd-villa-mini-map .dd-area.dd-area-camellia:hover span, .dd-villa-mini-map .dd-area.dd-area-camellia.current span {
    top: 50%;
  }
  .dd-villa-mini-map .dd-area.dd-area-iris {
    width: 129px;
    height: 67px;
    left: 107px;
    top: 25px;
  }
  .dd-villa-mini-map .dd-area.dd-area-poeny {
    width: 67px;
    height: 67px;
    left: 169px;
    top: 114px;
  }
  .dd-villa-mini-map .dd-area:hover, .dd-villa-mini-map .dd-area.current {
    background-color: rgba(255, 241, 197, 0.5);
  }
  .dd-villa-mini-map .dd-area:hover span, .dd-villa-mini-map .dd-area.current span {
    background-color: #006e9b;
  }
  .dd-villa-mini-map .dd-area:hover span:before, .dd-villa-mini-map .dd-area.current span:before {
    content: attr(data-heading);
    background: none;
    font-size: 12px;
    line-height: 1em;
    width: auto;
    height: auto;
  }
  .dd-villa-mini-map .dd-area:hover span:after, .dd-villa-mini-map .dd-area.current span:after {
    background-color: rgba(0, 110, 155, 0.5);
  }
  .dd-villa-mini-map .dd-area:hover.dd-area-orchid span, .dd-villa-mini-map .dd-area.current.dd-area-orchid span {
    width: 53px;
    height: 53px;
  }
  .dd-villa-mini-map .dd-area:hover.dd-area-jasmine span, .dd-villa-mini-map .dd-area.current.dd-area-jasmine span {
    width: 53px;
    height: 53px;
  }
  .dd-villa-mini-map .dd-area:hover.dd-area-camellia span, .dd-villa-mini-map .dd-area.current.dd-area-camellia span {
    width: 70px;
    height: 70px;
  }
  .dd-villa-mini-map .dd-area:hover.dd-area-iris span, .dd-villa-mini-map .dd-area.current.dd-area-iris span {
    width: 39px;
    height: 39px;
  }
  .dd-villa-mini-map .dd-area:hover.dd-area-poeny span, .dd-villa-mini-map .dd-area.current.dd-area-poeny span {
    width: 45px;
    height: 45px;
  }
  .dd-villa-mini-map .dd-area.current {
    background-color: rgba(124, 124, 124, 0.5);
  }
  .dd-villa-mini-map .dd-area.current span:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-animation: mini-map-hover 1.3s linear infinite;
    -moz-animation: mini-map-hover 1.3s linear infinite;
    -ms-animation: mini-map-hover 1.3s linear infinite;
    -o-animation: mini-map-hover 1.3s linear infinite;
    animation: mini-map-hover 1.3s linear infinite;
  }
}
@media only screen and (min-width: 1690px) {
  .dd-villa-mini-map {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.show-logo .dd-text-logo {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  z-index: 3;
}

.show-footer footer {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}

.show-villa-breadcrumb .dd-b-villa-breadcrumb {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}

/*
   .-----------------------------------------------------.
   |                       HEADER                        |
   '-----------------------------------------------------'
*/
@-webkit-keyframes menu-icon-bar {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  40% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  60% {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -o-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-moz-keyframes menu-icon-bar {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  40% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  60% {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -o-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-ms-keyframes menu-icon-bar {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  40% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  60% {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -o-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-o-keyframes menu-icon-bar {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  40% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  60% {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -o-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes menu-icon-bar {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  40% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  60% {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -o-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes sub-menu-hover {
  0% {
    width: 0;
  }
  100% {
    width: 55px;
  }
}
@-moz-keyframes sub-menu-hover {
  0% {
    width: 0;
  }
  100% {
    width: 55px;
  }
}
@-ms-keyframes sub-menu-hover {
  0% {
    width: 0;
  }
  100% {
    width: 55px;
  }
}
@-o-keyframes sub-menu-hover {
  0% {
    width: 0;
  }
  100% {
    width: 55px;
  }
}
@keyframes sub-menu-hover {
  0% {
    width: 0;
  }
  100% {
    width: 55px;
  }
}
.dd-menu-open {
  position: absolute;
  z-index: 3;
  top: 25px;
  left: 20px;
  line-height: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-menu-open.hide {
  -webkit-transform: translateY(-70px);
  -moz-transform: translateY(-70px);
  -o-transform: translateY(-70px);
  -ms-transform: translateY(-70px);
  transform: translateY(-70px);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.dd-menu-open .dd-bars {
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 16px;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.dd-menu-open .dd-bars .dd-bar {
  width: 28px;
  height: 2px;
  overflow: hidden;
  position: absolute;
  z-index: 10;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.dd-menu-open .dd-bars .dd-bar .dd-bar-in {
  width: 84px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.dd-menu-open .dd-bars .dd-bar .dd-bar-in:before, .dd-menu-open .dd-bars .dd-bar .dd-bar-in:after {
  width: 28px;
  height: 2px;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  background-color: #FFFFFF;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.dd-menu-open .dd-bars .dd-bar .dd-bar-in:before {
  left: -56px;
}
.dd-menu-open .dd-bars .dd-bar .dd-bar-in:after {
  left: 0;
}
.dd-menu-open .dd-bars .dd-bar .dd-bar-in.dd-bar-in-01 {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.dd-menu-open .dd-bars .dd-bar .dd-bar-in.dd-bar-in-02 {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.dd-menu-open .dd-bars .dd-bar .dd-bar-in.dd-bar-in-02:before, .dd-menu-open .dd-bars .dd-bar .dd-bar-in.dd-bar-in-02:after {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
.dd-menu-open .dd-bars .dd-bar .dd-bar-in.dd-bar-in-03 {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.dd-menu-open .dd-bars .dd-bar .dd-bar-in.dd-bar-in-03:before, .dd-menu-open .dd-bars .dd-bar .dd-bar-in.dd-bar-in-03:after {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.dd-menu-open .dd-bars .dd-bar.dd-bar-01, .dd-menu-open .dd-bars .dd-bar.dd-bar-02, .dd-menu-open .dd-bars .dd-bar.dd-bar-03 {
  left: 0px;
}
.dd-menu-open .dd-bars .dd-bar.dd-bar-01 {
  top: 0px;
}
.dd-menu-open .dd-bars .dd-bar.dd-bar-02 {
  top: 7px;
}
.dd-menu-open .dd-bars .dd-bar.dd-bar-03 {
  top: 14px;
}
.dd-menu-open:hover .dd-bars .dd-bar .dd-bar-in:before, .dd-menu-open:hover .dd-bars .dd-bar .dd-bar-in:after {
  -webkit-transform: translateX(56px);
  -moz-transform: translateX(56px);
  -o-transform: translateX(56px);
  -ms-transform: translateX(56px);
  transform: translateX(56px);
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}
.dd-menu-open .dd-label {
  display: none;
}
@media only screen and (min-width: 768px) {
  .dd-menu-open {
    top: 30px;
    left: 30px;
  }
  .dd-menu-open .dd-label {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    margin-left: 9px;
    font-weight: 300;
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-menu-open {
    top: 50px;
    left: 50px;
  }
}

.dd-b-menu {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.dd-b-menu.open {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.dd-b-menu .dd-menu-close {
  font-size: 11px;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
  margin-top: 15px;
  margin-right: 16px;
  float: right;
  padding-right: 31px;
  color: #000000;
}
.dd-b-menu .dd-menu-close:before, .dd-b-menu .dd-menu-close:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 11;
  top: 50%;
  right: 0;
  width: 28px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-b-menu .dd-menu-close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.dd-b-menu .dd-menu-close:hover {
  text-decoration: none;
}
.dd-b-menu .dd-menu-close:hover:before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.dd-b-menu .dd-menu-close:hover:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.dd-b-menu .dd-b-main-menu {
  background: #FFF url(../themes/eden/assets/images/bg-menu.jpg) center right no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.dd-b-menu .dd-b-main-menu a {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-b-menu .dd-b-main-menu .dd-b-body {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu {
  margin-bottom: 10px;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 16px;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li a {
  color: #002333;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li a:hover {
  color: #B1861F;
  text-decoration: none;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li.active a {
  color: #B1861F;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li:last-child {
  margin-bottom: 0;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-menu-contact-info {
  margin-bottom: 10px;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-menu-contact-info .dd-phone {
  margin: 0;
  font-size: 20px;
  color: #002333;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-menu-contact-info .dd-phone a {
  color: #002333;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-menu-contact-info .dd-phone a:hover {
  color: #B1861F;
  text-decoration: none;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-menu-contact-info .dd-links {
  font-size: 13px;
  line-height: 25px;
  color: #000000;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-menu-contact-info .dd-links a {
  color: #000000;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-menu-contact-info .dd-links a:hover {
  color: #B1861F;
  text-decoration: none;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-menu-contact-info *:last-child {
  margin-bottom: 0;
}
.dd-b-menu .dd-b-sub-menu .dd-sub-menu {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
.dd-b-menu .dd-b-sub-menu .dd-sub-menu li {
  font-size: 20px;
  line-height: 1.25em;
  margin-bottom: 55px;
  text-align: center;
}
.dd-b-menu .dd-b-sub-menu .dd-sub-menu li a {
  color: #FFFFFF;
  display: block;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-b-menu .dd-b-sub-menu .dd-sub-menu li a.active, .dd-b-menu .dd-b-sub-menu .dd-sub-menu li a:hover {
  color: #EDB633;
  text-decoration: none;
  position: relative;
  z-index: 5;
}
.dd-b-menu .dd-b-sub-menu .dd-sub-menu li a.active:after, .dd-b-menu .dd-b-sub-menu .dd-sub-menu li a:hover:after {
  content: "";
  display: block;
  position: absolute;
  width: 0px;
  height: 2px;
  background-color: #EDB633;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  -webkit-animation: sub-menu-hover 0.3s ease-out 1;
  -moz-animation: sub-menu-hover 0.3s ease-out 1;
  -ms-animation: sub-menu-hover 0.3s ease-out 1;
  -o-animation: sub-menu-hover 0.3s ease-out 1;
  animation: sub-menu-hover 0.3s ease-out 1;
  animation-fill-mode: forwards;
}
.dd-b-menu .dd-b-sub-menu .dd-sub-menu li a strong {
  font-weight: 700;
}
.dd-b-menu .dd-b-sub-menu .dd-sub-menu li:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 375px) {
  .dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu {
    margin-bottom: 20px;
  }
  .dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li {
    margin-bottom: 10px;
  }
  .dd-b-menu .dd-b-main-menu .dd-b-body .dd-menu-contact-info {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .dd-b-menu {
    right: auto;
    width: 550px;
  }
  .dd-b-menu .dd-menu-close {
    margin-top: 27px;
    color: #FFFFFF;
  }
  .dd-b-menu .dd-menu-close:before, .dd-b-menu .dd-menu-close:after {
    background-color: #FFFFFF;
  }
  .dd-b-menu .dd-b-main-menu {
    right: auto;
    width: 300px;
  }
  .dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu {
    margin-bottom: 12%;
  }
  .dd-b-menu .dd-b-sub-menu {
    position: absolute;
    left: 300px;
    top: 0;
    bottom: 0;
    width: 250px;
    background-color: rgba(0, 35, 51, 0.9);
  }
}
@media only screen and (min-width: 1080px) {
  .dd-b-menu {
    right: auto;
    width: 690px;
  }
  .dd-b-menu .dd-b-main-menu {
    width: 390px;
  }
  .dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li {
    font-size: 16px;
    margin-bottom: 6%;
  }
  .dd-b-menu .dd-b-main-menu .dd-b-body .dd-menu-contact-info .dd-phone {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .dd-b-menu .dd-b-main-menu .dd-b-body .dd-menu-contact-info .dd-links {
    line-height: 35px;
  }
  .dd-b-menu .dd-b-sub-menu {
    width: 300px;
    left: 390px;
  }
}
@media only screen and (min-width: 1690px) {
  .dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu {
    margin-bottom: 15%;
  }
  .dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .dd-b-menu .dd-b-main-menu .dd-b-body .dd-menu-contact-info .dd-phone {
    font-size: 25px;
  }
  .dd-b-menu .dd-b-main-menu .dd-b-body .dd-menu-contact-info .dd-links {
    line-height: 35px;
  }
}
@media only screen and (min-width: 2000px) {
  .dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li {
    font-size: 18px;
    margin-bottom: 30px;
  }
    .dd-b-menu .dd-b-main-menu .dd-b-body .dd-menu-contact-info .dd-phone {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .dd-b-menu .dd-menu-close {
    margin-left: 16px;
    float: left;
  }
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li sup{
  font-size: 12px;
}
/*
   .-----------------------------------------------------.
   |                     FLASH SCREEN                    |
   '-----------------------------------------------------'
*/
@-webkit-keyframes background-animation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@-moz-keyframes background-animation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@-ms-keyframes background-animation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@-o-keyframes background-animation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@keyframes background-animation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.mobile-view #fp-nav, .tablet-view #fp-nav {
  display: none !important;
}
@media only screen and (min-width: 1080px) {
  #fp-nav {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }
  #fp-nav.right {
    right: 50px;
  }
  #fp-nav:before {
    content: "";
    display: block;
    position: absolute;
    height: 17vh;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    left: 50%;
    top: 0;
    width: 1px;
    margin-top: -26px;
  }
  #fp-nav ul li {
    margin: 0 0 35px 0;
    width: 8px;
    height: 8px;
  }
  #fp-nav ul li:nth-last-child(1) {
    margin-bottom: 0;
  }
  #fp-nav ul li a {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  #fp-nav ul li a span {
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #fp-nav ul li a.active {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
  #fp-nav ul li a.active span {
    width: 100%;
    height: 100%;
  }
}
#fp-nav .fp-tooltip {
  text-transform: uppercase;
}

.dd-s-flashscreen {
  position: fixed;
  z-index: 9998;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #003851;
}
.dd-s-flashscreen .dd-flashscreen {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: all 2s ease-out;
  -moz-transition: all 2s ease-out;
  -o-transition: all 2s ease-out;
  transition: all 2s ease-out;
}
.dd-s-flashscreen.start {
  background: linear-gradient(0deg, #002333, #003851);
  background-size: 100% 400%;
  -webkit-animation: background-animation 5s linear infinite;
  -moz-animation: background-animation 5s linear infinite;
  -ms-animation: background-animation 5s linear infinite;
  -o-animation: background-animation 5s linear infinite;
  animation: background-animation 5s linear infinite;
}
.dd-s-flashscreen.start .dd-flashscreen {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.dd-s-flashscreen .dd-logo-flashscreen {
  z-index: 9999;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/*
   .-----------------------------------------------------.
   |                    INTRO SECTION                    |
   '-----------------------------------------------------'
*/
@-webkit-keyframes intro-sub-heading {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);
    top: 100%;
  }
  33% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
    top: 50%;
  }
  66% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
    top: 50%;
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);
    top: 100%;
  }
}
@-moz-keyframes intro-sub-heading {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);
    top: 100%;
  }
  33% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
    top: 50%;
  }
  66% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
    top: 50%;
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);
    top: 100%;
  }
}
@-ms-keyframes intro-sub-heading {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);
    top: 100%;
  }
  33% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
    top: 50%;
  }
  66% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
    top: 50%;
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);
    top: 100%;
  }
}
@-o-keyframes intro-sub-heading {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);
    top: 100%;
  }
  33% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
    top: 50%;
  }
  66% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
    top: 50%;
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);
    top: 100%;
  }
}
@keyframes intro-sub-heading {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);
    top: 100%;
  }
  33% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
    top: 50%;
  }
  66% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
    top: 50%;
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);
    top: 100%;
  }
}
@-webkit-keyframes scroll-down-button {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    top: 31%;
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    top: 56%;
  }
}
@-moz-keyframes scroll-down-button {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    top: 31%;
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    top: 56%;
  }
}
@-ms-keyframes scroll-down-button {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    top: 31%;
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    top: 56%;
  }
}
@-o-keyframes scroll-down-button {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    top: 31%;
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    top: 56%;
  }
}
@keyframes scroll-down-button {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    top: 31%;
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    top: 56%;
  }
}
.dd-scroll-btn {
  position: absolute;
  bottom: 7%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%);
  height: 15vh;
  width: 26px;
}
@media only screen and (min-width: 1080px) {
  .dd-scroll-btn {
    height: 10vh;
  }
}
.dd-scroll-btn span {
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 100%;
  height: 26px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: absolute;
  z-index: 20;
}
.dd-scroll-btn span:first-child {
  background-color: #FFFFFF;
  top: 0;
  left: 0;
}
.dd-scroll-btn span:first-child:before, .dd-scroll-btn span:first-child:after {
  background-color: #003851;
  width: 6px;
  height: 1px;
  content: "";
  display: block;
  position: absolute;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  margin-left: -5px;
  margin-top: 1px;
}
.dd-scroll-btn span:first-child:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: -1px;
}
.villas .dd-scroll-btn span:first-child {
  background-color: #7C7C7C;
}
.villas .dd-scroll-btn span:first-child:before, .villas .dd-scroll-btn span:first-child:after {
  background-color: #FFFFFF;
}
.dd-scroll-btn span:nth-child(2) {
  width: 6px;
  height: 6px;
  background-color: #FFFFFF;
  top: 38px;
  left: 50%;
  margin-left: -3px;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-animation: scroll-down-button 1.5s linear infinite;
  -moz-animation: scroll-down-button 1.5s linear infinite;
  -ms-animation: scroll-down-button 1.5s linear infinite;
  -o-animation: scroll-down-button 1.5s linear infinite;
  animation: scroll-down-button 1.5s linear infinite;
}
.villas .dd-scroll-btn span:nth-child(2) {
  background-color: rgba(124, 124, 124, 0.4);
}
.dd-scroll-btn span:last-child {
  border: 1px solid #FFFFFF;
  left: 0;
  bottom: 0;
}
.villas .dd-scroll-btn span:last-child {
  border-color: #7C7C7C;
}
.dd-scroll-btn:hover span {
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
@media only screen and (min-width: 1080px) {
  .dd-scroll-btn .dd-scroll-btn {
    height: 10vh;
  }
}

.dd-s-intro .dd-logo {
  position: absolute;
  z-index: 10;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%);
  top: 23px;
  display: block;
}
.dd-s-intro .dd-logo img {
  display: block;
  width: 150px;
}
.ie .dd-s-intro .dd-logo {
  z-index: 99;
}
.ie9 .dd-s-intro .dd-logo {
  z-index: 9999;
}
.dd-s-intro .dd-b-text {
  position: absolute;
  top: 30%;
  text-align: center;
  width: 100%;
  z-index: 2;
}
.dd-s-intro .dd-main-heading {
  font-size: 20px;
  line-height: 1.25em;
  font-weight: 300;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0;
}
.dd-s-intro .dd-main-heading span {
  display: block;
  text-align: center;
}
.dd-s-intro .dd-sub-heading {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 1.4em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}
.dd-s-intro .dd-sub-heading span {
  width: 100%;
  display: block;
  padding-left: 20px;
  padding-right: 20px;
}
.dd-s-intro .slick-dots {
  display: none !important;
}
.dd-s-intro .dd-sky .dd-fullscreen-banner {
  position: relative;
  z-index: 5;
}
.dd-s-intro #dd-viewport {
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -o-perspective: 1000;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  cursor: none;
  background: #153964;
  background: -moz-linear-gradient(top, #153964 0%, #6caafa 50%, #7eafef 100%);
  background: -webkit-linear-gradient(top, #153964 0%, #6caafa 50%, #7eafef 100%);
  background: linear-gradient(to bottom, #153964 0%, #6caafa 50%, #7eafef 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#153964", endColorstr="#7eafef",GradientType=0 );
}
.dd-s-intro #dd-world {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -256px;
  height: 512px;
  width: 512px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
}
.dd-s-intro #dd-world div {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
}
.ie .dd-s-intro #dd-world, .gecko .dd-s-intro #dd-world {
  background: url(../themes/eden/assets/images/cloud-ie.png) 0 0 no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  bottom: 30%;
  right: 0;
  margin-left: 0;
  margin-top: 0;
  height: 100%;
  width: 100%;
}
.ie .dd-s-intro #dd-world div, .gecko .dd-s-intro #dd-world div {
  display: none;
}
.dd-s-intro .dd-cloud-base {
  position: absolute;
  left: 256px;
  top: 256px;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
}
.dd-s-intro .dd-cloud-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 256px;
  height: 256px;
  margin-left: -128px;
  margin-top: -128px;
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
  max-width: none;
}
@media only screen and (min-width: 1080px) {
  .dd-s-intro .dd-logo {
    top: 50px;
  }
  .dd-s-intro .dd-scroll-btn {
    height: 10vh;
  }
  .dd-s-intro .dd-main-heading {
    font-weight: 100;
    font-size: 6vh;
    display: inline-block;
    vertical-align: middle;
  }
  .dd-s-intro .dd-sub-heading {
    display: inline-block;
    vertical-align: middle;
    font-size: 3vh;
    width: 35%;
    margin-top: 0;
  }
  .dd-s-intro .dd-sub-heading span {
    text-align: left;
    padding-right: 0;
  }
  .dd-s-intro .slick-dots {
    display: block !important;
    bottom: auto;
    top: 50%;
    left: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 16px;
    height: auto;
  }
  .dd-s-intro .slick-dots li {
    border-bottom: 3px solid rgba(255, 255, 255, 0);
    padding-bottom: 7px;
    display: block;
    margin-bottom: 40px;
  }
  .dd-s-intro .slick-dots li button {
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    color: #FFFFFF;
    display: block;
    width: auto;
    height: auto;
    padding: 0;
  }
  .dd-s-intro .slick-dots li.slick-active {
    border-bottom-color: white;
  }
}

/*
   .-----------------------------------------------------.
   |                GENERAL MAP & HOTPOTS                |
   '-----------------------------------------------------'
*/
.dd-scroll-area {
  overflow: hidden;
  height: 100% !important;
}
.dd-scroll-area .dd-map-hotpot {
  position: relative;
  z-index: 5;
  left: 50% !important;
  top: 50% !important;
  height: 100%;
}
.dd-scroll-area .dd-map-hotpot img {
  display: block;
}
.dd-scroll-area .dd-map-hotpot .dd-hotpot {
  position: absolute;
  z-index: 6;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -moz-transform-origin: center center;
  -o-transform-origin: center center;
  -ms-transform-origin: center center;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: auto;
}

/*
   .-----------------------------------------------------.
   |                  LOCATION SECTION                   |
   '-----------------------------------------------------'
*/
@-webkit-keyframes location-key-hotpot {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -o-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
  }
}
@-moz-keyframes location-key-hotpot {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -o-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
  }
}
@-ms-keyframes location-key-hotpot {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -o-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
  }
}
@-o-keyframes location-key-hotpot {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -o-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
  }
}
@keyframes location-key-hotpot {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -o-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
  }
}
@-webkit-keyframes h-move {
  0% {
    left: 0px;
  }
  100% {
    left: 400px;
  }
}
@-moz-keyframes h-move {
  0% {
    left: 0px;
  }
  100% {
    left: 400px;
  }
}
@-ms-keyframes h-move {
  0% {
    left: 0px;
  }
  100% {
    left: 400px;
  }
}
@-o-keyframes h-move {
  0% {
    left: 0px;
  }
  100% {
    left: 400px;
  }
}
@keyframes h-move {
  0% {
    left: 0px;
  }
  100% {
    left: 400px;
  }
}
@-webkit-keyframes v-move {
  0% {
    top: 0px;
  }
  100% {
    top: 400px;
  }
}
@-moz-keyframes v-move {
  0% {
    top: 0px;
  }
  100% {
    top: 400px;
  }
}
@-ms-keyframes v-move {
  0% {
    top: 0px;
  }
  100% {
    top: 400px;
  }
}
@-o-keyframes v-move {
  0% {
    top: 0px;
  }
  100% {
    top: 400px;
  }
}
@keyframes v-move {
  0% {
    top: 0px;
  }
  100% {
    top: 400px;
  }
}
.dd-s-location {
  background-color: #f9f6ed;
}
.dd-s-location .dd-b-location {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.dd-s-location .dd-scroll-area {
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (min-width: 1080px) {
  .dd-s-location .dd-scroll-area {
    padding: 0;
  }
}
.dd-s-location .dd-location-map .dd-hotpot {
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  background-size: 18px;
}
.dd-s-location .dd-location-map .dd-hotpot.is-area {
  background-color: #004462;
  width: 20px;
  height: 20px;
  cursor: default;
}
.dd-s-location .dd-location-map .dd-hotpot.is-area:before {
  height: 47px;
  width: 1px;
  background-color: #004462;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 25px;
}
.dd-s-location .dd-location-map .dd-hotpot.is-area:after {
  content: "";
  background-color: rgba(0, 68, 98, 0.4);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: -6px;
  right: -6px;
  left: -6px;
  bottom: -6px;
  width: auto;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  display: block;
  padding: 0;
}
.dd-s-location .dd-location-map .dd-hotpot.is-area .dd-label {
    font-size: 11px;
    line-height: 1.4;
    position: absolute;
    z-index: 5;
    bottom: 42px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #004462;
    text-align: center;
    padding: 5px 10px;
    white-space: nowrap;
    color: #FFFFFF;
    text-transform: uppercase;
}
.dd-s-location .dd-location-map .dd-hotpot.is-area .dd-label strong {
  font-weight: 700;
  display: block;
}
.dd-s-location .dd-location-map .dd-hotpot.is-school {
  background-color: #284d87;
  background-image: url(../themes/eden/assets/images/icon-filter-school-white.svg);
}
.dd-s-location .dd-location-map .dd-hotpot.is-mall {
  background-color: #451857;
  background-image: url(../themes/eden/assets/images/icon-filter-mall-white.svg);
}
.dd-s-location .dd-location-map .dd-hotpot.is-sport {
  background-color: #008627;
  background-image: url(../themes/eden/assets/images/icon-filter-sport-white.svg);
}
.dd-s-location .dd-location-map .dd-hotpot.is-hospital {
  background-color: #bf3460;
  background-image: url(../themes/eden/assets/images/icon-filter-hospital-white.svg);
}
.dd-s-location .dd-location-map .dd-hotpot.is-eden {
  background-color: #004462;
  width: 38px;
  height: 38px;
}
.dd-s-location .dd-location-map .dd-hotpot.is-eden:before {
  height: 33px;
  width: 1px;
  background-color: #004462;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 38px;
}
.dd-s-location .dd-location-map .dd-hotpot.is-eden:after {
  content: "";
  background-color: rgba(0, 68, 98, 0.4);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: -6px;
  right: -6px;
  left: -6px;
  bottom: -6px;
  width: auto;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  display: block;
  padding: 0;
}
.dd-s-location .dd-location-map .dd-hotpot.is-eden .dd-label {
  position: absolute;
  z-index: 5;
  bottom: 45px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #004462 url(../themes/eden/assets/images/logo-eden-text.svg) center center no-repeat;
  background-size: 117px 26px;
  width: 150px;
  height: 50px;
  display: block;
  overflow: hidden;
}
.dd-s-location .dd-location-map .dd-hotpot.is-eden .dd-label .dd-bar {
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #FFFFFF;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.dd-s-location .dd-location-map .dd-hotpot.is-eden .dd-label .dd-bar.dd-delay {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}
.dd-s-location .dd-location-map .dd-hotpot.is-eden .dd-label .dd-bar.dd-top {
  top: 0px;
  left: 0px;
}
.dd-s-location .dd-location-map .dd-hotpot.is-eden .dd-label .dd-bar.dd-right {
  top: 0px;
  right: 0px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  transform-origin: 100% 0;
  -webkit-transform-origin: 100% 0;
}
.dd-s-location .dd-location-map .dd-hotpot.is-eden .dd-label .dd-bar.dd-bottom {
  bottom: 0px;
  left: 0px;
}
.dd-s-location .dd-location-map .dd-hotpot.is-eden .dd-label .dd-bar.dd-left {
  top: 0px;
  left: 2px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}
.dd-s-location .dd-location-map .dd-hotpot.is-eden .dd-label .dd-bar.dd-top, .dd-s-location .dd-location-map .dd-hotpot.is-eden .dd-label .dd-bar.dd-bottom {
  -webkit-animation: h-move 1s linear infinite;
  -moz-animation: h-move 1s linear infinite;
  -ms-animation: h-move 1s linear infinite;
  -o-animation: h-move 1s linear infinite;
  animation: h-move 1s linear infinite;
}
.dd-s-location .dd-location-map .dd-hotpot.is-eden .dd-label .dd-bar.dd-right, .dd-s-location .dd-location-map .dd-hotpot.is-eden .dd-label .dd-bar.dd-left {
  -webkit-animation: v-move 1s linear infinite;
  -moz-animation: v-move 1s linear infinite;
  -ms-animation: v-move 1s linear infinite;
  -o-animation: v-move 1s linear infinite;
  animation: v-move 1s linear infinite;
}
.dd-s-location .dd-location-map .dd-hotpot:after {
  content: attr(data-place);
  display: block;
  position: absolute;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.3em;
  color: #FFFFFF;
  background-color: #004462;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  top: 50%;
  right: 40px;
  width: 211px;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
  padding: 4px 6px;
}
.dd-s-location .dd-location-map .dd-hotpot.is-right:after {
  left: 50px;
  right: auto;
}
.dd-s-location .dd-location-map .dd-hotpot:hover {
  z-index: 12;
}
.dd-s-location .dd-location-map .dd-hotpot:hover:after {
  display: block;
}
.dd-s-location .dd-location-map .dd-hotpot.hide {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.dd-s-location .dd-location-filter {
  position: absolute;
  z-index: 1;
  z-index: 30;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
.dd-s-location .dd-location-filter:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #8d8d8d;
  z-index: 1;
}
.dd-s-location .dd-location-filter li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  position: relative;
  z-index: 5;
}
.dd-s-location .dd-location-filter li a {
  width: 40px;
  height: 40px;
  display: block;
  background-color: #8d8d8d;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.dd-s-location .dd-location-filter li a.active {
  background-color: #053349;
}
.dd-s-location .dd-location-filter li a.dd-filter-all {
  background-image: url(../themes/eden/assets/images/icon-filter-all.svg);
  background-size: 16px 16px;
}
.dd-s-location .dd-location-filter li a.dd-filter-all.active {
  background-image: url(../themes/eden/assets/images/icon-filter-all-active.svg);
  background-size: 16px 16px;
}
.dd-s-location .dd-location-filter li a.dd-filter-school {
  background-image: url(../themes/eden/assets/images/icon-filter-school.svg);
  background-size: 23px 16px;
}
.dd-s-location .dd-location-filter li a.dd-filter-school.active {
  background-image: url(../themes/eden/assets/images/icon-filter-school-active.svg);
  background-size: 23px 16px;
}
.dd-s-location .dd-location-filter li a.dd-filter-hospital {
  background-image: url(../themes/eden/assets/images/icon-filter-hospital.svg);
  background-size: 19px 16px;
}
.dd-s-location .dd-location-filter li a.dd-filter-hospital.active {
  background-image: url(../themes/eden/assets/images/icon-filter-hospital-active.svg);
  background-size: 19px 16px;
}
.dd-s-location .dd-location-filter li a.dd-filter-mall {
  background-image: url(../themes/eden/assets/images/icon-filter-mall.svg);
  background-size: 16px 16px;
}
.dd-s-location .dd-location-filter li a.dd-filter-mall.active {
  background-image: url(../themes/eden/assets/images/icon-filter-mall-active.svg);
  background-size: 16px 16px;
}
.dd-s-location .dd-location-filter li a.dd-filter-sport {
  background-image: url(../themes/eden/assets/images/icon-filter-sport.svg);
  background-size: 23px 23px;
}
.dd-s-location .dd-location-filter li a.dd-filter-sport.active {
  background-image: url(../themes/eden/assets/images/icon-filter-sport-active.svg);
}
.dd-s-location .dd-location-filter li:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 1080px) {
  .dd-s-location .dd-location-filter {
    left: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: auto;
    right: auto;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background-color: rgba(249, 246, 237, 0.8);
  }
  .dd-s-location .dd-location-filter:after {
    display: none;
  }
  .dd-s-location .dd-location-filter li {
    display: block;
    margin-right: 0;
    margin-bottom: -1px;
  }
  .dd-s-location .dd-location-filter li a {
    background: transparent !important;
    width: 100%;
    height: auto;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 28px;
    text-align: left;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .dd-s-location .dd-location-filter li a.active {
    background: #f9f6ed !important;
    color: rgba(0, 0, 0, 0.7);
    border-color: rgba(0, 0, 0, 0.7);
  }
  .dd-s-location .dd-location-filter li a:hover {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
  }
}

/*
   .-----------------------------------------------------.
   |               PROJECT OVERVIEW SECTION              |
   '-----------------------------------------------------'
*/
@-webkit-keyframes hotpot-hover {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -o-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes hotpot-hover {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -o-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-ms-keyframes hotpot-hover {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -o-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes hotpot-hover {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -o-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hotpot-hover {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -o-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes dot-breadcrumb {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -o-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
  }
}
@-moz-keyframes dot-breadcrumb {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -o-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
  }
}
@-ms-keyframes dot-breadcrumb {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -o-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
  }
}
@-o-keyframes dot-breadcrumb {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -o-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
  }
}
@keyframes dot-breadcrumb {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -o-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
  }
}
@-webkit-keyframes hotpot-label {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    width: 0;
  }
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    width: 200px;
  }
}
@-moz-keyframes hotpot-label {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    width: 0;
  }
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    width: 200px;
  }
}
@-ms-keyframes hotpot-label {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    width: 0;
  }
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    width: 200px;
  }
}
@-o-keyframes hotpot-label {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    width: 0;
  }
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    width: 200px;
  }
}
@keyframes hotpot-label {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    width: 0;
  }
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    width: 200px;
  }
}
@-webkit-keyframes icon-fade {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  50% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
}
@-moz-keyframes icon-fade {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  50% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
}
@-ms-keyframes icon-fade {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  50% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
}
@-o-keyframes icon-fade {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  50% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
}
@keyframes icon-fade {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  50% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
}
@-webkit-keyframes hotpot-line {
  0% {
    height: 0;
  }
  100% {
    height: 80px;
  }
}
@-moz-keyframes hotpot-line {
  0% {
    height: 0;
  }
  100% {
    height: 80px;
  }
}
@-ms-keyframes hotpot-line {
  0% {
    height: 0;
  }
  100% {
    height: 80px;
  }
}
@-o-keyframes hotpot-line {
  0% {
    height: 0;
  }
  100% {
    height: 80px;
  }
}
@keyframes hotpot-line {
  0% {
    height: 0;
  }
  100% {
    height: 80px;
  }
}
@-webkit-keyframes back-icon {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(-30%);
    -moz-transform: translateX(-30%);
    -o-transform: translateX(-30%);
    -ms-transform: translateX(-30%);
    transform: translateX(-30%);
  }
}
@-moz-keyframes back-icon {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(-30%);
    -moz-transform: translateX(-30%);
    -o-transform: translateX(-30%);
    -ms-transform: translateX(-30%);
    transform: translateX(-30%);
  }
}
@-ms-keyframes back-icon {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(-30%);
    -moz-transform: translateX(-30%);
    -o-transform: translateX(-30%);
    -ms-transform: translateX(-30%);
    transform: translateX(-30%);
  }
}
@-o-keyframes back-icon {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(-30%);
    -moz-transform: translateX(-30%);
    -o-transform: translateX(-30%);
    -ms-transform: translateX(-30%);
    transform: translateX(-30%);
  }
}
@keyframes back-icon {
  0% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateX(-30%);
    -moz-transform: translateX(-30%);
    -o-transform: translateX(-30%);
    -ms-transform: translateX(-30%);
    transform: translateX(-30%);
  }
}
@-webkit-keyframes nothing {}
@-moz-keyframes nothing {}
@-ms-keyframes nothing {}
@-o-keyframes nothing {}
@keyframes nothing {}
.dd-s-project-overview {
  background-color: #f9f6ed;
}
.dd-s-project-overview .dd-compass {
  background: url(../themes/eden/assets/images/icon-compass.png) 0 0 no-repeat;
  background-size: 80px 80px;
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 60;
  left: 21px;
  bottom: 21px;
}
.dd-s-project-overview .dd-project-overview-decor {
  width: 38%;
  height: 100%;
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  background-size: 100% auto;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .dd-s-project-overview .dd-project-overview-decor {
    width: 15%;
    max-width: 284px;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-project-overview .dd-project-overview-decor {
    width: 20%;
    max-width: 438px;
    background-image: url(../themes/eden/assets/images/bg-tree.png);
    background-repeat: no-repeat;
  }
}
.dd-s-project-overview .dd-map-hotpot .dd-hotpot {
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.dd-s-project-overview .dd-map-hotpot .dd-hotpot:before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 0;
  background-color: #FFFFFF;
  bottom: 50%;
  left: 50%;
  z-index: 5;
}
.dd-s-project-overview .dd-map-hotpot .dd-hotpot:after {
  content: attr(data-place);
  display: block;
  position: absolute;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: #002333;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  bottom: 105px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 6;
  text-align: center;
  font-size: 20px;
  line-height: 34px;
  width: 0;
  overflow: hidden;
  padding: 0;
}
.dd-s-project-overview .dd-map-hotpot .dd-hotpot span {
  display: block;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 7;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
@media only screen and (min-width: 1080px) {
  .dd-s-project-overview .dd-map-hotpot .dd-hotpot span {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.dd-s-project-overview .dd-map-hotpot .dd-hotpot span:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  background: #FFFFFF url(../themes/eden/assets/images/icon-plus.svg) center center no-repeat;
  z-index: 5;
  top: 6px;
  bottom: 6px;
  left: 6px;
  right: 6px;
}
.dd-s-project-overview .dd-map-hotpot .dd-hotpot:hover, .dd-s-project-overview .dd-map-hotpot .dd-hotpot.is-active {
  text-decoration: none;
}
.dd-s-project-overview .dd-map-hotpot .dd-hotpot:hover span, .dd-s-project-overview .dd-map-hotpot .dd-hotpot.is-active span {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -o-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
.dd-s-project-overview .dd-map-hotpot .dd-hotpot:hover span:after, .dd-s-project-overview .dd-map-hotpot .dd-hotpot.is-active span:after {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.4);
  top: -25%;
  bottom: 0;
  left: -25%;
  right: 0;
  width: 150%;
  height: 150%;
  -webkit-animation: hotpot-hover 1s linear infinite;
  -moz-animation: hotpot-hover 1s linear infinite;
  -ms-animation: hotpot-hover 1s linear infinite;
  -o-animation: hotpot-hover 1s linear infinite;
  animation: hotpot-hover 1s linear infinite;
}
.dd-s-project-overview .dd-map-hotpot .dd-hotpot.not-link {
  width: 25px;
  height: 25px;
  cursor: default;
}
.dd-s-project-overview .dd-map-hotpot .dd-hotpot.not-link span {
  width: 25px;
  height: 25px;
  background-color: #FFFFFF;
}
.dd-s-project-overview .dd-map-hotpot .dd-hotpot.not-link span:before {
  display: none;
}
.dd-s-project-overview .dd-map-hotpot .dd-hotpot.not-link:hover span {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.dd-s-project-overview .dd-map-hotpot .dd-hotpot.not-link:hover span:after {
  display: none;
}
.dd-s-project-overview .dd-project-slide {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.dd-s-project-overview .dd-project-slide.active {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  z-index: 20;
}
.dd-s-project-overview .dd-project-slide .dd-scroll-area {
  padding: 0;
}
@media only screen and (min-width: 1080px) {
  .dd-s-project-overview .dd-eden-map .dd-map-hotpot .dd-hotpot:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 0;
    z-index: 6;
    background-color: #FFFFFF;
    bottom: 50%;
    left: 50%;
    z-index: 5;
  }
  .dd-s-project-overview .dd-eden-map .dd-map-hotpot .dd-hotpot:after {
    content: attr(data-place);
    display: block;
    position: absolute;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #002333;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    bottom: 105px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 6;
    text-align: center;
    font-size: 20px;
    line-height: 34px;
    width: 0;
    overflow: hidden;
    padding: 0;
  }
  .dd-s-project-overview .dd-eden-map .dd-map-hotpot .dd-hotpot.not-link:after {
    bottom: 80px;
    font-size: 15px;
  }
}
@media only screen and (min-width: 1690px) {
  .dd-s-project-overview .dd-eden-map .dd-map-hotpot .dd-hotpot:after {
    font-size: 17px;
    line-height: 28px;
  }
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:before {
  -webkit-animation: hotpot-line 0.5s linear 1;
  -moz-animation: hotpot-line 0.5s linear 1;
  -ms-animation: hotpot-line 0.5s linear 1;
  -o-animation: hotpot-line 0.5s linear 1;
  animation: hotpot-line 0.5s linear 1;
  animation-fill-mode: forwards;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:after {
  -webkit-animation: hotpot-label 0.5s linear 1;
  -moz-animation: hotpot-label 0.5s linear 1;
  -ms-animation: hotpot-label 0.5s linear 1;
  -o-animation: hotpot-label 0.5s linear 1;
  animation: hotpot-label 0.5s linear 1;
  animation-fill-mode: forwards;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(2):before {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(2):after {
  animation-delay: 1.9s;
  -webkit-animation-delay: 1.9s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(3):before {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(3):after {
  animation-delay: 1.7s;
  -webkit-animation-delay: 1.7s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(4):before {
  animation-delay: 1.6s;
  -webkit-animation-delay: 1.6s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(4):after {
  animation-delay: 2.1s;
  -webkit-animation-delay: 2.1s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(5):before {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(5):after {
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(6):before {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(6):after {
  animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(7):before {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(7):after {
  animation-delay: 1.3s;
  -webkit-animation-delay: 1.3s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(8):before {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(8):after {
  animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(9):before {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(9):after {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(10):before {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot.animation .dd-hotpot:nth-child(10):after {
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
}
.dd-s-project-overview .dd-eden-map .dd-scroll-area {
  padding-top: 50px;
  padding-bottom: 76px;
}
@media only screen and (min-width: 1080px) {
  .dd-s-project-overview .dd-eden-map .dd-scroll-area {
    padding-bottom: 50px;
  }
}
.dd-s-project-overview .dd-project-info {
  display: none;
  position: absolute;
  z-index: 32;
  left: 20px;
  right: 20px;
  top: 0;
  bottom: auto;
  pointer-events: none;
}
.dd-s-project-overview .dd-project-info .dd-back {
  position: absolute;
  top: 38px;
  left: 0;
  color: #FFFFFF;
  letter-spacing: 1px;
  font-size: 12px;
  line-height: 14px;
}
.dd-s-project-overview .dd-project-info .dd-back:before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../themes/eden/assets/images/icon-back-white.svg) 0 0 no-repeat;
  background-size: 43px 14px;
  width: 43px;
  height: 14px;
  vertical-align: middle;
  margin-right: 8px;
}
.dd-s-project-overview .dd-project-info .dd-read-more {
  display: none;
}
.dd-s-project-overview .dd-project-info .dd-b-head {
  pointer-events: auto;
  padding-top: 91px;
}
.dd-s-project-overview .dd-project-info .dd-b-head h2 {
  font-size: 20px;
  line-height: 1.25em;
  text-transform: uppercase;
  font-weight: 300;
  padding-right: 45px;
  position: relative;
  z-index: 2;
  display: inline-block;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.dd-s-project-overview .dd-project-info .dd-b-head h2 strong {
  font-weight: 700;
}
.dd-s-project-overview .dd-project-info .dd-b-head h2:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 300;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 1em;
  background: #FFFFFF url(../themes/eden/assets/images/icon-plus.svg) center center no-repeat;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 5;
  font-size: 24px;
  cursor: pointer;
}
.dd-s-project-overview .dd-project-info .dd-b-head h2:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 4;
  right: -5px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}
.dd-s-project-overview .dd-project-info .dd-b-body {
  pointer-events: auto;
  background-color: rgba(0, 35, 51, 0.9);
  border-top: 1px solid #c9b45f;
  padding: 65px 20px 20px 20px;
  position: absolute;
  z-index: 9;
  top: 20px;
  display: none;
}
.dd-s-project-overview .dd-project-info .dd-b-body .dd-close {
  font-size: 12px;
  text-transform: uppercase;
  position: absolute;
  z-index: 10;
  float: right;
  padding-right: 35px;
  color: #FFFFFF;
  top: 15px;
  right: 16px;
  padding-top: 2px;
}
.dd-s-project-overview .dd-project-info .dd-b-body .dd-close:before, .dd-s-project-overview .dd-project-info .dd-b-body .dd-close:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 11;
  top: 50%;
  right: 0;
  width: 28px;
  height: 1px;
  background-color: #FFFFFF;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-s-project-overview .dd-project-info .dd-b-body .dd-close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.dd-s-project-overview .dd-project-info .dd-b-body .dd-close:hover {
  text-decoration: none;
}
.dd-s-project-overview .dd-project-info .dd-b-body .dd-close:hover:before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.dd-s-project-overview .dd-project-info .dd-b-body .dd-close:hover:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.dd-s-project-overview .dd-project-info .dd-b-body p {
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0px;
  color: #FFFFFF;
}
.dd-s-project-overview .dd-project-info .dd-b-body *:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .dd-s-project-overview .dd-project-info .dd-b-body {
    width: 100%;
    padding-bottom: 45px;
  }
  .dd-s-project-overview .dd-project-info .dd-b-body p {
    line-height: 20px;
    letter-spacing: 1px;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-project-overview .dd-project-info {
    left: 6%;
    right: 6%;
    top: 16%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .dd-s-project-overview .dd-project-info .dd-back {
    position: relative;
    display: block;
    text-align: right;
    top: auto;
    left: auto;
  }
  .dd-s-project-overview .dd-project-info .dd-back:hover {
    text-decoration: none;
  }
  .dd-s-project-overview .dd-project-info .dd-back:hover:before {
    -webkit-animation: back-icon 1s linear infinite;
    -moz-animation: back-icon 1s linear infinite;
    -ms-animation: back-icon 1s linear infinite;
    -o-animation: back-icon 1s linear infinite;
    animation: back-icon 1s linear infinite;
  }
  .dd-s-project-overview .dd-project-info .dd-b-head {
    padding-top: 0;
    display: inline-block;
    vertical-align: middle;
  }
  .dd-s-project-overview .dd-project-info .dd-b-head h2 {
    font-size: 6vh;
    line-height: 1em;
    display: block;
    text-align: right;
  }
  .dd-s-project-overview .dd-project-info .dd-b-head h2:after {
    font-size: 20px;
  }
  .dd-s-project-overview .dd-project-info .dd-b-head .dd-back {
    margin-top: 7px;
    padding-right: 45px;
  }
  .dd-s-project-overview .dd-project-info .dd-b-body {
    top: 91px;
    width: 50%;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
  }
  .dd-s-project-overview .dd-project-info .dd-b-body p {
    font-size: 14px;
  }
  .dd-s-project-overview .dd-project-info.dd-mini-ver {
    left: 0;
    top: 11%;
    right: auto;
    bottom: auto;
    width: 490px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .dd-s-project-overview .dd-project-info.dd-mini-ver .dd-back,
.dd-s-project-overview .dd-project-info.dd-mini-ver .dd-close {
    display: none;
  }
  .dd-s-project-overview .dd-project-info.dd-mini-ver .dd-read-more {
    display: block;
    float: right;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 18px;
    color: #FFFFFF;
    position: relative;
    z-index: 5;
    padding-left: 25px;
    margin-top: 6px;
  }
  .dd-s-project-overview .dd-project-info.dd-mini-ver .dd-read-more:before, .dd-s-project-overview .dd-project-info.dd-mini-ver .dd-read-more:after {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 1px;
    background-color: #FFFFFF;
    top: 4px;
    left: 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .dd-s-project-overview .dd-project-info.dd-mini-ver .dd-read-more:after {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    left: 17px;
    top: 5px;
  }
  .dd-s-project-overview .dd-project-info.dd-mini-ver .dd-read-more:hover {
    text-decoration: none;
  }
  .dd-s-project-overview .dd-project-info.dd-mini-ver .dd-read-more:hover:before, .dd-s-project-overview .dd-project-info.dd-mini-ver .dd-read-more:hover:after {
    -webkit-animation: icon-fade 1s linear infinite;
    -moz-animation: icon-fade 1s linear infinite;
    -ms-animation: icon-fade 1s linear infinite;
    -o-animation: icon-fade 1s linear infinite;
    animation: icon-fade 1s linear infinite;
  }
  .dd-s-project-overview .dd-project-info.dd-mini-ver .dd-b-head {
    background-color: rgba(0, 35, 51, 0.9);
    padding: 33px 20px 22px 40px;
    display: block;
    width: 100%;
    max-width: none;
  }
  .dd-s-project-overview .dd-project-info.dd-mini-ver .dd-b-head h2 {
    font-size: 20px;
    line-height: 24px;
    display: block;
    text-align: left;
    margin-bottom: 0px;
    padding-bottom: 2px;
    border-bottom: 1px solid #c9b45f;
  }
  .dd-s-project-overview .dd-project-info.dd-mini-ver .dd-b-head h2:after, .dd-s-project-overview .dd-project-info.dd-mini-ver .dd-b-head h2:before {
    display: none;
  }
  .dd-s-project-overview .dd-project-info.dd-mini-ver .dd-b-body {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 23px 20px 33px 40px;
    display: block !important;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    margin-left: 0;
    width: 100%;
    max-width: none;
    top: 82px;
  }
  .dd-s-project-overview .dd-project-info.dd-mini-ver .dd-b-body p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
  }
  .dd-s-project-overview .dd-project-info.dd-mini-ver.open-content .dd-b-body {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  .dd-s-project-overview .dd-project-info.dd-mini-ver.open-content .dd-read-more:before, .dd-s-project-overview .dd-project-info.dd-mini-ver.open-content .dd-read-more:after {
    top: 12px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .dd-s-project-overview .dd-project-info.dd-mini-ver.open-content .dd-read-more:after {
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 13px;
  }
}
.dd-s-project-overview .dd-project-breadcrumb {
  display: none;
  position: absolute;
  z-index: 30;
  bottom: 0;
  left: 20px;
  right: 0;
}
.dd-s-project-overview .dd-project-breadcrumb a {
  display: inline-block;
}
.dd-s-project-overview .dd-project-breadcrumb .dd-hotpot {
  width: 12px;
  height: 12px;
  background-color: #FFFFFF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 39;
}
.dd-s-project-overview .dd-project-breadcrumb .dd-hotpot:before {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #FFFFFF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -webkit-animation: dot-breadcrumb 1.3s linear infinite;
  -moz-animation: dot-breadcrumb 1.3s linear infinite;
  -ms-animation: dot-breadcrumb 1.3s linear infinite;
  -o-animation: dot-breadcrumb 1.3s linear infinite;
  animation: dot-breadcrumb 1.3s linear infinite;
}
.dd-s-project-overview .dd-project-breadcrumb .dd-thumbnail {
  height: 118px;
  position: relative;
  z-index: 35;
  display: block;
}
.dd-s-project-overview .dd-project-breadcrumb .dd-cur-slide {
  font-size: 12px;
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  padding-left: 47px;
  line-height: 20px;
  background: #FFFFFF;
  position: absolute;
  z-index: 29;
  right: 31px;
  bottom: 37px;
  left: 60px;
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.dd-s-project-overview .dd-project-breadcrumb .dd-back {
  color: #FFFFFF;
  letter-spacing: 1px;
  background: rgba(0, 35, 51, 0.7);
  position: absolute;
  z-index: 28;
  left: 60px;
  right: 0;
  bottom: 8px;
  font-size: 12px;
  line-height: 29px;
  text-align: right;
  padding-right: 10px;
  pointer-events: auto;
  margin-bottom: 0;
  text-transform: uppercase;
}
.dd-s-project-overview .dd-project-breadcrumb .dd-back a:first-child {
  color: #FFFFFF;
}
.dd-s-project-overview .dd-project-breadcrumb .dd-back a:first-child:before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../themes/eden/assets/images/icon-back-white.svg) 0 0 no-repeat;
  background-size: 38px 12px;
  width: 38px;
  height: 12px;
  vertical-align: middle;
  margin-right: 5px;
}
.dd-s-project-overview .dd-project-breadcrumb .dd-back a:first-child:hover {
  text-decoration: none;
  color: #c9b45f;
}
.dd-s-project-overview .dd-project-breadcrumb .dd-back span {
  display: none;
}
@media only screen and (min-width: 768px) {
  .dd-s-project-overview .dd-project-breadcrumb {
    max-width: 320px;
  }
  .dd-s-project-overview .dd-project-breadcrumb .dd-back {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-project-overview .dd-project-breadcrumb {
    left: 6%;
    bottom: 20px;
    right: auto;
  }
  .dd-s-project-overview .dd-project-breadcrumb .dd-hotpot {
    width: 10px;
    height: 10px;
  }
  .dd-s-project-overview .dd-project-breadcrumb .dd-hotpot:before {
    content: "";
    display: block;
    position: absolute;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none;
    width: 1px;
    height: 80px;
    z-index: 6;
    background-color: #FFFFFF;
    bottom: 50%;
    left: 50%;
    z-index: 5;
    -webkit-animation: nothing 0s linear 1;
    -moz-animation: nothing 0s linear 1;
    -ms-animation: nothing 0s linear 1;
    -o-animation: nothing 0s linear 1;
    animation: nothing 0s linear 1;
  }
  .dd-s-project-overview .dd-project-breadcrumb .dd-hotpot:after {
    content: attr(data-place);
    display: block;
    position: absolute;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
    background-color: #FFFFFF;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    bottom: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 6;
    text-align: center;
    font-size: 13px;
    line-height: 20px;
    padding: 0 22px;
  }
  .dd-s-project-overview .dd-project-breadcrumb .dd-cur-slide {
    display: none;
  }
  .dd-s-project-overview .dd-project-breadcrumb .dd-back {
    left: 60px;
    top: 50%;
    right: auto;
    bottom: auto;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    padding-right: 0;
    width: 600px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
  }
  .dd-s-project-overview .dd-project-breadcrumb .dd-back a:first-child {
    vertical-align: middle;
    display: inline-block;
  }
  .dd-s-project-overview .dd-project-breadcrumb .dd-back a:first-child:before {
    display: none;
  }
  .dd-s-project-overview .dd-project-breadcrumb .dd-back span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 10px;
    position: relative;
    z-index: 10;
  }
  .dd-s-project-overview .dd-project-breadcrumb .dd-back span:before, .dd-s-project-overview .dd-project-breadcrumb .dd-back span:after {
    content: "";
    display: block;
    position: absolute;
    top: 49%;
    left: 0;
    width: 13px;
    height: 1px;
    background-color: #FFFFFF;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
  .dd-s-project-overview .dd-project-breadcrumb .dd-back span:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.dd-s-project-overview .dd-garden-popin {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-200%, 50%);
  -moz-transform: translate(-200%, 50%);
  -o-transform: translate(-200%, 50%);
  -ms-transform: translate(-200%, 50%);
  transform: translate(-200%, 50%);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  z-index: 100;
  width: 280px;
}
.dd-s-project-overview .dd-garden-popin.open {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.dd-s-project-overview .dd-garden-popin .dd-b-head {
  background-color: rgba(0, 35, 51, 0.75);
  padding: 14px 7px 14px 20px;
}
.dd-s-project-overview .dd-garden-popin .dd-b-head .dd-close {
  float: right;
  position: relative;
  width: 20px;
  height: 20px;
}
.dd-s-project-overview .dd-garden-popin .dd-b-head .dd-close:before, .dd-s-project-overview .dd-garden-popin .dd-b-head .dd-close:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 11;
  top: 50%;
  right: 0;
  width: 28px;
  height: 1px;
  background-color: #FFFFFF;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-s-project-overview .dd-garden-popin .dd-b-head .dd-close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.dd-s-project-overview .dd-garden-popin .dd-b-head .dd-close:hover {
  text-decoration: none;
}
.dd-s-project-overview .dd-garden-popin .dd-b-head .dd-close:hover:before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.dd-s-project-overview .dd-garden-popin .dd-b-head .dd-close:hover:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.dd-s-project-overview .dd-garden-popin .dd-b-head h2 {
  font-size: 16px;
  line-height: 1.25em;
  padding-top: 1px;
  letter-spacing: 1px;
  font-weight: 300;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.dd-s-project-overview .dd-garden-popin .dd-b-head h2 strong {
  font-weight: 700;
}
.dd-s-project-overview .dd-garden-popin .dd-b-head .dd-desc {
  font-size: 12px;
  line-height: 1.25em;
  color: #FFFFFF;
  padding-right: 13px;
  font-weight: 300;
}
.dd-s-project-overview .dd-garden-popin .dd-b-head *:last-child {
  margin-bottom: 0;
}
.dd-s-project-overview .dd-garden-popin .dd-b-body {
  border-top: 1px solid #c9b45f;
  background-color: rgba(0, 35, 51, 0.8);
}
.dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider {
  text-align: center;
  -webkit-transform: translateX(-500%);
  -moz-transform: translateX(-500%);
  -o-transform: translateX(-500%);
  -ms-transform: translateX(-500%);
  transform: translateX(-500%);
  position: absolute;
  top: 0;
  left: 0;
}
.dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider.active {
  position: relative;
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -o-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider .slick-slide {
  padding: 43px 20px 34px 20px;
}
.dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider .dd-photo {
  margin-bottom: 20px;
}
.dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider .dd-photo img {
  display: block;
  margin: 0 auto;
}
.dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider p {
  font-size: 12px;
  line-height: 18px;
  color: #FFFFFF;
  margin-bottom: 0;
}
.dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider p.dd-lang-vn {
  text-transform: uppercase;
  margin-bottom: 3px;
}
.dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider .slick-dots {
  bottom: 16px;
}
.dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider .slick-dots li {
  width: 7px;
  height: 7px;
  margin: 0 6px;
  padding: 0;
  cursor: pointer;
  background-color: #FFFFFF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider .slick-dots li button {
  width: 7px;
  height: 7px;
  padding: 0;
}
.dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider .slick-dots li button:before {
  display: none;
}
.dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider .slick-dots li.slick-active {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -o-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
@media only screen and (min-width: 1080px) {
  .dd-s-project-overview .dd-garden-popin {
    width: 100%;
    max-width: 840px;
  }
  .dd-s-project-overview .dd-garden-popin .dd-b-head {
    padding: 30px 17px 23px 30px;
  }
  .dd-s-project-overview .dd-garden-popin .dd-b-head h2 {
    font-size: 20px;
  }
  .dd-s-project-overview .dd-garden-popin .dd-b-body {
    overflow: hidden;
  }
  .dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider {
    font-size: 0;
    line-height: 0;
    text-align: left;
    margin-bottom: -1px;
  }
  .dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider .slick-slide {
    padding: 0;
  }
  .dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider .slick-dots {
    display: none;
  }
  .dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider > div {
    display: inline-block;
    width: 33.33%;
    height: 260px;
    border-right: 1px solid rgba(17, 111, 165, 0.7);
    border-bottom: 1px solid rgba(17, 111, 165, 0.7);
    text-align: center;
    padding-top: 20px;
  }
  .dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider > div .dd-photo {
    height: 150px;
  }
  .dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider > div .dd-photo img {
    max-height: 100%;
  }
  .dd-s-project-overview .dd-garden-popin .dd-b-body .dd-garden-slider > div:nth-child(3n) {
    border-right: none;
  }
  .dd-s-project-overview .dd-garden-popin.wide {
    max-width: none;
    width: 88%;
  }
  .dd-s-project-overview .dd-garden-popin.wide .dd-b-body .dd-garden-slider > div {
    width: 25%;
  }
  .dd-s-project-overview .dd-garden-popin.wide .dd-b-body .dd-garden-slider > div:nth-child(3n) {
    border-right: 1px solid rgba(17, 111, 165, 0.7);
  }
  .dd-s-project-overview .dd-garden-popin.wide .dd-b-body .dd-garden-slider > div:nth-child(4n) {
    border-right: none;
  }
}
.dd-s-project-overview .dd-club-popin {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-500%, -50%);
  -moz-transform: translate(-500%, -50%);
  -o-transform: translate(-500%, -50%);
  -ms-transform: translate(-500%, -50%);
  transform: translate(-500%, -50%);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  z-index: 100;
  width: 280px;
}
.dd-s-project-overview .dd-club-popin.open {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.dd-s-project-overview .dd-club-popin .dd-b-head {
  background-color: rgba(0, 35, 51, 0.5);
  padding: 14px 7px 14px 20px;
}
.dd-s-project-overview .dd-club-popin .dd-b-head .dd-close {
  float: right;
  position: relative;
  width: 20px;
  height: 20px;
}
.dd-s-project-overview .dd-club-popin .dd-b-head .dd-close:before, .dd-s-project-overview .dd-club-popin .dd-b-head .dd-close:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 11;
  top: 50%;
  right: 0;
  width: 28px;
  height: 1px;
  background-color: #FFFFFF;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-s-project-overview .dd-club-popin .dd-b-head .dd-close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.dd-s-project-overview .dd-club-popin .dd-b-head .dd-close:hover {
  text-decoration: none;
}
.dd-s-project-overview .dd-club-popin .dd-b-head .dd-close:hover:before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.dd-s-project-overview .dd-club-popin .dd-b-head .dd-close:hover:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.dd-s-project-overview .dd-club-popin .dd-b-head h2 {
  font-size: 16px;
  line-height: 1.25em;
  padding-top: 1px;
  letter-spacing: 1px;
  font-weight: 300;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 0;
}
.dd-s-project-overview .dd-club-popin .dd-b-head h2 strong {
  font-weight: 700;
}
.dd-s-project-overview .dd-club-popin .dd-b-body {
  border-top: 1px solid #c9b45f;
  background-color: rgba(0, 35, 51, 0.8);
}
.dd-s-project-overview .dd-club-popin .dd-b-body .dd-b-photo .dd-photo img {
  display: block;
}
.dd-s-project-overview .dd-club-popin .dd-b-body .dd-b-photo .dd-mini-map {
  display: none;
}
@media only screen and (min-width: 768px) {
  .dd-s-project-overview .dd-club-popin {
    width: 70%;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-project-overview .dd-club-popin.open {
    width: 84.5%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    right: 0;
    left: auto;
  }
  .dd-s-project-overview .dd-club-popin .dd-b-head {
    padding: 30px 17px 23px 30px;
  }
  .dd-s-project-overview .dd-club-popin .dd-b-head h2 {
    font-size: 20px;
  }
  .dd-s-project-overview .dd-club-popin .dd-b-body .dd-b-photo {
    display: table;
  }
  .dd-s-project-overview .dd-club-popin .dd-b-body .dd-b-photo .dd-photo {
    display: table-cell;
    width: 75%;
  }
  .dd-s-project-overview .dd-club-popin .dd-b-body .dd-b-photo .dd-photo img {
    display: block;
  }
  .dd-s-project-overview .dd-club-popin .dd-b-body .dd-b-photo .dd-mini-map {
    display: table-cell;
    position: relative;
    z-index: 40;
    width: 25%;
  }
  .dd-s-project-overview .dd-club-popin .dd-b-body .dd-b-photo .dd-mini-map img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 41;
    width: 80%;
  }
}

.dd-b-zoom {
  position: absolute;
  top: 80px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 11;
}
.dd-b-zoom .js-zoom-map {
  display: block;
  width: 100%;
  height: 100%;
  right: 20px;
  top: 20px;
  background-image: url(../themes/eden/assets/images/zoom-in.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.map-zoom .dd-scroll-area .dd-map-hotpot {
  overflow: scroll;
  width: 2010px !important;
  height: 1080px !important;
}
.map-zoom .dd-b-zoom .js-zoom-map {
  background-image: url(../themes/eden/assets/images/zoom-out.svg);
}

/*
   .-----------------------------------------------------.
   |                        HERO                         |
   '-----------------------------------------------------'
*/
.dd-s-hero {
  background-repeat: no-repeat;
  background-size: auto 60%;
  background-position: center top;
  background-color: #f9f6ed;
  text-align: center;
}
.dd-s-hero .fp-tableCell {
  vertical-align: top;
}
.dd-s-hero .dd-b-head {
  position: relative;
  display: inline-block;
  padding-top: 115px;
}
.dd-s-hero .dd-b-head:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../themes/eden/assets/images/butterfly.png) 0 0 no-repeat;
  background-size: 30px 35px;
  width: 30px;
  height: 35px;
  left: 50%;
  top: 118px;
  z-index: 20;
}
.dd-s-hero .dd-b-head.dd-orchid:after {
  left: 14%;
  top: 118px;
}
.dd-s-hero .dd-b-head.dd-peony:after {
  left: 72%;
  top: 115px;
}
.dd-s-hero .dd-b-head.dd-iris:after {
  left: 86%;
  top: 117px;
}
.dd-s-hero .dd-b-head.dd-camellia:after {
  left: 80%;
  top: 117px;
}
.dd-s-hero .dd-b-head h1 {
  font-size: 20px;
  line-height: 1em;
  text-align: center;
  color: #00263D;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.dd-s-hero .dd-b-head h1 strong {
  font: 400 50px/1em "Cormorant SC", serif;
  display: block;
}
.dd-s-hero .dd-b-description {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.mobile-view .dd-s-hero .dd-b-description {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 7%;
}
.dd-s-hero .dd-b-description p {
  font-size: 12px;
  line-height: 1.5em;
}
@media only screen and (min-width: 768px) {
  .dd-s-hero .dd-b-head {
    margin-bottom: 5px;
  }
  .dd-s-hero .dd-b-head h1 {
    font-size: 3vh;
    margin-bottom: 0;
  }
  .dd-s-hero .dd-b-head h1 strong {
    font-size: 15vh;
    display: inline-block;
    vertical-align: middle;
  }
  .dd-s-hero .dd-b-description {
    max-width: 60vw;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
  .dd-s-hero .dd-b-description p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1024px) {
  .dd-s-hero {
    background-size: auto 60%;
  }
  .dd-s-hero .dd-b-head h1 {
    font-size: 5vh;
  }
  .dd-s-hero .dd-b-head h1 strong {
    font-size: 19vh;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-hero {
    background-size: auto 60%;
  }
  .dd-s-hero .dd-b-head {
    padding-top: 300px;
  }
  .dd-s-hero .dd-b-head:after {
    background-size: 44px 45px;
    width: 44px;
    height: 45px;
    top: 125px;
  }
  .dd-s-hero .dd-b-head.dd-orchid:after {
    left: 26%;
    top: 125px;
  }
  .dd-s-hero .dd-b-head.dd-peony:after {
    left: 58%;
    top: 139px;
  }
  .dd-s-hero .dd-b-head.dd-iris:after {
    left: 70%;
    top: 135px;
  }
  .dd-s-hero .dd-b-head.dd-camellia:after {
    left: 23%;
    top: 127px;
  }
  .dd-s-hero .dd-b-description {
    max-width: 800px;
  }
}
@media only screen and (min-width: 1690px) {
  .dd-s-hero .dd-b-head:after {
    background-size: 78px 90px;
    width: 78px;
    height: 90px;
    top: 84px;
  }
}

/*
   .-----------------------------------------------------.
   |                       BLUEPRINT                     |
   '-----------------------------------------------------'
*/
.dd-s-blueprint {
  background-color: #f9f6ed;
}
.dd-s-blueprint .fp-tableCell {
  vertical-align: top;
}
.dd-s-blueprint .dd-b-container {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 23vh;
}
.dd-s-blueprint .dd-b-head {
  text-align: center;
  padding-bottom: 36px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
}
.dd-s-blueprint .dd-b-head h2 {
  font-size: 20px;
  line-height: 1.25em;
  color: #002333;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 1px;
}
.dd-s-blueprint .dd-b-head h2 strong {
  font-weight: 700;
}
.dd-s-blueprint .dd-b-head p {
  color: #7C7C7C;
}
.dd-s-blueprint .dd-b-head *:last-child {
  margin-bottom: 0;
}
.dd-s-blueprint .dd-b-blueprint-view:before {
  content: "";
  display: block;
  position: relative;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #000000 transparent transparent transparent;
  margin: -1px auto 0;
}
.dd-s-blueprint .dd-blueprint-slider .dd-b-photo {
  margin-bottom: 16px;
}
.dd-s-blueprint .dd-blueprint-slider .dd-b-photo img {
  display: block;
  margin: 0 auto;
}
.dd-s-blueprint .dd-blueprint-slider .dd-b-photo img.dd-view {
  height: 20vh;
}
.dd-s-blueprint .dd-blueprint-slider p {
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  text-align: center;
}
.dd-s-blueprint .dd-blueprint-slider .slick-slide *:last-child {
  margin-bottom: 0;
}
.dd-s-blueprint .dd-blueprint-slider .slick-list {
  margin-bottom: 14px;
}
.dd-s-blueprint .dd-blueprint-slider .slick-dots {
  display: block !important;
  position: relative;
  bottom: auto;
  top: auto;
  left: auto;
  right: auto;
  font-size: 0;
  line-height: 0;
  width: 100%;
}
.dd-s-blueprint .dd-blueprint-slider .slick-dots li {
  border: none;
  height: 16px;
  width: 16px;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin: 0 7% 0 0;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  /*border-bottom: 1px solid rgba($daintree, 0.7);
  border-top: 1px solid rgba($white, 0);*/
  background-color: rgba(0, 35, 51, 0.7);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.dd-s-blueprint .dd-blueprint-slider .slick-dots li button {
  display: none;
}
.dd-s-blueprint .dd-blueprint-slider .slick-dots li.slick-active {
  /*width: 28%;*/
  /*border-bottom: 2px solid $daintree;*/
  border-top: none;
  background-color: #002333;
}
.dd-s-blueprint .dd-blueprint-slider .slick-dots li:last-child {
  margin-right: 0;
}
.dd-s-blueprint .dd-villa-compass,
.dd-s-blueprint .dd-villa-mini-map {
  display: none;
}
@media only screen and (min-width: 768px) {
  .dd-s-blueprint .dd-b-container {
    padding-top: 18vh;
  }
  .dd-s-blueprint .dd-b-head {
    width: 90%;
    max-width: 940px;
    margin: 0 auto;
  }
  .dd-s-blueprint .dd-blueprint-slider .slick-dots li {
    /*width: 50px;*/
    margin-right: 20px;
  }
  .dd-s-blueprint .dd-blueprint-slider .slick-dots li.slick-active {
    /*width: 80px;*/
  }
  .dd-s-blueprint .dd-blueprint-slider .dd-b-photo {
    margin-bottom: 2.5vh;
  }
  .dd-s-blueprint .dd-blueprint-slider .slick-list {
    margin-bottom: 2.5vh;
  }
  .dd-s-blueprint .dd-blueprint-slider .dd-b-photo img.dd-view {
    height: 39vh;
  }
  .dd-s-blueprint .dd-blueprint-slider .dd-b-photo img.dd-grass {
    height: 5vh;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-blueprint .dd-b-head {
    width: 60%;
    padding-bottom: 9vh;
  }
  .dd-s-blueprint .dd-b-head h2 {
    font-size: 5vh;
  }
  .dd-s-blueprint .dd-b-container {
    padding-left: 0;
    padding-right: 0;
    padding-top: 19vh;
  }
  .dd-s-blueprint .dd-b-blueprint-view:before {
    border-width: 12px 12px 0 12px;
  }
  .dd-s-blueprint .dd-villa-compass, .dd-s-blueprint .dd-villa-mini-map {
    display: block;
  }
}

/*
   .-----------------------------------------------------.
   |                       FLOORS                        |
   '-----------------------------------------------------'
*/
.dd-s-floors {
  background-color: #f9f6ed;
}
.dd-s-floors .dd-b-container {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5vh;
}
.dd-s-floors .dd-b-view-detail {
  background-color: #f9f6ed;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 280px;
  display: none;
  z-index: 52;
}
.dd-s-floors .dd-b-view-detail .dd-b-head {
  background-color: #002333;
  padding: 13px 8px 3px 20px;
}
.dd-s-floors .dd-b-view-detail .dd-b-head h2 {
  font-size: 16px;
  line-height: 1.25em;
  color: #FFFFFF;
  font-weight: 300;
  text-transform: uppercase;
  padding-top: 1px;
}
.dd-s-floors .dd-b-view-detail .dd-b-head h2 strong {
  font-weight: 700;
}
.dd-s-floors .dd-b-view-detail .dd-b-head .dd-close {
  width: 20px;
  height: 20px;
  float: right;
  position: relative;
  z-index: 5;
}
.dd-s-floors .dd-b-view-detail .dd-b-head .dd-close:before, .dd-s-floors .dd-b-view-detail .dd-b-head .dd-close:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 11;
  top: 50%;
  right: 0;
  width: 28px;
  height: 1px;
  background-color: #FFFFFF;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-s-floors .dd-b-view-detail .dd-b-head .dd-close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.dd-s-floors .dd-b-view-detail .dd-b-head .dd-close:hover {
  text-decoration: none;
}
.dd-s-floors .dd-b-view-detail .dd-b-head .dd-close:hover:before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.dd-s-floors .dd-b-view-detail .dd-b-head .dd-close:hover:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.dd-s-floors .dd-b-view-detail .dd-b-body {
  border: 1px solid #c9b45f;
  padding-top: 11px;
  padding-bottom: 16px;
  text-align: center;
}
.dd-s-floors .dd-b-view-detail .dd-b-body .dd-floor {
  position: absolute;
  left: -999%;
  top: 0;
  z-index: 1;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: opacity 1s ease-out;
  -moz-transition: opacity 1s ease-out;
  -o-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
}
.dd-s-floors .dd-b-view-detail .dd-b-body .dd-floor.active {
  position: relative;
  z-index: 50;
  left: auto;
  text-align: left;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.dd-s-floors .dd-b-view-detail .dd-b-body .dd-floor img {
  max-height: 69vh;
  display: block;
  margin: 0 auto 15px;
}
.dd-s-floors .dd-b-view-detail .dd-b-body .dd-floor h5 {
  font-size: 14px;
  line-height: 1.25em;
  color: #002333;
  margin-bottom: 1px;
  text-transform: uppercase;
  text-align: center;
}
.dd-s-floors .dd-b-view-detail .dd-b-body .dd-floor p {
  font-size: 14px;
  line-height: 1.25em;
  color: #002333;
  text-align: center;
}
.dd-s-floors .dd-b-view-detail .dd-b-body .dd-floor *:last-child {
  margin-bottom: 0;
}
.dd-s-floors .dd-b-view-general {
  position: relative;
  z-index: 5;
}
.dd-s-floors .dd-b-view-general .dd-hotpot {
  position: absolute;
  z-index: 6;
  border-bottom: 1px solid #002333;
  font-size: 12px;
  line-height: 1.25em;
  color: #002333;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  text-transform: uppercase;
}
.dd-s-floors .dd-b-view-general .dd-hotpot span {
  width: 180px;
  float: right;
  padding: 8px 11px 10px 18px;
  text-align: left;
  display: block;
  background-color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.dd-s-floors .dd-b-view-general .dd-hotpot span strong {
  font-weight: 400;
}
.dd-s-floors .dd-b-view-general .dd-hotpot span:after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../themes/eden/assets/images/icon-plus.svg) center center no-repeat;
  background-size: 75%;
  width: 16px;
  height: 16px;
  color: #002333;
  border: 1px solid #002333;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  float: right;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-s-floors .dd-b-view-general .dd-hotpot:hover span:after {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.dd-s-floors .dd-b-view-general img {
  display: block;
  max-width: 100%;
}
.dd-s-floors .dd-download {
  display: block;
  padding: 19px 10px 18px;
  text-align: center;
  border: 1px solid #000000;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
  background-color: #fcf3d9;
  letter-spacing: 0.5px;
  color: #002333;
  position: absolute;
  z-index: 6;
  bottom: -80px;
  left: 0;
  right: 0;
}
.dd-s-floors .dd-download strong {
  font-weight: 700;
}
.dd-s-floors .dd-download:hover {
  background-color: #eadbae;
  text-decoration: none;
}
.dd-s-floors .dd-download:before {
  content: "";
  background: url(../themes/eden/assets/images/icon-download.svg) 0 0 no-repeat;
  background-size: 21px 20px;
  width: 21px;
  height: 20px;
  margin-right: 17px;
  display: inline-block;
  vertical-align: middle;
}
.dd-s-floors .dd-villa-mini-map,
.dd-s-floors .dd-villa-compass {
  display: none;
}
@media only screen and (min-width: 768px) {
  .dd-s-floors .dd-b-container {
    padding-top: 15vh;
  }
  .dd-s-floors .dd-b-view-general {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
  .dd-s-floors .dd-b-view-general img {
    max-height: 59vh;
  }
  .dd-s-floors .dd-download {
    max-width: 370px;
    right: auto;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-floors .dd-b-container {
    width: calc(100% - 460px);
    max-width: 64vw;
    margin: 0 auto;
    padding: 0;
  }
  .dd-s-floors .fp-tableCell {
    vertical-align: middle;
  }
  .dd-s-floors .dd-b-floors {
    font-size: 0;
    line-height: 0;
    position: relative;
    z-index: 5;
  }
  .dd-s-floors .dd-b-view-detail {
    width: 44%;
    display: inline-block !important;
    vertical-align: middle;
    background-color: transparent;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .dd-s-floors .dd-b-view-detail .dd-b-head {
    display: none;
  }
  .dd-s-floors .dd-b-view-detail .dd-b-body {
    border: none;
    padding-top: 50px;
    padding-bottom: 0;
  }
  .dd-s-floors .dd-b-view-detail .dd-b-body .dd-floor {
    display: inline-block;
  }
  .dd-s-floors .dd-b-view-detail .dd-b-body .dd-floor img {
    max-height: 79vh;
    max-width: 23vw;
  }
  .dd-s-floors .dd-b-view-general {
    width: 56%;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
  }
  .dd-s-floors .dd-b-view-general .dd-hotpot {
    border-bottom-style: dashed;
    font-size: 14px;
  }
  .dd-s-floors .dd-b-view-general .dd-hotpot span {
    padding: 3px 0px;
    text-align: right;
    background-color: transparent;
  }
  .dd-s-floors .dd-b-view-general .dd-hotpot span:after {
    font-size: 16px;
    margin-left: 10px;
  }
  .dd-s-floors .dd-b-view-general img {
    height: 46vh;
  }
  .dd-s-floors .dd-villa-compass,
.dd-s-floors .dd-villa-mini-map {
    display: block;
  }
}

/*
   .-----------------------------------------------------.
   |                    GALLERY VILLA                    |
   '-----------------------------------------------------'
*/
.dd-other-villas {
  display: none;
  font-size: 0;
  line-height: 0;
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  right: 0;
}
.villas .dd-other-villas {
  display: block;
}
.dd-other-villas a {
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 18px;
  padding: 10px 5px;
  text-align: center;
  width: 50%;
  display: inline-block;
}
.dd-other-villas a:hover {
  color: #c9b45f;
  text-decoration: none;
}
.dd-other-villas a:before, .dd-other-villas a:after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.45);
  width: 20px;
  height: 1px;
  top: 50%;
}
.dd-other-villas a:first-child:before {
  left: 0;
}
.dd-other-villas a:first-child:after {
  content: "";
  display: block;
  position: absolute;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 50%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 50%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 50%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#00ffffff",GradientType=0 );
  /* IE6-9 */
  width: 1px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.dd-other-villas a:last-child {
  border: none;
}
.dd-other-villas a:last-child:before {
  display: none;
}
.dd-other-villas a:last-child:after {
  right: 0;
}
@media only screen and (min-width: 768px) {
  .dd-other-villas {
    padding-top: 2vh;
    padding-bottom: 2vh;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-other-villas a {
    font-size: 18px;
    line-height: 1.25em;
    font-weight: 700;
  }
  .dd-other-villas a:before, .dd-other-villas a:after {
    display: inline-block;
    position: relative;
    width: 22%;
    top: auto;
    vertical-align: middle;
  }
  .dd-other-villas a:first-child:before {
    left: auto;
    margin-right: 3.5%;
  }
  .dd-other-villas a:last-child:after {
    right: auto;
    margin-left: 3.5%;
  }
}

.dd-s-gallery {
  background-color: #f9f6ed;
}
@media only screen and (min-width: 1080px) {
  .dd-s-gallery .fp-tableCell {
    display: block;
  }
}

.dd-b-gallery-popin {
  background-color: rgba(0, 35, 51, 0.9);
  border-top: 1px solid #c9b45f;
  padding: 65px 20px 45px 20px;
  position: absolute;
  z-index: 9;
  top: 70px;
  left: 20px;
  right: 20px;
  display: none;
}
.dd-b-gallery-popin .dd-close {
  font-size: 12px;
  text-transform: uppercase;
  position: absolute;
  z-index: 10;
  float: right;
  padding-right: 35px;
  color: #FFFFFF;
  top: 15px;
  right: 16px;
  padding-top: 2px;
}
.dd-b-gallery-popin .dd-close:before, .dd-b-gallery-popin .dd-close:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 11;
  top: 50%;
  right: 0;
  width: 28px;
  height: 1px;
  background-color: #FFFFFF;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-b-gallery-popin .dd-close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.dd-b-gallery-popin .dd-close:hover {
  text-decoration: none;
}
.dd-b-gallery-popin .dd-close:hover:before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.dd-b-gallery-popin .dd-close:hover:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.dd-b-gallery-popin p {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1px;
  color: #FFFFFF;
}
.dd-b-gallery-popin .dd-placeholder *:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1080px) {
  .dd-b-gallery-popin {
    top: 18vh;
    left: 50%;
    right: auto;
    z-index: 999;
    width: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding-left: 50px;
    padding-right: 50px;
  }
  .dd-b-gallery-popin p {
    font-size: 14px;
    line-height: 25px;
  }
}

.dd-b-gallery-slider {
  height: 100%;
}
.dd-b-gallery-slider .dd-b-content {
  color: #fff;
  position: absolute;
  z-index: 10;
  top: 21vh;
  left: 20px;
  right: 20px;
  display: block;
}
.dd-b-gallery-slider .slick-list {
  height: 100%;
}
.dd-b-gallery-slider .slick-list .slick-track {
  height: 100%;
}
.dd-b-gallery-slider .slick-slide {
  height: 100%;
}
.dd-b-gallery-slider .slick-slide:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background-color: rgba(0, 56, 81, 0.3);*/
}
.dd-b-gallery-slider .slick-slide .dd-photo {
  height: 100%;
  object-fit: cover;
  display: block;
  width: 100%;
}
.dd-b-gallery-slider .slick-dots {
  bottom: 25px;
}
.dd-b-gallery-slider .slick-dots li button:before {
  color: #ffffff;
  opacity: 1;
  font-size: 40px;
}
.dd-b-gallery-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  font-size: 50px;
}
@media only screen and (min-width: 1080px) {
  .dd-b-gallery-slider .dd-b-content {
    position: absolute;
    z-index: 10;
    top: 21vh;
    left: 50px;
    right: 50px;
    display: block;
  }
  .dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading {
    font-size: 6vh;
    line-height: 1.25em;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    letter-spacing: 1px;
    padding-right: 45px;
    display: inline-block;
    margin-bottom: 0;
  }
  .dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading strong {
    font-weight: 700;
  }
  .dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 1em;
    background: #FFFFFF url(../themes/eden/assets/images/icon-plus.svg) center center no-repeat;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 5;
    font-size: 24px;
    cursor: pointer;
  }
  .dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 4;
    right: -5px;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
  }
  .dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading:before {
    -webkit-animation: gallery-hotspot 1.3s linear infinite;
    -moz-animation: gallery-hotspot 1.3s linear infinite;
    -ms-animation: gallery-hotspot 1.3s linear infinite;
    -o-animation: gallery-hotspot 1.3s linear infinite;
    animation: gallery-hotspot 1.3s linear infinite;
    top: 49%;
    right: 15px;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  .dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading span:before {
    content: "";
    display: inline-block;
    position: relative;
    width: 70px;
    height: 6vh;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 55%;
    border-right: 1px solid #FFFFFF;
    margin-right: 29px;
    margin-top: -2px;
  }
  /*.dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading.dd-heading-bird-garden span:before {
    background-image: url(../images/icon-bird-garden-white.svg);
  }*/
  .dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading.dd-heading-pool span:before {
    background-image: url(../themes/eden/assets/images/icon-pool-white.svg);
  }
  /*.dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading.dd-heading-living span:before {
    background-image: url(../images/icon-living-white.svg);
  }*/
  .dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading.dd-heading-bedroom span:before {
    background-image: url(../themes/eden/assets/images/icon-bedroom-white.svg);
  }
/*  .dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading.dd-heading-family-area span:before {
    background-image: url(../images/icon-family-area-white.svg);
  }*/
  .dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading.dd-heading-terrace span:before {
    background-image: url(../themes/eden/assets/images/icon-terrace-white.svg);
  }
  .dd-b-gallery-slider .dd-b-content .dd-b-body {
    display: none;
  }
  .dd-b-gallery-slider .dd-b-content .dd-b-body p {
    font-size: 14px;
    line-height: 25px;
    color: #FFFFFF;
  }
}

/*
   .-----------------------------------------------------.
   |                   GALLERY HOME                      |
   '-----------------------------------------------------'
*/
.dd-category-menu {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.dd-category-menu .current {
  background-color: #002333;
  border: 1px solid #004462;
  font-size: 16px;
  line-height: 20px;
  padding: 17px 40px 15px 25px;
  color: #b7b7b7;
  margin-bottom: 0;
  text-transform: uppercase;
  cursor: pointer;
}
.dd-category-menu .current:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #b7b7b7 transparent transparent transparent;
  right: 25px;
  top: 50%;
  margin-top: -4px;
}
.dd-category-menu ul {
  top: 100%;
  left: 1px;
  right: 1px;
  position: absolute;
  z-index: 2;
  background-color: rgba(183, 183, 183, 0.8);
  display: block;
}
.dd-category-menu ul li {
  border-bottom: 1px solid #b7b7b7;
  text-transform: uppercase;
}
.dd-category-menu ul li a {
  font-size: 16px;
  line-height: 20px;
  color: #002333;
  padding: 17px 25px 15px;
  display: block;
}
.dd-category-menu ul li a:hover {
  text-decoration: none;
}
.dd-category-menu ul li:last-child {
  border: none;
}
@media only screen and (min-width: 768px) {
  .dd-category-menu {
    width: 240px;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-category-menu {
    margin-bottom: 0;
  }
}

.dd-s-gallery-media {
  z-index: 999;
}
.dd-s-gallery-media .dd-b-container {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
}
.dd-s-gallery-media .dd-gallery-slider {
  max-height: 35vh;
  overflow: hidden;
}
.dd-s-gallery-media .dd-gallery-slider .slick-slide {
  position: relative;
  z-index: 2;
  font-size: 0;
  line-height: 0;
  max-height: 35vh;
}
.dd-s-gallery-media .dd-gallery-slider .slick-slide img {
  width: 100%;
  object-fit: cover;
  height: 35vh;
  max-width: none;
}
.dd-s-gallery-media .dd-gallery-slider .slick-slide.is-video iframe {
  height: 35vh;
  width: 100%;
}
.dd-s-gallery-media .dd-gallery-slider .slick-slide.is-video:after {
  display: none;
}
.dd-s-gallery-media .dd-gallery-slider .slick-slide:after {
  background: -moz-linear-gradient(top, rgba(0, 35, 51, 0) 0%, rgba(16, 35, 50, 0.7) 28%, rgba(16, 35, 50, 0.7) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 35, 51, 0) 0%, rgba(16, 35, 50, 0.7) 28%, rgba(16, 35, 50, 0.7) 100%);
  background: linear-gradient(to bottom, rgba(0, 35, 51, 0) 0%, rgba(16, 35, 50, 0.7) 28%, rgba(16, 35, 50, 0.7) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00002333", endColorstr="#b3102332",GradientType=0 );
  height: 30%;
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
}
.dd-s-gallery-media .dd-gallery-slider .slick-slide .dd-info {
  position: absolute;
  bottom: 5px;
  left: 20px;
  right: 20px;
  z-index: 5;
  text-align: center;
}
.dd-s-gallery-media .dd-gallery-slider .slick-slide .dd-info h2 {
  font-size: 24px;
  line-height: 1.25em;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.dd-s-gallery-media .dd-gallery-slider .slick-slide .dd-info p {
  font-size: 12px;
  line-height: 1.5em;
  color: #a3b2bb;
  display: none;
}
.dd-s-gallery-media .dd-gallery-slider .slick-slide .dd-info *:last-child {
  margin-bottom: 0;
}
.dd-s-gallery-media .dd-gallery-nav {
  margin-bottom: 5vh;
}
.dd-s-gallery-media .dd-gallery-nav .slick-slide {
  height: 60px;
  overflow: hidden;
  background-color: #003851;
}
.dd-s-gallery-media .dd-gallery-nav .slick-slide img {
  object-fit: cover;
  min-height: 60px;
}
.dd-s-gallery-media .dd-gallery-nav .slick-slide.slick-current img {
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  -webkit-opacity: 0.3;
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
}
.dd-s-gallery-media .dd-gallery-nav .slick-arrow {
  width: 40px;
  height: 40px;
  background-color: #b7b7b7;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 10;
}
.dd-s-gallery-media .dd-gallery-nav .slick-arrow:before, .dd-s-gallery-media .dd-gallery-nav .slick-arrow:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 11;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  margin-left: -7px;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: 0 0;
  background-color: #000000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.dd-s-gallery-media .dd-gallery-nav .slick-arrow:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.dd-s-gallery-media .dd-gallery-nav .slick-arrow:hover {
  background-color: #FFFFFF;
}
.dd-s-gallery-media .dd-gallery-nav .slick-arrow.slick-prev {
  left: -10px;
}
.dd-s-gallery-media .dd-gallery-nav .slick-arrow.slick-next {
  right: -10px;
}
.dd-s-gallery-media .dd-gallery-nav .slick-arrow.slick-next:after, .dd-s-gallery-media .dd-gallery-nav .slick-arrow.slick-next:before {
  left: auto;
  right: 50%;
  margin-right: -7px;
  transform-origin: 100% 0;
}
.dd-s-gallery-media .dd-gallery-nav .slick-arrow.slick-disabled {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.dd-s-gallery-media .dd-paging {
  position: relative;
  z-index: 1;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
.dd-s-gallery-media .dd-paging a {
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  color: #FFFFFF;
  vertical-align: middle;
  text-align: center;
}
.dd-s-gallery-media .dd-paging a:last-child {
  margin-right: 0;
}
.dd-s-gallery-media .dd-paging a:hover, .dd-s-gallery-media .dd-paging a.active {
  background-color: #004462;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-decoration: none;
}
.dd-s-gallery-media .dd-paging a:first-child, .dd-s-gallery-media .dd-paging a:last-child {
  width: 24px;
  height: 24px;
  padding-top: 11px;
}
.dd-s-gallery-media .dd-paging a:first-child span, .dd-s-gallery-media .dd-paging a:last-child span {
  font-size: 0;
  line-height: 0;
  width: 24px;
  height: 2px;
  background-color: #004462;
  position: relative;
  z-index: 10;
  display: block;
}
.dd-s-gallery-media .dd-paging a:first-child span:before, .dd-s-gallery-media .dd-paging a:first-child span:after, .dd-s-gallery-media .dd-paging a:last-child span:before, .dd-s-gallery-media .dd-paging a:last-child span:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 11;
  top: 50%;
  left: 0;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: 0 0;
  background-color: #004462;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.dd-s-gallery-media .dd-paging a:first-child span:after, .dd-s-gallery-media .dd-paging a:last-child span:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.dd-s-gallery-media .dd-paging a:first-child:hover, .dd-s-gallery-media .dd-paging a:last-child:hover {
  background-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.dd-s-gallery-media .dd-paging a:first-child:hover span, .dd-s-gallery-media .dd-paging a:last-child:hover span {
  background-color: #FFFFFF;
}
.dd-s-gallery-media .dd-paging a:first-child:hover span:before, .dd-s-gallery-media .dd-paging a:first-child:hover span:after, .dd-s-gallery-media .dd-paging a:last-child:hover span:before, .dd-s-gallery-media .dd-paging a:last-child:hover span:after {
  background-color: #FFFFFF;
}
.dd-s-gallery-media .dd-paging a:nth-child(n+6) {
  display: none;
}
.dd-s-gallery-media .dd-paging a:last-child {
  display: inline-block;
}
.dd-s-gallery-media .dd-paging a:last-child span:before, .dd-s-gallery-media .dd-paging a:last-child span:after {
  right: 0;
  left: auto;
  transform-origin: 100% 0;
}
@media only screen and (min-width: 768px) {
  .dd-s-gallery-media .dd-b-container {
    padding-left: 0;
    padding-right: 0;
    max-width: 80vw;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .dd-s-gallery-media .dd-gallery-slider {
    margin: 0 auto;
    max-height: 400px;
    overflow: hidden;
  }
  .dd-s-gallery-media .dd-gallery-slider .slick-slide {
    max-height: 400px;
  }
  .dd-s-gallery-media .dd-gallery-slider .slick-slide img {
    height: 400px;
  }
  .dd-s-gallery-media .dd-gallery-slider .slick-slide.is-video iframe {
    height: 400px;
  }
  .dd-s-gallery-media .dd-gallery-slider .slick-slide .dd-info {
    bottom: 3vh;
  }
  .dd-s-gallery-media .dd-gallery-slider .slick-slide .dd-info h2 {
    font-size: 36px;
    margin-bottom: 5px;
  }
  .dd-s-gallery-media .dd-gallery-slider .slick-slide .dd-info p {
    display: block;
  }
  .dd-s-gallery-media .dd-gallery-nav {
    max-width: 65vw;
    margin: 12px auto;
  }
  .dd-s-gallery-media .dd-gallery-nav .slick-slide {
    height: 70px;
  }
  .dd-s-gallery-media .dd-gallery-nav .slick-slide img {
    min-height: 70px;
  }
  .dd-s-gallery-media .dd-gallery-nav .slick-arrow.slick-prev {
    left: -20px;
  }
  .dd-s-gallery-media .dd-gallery-nav .slick-arrow.slick-next {
    right: -20px;
  }
  .dd-s-gallery-media .dd-paging {
    max-width: 55vw;
    margin: 0 auto;
  }
  .dd-s-gallery-media .dd-paging a:nth-child(n+6) {
    display: inline-block;
  }
}
@media only screen and (min-width: 1024px) {
  .dd-s-gallery-media .dd-b-container {
    max-width: 65vw;
  }
  .dd-s-gallery-media .dd-gallery-slider {
    max-height: 50vh;
  }
  .dd-s-gallery-media .dd-gallery-slider .slick-slide {
    max-height: 50vh;
  }
  .dd-s-gallery-media .dd-gallery-slider .slick-slide img {
    height: 50vh;
  }
  .dd-s-gallery-media .dd-gallery-slider .slick-slide.is-video iframe {
    height: 50vh;
  }
  .dd-s-gallery-media .dd-gallery-nav {
    max-width: 57vw;
  }
  .dd-s-gallery-media .dd-gallery-nav .slick-slide {
    height: 100px;
  }
  .dd-s-gallery-media .dd-gallery-nav .slick-slide img {
    min-height: 100px;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-gallery-media .dd-category-menu {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -14vw;
    margin-bottom: 0;
    width: 12vw;
  }
  .dd-s-gallery-media .dd-gallery-slider {
    max-height: 60vh;
  }
  .dd-s-gallery-media .dd-gallery-slider .slick-slide {
    max-height: 65vh;
  }
  .dd-s-gallery-media .dd-gallery-slider .slick-slide img {
    height: 65vh;
  }
  .dd-s-gallery-media .dd-gallery-slider .slick-slide.is-video {
    height: 65vh;
  }
  .dd-s-gallery-media .dd-gallery-slider .slick-slide.is-video iframe {
    height: 92%;
  }
  .dd-s-gallery-media .dd-gallery-slider .slick-slide .dd-info {
    bottom: 7vh;
  }
  .dd-s-gallery-media .dd-gallery-nav {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .dd-s-gallery-media .dd-gallery-nav .slick-slide {
    height: 10vh;
  }
  .dd-s-gallery-media .dd-gallery-nav .slick-slide img {
    min-height: 10vh;
  }
  .dd-s-gallery-media .dd-paging {
    max-width: 45vw;
  }
}
@media only screen and (min-width: 1690px) {
  .dd-s-gallery-media .dd-gallery-nav .slick-slide {
    height: 10vh;
  }
  .dd-s-gallery-media .dd-gallery-nav .slick-slide img {
    min-height: 10vh;
  }
}

/*
   .-----------------------------------------------------.
   |                   CONTACT SECTION                   |
   '-----------------------------------------------------'
*/
.dd-s-contact-footer .dd-b-container {
  padding: 0 20px;
}
@media only screen and (min-width: 1080px) {
  .dd-s-contact-footer .dd-b-container {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (min-width: 1690px) {
  .dd-s-contact-footer .dd-b-container {
    max-width: 1400px;
    margin: 0 auto;
  }
}

.dd-b-wrapper {
  font-size: 0;
  line-height: 0;
}

.dd-s-contact .dd-b-head {
  text-align: center;
  margin-bottom: 7vh;
}
.dd-s-contact .dd-b-head h2 {
  font-size: 30px;
  line-height: 1em;
  font-weight: 300;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.dd-s-contact .dd-b-head p {
  font-size: 12px;
  line-height: 20px;
  color: #a3b2bb;
}
.dd-s-contact .dd-b-head *:last-child {
  margin-bottom: 0;
}
.dd-s-contact .dd-b-body .checkbox {
  margin-bottom: 10px;
  display: block;
}
.dd-s-contact .dd-form-popin {
  z-index: 999;
  display: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
  right: 20px;
  background-color: rgba(0, 68, 98, 0.98);
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
}
.dd-s-contact .dd-form-popin .dd-close {
  width: 20px;
  height: 20px;
  float: right;
  position: relative;
  margin-bottom: 10px;
  z-index: 5;
}
.dd-s-contact .dd-form-popin .dd-close:before, .dd-s-contact .dd-form-popin .dd-close:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 11;
  top: 50%;
  right: 0;
  width: 28px;
  height: 1px;
  background-color: #FFFFFF;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-s-contact .dd-form-popin .dd-close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.dd-s-contact .dd-form-popin .dd-close:hover {
  text-decoration: none;
}
.dd-s-contact .dd-form-popin .dd-close:hover:before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.dd-s-contact .dd-form-popin .dd-close:hover:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.dd-s-contact .checkbox-wrapper {
  margin-top: 9px;
}
.dd-s-contact .dd-btn-group {
  text-align: center;
}
.dd-s-contact .dd-checkbox-group {
  text-align: left;
}
.dd-s-contact .dd-back {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  font-weight: 300;
  display: none;
}
.dd-s-contact .dd-btn {
  width: 100%;
  margin: 0 auto;
}
.dd-s-contact .dd-continue {
  display: none;
}
@media only screen and (min-width: 768px) {
  .dd-s-contact .dd-btn {
    max-width: 240px;
  }
  .dd-s-contact .dd-form-popin {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    right: auto;
    width: 50vw;
    min-width: 280px;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-contact {
    padding: 30px 30% 30px 50px;
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
    border: 1px solid #0078ae;
  }
  .dd-s-contact .dd-b-head {
    margin-bottom: 25px;
    text-align: left;
  }
  .dd-s-contact .dd-b-head h2 {
    font-size: 36px;
    line-height: 1em;
    margin-bottom: 15px;
    font-weight: 300;
  }
  .dd-s-contact .dd-form-popin {
    display: block !important;
    right: auto;
    position: absolute;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    width: auto;
  }
  .dd-s-contact .dd-form-popin .dd-close {
    display: none;
  }
  .dd-s-contact .dd-form-popin .dd-input {
    width: calc(33.3% - 14px);
    margin: 0 20px 0 0;
  }
  .dd-s-contact .dd-form-popin .dd-input:last-child {
    margin-right: 0;
  }
  .dd-s-contact .dd-form-popin .input__field {
    height: 52px;
    line-height: 52px;
  }
  .dd-s-contact .dd-form-popin .input__label {
    line-height: 52px;
  }
  .dd-s-contact .dd-form-popin .input__field:focus + .input__label .input__label-content,
.dd-s-contact .dd-form-popin .input--filled .input__label-content {
    -webkit-transform: scale3d(0.81, 0.81, 1) translate3d(0, 45px, 0);
    transform: scale3d(0.81, 0.81, 1) translate3d(0, 45px, 0);
  }
  .dd-s-contact .dd-form-popin .dd-checkbox {
    width: calc(33.3% - 14px);
    margin: 0 20px 0 0;
    display: inline-block;
  }
  .dd-s-contact .dd-form-popin .dd-checkbox:last-child {
    margin-right: 0;
  }
  .dd-s-contact .dd-form-popin .dd-input-group {
    margin-bottom: 30px;
  }
  .dd-s-contact .dd-form-popin .dd-checkbox-group {
    margin-bottom: 25px;
    display: block;
  }
  .dd-s-contact .dd-form-popin .dd-btn {
    width: 202px;
    float: right;
    margin-right: 0;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
  .dd-s-contact .dd-form-popin .dd-btn:before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 251px;
    top: 50%;
    left: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    background-color: #FFFFFF;
    z-index: 9;
  }
  .dd-s-contact .dd-form-popin .dd-btn:after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 30px;
    top: 50%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 10;
  }
  .dd-s-contact .dd-form-popin .dd-continue {
    display: none;
  }
  .dd-s-contact .dd-form-popin .dd-submit {
    display: block;
  }
  .dd-s-contact .dd-contact-photo {
    position: absolute;
    z-index: 100;
    bottom: 0;
    right: -40px;
    width: 34%;
  }
}
@media only screen and (min-width: 1690px) {
  .dd-s-contact {
    padding: 67px 50% 10px 54px;
    margin-bottom: 5vh;
    background: url(../themes/eden/assets/images/bg-contact.png) right bottom no-repeat;
    background-size: auto 100%;
  }
  .dd-s-contact .dd-contact-photo {
    position: absolute;
    z-index: 100;
    bottom: 0;
    right: -40px;
    width: 50%;
  }
  .dd-s-contact .dd-b-head {
    margin-bottom: 32px;
  }
  .dd-s-contact .dd-form-popin .dd-input-group {
    margin-bottom: 47px;
  }
  .dd-s-contact .dd-form-popin .dd-checkbox-group {
    margin-bottom: 32px;
  }
}

.dd-form-custom .dd-checkbox-group {
  margin-bottom: 20px;
}
.dd-form-custom .dd-checkbox-group *:last-child {
  margin-bottom: 0;
}
.dd-form-custom .dd-input-group {
  margin-bottom: 25px;
}
.dd-form-custom .dd-input-group *:last-child {
  margin-bottom: 0;
}
.dd-form-custom .dd-checkbox {
  margin-bottom: 10px;
  display: block;
}
.dd-form-custom .dd-checkbox input[type=checkbox] {
  display: none;
}
.dd-form-custom .dd-checkbox input[type=checkbox]:checked + label:before {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.dd-form-custom .dd-checkbox label {
  display: block;
  position: relative;
  cursor: pointer;
  z-index: 1;
  font-size: 12px;
  line-height: 20px;
  padding-left: 30px;
  color: #FFFFFF;
}
.dd-form-custom .dd-checkbox label:before, .dd-form-custom .dd-checkbox label:after {
  content: "";
  display: block;
  position: absolute;
}
.dd-form-custom .dd-checkbox label:before {
  content: "✓";
  font-size: 12px;
  line-height: 16px;
  color: #004462;
  top: 2px;
  bottom: 2px;
  left: 2px;
  text-align: center;
  z-index: 3;
  width: 15px;
  height: 16px;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-color: #FFFFFF;
}
.dd-form-custom .dd-checkbox label:after {
  border: 1px solid #FFFFFF;
  top: 0;
  left: 0;
  z-index: 2;
  width: 19px;
  height: 20px;
}
.dd-form-custom .dd-input {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-bottom: 25px;
}
.dd-form-custom .input__field {
  position: relative;
  display: block;
  float: right;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  color: #FFFFFF;
  -webkit-appearance: none;
  background: transparent;
}
.dd-form-custom .input__field:focus {
  outline: none;
}
.dd-form-custom .input__label {
  padding: 0;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 40px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: left;
  cursor: text;
}
.dd-form-custom .input__label-content {
  position: relative;
  display: block;
  padding: 0;
  width: 100%;
  color: #a3b2bb;
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.dd-form-custom .graphic {
  position: absolute;
  top: 0;
  left: 0;
  fill: none;
  -webkit-transform: scale3d(1, -1, 1);
  transform: scale3d(1, -1, 1);
  -webkit-transition: stroke-dashoffset 0.3s;
  transition: stroke-dashoffset 0.3s;
  pointer-events: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 4px;
  stroke-dasharray: 962;
  stroke-dashoffset: 558;
}
.dd-form-custom .input--filled .input__field,
.dd-form-custom .input__field:focus {
  padding-left: 10px;
  padding-right: 10px;
}
.dd-form-custom .input__field:focus + .input__label,
.dd-form-custom .input--filled .input__label {
  cursor: default;
  pointer-events: none;
}
.dd-form-custom .input__field:focus + .input__label .graphic,
.dd-form-custom .input--filled .graphic {
  stroke-dashoffset: 0;
}
.dd-form-custom .input__field:focus + .input__label .input__label-content,
.dd-form-custom .input--filled .input__label-content {
  -webkit-transform: scale3d(0.81, 0.81, 1) translate3d(0, 34px, 0);
  transform: scale3d(0.81, 0.81, 1) translate3d(0, 34px, 0);
}
.dd-form-custom .dd-btn {
  border: 1px solid rgba(255, 255, 255, 0.7);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #FFFFFF;
  background: #003851;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
  line-height: 48px;
  text-align: center;
  display: block;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  outline: none;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-form-custom .dd-btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-form-custom .dd-btn:before {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
.dd-form-custom .dd-btn:hover, .dd-form-custom .dd-btn:active {
  color: #003851;
  background: #FFFFFF;
  text-decoration: none;
}
@media only screen and (min-width: 1080px) {
  .dd-form-custom .dd-input {
    max-width: 350px;
  }
}

/*
   .-----------------------------------------------------.
   |                       ABOUT                         |
   '-----------------------------------------------------'
*/
.dd-s-about {
  height: 100%;
  overflow: hidden;
}
.dd-s-about .dd-mini-menu {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 50px;
  margin-bottom: 20px;
}
.dd-s-about .dd-mini-menu li{
  text-align: left;
}
.dd-s-about .dd-mini-menu li a {
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px #101311;
  padding-left: 0px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-transform: uppercase;
}
.dd-s-about .dd-mini-menu li.active a:before {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background-color: #B1861F;
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    left: -50px;
    right: auto;
    bottom: 5px;
    width: 40px;
    height: 2px;
}
.dd-s-about .dd-mini-menu li a:hover, .dd-s-about .dd-mini-menu li a.active {
  color: #B1861F;
  text-decoration: none;
}
.dd-s-about .dd-mini-menu li a:hover:before, .dd-s-about .dd-mini-menu li a.active:before {
  height: 2px;
  background-color: #B1861F;
}
.dd-s-about .dd-mini-menu li a.active {
  text-transform: uppercase;
}
.dd-s-about .dd-dot-menu {
  text-align: center;
  position: absolute;
  z-index: 10;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.dd-s-about .dd-dot-menu li {
  margin: 0 6px;
  padding: 0;
  cursor: pointer;
  display: inline-block;
}
.dd-s-about .dd-dot-menu li a {
  background-color: #FFFFFF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: block;
  width: 10px;
  height: 10px;
  font-size: 0;
  line-height: 0;
}
.dd-s-about .dd-dot-menu li a.active {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.dd-s-about .dd-b-container {
  padding-left: 20px;
  padding-right: 20px;
}
.dd-s-about .dd-b-container .dd-tab-container {
  display: none;
  padding-top: 10px;
}
.dd-s-about .dd-b-container .dd-tab-container.active {
  display: block;
}
.dd-s-about .dd-b-container .dd-tab-container h2 {
  font-size: 20px;
  line-height: 1.25em;
  color: #FFFFFF;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
}
.dd-s-about .dd-b-investor {
  text-align: center;
}
.dd-s-about .dd-b-investor .dd-bg-mobile {
  display: block;
  margin: 0 auto 10px;
  max-height: 100px;
}
.dd-s-about .dd-b-investor .dd-info p {
  font-size: 14px;
  line-height: 1.5;
  color: #a3b2bb;
}
.dd-s-about .dd-b-investor .dd-info p strong {
  font-weight: 500;
}
.dd-s-about .dd-b-investor .dd-info p.is-large {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.dd-s-about .dd-b-investor .dd-info *:last-child {
  margin-bottom: 0;
}
.dd-s-about .dd-b-about .dd-photo {
  margin-bottom: 10px;
}
.dd-s-about .dd-b-about .dd-photo img {
  display: block;
  width: 100%;
}
.dd-s-about .dd-b-about .dd-info p {
  font-size: 12px;
  line-height: 18px;
  color: #a3b2bb;
  font-weight: 300;
}
.dd-s-about .dd-b-about .dd-info p strong{
  font-size: 20px;

}
.dd-s-about .dd-b-about .dd-info *:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .dd-s-about .fp-tableCell {
    vertical-align: middle;
  }
  .dd-s-about .dd-mini-menu {
    padding: 0;
    top: 15vh;
    left: 30px;
    position: absolute;
    z-index: 50;
  }
  .dd-s-about .dd-b-container {
    max-width: 73vw;
    margin: 0 auto;
    padding-top: 25vh;
  }
  .dd-s-about .dd-b-investor .dd-bg-mobile {
    max-height: 30vh;
    margin-bottom: 20px;
  }
  .dd-s-about .dd-b-about .dd-photo {
    margin-bottom: 20px;
  }
  .dd-s-about .dd-b-about .dd-photo img {
    width: auto;
    max-height: 30vh;
  }
}
@media only screen and (min-width: 1024px) {
  .dd-s-about {
    overflow: hidden;
  }
  .dd-s-about .dd-b-container {
    max-width: none;
    padding: 0;
  }
  .dd-s-about .dd-b-container .dd-tab-container {
    padding-top: 0;
  }
  .dd-s-about .dd-b-investor {
    background: url(../themes/eden/assets/images/bg-hands.png) center top no-repeat;
    background-size: auto 100%;
    padding-top: 250px;
    width: 100%;
    height: 80vh;
  }
  .dd-s-about .dd-b-investor .dd-bg-mobile {
    display: none;
  }
 .dd-s-about .dd-b-investor .dd-logo {
    display: block;
    margin: 0 auto 40px;
    width: 175px;
    height: auto;
    margin-bottom: 15px;
}
  .dd-s-about .dd-b-investor .dd-info {
    max-width: 420px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
  }
  .dd-s-about .dd-b-about {
    position: relative;
    z-index: 1;
    height: 100vh;
  }
  .dd-s-about .dd-b-about:before {
    content: "";
    display: block;
    position: absolute;
    width: 70%;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    background: -moz-linear-gradient(to right, #002333 0%, rgba(0, 35, 51, 0.99) 5%, rgba(0, 35, 51, 0.9) 20%, rgba(0, 35, 51, 0.85) 30%, rgba(0, 35, 51, 0.8) 40%, rgba(0, 35, 51, 0.75) 50%, rgba(0, 35, 51, 0.7) 60%, rgba(0, 35, 51, 0.65) 70%, rgba(0, 35, 51, 0.5) 80%, rgba(0, 35, 51, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(to right, #002333 0%, rgba(0, 35, 51, 0.99) 5%, rgba(0, 35, 51, 0.9) 20%, rgba(0, 35, 51, 0.85) 30%, rgba(0, 35, 51, 0.8) 40%, rgba(0, 35, 51, 0.75) 50%, rgba(0, 35, 51, 0.7) 60%, rgba(0, 35, 51, 0.65) 70%, rgba(0, 35, 51, 0.5) 80%, rgba(0, 35, 51, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #002333 0%, rgba(0, 35, 51, 0.99) 5%, rgba(0, 35, 51, 0.9) 20%, rgba(0, 35, 51, 0.85) 30%, rgba(0, 35, 51, 0.8) 40%, rgba(0, 35, 51, 0.75) 50%, rgba(0, 35, 51, 0.7) 60%, rgba(0, 35, 51, 0.65) 70%, rgba(0, 35, 51, 0.5) 80%, rgba(0, 35, 51, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fc003851", endColorstr="#00003851",GradientType=1 );
    /* IE6-9 */
  }
  .dd-s-about .dd-b-about .dd-photo {
    margin-bottom: 0;
    margin-right: 0;
    padding: 0;
    float: none;
    max-width: none;
    border: none;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .dd-s-about .dd-b-about .dd-photo img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    max-height: none;
  }
  .dd-s-about .dd-b-about .dd-info {
    position: absolute;
    top: 24vh;
    margin-top: 0;
    z-index: 5;
    width: 40vw;
    left: 112px;
    padding: 0;
    background-color: transparent;
    border: none;
  }
  .dd-s-about .dd-b-about .dd-info p {
    font-size: 12px;
    line-height: 1.5em;
    color: #c2d1d8;
  }
}

@media only screen and (min-width: 1080px) {
  .dd-s-about .dd-mini-menu {
    top: 30vh;
    left: 100px;
    right: auto;
  }
  .dd-s-about .dd-b-investor {
    max-width: 80vw;
    margin: 0 auto;
    height: 668px;
    padding-top: 260px;
  }
.dd-s-about .dd-b-investor .dd-info {
    max-width: 460px;
    padding-left: 15px;
    padding-right: 15px;
}
  .dd-s-about .dd-b-about:before {
    width: 70%;
  }
  .dd-s-about .dd-b-about .dd-info {
    left: 100px;
    width: 40vw;
    top: 37vh;
  }
  .dd-s-about .dd-b-about .dd-info p {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1690px) {
  .dd-s-about .dd-b-about:before {
    width: 33%;
  }
  .dd-s-about .dd-b-about .dd-info {
    width: 30vw;
    top: 33vh;
  }
  .dd-s-about .dd-b-about .dd-info p {
    font-size: 15px;
  }
}
@media only screen and (min-width: 20000px) {
  .dd-s-about .dd-b-about:before {
    width: 30%;
  }
  .dd-s-about .dd-b-about .dd-info {
    width: 30vw;
    top: 33vh;
  }
  .dd-s-about .dd-b-about .dd-info p {
    font-size: 15px;
  }
}
/*
   .-----------------------------------------------------.
   |                        NEWS                         |
   '-----------------------------------------------------'
*/
.root-news,
.root-news-detail {
  background-color: #004462;
}

.dd-s-news {
  color: #FFFFFF;
  padding: 90px 20px 13px;
}
.dd-s-news .dd-cate-dropdown {
  float: right;
  position: relative;
  z-index: 10;
  margin-top: 2px;
}
.dd-s-news .dd-cate-dropdown .dd-current-cate {
  font-size: 14px;
  line-height: 31px;
  font-weight: 300;
  padding-right: 20px;
  padding-left: 20px;
  position: relative;
  z-index: 5;
  margin-bottom: 0;
  cursor: pointer;
}
.dd-s-news .dd-cate-dropdown .dd-current-cate:before, .dd-s-news .dd-cate-dropdown .dd-current-cate:after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 1px;
  background-color: #FFFFFF;
  top: 12px;
  right: 2px;
  transform-origin: 0 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-s-news .dd-cate-dropdown .dd-current-cate:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 0;
  top: 12px;
  transform-origin: right top;
}
.dd-s-news .dd-cate-dropdown .dd-current-cate.opening:before, .dd-s-news .dd-cate-dropdown .dd-current-cate.opening:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 17px;
  right: 4px;
}
.dd-s-news .dd-cate-dropdown .dd-current-cate.opening:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 17px;
  right: 0;
}
.dd-s-news .dd-cate-dropdown .category-list {
  display: none;
  position: absolute;
  width: 160px;
  right: 0;
  top: 31px;
  padding: 0 20px 0 10px;
  background-color: #004462;
}
.dd-s-news .dd-cate-dropdown .category-list li {
  border-bottom: 1px solid #FFFFFF;
}
.dd-s-news .dd-cate-dropdown .category-list li a {
  text-align: right;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 14px 0 9px;
  color: #FFFFFF;
  display: block;
}
.dd-s-news .dd-cate-dropdown .category-list li a:hover {
  text-decoration: none;
  color: #c9b45f;
}
.dd-s-news .dd-cate-dropdown .category-list li:last-child {
  border: none;
}
.dd-s-news .dd-cate-dropdown .category-list li.active a {
  color: #c9b45f;
}
.dd-s-news .dd-b-head {
  margin-bottom: 9px;
}
.dd-s-news .dd-b-head h2 {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.dd-s-news .dd-b-head *:last-child {
  margin-bottom: 0;
}
.dd-s-news .dd-b-body .post-list li {
  background-color: #003851;
  margin-bottom: 20px;
}
.dd-s-news .dd-b-body .post-list li:last-child {
  margin-bottom: 14px;
}
.dd-s-news .dd-b-body .post-list li * {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-s-news .dd-b-body .post-list .dd-thumbnail img {
  display: block;
}
.dd-s-news .dd-b-body .post-list .dd-b-intro-top {
  padding: 12px 20px 12px;
  border-bottom: 1px solid rgba(201, 180, 95, 0.5);
}
.dd-s-news .dd-b-body .post-list .dd-b-intro-top h3 {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 0;
}
.dd-s-news .dd-b-body .post-list .dd-b-intro-top h3 a {
  color: #FFFFFF;
}
.dd-s-news .dd-b-body .post-list .dd-b-intro-top h3 a:hover {
  text-decoration: none;
  color: #c9b45f;
}
.dd-s-news .dd-b-body .post-list .dd-b-intro-top .dd-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.dd-s-news .dd-b-body .post-list .dd-b-intro-top *:last-child {
  margin-bottom: 0;
}
.dd-s-news .dd-b-body .post-list .dd-b-intro-bottom {
  padding: 10px 20px 10px;
}
.dd-s-news .dd-b-body .post-list .dd-b-intro-bottom p {
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
  margin-bottom: 5px;
}
.dd-s-news .dd-b-body .post-list .dd-b-intro-bottom .dd-more {
  color: #c9b45f;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 13px;
  display: inline-block;
  margin-left: -20px;
  font-weight: 300;
}
.dd-s-news .dd-b-body .post-list .dd-b-intro-bottom .dd-more:before {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  content: "";
  display: inline-block;
  position: relative;
  height: 1px;
  width: 40px;
  background-color: #c9b45f;
  vertical-align: middle;
  margin-right: 4px;
  margin-top: -3px;
}
.dd-s-news .dd-b-body .post-list .dd-b-intro-bottom .dd-more:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.dd-s-news .dd-b-body .post-list .dd-b-intro-bottom .dd-more:hover:before {
  background-color: #FFFFFF;
}
.dd-s-news .dd-b-body .post-list .dd-b-intro-bottom *:last-child {
  margin-bottom: 0;
}
.dd-s-news .dd-pagination {
  font-size: 0;
  line-height: 0;
  text-align: center;
  padding-top: 1px;
}
.dd-s-news .dd-pagination li {
  display: inline-block;
  margin-right: 6px;
  vertical-align: top;
}
.dd-s-news .dd-pagination li:last-child, .dd-s-news .dd-pagination li:nth-last-child(2) {
  margin-right: 0;
}
.dd-s-news .dd-pagination li.dd-arrows {
  margin-top: -3px;
}
.dd-s-news .dd-pagination li.dd-arrows a {
  width: 11px;
  height: 20px;
  position: relative;
  z-index: 10;
  font-size: 0;
  line-height: 0;
  display: block;
}
.dd-s-news .dd-pagination li.dd-arrows a:before, .dd-s-news .dd-pagination li.dd-arrows a:after {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  content: "";
  display: block;
  position: absolute;
  z-index: 11;
  top: 50%;
  left: 0;
  width: 15px;
  height: 1px;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: 0 0;
  background-color: #FFFFFF;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.dd-s-news .dd-pagination li.dd-arrows a:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.dd-s-news .dd-pagination li.dd-arrows a:hover:before, .dd-s-news .dd-pagination li.dd-arrows a:hover:after {
  background-color: #c9b45f;
}
.dd-s-news .dd-pagination li.dd-arrows.dd-prev {
  float: left;
}
.dd-s-news .dd-pagination li.dd-arrows.dd-prev a {
  left: 0;
}
.dd-s-news .dd-pagination li.dd-arrows.dd-next {
  float: right;
}
.dd-s-news .dd-pagination li.dd-arrows.dd-next a {
  right: 0;
}
.dd-s-news .dd-pagination li.dd-arrows.dd-next a:after, .dd-s-news .dd-pagination li.dd-arrows.dd-next a:before {
  left: auto;
  right: 0;
  transform-origin: 100% 0;
}
.dd-s-news .dd-pagination li a {
  font-size: 13px;
  line-height: 13px;
  font-weight: 300;
  color: #FFFFFF;
  padding-left: 12px;
  padding-right: 12px;
  display: block;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-s-news .dd-pagination li a:hover {
  color: #c9b45f;
  text-decoration: none;
}
.dd-s-news .dd-pagination li.active a {
  color: #c9b45f;
  border-bottom: 1px solid #c9b45f;
  padding-bottom: 3px;
}
@media only screen and (min-width: 768px) {
  .dd-s-news {
    padding-bottom: 40px;
  }
  .dd-s-news .dd-b-head {
    margin-bottom: 29px;
  }
  .dd-s-news .dd-b-body .post-list {
    margin-bottom: 35px;
  }
  .dd-s-news .dd-b-body .post-list li {
    width: 49%;
    margin-right: 2%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 38px;
  }
  .dd-s-news .dd-b-body .post-list li:nth-child(2n) {
    margin-right: 0;
  }
  .dd-s-news .dd-b-body .post-list li:last-child, .dd-s-news .dd-b-body .post-list li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .dd-s-news .dd-b-body .post-list li .dd-thumbnail img {
    height: 235px;
    width: 100%;
    object-fit: cover;
  }
  .dd-s-news .dd-b-body .post-list .dd-b-intro-top {
    padding-top: 23px;
  }
  .dd-s-news .dd-b-body .post-list .dd-b-intro-top h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .dd-s-news .dd-b-body .post-list .dd-b-intro-bottom {
    padding-bottom: 25px;
  }
  .dd-s-news .dd-b-body .post-list .dd-b-intro-bottom p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .dd-s-news .dd-pagination li:nth-last-child(2) {
    margin-right: 6px;
  }
  .dd-s-news .dd-pagination li a {
    font-size: 18px;
    line-height: 18px;
  }
  .dd-s-news .dd-pagination li.dd-arrows {
    margin-top: 0;
  }
  .dd-s-news .dd-pagination li.dd-arrows.dd-prev, .dd-s-news .dd-pagination li.dd-arrows.dd-next {
    float: none;
  }
}
@media only screen and (min-width: 1024px) {
  .dd-s-news {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-news {
    padding: 0 50px 94px;
    max-width: 1500px;
    margin: -25vh auto 0;
    position: relative;
    z-index: 2;
  }
  .dd-s-news .dd-cate-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    width: 335px;
  }
  .dd-s-news .dd-cate-dropdown .dd-current-cate {
    font-size: 20px;
    line-height: 33px;
    padding-right: 30px;
    padding-left: 0px;
  }
  .dd-s-news .dd-cate-dropdown .dd-current-cate:before, .dd-s-news .dd-cate-dropdown .dd-current-cate:after {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 1px;
    top: 8px;
    right: 5px;
  }
  .dd-s-news .dd-cate-dropdown .dd-current-cate:after {
    right: 0;
    top: 8px;
  }
  .dd-s-news .dd-cate-dropdown .dd-current-cate.opening:before, .dd-s-news .dd-cate-dropdown .dd-current-cate.opening:after {
    top: 20px;
    right: 7px;
  }
  .dd-s-news .dd-cate-dropdown .dd-current-cate.opening:after {
    top: 20px;
    right: 0px;
  }
  .dd-s-news .dd-cate-dropdown .category-list {
    width: 100%;
    top: 33px;
    padding: 0 20px 0 10px;
    background-color: #004462;
  }
  .dd-s-news .dd-cate-dropdown .category-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .dd-s-news .dd-cate-dropdown .category-list li a {
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    padding: 15px 0 12px;
  }
  .dd-s-news .dd-b-head {
    margin-bottom: 20px;
    background-color: #003851;
    padding: 11px 34px 9px 26px;
  }
  .dd-s-news .dd-b-head h2 {
    font-size: 39px;
    line-height: 50px;
  }
  .dd-s-news .dd-b-head *:last-child {
    margin-bottom: 0;
  }
  .dd-s-news .dd-b-body .post-list {
    margin-bottom: 82px;
    font-size: 0;
    line-height: 0;
  }
  .dd-s-news .dd-b-body .post-list li {
    margin-bottom: 30px;
    width: 49%;
    margin-right: 2%;
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 1;
  }
  .dd-s-news .dd-b-body .post-list li:nth-child(2n) {
    margin-right: 0;
  }
  .dd-s-news .dd-b-body .post-list li:last-child, .dd-s-news .dd-b-body .post-list li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .dd-s-news .dd-b-body .post-list .dd-thumbnail {
    width: 45%;
    float: left;
  }
  .dd-s-news .dd-b-body .post-list .dd-thumbnail img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }
  .dd-s-news .dd-b-body .post-list .dd-b-intro-top {
    padding: 40px 30px 0 25px;
    border-bottom: none;
    overflow: hidden;
  }
  .dd-s-news .dd-b-body .post-list .dd-b-intro-top h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 5px;
  }
  .dd-s-news .dd-b-body .post-list .dd-b-intro-bottom {
    padding: 6px 30px 40px 25px;
    overflow: hidden;
  }
  .dd-s-news .dd-b-body .post-list .dd-b-intro-bottom p {
    margin-bottom: 0;
    line-height: 24px;
    -webkit-line-clamp: 2;
  }
  .dd-s-news .dd-b-body .post-list .dd-b-intro-bottom .dd-more {
    margin-left: 0;
    position: absolute;
    bottom: 15px;
    left: 45%;
    right: 0;
  }
  .dd-s-news .dd-b-body .post-list .dd-b-intro-bottom .dd-more:before {
    content: "";
    display: inline-block;
    position: relative;
    height: 1px;
    width: 65%;
    background-color: #c9b45f;
    vertical-align: middle;
    margin-right: 15px;
    margin-top: -3px;
  }
  .dd-s-news .dd-b-body .post-list .dd-b-intro-bottom *:last-child {
    margin-bottom: 0;
  }
  .dd-s-news .dd-pagination li {
    margin-right: 40px;
  }
  .dd-s-news .dd-pagination li:nth-last-child(2) {
    margin-right: 40px;
  }
  .dd-s-news .dd-pagination li.active a {
    border-bottom-width: 3px;
    padding-bottom: 10px;
  }
}

.dd-s-news-detail {
  padding: 101px 0 20px;
}
.dd-s-news-detail .dd-b-container {
  padding-left: 20px;
  padding-right: 20px;
}
.dd-s-news-detail .dd-b-container blockquote {
  margin-bottom: 24px;
}
.dd-s-news-detail .dd-b-container blockquote p {
  display: inline !important;
}
.dd-s-news-detail .dd-b-container blockquote:before, .dd-s-news-detail .dd-b-container blockquote:after {
  display: inline-block;
  vertical-align: top;
  line-height: 20px;
  font-size: 20px;
  color: #FFF;
}
.dd-s-news-detail .dd-b-container blockquote:before {
  content: "“";
  margin-right: 6px;
}
.dd-s-news-detail .dd-b-container blockquote:after {
  content: "”";
  margin-left: 6px;
}
.dd-s-news-detail .dd-b-head {
  color: #FFFFFF;
  text-align: center;
  font-size: 0;
  line-height: 0;
  margin-bottom: 11px;
}
.dd-s-news-detail .dd-b-head .dd-mini-heading {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: #FFFFFF;
}
.dd-s-news-detail .dd-b-body {
  color: #FFFFFF;
}
.dd-s-news-detail .dd-b-body .dd-b-top h2 {
  text-align: center;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 12px;
}
.dd-s-news-detail .dd-b-body .dd-b-top .dd-date {
  display: none;
}
.dd-s-news-detail .dd-b-body .dd-featured-images {
  font-size: 0;
  line-height: 0;
  margin-bottom: 15px;
}
.dd-s-news-detail .dd-b-body img {
  max-width: 100% !important;
  display: block;
  margin: 0 auto;
  height: auto !important;
}
.dd-s-news-detail .dd-b-body .dd-b-content h1, .dd-s-news-detail .dd-b-body .dd-b-content h2, .dd-s-news-detail .dd-b-body .dd-b-content h3, .dd-s-news-detail .dd-b-body .dd-b-content h4, .dd-s-news-detail .dd-b-body .dd-b-content h5, .dd-s-news-detail .dd-b-body .dd-b-content h6 {
  font-weight: 400;
  margin-bottom: 0;
}
.dd-s-news-detail .dd-b-body .dd-b-content p {
  font-weight: 300;
  line-height: 1.5;
  font-size: 15px;
  margin-bottom: 10px;
}
.dd-s-news-detail .dd-b-body .dd-b-content h2 {
  font-size: 18px;
  line-height: 25px;
}
.dd-s-news-detail .dd-b-body .dd-b-content h3 {
  font-size: 16px;
  line-height: 20px;
}
.dd-s-news-detail .dd-b-body .dd-b-content h4 {
  font-size: 15px;
  line-height: 20px;
}
.dd-s-news-detail .dd-b-body .dd-b-content h5 {
  font-size: 14px;
  line-height: 20px;
}
.dd-s-news-detail .dd-b-body .dd-b-content ul {
  margin-bottom: 24px;
  padding-left: 15px;
}
.dd-s-news-detail .dd-b-body .dd-b-content ul li {
  list-style-type: circle;
  font-weight: 300;
  line-height: 1.5;
  font-size: 15px;
}
.dd-s-news-detail .dd-b-body .dd-share a {
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
  color: #FFFFFF;
  display: block;
  position: relative;
  z-index: 1;
}
.dd-s-news-detail .dd-b-body .dd-share a:hover {
  text-decoration: none;
}
.dd-s-news-detail .dd-b-body .dd-share a span {
  position: relative;
  z-index: 3;
  background-color: #004462;
  padding-right: 8px;
  display: inline-block;
}
.dd-s-news-detail .dd-b-body .dd-share a:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 4;
  right: 3px;
  top: 0;
  background: url(../themes/eden/assets/images/icon-fb-white.svg) 0 0 no-repeat;
  background-size: auto 20px;
  width: 10px;
  height: 20px;
}
.dd-s-news-detail .dd-b-body .dd-share a:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  height: 1px;
  left: 0;
  right: 20px;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 1024px) {
  .dd-s-news-detail .dd-b-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-news-detail {
    padding-top: 89px;
    padding-bottom: 70px;
  }
  .dd-s-news-detail .dd-b-container {
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
  }
  .dd-s-news-detail .dd-b-container .dd-b-head {
    display: none;
  }
  .dd-s-news-detail .dd-b-container .dd-b-body .dd-b-top {
    padding-bottom: 40px;
    border-bottom: 1px solid #c9b45f;
    margin-bottom: 60px;
    font-size: 0;
    line-height: 0;
  }
  .dd-s-news-detail .dd-b-container .dd-b-body .dd-b-top h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
    margin-bottom: 0;
    text-align: left;
    display: inline-block;
    width: calc(100% - 100px);
    padding-right: 20vw;
    vertical-align: bottom;
  }
  .dd-s-news-detail .dd-b-container .dd-b-body .dd-b-top .dd-date {
    display: inline-block;
    width: 100px;
    text-align: right;
    vertical-align: bottom;
    font-size: 18px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3px;
  }
  .dd-s-news-detail .dd-b-container .dd-b-body .dd-featured-images {
    font-size: 0;
    line-height: 0;
    margin-bottom: 15px;
  }
  .dd-s-news-detail .dd-b-container .dd-b-body .dd-b-content img {
    margin-bottom: 10px;
  }
  .dd-s-news-detail .dd-b-container .dd-b-body .dd-b-content h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .dd-s-news-detail .dd-b-container .dd-b-body .dd-b-content h3 {
    font-size: 28px;
    line-height: 34px;
  }
  .dd-s-news-detail .dd-b-container .dd-b-body .dd-b-content h4 {
    font-size: 26px;
    line-height: 30px;
  }
  .dd-s-news-detail .dd-b-container .dd-b-body .dd-b-content h5 {
    font-size: 22px;
    line-height: 28px;
  }
  .dd-s-news-detail .dd-b-container .dd-b-body .dd-b-content p {
    margin-bottom: 10px;
  }
  .dd-s-news-detail .dd-b-container .dd-b-body .dd-b-content ul {
    margin-bottom: 10px;
  }
  .dd-s-news-detail .dd-b-container .dd-b-body .dd-share a {
    font-size: 16px;
    text-align: right;
  }
  .dd-s-news-detail .dd-b-container .dd-b-body .dd-share a span {
    padding-right: 35px;
    padding-left: 30px;
  }
}

.dd-s-related-news .dd-b-container {
  padding-left: 20px;
  padding-right: 20px;
}
.dd-s-related-news .dd-b-head {
  background-color: #003851;
  margin-bottom: 20px;
}
.dd-s-related-news .dd-b-head h2 {
  font-size: 12px;
  font-weight: 400;
  color: #FFFFFF;
  padding: 12px 20px 10px;
  text-transform: uppercase;
  text-align: center;
}
.dd-s-related-news .dd-b-body ul li {
  padding: 17px 0 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.dd-s-related-news .dd-b-body ul li .dd-date {
  font-size: 14px;
  line-height: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}
.dd-s-related-news .dd-b-body ul li h3 {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 0;
}
.dd-s-related-news .dd-b-body ul li h3 a {
  color: #FFFFFF;
}
.dd-s-related-news .dd-b-body ul li h3 a:hover {
  color: #c9b45f;
  text-decoration: none;
}
.dd-s-related-news .dd-b-body ul li .dd-more {
  display: none;
}
.dd-s-related-news .dd-b-body ul li *:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .dd-s-related-news .dd-b-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-related-news .dd-b-container {
    padding-left: 50px;
    padding-right: 50px;
    max-width: 1500px;
    margin: 0 auto;
  }
  .dd-s-related-news .dd-b-head {
    margin-bottom: 24px;
  }
  .dd-s-related-news .dd-b-head h2 {
    font-size: 30px;
    padding: 31px 45px 28px;
    text-align: left;
  }
  .dd-s-related-news .dd-b-body ul {
    margin-bottom: 30px;
  }
  .dd-s-related-news .dd-b-body ul li {
    padding: 22px 200px 24px 0;
    width: calc(50% - 17px);
    display: inline-block;
    vertical-align: top;
    margin-right: 34px;
    position: relative;
    z-index: 1;
  }
  .dd-s-related-news .dd-b-body ul li:nth-child(2n) {
    margin-right: 0;
  }
  .dd-s-related-news .dd-b-body ul li * {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .dd-s-related-news .dd-b-body ul li .dd-date {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 6px;
  }
  .dd-s-related-news .dd-b-body ul li h3 {
    font-size: 15px;
    line-height: 1.4;
  }
  .dd-s-related-news .dd-b-body ul li .dd-more {
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    color: #c9b45f;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 16px;
    font-weight: 300;
  }
  .dd-s-related-news .dd-b-body ul li .dd-more:before {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    content: "";
    display: inline-block;
    position: relative;
    height: 1px;
    width: 73px;
    background-color: #c9b45f;
    vertical-align: middle;
    margin-right: 11px;
    margin-top: -3px;
  }
  .dd-s-related-news .dd-b-body ul li .dd-more:hover {
    color: #FFFFFF;
    text-decoration: none;
  }
  .dd-s-related-news .dd-b-body ul li .dd-more:hover:before {
    background-color: #FFFFFF;
  }
}

.dd-s-featured-news {
  display: none;
}
@media only screen and (min-width: 1080px) {
  .dd-s-featured-news {
    display: block;
    background: url(../themes/eden/assets/images/bg-featured-news.jpg) 0 0 no-repeat;
    background-size: cover;
    padding: 30vh 0 37vh;
    position: relative;
    z-index: 1;
  }
  .dd-s-featured-news:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: -moz-linear-gradient(top, rgba(0, 56, 81, 0) 0%, #003851 100%);
    background: -webkit-linear-gradient(top, rgba(0, 56, 81, 0) 0%, #003851 100%);
    background: linear-gradient(to bottom, rgba(0, 56, 81, 0) 0%, #003851 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00003851", endColorstr="#003851",GradientType=0 );
  }
  .dd-s-featured-news .dd-b-container {
    max-width: 1500px;
    padding-left: 50px;
    padding-right: 50px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }
  .dd-s-featured-news .dd-b-container .dd-b-body {
    max-width: 65%;
  }
  .dd-s-featured-news .dd-b-container .dd-b-body h2 {
    font-weight: 300;
    font-size: 5vh;
    line-height: 1.25em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: left;
    margin-bottom: 0;
  }
  .dd-s-featured-news .dd-b-container .dd-b-body p {
    font-size: 13px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 40px;
  }
  .dd-s-featured-news .dd-b-container .dd-b-body .dd-buttons {
    text-align: right;
    position: relative;
    z-index: 4;
  }
  .dd-s-featured-news .dd-b-container .dd-b-body .dd-buttons:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 5;
    height: 1px;
    left: 0;
    right: 253px;
    top: 50%;
    margin-top: -1px;
    background-color: #FFFFFF;
  }
  .dd-s-featured-news .dd-b-container .dd-b-body .dd-more {
    font-size: 15px;
    line-height: 50px;
    font-weight: 400;
    height: 50px;
    text-align: center;
    border: 1px solid #FFFFFF;
    width: 278px;
    background-color: rgba(0, 56, 81, 0.6);
    display: inline-block;
    position: relative;
    z-index: 6;
    text-transform: uppercase;
    color: #FFFFFF;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .dd-s-featured-news .dd-b-container .dd-b-body .dd-more:hover {
    text-decoration: none;
    background-color: #003851;
  }
}
@media only screen and (min-width: 1690px) and (min-width: 1080px) {
  .dd-s-featured-news .dd-b-container .dd-b-body {
    max-width: 60%;
  }
}

.dd-b-news-breadcrumb {
  padding: 153px 50px 0 50px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 15px;
  line-height: 25px;
}
.dd-b-news-breadcrumb:before {
  content: "";
  width: 75px;
  height: 1px;
  background-color: #FFFFFF;
  vertical-align: middle;
  display: inline-block;
  margin-right: 20px;
}
.dd-b-news-breadcrumb a {
  color: #FFFFFF;
  display: inline-block;
  vertical-align: middle;
}
.dd-b-news-breadcrumb span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 13px;
  font-weight: 400;
  position: relative;
  z-index: 10;
  color: #919191;
  margin-left: 7px;
}
.dd-b-news-breadcrumb span:before, .dd-b-news-breadcrumb span:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 7px;
  width: 9px;
  height: 1px;
  background-color: #FFFFFF;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}
.dd-b-news-breadcrumb span:after {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
/*
   .-----------------------------------------------------.
   |                       FOOTER                        |
   '-----------------------------------------------------'
*/
.dd-s-mini-footer {
  padding-left: 20px;
  padding-right: 20px;
}
.dd-s-mini-footer .dd-b-body {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 21px;
  padding-bottom: 21px;
  text-align: center;
}
.dd-s-mini-footer .dd-b-body p {
  margin-bottom: 0;
  color: rgba(183, 183, 183, 0.4);
  font-size: 10px;
  line-height: 14px;
}
@media only screen and (min-width: 768px) {
  .dd-s-mini-footer .dd-b-body {
    padding-top: 35px;
    padding-bottom: 37px;
  }
  .dd-s-mini-footer .dd-b-body p {
    font-size: 15px;
    line-height: 15px;
  }
}
@media only screen and (min-width: 1024px) {
  .dd-s-mini-footer {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-mini-footer {
    padding-left: 50px;
    padding-right: 50px;
  }
  .dd-s-mini-footer .dd-b-body {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.dd-s-footer {
  text-align: center;
}
.dd-s-footer .dd-b-body *:last-child, .dd-s-footer .dd-b-foot *:last-child {
  margin-bottom: 0;
}
.dd-s-footer .dd-b-body .dd-b-contact-info-head {
  text-align: center;
}
.dd-s-footer .dd-b-body .dd-b-contact-info-head h3 {
  font-size: 0;
  line-height: 0;
  margin-bottom: 13px;
  display: inline-block;
  margin-right: 30px;
}
.dd-s-footer .dd-b-body .dd-b-contact-info-head h3:last-child {
  margin-right: 0;
}
.dd-s-footer .dd-b-body .dd-b-contact-info-head h3 .dd-icon {
  width: 49px;
  height: 49px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.dd-s-footer .dd-b-body .dd-b-contact-info-head h3 .dd-icon .svg-icon {
  fill: #FFFFFF;
}
.dd-s-footer .dd-b-body .dd-b-contact-info-head h3.active .dd-icon {
  background-color: #FFFFFF;
}
.dd-s-footer .dd-b-body .dd-b-contact-info-head h3.active .dd-icon .svg-icon {
  fill: #003851;
}
.dd-s-footer .dd-b-body .dd-b-contact-info-body {
  min-height: 50px;
}
.dd-s-footer .dd-b-body .dd-b-contact-info-body .dd-text {
  display: none;
}
.dd-s-footer .dd-b-body .dd-b-contact-info-body .dd-text.active {
  display: block;
}
.dd-s-footer p {
  color: #a3b2bb;
  font-size: 12px;
  line-height: 16px;
}
.dd-s-footer p.dd-phone {
  font-size: 30px;
  line-height: 30px;
}
.dd-s-footer p.dd-phone a {
  color: #a3b2bb;
}
.dd-s-footer p.dd-phone a:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.dd-s-footer p.is-small {
  font-size: 10px;
}
.dd-s-footer a.dd-link {
  color: #a3b2bb;
  font-size: 13px;
  line-height: 20px;
}
.dd-s-footer a.dd-link:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.dd-s-footer .dd-b-foot {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  right: 0;
  color: #b7b7b7;
  font-size: 10px;
  line-height: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .dd-s-footer {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1080px) {
  .dd-s-footer {
    width: auto;
    text-align: left;
    position: absolute;
    left: 50px;
    right: 50px;
    bottom: 100px;
  }
  .dd-s-footer .dd-b-body {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
  }
  .dd-s-footer .dd-b-body .dd-b-contact-info-head {
    text-align: left;
    width: 1110px;
    display: inline-block;
    vertical-align: bottom;
    font-size: 0;
    line-height: 0;
  }
  .dd-s-footer .dd-b-body .dd-b-contact-info-head h3 {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 0;
    margin-right: 20px;
    color: #a3b2bb;
  }
  .dd-s-footer .dd-b-body .dd-b-contact-info-head h3 .dd-icon {
    width: auto;
    height: auto;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
  }
  .dd-s-footer .dd-b-body .dd-b-contact-info-head h3 .dd-icon .svg-icon {
    fill: #FFFFFF;
  }
  .dd-s-footer .dd-b-body .dd-b-contact-info-head h3.active .dd-icon {
    background: transparent;
  }
  .dd-s-footer .dd-b-body .dd-b-contact-info-head h3.active .dd-icon .svg-icon {
    fill: #FFFFFF;
  }
  .dd-s-footer .dd-b-body .dd-b-contact-info-head h3 a {
    color: #a3b2bb;
  }
  .dd-s-footer .dd-b-body .dd-b-contact-info-head h3 a:hover {
    color: #FFFFFF;
    text-decoration: none;
  }
  .dd-s-footer .dd-b-body .dd-b-contact-info-body {
    text-align: left;
    width: 1110px;
    display: inline-block;
    vertical-align: bottom;
    font-size: 0;
    line-height: 0;
  }
  .dd-s-footer .dd-b-body .dd-b-contact-info-body .dd-text {
    width: 33.3%;
    display: inline-block;
  }
  .dd-s-footer .dd-b-body .dd-b-contact-info-body .dd-text.active {
    display: inline-block;
  }
  .dd-s-footer .dd-b-foot {
    bottom: -40px;
    left: auto;
    right: 0;
    border-top: none;
    padding: 0 60px 0 0;
    text-align: right;
    font-size: 12px;
    line-height: 16px;
  }
}
@media only screen and (min-width: 1690px) {
  .dd-s-footer {
    max-width: 1400px;
    width: 100%;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .dd-s-footer .dd-b-foot {
    bottom: 17px;
    right: 50px;
  }
}

footer {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/*
   .-----------------------------------------------------.
   |                       THEMES                        |
   '-----------------------------------------------------'
*/
.root-news .dd-text-logo,
.root-news-detail .dd-text-logo {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  z-index: 3;
}
.root-news .dd-text-logo svg *,
.root-news-detail .dd-text-logo svg * {
  fill: #FFFFFF;
}

.dd-dark-theme .dd-text-logo svg * {
  fill: #000000;
}
.dd-dark-theme .dd-bars .dd-bar .dd-bar-in:before, .dd-dark-theme .dd-bars .dd-bar .dd-bar-in:after {
  background-color: #000000;
}
.dd-dark-theme .dd-label {
  color: rgba(0, 0, 0, 0.75);
}
.dd-dark-theme .dd-b-language {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dd-dark-theme .dd-b-language.at-header li.active a {
  color: #000000;
}
.dd-dark-theme .dd-b-language.at-header li:first-child:before {
  background-image: url(../themes/eden/assets/images/icon-language-black.svg);
}
.dd-dark-theme .dd-b-language.hide {
  -webkit-transform: translateY(-70px);
  -moz-transform: translateY(-70px);
  -o-transform: translateY(-70px);
  -ms-transform: translateY(-70px);
  transform: translateY(-70px);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.dd-dark-theme .dd-social-network.at-bottom li a {
  border: 1px solid rgba(0, 0, 0, 0.7);
}
.dd-dark-theme .dd-social-network.at-bottom li a.facebook-icon {
  background-image: url(../themes/eden/assets/images/icon-fb-black.svg);
}
.dd-dark-theme .dd-social-network.at-bottom li a.twitter-icon {
  background-image: url(../themes/eden/assets/images/icon-tw-black.svg);
}
.dd-dark-theme .dd-social-network.at-bottom li a.instagram-icon {
  background-image: url(../themes/eden/assets/images/icon-ig-black.svg);
}
.dd-dark-theme .dd-social-network.at-bottom li a.youtube-icon {
  background-image: url(../themes/eden/assets/images/icon-yt-black.svg);
}
@media only screen and (min-width: 768px) {
  .dd-dark-theme #fp-nav:before {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .dd-dark-theme #fp-nav ul li a span {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .dd-dark-theme #fp-nav ul li .fp-tooltip {
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
  }
}

.dd-light-theme .dd-text-logo svg * {
  fill: #FFFFFF;
}
.dd-light-theme .dd-bars .dd-bar .dd-bar-in:before, .dd-light-theme .dd-bars .dd-bar .dd-bar-in:after {
  background-color: #FFFFFF;
}
/*.dd-light-theme body.villas .dd-text-logo svg * {
  fill: #000000;
}
.dd-light-theme body.villas .dd-bars .dd-bar .dd-bar-in:before, .dd-light-theme body.villas .dd-bars .dd-bar .dd-bar-in:after {
  background-color: #000000;
}
.dd-light-theme body.villas .dd-label {
  color: #000000;
}*/
.dd-light-theme .dd-label {
  color: #FFFFFF;
}
.dd-light-theme .dd-b-villa-breadcrumb:before {
  background-color: #FFFFFF;
}
.dd-light-theme .dd-b-villa-breadcrumb a {
  color: #FFFFFF;
}
.dd-light-theme .dd-b-villa-breadcrumb span {
  color: #FFFFFF;
}
.dd-light-theme .dd-b-villa-breadcrumb span:before, .dd-light-theme .dd-b-villa-breadcrumb span:after {
  background-color: #FFFFFF;
}

.video-background {
  min-height: 100vh;
  display: block;
  z-index: 1;
  position: relative;
}
.video-background:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#vidtop-content {
  top: 0;
  color: #fff;
}

@media (min-aspect-ratio: 16/9) {
  .video-foreground {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-foreground {
    width: 300%;
    left: -100%;
  }
}
.awards {
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: flex;
  flex-wrap: nowrap;
  z-index: 1000;
}
.awards a {
  display: block;
}
.awards a img {
  display: block;
  width: 100px;
  margin: 0;
}
.awards a img.mobile {
  display: none;
}

@media only screen and (max-width: 1079px) {
  .dd-social-network.at-bottom,
.awards {
    bottom: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .awards {
    bottom: auto;
    top: 0;
    right: 0;
    margin: 0;
    z-index: 444;
  }
  .awards a img {
    display: none;
  }
  .awards a img.mobile {
    width: 110px;
    display: none;
  }

.root-home.fp-viewing-intro .awards a img.mobile  , .root-masterplan.fp-viewing-about .awards a img.mobile , .root-library.fp-viewing-0 .awards a img.mobile , .root-video.fp-viewing-0 .awards a img.mobile{
    display: block;
}
.villas.fp-viewing-0 .awards a img.mobile {
    display: block;
}

#fullpage-video .dd-category-menu .current.js-control {
    display: none;
}
.dd-s-gallery-media .dd-gallery-nav {
    margin-top: 15px;
    margin-bottom: 0px;
}
}


.dd-label.dd-label-color{
  background-color: #023348 !important;
}
.dd-s-project-overview .dd-eden-map .dd-map-hotpot .dd-hotpot.dd-colormaster:after{
    background-color: #023348;
}
.dd-s-location .dd-location-map .dd-hotpot.is-area:after{
      background-color: #023348;
}

input[type=email], textarea {
    outline: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}
/*.box-contact-form .contact-form form .form-field input::placeholder{
  padding-left: 5px;
}*/
/*#fullpage-masterplan1 .dd-s-location{
  display: none !important;
}*/
.root-news .dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li a , .root-news-detail .dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li a{
    color: #002333;
}
.root-news .dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li:nth-child(6) a , .root-news-detail .dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li:nth-child(6) a {
    color: #B1861F !important;
}
.box-frame-360 iframe{
  width: 100%;
  height: 70vh;
}
.slick-dots li.slick-active button:before {
  color: #B1861F !important;
}
.dd-main-menu .hidden{
  display: none
}
.dd-s-gallery-home{
  overflow: hidden;
  position: relative;
}
.animated { 
    -webkit-animation-duration: 1s; 
    animation-duration: 1s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
} 

.fadeInDownShort{
    opacity: 0; 
    -webkit-transform: translateY(-20px); 
    transform: translateY(-20px); 
}
.fadeInDownShort.go { 
    -webkit-animation-name: fadeInDownShort; 
    animation-name: fadeInDownShort; 
}
.delay-3000 {
    -webkit-animation-delay:3.0s;
    -moz-animation-delay:3.0s;
    -o-animation-delay:3.0s;
    animation-delay:3.0s;
}
.delay-3500 {
    -webkit-animation-delay:3.5s;
    -moz-animation-delay:3.5s;
    -o-animation-delay:3.5s;
    animation-delay:3.5s;
}
/*.dd-hotpot.is-school.hide{
      opacity: 0; 

      -webkit-animation-delay:3.0s;
    -moz-animation-delay:3.0s;
    -o-animation-delay:3.0s;
    animation-delay:3.0s;
        -webkit-animation-duration: 1s; 
    animation-duration: 1s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
}
.dd-hotpot.is-school{
    -webkit-animation-name: fadeInDownShort; 
    animation-name: fadeInDownShort ;
        -webkit-animation-delay:3.0s;
    -moz-animation-delay:3.0s;
    -o-animation-delay:3.0s;
    animation-delay:3.0s;
        -webkit-animation-duration: 1s; 
    animation-duration: 1s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
}*/
/*********************
* fadeInDownShort
*********************/
@-webkit-keyframes fadeInDownShort { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateY(-70px); 
    } 
    100% { 
        opacity: 1; 
        -webkit-transform: translateY(0); 
    } 
} 

@keyframes fadeInDownShort { 
    0% { 
        opacity: 0; 
        transform: translateY(-70px); 
    } 
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
} 
#fullpage-library .dd-category-menu ul.js-list li:nth-child(2){
  display: none
}
#fullpage-video .dd-category-menu ul.js-list{
  display: none
}

.home-facilities h3 {
    font-family: "Montserrat";
    font-weight: 100;
    color: #ffffff;
    font-size: 40px;
    text-align: center;
    line-height: 1.3;
    position: absolute;
    text-transform: uppercase;
    left: 0px;
    right: 0px;
    top: 16vh;
}


.bannder-content1 {
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 444;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.bannder-content1 h2 {
    margin: 0 0 11px;
    font-size: 33px;
    text-transform: uppercase;
    font-family: Montserrat-light, sans-serif;
    text-shadow: 1px 2px 4px #000;
    font-weight: 600;
}
.bannder-content1 p{
  font-size: 14px;
  line-height: 1.4;
  text-shadow: 1px 2px 4px #000;
}
.icon-scroll-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 5;
}
.bannder-content1 .icon-scroll-wrap {
    height: 100px;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}
.icon-scroll {
    cursor: pointer;
    width: 25px;
    height: 100%;
    display: block;
    background: url(../themes/eden/assets/images/icon-scroll.svg) no-repeat center center;
    background-size: contain;
}
.bannder-content1 .icon-scroll {
    position: absolute;
    left: 50%;
    bottom: -10%;
}
.bannder-content1 .icon-scroll {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.slider-master-img , .slider-master , .box-slider-master {
  height: 100vh;
}
.slider-master-img img{
  height: 100%;
    object-fit: cover;
    display: block;
    width: 100%;
}
/* .dd-b-gallery-popin{
  display: block!important;
}*/

.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content .dd-b-body{
  display: block;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading:before , .dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading:after{
  display: none;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-head .dd-heading {
    padding-right: 0px;
    margin: 0 0 11px;
    font-size: 33px;
    text-transform: uppercase;
    font-family: Montserrat-light, sans-serif;
    text-shadow: 1px 2px 4px #000;
    font-weight: 600;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body p {
    font-size: 14px;
    line-height: 1.5;
    text-shadow: 1px 2px 4px #000;
    margin-bottom: 10px;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body {
    background-color: rgba(0, 35, 51, 0.5);
    padding: 20px;
    padding-bottom: 10px;
    margin-top: 15px;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body {
    top: auto;
    left: 50%;
    right: auto;
    z-index: 999;
    width: 45%;
    position: relative;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.slider-material1{
  position: relative;
}
.slider-material1 .slick-dots {
    bottom: 25px;
    z-index: 33;
}
.slider-material1 .slick-dots li button:before {
    color: #ffffff;
    opacity: 1;
    font-size: 40px;
}
#fullpage .dd-s-gallery.dd-s-gallery-home  .bannder-content1 p {
    font-size: 14px;
    line-height: 1.4;
    text-shadow: 1px 2px 4px #000;
    margin-bottom: 5px;
}
.slider-material1 .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.dd-s-gallery.dd-s-gallery-home .bannder-content1{
  max-width: 45%;
  bottom: 70px;
}
.bannder-content-des{
    background-color: rgba(0, 35, 51, 0.5);
    padding: 20px;
    margin-top: 25px;
}

#fullpage-utility .dd-b-gallery-slider .dd-b-body{
    padding: 20px;
    position: absolute;
    z-index: 9;
    top: 70px;
    left: 20px;
    right: 20px;
    display: block;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-body {
    top: 9vh;
    left: 20%;
    right: auto;
    z-index: 999;
    width: 32%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-head .dd-heading{
  padding-right: 0px;
  margin: 0 0 11px;
    font-size: 33px;
    text-transform: uppercase;
    font-family: Montserrat-light, sans-serif;
    text-shadow: 1px 2px 4px #000;
    font-weight: 600;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body{
    background-color: rgba(0, 35, 51, 0.5);
    padding: 20px;
    padding-bottom: 10px;
    margin-top: 15px;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body p{
 font-size: 14px;
    line-height: 1.5;
    text-shadow: 1px 2px 4px #000;
    margin-bottom: 10px;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading:after , #fullpage-utility .dd-b-gallery-slider .dd-b-content .dd-b-head .dd-heading:before{
  display: none;
}
.box-contact-form .contact-form form .form-field {
    margin-bottom: 20px;
    position: relative;
    display: table;
    width: 100%;
}
.box-contact-form .contact-form form .form-field input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    width: 100%;
    font-size: 14px;
    color: #a3b2bb;
    border-bottom: 0.5px solid rgba(255,255,255,0.5);
    padding: 10px 0;
    background: transparent;
}
.box-contact-form .contact-form form .form-field input::placeholder , .box-contact-form .contact-form form .form-field textarea::placeholder{
  color: #a3b2bb;
}
.box-contact-form .contact-form form .form-field textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    color: #a3b2bb;
    width: 100%;
    font-size: 14px;
    resize: none;
    border-bottom: 0.5px solid rgba(255,255,255,0.5);
    margin-bottom: 25px;
    background: transparent;
}
.box-contact-form  .contact-form form .form-field input[type=submit] {
    text-transform: uppercase;
    text-align: right;
    background: transparent;
    border: 0;
    width: 50px;
    padding: 10px;
    float: right;
    cursor: pointer;
    font-family: "Montserrat";
    font-weight: 500;
}
.box-contact-form  .contact-form form .form-field input[type=submit] {
    position: absolute;
    bottom: 25px;
    right: 0;
    width: auto;
}
.box-contact-form  .contact-form form .form-field input[type=submit]:focus{
  outline: none;
}





.dd-b-gallery-slider .dd-b-content.dd-b-content-new {
    position: absolute;
    z-index: 10;
    top: auto;
    left: 50px;
    right: 50px;
    display: block;
    text-align: center;
    bottom: 8vh;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body {
    top: auto;
    left: 50%;
    right: auto;
    z-index: 999;
    width: 45%;
    position: relative;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-head .dd-heading {
    font-size: 35px;
    line-height: 1.25em;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    letter-spacing: 1px;
    padding-right: 45px;
    display: inline-block;
    margin-bottom: 0;
    text-align: center;
    margin-bottom: 20px;
}
.dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-head .dd-heading span:before{
  display: none;
}



.home-facilities {
    background-color: #0f304b
}
.slider-material .slick-dots {
    bottom: 25px;
}
.slider-material .slick-dots li button:before {
    color: #ffffff;
    opacity: 1;
    font-size: 40px;
}
.slider-material .slick-dots li.slick-active button:before {
    opacity: 1;
    font-size: 50px;
}
.slider-material .slick-dots li.slick-active button:before {
    color: #B1861F !important;
}
.box-facilities {
    width: auto;
    height: 64vh;
    position: absolute;
    left: 0;
    bottom: 13vh;
    display: flex;
    z-index: 2
}

.item-faci-home {
    position: relative;
    display: block;
    display: flex;
    height: 100%;
    overflow: hidden;
    opacity: 1;
    z-index: 1
}

.item-faci-home:after {
    content: "";
    position: absolute;
    height: 110%;
    width: 110%;
    left: -5%;
    top: -5%;
    background-color: rgba(15, 48, 75, 1);
    pointer-events: none;
    z-index: 5
}

.item-one, .item-two , .item-three {
    width: 20vw
}

.item-four {
    width: 40vw;
    opacity: 1
}

.item-faci-home .title-main {
    position: absolute;
    width: auto;
    bottom: 0;
    left: 0;
    padding: 15px 50px;
    color: #fff;
    z-index: 991;
}

.item-faci-home .title-main h2 {
    font-size: 25px;
    line-height: 1.3;
    font-weight: 100;
    text-shadow: 1px 2px 4px #000;
}
.item-faci-home .title-main h2 strong{
  display: block;
  font-weight: 600;
  font-size: 30px;
  position: relative;
  text-transform: uppercase;
  text-shadow: 1px 2px 4px #000;
}
.home-facilities .box-img {
    width: 40vw;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    background-position: 0;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden
}

.home-facilities .box-img img {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
    opacity: 0
}

/*.group-central {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateY(100%);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
 .group-central {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}*/
.home-facilities .box-img {
    width: 40vw;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0px;
    bottom: 0px;
    display: block;
    background-position: 0;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    z-index: 22;
    
}
.home-facilities .box-img img {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
    opacity: 0;
}
.show-text .title-main:not(.list-month) {
    animation: fadeInUp;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}
.material-page{
  position: relative;
}


.go-detail {
    margin: 20px 0;
    display: inline-block;
    position: relative;
    background: url(../themes/eden/assets/images/zoom-in-me.svg) no-repeat 50%/contain;
    width: 70px;
    height: 70px;
    z-index: 2;
    transition: all .3s ease-in-out;
}
@media screen and (min-width: 1100px){
.fullwidth {
    width: 40vw!important;
    opacity: 1;
    box-shadow: -50px 80px 50px 0 rgba(0,0,0,.2);
}
.item-three.fullwidth {
    box-shadow: none;
}
.item-faci-home span {
    width: 0;
    height: 15vw;
    position: absolute;
    left: 0;
    bottom: 5%;
    background-color: rgba(15,48,75,.5);
    pointer-events: none;
    mix-blend-mode: multiply;
    overflow: hidden;
    transition: width .6s cubic-bezier(.23,1,.38,1);
    z-index: 99;
}
.item-faci-home {
    transition: all 1s cubic-bezier(.23,1,.38,1);
}
.show-text .title-main:not(.list-month) {
    animation: fadeInUp;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}
.go-detail:hover, button:hover:after {
    filter: grayscale(1) brightness(600%);
    transition: all .3s ease-in-out;
}
.go-detail:hover {
    transform: rotate(-90deg);
    transition: all .3s ease-in-out;
}
.item-faci-home span.show {
    width: 20%;
}
}

.section.dd-s-news .post-list li a{
  overflow: hidden;
}
.section.dd-s-news .post-list li a img{
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
      -ms-transition: all .3s ease-in-out;
       -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out;
}
.section.dd-s-news .post-list li a img:hover{
  -webkit-transform: scale(1.15);
     -moz-transform: scale(1.15);
      -ms-transform: scale(1.15);
       -o-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
      -ms-transition: all .3s ease-in-out;
       -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out;
}
.dd-b-invester-slider11{
  position: relative;
  margin: 0 auto;
}
.dd-mini-menu li.active a{
  text-transform: uppercase;
  color: #B1861F;
}
.tab-content > .tab-pane:not(.active), 
.pill-content > .pill-pane:not(.active) {
    display: block;
    height: 0;
    overflow-y: hidden;
}
.dd-b-35year {
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
}
.dd-b-35year h3{
  font-family: "Montserrat";
  font-weight: 300;
  color: #c9b45f;
  font-size: 35px;
  text-align: center;
  line-height: 1.3;
}
.dd-b-35year h3 strong{
  font-family: "Montserrat";
  font-weight: 600;
  color: #c9b45f;
}
.p-des{
  color: #a3b2bb;
  text-align: center;
  font-size: 16px;
}
.box-year-ttg{
  padding: 15px;
}
.box-all-box {
    max-height: auto;
    margin-bottom: 15px;
    padding-right: 15px;
    display: flex;
    flex-wrap: wrap;
}
/*.box-all-box::-webkit-scrollbar {
    width: 4px;
    height: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #a3b2bb;
    margin-left: 10px;
}

.box-all-box::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.box-all-box::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #006e9b;
    width: 4px;
}*/
.box-year-list {
    clear: both;
    padding: 10px;
    width: 48%;
    display: flex;
    flex-direction: column;
    border: 1px solid #b5a75e;
    border-radius: 10px;
    margin: 10px 10px;
}
.box-field-content div.div-year{
  width: 35%;
  float: left;
}
.box-field-content div.div-year-content{
  width: 65%;
  float: right;
}
.div-year h5{
  font-size: 18px;
  font-family: "Montserrat";
  font-weight: 600;
  color: #ffffff;
}
.div-year-content{
  padding-top: 5px;
  margin-bottom: 5px;
}
.div-year-content p{
  font-size: 15px;
  color: #a3b2bb;
  line-height: 1.4;
  margin-bottom: 6px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
}
.div-year-content p strong{
  color: #ffffff;
  font-weight: 500;
}
.clearfix{
  clear: both;
}
.dd-b-invester-slider11.slick-initialized .slick-slide:focus{
  outline: none;
}
/*# sourceMappingURL=styles.css.map */
.dd-b-invester-slider11 .slick-dots{
  bottom: -60px;
}
.dd-b-invester-slider11 .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    padding: 5px;
    margin: 0px 10px;
    cursor: pointer;
    color: #f0f;
    border: 0;
    outline: none;
    background: #a3b2bb;
    border-radius: 50%;
}
.dd-b-invester-slider11 .slick-dots li button:before{
  display: none;
}
.dd-b-invester-slider11 .slick-dots li.slick-active  button{
    width: 12px;
    height: 12px;
}
.dd-b-investor img{
  display: block;
  margin: 0 auto;
}
.div-box-2.box-business .box-year-list >div.div-year {
    width: 30%;
    float: left;
}
.div-box-2.box-business .box-year-list >div.div-year-content {
    width: 70%;
    float: right;
}
.div-box-2.box-business .box-year-list div.div-year h6 {
    font-size: 14px;
    text-transform: uppercase;
    color: #c9b45f;
    text-align: center;
    line-height: 1.4;
}
.div-box-2.box-business .box-year-list div.div-year img{
  max-width: 50%;
  display: block;
  margin: 0 auto;
}
.box-img-business{
  margin-bottom: 10px;
}
.dd-b-menu .dd-b-sub-menu{
  display: none !important;
}
.dd-b-menu {
    right: auto;
    width: 390px;
}
.dd-b-menu .dd-menu-close:before, .dd-b-menu .dd-menu-close:after {
    background-color: #012434;
}
.dd-b-menu .dd-menu-close {
    margin-top: 27px;
    color: #002334;
}
.dd-hotpot-view .dd-label {
    position: absolute;
    z-index: 888;
    bottom: 45px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #B1861F;
    background-size: 117px 26px;
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    padding: 5px 15px;
}
.dd-hotpot-view .dd-label .dd-bar {
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #FFFFFF;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.dd-hotpot-view .dd-label .dd-bar.dd-top {
    top: 0px;
    left: 0px;
}
.dd-hotpot-view .dd-label .dd-bar.dd-top, .dd-hotpot-view .dd-label .dd-bar.dd-bottom {
    -webkit-animation: h-move 1s linear infinite;
    -moz-animation: h-move 1s linear infinite;
    -ms-animation: h-move 1s linear infinite;
    -o-animation: h-move 1s linear infinite;
    animation: h-move 1s linear infinite;
}
.dd-hotpot-view .dd-label .dd-bar.dd-right {
    top: 0px;
    right: 0px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    transform-origin: 100% 0;
    -webkit-transform-origin: 100% 0;
}
.dd-hotpot-view .dd-label .dd-bar.dd-right, .dd-hotpot-view .dd-label .dd-bar.dd-left {
    -webkit-animation: v-move 1s linear infinite;
    -moz-animation: v-move 1s linear infinite;
    -ms-animation: v-move 1s linear infinite;
    -o-animation: v-move 1s linear infinite;
    animation: v-move 1s linear infinite;
}
.dd-hotpot-view .dd-label .dd-bar.dd-delay {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}
.dd-hotpot-view .dd-label .dd-bar.dd-left {
    top: 0px;
    left: 2px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
}
.dd-hotpot-view .dd-label .dd-bar.dd-bottom {
    bottom: 0px;
    left: 0px;
}
.slider-master .slick-next{
     display: block;
    z-index: 99;
    background: url(../themes/eden/assets/images/next.svg) center center no-repeat;
    height: 40px;
    width: 40px;
    top: 50%;
    right: 30px;
   -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.slider-master .slick-prev {
    display: block;
    z-index: 99;
    background: url(../themes/eden/assets/images/back.svg) center center no-repeat;
    height: 40px;
    width: 40px;
    top: 50%;
    left: 30px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
   
}
.slider-master .slick-prev:hover,  .slider-master .slick-prev:focus {
   background: url(../themes/eden/assets/images/back.svg) center center no-repeat;
 }  
.slider-master .slick-next:hover,    .slider-master .slick-next:focus {
    background: url(../themes/eden/assets/images/next.svg) center center no-repeat;
}
.slider-master .slick-prev:before,   .slider-master .slick-next:before  {
   display: none;
 }


 .slider-material .slick-next{
     display: block;
    z-index: 99;
    background: url(../themes/eden/assets/images/next.svg) center center no-repeat;
    height: 40px;
    width: 40px;
    top: 50%;
    right: 30px;
   -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.slider-material .slick-prev {
    display: block;
    z-index: 99;
    background: url(../themes/eden/assets/images/back.svg) center center no-repeat;
    height: 40px;
    width: 40px;
    top: 50%;
    left: 30px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
   
}
.slider-material .slick-prev:hover,  .slider-material .slick-prev:focus {
   background: url(../themes/eden/assets/images/back.svg) center center no-repeat;
 }  
.slider-material .slick-next:hover,    .slider-material .slick-next:focus {
    background: url(../themes/eden/assets/images/next.svg) center center no-repeat;
}
.slider-material .slick-prev:before,   .slider-material .slick-next:before  {
   display: none;
 }
.slider-material .bannder-content1 {
    bottom: 50px;
    max-width: 50%;
}
.slider-material .bannder-content1 h2{
  margin-bottom: 25px;
}
.box-img-business img{
    object-fit: cover;
    display: block;
    width: 100%;
}
#fullpage .dd-s-project-overview .dd-map-hotpot .dd-hotpot span , #fullpage .dd-s-project-overview .dd-map-hotpot .dd-hotpot{
  cursor: initial;
}
.root-home #fp-nav{
  display: none !important;
}
.material-page{
  background: url(../themes/eden/assets/images/flashscreen.svg) center center no-repeat;
  background-size: cover;
  background-color: #002b3e;
}
#fullpage-material{
  z-index: 1;
}
@media only screen and (min-width: 1080px){
#fullpage-masterplan1 .dd-s-project-overview .dd-project-info .dd-b-body {
    top: 115px;
    display: block !important;
    padding: 20px 20px 20px 20px;
}
#fullpage-masterplan1 .dd-s-project-overview .dd-project-info .dd-b-body .dd-close.js-close-info{
    display: none !important;
}
}
@media only screen and (min-width: 1690px){
.dd-s-about .dd-b-about .dd-info {
    top: 47vh;
    left: 100px;
    width: 20vw;
}
}
@media only screen and (min-width: 2000px){
.dd-s-about .dd-b-about .dd-info {
    top: 45vh;
    width: 40vh;
    left: 100px;
}
}
@media only screen and (min-width: 1440px) and (max-width: 1660px) {
 .slider-material .bannder-content1 {
    bottom: 50px;
    max-width: 60%;
}
.slider-material .bannder-content1 h2{
  margin-bottom: 20px;
  font-size: 27px;
} 
.item-faci-home .title-main h2 {
    font-size: 20px;
}
.item-faci-home .title-main h2 strong {
    font-size: 25px;
}
.go-detail {
    width: 50px;
    height: 50px;
}  
.dd-b-35year {
    max-width: 1000px;
    margin: 0 auto;
    height: auto;
}
.div-year-content p {
    font-size: 14px;
    margin-bottom: 6px;
}
.dd-b-invester-slider11 .slick-dots {
    bottom: -40px;
}
.dd-b-35year h3 {
    font-size: 22px;
    margin-bottom: 0px;
}
.p-des {
    font-size: 14px;
}
.dd-text-logo {
    top: 25px;
}
.dd-menu-open {
    top: 25px;
}
.dd-b-language.at-header {
    top: 25px;
}
.div-box-2.box-business .box-year-list >div.div-year h6 {
    font-size: 13px;
}
.div-box-2.box-business .box-year-list >div.div-year img {
    max-width: 40%;
    display: block;
    margin: 0 auto;
}
.div-year h5 {
    font-size: 16px;
}
.box-year-list {
   width: 47%;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-body {
    top: 9vh;
    left: 23%;
    width: 35%;

}
.div-box-2.box-business .box-year-list div.div-year h6 span{
  display: block;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li {
    font-size: 16px;
    margin-bottom: 4%;
}
.dd-b-menu .dd-menu-close {
    margin-top: 10px;
}
.dd-hotpot-view .dd-label {
    bottom: 20px;
    font-size: 14px;
    padding: 2px 15px;
}
.dd-s-contact .dd-b-head h2 {
    font-size: 25px;
    margin-bottom: 15px;
}
.dd-s-contact {
    padding: 30px 24% 0px 50px;
    margin-bottom: 20px;
}
.box-contact-form{
  width: 60%;
}
.box-contact-form .contact-form form .form-field {
    margin-bottom: 10px;
}
.dd-s-location .dd-location-filter li a {
    font-size: 14px;
    padding: 5px 10px;
}
.dd-s-gallery-media .dd-gallery-slider .slick-slide .dd-info h2 {
    font-size: 27px;
}
 .home-facilities h3 {
    font-size: 26px;
    top: 15vh;
} 
.dd-s-gallery.dd-s-gallery-home .bannder-content1 {
    max-width: 55%;
    bottom: 60px;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body {
    width: 60%;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-head .dd-heading{
  font-size: 28px;
  margin-bottom: 10px;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content .dd-b-body p{
  margin-bottom: 5px;
  line-height: 1.5;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body {
    width: 60%;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-head .dd-heading{
  font-size: 28px;
  margin-bottom: 10px;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content .dd-b-body p{
  margin-bottom: 5px;
  line-height: 1.5;
}
.dd-s-about .dd-mini-menu {
    top: 24vh;
    left: 80px;
    right: auto;
}
.dd-s-about .dd-b-about:before {
    width: 40%;
}
.dd-s-about .dd-b-about .dd-info {
    left: 80px;
    width: 30vw;
    top: 45vh;
}
.dd-s-about .dd-b-investor {
    max-width: 80vw;
    margin: 0 auto;
    height: 603px;
    padding-top: 219px;
}
.dd-s-about .dd-b-investor .dd-info {
    max-width: 450px;
    padding-left: 30px;
    padding-right: 30px;
}
.div-box-2.box-business .div-year-content {
    padding-top: 0px;
}
.div-box-2.box-business .dd-b-35year {
    padding-top: 95px;
}
}
@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .slider-material .bannder-content1 {
    bottom: 50px;
    max-width: 65%;
}
.slider-material .bannder-content1 h2{
  margin-bottom: 10px;
  font-size: 25px;
}  
 .dd-s-about .dd-mini-menu {
    top: 20vh;
    left: 70px;
    right: auto;
}
.dd-s-about .dd-mini-menu li a{
  font-size: 13px;
}
.dd-s-about .dd-b-about .dd-info {
    left: 70px;
    width: 31vw;
    top: 42vh;
} 
.dd-s-about .dd-b-about:before {
    width: 43%;
}
.dd-s-gallery.dd-s-gallery-home .bannder-content1 {
     max-width: 60%;
    bottom: 60px;
}
.dd-s-gallery.dd-s-gallery-home .bannder-content1 h2 {
    font-size: 25px;
}
 #fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body {
    width: 65%;
    margin-top: 5px;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-head .dd-heading{
  font-size: 25px;
  margin-bottom: 10px;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content .dd-b-body p{
  margin-bottom: 5px;
  line-height: 1.5;
}
.dd-b-gallery-slider .dd-b-content.dd-b-content-new{
  bottom: 9vh;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body {
    width: 65%;
    margin-top: 5px;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-head .dd-heading{
  font-size: 25px;
  margin-bottom: 10px;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content .dd-b-body p{
  margin-bottom: 5px;
  line-height: 1.5;
}
 .item-faci-home .title-main h2 {
    font-size: 20px;
}
.item-faci-home .title-main h2 strong {
    font-size: 25px;
} 
.item-faci-home .title-main{
  padding: 20px;
  }
 .home-facilities h3 {
    font-size: 23px;
    top: 14vh;
} 
.dd-s-gallery-media .dd-gallery-slider .slick-slide .dd-info h2 {
    font-size: 25px;
}
 .go-detail {
    width: 40px;
    height: 40px;
    margin: 0px;
} 
.dd-s-location .dd-location-filter{
    left: 30px;
  }
.dd-s-location .dd-location-filter li a {
    font-size: 14px;
    padding: 5px 10px;
}
.dd-s-contact .dd-b-head h2 {
    font-size: 25px;
    margin-bottom: 15px;
}
.dd-s-contact .dd-b-head {
    margin-bottom: 10px;
}
.dd-s-contact {
    padding: 30px 24% 0px 50px;
    margin-bottom: 20px;
}
.box-contact-form{
  width: 70%;
}
.box-contact-form .contact-form form .form-field {
    margin-bottom: 10px;
}
.dd-hotpot-view .dd-label {
    bottom: 10px;
    font-size: 13px;
    padding: 2px 15px;
}
.dd-s-about .dd-b-about .dd-info {
    top: 39vh;
}  
.dd-b-35year {
    max-width: 930px;
    margin: 0 auto;
    height: auto;
}
.div-year-content p {
    font-size: 13px;
    margin-bottom: 5px;
}
.box-year-list {
    width: 47%;
    margin: 10px 10px;
}
.dd-b-invester-slider11 .slick-dots {
    bottom: -40px;
}
.dd-s-about .dd-b-investor {
    max-width: 90vw;
    margin: 0 auto;
    height: 515px;
    padding-top: 185px;
}
.dd-s-about .dd-b-investor .dd-logo {
    display: block;
    margin: 0 auto 10px;
}
.div-box-2.box-business {
  padding-top: 45px;
}
.div-box-2.box-business .div-year-content {
    padding-top: 0px;
    margin-bottom: 5px;
}
.div-box-2.box-business .box-year-list div.div-year h6 {
    font-size: 12px;
    padding-top: 3px;
}
.dd-s-about .dd-b-investor .dd-info {
    max-width: 400px;
    padding-left: 30px;
    padding-right: 30px;
}
.dd-s-about .dd-b-investor {
    background-size: 100% 100%;
}
.dd-s-about .dd-b-investor .dd-info {
    max-width: 400px;
    padding-left: 5px;
    padding-right: 5px;
}
.dd-s-about .dd-b-investor .dd-info p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 5px;
}
.div-box-2.box-business .box-year-list div.div-year h6 span{
  display: block;
}
.dd-b-35year h3 {
    font-size: 22px;
    margin-bottom: 0px;
}
.p-des {
    font-size: 14px;
}
.dd-text-logo {
    top: 25px;
}
.dd-menu-open {
    top: 25px;
}
.dd-b-language.at-header {
    top: 25px;
}
.div-box-2.box-business .box-year-list >div.div-year h6 {
    font-size: 13px;
}
.div-box-2.box-business .box-year-list >div.div-year img {
    max-width: 40%;
    display: block;
    margin: 0 auto;
}
.div-year h5 {
    font-size: 16px;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-body {
    top: 9vh;
    left: 23%;
    width: 35%;

}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li {
    font-size: 16px;
    margin-bottom: 10px;
}
.dd-b-menu .dd-menu-close {
    margin-top: 10px;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-menu-contact-info .dd-phone {
    font-size: 23px;
    margin-bottom: 5px;
}
.dd-category-menu ul li a {
    font-size: 15px;
    line-height: 20px;
    color: #002333;
    padding: 15px 15px 15px;
    display: block;
}
.dd-s-news-detail img{
  max-width: 100% !important;
  height: auto !important;
}
}
@media only screen and (min-width: 767px) and (max-width: 1199px) {
.dd-s-about .dd-mini-menu li {
    text-align: left;
}
.dd-s-about .dd-mini-menu {
    padding: 0;
    top: 15vh;
    left: 50px;
    position: absolute;
    z-index: 50;
}
.dd-s-about .dd-mini-menu li.active a:before {
    z-index: 2;
    left: -40px;
    right: auto;
    bottom: 5px;
    width: 30px;
    height: 2px;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
   .slider-material .bannder-content1 {
    bottom: 50px;
    max-width: 75%;
}
.slider-material .bannder-content1 h2{
  margin-bottom: 10px;
  font-size: 25px;
}  
.slider-material .bannder-content1 p{
  font-size: 13px;
  }
  #fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body {
    width: 80%;
}

#fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body p {
    font-size: 13px;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-head .dd-heading{
  font-size: 22px;
  margin-bottom: 10px;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content .dd-b-body p{
  margin-bottom: 5px;
  line-height: 1.5;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body {
    width: 80%;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body p {
    font-size: 13px;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-head .dd-heading{
  font-size: 22px;
  margin-bottom: 10px;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content .dd-b-body p{
  margin-bottom: 5px;
  line-height: 1.5;
}



#fullpage .dd-s-gallery.dd-s-gallery-home .bannder-content1 p {
    font-size: 13px;
}
.slider-material1 .bannder-content1 h2 {
    font-size: 22px;
}
.dd-s-gallery.dd-s-gallery-home .bannder-content1 {
    max-width: 80%;
    bottom: 60px;
}

 .item-faci-home .title-main h2 {
    font-size: 20px;
}
.item-faci-home .title-main h2 strong {
    font-size: 25px;
}   
.item-faci-home {
    display: block;
    opacity: 1;
    height: 26.25vw;
}  
.dd-s-about .dd-b-about .dd-info {
    top: 27vh;
  }
  .dd-b-35year h3 {
    font-size: 22px;
    margin-bottom: 7px;
}
.dd-b-menu {
    right: auto;
    width: 300px;
}
.div-box-2.box-business .box-year-list >div.div-year h6 {
    font-size: 11px;
    margin-bottom: 0px;
}
.p-des {
    font-size: 13px;
}
.div-box-2.box-business .box-year-list div.div-year h6 span{
  display: block;
}
.box-all-box {
    max-height: 470px;
}
.dd-b-35year {
    max-width: 830px;
    margin: 0 auto;
    padding-top: 110px;
}
.div-year-content p {
    font-size: 12px;
    color: #a3b2bb;
    line-height: 1.4;
    margin-bottom: 4px;
}
.div-year h5 {
    font-size: 16px;
}
.dd-b-invester-slider11 .slick-dots {
    bottom: -10px;
}
.box-year-list {
    width: 47%;
}
.dd-s-about .dd-b-investor {
    background: url(../themes/eden/assets/images/bg-hands.png) center top no-repeat;
    background-size: auto 95%;
}
.dd-category-menu .current.js-control{
  display: block;
}
.dd-category-menu ul{
  display: none;
}
.div-box-2.box-business .box-year-list{
  padding: 10px 0px;
}
.box-contact-form .contact-col-wrap.contact-form{
  width: 50%;
  margin: 0 auto;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-body {
    top: 6vh;
    left: 35%;
    width: 70%;
}
#fullpage-material .material-page{
  height: auto !important;
  margin-bottom: 40px;
}
.box-facilities {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    display: block;
    text-align: center;
}
/*.box-img {
    width: 100%;
    height: 100%;
}*/
.item-one, .item-three, .item-two , .item-four{
    width: 50%;
    float: left;
}
.home-facilities .box-img {
    width: 100%;
    border: 2px solid #003851;
}
.item-faci-home .title-main {
    position: absolute;
    width: auto;
    bottom: 0;
    left: 0;
    padding: 1% 4%;
    color: #fff;
    z-index: 33;
    text-align: left;
}
.item-faci-home .title-main h2 {
    font-size: 20px;
    line-height: 1.3;
}
.go-detail {
    margin: 0px 0;
    width: 40px;
    height: 40px;
    z-index: 2;
    left: 0px;
    margin-left: 0px;
    transition: all .3s ease-in-out;
}
.home-facilities h3 {
    font-size: 19px;
    left: 0px;
    right: 0px;
    top: auto;
    position: relative;
}
.material-page .home-facilities{
  background: none;
}
.dd-s-news-detail img{
  max-width: 100% !important;
  height: auto !important;
}
}

@media only screen and (max-width: 991px) {
   .slider-material .bannder-content1 {
    bottom: 50px;
    max-width: 75%;
}
.slider-material .bannder-content1 h2{
  margin-bottom: 15px;
  font-size: 23px;
}  
.slider-material .bannder-content1 p{
  font-size: 13px;
  }
#fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-head .dd-heading{
  font-size: 20px;
  margin-bottom: 10px;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content .dd-b-body p{
  margin-bottom: 5px;
  line-height: 1.5;
} 
 .dd-s-about .dd-b-investor .dd-logo {
    display: block;
    margin: 0 auto 40px;
    width: 175px;
    height: auto;
    margin-bottom: 15px;
} 
.dd-s-news-detail img{
  max-width: 100% !important;
  height: auto !important;
}
.item-one, .item-three, .item-two, .item-four {
    width: 50%;
    float: left;
}
.item-faci-home {
    height: 32.25vw;
    opacity: 1;
}  
.slider-master .slick-next{
    height: 30px;
    width: 30px;
    top: 50%;
    right: 10px;
}
.slider-master .slick-prev {
    height: 30px;
    width: 30px;
    top: 50%;
    left: 10px;
   
}  
#fullpage-material .material-page{
  height: auto !important;
  margin-bottom: 40px;
}
.box-facilities {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    display: block;
    text-align: center;
}
/*.box-img {
    width: 100%;
    height: 100%;
}*/

.home-facilities .box-img {
    width: 100%;
    border: 2px solid #003851;
}
.item-faci-home .title-main {
    position: absolute;
    width: auto;
    bottom: 0;
    left: 0;
    padding: 10px;
    color: #fff;
    z-index: 33;
    text-align: left;
}
.item-faci-home .title-main h2 {
    font-size: 18px;
    text-shadow: 1px 1px #686c6d;
}
.item-faci-home .title-main h2 strong {
    font-size: 23px;
}
.go-detail {
    margin: 6px 0;
    width: 40px;
    height: 40px;
    z-index: 2;
    left: 0px;
    margin-left: 0px;
}
.home-facilities h3 {
    font-size: 20px;
    left: 0px;
    right: 0px;
    top: 18vh;
}

  .dd-hotpot-view .dd-label {
    bottom: 10px;
    font-size: 12px;
    padding: 0px 15px;
}
.dd-s-about .dd-b-about .dd-info {
    top: 27vh;
  }
  .dd-b-35year h3 {
    font-size: 22px;
    margin-bottom: 7px;
}
.dd-b-menu {
    right: auto;
    width: 300px;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li {
    margin-bottom: 15px;
}
.box-contact-form .contact-col-wrap.contact-form{
  width: 70%;
  margin: 0 auto;
}
.div-box-2.box-business .box-year-list >div.div-year h6 {
    font-size: 11px;
    margin-bottom: 0px;
}
.p-des {
    font-size: 13px;
}
.dd-b-35year {
    max-width: 100%;
    margin: 0 auto;
    /* height: 600px; */
}
.div-year-content p {
    font-size: 12px;
    color: #a3b2bb;
    line-height: 1.4;
    margin-bottom: 4px;
}
.div-year h5 {
    font-size: 16px;
}
.dd-b-invester-slider11 .slick-dots {
    bottom: -30px;
}
.box-year-list {
    padding: 5px 0px;
    margin: 5px 5px;
}
.dd-category-menu .current.js-control{
  display: block;
}
.dd-category-menu ul{
  display: none;
}
.div-box-2.box-business .box-year-list{
  padding: 10px 0px;
}
.dd-s-about .dd-b-container {
    max-width: 78vw;
    margin: 0 auto;
    padding-top: 12vh;
}
.box-all-box {
    padding-right: 0px;
}
.div-box-2.box-business .box-year-list div.div-year img {
    max-width: 60%;
}
.box-field-content div.div-year {
    width: 40%;
    float: left;
}
.box-field-content div.div-year-content {
    width: 60%;
    float: right;
}
.div-box-2.box-business .box-year-list div.div-year h6 span{
  display: block;
}
.div-box-2.box-business .box-year-list div.div-year h6 {
    font-size: 11px;
}
.box-year-ttg {
    padding: 0px;
}
.dd-s-about .dd-b-investor{
  margin-top: 125px;
}
.dd-s-about .dd-b-investor .dd-info{
  margin-top: 15px;
}
.bannder-content1 p {
    font-size: 13px;
    line-height: 1.4;
}
.bannder-content1 {
    max-width: 500px;
}
.bannder-content1 h2 {
    margin: 0 0 11px;
    font-size: 23px;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-body {
    top: 6vh;
    left: 0%;
    right: 0px;
    z-index: 999;
    width: 100%;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -o-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.slider-material .slick-next {
    height: 30px;
    width: 30px;
    top: 50%;
    right: 10px;
}
.slider-material .slick-prev {
    height: 30px;
    width: 30px;
    top: 50%;
    left: 10px;
}

#fullpage .dd-s-gallery.dd-s-gallery-home .bannder-content1 p {
    font-size: 13px;
}

.slider-material1 .bannder-content1 h2 {
    font-size: 22px;
}
.dd-s-gallery.dd-s-gallery-home .bannder-content1 {
    max-width: 80%;
    bottom: 60px;
}

#fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body p {
    font-size: 13px;
}
  #fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body {
    width: 80%;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-head .dd-heading{
  font-size: 22px;
  margin-bottom: 10px;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content .dd-b-body p{
  margin-bottom: 5px;
  line-height: 1.5;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body p {
    font-size: 13px;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body {
    width: 80%;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-head .dd-heading{
  font-size: 22px;
  margin-bottom: 10px;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content .dd-b-body p{
  margin-bottom: 5px;
  line-height: 1.5;
}
.dd-s-contact .dd-b-head h2 {
    font-size: 25px;
    margin-bottom: 15px;
}
}
@media only screen and (max-width: 767px) {
    .slider-material .bannder-content1 {
    bottom: 50px;
    max-width: 100%;
}
.slider-material .bannder-content1 h2{
  margin-bottom: 10px;
  font-size: 22px;
}  
.slider-material .bannder-content1 p{
  font-size: 13px;
  text-align: justify;
  } 
 .dd-s-news-detail .dd-b-body .dd-b-content p {
    font-size: 13px;
} 
.dd-s-related-news .dd-b-body ul li h3 {
    font-size: 16px;
    line-height: 1.4;
}
  .dd-s-about .dd-b-about .dd-info p strong {
    font-size: 18px;
}
.dd-s-about .dd-b-investor .dd-info p {
    font-size: 13px;
}
.dd-s-gallery.dd-s-gallery-home .bannder-content1 {
    max-width: 100%;
    bottom: 8vh;
    padding: 0px;
    height: 100vh;
    top: auto;
    left: auto;
    transform: none;
}
.slider-material1 .slider-master-img img {
    height: 100vh;
    object-fit: cover;
    display: block;
    width: 100%;
}
.slider-material1 .slick-dots {
    bottom: 3vh;
}
.slider-material1 .bannder-content1 h2 {
    font-size: 20px;
}
#fullpage .dd-s-gallery.dd-s-gallery-home .bannder-content1 p {
    font-size: 13px;
    text-align: justify;
}
.bannder-content-des {
    background-color: rgba(0, 35, 51, 0.5);
    padding: 15px;
    margin-top: 15px;
}

.dd-b-gallery-slider .slick-dots {
    bottom: 15px;
}
 #fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body {
    width: 100%;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-head .dd-heading {
    font-size: 20px;
    margin-bottom: 0px;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body {
    padding: 15px;
    margin-top: 15px;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content .dd-b-body p{
  margin-bottom: 5px;
  line-height: 1.5;
  text-align: justify;
}
#fullpage-utility .dd-b-gallery-slider .dd-b-content.dd-b-content-new {
    left: 0px;
    right: 0px;
    bottom: 6vh;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body {
    width: 100%;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-head .dd-heading {
    font-size: 20px;
    margin-bottom: 0px;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new .dd-b-body {
    padding: 15px;
    margin-top: 15px;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content .dd-b-body p{
  margin-bottom: 5px;
  line-height: 1.5;
  text-align: justify;
}
.dd-s-gallery.dd-s-gallery-home .dd-b-gallery-slider .dd-b-content.dd-b-content-new {
    left: 0px;
    right: 0px;
    bottom: 6vh;
}
 .item-faci-home {
    height: 33.25vw;
    opacity: 1;
} 
  .dd-s-gallery-media .dd-gallery-slider .slick-slide .dd-info h2 {
    font-size: 14px;
    margin-bottom: 5px;
}
#fullpage-material .dd-s-footer .dd-b-foot{
  margin-top:  40px;
  position: relative;
}
  .div-year-content{
    display: none;
  }
  .box-field-content div.div-year{
    width: 100%;
  }
  .box-year-list {
    padding: 20px;
    width: 47%;
}
.div-box-2.box-business .box-year-list div.div-year img {
    max-width: 48%;
}
.div-box-2.box-business .box-year-list div.div-year h6 span {
    display: initial; 
}
 .dd-s-about .dd-mini-menu li.active a:before{
  display: none;
 } 
 .box-contact-form .contact-form form .form-field textarea {
    font-size: 13px;
    margin-bottom: 5px;
} 
.box-contact-form .contact-form form .form-field {
    margin-bottom: 10px;
}
.box-contact-form .contact-form form .form-field input[type=submit] {
    bottom: 10px;
    color: #fff;
}
.div-box-2.box-business .box-year-list div.div-year h6 {
    font-size: 12px;
}
.dd-s-contact .dd-b-head {
    text-align: center;
    margin-bottom: 4vh;
}
.item-faci-home .title-main {
    bottom: 0;
    left: 0;
    padding: 10px;
    padding-bottom: 0px;
    right: 0px;
    text-align: center;
}
.item-faci-home .title-main h2 {
    font-size: 14px;
    margin-bottom: 5px;
    text-shadow: 1px 2px 4px #000;
    font-weight: 300;
}
.item-faci-home .title-main h2 strong {
    font-size: 17px;
}
.div-box-2.box-business .box-year-list >div.div-year-content {
    padding-left: 10px;
}
.box-year-ttg {
    padding: 10px;
}
.item-one, .item-three, .item-two, .item-four{
  width: 100%;
}
.home-facilities h3 {
    font-size: 16px;
    left: 0px;
    right: 0px;
    top: 0px;
    position: relative;
    margin-top: 40px;
}
.material-page .home-facilities{  
  background: none;
}
.dd-s-about .dd-b-container {
    padding-left: 10px;
    padding-right: 10px;
}
.go-detail {
    margin: 0px 0;
    width: 30px;
    height: 30px;
    z-index: 2;
    left: 0px;
    margin-left: 0px;
    transition: all .3s ease-in-out;
}
 .dd-b-menu .dd-menu-close {
    margin-top: 10px;
} 
.box-year-list >div.div-year-content {
    width: 86%;
    float: right;
}
.dd-s-contact .dd-b-head h2 {
    font-size: 24px;
    margin-bottom: 15px;
}
.dd-b-menu .dd-b-main-menu .dd-b-body .dd-main-menu li {
    margin-bottom: 10px;
}
.box-contact-form .contact-col-wrap.contact-form{
  width: 100%;
  margin: 0 auto;
}
.bannder-content1 h2 {
    margin: 0 0 11px;
    font-size: 20px;
}
.bannder-content1 {
    max-width: 100%;
}
.dd-s-about .dd-b-container {
    max-width: 100vw;
    margin: 0 auto;
    padding-top: 0vh;
}
.dd-s-about .dd-b-container  h2 {
    font-size: 20px;
    line-height: 1.25em;
    color: #FFFFFF;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
}
.box-all-box {
    max-height: auto;
}
.dd-s-about .dd-b-investor {
    margin-top: 35px;
}
.dd-s-about .dd-dot-menu li a{
  padding-left: 0px;
}
.dd-s-about .dd-mini-menu li a:before{
  display: none;
}
.dd-b-35year {
    height: auto;
}
.dd-s-about .dd-mini-menu{
  padding-top: 0px;
}
.dd-b-invester-slider11 .slick-dots {
    bottom: -40px;
}
.div-year h5 {
    font-size: 14px;
}
.box-year-list >div.div-year {
    width: 14%;
    float: left;
}v
.box-year-list >div.div-year-content {
    width: 86%;
    float: right;
}
.div-box-2.box-business .box-year-list >div.div-year h6 {
    font-size: 11px;
    margin-bottom: 10px;
    line-height: 1.4;
    margin-top: 6px;
}
.div-year-content p {
    line-height: 1.3;
}
.div-year h5 {
    font-weight: 500;

}
.dd-b-invester-slider11 {
    padding-left: 10px;
    padding-right: 10px;
}

.dd-b-invester-slider11 .slick-next{
     display: block;
    z-index: 99;
    background: url(../themes/eden/assets/images/next.svg) center center no-repeat;
    height: 20px;
    width: 20px;
    top: 55%;
    right: -10px;
   -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.dd-b-invester-slider11 .slick-prev {
    display: block;
    z-index: 99;
    background: url(../themes/eden/assets/images/back.svg) center center no-repeat;
    height: 20px;
    width: 20px;
    top: 55%;
    left: -10px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
   
}
.dd-b-invester-slider11 .slick-prev:hover,  .dd-b-invester-slider11 .slick-prev:focus {
   background: url(../themes/eden/assets/images/back.svg) center center no-repeat;
 }  
.dd-b-invester-slider11 .slick-next:hover,    .dd-b-invester-slider11 .slick-next:focus {
    background: url(../themes/eden/assets/images/next.svg) center center no-repeat;
}
.dd-b-invester-slider11 .slick-prev:before,   .dd-b-invester-slider11 .slick-next:before  {
   display: none;
 }
}
@media only screen and (max-width: 380px) {
.box-year-list {
    width: 46%;
}
.div-box-2.box-business .box-year-list div.div-year h6 {
    font-size: 11px;
}
.home-facilities h3 {
    font-size: 15px;
    margin-top: 40px;
}
}