/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: 'Gotham Pro';
  src: url('../fonts/GothamPro/GothamPro.woff2') format('woff2'),
      url('../fonts/GothamPro/GothamPro.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Pro';
  src: url('../fonts/GothamPro/GothamPro-Medium.woff2') format('woff2'),
      url('../fonts/GothamPro/GothamPro-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Pro';
  src: url('../fonts/GothamPro/GothamPro-Bold.woff2') format('woff2'),
      url('../fonts/GothamPro/GothamPro-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
.overlay-modal {
    visibility: hidden;
    opacity: 0;
    background-color: #f8f8f8;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.overlay-modal::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 0 rgba(255,255,255, 1.0);
	background-color: #fafafa;
}
.overlay-modal::-webkit-scrollbar {
	width: 0px;
	background-color: #fafafa;
}
.overlay-modal::-webkit-scrollbar-thumb { background-color: #c4c4c4;
}
.overlay-modal.open {
    visibility: visible;
    opacity: 1;
} 
.modal {
    display: block;
    opacity: 1;
    width: 800px;
    height: auto;
    position: relative;
    background: #fff;
	margin: 0;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}
.modal.small {
    width: 400px;
}
.modal.hidden {
    display: none;
    opacity: 0;
}
.modal .close {
    display: block;
    position: fixed;
    width: 44px;
    height: 44px;
    top: -43px;
    right: -52px;
    cursor: pointer;
    z-index:10;
}
.modal .close:hover svg path {
    fill: #eb1429;
}
.modal .modal-content {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 40px;
}
.modal .modal-content form input {
	margin: 10px 0;
}
.modal .modal-content form .form-control-aggree {
	margin-top: 10px;
}
.modal-loader {
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    top: 50%;
    left:50%;
    margin-top: -40px;
    margin-left: -40px;
}
.modal-loader.hidden {
    display: none;
}
.modal-loader:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #eb1429;
    border-color: #eb1429 transparent #eb1429 transparent;
    animation: modal-loader 1.2s linear infinite;
}
@keyframes modal-loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.modal .modal-content .heading {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
}
.modal .modal-content .heading.small {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
	border: 0;
}
.modal .modal-content .error-message {
	padding: 30px 0 20px;
}
.modal .modal-content .descr.small {
	font-size: 15px;
    font-weight: 400;
    line-height: 1.67;
    letter-spacing: 0.38px;
	margin-bottom: 20px;
}
.fl-box {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.fl-left {
	flex: 0 0 calc(50% - 15px);
	max-width: calc(50% - 15px);
	width: calc(50% - 15px);
	padding-right: 15px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.fl-left img {
	width: 100%;
}
.fl-right {
	flex: 0 0 calc(50% - 15px);
	max-width: calc(50% - 15px);
	width: calc(50% - 15px);
	padding-left: 15px;
}
.fl-right .heading {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
}
.fl-right ul {
    list-style: none;
    margin: 0;
    padding: 14px;
    line-height: 28px;
    font-size: 14px;
}
.fl-right sup{
	top: -.7em;
	left: .1em;
}
.lot-more {
    display: block;
    padding: 10px 35px;
    background: #eb1429;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.lot-more:hover {
	opacity: 0.85;
}
.lot-send, .go-prev {
    display: block;
    padding: 20px 35px;
    background: #eb1429;
    text-align: center;
    color: #fff;
	font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.lot-send:hover, .go-prev:hover {
	opacity: 0.85;
}
.lot-send.disabled {
	pointer-events: none;
    background: #808080;
}
.fl-right ul li::before {
	content: "\2022";
	color: #eb1429;
	font-weight: bold;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}
.page{
	overflow: hidden;
}

.wrapper{
	max-width: 1200px;
	padding-right: 15px;
	padding-left: 15px;
	margin: 0 auto;
}

.popup{
	display: none;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #1B1B1B;
	font-family: 'Gotham Pro', sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

sup{
	top: -.5em;
  left: -.5em;
  font-size: 60%;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	background: #f8f8f8;
}

body.m-panel{
	overflow: hidden;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

nav ul{
	margin: 0;
	padding: 0;
}

ul {
	list-style: disc;
}

nav ul{
	list-style-type: none;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

.list{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.list li{
	color: #1B1B1B;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.67;
	letter-spacing: 0.38px;
	position: relative;
	padding-left: 17px;
	margin-bottom: 6px;
}

.list li:before{
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: 0;
	background-color: #eb1429;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.btn,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 370px;
	background-color: #eb1429;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.3px;
	border: 0;
	padding: 25px;
	padding-bottom: 21px;
	cursor: pointer;
	transition: .2s ease-out;
}

.btn-white{
	border: 1px solid #f4f4f4;
	background-color: #fff;
	color: #1B1B1B;
}

.btn-trans{
	border: 2px solid #1B1B1B;
	background-color: transparent;
	color: #1B1B1B;
}

.btn:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background-color: #cf1427;
	border-color: #cf1427;
	color: #fff;
}

.btn-trans:hover{
	border-color: #1B1B1B;
	background-color: #1B1B1B;
	color: #fff;
}

.btn:active, .btn:focus,
button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	outline: none;
}

.btn:disabled,
button:disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled,
input[type="submit"]:disabled {
	pointer-events: none;
	background-color: grey;
}

.btn-trans:disabled{
	background-color: #1B1B1B;
  color: #fff;
  opacity: .7;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	width: 100%;
	min-height: 68px;
	border: 1px solid #e6e6e6;
	background-color: #fff;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.38px;
	text-align: center;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

.form-control{
	margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Forms @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	.btn,
	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		font-size: 12px;	
		padding: 20px;
  	padding-bottom: 17px;
	}

	input[type="text"],
	input[type="email"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	input[type="number"],
	input[type="tel"],
	input[type="range"],
	input[type="date"],
	input[type="month"],
	input[type="week"],
	input[type="time"],
	input[type="datetime"],
	input[type="datetime-local"],
	input[type="color"],
	textarea {
		min-height: 55px;
		font-size: 12px;
		letter-spacing: 0.3px;
	}
}

/*--------------------------------------------------------------
# Form Aggreement
--------------------------------------------------------------*/
.form-control-aggree {
  display: flex;
}

.form-control-aggree p,
.form-control-aggree a{
	font-size: 11px;
	font-weight: 400;
	line-height: 1.64;
	letter-spacing: 0.28px;
	margin: 0;
}

/*--------------------------------------------------------------
# Styled Checkbox
--------------------------------------------------------------*/
.styled-checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  width: 15px;
  height: 15px;
  margin-right: 24px;
  margin-top: 4px;
  flex-shrink: 0;
}

.styled-checkbox input {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.styled-checkbox input:disabled ~ .checkmark {
  border-color: gray;
}

.styled-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #1B1B1B;
}

.styled-checkbox input:checked ~ .checkmark {
  border: 1px solid #1B1B1B;
}

.styled-checkbox .checkmark:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background-color: #eb1429;
  top: 2px;
  left: 2px;
  display: none;
}

.styled-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/*--------------------------------------------------------------
# Styled Checkbox @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	.styled-checkbox{
		margin-right: 15px;
	}
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #1B1B1B;
	transition: .2s ease-out;
}

a:hover, a:focus, a:active {
	outline: 0;
}

.link-arrow{
	display: inline-flex;
	align-items: center;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	font-family: Gotham Pro;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 35px;
	letter-spacing: 0.02em;
	text-align: left;
	
}

.link-arrow:hover{
	border-color: #fff;
	color: #fff;
}

.link-text{
	border-bottom: 2px solid transparent;
	transition: .2s ease-out;
}

.link-arrow:hover .link-text{
	border-color: #fff;
}

.link-icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background-color: #EB1429;
	border-radius: 50%;
	margin-left: 20px;
}

.link-icon:after{
	content: "";
	background-image: url(../img/icons/arrow-right-white.svg);
	width: 20px;
	height: 10px;
	transition: .2s ease-out;
	background-repeat: no-repeat;
}

.link-arrow:hover .link-icon:after{
	transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after{
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after{
	clear: both;
}

/*--------------------------------------------------------------
# Fancybox
--------------------------------------------------------------*/
body.compensate-for-scrollbar{
	overflow: visible;
}

.compensate-for-scrollbar {
  margin-right: 0 !important;
}

.fancybox-bg{
	background-color: #f7f7f7;
}

.fancybox-is-open .fancybox-bg{
	opacity: 1;
}

.fancybox-slide--html .fancybox-close-small{
	background-color: transparent;
  color: #1B1B1B;
  opacity: 1;
  transition: .2s ease-out;
  padding: 2px;
}

.fancybox-slide--html .fancybox-close-small:hover{
	background-color: transparent;
	color: #cf1427;
}

.fancybox-button[disabled], 
.fancybox-button[disabled]:hover{
	color: #ccc;
}

/*--------------------------------------------------------------
# Popups
--------------------------------------------------------------*/
.fancybox-content{
	padding: 45px;
	background-color: transparent;
}

.popup-inner{
	padding: 40px;
	background-color: #fff;
}

.popup-form .popup-inner{
	max-width: 370px;
}

.popup-title{
	margin-bottom: 20px;
}

.popup-title p{
	font-size: 25px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0;
}

.popup-subtitle{
	margin-bottom: 30px;
}

.popup-subtitle p{
	font-size: 15px;
	font-weight: 400;
	line-height: 1.67;
	letter-spacing: 0.38px;
}

/*--------------------------------------------------------------
# Popups @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	.fancybox-content{
		padding: 45px 15px;
	}

	.popup-inner{
		padding: 20px;
	}

	.popup-subtitle{
		max-width: 235px;
	}

	.popup-subtitle p{
		font-size: 12px;
		line-height: 1.82;
		letter-spacing: 0.28px;
	}
}

/*--------------------------------------------------------------
# Slick
--------------------------------------------------------------*/
.slick-arrow{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	position: absolute;
	top: 0;
	width: 50px;
	height: 50px;
	background-color: #e8e8ec;
	border-radius: 50%;
	z-index: 1;
	padding: 0;
}

.slick-arrow.slick-disabled{
	pointer-events: none;
	opacity: 1;
}

.slick-arrow:hover{
	background-color: #eb1429;
}

.slick-arrow path{
	transition: .2s ease-out;
}

.slick-arrow:hover path{
	fill: #fff;
}

.slick-prev{
	left: 0;
}

.slick-next{
	right: 0;
}

.slick-dots{
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  height: 17px;
}

.slick-dots li{
	margin: 0 10px;
	line-height: 0;
}

.slick-dots li button{
	font-size: 0;
	padding: 0;
	background-color: #1B1B1B;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.slick-dots li.slick-active button{
	background-color: #e5132d;
	transform: scale(1.3);
}

/*--------------------------------------------------------------
# Slick @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	.slick-dots li button{
		background-color: #FFF;
		opacity: 0.57;
		width: 6px;
		height: 6px;
	}
	.slick-dots li.slick-active button {
		border: 2px solid #FFF;
		background-color: rgba(0,0,0,0);
		width: 12px;
		height: 12px;
		opacity: 1;
	}
}
@media screen and (max-width:576px){
	.slick-arrow{
		width: 33px;
		height: 33px;
	}

	.slick-arrow svg{
		width: 5px;
		height: 7px;
	}

	.slick-dots li{
		margin: 0 5px;
	}

	.slick-dots li button{
		width: 5px;
		height: 5px;
	}
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
.section h1, 
.section h2, 
.section h3, 
.section h4, 
.section h5, 
.section h6{
	margin: 0;
}

.title{
	font-family: 'Baskerville';
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: 56px;
	letter-spacing: 0.02em;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 45px;
}

.title-small{
	font-size: 30px;
	line-height: 1.33;
	letter-spacing: 0.6px;
}

.title-big{
	font-size: 48px;
	line-height: 1.25;
	letter-spacing: 0.84px;
}

.title-white{
	color: #fff;
}

.section p{
	margin: 0;
}

/*--------------------------------------------------------------
# Sections @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	.title{
		font-size: 36px;
		line-height: 42px;
	}
}	
@media screen and (max-width:768px){
	.title-big{
		font-size: 36px;
	}
	.title{
		font-size: 30px;
		line-height: 42px;
	}	
}
@media screen and (max-width:576px){
	.title-big{
		font-size: 30px;
		line-height: 1.33;
		letter-spacing: 0.52px;
	}

	.title{
		font-size: 30px;
		line-height: 42px;
		letter-spacing: 0.5px;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header{
	position: fixed;
	width: 100%;
	z-index: 20;
}

.header-block{
	display: flex;
	justify-content: space-between;
	background-color: #fff;
	border: 1px solid #f4f4f4;
}

.header-logo{
	display: flex;
	align-items: center;
	padding: 0 50px;
	border-right: 1px solid #f4f4f4;
}

.header-logo a{
	border-bottom: 2px solid transparent;
}

.header-logo a:hover{
	border-color: #1B1B1B;
}

.header-nav{
	flex-grow: 1;
	padding: 0 50px;
	position: relative;
}

.header-nav ul{
	display: flex;
	justify-content: space-between;
}

.header-nav ul li{

}

.header-nav ul li a{
	height: 98px;
	display: flex;
	align-items: center;
	color: #1B1B1B;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.28px;
	transition: .4s ease-out;
}

.header.fixed .header-nav ul li a{
	height: 68px;
}

.header-nav-line{
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 3px;
	background-color: #e5132d;
	transition: .5s ease-out;
}

.header-phone{
	display: flex;
	align-items: center;
	padding: 0 50px;
	border-left: 1px solid #f4f4f4;
}

.header-phone:before{
	content: "";
	background-image: url(../img/icons/phone.svg);
	width: 14px;
	height: 14px;
	margin-right: 13px;
}

.header-phone a{
	color: #1B1B1B;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid transparent;
}

.header-phone a:hover{
	border-color: #1B1B1B;
}

.header-btn{
	display: none;
}

/*--------------------------------------------------------------
# Header @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	.header .wrapper{
		padding: 0;
	}

	.header-block{
		justify-content: flex-start;
	}

	.header-logo{
		padding: 0 15px;
	}

	.header-logo a{
		width: 65px;
	}

	.header-nav{
		position: fixed;
		width: 100%;
		height: calc(100% - 50px);
		top: 52px;
		left: 0;
		background-color: #fff;
		opacity: 0;
		visibility: hidden;
		/*transition: .2s ease-out;*/
		z-index: -1;
	}

	body.m-panel .header-nav{
		opacity: 1;
		visibility: visible;
		z-index: 1;
	}

	.header-nav ul{
		height: 100%;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	}

	.header-nav ul li{
		margin-bottom: 40px;
	}

	.header-nav ul li:last-of-type{
		margin-bottom: 0;
	}

	.header-nav ul li a{
		font-size: 16px;
		height: auto;
	}

	.header.fixed .header-nav ul li a{
		height: auto;
	}

	.header-phone{
		padding: 0 15px;
	}

	.header-btn{
		display: block;
		margin-left: auto;
	}
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	.header-phone{
		width: 100%;
	}
}
@media screen and (max-width:576px){
	.header-nav ul li a{
		font-size: 14px;
	}

	.header-phone a{
		font-size: 14px;
		white-space: nowrap;
		flex: 0 0 calc(100% - 27px);
	}
	.header-phone::before {
		flex: 0 0 14px;
	}
}

@media screen and (max-width:340px){
	.header-phone a {
	  font-size: 11px;
	  padding-top: 2px;
	}
}

/*--------------------------------------------------------------
# Mobile Panel
--------------------------------------------------------------*/
.mobile-panel-btn{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background-color: #FFF;
	text-align: center;
	padding: 0;
	border-left: 1px solid #f4f4f4;
}

.mobile-panel-btn span{
	display: block;
	width: 16px;
	height: 2px;
	background-color: #1B1B1B;
	margin-bottom: 5px;
	transition: .2s ease-out;
}

.mobile-panel-btn.active span:nth-of-type(1){
	transform: translateY(7px) rotate(45deg);
}

.mobile-panel-btn.active span:nth-of-type(2){
	opacity: 0;
}

.mobile-panel-btn.active span:nth-of-type(3){
	transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel-btn span:last-of-type{
	margin-bottom: 0;
}

.mobile-panel{
  display: none;
}

/*--------------------------------------------------------------
# Mobile Panel @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	
}

/*--------------------------------------------------------------
# Welcome
--------------------------------------------------------------*/
.welcome{
	background-image: url(../img/welcome-bg.jpg);
	background-position: center;
	background-size: cover;
}

.welcome-block{
	padding-top: 200px;
	padding-bottom: 50px;
	height: 100vh;
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: -webkit-fill-available;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: flex-end;
	    -ms-flex-align: flex-end;
	        align-items: flex-end;
}
.welcome-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
}

.welcome-text{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;	
}

.welcome-link{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: end;
}
.welcome-link-mob{
	display: none;
}
/*--------------------------------------------------------------
# Welcome @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	.welcome-text{

	}
}
@media screen and (max-width:992px){
	.welcome-img{

	}
}	
@media screen and (max-width:768px){
	.welcome{
		background-image: url(../img/welcome-bg-mobile.jpg);	
		background-position: bottom;
	}
	.welcome-block{
		padding-top: 100px;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: normal;
		    -ms-flex-align: normal;
		        align-items: normal;
		min-height: calc(100vh - 150px);
		height: calc(100vh - 150px);
	}	
	.welcome-img{
		margin: 0 auto;
		width: 80%;
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 80%;
		        flex: 0 0 80%;
	}	
	.welcome-text{
		display: none;
	}	
	.welcome-link-mob{
		display: block;
		background-color: #1B1B1B;
		padding: 25px;
		color: #FFF;
	}	
	.link-arrow {
		font-size: 16px;
		line-height: 25px;
	}
	.link-icon {
		
	}
}
@media screen and (max-width:576px){
	.link-text {
		width: 85%;
	}
}

/*--------------------------------------------------------------
# Doit
--------------------------------------------------------------*/
.doit{
	display: none;
}

.doit .wrapper{
	padding: 0;
}

.doit-btns{
	display: flex;
}

.doit-btns .btn{
	width: 50%;
	max-width: 100%;
}

/*--------------------------------------------------------------
# Doit @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	.doit{
		display: block;
	}
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	.doit-btns .btn{
		font-size: 12px;
		letter-spacing: 0.2px;
		padding: 17px 15px;
	}
}

@media screen and (max-width:340px){
	.doit-btns .btn{
		font-size: 11px;
	}
}

/*--------------------------------------------------------------
# Overall
--------------------------------------------------------------*/
.overall{
	padding: 72px 0; 
}

.overall-block{
	display: flex;
}

.overall-title{
	flex: 0 0 50%;
	padding-bottom: 85px;
}
.overall-link {
	flex: 0 0 50%;
	display: flex;
	justify-content: end;
	align-items: center;
	padding-bottom: 85px;
}
.overall-title-badge{
	display: inline-block;
  background-color: #e5132d;
  padding: 3px 6px;
  color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.52px;
  transform: translate(5px, -5px);
	display: none;
}

.overall-items{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-grow: 1;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.overall-item sup{
	top: -0.6em;
	left: -0.01em;
	font-size: 50%;
}
.overall-item{
	margin: 0 15px;
	flex: 0 0 calc(20% - 30px);
	display: flex;
	flex-wrap: wrap;
	align-self: flex-start;
}
.overall-item.first{
	flex: 0 0 calc(15% - 30px);
}
.overall-item.second{
	flex: 0 0 calc(25% - 30px);
}
.overall-item.five {
	justify-content: end;
}
.overall-item-title{
	margin-bottom: 10px;
}
.overall-item-title-text p{
	font-family: 'Baskerville';
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0.02em;
	margin-bottom: 20px;

}
.overall-item-text p{
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 170%;
	letter-spacing: 0.02em;	
}
.overall-item-title p{
	color: #1B1B1B;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.38px;
	line-height: 1.67;
}
.overall-item-value, .overall-item-title{
	width: 100%;
	flex: 0 0 100%;
}
.overall-item-value p{
	color: #EB1429;
	font-weight: 600;
	font-size: 50px;
	line-height: 140%;
	letter-spacing: 0.02em;
	font-family: 'Baskerville';
}
.overall-link-mob{
	display: none;
}

/*--------------------------------------------------------------
# Overall @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	.overall-item, .overall-item.first, .overall-item.second {
		flex: 0 0 calc(33.3333% - 30px);
		margin-bottom: 32px;
	}
}
@media screen and (max-width:992px){
	.overall-block{

	}
	.overall-title{

	}
}	
@media screen and (max-width:768px){
	.overall{
		background: #F8F8F8;
		padding: 35px 0;
	}
	.overall-title {
		flex: 0 0 100%;
	}
	.overall-link {
		display: none;
	}
	.overall-title {
		padding-bottom: 40px;
	}
	.overall-title .title {
		text-align: center;
	}
	.overall-item, .overall-item.first, .overall-item.second {
		flex: 0 0 calc(100% - 30px);
		text-align: center;
		margin-bottom: 32px;
	}
	.overall-item-title-text {
		width: 100%;
	}
	.overall-item-text {
		width: 100%;
	}
	.overall-link-mob{
		display: none;
		text-align: center;
	}
	.overall .overall-link-mob a.roza-link{
		background-color: #F8F8F8;
	}
}
@media screen and (max-width:576px){
	.overall{

	}

	.overall-title-badge{

	}

	.overall-item {

	}

	.overall-item:nth-of-type(2){

	}

	.overall-item-title{

	}

	.overall-item-title p{
		font-size: 15px;
		line-height: 25px
	}

	.overall-item-value p{
		font-size: 40px;
		line-height: 56px
	}
	.overall-item-title-text p{
		font-size: 16px;
		line-height: 25px;
		margin-bottom: 16px;
	}
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features{
	padding: 80px 0;
	background-color: #1B1B1B;
}

.features-title{
	margin-bottom: 50px;
}

.features-items{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.features-item{
	margin: 0 15px;
}

.features-item sup{
	left: 0em;
}

.features-item p, .features-item li{
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.67;
	letter-spacing: 0.38px;
	margin-bottom: 25px;
}
.features-item ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.features-item li{
	position: relative;
	padding-left: 17px;
}
.features-item li.no-margin{
	margin-bottom: 0px;
}
.features-item li:before{
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: 0;
	background-color: #f9b233;
}
.features-item p:last-of-type{
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	.features-item{
		flex-grow: 1;
		margin-bottom: 30px;
	}
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	.features{
		padding: 35px 0;
	}

	.features-title{
		margin-bottom: 30px;
	}

	.features-item{
		width: calc(100% / 1 - 30px);
		margin-bottom: 20px;
	}

	.features-item p{
		font-size: 11px;
		line-height: 1.82;
		letter-spacing: 0.28px;
		margin-bottom: 5px;
	}
}

/*--------------------------------------------------------------
# Location
--------------------------------------------------------------*/
.location{
	padding: 72px 0;
}

.location-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.location-left{
	flex: 0 0 calc(50% - 96px);
	flex-wrap: wrap;
	margin-right: 96px;
}

.location-img{

}

.location-img img{
}

.location-right{
	flex: 0 0 calc(50% - 96px);
	margin-left: 96px;
}

.location-text p{
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 0.02em;
	text-align: left;
	margin-bottom: 40px;
}
.location-text p strong{
	font-family: 'Baskerville';
	font-weight: 600;
	font-size: 22px;
	line-height: 140%;
	letter-spacing: 0.02em;
}
.location-text h2{
	margin-bottom: 45px;
}
.location-text-body{
	padding: 55px;
	background-color: #fff;
}

.location-desc{
	margin-bottom: 50px;
}

.location-desc p{
	color: #1B1B1B;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.67;
	letter-spacing: 0.38px;
	margin-bottom: 25px;
}

.location-desc p:last-of-type{
	margin-bottom: 0;
}

.location-address{
	margin-bottom: 25px;
	position: relative;
	padding-left: 40px;
}

.location-address:before{
	content: "";
	background-image: url(../img/icons/pin.svg);
	background-position: center;
	background-size: cover;
	width: 14px;
	height: 20px;
	position: absolute;
	top: 7px;
	left: 0;
}

.location-address p{
	color: #1B1B1B;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.4px;
	line-height: 1.35;
}

.location-phone{
	position: relative;
	padding-left: 40px;
}

.location-phone:before{
	content: "";
	background-image: url(../img/icons/phone.svg);
	background-position: center;
	background-size: cover;
	width: 17px;
	height: 17px;
	position: absolute;
	top: 8px;
	left: 0;
}

.location-phone a{
	color: #1B1B1B;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid transparent;
}

.location-phone a:hover{
	border-color: #1B1B1B;
}

/*--------------------------------------------------------------
# Location @media
--------------------------------------------------------------*/
@media screen and (max-width:1600px){
	.location-map img{
	  transform: translateX(145px);
	}
}
@media screen and (max-width:1200px){
	.location-left{
		flex: 0 0 calc(50% - 10px);
		margin-right: 10px;
	}
	.location-right{
		flex: 0 0 calc(50% - 10px);
		margin-left: 10px;
	}		
}
@media screen and (max-width:992px){

}	
@media screen and (max-width:768px){
	.location{
		padding: 35px 0;
	}	
	.location-block {
		flex-wrap: wrap;
	}
	.location-left{
		order: 2;
		flex: 0 0 calc(100% - 0px);
		margin-right: 0px;
	}
	.location-right{
		order: 1;
		flex: 0 0 calc(100% - 0px);
		margin-left: 0px;
		margin-bottom: 40px;
	}	
	.location-text h2 {
		margin-bottom: 45px;
		text-align: center;
		margin-bottom: 30px;
	}	
	.location-text p {
		font-size: 15px;
		line-height: 25px;
		margin-bottom: 30px;
	}
	.location-img{
		width: 100%;
		text-align: center;
	}
}
@media screen and (max-width:576px){

}
/*--------------------------------------------------------------
# trafics
--------------------------------------------------------------*/
.trafics{

}
.trafics .wrapper{
    padding: 72px 15px;
	border-bottom: 1px solid #E4E4E4;
}
.trafics-block {
    display: flex;
    align-items: flex-start;
}
.trafics-left {
    flex: 0 0 calc(50%);
    flex-wrap: wrap;
    padding-right: 96px;
	border-right: 1px solid #E4E4E4;
	display: flex;
}
.trafics-left .trafics-item {
    flex: 0 0 33.333%;
}
.trafics-right {
    flex: 0 0 calc(50%);
    padding-left: 96px;
	display: flex;
	flex-wrap: wrap;
}
.trafics-right .trafics-item {
    flex: 0 0 50%;
}
.trafics h2 {
    margin-bottom: 45px;
}
.trafics h3 {
	letter-spacing: 0.02em;
	text-transform: uppercase;
	font-size: 22px;
	font-family: 'Baskerville';	
	font-weight: bold;
	line-height: 36px;
	margin-bottom: 45px;
}
.trafics-item-value{
	color: #EB1429;
	font-family: 'Baskerville';
	font-weight: 600;
	font-size: 50px;
	line-height: 70px;
}
.trafics-item-title{
	font-weight: normal;
	font-size: 15px;
	line-height: 25px;
}
/*--------------------------------------------------------------
# trafics @media
--------------------------------------------------------------*/
@media screen and (max-width:1600px){
}
@media screen and (max-width:1200px){
	.trafics-left{
		flex: 0 0 calc(50%);
		padding-right: 10px;
	}
	.trafics-right{
		flex: 0 0 calc(50%);
		padding-left: 10px;
	}		
}
@media screen and (max-width:992px){
	.trafics-block {
		flex-wrap: wrap;
	}
	.trafics h3{
		width: 100%;
		margin-bottom: 30px;
	}
	.trafics-left{
		flex: 0 0 calc(100%);
		padding-right: 0px;
		margin-bottom: 30px;
		border-right: none;
	}
	.trafics-right{
		flex: 0 0 calc(100%);
		padding-left: 0px;
	}
}	
@media screen and (max-width:768px){
	.trafics{
		background: #F8F8F8;		
	}
	.trafics .wrapper{
		padding: 35px 15px 0px 15px;
		border-bottom: none;
	}
	.trafics .wrapper .inner{
		border-bottom: 1px solid #E4E4E4;
		padding-bottom; 35px;
	}
	.trafics-block {
		flex-wrap: wrap;
	}
	.trafics-left{
		flex: 0 0 calc(100% - 0px);
		padding-right: 0px;
	}
	.trafics-right{
		flex: 0 0 calc(100% - 0px);
		padding-left: 0px;
	}	
	.trafics h2 {
		margin-bottom: 45px;
		text-align: center;
		margin-bottom: 30px;
	}	
	.trafics-left .trafics-item {
		flex: 0 0 100%;
		text-align: center;
		margin-bottom: 30px;
	}
	.trafics-right .trafics-item {
		flex: 0 0 100%;
		text-align: center;
		margin-bottom: 30px;
	}
	.trafics h3{
		text-align: center;
		font-size: 22px;
		line-height: 35px;
	}	
	.trafics-item-value{
		font-size: 50px;
		line-height: 70px;
	}
	.trafics-item-title{
		font-size: 15px;
		line-height: 25px;
	}	
}
@media screen and (max-width:576px){
}
/*--------------------------------------------------------------
# realty
--------------------------------------------------------------*/
.realty{
    padding: 72px 0px;
}
.realty h2 {
	font-weight: 600;
	font-size: 33px;
    margin-bottom: 45px;
	line-height: 50px;
}
.realty-block{
	display: flex;
	flex-wrap: wrap;
}
.realty-items{
	flex: 0 0 33.333%;
}
.realty-items.center{
	flex: 0 0 calc(33.333% - 0px);
	margin-left: 50px;
}
.realty-items.left{
	padding-right: 50px;
	display: flex;
	flex-wrap: wrap;
}
.realty-items.right{
	padding-left: 100px;
	flex: 0 0 calc(33.333% - 50px);
}
.realty-item{
	width: 100%;
}
.realty-items.right .realty-item{
	margin-bottom: 75px;
}
.realty-items.right .realty-item:last-of-type{
	margin-bottom: 0px;
}
.realty-item-value{
	color: #EB1429;
	font-family: 'Baskerville';
	font-weight: 600;
	font-size: 50px;
	line-height: 70px;
}
.realty-item-title{
	font-weight: normal;
	font-size: 15px;
	line-height: 25px;
}
.realty-items .rooms{
	font-size: 12px;
	line-height: 20px;
	text-align: right;
	width: 100%;
	flex: 0 0 100%;
}
.realty-items .room-title{
	font-size: 15px;
	line-height: 26px;
	flex: 0 0 85%;
}
.realty-items .room-number{
	font-size: 15px;
	line-height: 26px;
	font-family: 'Baskerville';
	font-weight: 600;	
	flex: 0 0 15%;
}
/*--------------------------------------------------------------
# realty @media
--------------------------------------------------------------*/
@media screen and (max-width:1600px){
}
@media screen and (max-width:1200px){
	.realty-items.right .realty-item{
		margin-bottom: 50px;
	}		
}
@media screen and (max-width:992px){
	.realty-items.right .realty-item {
		margin-bottom: 10px;
	}	
}
@media screen and (max-width:768px){
	.realty{
		padding: 35px 0px;
	}
	.realty h2{
		text-align: center;
		font-size: 30px;
		line-height: 42px;
	}
	.realty-items {
		flex: 0 0 100%;
		padding: 0px;
		margin: 0px;
	}
	.realty-items.left {
		padding-right: 0px;
		padding-bottom: 40px;
		border-bottom: 1px solid #E4E4E4;
		order: 1;
	}
	.realty-items.center{
		order: 3;
		flex: 0 0 calc(100% - 0px);
		margin-left: 0px;
		padding-top: 40px;
		text-align: center;
	}
	.realty-items.right{
		order: 2;
		padding-left: 0px;
		flex: 0 0 calc(100% - 0px);
		padding-top: 40px;
	}
	.realty-items.right .realty-item {
		margin-bottom: 30px;
		text-align: center;
	}
}
@media screen and (max-width:576px){
}
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery{
	padding: 72px 0;
}

.gallery .wrapper{
	max-width: 100%;
	padding: 0;
}

.gallery-block{
	display: flex;
}

.gallery-left{
	width: 35%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	flex-shrink: 0;
	padding-right: 110px;
}

.gallery-title{
	margin-bottom: 48px;
}
.gallery-title .title.mobile{
	display: none;
}
.gallery-arrows{
	position: relative;
	width: 120px;
	height: 50px;
}

.gallery-right{
	width: 60%;
}

.gallery-items{
	width: 1700px;	
}

.gallery-item a{
	display: block;
	margin-right: 50px;
}

/*--------------------------------------------------------------
# Gallery @media
--------------------------------------------------------------*/
@media screen and (max-width:1400px){
	.gallery-items{
		width: 100%;
	}
}
@media screen and (max-width:1200px){
	.gallery .wrapper{
		padding: 0 15px;
	}

	.gallery-item a{
		margin-right: 0;
	}
}
@media screen and (max-width:992px){
	.gallery-left{
		padding-right: 30px;
	}
}	
@media screen and (max-width:768px){
	.gallery-block{
		flex-wrap: wrap;
	}

	.gallery-left{
		width: 100%;
		display: block;
		padding-right: 0;
		margin-bottom: 35px;
	}

	.gallery-left-inner{
		display: block;
	}
	.gallery-arrows{
		display: none;
	}
	.gallery-title{
		margin-bottom: 0;
	}
	.gallery-title .title{
		display: none;
	}	
	.gallery-title .title.mobile{
		display: block;
		text-align: center;
	}
	.gallery-right{
		width: 100%;
	}
}
@media screen and (max-width:576px){
	.gallery{
		padding: 35px 0;
	}

	.gallery-arrows{
		width: 78px;
		height: 33px;
	}

	.gallery-items{
		margin-bottom: 30px;
	}

	.gallery-items .slick-dots{
		/*bottom: -30px;*/
	}

	.gallery-items .slick-dots li{
		margin: 0 5px;
	}

	.gallery-items .slick-dots li button{
		width: 8px;
		height: 8px;
	}
	.slick-dots li.slick-active button {
		width: 10px;
		height: 10px;
	}		
	.gallery-item a{
		height: 288px;
	}

	.gallery-item a img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
}

/*--------------------------------------------------------------
# Offers
--------------------------------------------------------------*/
.offers{
	padding: 72px 0;
}

.offers-title{
	margin-bottom: 0px;
}

.offers-title-badge{
	/*width: 50px;
	height: 50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: #eb1429;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.4px;
	transform: translate(7px, -7px);*/
	display: none;
}

.offers-items{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -28px;
	flex: 0 0 calc(100% + 54px);
}

.offers-item{
	width: calc(100% / 3 - 56px);
	margin: 0 28px;
	margin-bottom: 60px;
	display: none;
}

.offers-item .slick-slide > div{
	line-height: 0;
}

.offers-item.active{
	display: block;
}

.offy-gallery-item a{
	display: block;
	width: 100%;
	height: 288px;
}

.offy-gallery-item a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.offers-item-main{
	padding: 30px;
	background-color: #fff;
}

.offers-item-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 30px;
	border-bottom: 1px solid #e6e6e6;	
}

.offers-item-title p{
	font-size: 24px;
	font-weight: 600;
	line-height: 33px;
	letter-spacing: 0.02em;
	font-family: 'Baskerville';
}

.offers-item-expand{
	background-image: url(../img/icons/next-arrow.svg);
	width: 6px;
	height: 9px;
	transform: rotate(90deg);
	margin-right: 2px;
	display: none;
}

.offers-item-row{
	display: flex;
	justify-content: space-between;
	padding: 35px 0 0 0;
}

.offers-item-row:last-of-type{
	padding-bottom: 0;
	border-bottom: 0;
}

.offers-item-info{
}

.offers-item-info:first-of-type{
	width: calc(40% - 15px);
	margin-right: 15px;
}

.offers-item-info:last-of-type{
	width: calc(60% - 15px);
	margin-left: 15px;;
}

.offers-item-row:last-of-type .offers-item-info{

}

.offers-item-info-title{
	margin-bottom: 5px;
}

.offers-item-info-title p{
	color: #373737;
	font-size: 15px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0.3px;
}

.offers-item-info-title sup{
	top: -0.5em;
  left: 0;
  font-size: 65%;
}

.offers-item-info-value p{
	color: #1B1B1B;
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 0.02em;
	font-family: 'Baskerville';
}
.offers-item-info-value p sup{
	left: -.1em;
}
.offers-item-footer .btn{
	max-width: 100%;
}

.offers-more{
	text-align: center;
	margin: 0px auto;
}

.offers .tabs {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	top: -40px;
}

.offers .tabs>input[type="radio"] {
display: none;
}

.offers .tabs>div {
/* скрыть контент по умолчанию */
	height: 0px;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}
.offers #tab-btn-1~#content-1{
	display: none;
}
/* отобразить контент, связанный с вабранной радиокнопкой (input type="radio") */
.offers #tab-btn-1:checked~#content-1,
.offers #tab-btn-2:checked~#content-2,
.offers #tab-btn-3:checked~#content-3 {
	display: flex;
	width: 100%;
	flex: 0 0 100%;
	height: auto;
	padding-top: 75px;
	position: relative;
}
.offers .tab-inner{
	width: 100%;
	flex: 0 0 100%;	
}
.offers .tabs>label {
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	user-select: none;
	font-size: 18px;
	line-height: 28px;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
	cursor: pointer;
	position: relative;
	font-weight: bold;
	top: 1px;
	margin: 0px 15px;
}

.offers .tabs>label:not(:first-of-type) {
	border-left: none;
}
.offers .tabs>input[type="radio"]+label {
	border-bottom: 2px solid #f8f8f8;
}
.offers .tabs>input[type="radio"]:checked+label {
	border-bottom: 2px solid #EB1429;
}
.offers .tab-inner{
	padding-top: 75px
}
.masp-lot-bg{
	display: flex;	
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index:10;	
	opacity: 0;
	transition: .3s ease-out;
}
.masp-lot-bg svg{
}
.masp-lot-bg-text{
	color: #FFF;
	font-family: 'Baskerville';
	font-size: 14px;
	position: absolute;
	line-height: 24px;

}
.masp-lot-bg-text span{
	display: block;
	font-size: 28px;
	text-align: center;
}
.masp-lot-bg-text sup{
	left: .1em;
}
#lot1 {
	left: 110px;
	bottom: 177px;	
}

#lot1 .masp-lot-bg-text{
	bottom: 10px;
}
#lot2 {
	left: 112px;
	top: 219px;	
}

#lot3 {
	left: 110px;
	top: 161px;	
}
#lot3 .masp-lot-bg-text{
	bottom: 25px;
}
#lot4 {
	left: 312px;
	top: 171px;
}
#lot4 .masp-lot-bg-text{
	bottom: 25px;
	left: 37px;
}
#lot5 {
	right: 243px;
	top: 173px;	
}
#lot5 .masp-lot-bg-text{
	bottom: 85px;
	left: 100px;
}
#lot6 {
	right: 154px;
	top: 202px;	
}
#lot6 .masp-lot-bg-text{

}
#lot7 {
	right: 155px;
	top: 374px;	
}
#lot7 .masp-lot-bg-text{

}
#lot8 {
	right: 199px;
	bottom: 176px;	
}
#lot8 .masp-lot-bg-text {
    bottom: 15px;
}
/*#arenda-map area:nth-of-type(1):hover ~ #lot1 {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}*/
#lot1:hover, #lot2:hover, #lot3:hover, #lot4:hover, #lot5:hover, #lot6:hover, #lot7:hover, #lot8:hover{
	opacity: 1;
	cursor: pointer;
	transition: .3s ease-out;
}
/*--------------------------------------------------------------
# Offers @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	.offers .tabs label{
		display: none;
	}
	.offers .tabs #content-1{
		display: none;
	}
	.offers #tab-btn-1:checked ~ #content-1{
		display: none;
	}
	.offers .tabs #content-2{
		display: flex;
		height: auto;
	}	
	.offers-items{
		justify-content: center;
	}

	.offers-item {
  	width: calc(100% / 2 - 30px);
  	max-width: 370px;
	}
}
@media screen and (max-width:992px){
	.offers-item-info-value p{
		font-size: 18px;
	}
}	
@media screen and (max-width:768px){
	.offers-item{
		width: calc(100% / 1 - 30px);
	}
	.offers-more{
		width: 100%;
	}
	.offers-title h2{
		text-align: center;
		font-size: 30px;
		line-height: 42px;
	}
}
@media screen and (max-width:576px){
	.offers{
		padding: 35px 0;
	}

	.offers-title{
		margin-bottom: 30px;
	}

	.offers-title-badge{
		width: 33px;
		height: 33px;
		font-size: 14px;
		letter-spacing: 0.43px;
		transform: translate(5px, -5px);
	}

	.offers-item{
		margin-bottom: 35px;
	}

	.offy-gallery-item a{
		height: 288px;
	}

	.offers-item-main{
		padding: 20px;
	}

	.offers-item-header{
		padding-bottom: 0;
		min-height: auto;
		transition: .4s ease-in-out;
	}

	.offers-item.expand .offers-item-header{
		padding-bottom: 15px;
	}

	.offers-item-title{
		padding-right: 30px;
	}

	.offers-item-title p{
		font-size: 15px;
		line-height: 1.67;
		letter-spacing: 0.38px;
	}

	.offers-item-expand{
		display: block;
		transition: .2s ease-out;
	}

	.offers-item.expand .offers-item-expand{
		transform: rotate(-90deg);
	}

	.offers-item-body{
		display: none;
	}

	.offers-item-row{
		padding: 20px 0;
	}

	.offers-item-info:first-of-type{
		max-width: 100px;
	}

	.offers-item-info:last-of-type{
		max-width: 100px;
	}

	.offers-item-info:last-of-type .offers-item-info-title{
		max-width: 80px;
	}

	.offers-item-row:last-of-type .offers-item-info-title{
		max-width: 160px;
	}

	.offers-item-info-value p{
		font-size: 15px;
		letter-spacing: 0.3px;
	}
}

/*--------------------------------------------------------------
# Setting
--------------------------------------------------------------*/
.setting{
	padding: 80px 0;
}

.setting-title{
	margin-bottom: 60px;
}

.setting-item{
	display: flex;
	align-items: center;
}

.setting-item:first-of-type{
	justify-content: space-between;
	margin-bottom: 80px;
}

.setting-item:last-of-type{
	flex-direction: row-reverse;
	justify-content: flex-end;
	margin-bottom: 0;
}

.setting-item:first-of-type .setting-item-text{
	padding-right: 100px;
}

.setting-item:last-of-type .setting-item-text{
	padding-left: 100px;
}

.setting-item-title{
	margin-bottom: 35px;
}

.setting-item-title p{
	color: #1B1B1B;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.setting-item-img{
	flex-shrink: 0;
}

.setting-item-nav{
	display: none;
}

/*--------------------------------------------------------------
# Setting @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	.setting-item-img{
		max-width: 50%;
	}
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	.setting-item{
		display: block;
	}

	.setting-item:first-of-type .setting-item-text{
		padding-right: 0;
	}

	.setting-item:last-of-type .setting-item-text{
		padding-left: 0;
	}

	.setting-item-text{
		margin-bottom: 35px;
	}

	.setting-item-img{
		max-width: 100%;
	}

	.setting-item-img img{
		width: 100%;
	}
}
@media screen and (max-width:576px){
	.setting{
		padding: 35px 0;
	}

	.setting-title{
		margin-bottom: 35px;
	}

	.setting-items{
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
	}

	.setting-item{
		flex-direction: column;
  	flex-wrap: wrap;
  	display: none;
	}

	.setting-item.active{
		display: flex;
	}

	.setting-item:first-of-type{
		margin-bottom: 0;
		order: 1;
	}

	.setting-item:last-of-type{
		flex-direction: row;
		order: 0;
	}

	.setting-item-img{
		order: 0;
		height: 320px;
		margin-bottom: 30px;
		width: calc(100% + 30px);
		max-width: calc(100% + 30px);
  	
	}

	.setting-item:first-of-type .setting-item-img{
		transform: translateX(-15px);
	}

	.setting-item:last-of-type .setting-item-img{
		transform: translateX(15px);
	}

	.setting-item-img img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.setting-item-nav{
		display: block;
		width: calc(100% - 30px);
		transform: translateX(-15px);
		order: 1;
	}

	.setting-item-nav ul{
		display: flex;
		justify-content: space-between;
		margin: 0 -15px;
	}

	.setting-item-nav ul li{
		margin: 0 15px;
	}

	.setting-item-nav ul li a{
		color: #1B1B1B;
		font-size: 15px;
		font-weight: 700;
		letter-spacing: 0.38px;
		border-bottom: 3px solid transparent;
		text-decoration: none;
		padding-bottom: 5px;
	}

	.setting-item-nav ul li.active a{
		border-color: #e5132d;
	}

	.setting-item-text{
		width: calc(100% - 30px);
		transform: translateX(-15px);
		order: 2;
		margin-bottom: 0;
		margin-top: 30px;
	}

	.setting-item-title{
		display: none;
	}

}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about{
	padding: 144px 0 72px 0;
}
.about .inner{
	display: flex;
	flex-wrap: wrap;
}
.about-img {
    flex: 0 0 calc(50% - 96px);
    display: flex;
    flex-wrap: wrap;
    margin-right: 96px;
	order: 1;
}
.about-text{
    flex: 0 0 calc(50% - 96px);
    margin-left: 96px;	
	padding-top: 40px;
	order: 2;
}
.about-autor-text{
	font-size: 22px;
	font-style: normal;
	font-weight: bold;
	line-height: 31px;
	letter-spacing: 0.02em;
	text-align: left;
	flex: 0 0 50%;
	font-family: 'Baskerville';	
}
.about-autor-text span{
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 0.02em;
	text-align: left;	
	padding-left: 35px;
	font-family: 'Gotham Pro', sans-serif;
}
.about-autor-pod{
	flex: 0 0 50%;	
	text-align: right;
}
.about-autor {
    margin-bottom: 40px;
}
.about-text h2{
	font-family: 'Baskerville';	
	font-weight: bold;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: 56px;
	letter-spacing: 0.02em;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 45px;
}
.about-text p{
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 0.02em;
	text-align: left;
	margin-bottom: 40px;
}
a.roza-link, button.roza-link{
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 29px;
	letter-spacing: 0.02em;
	text-align: left;	
	text-transform: uppercase;
    text-decoration: none;
	background-color: #f8f8f8;
	color: #1B1B1B;
	padding: 0px;
	width: max-content;
}
a.roza-link:hover span, button.roza-link:hover span{
    border-bottom: 2px solid #f8f8f8;
	transition: .2s ease-out;	
}
a.roza-link span, button.roza-link span{
    border-bottom: 2px solid #EB1429;
    padding-bottom: 3px;
	transition: .2s ease-out;	
}
a.roza-link::after, button.roza-link::after{
	content: "";
	background-image: url(../img/icons/arrow-right-black.svg);
	width: 22px;
	height: 10px;
	transition: .2s ease-out;
	background-repeat: no-repeat;
	display: inline-block;	
	margin-left: 20px;
}
@media screen and (max-width:1170px){
	.about {
		padding: 35px 0;
		background-color: #FFF;
	}
	.about-img {
		flex: 0 0 calc(50% - 10px);
		margin-right: 10px;
	}
	.about-text {
		flex: 0 0 calc(50% - 10px);
		margin-left: 10px;
		padding-top: 0px;
	}	
	.about-text h2 {
		margin-bottom: 30px;
	}
	.about-text p {
		margin-bottom: 30px;
	}	
}
@media screen and (max-width:768px){
	.about-img {
		order: 2;
		flex: 0 0 calc(100% - 0px);
		margin-right: 0px;		
	}
	.about-text {
		order: 1;
		flex: 0 0 calc(100% - 0px);
		margin-left: 0px;	
		margin-bottom: 40px;		
	}
	.about-text h2 {
		font-size: 30px;
		line-height: 42px;
	}
	.about-text p{
		font-size: 15px;
		line-height: 25px;
	}
	a.roza-link, button.roza-link {
		font-size: 18px;
		line-height: 28px;
	}
	.about-autor-text {
		flex: 0 0 70%;
		font-size: 17px;
		line-height: 23px;
	}
	.about-autor-pod {
		flex: 0 0 30%;
	}
	.about-autor-text span {
		padding-left: 30px;
	}
	.about-autor{
		width: 100%;
		text-align: center;
	}
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer{
	border-top: 1px solid #f4f4f4;
	padding: 30px 0;
	background-color: #FFF;
}

.footer-block{
	display: flex;
	align-items: center;
}

.footer p,
.footer a{
	color: #1B1B1B;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.67;
	letter-spacing: 0.38px;
	margin: 0;
}

.footer a{
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.footer a:hover{
	border-color: #1B1B1B;
}

.footer-logo a{
	border-bottom: 2px solid transparent;
}

.footer-links{
	margin-left: 40px;
}

.footer-info{
	margin-left: auto;
	text-align: right;
}

/*--------------------------------------------------------------
# Footer @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	.footer-block{
		display: block;
		text-align: center;
	}

	.footer-block > div{
		margin-bottom: 30px;
	}

	.footer-block > div:last-of-type{
		margin-bottom: 0;
	}

	.footer-links{
		margin-left: 0;
	}
	.footer-info{
		text-align: center;
	}	
}
@media screen and (max-width:576px){
	.footer{
		padding: 35px 0;
	}

	.footer-block > div{
		margin-bottom: 25px;
	}

	.footer p, .footer a{
		font-size: 11px;
		line-height: 1.82;
		letter-spacing: 0.28px;
	}
}