/* hero */

/* .hero{
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
}
.hero .text{
	width: 44%;
	padding: 50px calc(100vw / 21.33333333);
}
.hero .image{
	width: 56%;
}
.hero .text h1{
	font-size: 150px;
	font-weight: 500;
	margin-bottom: 20px;
}
.hero .text p{
	font-size: 48px;
	line-height: 70px;
}
.hero-image-tablet{
	display: none;
}
@media screen and (max-width: 1920px){
	.hero .text h1{
		font-size: calc(100vw / 18);
	}
	.hero .text p{
		font-size: calc(100vw / 40);
		line-height: calc(100vw / 27.42857143);
	}
}
@media screen and (max-width: 991px){
	.hero{
		flex-wrap: wrap;
	}
	.hero .image,
	.hero .text{
		width: 100%;
	}
	.hero .text{
		text-align: center;
		padding-top: 120px;
	}
	.hero-image-tablet{
		display: block;
	}
	.hero-image-desktop{
		display: none;
	}
	.hero .text h1{
		font-size: calc(100vw / 11.25);
	}
	.hero .text p{
		font-size: 16px;
	}
}
@media screen and (min-width: 599px) and (max-width: 991px){
	.hero{
		background-image: url(../images/cottage-page-hero-bg-tablet.jpg);
		background-position: center;
		background-size: cover;
	}
	.hero:before{
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 5%;
		z-index: 0;
		background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
	}
}
@media screen and (max-width: 599px){
	.hero .text h1{
		font-size: 60px;
	}
	.hero .text p{
		font-size: 16px;
		line-height: 24px;
		max-width: 90%;
		margin-left: auto;
		margin-right: auto;
	}

} */
/* -- hero */

.hero-bottom-arrow{
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    z-index: 8;
    padding: 40px 20px;
    text-align: center;
    animation-duration: 3s;
    animation-name: slidein;
    animation-iteration-count: infinite;
}
.hero-bottom-arrow svg{
  cursor: pointer;
}
@keyframes slidein {
  0% {
    bottom: -120px;
  }

  50% {
    bottom: -100px;
  }

  100% {
    bottom: -120px;
  }
}

/* hero section */
.hero-section-home{
    position: relative;
	z-index: 11;
}
.hero-section-home:before{
    content: '';
    position: absolute;
    top: 0;
    left: 24%;
    width: 30vw;
    height: 30vw;
    background-image: url(../images/home-hero-tree.png);
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9;
}
.hero-home-slider .swiper-slide{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    opacity: 0;
}
.hero-home-slider .swiper-slide img{
    width: 50%;
}
.nav-hero-slider{
    width: 85px;
    position: absolute;
    left: calc(50% - 85px);
    bottom: 0px;
    height: 100%;
}
.hero-section-home .swiper-pagination{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    bottom: 30px;
    right: 10%;
    left: auto;
    width: 25px;
}
.hero-section-home .text{
    width: calc(50% - 90px);
}
.hero-section-home .text{
    padding: calc(100vw / 48) 0 calc(100vw / 48) calc(100vw / 21.33333333);
}
.hero-section-home .text p.suptitle{
    font-size: calc(100vw / 96);
    font-weight: 800;
    letter-spacing: .15em;
    color: #221D2F;
    margin-bottom: calc(100vw / 80);
    margin-top: 70px;
}
.hero-section-home .text h2{
    font-size: calc(100vw / 16);
    font-weight: 500;
    color: #221D2F;
    line-height: .9;
    margin-bottom: calc(100vw / 30);
}
.hero-section-home .text p.subtitle{
    font-size: calc(100vw / 80);
    font-weight: 500;
    color: #221D2F;
    margin-bottom: calc(100vw / 40);
}
.slider-buttons{
    display: flex;
    align-items: center;
    gap: calc(100vw / 64);
}

@media screen and (max-width: 991px){
    .hero-section-home .text{
        padding: calc(100vw / 48) calc(100vw / 21.33333333);
    }
    .nav-hero-slider{
        display: none;
    }
    .hero-section-home:before{
        background-image: url(../images/home-hero-tree-tablet.png);
        right: 0;
        left: auto;
        top: 50%;
        width: 38vw;
        height: 60vw;
    }
    .hero-home-slider .swiper-slide{
        flex-wrap: wrap;
    }
    .hero-home-slider .swiper-slide img,
    .hero-section-home .text{
        width: 100%;
    }
    .hero-home-slider .swiper-slide img{
        order: 1;
    }
    .hero-section-home .text{
        order: 2;
    }
    .hero-section-home .text p.suptitle{
        font-size: 16px;
        margin-top: 30px;
    }
    .hero-section-home .text h2{
        font-size: calc(100vw / 11.25);
    }
    .hero-section-home .text p.subtitle{
        font-size: 18px;
    }
}
@media screen and (max-width: 767px){
    .hero-section-home .text p.suptitle,
    .hero-section-home .text p.subtitle{
        font-size: 16px;
    }
    .hero-section-home .text{
        text-align: center;
        padding-bottom: 30px;
    }
    .hero-section-home .text h2{
        margin: 20px 0;
    }
    .hero-section-home .text p.subtitle{
        margin-bottom: 20px;
    }
    .slider-buttons{
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .slider-buttons a{
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
@media screen and (max-width: 479px){
    .hero-section-home:before{
        top: 35%;
    }
    .hero-section-home .text h2{
        font-size: 60px;
        text-align: center;
    }
    .hero-section-home .text p.suptitle,
    .hero-section-home .text p.subtitle{
        text-align: center;
        font-size: 14px;
    }
}
/* -- hero section */

/* all cottages */
.all-cottages{
	/* padding-top: 50vh; */
	/* margin-top: -50vh; */
	padding-top: 60px;
	background-image: url(../images/bg_all_cottages.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 0;
	padding-left: calc(100vw / 21.33333333);
	padding-right: calc(100vw / 21.33333333);
	padding-bottom: 200px;
}
.wrapper-all-cottages{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	max-width: 1650px;
	margin: auto;
}
.all-cottages:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50vh;
	background: linear-gradient(180deg, #FFFFFF 28.14%, rgba(255, 255, 255, 0) 105.14%);
	z-index: 0;
}
.all-cottages .item{
	max-width: 490px;
	text-align: center;
	position: relative;
}
.all-cottages .item a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
}
.all-cottages .item img{
	transition: all 0.3s ease-out;
}
.all-cottages .item:hover img{
	transform: scale(1.1);
}
.all-cottages .item .price-uah{
	font-size: 20px;
	line-height: 1;
	color: #244E67;
	padding: 10px 0;
}
.all-cottages .item .price-usd{
	font-size: 16px;
	line-height: 1;
	color: #5F8298;
}
.all-cottages .item .image{
	position: relative;
	margin-bottom: 20px;
}
.all-cottages .item .image:before{
	content: '';
	position: absolute;
	width: calc(100vw / 5.217391304);
	height: calc(100vw / 5.217391304);
	background: rgba(152,200,222,.5);
	border-radius: calc(100vw / 21.81818182);
	z-index: -1;
	left: calc((100% - 100vw / 5.217391304) / 2);
	bottom: -10px;
}
.item-get-consultation{
	display: flex;
	align-items: center;
	justify-content: center;
}
.get-consultation-wrapper{
	width: calc(100vw / 5.217391304);
	height: calc(100vw / 5.217391304);
	background: rgba(152,200,222,.5);
	border-radius: calc(100vw / 21.81818182);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	position: relative;
	transition: all .4s;
}
.get-consultation-wrapper a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9
}
.get-consultation-wrapper p{
	padding: 0 20px;
	font-size: calc(100vw / 80);
	color: #244E67;
	font-weight: 500;
	max-width: 80%;
	line-height: 1.2;
}
.get-consultation-wrapper .icon{
	width: calc(100vw / 17.14285714);
	height: calc(100vw / 17.14285714);
	background: #74A9CA;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s;
}
.get-consultation-wrapper:hover .icon{
	width: calc(100vw / 13.42657343);
	height: calc(100vw / 13.42657343);
	background: #244E67;
}
@media screen and (max-width: 1920px){
	.all-cottages .item{
		width: calc((100% - 60px) / 3);
	}
}
@media screen and (max-width: 991px){
	.all-cottages{
		margin-top: 0;
		padding-top: 60px;
	}
	.all-cottages .item{
		width: calc((100% - 30px) / 2);
	}
	.get-consultation-wrapper {
    width: calc(100vw / 3);
    height: calc(100vw / 3);
    background: rgba(152, 200, 222, .5);
    border-radius: calc(100vw / 21.81818182);
    gap: 10px;
    position: relative;
    transition: all .4s;
	}
	.get-consultation-wrapper .icon{
		width: 80px;
		height: 80px;
	}
	.get-consultation-wrapper:hover .icon{
		width: 80px;
		height: 80px;
	}
	.get-consultation-wrapper p{
		font-size: 17px;
	}
	.all-cottages .item .price-uah{
		font-size: 20px;
	}
	.all-cottages .item .price-usd{
		font-size: 16px;
	}
}
@media screen and (max-width: 599px){
	.all-cottages .item{
		width: 100%;
	}
	.get-consultation-wrapper,
	.all-cottages .item .image:before{
		width: 260px;
		height: 260px;
	}
	.all-cottages .item .image:before{
		left: calc((100% - 260px) / 2);
	}
	.all-cottages{
		padding-bottom: 100px;
	}
}

/* -- all cottages */

/* all-building-advantages */

.all-building-advantages{
	padding: calc(100vw / 25) calc(100vw / 21.33333333) 0;
	position: relative;
}
.slider-building-advantages .swiper-slide{
	width: calc((100% - 90px) / 4);
	height: calc(100vw / 3.2);
	border-radius: calc(100vw / 32);
	background-position: center;
	background-size: cover;
}
.slider-building-advantages .swiper-slide.text{
	background: #F3F3F3;
	padding: 30px 20px;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 15px;
}
.slider-building-advantages .swiper-slide.text h2{
	font-size: calc(100vw / 32);
	text-align: left;
	width: 100%;
	line-height: 1;
}
.slider-building-advantages .swiper-slide.text p{
	font-size: calc(100vw / 73.84615385);
	color: #244E67;
	line-height: 1.4;
}
.slider-building-advantages .swiper-slide.text p span{
	color: #32B3E2;
}
.nav-slider-building-advantages{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 30px 0;
}
.slider-building-advantages{
	padding-top: 100px;
	margin-top: -100px;
}
.slider-building-advantages .swiper-slide:nth-child(4n+2){
	margin-top: 100px;
}
.slider-building-advantages .swiper-slide:nth-child(4n+3){
	margin-top: -50px;
}
.slider-building-advantages .swiper-slide:nth-child(4n+4){
	margin-top: -100px;
}
.all-building-advantages:after{
	content: '';
	position: absolute;
	background: #fff;
	right: 0;
	top: -100px;
	width: calc(50% + 50px);
	height: 100px;
	border-radius: 50px 0 0 0;
	z-index: 0;
}
.all-building-advantages:before{
	content: '';
  position: absolute;
  top: -50px;
  width: 50px;
  height: 50px;
  background-image: url(../images/border-radius.svg);
  background-size: 50px;
  background-position: center;
  z-index: 1;
  right: calc(50% + 50px);
}
@media screen and (max-width: 991px){
	.all-building-advantages{
		padding-right: 0;
	}
	.nav-slider-building-advantages{
		padding-right: calc(100vw / 21.33333333);
	}
	.slider-building-advantages .swiper-slide:nth-child(4n+3){
		margin-top: 0;
	}
	.slider-building-advantages .swiper-slide:nth-child(4n+4),
	.slider-building-advantages .swiper-slide:nth-child(4n+2){
		margin-top: 30px;
	}
	.slider-building-advantages .swiper-slide{
		height: calc(100vw / 2.5);
	}
	.slider-building-advantages .swiper-slide.text h2{
		font-size: 30px;
	}
	.slider-building-advantages .swiper-slide.text p{
		font-size: 15px;
	}
}
@media screen and (max-width: 599px){
	.all-building-advantages:after{
		top: -50px;
		border-radius: 25px 0 0 0;
	}
	.all-building-advantages:before{
		width: 25px;
		height: 25px;
		background-size: 25px;
		top: -25px;
	}
	.all-building-advantages{
		padding-right: calc(100vw / 21.33333333);
	}
	.slider-building-advantages .swiper-slide{
		height: 80vw;
	}
	.slider-building-advantages .swiper-slide:nth-child(4n+4), .slider-building-advantages .swiper-slide:nth-child(4n+2){
		margin-top: -50px;
	}
	.slider-building-advantages{
		margin-top: -70px;
	}
}

/* -- all-building-advantages */

/* pool */
.pool{
	/* min-height: 100vh; */
	position: relative;
	padding-top: 0;
	background-image: url(../images/bg_section_cottages.jpg);
	background-position: center bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
	padding-bottom: calc(100vw / 1.632653061 - 100vw / 4.4);
	overflow: hidden;
}
.pool:before{
	content: '';
	position: absolute;
	bottom: calc(100vw / 1.632653061 - 100vw / 4.4);
	left: 0;
	width: 100%;
	height: calc(100vw / 4.4);
	background: linear-gradient(180deg, #FFFFFF 28.14%, rgba(255, 255, 255, 0) 105.14%);
	z-index: 2;
}
.pool .pool-slider{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 0;
}
.pool .pool-slider .swiper-slide{
	height: 100vh;
	background-position: center;
	background-size: cover;
}
.pool .pool-description{
	position: relative;
	z-index: 9;
	text-align: center;
	max-width: calc(100vw / 2.56);
	margin: auto;
}
.pool .pool-description p{
	font-size: calc(100vw / 87.27272727);
}
.pool .items{
	display: flex;
	width: 100%;
	gap: calc(100vw / 160);
	max-width: calc(100vw / 3);
	margin: calc(100vw / 32) auto 0;
}
.pool .items .item{
	width: calc(100% - 30px);
	text-align: left;
	padding-left: calc(100vw / 160);
}
.pool .items .item p{
	font-size: calc(100vw / 106.6);
}
.pool .pool-tree{
	position: absolute;
	z-index: 8;
	left: 0;
	top: 0px;
	width: calc(100vw / 3.8);
}
@media screen and (max-width: 1300px){
	.pool{
		padding-bottom: calc(100vw / 1.632653061 - 100vw / 4.4);
	}
	.pool:before{
		bottom: calc(100vw / 1.632653061 - 100vw / 4.4);
		height: calc(100vw / 4.4);
	}
}
@media screen and (max-width: 1199px){
	.pool{
		padding-bottom: calc(100vw / 1.632653061 - 100vw / 4.4);
	}
	.pool:before{
		bottom: calc(100vw / 1.632653061 - 100vw / 4.4);
		height: calc(100vw / 4.4);
	}
}
@media screen and (max-width: 991px){
	.pool{
		padding-bottom: calc(100vw / 1.632653061 - 100vw / 4.4);
	}
	.pool:before{
		bottom: calc(100vw / 1.632653061 - 100vw / 4.4);
		height: calc(100vw / 4.4);
	}
	.pool h2{
		font-size: calc(100vw / 15);
		margin-bottom: 20px;
	}
	.pool .pool-description{
		max-width: 600px;
		padding: 0 16px;
	}
	.pool .pool-description p{
		font-size: 18px;
	}
	.pool .pool-tree{
		display: none;
	}
	.pool .items{
		max-width: 100%;
		justify-content: space-between;
	}
	.pool .items .item{
		width: auto;
	}
	.pool .items .item p{
		font-size: 18px;
	}
	/* .pool:before {
    content: '';
    position: absolute;
    top: 30vh;
    left: 0;
    width: 100%;
    height: 10vh;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
	} */
}
@media screen and (max-width: 767px){
	.pool .pool-description p{
		font-size: 16px;
	}
	.pool{
		padding-bottom: calc(100vw / 1.632653061 - 100vw / 10);
	}
	.pool:before{
		bottom: calc(100vw / 1.632653061 - 100vw / 4.4);
		height: calc(100vw / 4.4);
	}
}
@media screen and (max-width: 600px){
	.pool .items{
		justify-content: center;
		flex-wrap: wrap;
		gap: 20px;
	}
	.pool .items .item{
		width: 40%;
		padding-left: 20px;
	}
}
@media screen and (max-width: 479px){
	.pool {
		/* min-height: 120vh; */
	}
	.pool h2{
		font-size: 40px;
	}
	.pool .pool-description p{
		font-size: 14px;
	}
	.pool .items .item p{
		font-size: 14px;
	}
}
/* -- pool */

/* leisure-time */
.leisure-time {
	padding: calc(100vw / 48) calc(100vw / 21.33333333);
}
.leisure-time .title-section{
	margin-bottom: 50px;
	max-width: 60%;
	position: relative;
	margin-top: calc(-100px - 100vw / 48);
	background: #fff;
	padding: calc(100vw / 48) calc(100vw / 21.33333333) 0;
	margin-left: calc(-100vw / 21.33333333);
	border-radius: 0 50px 0 0;
}
.leisure-time .title-section:after{
	content:'';
	position: absolute;
  top: 50px;
  width: 50px;
  height: 50px;
  background-image: url(../images/border-radius.svg);
  background-size: 50px;
  background-position: center;
  z-index: 9;
  right: -50px;
	transform: rotate(90deg);
}
.leisure-time .title-section h2{
	margin-bottom: 20px;
}
.leisure-time .title-section h2 span{
	color: #32B3E2;
}
.leisure-time .title-section .description{
	width: 75%;
}
.leisure-time .title-section p{
	font-size: calc(100vw / 87.27272727);
}

.leisure-time .slider-leisure-time img{
	border-radius: 50px;
}
.leisure-time .swiper-slide{
	width: calc(((100% - 28px) / 2 - 28px) / 2);
	height: calc(100vw / 3.14);
	background-size: cover;
	background-position: center;
	border-radius: 50px;
}
.leisure-time .swiper-slide:first-child,
.leisure-time .swiper-slide:nth-child(3n+1){
	width: calc((100% - 28px) / 2);
}
.nav-slider-leisure-time{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
}
@media screen and (max-width: 991px){
	.leisure-time{
		margin-top: 0;
	}
	.leisure-time .title-section{
		flex-wrap: wrap;
		gap: 24px;
		max-width: 70%;
		margin-bottom: 30px;
		padding-top: 30px;
	}
	.leisure-time .title-section > *,
	.leisure-time .title-section h2,
	.leisure-time .title-section .description{
		width: 100%;
	}
	.leisure-time .title-section h2{
		font-size: calc(100vw / 15);
		text-align: left;
	}
	.leisure-time .title-section .description p{
		font-size: 18px;
		margin-bottom: 15px;
	}
	.leisure-time .items{
		justify-content: space-between;
	}
	.leisure-time .items .item{
		width: auto;
	}
	.leisure-time .title-section p{
		font-size: 18px;
	}
	.leisure-time .swiper-slide{
		border-radius: 30px;
	}
	.leisure-time .swiper-slide,
	.leisure-time .swiper-slide:first-child, .leisure-time .swiper-slide:nth-child(3n+1){
		width: 100%;
		height: calc(100vw / 1.7);
	}
}
@media screen and (max-width: 767px){
	.leisure-time .title-section p,
	.leisure-time .title-section .description p{
		font-size: 16px;
	}
}
@media screen and (max-width: 599px){
	.leisure-time .title-section{
		max-width: 100%;
		text-align: center;
		margin-top: 0;
		margin-left: 0;
    border-radius: 0;
		padding: 30px 0 0;
	}
	.leisure-time .title-section h2{
		text-align: center;
	}
	.leisure-time .title-section:after{
		display: none;
	}
	.leisure-time .items{
		justify-content: center;
	}
	.leisure-time .items .item{
		width: 40%;
		padding-left: 20px;
	}
	.leisure-time .title-section p{
		font-size: 14px;
	}
}
@media screen and (max-width: 479px){
	.leisure-time .title-section h2{
		font-size: 40px;
	}
	.leisure-time .title-section p, .leisure-time .title-section .description p{
		font-size: 14px;
	}
}
/* -- leisure-time */
