/*
Theme Name:     Yurt
Template:       understrap
*/
@font-face {
	font-family: 'Geologica';
	src: url('fonts/Geologica-Variable.woff2') format('woff2-variations'),
		url('fonts/Geologica-Variable.woff2') format('woff2');
}
:root {
	--green-base: #1A4D1E;
	--green-light: #26732D;
	--green-active: #133916;
	--black-base: #333;
	--black-light: #333;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;	
}
@keyframes heroshow {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
html {
	scrollbar-width: thin;
	scrollbar-gutter: stable;
	scroll-behavior: smooth;
	font-size: 20px;
}
body {
	font-family: 'Geologica', sans-serif;
	font-weight: 300;
	font-stretch: 100%;
	color: var(--black-base);
	line-height: 1.5;
	width: 100%;
	padding-right: 0 !important;
}
h1,
.h1 {
	font-size: 4rem;
	line-height: 1.25;
}
h1.entry-title {
	font-size: 2.5rem;
	margin: 2.5rem 0;
}
h2,
.h2 {
	font-size: 2rem;
	line-height: 1.25;
	text-transform: uppercase;
	font-weight: 300;
	margin: 3rem 0 1.5rem;
	padding: 0;
}
h3, .h3 {
	font-weight: 700;	
	font-size: 1.5rem;
	line-height: 1.25;
	margin-bottom: 1.5rem;
}
h4,
.h4 {
	font-size: 1rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	line-height: 1.25;
}
a {
	color: #888;
	transition: all ease-in-out 0.15s;
}
a:hover {
	color: #333;
}
p:last-child {
	margin-bottom: 0;
}
strong {
	font-weight: 700;
}
@media (max-width: 1024px) {
	html {
		font-size: 16px;
	}
}
@media (max-width: 600px) {
	h1.entry-title {
		font-size: 1.5rem;
		margin: 1rem 0;
	}
	h3, .h3 {
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	h4, .h4 {
		margin-bottom: 0.75rem;
	}
	p {
		margin-bottom: 0.75rem;
	}
}

/* grid */
.container {
	width: calc(100% - 2rem);
	max-width: 72rem;
	padding-left: 1rem;
	padding-right: 1rem;
}
@media (max-width: 1024px) {
	.container {
		width: 100%;
		max-width: none;
	}
}

/* sections */
.sect-wrap {
	display: flex;
}
.sect-side {
	flex: none;
	width: 22rem;
	margin-right: 2rem;
}
.sect-main {
	flex: 1;
}
.sect-sticky {
	position: sticky;
	top: 2rem;
}
.sect-title {
	margin-top: 0;
}
.sect-descript {
	font-size: 0.8rem;
}
.ftop {
	padding-top: 4rem;
}
.fbot {
	padding-bottom: 4rem;
}
.htop {
	padding-top: 2rem;
}
.hbot {
	padding-bottom: 2rem;
}
@media (max-width: 1280px) {
	.sect-wrap {
		flex-direction: column;
	}
	.sect-side {
		width: 100%;
		margin: 0;
	}
	.sect-sticky {
		position: static;		
	}
	.sect-side p:last-child {
		margin-bottom: 1rem;
	}
}
@media (max-width: 1024px) {
	.ftop {
		padding-top: 2.5rem;
	}
	.fbot {
		padding-bottom: 2.5rem;
	}
	.htop {
		padding-top: 1.25rem;
	}
	.hbot {
		padding-bottom: 1.25rem;
	}
	.sect-descript {
		font-size: 1rem;
	}
}
@media (max-width: 600px) {
	.sect-title {
		font-size: 1.5rem;	
		margin-bottom: 1rem;	
	}	
	.ftop {
		padding-top: 1.5rem;
	}
	.fbot {
		padding-bottom: 1.5rem;
	}	
	.htop {
		padding-top: 0.75rem;
	}
	.hbot {
		padding-bottom: 0.75rem;
	}	
}

/* buttons */
.btn {
	line-height: 1.25;
	padding: 0.75rem 2rem;
	border-radius: 0;
	transition: all ease-in-out 0.15s;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
}
.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}
.btn svg {
	transition: all ease-in-out 0.15s;
	display: block;
	margin-right: 0.75rem;
}
.btn-sm svg {
	margin-right: 0.5rem;
}
.btn-block {
	display: block;
	width: 100%;
}
.btn-block + .btn-block {
	margin-top: 0.5rem;
}
.btn-default {
	background: none;
	border-color: var(--black-base);
	color: var(--black-base);
	box-shadow: none;	
}
.btn-default:focus {
	background: none;
	border-color: var(--black-base);
	box-shadow: none;
}
.btn-default:hover {
	background-color: var(--black-base);
	border-color: var(--black-base);
	color: #fff;
	box-shadow: none;
}
.btn-default:active {
	background: var(--black-light) !important;
	border-color: var(--black-light) !important;
	color: #fff !important;
	box-shadow: none;
}
.btn-outline {
	background: none;
	border-color: var(--black-base);
	color: var(--black-base);
	box-shadow: none;	
}
.btn-outline:focus {
	background: none;
	border-color: var(--black-base);
	box-shadow: none;
}
.btn-outline:hover {
	background-color: var(--black-base);
	border-color: var(--black-base);
	color: #fff;
	box-shadow: none;
}
.btn-outline:active {
	background: var(--black-light) !important;
	border-color: var(--black-light) !important;
	color: #fff !important;
	box-shadow: none;
}
.yurt-arrow {
	padding: 0.75rem;
	border: 2px solid #fff;
	border-radius: 50%;
	transition: all ease-in-out 0.15s;
}
.yurt-arrow svg {
	fill: #fff;
	transition: all ease-in-out 0.15s;
	display: block;
}
.yurt-arrow:hover {
	background-color: #fff;
}
.yurt-arrow:hover svg {
	fill: var(--black-base);
}
@media (max-width: 1024px) {
	.btn-outline, .btn-outline:focus {
		background-color: var(--black-base);		
		color: #fff;
	}
}
@media (max-width: 600px) {
	.btn {
		padding: 1rem 1.5rem;		
	}
	.btn-sm {
		padding: 0.25rem 0.75rem;
		font-size: 0.8rem;
	}
	.btn-block {
		width: 100%;
	}
}

/* header */
#site-header {
  width: 100%;
  position: absolute;
  z-index: 3;
}
#main-nav {
	padding: 0.5rem 2rem;
}
.header-wrap {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
}
.site-logo {
	display: flex;
	align-items: center;
}
.site-logo .img-fluid {
	height: 3rem;
	width: auto;
}
.navbar-brand {
	padding: 0;
	margin: 0;
}
.hc-tel {
	font-size: 1.5rem;
	text-decoration: none;
	color: var(--black-base);
}
.header-mob {
	display: none;
	padding: 0.5rem 1rem;
	background-color: #fff;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 20;	
	box-shadow: 0 0 10px rgba(0,0,0,0.25);
}
.header-mob-ctrls {
	display: flex;
	align-items: center;
}
.header-mob-tel {
	padding: 1rem;
  margin: -0.5rem -1rem -0.5rem 0;
}
.header-mob-tel svg {
	fill: var(--black-base);
	width: 1.25rem;
  height: auto;
	display: block;
}
@media(max-width:1024px) {
	.header-wrap {
		display: none;
	}
	#main-nav {
		padding: 0;
	}
	.header-mob {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.site-logo .img-fluid {
		height: 2.25rem;
	}
}

/* hero */
#hero {
	height: 100vh;
	padding: 4rem 2rem 2rem;
	display: flex;
}
.hero-wrap {
	overflow: hidden;	
	position: relative;
	flex: 1;	
	border-bottom-right-radius: 4rem;
}
.hero-wrap.with-button {
	border-bottom-right-radius: 0;
}
#hero-slider {
	width: 100%;
  height: 100%;
	position: relative;
	animation-delay: 0.5s;
	opacity: 0;
	animation: heroshow 2.5s forwards;
}
.hero-title {
	position: absolute;
  left: 2rem;
  bottom: 2rem;
	right: 14rem;
  text-transform: uppercase;
  font-size: 4rem;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 0 40px rgba(0,0,0,0.5);
}
.hero-title span {
	display: block;
	font-weight: 900;
}
.hero-bg {
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	position: absolute;
}
.hero-price {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 1rem 0 0 1rem;
	background-color: #fff;
	border-top-left-radius: 3rem;
}
.hero-price .btn {
	border-radius: 2rem 0 2rem;
}
@media(max-width:1440px) {
	.hero-title {
		font-size: 2.5rem;	
	}
}
@media(max-width:1024px) {
	#hero {
		padding: 4.25rem 1rem 1rem;
		height: auto;
	}	
	.hero-bg {
		position: relative;
		aspect-ratio: 1 / 1;
	}		
	.hero-title {
		right: 8rem;
	}
	.hero-price {
		padding: 0.5rem 0 0 0.5rem;
		border-top-left-radius: 2.5rem;
	}
	.hero-price .btn {
		width: 8rem;
	}
}
@media(max-width:600px) {
	#hero-slider {
		height: auto;
	}
	.hero-title {
		font-size: 1.75rem;	
		left: 1rem;		
		right: 1rem;	
		bottom: 1rem;
	}	
	.hero-wrap.with-button .hero-title {
		bottom: 5.5rem;	
	}
	.hero-price {
		position: static;
		padding: 1rem 0 0;
	}
	.hero-price .btn {
		width: 100%;
		padding: 1rem;
		border-radius: 0;
	}
}

/* abs-bg */
.abs-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	display: block;
}
.abs-fade {
	position: relative;
}
.abs-fade:after {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: all ease-in-out 0.15s;
}
.abs-fade-grad:after {
	background-image: linear-gradient(to bottom, rgba(17, 17, 17, 0.1) 50%, rgba(17, 17, 17, 0.7) 100%);
}
.abs-fade-70:after {
	background: #111;
	opacity: 0.7;
}
.abs-fade-30:after {
	opacity: 0.3;
	background: #111;
}
.abs-fade-50:after {
	opacity: 0.5;
	background: #111;
}
.abs-fade-gr:after {
	background: none;
	background-image: linear-gradient(to bottom, rgba(28, 23, 25, 0.2), #1c1719);
}

/* wall */
.wall {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 2rem;
}
.wall-item {	
	width: calc(50% - 1rem);
}
.wall-lg .wall-item {	
	width: 100%;
}
@media (max-width: 1280px) {
	.wall {
		gap: 1rem;
	}
	.wall-item {
		width: calc((100% - 2rem) / 3);
	}
	.wall-lg .wall-item {	
		width: calc(50% - 1rem);
	}
}
@media (max-width: 1024px) {	
	.wall-item {
		width: calc(50% - 0.5rem);
	}
	.wall-lg .wall-item {	
		width: 100%;
	}
}
@media (max-width: 600px) {	
	.wall-item {
		width: 100%;		
	}
}

/* card */
.imgcard {
	display: block;
	position: relative;
	border-bottom-right-radius: 2rem;
	overflow: hidden;
}
.imgcard-img {
	padding-top: 100%;
}
.imgcard-lg .imgcard-img {
	padding-top: 50%;
}
.imgcard-title {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	color: var(--black-base);
	padding: 0.75rem 1rem 0 0;
	background-color: #fff;
	border-top-right-radius: 1.5rem;
	transition: all ease-in-out 0.15s;
	max-width: 75%;
	line-height: 1.25;
}
.imgcard-title > div {
	display: inline-flex;
	flex-direction: column;
}
.imgcard-title > div > span:last-child {
	font-weight: 900;
}
.imgcard-lg .imgcard-title {
	font-size: 1.5rem;
}
.imgcard-arrow {
	position: absolute;
	bottom: 0.5rem;
	right: 0.5rem;
	z-index: 1;
}
.imgcard:hover .imgcard-arrow {
	background-color: #fff;
}
.imgcard:hover .imgcard-arrow svg {
	fill: var(--black-base);
}
@media (max-width: 600px) {
	.imgcard-lg .imgcard-img {
		padding-top: 100%;
	}
	.imgcard-title {
		border-top-right-radius: 1rem;
		padding-top: 0.5rem;
	}
	.imgcard-lg .imgcard-title {
		font-size: 1rem;
		font-weight: 700;
	}
}

/* accordion */
.accordion-item {
	border: 0;
	border-bottom: 1px solid #ddd;
	color: var(--black-base);
	background-color: #fff;
}
.accordion-item:first-of-type {
	border-radius: 0;
	border-top: 1px solid #ddd;
}
.accordion-item:last-of-type {
	border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion-body {
	padding: 0 0 1rem;
	font-size: 0.8rem;
}
.accordion-button {
	padding: 1rem 0;
	font-weight: 700;
	background-color: #fff;
}
.accordion-item:first-of-type .accordion-button {
	border-radius: 0;
}
.accordion-button:not(.collapsed) {
	color: var(--black-base);
	background: none;
	box-shadow: none;
}
.accordion-button:focus {
	border: 0;
	box-shadow: none;
}
.accordion-button:not(.collapsed):after {
	background-image: var(--bs-accordion-btn-icon);
}
@media (max-width: 1280px) {
	.accordion {
		margin-top: 2rem;
	}
}
@media (max-width: 1024px) {
	.accordion-body {
		font-size: 1rem;
	}
}
@media (max-width: 600px) {
	.accordion {				
		margin-top: 1.5rem;
	}		
}

/* price list */
.price-list-item {
	font-size: 0.8rem;	
	line-height: 1.25;
	padding: 0.75rem;
	display: flex;
	gap: 1rem;
	background-color: #f3f5f7;
}
.price-list-item:not(:last-child) {
	border-bottom: 1px solid #fff;
}
.price-item-title {
	flex: 2;
}
.price-item-value {	
	flex: 1;
	text-align: right;
	font-weight: 700;
}

/* info-list */
.info-list {
	display: flex;
	gap: 1rem;
}
.info-item {
	flex: 1;	
}
.info-label {
	text-transform: uppercase;
	color: #666;
	margin-bottom: 0.5rem;
}
.info-text {
	font-weight: 900;
	font-size: 1.5rem;
	line-height: 1.25;
}
.info-text-lg {
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: 2rem;
}
@media (max-width: 1024px) {
	.info-label {
		font-size: 0.8rem;
	}	
}
@media (max-width: 600px) {
	.info-list {
		flex-wrap: wrap;
	}
	.info-item {
		flex: none;
		width: calc(50% - 0.5rem);
	}
	.info-label {		
		margin: 0;
	}	
	.info-text-lg {
		font-size: 2rem;		
		margin-bottom: 1.5rem;
	}
}

/* items-list */
.items-list {
	display: flex;
	flex-wrap: wrap;
	margin: -1rem;
}
.il-item {
	width: 50%;
	flex: none;
	padding: 1rem 1rem 1rem 2.5rem;
	margin-bottom: 1rem;
	position: relative;
	font-size: 0.8rem;
}
.il-item:before {
	content: '';
	position: absolute;
	left: 1rem;
	top: 1.5rem;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: #ccc;
}

/* detail list */
.detail-list {
	padding: 0;
}
.dl-item {
	list-style: none;
	padding-left: 2rem;
	position: relative;
	position: relative;
	font-size: 0.8rem;
}
.dl-item:not(:last-child) {
	margin-bottom: 3rem;
}
.dl-key {
	position: absolute;
	left: 0;
	top: 0;
	color: #888;
	font-size: 1rem;
	line-height: 1.25;
}
@media (max-width: 1024px) {
	.dl-item {
		font-size: 1rem;
	}
}
@media (max-width: 600px) {
	.dl-item:not(:last-child) {
		margin-bottom: 1rem;
	}
}

/* photo slider */
.photo-slider {
	position: relative;
}
.photo-slide {
	position: relative;
	padding-top: 100%;
}
.photo-slide:hover {
	cursor: pointer;
}
.photo-slide:hover:after {
	opacity: 0.1;
}
.slider-btn-prev,
.slider-btn-next {
	position: absolute;
	bottom: 50%;
	z-index: 1;
	transform: translateY(50%);
}
.slider-btn-prev {
	left: 1rem;
}
.slider-btn-next {
	right: 1rem;
}
.slider-btn-prev svg,
.slider-btn-next svg {
	fill: #fff;
}
.slider-btn-prev:hover,
.slider-btn-next:hover {
	opacity: 1;
}
@media (max-width: 1024px) {
	.slider-btn-prev,
	.slider-btn-next {
		display: none;
	}
}

/* banner */
.banner-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  background: var(--black-base);
  border-bottom-right-radius: 4rem;
}
.banner-section.rightside .banner-wrap {
	flex-direction: row-reverse;
}
.banner-content {
  padding: 2rem;
  background: #fff;  
  position: relative;
  z-index: 2;
  width: 25rem;
	margin-top: 4rem;
	margin-bottom: 4rem;
}
.banner-section.leftside .banner-content {
	margin-left: 4rem;
}
.banner-section.rightside .banner-content {
	margin-right: 4rem;
}
.banner-content p {
	font-size: 0.8rem;
	line-height: 1.25;
}
.banner-img {
  flex: 1;  
}
.banner-section.leftside .banner-img {
	margin-left: -4rem;
}
.banner-section.rightside .banner-img {
	margin-right: -4rem;
}
@media (max-width: 1024px) {
	.banner-content {
		margin-top: 2.5rem;
		margin-bottom: 2.5rem;
		width: 20rem;
		padding: 1.5rem;
	}
	.banner-section.leftside .banner-content {
		margin-left: 2.5rem;
	}
	.banner-section.rightside .banner-content {
		margin-right: 2.5rem;
	}
}
@media (max-width: 600px) {
	.banner-wrap {
		flex-direction: column-reverse;
		border-bottom-right-radius: 0;
	}
	.banner-content {
		margin: 0 1.25rem 1.25rem 1.25rem!important;
		padding: 1.25rem;
		width: auto;
	}
	.banner-img {
		padding-top: 100%;
		margin: 0 0 -1.25rem 0!important;

	}
}

/* modal */
.modal-content {
	border-radius: 0;
	overflow: hidden;
	border: 0;
}
.modal-wrap {
	flex: 1;
}
.modal-header {
	border: 0;
	padding: 1.5rem 1.5rem 0.5rem;
	position: relative;
}
.modal-body {
	padding: 1.5rem;
	background-color: #fff;
	color: var(--black-base);
}
.modal-title {
	line-height: 1.25;
	font-size: 1.5rem;
	color: var(--black-base);
	font-weight: 700;
}
.modal-header .close {
	position: absolute;
	opacity: 1;
	top: 0.8rem;
	right: 0.5rem;
	padding: 1rem;
	opacity: 0.75;
	transition: all ease-in-out 0.25s;
	border: 0 !important;
}
.modal-header .close svg {
	stroke: #888;
	width: 1.25rem;
	height: 1.25rem;
	display: block;
	margin-right: 0;
}
.modal-header .close:hover {
	opacity: 1;
}
.modal-header .close:active {
	border: 0!important;
}
.modal-subtitle {
	font-size: 0.8rem;
}
.modal-backdrop {
	background-color: rgba(45, 70, 83, 0.5);
	backdrop-filter: blur(15px);
	opacity: 1 !important;
}
.mod-form {
	display: none;
}
.modal-fullscreen-wrap {
	display: flex;
	height: 100%;
}
.mf-image {
	flex: 1;
}
.mf-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mf-summary {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 0 4rem;
}
.mf-summary .modal-header {
	padding: 2.5rem 0;
	background-color: #fff;
}
.mf-summary .modal-body {
	padding: 0 1.25rem 0 0;
	scrollbar-width: thin;
	scrollbar-gutter: stable;
	scroll-behavior: smooth;
}
.mf-summary .modal-footer {
	border: 0;
	display: flex;
	justify-content: flex-start;
	padding: 2.5rem 0;
}
.mf-content {
	margin-bottom: 2.5rem;
	font-size: 0.8rem;
}
.mf-price__item {
	display: flex;
	padding: 0.625rem;
	font-size: 0.875rem;
	border: 1px solid #d6ebf5;
	background-color: #fff;
}
.mf-price__item + .mf-price__item {
	margin-top: -1px;
}
.mf-price__label {
	flex: 1;
	padding-right: 1rem;
}
.mf-price__val {
	font-weight: 700;
	text-align: right;
}
.mf-summary .modal-header .close {
	top: 1.5rem;
	right: -2.5rem;
}
.mf-summary .modal-footer .btn {
	margin: 0;
}
.mf-summary .modal-footer .btn + .btn {
	margin-left: 0.5rem;
}
@media (max-width: 1440px) {
	.mf-summary {
		padding: 0 2.5rem;
	}
}
@media (max-width: 1024px) {
	.mf-summary {
		padding: 0 1.25rem;
	}
	.mf-image {
		display: none;
	}
	.mf-summary .modal-header {
		padding: 1.25rem 2.5rem 1.25rem 0;
	}
	.mf-summary .modal-header .close {
		right: -1.25rem;
		top: 0;
	}
	.mf-content {
		margin-bottom: 1.25rem;
	}
	.mf-summary .modal-footer {
		padding: 1.25rem 0;
	}
	.modal-subtitle {
		font-size: 1rem;
	}
}
@media (max-width: 600px) {
	.modal-title {
		font-size: 1.25rem;
	}
	.modal-header {
		padding: 1.25rem 1.25rem 0.25rem;
	}
	.modal-header .close {
		top: 0.25rem;
		right: 0;
	}
	.mf-content {
		font-size: 0.875rem;
	}
	.modal-body {
		padding: 1.25rem;
	}
	.mf-summary .modal-body {
		padding-right: 0.625rem;
	}
}
@media (max-width: 500px) {
	.mf-summary .modal-footer {
		flex-direction: column;
	}
	.mf-summary .modal-footer .btn {
		width: 100%;
	}
	.mf-summary .modal-footer .btn + .btn {
		margin: 0.5rem 0 0;
	}
}

/* form */
.form-item {
	margin-bottom: 1.25rem;
}
.form-item-head {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.625rem;
}
.form-label {
	font-weight: 700;
	color: var(--black-base);
}
.form-val {
	font-weight: 700;
	color: #39c;
}
.inputs-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2px;
}
.inputs-item {
	flex: none;
	width: 50%;
	padding: 0 2px;
}
.inputs-item input {
	appearance: none;
	width: 0;
	height: 0;
	opacity: 0;
	display: block;
}
.inputs-item label {
	display: block;
	margin: 0;
	padding: 0.75rem 1rem;
	transition: all ease-in-out 0.15s;
	background-color: #fff;
	border: 2px solid #d6ebf5;
	margin-bottom: 4px;
	text-align: center;
	border-radius: 4px;
	font-size: 0.875rem;
}
.inputs-item label:hover {
	cursor: pointer;
	color: #3399cc;
}
.inputs-item input:checked + label {
	background-color: #d6ebf5;
	color: #3399cc;
	font-weight: 700;
}
.form-wrap {
	padding: 2.5rem;
	background-color: #d6ebf5;
	border-radius: 0.875rem;
	overflow: hidden;
}
.form-footer {
	margin: 0 -2.5rem -2.5rem;
	background-color: #d6ebf5;
	padding: 2.5rem;
	display: flex;
	justify-content: space-between;
}
#hf-price {
	font-size: 2rem;
	line-height: 0.875;
	font-weight: 700;
	color: #3399cc;
}
.form-control {
	border-radius: 0 !important;
	border-color: #ddd !important;
	background-color: #fff !important;
}
.form-control:focus {
	box-shadow: none !important;
	border-color: #888 !important;
	background-color: #fff !important;
}
.wpcf7-submit {
	background: none !important;
	border-color: var(--black-base) !important;
	color: var(--black-base) !important;
	border-radius: 0 !important;
}
.wpcf7-submit:focus {
	background: none !important;
	border-color: var(--black-base) !important;
	box-shadow: none !important;
}
.wpcf7-submit:hover {
	background-color: var(--black-base) !important;
	border-color: var(--black-base) !important;
	color: #fff !important;
}
.wpcf7-submit:active {
	background: #444 !important;
	border-color: #444 !important;
	color: #fff !important;
}
.wpcf7-submit:hover:focus,
.wpcf7-submit:focus {
	box-shadow: none !important;
}
.wpcf7-spinner {
	display: none;
}
.wpcf7-not-valid {
	border-color: #cc0022 !important;
}
.wpcf7-not-valid-tip {
	color: #cc0022 !important;
	font-size: 0.7rem;
	text-align: center;
}
.wpcf7 form .wpcf7-response-output {
	padding: 0.5rem;
	border-radius: 0;
	margin: 1rem 0 0;
	line-height: 1rem;
	font-size: 0.7rem;
	text-align: center;
	color: var(--black-base);
	border-width: 1px;	
}
.wpcf7 form.invalid .wpcf7-response-output {
	border-color: #cc0022;
	color: #cc0022;
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: green;
	color: green;
}
.wpcf7 .wpcf7-form p > br {
	display: none;
}
.wpcf7-form-control-wrap {
	display: block;
	margin-bottom: 0.625rem;
}
.wpcf7-form-control {
	padding: 1rem 2rem !important;
	text-align: center;
}
.wpcf7-form-control::placeholder {
	opacity: 0.75 !important;
	font-weight: 200;
}
.wpcf7-form-control:required {
	box-shadow: none;
}
.wpcf7-form-control:focus::placeholder {
	opacity: 0 !important;
}
textarea.wpcf7-form-control {
	text-align: left;
	padding: 1rem !important;
}
h3.form-title {
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1.25rem;
}
.form-value {
	font-size: 3rem;
	text-align: center;
	margin-bottom: 2.5rem;
	color: #3399cc;
	font-weight: 700;
	line-height: 1;
}
.form-disclamer {
	text-align: center;
	font-size: 0.7rem;
	margin-top: 1.25rem;
}
.form-check {
	font-size: 0.7rem;
	margin: 0;
}
.form-check p {
	margin: 0 !important;
}
.form-check-input:checked {
	background-color: var(--black-base);
	border-color: var(--black-base);
}
.form-check-input:focus {
	border-color: var(--black-base);
	box-shadow: 0 0 0 0.25rem rgba(165, 165, 165, 0.25);
}
@media (max-width: 1440px) {
	.form-wrap {
		padding: 1.25rem;
	}
	.form-footer {
		margin: 0 -1.25rem -1.25rem;
		padding: 1.25rem;
	}
}
@media (max-width: 1024px) {
	.wpcf7-submit, .btn-outline:focus {
		background: var(--black-base) !important;
		color: #fff !important;
	}
}
@media (max-width: 600px) {
	.form-wrap {
		border-radius: 0.5rem;
		padding: 1rem;
	}
	.form-footer {
		flex-direction: column;
		text-align: center;
	}
	.form-footer-val {
		margin-bottom: 1.25rem;
	}
	.form-btn .btn {
		width: 100%;
	}
	h3.form-title {
		font-size: 1.25rem;
	}
	.form-value {
		font-size: 1.5rem;
		margin-bottom: 1.25rem;
	}
}

/* content */
#intro .sect-main {
	font-size: 0.8rem;
}
.yurt-type-descr {
	font-size: 0.8rem;
	margin-bottom: 2rem;
}
article.type-page {
	padding: 4rem 0;
}
@media (max-width: 1024px) {
	#intro .sect-main {
		font-size: 1rem;		
	}
	article.type-page {
		padding-top: 3.25rem;
	}
}
@media (max-width: 600px) {
	#yurt-main .btn {
		display: block;
		width: 100%;
	}
}

/* footer */
#wrapper-footer {	
	background-color: var(--black-base);
	color: #fff;
	font-size: 0.8rem;
	line-height: 1.25;
}
#wrapper-footer a {
	opacity: 0.7;
	text-decoration: none;
	color: #fff;
}
#wrapper-footer a:hover {
	opacity: 1;
	color: #fff;
}
.footer-top {
	padding: 4rem 0;
}
.footer-wrap {
	display: flex;
	gap: 2rem;	
}
.footer-about {
	flex: 3;
	padding-right: 6rem;	
}
.footer-logo {
	opacity: 1 !important;
}
.footer-logo img {
	display: block;
	height: 3rem;
}
.footer-text {
	color: #888;
}
.footer-menu {
	flex: 2;
}
#footer-menu .nav-link {		
	text-transform: uppercase;	
	padding: 0.5rem 0;
}
#footer-menu .nav-link:hover {
	opacity: 1;
}
.footer-contact {
	flex: 2;
}
.footer-contact b {
	font-weight: 700;
}
.fc-link {
	display: block;
}
.fc-link:not(:last-child) {
	margin-bottom: 0.25rem;
}
.footer-bottom {
	padding: 1rem 0;
	background-color: #222;
}
.fb-wrap {
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	opacity: 0.7;
}
@media (max-width: 1280px) {
	.footer-about {
		flex: 2;
		padding-right: 0;
	}
}
@media (max-width: 1024px) {
	#wrapper-footer {
		font-size: 1rem;		
	}
	.footer-top {
		padding: 2.5rem 0;
	}
	.footer-wrap {
		flex-wrap: wrap;
		gap: 1rem;		
	}
	.footer-about {
		flex: none;
		width: 100%;
	}
}
@media (max-width: 600px) {
	.footer-menu, .footer-contact {
		flex: none;
		width: 100%;
	}
	.fb-wrap {
		flex-direction: column;
		align-items: center;
	}
}

/* cookies */
#cooknotice {
	display: none;
	position: fixed;
	z-index: 10;
	left:50%;
	transform: translateX(-50%);
	width: auto;
	max-width: calc(100% - 2rem);
	bottom: 1rem;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0,0,0,0.25);
	padding: 0.5rem;
	font-size: 0.8rem;
}
#cooknotice-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
}
@media (max-width: 600px) {
	#cooknotice {
		width: calc(100% - 2rem);
	}
}