@charset "utf-8";

body {
	font-family: "GothamPro";
	font-size: 1rem;
	position: relative;
	color: #000;
	background:#ff;
}
.font_style {
	font-family: "Cormorant Garamond";
}
:root {
	--colorMain: #BC7F0B;/*rgb(188, 127, 11)*/
	--colorDark:#1E2935;
	--colorHover: #ecd97d;
}

header a:hover {
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	color:var(--colorMain);
}
.bg_gradient {
	background: -moz-linear-gradient(top,  rgba(188,127,11,1) 0%, rgba(188,127,11,0) 100%);
	background: -webkit-linear-gradient(top,  rgba(188,127,11,1) 0%,rgba(188,127,11,0) 100%); 
	background: linear-gradient(to bottom,  rgba(188,127,11,1) 0%,rgba(188,127,11,0) 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bc7f0b', endColorstr='#00bc7f0b',GradientType=0 );

}

.border-main {
    border: 3px solid var(--colorMain);
}
.border-lite {
	border:1px solid var(--colorLite);
	}


/*HEADER*/
/**/




/**/
.cd-auto-hide-header {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: transform;
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s;
	background: rgba(0,0,0, 0.3);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.08);
	-webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
	height: 50px;
}

.nav {
	z-index: 3;
}
.nav.nav__color {
    background: #000;
	box-shadow: 0 0 13px 0px rgba(0, 0, 0, 0.2);
}

.cd-auto-hide-header,
.top_header {
		height: 50px;
	}
@media (min-width:576px){
	.cd-auto-hide-header,
	.top_header {
		height: 55px;
	}
}
@media (min-width:1024px){
	.cd-auto-hide-header,
	.top_header {
		height: 65px;
	}
}
/*
@media (min-width:1200px){
	.cd-auto-hide-header,
	.top_header {
		height: 75px;
	}
}
*/



.cd-auto-hide-header::after {
	clear: both;
	content: "";
	display: block;
}

.cd-auto-hide-header.is-hidden {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

.top_header {
	display: grid;
	grid-template-columns: 50px 100px auto;
}
@media (min-width:768px) {
	.top_header {
		grid-template-columns: 1fr 100px 1fr;
	}
}
@media (min-width:1024px) {
	.top_header {
		grid-template-columns: 1fr 140px 1fr;
	}
}
.nav.nav__color .top_header {
	border-bottom: none;
}
/*LOGO*/
.logo_link {
    height: 36px;
	margin: 0 auto;
	  position: relative;
  z-index: 1;

}
@media (min-width:576px) {
	.logo_link {
		height: 40px;
	}
}
@media (min-width:1024px) {
	.logo_link {
		height: 50px;
	}
}


.logo_img {
	height: 100%;
}

.logo {
	display: grid;
	align-items: center;
	height: 100%;
}
/*LEFT_BLOCK*/
.left_block {
	display: grid;
	align-items: center;
	height: 100%;
	justify-items: baseline;
}
@media (min-width:768px) {
	.left_block {
		max-width: calc(50vw);
	}
}

.left_block > .block_function > * {
	padding-left: 0;
	padding-right: calc(1.5vw);
}
/*
@media only screen and (min-width:1200px) {
	.left_block > .block_function > * {
		padding-left: 0;
		padding-right: calc(2vw);
	}
}
*/
/*RIGHT_BLOCK*/
.right_block {
	display: grid;
	align-items: center;
	height: 100%;
	justify-items: end;
	width: 100%;
}
@media (min-width:768px) {
	.right_block {
		max-width: calc(50vw);
	}
}

.right_block > .block_function > * {
	padding-left: calc(1.5vw);
	padding-right: 0;
}
/*
@media only screen and (min-width:1200px) {
	.right_block > .block_function > * {
		padding-left: calc(2vw);
		padding-right: 0;
	}
	
}
*/



/**/




/*phone*/
.icon_phone {
	color: var(--colorMain);
	font-size: 2rem;
	padding-right: 10px;
}


.phone_link {
	font-size: 0.9rem;
	line-height:1.1rem;
	color: var(--colorHover);
	white-space: nowrap;
}

@media (min-width: 1024px) {
	.phone_link {
		font-size: 1rem;
		line-height: 1.3rem;
	}
}
/*
@media (min-width: 1200px) {
	.phone_link {
		font-size: 1.1rem;
		line-height: 1.5rem;
	}
}
*/
.phone_link:hover {
	text-decoration: none;
	color: #fff;
}

.phone_item {
	display: flex;
	align-items: center;
	position: relative;
	max-height: 45px;
}

.phone_item a {
	display: block;
}

@media (max-width: 575px) {
}

.icon_phone {
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.text_phone {
  color: #fff;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
	.text_phone {
		font-size: 0.9rem;
	}
}
@media (min-width: 1024px) {
 
	.text_phone {
		font-size: 1rem;
	}
}
/*
@media (min-width: 1200px) {
	.text_phone {
		font-size: 1.1rem;
	}
}
*/
.phone_ment {
	font-weight: 300;
}

.phone_ment {
    font-size: 0.9rem;
}
@media (min-width: 1024px) {
	.phone_ment {
		font-size: 1rem;
	}
}



.icon_phone {
	width: 40px;
}

.icon_phone i {
    position: relative;
    color: var(--colorMain);
    top: 3px;
}

.ic_phone_mobil.icon_phone {
	height: 45px;
	width: 40px;
}

.phone_ment a {
    display: inline;
}
/**/
.d-table-cell.top_phone {
  padding: 0;
}
.top_phone .phone_item {
	padding-left: calc(1.5vw);
	padding-right: 0;
}

@media only screen and (min-width:1024px) {
	.top_phone .phone_item {
		padding-left: calc(2vw);
		padding-right: 0;
	}
}


/**/
.top_phone .phone_item {
	display: inline-flex;
}
@media (min-width: 1024px) {
	.top_phone .phone_item{
		display: flex;
		max-width: 250px;
	}
}
.top_phone .icon_phone {
	display: none;
}
@media (min-width: 1200px) {
	.top_phone .icon_phone{
		display: block;
	}
}


/*btn_modal*/

.btn_modal {
    padding: 10px 25px;
	font-size: 0.8rem;
    color: #000;
    display: block;
    position: relative;
    transition: all .3s cubic-bezier(.2, 0, 0, 1);
    border-radius: 30px;
    z-index: 1;
    box-shadow: 0 5px 10px rgba(255, 127, 0, 0.3);
    text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	border: 2px solid rgba(255, 127, 0, 0.3);
}
@media (min-width:1024px) {
	.btn_modal {
		padding: 13px 30px;
		font-size:0.9rem;
	}
}

.btn_modal:hover {
	text-decoration: none;
	color: #fff;
	box-shadow: 0 5px 10px rgba(255, 255, 255, 0.2);
	border: 2px solid #fff;
}

.btn_modal:after {
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: -1;
	-webkit-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
	top: 0;
	background: rgb(252,184,0); 
	background: -moz-linear-gradient(top,  rgba(252,184,0,1) 0%, rgba(255,122,0,1) 100%); 
	background: -webkit-linear-gradient(top,  rgba(252,184,0,1) 0%,rgba(255,122,0,1) 100%); 
	background: linear-gradient(to bottom,  rgba(252,184,0,1) 0%,rgba(255,122,0,1) 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcb800', endColorstr='#ff7a00',GradientType=0 ); 
	border-radius: 30px;
}

.btn_modal:hover:after {
	right: 0;
	left: 0;
	height: 100%;
	box-shadow: inset 0 0 0 160px #000;
}























/**/
.btn_top {
    padding: 10px;
    position: relative;
    text-align: center;
    border-radius: 10px;
    z-index: 1;
	color: var(--colorDark);
    background: var(--colorMain);
    box-shadow: 0 0 13px 0px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--colorMain);
    font-size: 0.9rem;
    overflow: hidden;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    min-width: 210px;
    justify-content: center;
    width: 100%;
	max-width: 300px;
}
.btn_top:hover {
    color: var(--colorMain);
}


.btn_top:hover:after {
	background:#fff
	
	}



/**/
.btn_top.btn_hover {
	color: #fff;
    background: var(--colorHover);


    border: 2px solid var(--colorHover);
}
.btn_top.btn_hover:hover {
    color: var(--colorHover);
}
/**/
.btn_top.btn_pulse {
    background: var(--colorHover) url("../img/bg_pulse.png") no-repeat left top / contain;
}
/**/








/*MENU*/

/**menu**/	

.cd-secondary-nav {
	display: none;
	height: 0px;
}

@media only screen and (min-width: 768px) {
	.cd-secondary-nav {
		height: 55px;
		display: block;
	}
}
@media only screen and (min-width: 1024px) {
	.cd-secondary-nav {
		height: 65px;
	}
}
/*
@media only screen and (min-width: 1200px) {
	.cd-secondary-nav {
		height: 75px;
	}
}
*/
.cont_menu {
	position: relative;
	right: 50%;
	float: right;
	height: 100%;
	width: 100%;
}

.top_menu.flex {
	position: relative;
	left: 50%;
	float: left;
	height: 100%;
}
.left_block .top_menu.flex{
	border-left: 1px solid rgba(188,127,11,0.5);
}
.right_block .top_menu.flex{
	border-right: 1px solid rgba(188,127,11,0.5);
}
nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.top_menu a {
    padding: 0 calc(1vw);
    white-space: nowrap;
    display: grid;
    width: 100%;
    color: #fff;
    font-size: 1rem;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    align-content: center;
	
}

@media only screen and (min-width: 1024px) {
	.top_menu a {
		padding: 5px calc(1.2vw);
		font-size: 1.1rem;
	}
}
/*
@media only screen and (min-width: 1200px) {
	.top_menu a {
		padding: 10px calc(1.5vw);
		font-size: 1.2rem;
	}
}
*/

.top_menu > li > a.active, 
.sub_menu a:hover {
	position: relative;
}
.top_menu > li > a.effect_4bl::after {
  background: #000;
}
.top_menu .fa, 
.sub_menu .fa {
	margin-left: 10px;
	color: inherit;
}

.sub_menu {
	position: absolute;
	z-index: 5;
	min-width: 150px;
	background:#000;
	visibility: hidden;
	opacity: 0;
	width: auto;
	text-align: left;
	top: 55px;
	-webkit-transition: all 0s ease-in-out 0s;
	-moz-transition: all 0s ease-in-out 0s;
	-o-transition: all 0s ease-in-out 0s;
	-ms-transition: all 0s ease-in-out 0s;
	transition: all 0s ease-in-out 0s;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.08);
	padding: 10px 0 20px;
}

@media (min-width:576px){
	.sub_menu {
		top: 55px;
	}
}
@media (min-width:1024px){
	.sub_menu {
		top: 65px;
	}
}
@media (min-width:768px){
	.sub_menu {
		width: 600px;
	}
}
@media (min-width:992px){
	.sub_menu {
		width: 700px;
	}
}
/*
@media (min-width:1200px){
	.sub_menu {
		top: 75px;
	}
}
*/
.sub_menu li {
	position: relative;
	height: auto;
}

.sub_menu li a {
	padding: 5px calc(2vw);
	position: relative;
}
.sub_menu li a:hover,
.sub_menu li.active a {
  color: var(--colorHover);
}
/*
.top_menu.flex .sub_menu li {
	width: 50%;
	float: left;
}
*/
.top_menu.flex .sub_menu {
	column-count: 2;
}


.flex_menu {
	position: absolute;
	z-index: 5;
	min-width: 150px;
	background:#000;
	visibility: hidden;
	opacity: 0;
	width: auto;
	text-align: left;
	right: 0;
	top: 55px;
	-webkit-transition: all 0.1s ease-in-out 0s;
	-moz-transition: all 0.1s ease-in-out 0s;
	-o-transition: all 0.1s ease-in-out 0s;
	-ms-transition: all 0.1s ease-in-out 0s;
	transition: all 0.1s ease-in-out 0s;
	padding: 0;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.08);
}
@media (min-width:576px){
	.flex_menu {
		top: 55px;
	}
}
@media (min-width:1024px){
	.flex_menu {
		top: 65px;
	}
}
/*
@media (min-width:1200px){
	.flex_menu {
		top: 75px;
	}
}
*/
.flex_menu li {
	position: relative;
}

.flex_menu li a {
	padding: 10px 2.5rem;
	position: relative;
	color: #fff;
}
.flex_menu li a:hover,.flex_menu li.active a {
	color: var(--colorHover);
}

.sub_menu .sub_menu,.flex_menu .flex_menu {
	position: absolute;
	left: 100%;
	top: -1px;
}

nav li:hover > .sub_menu, nav li:hover > .flex_menu {
	transform: rotateX(0deg);
	visibility: visible;
	opacity: 1;
}

.flexMenu-viewMore > a::before {
  content: "\e99f";
  font-family: 'FontAravana' !important;
  height: 100%;
  font-size: 2rem;
  position: relative;
	padding-top: 4px;
}
@media (min-width:1024px){
	.flexMenu-viewMore > a::before {
		 padding-top: 4px;
	}
}


.top_menu > li {
	float: left;
	position: relative;
	margin-right: 1px;
	height: 100%;
}
/**/
/*.top_menu > li::before,*/
.top_menu > li::after{
    content: '';
    position: absolute;
    /*background: var(--colorMain);*/
	background: none;
    height: 100%;
    width: 1px;
    top: 0;
    z-index: 2;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	opacity: 0.4
}

.top_menu > li::after {
    right: 0;
    margin-right: -1px;
}

 
.top_menu > li:last-child::after {
    display: none;
}

/**/
.flex-multi {
	float: left;
	width: 45%;
	margin-bottom: 100px;
}

.flex-multi + .flex-multi {
	float: right;
}

.flexMenu-viewMore {
	height: 55px;
	cursor: pointer;
}

.flex_menu li a {
    text-align: center;
	
}
.flexMenu-viewMore > a {
    align-content: baseline;
}
/*
.flexMenu-viewMore > a:hover {
    color:#000;
}
*/
.flexMenu-viewMore.active:hover {
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}
/**/
/*
.top_menu.flex a:hover,.top_menu.flex  li.active > a {
    color: #fff;
}
*/
.a_active::after {
	height: 100%;
} 

/*menu_mobil*/

.burger_link {
	height: 50px;
	display: grid;
	align-items: center;
}

@media (min-width:576px){
	.burger_link {
		height: 55px;
	}
}
@media (min-width:1024px){
	.burger_link {
		height: 65px;
	}
}
/*
@media (min-width:1200px){
	.burger_link {
		height: 75px;
	}
}
*/
.menu_mobil {
	display: block;
	padding-top: 0;
	margin: 0 -15px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
	border-bottom: 0px solid#f1f1f4;
	position: absolute;
	width: 100%;
	top:50px
}
@media (min-width:576px){
	top:55px
}
@media (min-width:768px){
	.menu_mobil {
		position: relative;
		width: auto;
		top:0;
	}
}


.mob_menu {
	display: none;
	background: #000;
	padding-top: 10px;
	height: calc(100vh - 50px);
	/*height: auto;*/
	overflow: auto;
	width: 100%;
}

@media (min-width: 576px) {
	.mob_menu {
		height: calc(100vh - 55px);
	}
}
@media (min-width: 1024px) {
	.mob_menu {
		height: calc(100vh - 65px);
	}
}

/*
@media (min-width: 1024px) {
	.mob_menu {
		height: calc(100vh - 75px);
	}
}
*/
.mob_nav li {
	display: block;
	margin: 0;
}

.mob_nav a {
	display: block;
	/*height: 50px;*/
	/*line-height: 50px;*/
	padding-left: 20px;
	color: #fff;
	white-space: nowrap;
	padding-right: 20px;
	padding: 5px calc(2vw);
	position: relative;
	
}
@media only screen and (min-width: 1024px){
	.mob_nav a {
		font-size: 1.1rem;
	}
}
	

.mob_nav a::before, .mob_nav a::after {
	font-size: 1rem;
}


@media (min-width: 576px) {
	.mob_nav a {
		padding-left: 60px;
		padding-right: 60px;
	}
}
.mob_nav li.active a,
.mob_nav li a:hover{
  color: var(--colorHover);
}
.contact_mobil {
    padding: 20px;
    border-top: 1px solid var(--colorMain);
    display: flex;
	flex-flow: wrap row;
}
@media (min-width:576px){
	.contact_mobil {
		padding-left: 60px;
	}
}
.contact_mobil > * {
    width: 100%;
    padding: calc(1vw);
    
}

@media only screen and (min-width:576px) {
	.contact_mobil > * {
		width: auto;
		min-width: 220px;
	}
}



/*nav-trigger*/
.cd-auto-hide-header .nav-trigger {
	display: grid;
	height: 42px;
	padding: 0;
	text-transform: uppercase;
	text-align: center;
	align-items: center;
	width: 42px;
	position: relative;
	z-index: 1;
	background: var(--colorMain);
}
@media only screen and (min-width: 1024px) {
	.cd-auto-hide-header .nav-trigger {
		height: 46px;
		width: 46px;
	}
}
/*
@media only screen and (min-width: 1200px) {
	.cd-auto-hide-header .nav-trigger {
		height: 50px;
		width: 50px;
	}
}
*/

.cd-auto-hide-header .nav-trigger span {
	display: table-cell;
	vertical-align: middle;
}

.cd-auto-hide-header .nav-trigger em,
.cd-auto-hide-header .nav-trigger em::after, 
.cd-auto-hide-header .nav-trigger em::before {
	display: block;
	position: relative;
	height: 0.15rem;
	width: 24px;
	background-color:var(--colorDark);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
@media only screen and (min-width: 1024px) {
	.cd-auto-hide-header .nav-trigger em,
	.cd-auto-hide-header .nav-trigger em::after,
	.cd-auto-hide-header .nav-trigger em::before {
		width: 26px;
	}
}
/*
@media only screen and (min-width: 1200px) {
	.cd-auto-hide-header .nav-trigger em, 
	.cd-auto-hide-header .nav-trigger em::after,
	.cd-auto-hide-header .nav-trigger em::before {
		width: 28px;
	}
}
*/
.cd-auto-hide-header .nav-trigger em {
	margin: 0 auto;
	-webkit-transition: background-color .2s;
	transition: background-color .2s;
}

.cd-auto-hide-header .nav-trigger em::before, .cd-auto-hide-header .nav-trigger em::after {
	position: absolute;
	content: '';
	left: 0;
	-webkit-transition: -webkit-transform .2s;
	transition: -webkit-transform .2s;
	transition: transform .2s;
	transition: transform .2s, -webkit-transform .2s;
}

.cd-auto-hide-header .nav-trigger em::before {
	-webkit-transform: translateY(-9px);
	-ms-transform: translateY(-9px);
	-o-transform: translateY(9px);
	-moz-transform: translateY(9px);
	transform: translateY(-9px);
}

.cd-auto-hide-header .nav-trigger em::after {
	-webkit-transform: translateY(9px);
	-ms-transform: translateY(9px);
	-o-transform: translateY(9px);
	-moz-transform: translateY(9px);
	transform: translateY(9px);
}



.cd-auto-hide-header.nav-open .nav-trigger em {
	background-color: rgba(255, 255, 255, 0);
}

.cd-auto-hide-header.nav-open .nav-trigger em::before {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(-45deg);
}

.cd-auto-hide-header.nav-open .nav-trigger em::after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*multilevel*/
ul.mob_nav {
	padding: 15px;
	margin: 0;
}

ul.mob_nav ul {
	display: none;
	margin: 0;
	padding: 0;
}

ul.mob_nav ul li {
	clear: both;
	margin: 0;
	padding: 0;
}

.arrows_next .transform_top {
	position: absolute;
	top: 7px;
	right: 40px;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}

.arrows_next .transform_bottom {
	position: absolute;
	top:7px;
	right: 40px;
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.mob_menu ul.mob_nav ul li a {
    padding-left: 40px;
    text-transform: none;
}
@media (min-width:576px) {
	.mob_menu ul.mob_nav ul li a {
		padding-left: 80px;
	}	
}









/*MAIN*/

.cd-main-content {
	overflow: hidden;
}
.cd-main-content {
	padding-top: 0;
}
@media (min-width: 576px){
	.cd-main-content {
		padding-top: 0;
	}
}



/*SLIDER*/

.slider {
    position: relative;
}

.slide_image,.banner_block,.slid_link {
		height: calc(100vh);
}



.slider-header .slick-next-carousel, .slider-header .slick-prev-carousel {
	top: 45%;
}

.slide_image {
	position: relative;
}

.slick-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide_overflow {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background: rgba(0, 0, 0, 0.6);
	-webkit-transition: .4s;
	-moz-transform: .4s;
	-o-transition: .4s;
	transition: .4s;
	opacity: 1;
    z-index: 0;
}

/*slid_title*/

.static_form {
    position: absolute;
    width: 100%;
    top: 50px;
	height:1px;
}
@media (min-width:576px) {
	.static_form {
		top: 55px;
	}
}

@media (min-width:1024px) {
	.static_form {
		top: 65px;
	}
}
/*
@media (min-width:1024px) {
	.static_form {
		top: 75px;
	}
}
*/
.slid_link {
    width: 100%;
	color:#fff;
}
.slide_info_link {
	/*height: calc(30vw);*/
display: grid;
align-items: center;
margin: 0 auto;
max-width: 950px;
padding: calc(10vh) 0;
}

.name_slid {
	font-size: 1.6rem;
	line-height:2rem;
}
.subtit_slid {
	font-size: 1.2rem;
}

@media (min-width:576px) {
	.name_slid {
		font-size: 2rem;
		line-height:2.5rem;
	}

	.subtit_slid {
		font-size: 1.4rem;
	}
}
@media (min-width:992px) {
	.name_slid {
		font-size: calc(3.5vw);
		line-height:calc(4.5vw);
	}
	.subtit_slid {
		font-size: calc(2vw);
		padding: 10px 0;
	}
}
@media (min-width: 1828px) {
	.name_slid {
		font-size: 64px;
		line-height: 82px;
	}
}

/**/
.slide_title {
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

@media  only screen and (min-width:768px){
	.slide_title {
		width: 100%;
		
	}
}

/**/
.btn_box {
	max-width: 300px;
    margin: 0 auto;
	padding: 0;
}
.btn_link {
	width: 100%;
	padding: 5px;
	border: 2px solid var(--colorMain);
	position: relative;
	font-size: 1rem;
	color: #fff;
	text-align: center;
	cursor: pointer;
	overflow: hidden;
	background: var(--colorMain);
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
@media  only screen and (min-width:768px){
	.btn_link {
		font-size: 1.2rem;
	}
}
.btn_link:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    color: var(--colorMain);
}
.btn_box .btn_link:hover {
	background: none;
	color: var(--colorHover);
}

/**/

.btn_box.btn_box_overflow .btn_link {
    border: 2px solid var(--colorMain);
    background:rgba(0, 0, 0, 0.6);
	color:var(--colorHover);
}
.btn_box.btn_box_overflow .btn_link:hover {
	color:#fff;
}

.btn_box.btn_box_overflow .btn_link.effect_3m::after {
    background: var(--colorMain);
}
/**/

.ic_btn i {
	font-size: 3rem;
	padding-left: 5px;
}
.btn_box_overflow .ic_btn i {
	color: var(--colorMain);
}
.btn_box .btn_link::after {
  background: rgba(0, 0, 0, 0.6);
}

.btn_box.btn_box_overflow  .btn_link:hover .ic_btn i {
	color: #fff;
}
.btn_box .btn_link:hover .ic_btn i,
.btn_box .btn_box_overflow .ic_btn i {
	color: var(--colorMain);
}

/*plus_links*/
.slider_plus {
  position: absolute;
  top: 80vh;
  width: 100%;
}

.slider_plus .slick-track {
	justify-self: center;
}

.plus_info {
	display: grid;
    grid-template-columns:30px auto;
	gap: 10px;
    text-align: left;
    align-items: center;
    height: 100%;
    overflow: hidden;
    font-size: 0.7rem;
	padding: 10px;
	color: #fff;
}




@media (min-width:1024px) {
	.plus_info {
		font-size: calc(0.8vw);
		grid-template-columns: calc(18%) auto;
	}
}


.plus_info i {
	font-size: 2rem;
	color: var(--colorMain);
	padding-right: 10px;
}

@media (min-width:1200px) {
	.plus_info i {
		font-size: calc(2.5vw);
	}
}

/**/
.arrows_dots_box {
	position: absolute;
	z-index: 1;
	right: 0;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	height: 100%;
	align-items: center;
}
@media (min-width:992px) {
	.arrows_dots_box {
		display: grid;
	}
}
.arrows_dots {
	position: relative;
	margin: 0 auto;
	width: auto;
}
.slick-prev-header, .slick-next-header {
  position: absolute;
  left: 0;
  width: 60px;
  height: 60px;
  margin: 0px;
  padding: 0;
  text-align: center;
  color: #fff;
  border: 0;
  outline: 0;
  z-index: 1;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  cursor: pointer;
  background: none;
  opacity: 0.7;
  font-size: 3rem;
}
.slick-prev-header {
	top: -60px;
}
.slick-next-header {
	bottom: -60px;
	transform: rotate(-180deg);
}
.slick-next-header.slick-arrow:hover,
.slick-prev-header.slick-arrow:hover {
	color: var(--colorMain) !important;
	opacity: 1;
}
.slick-next-header:hover, 
.slick-prev-header:hover {
	color: var(--colorMain) !important;
}
.slick-next-header.slick-arrow:focus,
.slick-prev-header.slick-arrow:focus {
	outline: none;
}
/**/
.slick-dots.dots_header {
	position: relative;
	bottom: auto;
	
}
.slick-dots.dots_header li{
	position: relative;
	display: block;
	width: 20px;
	height: 30px;
	margin: 0;
	padding: 0;
	
}
/*dots*/
.slick-dots.dots_header li button::before {
	width: 10px;
	height: 10px;
	border: 1px solid #fff;
	background: #fff;
	margin: 0;
	opacity: 0.7;
	top: 50%;
	transform: translate(-50%, -50%);
	left: 50%;
}

.slick-dots.dots_header li.slick-active button::before {
    opacity: 1;
    color: var(--colorMain);
    background: var(--colorMain);
    border: 1px solid var(--colorMain);
}
.dotsHeader {
  padding: 20px;
}



/*ABOUT*/

.slick-next-carousel.right_style,
.slick-prev-carousel.left_style {
  top: 50%;
}
.slick-prev-carousel span,
.slick-next-carousel span {
  display: grid;
  padding: 8px 15px;
}
.slick-prev-carousel.left_style span {
	background: #fff;
	border-radius: 0 25px 25px 0;
}
.slick-next-carousel.right_style span {
	background: var(--colorDark);
	border-radius: 25px 0 0 25px;
	color: #fff;
}
.about_title_over::before {
	content: "О пансионате";
}
.short_info {
  height: 250px;
  overflow: hidden;
}
.content_next,
.content_next:hover {
  color: var(--colorMain);
}
/*ROOM*/

.btn_box_room {
    max-width: 300px;
    padding: 0;

}

.room_order_1 {
  -ms-flex-order: 1;
  order: 1;
}
.room_order_2 {
  -ms-flex-order: 2;
  order: 2;
}
@media (min-width: 768px) {
	.room_item:nth-child(2n) .room_order_1{
		-ms-flex-order: 2;
		order: 2;
	}

	.room_item:nth-child(2n) .room_order_2 {
		-ms-flex-order: 1;
		order: 1;
	}
}
.room_item::nth-child(1) {
	margin:0;
}
.room_item {
	margin-top: -7px;
}

.room_item:not(:last-child) {
	margin: 0 0 30px;
	padding: 0 0 30px;
	border-bottom: 1px solid rgba(0,0,0, .1);
}

.room_link {
  max-width: 400px;
  margin: 0 auto;
}
.btn_link.btn_white {
  background: #fff;
  color: var(--colorMain);
}
.btn_link.btn_white:hover {
  color: #fff;
}

.room_title_over::before {
	content: "номера";
}

.room {
  padding-top: 30px;
}

@media (min-width: 768px) {
	.room {
		padding-top: 0;
	}
}

/*NEWS*/
.news {
	background: url("../img/bg_news.jpg") no-repeat top center/cover;
	position: relative
}
.news::before {
	content: "";
	background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,0) 75%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 75%,rgba(255,255,255,1) 100%); 
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 75%,rgba(255,255,255,1) 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); 
	position: absolute;
	width: 100%;
	height: 100%;
}

.news_item {
	display: grid;
	grid-template-columns: 30% auto;
	padding-bottom: 30px;
}
.news_info {
  padding: 0 0 0 10px;
}
@media (min-width: 768px) {
	.news_info {
		padding: 20px;
	}
}
.news_btn {
	max-width: 200px;
	padding: 15px 0;
}
.news_title_over::before {
	content: "новости";
}
.news_btn .btn_link {
	min-height: 40px;
	padding-bottom: 8px;
}
/*INSTA*/

.insta_title_over::before {
	content: "@sofia_pansionat_anapa";
}
/*dots*/
.slick-dots.dots_insta li button::before {
    width: 10px;
    height: 10px;
    border: 1px solid var(--colorDark);
    background: var(--colorDark);
    margin-top: 0;
    opacity: 0.3;
}
.slick-dots.dots_insta li.slick-active button::before {
    opacity: 1;
    color: var(--colorMain);
    background: var(--colorMain);
    border: 1px solid var(--colorMain);
    width: 10px;
    height: 10px;
    margin: 0;
    left: 0;
    top: 0;
}
/*REVIEWS*/
.reviews_title_over::before {
	content: "отзывы";
}
.reviews_arrowss {
	position: relative;
	margin: 0 auto;
	max-width: 600px;
}

.arrowsReviews {
  position: absolute;
  height: 100%;
  width: 100%;
}




/*FOOTER*/
.footer {
	color:#fff;
	background:url("../img/bg_foot.jpg") no-repeat top left/auto,#000;
	padding-top: 30px;
	position: relative;
}
.footer::before {
  content: "";
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  position: absolute;
  width: 100%;
  height: 100%;
top:0;
}
@media only screen and (min-width:768px) {
	.footer {
		background: url("../img/bg_foot.jpg") no-repeat center center/cover;
	}
}











/**/
.foot_links {
  display: flex;
}

.foot_links_soc {
  background: none;
  width: 40px;
  height: 40px;
  display: grid !important;
  align-items: center;
  justify-items: center;
  font-size: 1.8rem;
  border-radius: 50%;
  opacity: 0.7;
  margin-right: 1px;
}

.foot_links_soc:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    opacity: 1;
    background: var(--colorMain);
    background: -moz-linear-gradient(150deg, var(--colorHover) 0%, var(--colorMain) 80%, var(--colorMain) 100%);
    background: -webkit-linear-gradient(150deg, var(--colorHover) 0%, var(--colorMain) 80%,var(--colorMain) 100%);
    background: linear-gradient(150deg, var(--colorHover) 0%, var(--colorMain) 80%,var(--colorMain) 100%);
	text-shadow: 0 0 2px rgba(0, 0, 0,0.5);
}

/**/
@media (min-width: 1024px) {
	.footer_menu {
		font-size: 1.1rem;
	}
}
.footer_menu a{
	opacity: 0.7
}
.footer_menu a:hover{
	opacity: 1
}

/*adderss*/
.address_item {
	display: flex;
	position: relative;
	font-size: 0.9rem;
	max-width: 300px;
}
@media (min-width: 1024px) {
	.address_item {
		font-size: 1rem;
	}
}

.icon_address {
	color: var(--colorMain);
	font-size: 2rem;
	padding-right: 10px;
}
/**/
.footer .phone_item,
.footer .address_item span{
  opacity: 0.7;
}


















.postfooter_copyright {
	color: #fff;
	font-size: 0.8rem;
	padding: 15px 0;
}
@media only screen and (min-width:1024px) {
	.postfooter_copyright {
		font-size: 1rem;
	}
}
@media only screen and (min-width:992px) {
	.postfooter_copyright {
		padding: 15px 0;
	}
}


@media only screen and (min-width:576px) {
	.copyright.right_copyright {
    text-align: right;
}
}
.copyright > *{
	opacity: 0.7
}
.copyright > a:hover{
	opacity: 1
}


/*foot_modil*/
.acc_footer {
	width: 100%;
	padding: 7px 0;
	background: none;
	border: none;
	position: relative;
	text-align: left;
	border-bottom: 1px dashed;
	font-size: 1.1rem;
	color: #fff;
	opacity: 0.7;
}
.acc_footer.font_style.active {
  opacity: 1;
}
	.acc_footer:focus {
		outline: none;
	}

	.acc_footer.active {
		background: none;
	}

	.acc_footer::after {
		content: "\e901";
		font-family: 'FontAravana' !important;
		-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
		position: absolute;
		top: 8px;
		right: 0;
	}

	.acc_footer.active::after {
		content: "\e901";
		font-family: 'FontAravana' !important;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	.panel.acc_panel {
		background: none;
		padding: 0;
	}
.panel {
		padding: 0 18px;
		background-color: white;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.2s ease-out;
	}
@media (min-width:768px) {
	.panel {
		max-height: 100%;
		overflow: inherit;
	}
}
@media only screen and (min-width:768px) {
	.acc_footer {
		display: none;
	}
	
}

















/**/
a.scrollup, a.scrollup:focus {
    position: fixed;
    width: 38px;
    height: 34px;
    bottom: calc(2.5vw);
    right: calc(2.5vw);
    background: var(--colorMain);
    border: 2px solid var(--colorMain);
    display: none;
    z-index: 2;
    outline: 0;
    text-align: center;
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}
a.scrollup:hover,a.scrollup:active {
	opacity:1;
	text-decoration:none;
	background: #fff;
	border: 2px solid var(--colorMain);
	
}
a.scrollup i {
    padding-bottom: 4px;
    color: #fff;
    font-size: 1.2rem;
    display: grid;
    width: 100%;
    height: 100%;
    justify-items: center;
    align-items: center;
}
a.scrollup i:hover {
	text-decoration:none;
	color: var(--colorMain);
}
/**/



/*CONTENT*/

.dost_content {
  width: 7px;
  display: inline-block;
  height: 7px;
  background: var(--colorMain);
  border-radius: 50%;
}

/**/
.title_over {
    position: relative;
}
.title_over::before {
    position: absolute;
    font-size: 2rem;
    color: var(--colorDark);
    top: 50%;
	transform: translate(-50%, -50%);
	left: 50%;
	z-index: 0;
    text-transform: uppercase;
    width: 100%;
    opacity: 0.04;
    font-weight: 900;
	white-space: nowrap;
}
@media (min-width:475px) {
	.title_over::before {
		font-size: 2.8rem;
	}
}
@media(min-width:1024px) {
	.title_over::before {
		font-size: calc(4vw);
		
	}
}
.page_link {
  max-width: 400px;
}
/**/
/*links_content*/

.content_link:not(.btn_link),
.content_link:hover:not(.btn_link:hover){
	position: relative;
	text-decoration: none;
	color:var(--colorMain)
}
.content_link:not(.btn_link)::after{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
	background:var(--colorMain);
}
.content_link:hover:not(.btn_link:hover)::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.readmore_link {
  padding-top: 10px;
}
.table_price {
	width: 100%;
}

.table_price th {
	background: var(--colorMain);
	padding: 10px;
	color: #fff;
	border: none;
	font-weight: 300;
	vertical-align: top;
	border: 1px solid #fff;
}
@media (max-width: 475px) {
	.table_price th {
		padding: 5px;
		font-size: 12px;
	}
}
.tbl-top th {
  border-bottom: 1px solid #fff;
  padding: 10px;
}

.table_price td {
	background: #fff;
	border: none;
	padding: 10px;
	color: #000;
}
@media (max-width: 475px) {
	.table_price td {
		padding: 5px;
		font-size: 14px;
	}
}
.table_price td:not(:first-child) {
	text-align: center;
}

table.table_price thead {
	position: sticky;
	top: 0px;
}

table.table_price tbody > tr:nth-child(2n) > td {
	background: #f8f7f7;
}


/**/
.table_3 td {
  background: #fffdda;
  border: 1px solid var(--colorHover);
  padding: 10px;
  color: #000;
}
.table_3 th {
  background: #fff;
  padding: 10px 0;
  color: var(--colorMain);
}

/**/
.contact_border {
  margin: 15px 0;
  width: 100%;
  border: 1px dashed;
}
/*Catalog_pages*/

.title_page {
    background: url("../img/bg_pages.jpg") top center no-repeat;
}
.title_page .content_title {
    color: var(--colorMainHover);
}
.title_page {
  padding: 50px 0 15px;
}
@media (min-width:576px){
	.title_page {
		padding: 60px 0 15px;
	}
}
@media (min-width:1024px){
	.title_page {
		padding: 70px 0 15px;
	}
}
.title_border {
    width: 50px;
    height: 5px;
}
/**/
.check_mark {
    padding-left: 22px;
}
.check_mark li {
  list-style: none;
  font-size: 16px;
  display: grid;
  grid-template-columns: 10px auto;
}
.check_mark li::before {
  content: "\f00c";
  font-family: FontAwesome;
  margin-top: 2px;
  color: var(--colorMain);
  border: 1px solid;
  border-radius: 50%;
  padding: 0px 1px 2px 3px;
  font-size: 14px;
  width: 22px;
  height: 22px;
}
/**/


.B_crumbBox {
	display: flex;
	align-items: center;
	flex-flow: row wrap;
}
.B_crumbBox span {
	white-space: nowrap;
}
.B_crumbBox a,.B_currentCrumb {
	opacity: 0.8
}
.B_crumbBox a:hover {
	opacity: 1
}
.dost_brea {
	font-size: 6px;
	padding: 2px 10px 0;
}
.breadcrumbs {
	z-index: 1;
	position: relative;
}

.dost_brea i {
    font-size: 0.6rem;
	opacity: 0.5
}


.B_crumbBox a:hover {
    color:inherit;
}
.breadcrumbs {
    font-size: 0.8rem;
}
@media (min-width:768px) {
	.breadcrumbs {
		font-size: 1rem;
	}
}

/*PORTFOLIO*/
/*dots*/
.portfolioDots {
    position: relative;
    padding-bottom: 30px;
}

.slick-dots.portfolio-dots {
  bottom: 0;
}
.slick-dots.portfolio-dots li button::before {
    width: 10px;
    height: 10px;
    border: 1px solid var(--colorDark);
    background: var(--colorDark);
    margin-top: 0;
    opacity: 0.3;
}
.slick-dots.portfolio-dots li.slick-active button::before {
    opacity: 1;
    color: var(--colorMain);
    background: var(--colorMain);
    border: 1px solid var(--colorMain);
    width: 10px;
    height: 10px;
    margin: 0;
    left: 0;
    top: 0;
}
/**/

/*PLUS*/
.plus_price {
  background: url("../img/bg_plus.jpg") no-repeat top center/cover;
  position: relative;
}
.plus_price_item {
  padding: 15px;
  background: #fff;
}
.check_plus {
  color: var(--colorMain);
  border: 1px solid;
  border-radius: 50%;
  padding: 3px 0 0 7px;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
}














/*modal*/
.modal {
    padding: 0 15px;
}
.modal-dialog {
	max-width: 450px;
	margin: 1.75rem auto;
}
/*
@media (min-width:768px) {
	.modal-dialog {
    max-width: 800px;
}
}
*/
.modal-content {
	padding: 0;
	background: none;
	border: none;
}
.tit_modal {
	text-align: center;
	border-bottom: 1px solid;
	margin: 30px;
	padding: 15px 0;
}
.form-control.modal_input {
    background: none;
    border-color: #bbb;
    margin-bottom: 20px;
    height: calc(2em + .75rem + 2px);
	color: #fff;
}
.form-control.modal_input:focus{
	border-color: #fff;
}

.modal-header .close {
	color: var(--colorMain);
}
.modal-header .close:hover {
	color: var(--colorDark);
}
.modal_btn {
    max-width: 300px;
}
.modal_close .close {
    position: absolute;
    right: 10px;
    z-index: 1;
    background: none;
    border: none;
    color: var(--colorMain);
    top: 5px;
    display: grid;
    align-items: center;
    justify-items: center;
    cursor: pointer;
    padding: 10px;
}

.close i{
    font-size: 1.2rem;
	color: #fff;
}

/*Modal_call*/


.modal_form {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
	color: var(--colorDark);
	padding: 15px;
}
.modal_img {
    height: 100%;
	display: none;
}
@media (min-width:768px) {
	.modal_img {
		display: block;
	}
}
/**/
.confidentiality_link {
    color: var(--colorMain);
	text-decoration: underline;
}
.confidentiality_link:hover {
	text-decoration: none;
}
/**/
.check {
	display: block;
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
	padding-right: 15px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.check input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.checkmark {
	position: absolute;
	top: 3px;
	left: 0;
	height: 18px;
	width: 18px;
	background: none;
	border-color: #bbb;
	border-style: solid;
	border-width: 1px;
}
.check input:checked ~ .checkmark {
	background-color: none;
}
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.check input:checked ~ .checkmark:after {
	display: block;
}
.check .checkmark:after {
	left: 3px;
	top: -3px;
	width: 9px;
	height: 14px;
	border: solid;
	border-color: #fff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.forgot {
	text-align: right;
	display: block;
	position: relative;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 0.85rem;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding-top: 2px;
	font-family: "Roboto";
	font-weight:300;
}
/**/
.reviews_form {
    background: #fdf6f1;
}
.form-control.input_form {
    margin-bottom: 20px;
    height: calc(2em + .75rem + 2px);
}
.form-control.input_form:focus, 
.form-control.textarea_form:focus,
.form_foot_textm:focus{
    border-color: var(--colorHover);
}
/**/
.address_content {
    display: flex;
}
.ic_address {
    font-size: 1.5rem;
    color: var(--colorMain);
    padding: 7px 10px 7px 0;
}
.address_page {
    display: grid;
    grid-template-columns: 40px auto;
    align-items: inherit;
}
.address_page p {
    margin: 0;
}
/**/
.bron {
  margin: 0 auto;
  max-width: 250px;
}
/*07.05.2022*/
.phone_item.phone_foot {
  max-height: 100%;
  align-items: inherit;
}

/**/
.bron_btn {
    position: fixed;
    width: 38px;
    height: 34px;
    bottom: calc(6vw);
    right: calc(2.5vw);
    background: var(--colorMain);
    border: 2px solid var(--colorMain);
    z-index: 2;
    outline: 0;
    text-align: center;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: end;
	overflow: hidden;
}
.bron_btn:hover {
	opacity:1;
	text-decoration:none;
	background: #fff;
	border: 2px solid var(--colorMain);
	
}
.bron_btn i {
    font-size: 2.3rem;
	width: 45px;
	height: 45px;
	display: grid;
	align-items: center;
	justify-items: center;
	padding:0 2px;
}
.bron_btn:hover {
	color: var(--colorMain);
}

.bron_btn:hover {
  width: 170px;
  border-radius: 50px;
  color: var(--colorMain);
}

.bron_btn span {
	padding: 0 10px 0 20px;
	display: inherit;
}


/* main sections */
.cards p + .cards-list {
  padding: 60px 0 0;
}
@media (max-width: 682px) {
  .cards p + .cards-list {
    padding: 30px 0 0;
  }
}

.cards-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 20px;
}
.cards-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 10px 28px;
  width: calc((100% - 20px) / 2);
  min-height: 542px;
  -webkit-box-shadow: 0px 0px 25px 12px rgba(95, 99, 104, 0.05);
          box-shadow: 0px 0px 25px 12px rgba(95, 99, 104, 0.05);
}
@media (max-width: 682px) {
  .cards-list__item {
    width: calc((100% - 0px) / 1);
  }
}
.cards-list__item-img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  min-height: 266px;
}
@media (max-width: 1000px) and (min-width: 683px) {
  .cards-list__item-img-box {
    min-height: 200px;
  }
}
@media (max-width: 475px) {
  .cards-list__item-img-box {
    min-height: 160px;
  }
}
.cards-list__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cards-list__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 10px 5px 0;
}
.cards-list__item-title {
  padding: 0 0 10px 0;
  font-weight: 400;
  color: #BC7F0B;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}
.cards-list__item-text {
  font-size: 13px;
  font-weight: 400;
}
.cards-list__item-text + .cards-list__item-info {
  padding: 33px 0 0 0;
}
.cards-list__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin: auto 0 0;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 475px) {
  .cards-list__item-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.cards-list__item-price {
  color: #BC7F0B;
}



/* close btn */
.close {
  display: inline-block;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  border-radius: 50%;
}
.close span {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #544840;
  border-radius: 4px;
  position: absolute;
  left: auto;
  pointer-events: none;
  z-index: -10;
  transition: all 0.2s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.close span:first-child {
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.close span:nth-child(2) {
  left: auto;
  width: 0;
}
.close span:last-child {
  top: 50%;
  bottom: unset;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.close.modal__btn-close span {
  background-color: red;
}
.close:hover.modal__btn-close,
.close:hover .nav-screen__close-wrapper {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.close:hover.modal__btn-close span:first-child, .close:hover.modal__btn-close span:last-child,
.close:hover .nav-screen__close-wrapper span:first-child,
.close:hover .nav-screen__close-wrapper span:last-child {
  width: 75.7575757576%;
}
.close * {
  pointer-events: none;
}

/* cookies */
.cookies {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 450px) {
  .cookies .container {
    padding: 0;
  }
}
.cookies.cookies--on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.cookies__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 26px 79px 26px 40px;
  width: 100%;
  max-width: 100%;
  background-color: #FFF;
  border: 1px solid rgba(133, 95, 76, 0.2);
  border-radius: 2px;
  position: relative;
  pointer-events: all;
}
@media (max-width: 768px) {
  .cookies__wrapper {
    flex-direction: column;
  }
}
@media (max-width: 550px) {
  .cookies__wrapper {
    padding: 35px 20px 20px;
  }
}
@media (max-width: 450px) {
  .cookies__wrapper {
    gap: 15px;
    padding: 35px 15px 15px;
  }
}
.cookies__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 10;
  position: absolute;
  top: 20px;
  right: 20px;
  inset: 20px 20px auto auto;
}
@media (max-width: 550px) {
  .cookies__close {
    top: 15px;
    right: 15px;
    inset: 15px 15px auto auto;
  }
}
@media (max-width: 450px) {
  .cookies__close {
    top: 10px;
    right: 10px;
  }
}
.cookies__btn-close, .cookies-close__wrapper {
  height: 100%;
  width: 100%;
}
.cookies__content-text {
  font-size: 14px;
  line-height: 1.3571428571;
  font-weight: 400;
  color: #544840;
  text-transform: none;
  font-size: 12px;
}
@media (min-width: 375px) {
  .cookies__content-text {
    font-size: 14px;
    font-size: calc(0.0266666667 * 100vw + 2px);
  }
}
@media (min-width: 450px) {
  .cookies__content-text {
    font-size: 14px;
  }
}
.cookies__content-text a {
  transition: color 0.3s;
  border-bottom: 1px solid #544840;
}
.cookies__content-text a:hover {
  color: rgba(133, 95, 76, 0.9);
  border-bottom: 1px solid rgba(133, 95, 76, 0.9);
}
.cookies__btn {
  align-self: flex-end;
}
@media (max-width: 450px) {
  .cookies__btn {
    padding: 14px 28px;
    width: 100%;
    font-size: 12px;
  }
}
@media (max-width: 450px) and (min-width: 375px) {
  .cookies__btn {
    font-size: 14px;
    font-size: calc(0.0266666667 * 100vw + 2px);
  }
}
@media (max-width: 450px) and (min-width: 450px) {
  .cookies__btn {
    font-size: 14px;
  }
}