/* global */

header .nav .social li a svg circle{
  stroke: #518EB4;
}
header .nav .social li a svg path{
  fill: #518EB4;
}
.animate-arrow{
  transition: all 2s ease;
  animation: animArrow 2s linear infinite;
  position: relative;
  top: -5px;
}
@keyframes animArrow {
  0 {
    top: -5px;
  }
  50% {
    top: 5px;
  }
  100% {
    top: -5px;
  }
}
/* -- global */

/* hero */
.hero{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
}
.hero .content-hero{
  width: 100%;
  max-width: calc(100vw / 3.147540984);
  border-radius: calc(100vw / 44.65116279);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  padding: calc(100vw / 38.4);
  text-align: center;
}
.hero .content-hero h1{
  font-size: 70px;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}
.hero .content-hero p{
  font-size: calc(100vw / 64);
  line-height: 1.4;
  color: #fff;
  text-align: center;
  margin-bottom: calc(100vw / 48);
}
.hero-bottom{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  text-align: center;
}
.hero-bottom p{
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: .2em
}
@media screen and (max-width: 1440px){
  .hero .content-hero{
    padding: 40px;
    max-width: 500px;
  }
  .hero .content-hero h1{
    font-size: 60px;
  }
  .hero .content-hero p{
    font-size: calc(100vw / 72);
  }
}
@media screen and (max-width: 991px){
  .hero .content-hero p{
    font-size: 24px;
  }
}
@media screen and (max-width: 599px){
  .hero{
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero .content-hero p{
    font-size: 18px;
  }
}
/* -- hero */

/* text-about */
.text-about{
  padding: calc(100vw / 24) calc(100vw / 21.33333333);
  text-align: center;
}
.text-about p{
  max-width: 900px;
  margin: auto;
  font-size: calc(100vw / 87.27272727);
}
@media screen and (max-width: 1440px){
  .text-about p{
    font-size: calc(100vw / 72);
  }
}
@media screen and (max-width: 991px){
  .text-about p{
    max-width: 60%;
    margin: auto;
    font-size: 16px;
  }
}
@media screen and (max-width: 599px){
  .text-about p {
      max-width: 100%;
      margin: auto;
      font-size: 16px;
  }
}
/* -- text-about */

/* living-space */
.living-space{
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  text-align: center;
  padding: calc(100vw / 24) calc(100vw / 21.33333333);
  position: relative;
}
.living-space:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  background: linear-gradient(180deg, #FFFFFF 31.38%, rgba(255, 255, 255, 0) 98.25%);
  z-index: 0;
}
.living-space > div{
  position: relative;
  z-index: 9;
}
.living-space h2{
  font-size: calc(100vw / 24);
  line-height: 1.1;
  max-width: 900px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 9;
}
.living-space p{
  font-size: calc(100vw / 87.27272727);
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 1440px){
  .living-space h2{
    font-size: 60px;
  }
  .living-space p{
    font-size: calc(100vw / 72);
  }
}
@media screen and (max-width: 991px){
  .living-space h2{
    font-size: 40px;
    max-width: 60%;
  }
  .living-space p{
    font-size: 16px;
  }
}
/* -- living-space */

/* life-by-water */
.life-by-water{
  display: flex;
  align-items: center;
  padding: calc(100vw / 24) calc(100vw / 21.33333333);
  background-image: url(../images/sky.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.life-by-water:after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(0deg, #FFFFFF 31.38%, rgba(255, 255, 255, 0) 98.25%);
  z-index: 0;
}
.life-by-water > div{
  width: 50%;
}
.life-by-water .text{
  padding-right: 40px;
  position: relative;
  z-index: 9;
}
.life-by-water .text .title{
  position: relative;
  margin-bottom: calc(100vw / 12);
}
.life-by-water .text .title h2{
  font-size: calc(100vw / 24);
}
.life-by-water .text .title img{
  width: calc(100vw / 8.648648649);
  position: absolute;
  right: 20%;
  top: calc(100vw / 24 * 1.4);
}
.life-by-water .text p{
  font-size: calc(100vw / 87.27272727);
}
.life-by-water .image .swiper-slide img{
  display: block;
  border-radius: 30px;
}
.life-by-water .image .nav-slider-life-by-water{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 1440px){
  .life-by-water .text h2{
    font-size: calc(100vw / 24);
  }
  .life-by-water .text p{
    font-size: calc(100vw / 72);
  }
}
@media screen and (max-width: 991px){
  .life-by-water{
    flex-wrap: wrap;
  }
  .life-by-water > div {
    width: 100%;
  }
  .life-by-water .text .title{
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
  }
  .life-by-water .text .title img{
    position: relative;
    right: auto;
    top: auto;
    width: 120px;
  }
  .life-by-water .text .title h2{
    font-size: 40px;
  }
  .life-by-water .text p{
    font-size: 16px;
    margin-bottom: 30px;
  }
  .life-by-water .text{
    padding-right: 0;
  }
}
@media screen and (max-width: 599px){

}
/* -- life-by-water */

/* lake */
.lake{
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  text-align: center;
  padding: calc(100vw / 24) calc(100vw / 21.33333333);
  position: relative;
  background-repeat: no-repeat;
}
.lake:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(180deg, #FFFFFF 31.38%, rgba(255, 255, 255, 0) 98.25%);
  z-index: 0;
}
.lake .description{
  max-width: 900px;
  text-align: center;
  margin: auto;
  position: relative;
  z-index: 9;
}
.lake .description p{
  font-size: calc(100vw / 87.27272727);
}
@media screen and (max-width: 1440px){
  .lake .description p{
    font-size: calc(100vw / 72);
  }
}
@media screen and (max-width: 991px){
  .lake .description p{
    font-size: 16px;
    max-width: 70%;
    margin: auto;
  }
}
@media screen and (max-width: 599px){
  .lake .description p{
    max-width: 100%;
  }
}
/* -- lake */

/* time-with-friends */
.time-with-friends{
  /* display: flex; */
  /* align-items: center; */
  padding: calc(100vw / 24) calc(100vw / 21.33333333);
  position: relative;
}
.time-with-friends .swiper-slide{
  display: flex;
  align-items: center;
  background: #fff;
}
.time-with-friends .swiper-slide > div{
  width: 50%;
}
.time-with-friends .image img{
  border-radius: 30px;
}
.time-with-friends .nav-slider-time-with-friends{
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  max-width: 50%;
}
.time-with-friends .text{
  padding-left: calc(100vw / 21.33333333);
}
.time-with-friends .text h2{
  font-size: calc(100vw / 24);
}
.time-with-friends .text p{
  font-size: calc(100vw / 87.27272727);
  margin: calc(100vw / 64) 0;
}
@media screen and (max-width: 1440px){
  .time-with-friends .text p{
    font-size: calc(100vw / 72);
  }
}
@media screen and (max-width: 991px){
  .time-with-friends{
    padding-top: 50px;
  }
  .time-with-friends .swiper-slide{
    flex-wrap: wrap;
  }
  .time-with-friends .swiper-slide > div {
    width: 100%;
  }
  .time-with-friends .image{
    order: 2;
  }
  .time-with-friends .text{
    order: 1;
    padding-left: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  .time-with-friends .text h2{
    font-size: 40px;
    margin-bottom: 30px;
  }
  .time-with-friends .text p{
    font-size: 16px;
    max-width: 70%;
    margin: 0 auto 30px;
  }
  .time-with-friends .nav-slider-time-with-friends{
    max-width: 100%;
  }
}
@media screen and (max-width: 991px){
  .time-with-friends .text p{
    max-width: 100%;
  }
}
/* -- time-with-friends */
