<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Chonburi&amp;family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap');

/*
font-family: "Montserrat", sans-serif;
font-family: "Chonburi", serif;
*/

:root{
	--bg-body: #E5E3D6;
	--color-primary: #153D1A;
	--color-secondary: #15681F;
	--text-secondary: #FFFFFF;
	--text-footer: #E5E3D6;
}
::selection{
	background: var(--color-primary);
	color: var(--text-secondary);
}
*{
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}
html, body{
	margin: 0px;	
	padding: 0px;
}
body{
	background: var(--bg-body);
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	color: var(--color-primary);
	font-weight: 400;
	line-height: 100%;
}
a{
	color: var(--color-primary);
	text-decoration: underline;
	transition: all 0.3s ease-in-out 0s;
}
a:hover{
	text-decoration: none;
}
h1,
.heading--h2{
	font-family: "Chonburi", serif;
	font-size: 32px;
	font-weight: 400;
	letter-spacing: 8%;
	margin: 0px 0px 70px;
	text-transform: uppercase;
	line-height: 100%;
}
h2,
.heading--h3{
	font-size: 24px;
	font-weight: 500;
	margin: 0px 0px 30px;
	text-transform: uppercase;
	line-height: 100%;
}
.heading--h1{
	font-family: "Chonburi", serif;
	font-size: 90px;
	text-transform: uppercase;
	line-height: 100%;
	margin: 0px 0px 20px;
}
h3{
	font-size: 24px;
	font-weight: 500;
	line-height: 100%;
	text-transform: uppercase;
	margin: 0px 0px 30px;
}
.heading--content{
	margin-bottom: 35px;
}
.heading--left{
	text-align: left;
}
.heading--center{
	text-align: center;
}
.heading--right{
	text-align: right;
}
p{
	margin: 0px 0px 40px;
}
img{
	display: block;
	max-width: 100%;
}
.container{
	position: relative;
	margin: 0 auto;
	max-width: 1296px;
	width: 100%;
}
.flex-wrap{
	display: flex;
	justify-content: space-between;
}
.btn{
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 100%;
	color: var(--text-secondary);
	background: var(--color-secondary);
	padding: 16px 78px;
	border: 2px solid var(--text-secondary);
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease-in-out 0s;
}
.btn:hover{
	background: var(--color-primary);
}
.only--mobile{
	display: none;
}
.content--page{
	margin-top: 120px;
}
.strong--up{
	font-weight: 500;
	text-transform: uppercase;
}
.slider--top{
	margin-top: -70px;
}

/*header*/
.header{
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	padding: 23px 0px;
	background: var(--color-primary);
	z-index: 100;
}
.header--main{
	background: transparent;
}
.header--fixed{
	background: var(--color-primary);
}
.logo{
	width: 50px;
	height: 50px;
}
.nav{
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.nav__item{
	display: block;
	font-size: 14px;
	color: var(--text-secondary);
	text-decoration: none;
	padding: 4px 23px;
	border: 1px solid transparent;
	border-radius: 4px;
}
.nav__item:hover{
	border: 1px solid var(--text-secondary);
}
.nav__item.only--mobile{
	display: none;
}

/*main*/
section{
	position: relative;
	margin-bottom: 110px;
}
.hero{
	position: relative;
	width: 100%;
	height: 860px;
}
.hero__img{
	position: relative;
	width: 100%;
	height: 100%;
}
.hero__img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__text{
	position: absolute;
	top: 0px;
	left: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding-top: 80px;
	font-size: 40px;
	line-height: 100%;
	font-weight: 500;
	text-align: center;
	color: var(--text-secondary);
}
.hero__text--small{
	font-size: 36px;
}
.hero__text p{
	margin-bottom: 60px;
}
.btn--hero{
	padding: 16px 149px;
}

.history .flex-wrap{
	flex-direction: row-reverse;
}
.history__text{
	max-width: 526px;
	width: 45%;
	padding-top: 21px;
}
.history__text p{
	margin-bottom: 60px;
}
.history__text p:nth-child(2n){
	padding-left: 45px;
}
.history__img{
	max-width: 606px;
	width: 50%;
}

.objects__list{
	display: flex;
	align-items: center;
}
.objects__item{
	width: 372px;
}
.objects__item:nth-child(2){
	width: 416px;
}
.objects__img{
	margin-bottom: 30px;
	border-radius: 8px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}
.objects__name{
	font-size: 22px;
	font-weight: 500;
	line-height: 100%;
	text-transform: uppercase;
	margin-bottom: 25px;
}
.objects__text{
	font-size: 22px;
	line-height: 100%;
}

.benefits__list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
}
.benefits__item{
	max-width: 306px;
	width: 100%;
}
.benefits__item:nth-child(3n){
	grid-row: span 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.benefits__item-title{
	position: relative;
	display: block;
	padding-left: 45px;
	font-weight: 500;
	margin-bottom: 20px;
}
.benefits__item-title:before{
	position: absolute;
	top: 50%;
	left: 0px;
	margin-top: -14px;
	display: block;
	width: 28px;
	height: 28px;
	background-color: var(--color-primary);
	background-image: url(../media/icon_check.png);
	background-size: 50%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	border-radius: 50%;
	content: "";
}

.reviews__item{
	position: relative;
	padding: 58px 70px 58px 200px;
	max-width: 680px;
	width: 100%;
	border: 1px solid var(--color-primary);
	border-radius: 8px;
	margin-left: 45px;
	margin-bottom: 3px;
}
.reviews__item:before{
	display: block;
	width: 45px;
	height: 100%;
	content: "";
}
.reviews__photo{
	position: absolute;
	left: -46px;
	top: 58px;
	width: 210px;
	height: 224px;
	border-radius: 8px;
	overflow: hidden;
}
.reviews__photo img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.reviews__wrap{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 224px;
}
.reviews__text{
	margin-bottom: 30px;
}
.reviews__rating{
	width: 151px;
	height: 22px;
	background: url(../media/icon_stars.png) no-repeat;
	background-size: 100%;
	margin-bottom: 30px;
}
.reviews__name{
	font-weight: 500;
	text-transform: uppercase;
	text-align: right;
}

.subscription__list{
	display: flex;
	justify-content: space-between;
}
.subscription__item{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 380px;
	width: 32%;
}
.subscription__item-text{
	margin-bottom: 27px;
}
.btn--subscription{
	width: 100%;
	padding: 16px 25px;
}

/*footer*/
.footer{
	background: #000000;
	color: var(--text-footer);
	padding: 27px 0px;
}
.footer__top{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
}
.footer__contacts{
	max-width: 526px;
	width: 55%;
	font-size: 22px;
	color: var(--text-footer);
}
.footer__contacts a{
	color: var(--text-footer);
}
.footer__nav{
	display: flex;
	flex-wrap: wrap;
	max-width: 432px;
	width: 40%;
}
.footer__nav-item{
	color: var(--text-footer);
	text-decoration: none;
	font-size: 14px;
	line-height: 100%;
	margin: 0px 25px 25px;
}
.footer__nav-item:last-child{
	margin-bottom: 0px;
}
.footer__bottom{
	text-align: center;
	font-size: 16px;
	line-height: 100%;
}

/*slider*/
.arrows-slider{
	display: flex;
	align-items: flex-end;
	height: 30px;
	margin-bottom: 45px;
}
.arrows-slider--objects{
	justify-content: flex-end;
}
.arrows-slider__arrow{
	width: 21px;
	height: 20px;
	cursor: pointer;
	transition: all 0.3s ease-in-out 0s;
	overflow: visible;
}
.arrows-slider__arrow--prev{
	background: url(/media/arrow_slider_prev.png) no-repeat;
	background-size: 100%;
	margin-right: 65px;
}
.arrows-slider__arrow--next{
	background: url(/media/arrow_slider_next.png) no-repeat;
	background-size: 100%;
}
.arrows-slider__arrow:hover{
	width: 33px;
	height: 30px;
}

/*cookies*/
.cookie-banner{
	position: fixed;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background: #FEFEFE;
	padding: 35px 70px;
	z-index: 1000;
}
.cookie-banner__container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.cookie-banner__text{
	width: 50%;
	color: #000;
}
.cookie-banner__btns{
	display: flex;
}
.cookie-banner__btn{
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	color: #000;
	line-height: 100%;
	text-transform: uppercase;
	border: 1px solid #000;
	background: transparent;
	margin: 0px 8px;
	padding: 16px 15px;
	border-radius: 36px;
	cursor: pointer;
}
.btn--accept{
	background: #000;
	color: var(--text-secondary);
}
@media (max-width:1320px){
	.container{
		padding: 0px 20px;
	}
	.nav__item{
		padding: 4px 10px;
	}
}
@media (max-width:992px){
	body{
		font-size: 18px;
	}
	h1,
	.heading--h2{
		font-size: 22px;
		margin-bottom: 30px;
	}
	.heading--h1{
		font-size: 50px;
	}
	h2,
	.heading--h3{
		font-size: 20px;
		margin: 0px 0px 20px;
	}
	h3{
		font-size: 20px;
		margin-bottom: 20px;
	}

	.only--mobile{
		display: block;
	}
	.only--desktop{
		display: none;
	}

	.header{
		padding: 13px 0px;
	}
	.header--active{
		background: var(--color-primary);
	}
	.container--header{
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}
	.slider--top{
		margin-top: 0px;
	}

	.btn-nav{
		display: flex;
		align-items: center;
		width: 18px;
		height: 12px;
		position: relative;
		cursor: pointer;
		z-index: 2;
		background: none;
		border: none;
		padding: 0px;
	}
	.btn-nav__line{
		position: relative;
		display: block;
		width: 100%;
		height: 2px;
		background: var(--text-secondary);

	}
	.btn-nav__line:before,
	.btn-nav__line:after{
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		background: var(--text-secondary);
		content: "";
		transition-duration: 0.3s, 0.3s;
		transition-delay: 0.3s, 0;
	}
	.btn-nav__line:before{
		top: -5px;
	}
	.btn-nav__line:after{
		bottom: -5px;
	}
	.btn-nav--active .btn-nav__line{
		background-color: rgba(0, 0, 0, 0);
	}
	.btn-nav--active .btn-nav__line:before{
		transform: translateY(5px) rotate(45deg);
	}
	.btn-nav--active .btn-nav__line:after{
		transform: translateY(-5px) rotate(-45deg);
	}
	.nav{
		display: none;
		width: 100%;
		flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
		padding-bottom: 20px;
	}
	.nav.nav--open{
		display: block;
		margin-top: 20px;
	}
	.nav__item{
		margin-bottom: 20px;
	}
	.nav__item:last-child{
		margin-bottom: 0px;
	}
	.nav__item.only--mobile{
		display: block;
	}
	
	section{
		margin-bottom: 55px;
	}
	.hero{
		height: 660px;
	}
	.hero__text{
		font-size: 20px;
	}
	.hero__text--small{
		font-size: 18px;
	}
	.hero__text p{
		margin-bottom: 40px;
	}

	.history .flex-wrap{
		flex-direction: column;
	}
	.history__text{
		max-width: 100%;
		width: 100%;
		padding: 0px;
	}
	.history__text p{
		margin-bottom: 20px;
	}
	.history__text p:nth-child(2n){
		padding: 0px;
	}
	.history__img{
		max-width: 100%;
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.benefits__list{
		display: flex;
		gap: 0px;
		align-items: center;
	}
	.benefits__list.only--desktop{
		display: none;
	}
	.benefits__col{
		width: 255px;
		display: flex;
		flex-direction: column;
	}
	.benefits__item{
		min-height: 130px;
		margin-bottom: 50px;
	}
	.benefits__item:last-child{
		margin-bottom: 0px;
	}
	.benefits__item-title{
		display: block;
		align-items: center;
		min-height: 28px;
	}
	

	.objects__list{
		align-items: flex-start;
	}
	.objects__item,
	.objects__item:nth-child(2){
		width: 345px;
	}
	.objects__img{
		height: 340px;
	}
	.objects__img img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.objects__name{
		font-size: 18px;
	}
	.objects__text{
		font-size: 18px;
	}

	.reviews__item{
		padding: 105px 20px 20px 20px;
		margin-left: 0px;
		margin-top: 90px;
	}
	.reviews__photo{
		left: 50%;
		top: -88px;
		margin-left: -82px;
		width: 165px;
		height: 176px;
	}
	.reviews__wrap{
		min-height: auto;
	}

	.subscription__item{
		max-width: 100%;
		width: 100%;
	}

	.footer__top{
		flex-direction: column-reverse;
		justify-content: center;
		align-items: flex-start;
		margin-bottom: 0px;
	}
	.footer__contacts{
		max-width: 100%;
		width: 100%;
		text-align: center;
		font-size: 16px;
		padding-bottom: 30px;
		border-bottom: 1px solid var(--text-footer);
		margin-bottom: 30px;
	}
	.footer__nav{
		max-width: 100%;
		width: 100%;
		text-align: center;
		flex-direction: column;
		padding-bottom: 30px;
		border-bottom: 1px solid var(--text-footer);
		margin-bottom: 30px;
	}
	.footer__nav-item{
		margin: 0px 0px 15px;
	}
	.footer__bottom{
		font-size: 14px;
	}
	.swiper-pagination{
		position: relative;
		margin: 20px 0px 0px;
	}
	.swiper-pagination-bullet{
		width: 20px;
		height: 3px;
		background: var(--text-secondary);
		border-radius: 1px;
	}
	.swiper-pagination-bullet{
		background: var(--color-primary);
	}

	.cookie-banner{
		padding: 25px 15px 30px;
		text-align: center
		;
	}
	.cookie-banner__container{
		flex-direction: column;
	}
	.cookie-banner__text{
		margin-bottom: 15px;
	}
	.cookie-banner__btns{
		flex-direction: column;
	}
	.cookie-banner__btn{
		margin: 8px 0px;
	}
}
@media (max-width:768px){
	html{
		min-width: 350px;
	}
	.hero{
		height: 467px;
	}
	.btn--hero{
		padding: 16px 35px;
	}
}</pre></body></html>