/******************************************************************

[Table of Contents]

-- global
	-- btns
	-- breadcrumbs
	-- right-sidebar
-- header

---------------------
main page
---------------------
-- slider
-- all-events-sidebar

----------------------
others pages
----------------------
-- event-sub
-- all-events
-- contacts
-- about
-- rent-event
-- rent-offices
-- rent-offices-sub

----------------------
adaptive
----------------------
-- mediaqueries

******************************************************************/


/******************************************************************
-- global
******************************************************************/

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600&display=swap');
body {
    height: 100%;
    overflow: initial;
    padding: 20px;
    color: #000;
    background-color: #efefef;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 25px;
}

.content h3 {
	 font-size: 22px;
}
.content h4 {
	 font-size: 18px;
}
.content h3, .content h4, .content h5, .content h6 {
    margin-bottom: 10px;
}

address {
	line-height: 25px;
}
p {
    margin-bottom: 20px;
}

.content ul {
	margin-bottom: 20px;
}
.content ul li {
	position: relative;
	padding-left: 38px;
}
.content ul li::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    background-color: #000;
    height: 1px;
    width: 28px;
}

a {
    transition: all 0.5s ease;
}

a:focus,
a:hover {
    color: #909090;
}

#back-to-top{
    border-radius: 50%;
    padding: 10px 15px;
    transition: all 0.5s ease;
}

#back-to-top:hover {
    opacity: 0.8;
    border-color: transparent;
}

#back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 100px;
    right: 40px;
    z-index: 10;
    display: none;
    width: 40px;
    height: 40px;
}
#back-to-top::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 15px;
	height: 15px;
	background-image: url(../images/icons/right.svg);
	background-size: cover;
	transform: rotate(-90deg);
}
/*********************************
-- global
	-- btns
*********************************/

.btn {
    position: relative;
    white-space: nowrap;
    border: 2px solid transparent;
    border-radius: 0px;
    font-size: 16px;
    padding: 12px 32px;
    font-weight: 500;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
}

.group-btn {
    margin-top: 40px;
}

.group-btn .btn {
    margin-right: 20px;
}

.btn-primary {
    background-color: #ffc125;
    border-color: #ffc125;
    color: #000;
}

.btn-primary:hover {
    background-color: #ffc83f;
    border-color: #ffc83f;
    color: #000;
}

.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.btn-primary:active,
.btn-primary:active:hover {
    background-color: #ffc83f;
    border-color: #ffc83f;
    color: #000;
    outline: none;
}

.btn-accent {
    border-color: #ffc125;
    background-color: #ffc125;
}

.btn-accent:hover {
    background-color: #ffc83f;
    border-color: #ffc83f;
    color: #000;
}

.btn-border {
    border: 2px solid #fff;
    color: #fff;
}

.btn-border:hover {
    background-color: #fff;
    border-color: #fff;
    color: #333;
}

.btn-border:focus {
    color: #fff;
}

.btn-icon {
    padding: 10px 45px 10px 15px;
}

.btn-icon::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 15px;
    background-image: url(../images/icons/plus.svg);
    background-size: cover;
    width: 15px;
    height: 15px;
    transition: all 0.5s ease;
}

.btn-icon:hover::after {
    transform: rotate(180deg);
}

.btn-accent-icon {
    padding-left: 70px;
}

.btn-accent-icon::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 4px;
    background-image: url(../images/icons/ticket.svg);
    background-size: cover;
    height: 40px;
    width: 40px;
    transform: rotate(-25deg);
    transition: all 0.15s ease;
}

.btn-accent-icon:hover::after {
    transform: rotate(-15deg);
}

.link {
    position: relative;
    padding-right: 26px;
}

.link::after {
    content: "";
    position: absolute;
    background-image: url(../images/icons/right.svg);
    background-size: cover;
    width: 13px;
    height: 13px;
    right: 0;
    transition: all 0.5s ease;
    top: 0;
    bottom: 0;
    margin: auto;
}

.link:hover::after {
    right: -5px;
}


/* end -- btns */


/*********************************
-- global
	-- breadcrumbs
*********************************/

.breadcrumbs {
    position: relative;
    text-align: center;
    padding: 10px 0;
}

.breadcrumb {
    padding: 0;
    list-style: none;
    margin: 0;
    background-color: transparent;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.breadcrumb > li {
    display: inline-block;
}

.breadcrumb li a {
    outline: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    font-size: 14px;
    position: relative;
}
.breadcrumb li a:hover {
	text-decoration: none;
}
.breadcrumb li a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background-color: #ffc125;
    position: absolute;
    z-index: 2;
    bottom: -3px;
    left: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.breadcrumb > li + li:after {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}
.breadcrumb li:first-child::after {
	 padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}
.breadcrumb li:last-child::after {
	display: none;
}
.breadcrumb>li+li:before {
	display: none;
	
}

.breadcrumb li a.active::after {
    width: 100%;
}

.breadcrumb li a:hover::after {
    width: 100%;
}

.breadcrumb li a.active {
	max-width: 470px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    text-decoration: underline solid #ffc125;
}
/*
.breadcrumb li a.active {
	    overflow: hidden;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-decoration: underline solid #ffc125;
}
*/

/* end -- breadcrumbs */


/*********************************
-- global
	-- right-sidebar 
*********************************/

.fl-wrap {
	    float: left;
    width: 100%;
    position: relative;
}

.sliding-menu a {
    float: left;
    padding: 0 0 0 20px;
    height: 40px;
    line-height: 40px;
    position: relative;
    font-weight: 300;
    font-size: 18px;
    text-align: left;
    color: rgba(255, 255, 255, 0.41);
    text-transform: initial;
    letter-spacing: 0px;
    z-index: 2;
}

.sliding-menu a:hover {
    text-decoration: none;
}

.submen-dec:before {
    position: absolute;
    right: 0;
    width: 15px;
    height: 15px;
    top: 13px;
    z-index: 20;
    content: "";
    background-size: cover;
    background-image: url(../images/icons/right-primary.svg);
    filter: grayscale(1);
    transition: all 0.5s ease;
}

.submen-dec:hover::before {
    filter: grayscale(0);
}

.sliding-menu a.back:before {
    position: absolute;
    right: initial;
    width: 15px;
    height: 15px;
    top: 13px;
    z-index: 20;
    content: "";
    background-size: cover;
    background-image: url(../images/icons/right-primary.svg);
    filter: grayscale(1);
    transform: rotate(180deg);
    transition: all 0.5s ease;
}

.sliding-menu a.back:hover:before {
    filter: grayscale(0);
}

.lang-links:before {
    content: '';
    position: absolute;
    left: 20px;
    width: 84px;
    height: 1px;
    top: -40px;
    background-color: #ffc125;
}

.nav-social_title {
    float: left;
    top: 32px;
    margin-right: 20px;
    position: relative;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.51);
    letter-spacing: 0px;
}

.nav-social ul li a {
    position: relative;
    padding: 10px;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-top: 28px;
}

.nav-social ul li a::before {
    content: "";
    position: absolute;
    background-image: url(../images/icons/vk.svg);
    background-size: cover;
    width: 30px;
    height: 30px;
    left: 0;
    top: 2px;
    filter: grayscale(1);
    transition: all 0.5s ease;
}

.nav-social ul li a:hover::before {
    filter: grayscale(0);
}


/* end -- right-sidebar */


/*******************************************************************
-- header
*******************************************************************/

header.main-header {
     top: 0px;
    left: 0;
    width: 100%;
    z-index: 10;
    position: absolute;
}
/*
header.main-header:after {
	content:'';
	position:absolute;
	bottom:0;
	left:90px;
	height:1px;
	right:0;
	background:rgba(255, 255, 255, 0.03);
}
*/
/*
header.main-header:before {
	content:'';
	position:absolute;
	left:30%;
	right:150px;
	height:100%;
	z-index:-1;
	background:rgba(255, 255, 255, 0.04);
}
*/


	








.header-logo {
    float: left;
    position: absolute;
    top: 177px;
    left: 0;
    background-color: #61a7d8;
    padding: 5px;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 246px;
	}
.header-logo img {
	float:left;
	width: auto;
	height:62px;
}

.nav-button-wrap {
    right: 30px;
    width: 48px;
    position: absolute;
    top: 30px;
    padding: 10px;
    height: auto;
	z-index: 110;
	display: none;
}
.nos, .ncs, .nbs {
	background-color: #fff !important;
}

.nav-button {
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.nav-button .nos {
	width: 20px;
}
.nav-button .ncs {
	    width: 12px;
}
.nav-button .nbs {
	width: 28px;
}

.nav-button span {
    width: 100%;
    float: left;
    margin-bottom: 8px;
    height: 1px;
    background: #fff;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
/*
.nav-button .ncs {
	width: 70%;
}
*/
/*
.nav-button .nbs,
.nav-button.cmenu:hover .nbs {
	width: 0;
}
*/
.cmenu .nbs {
	display: none;
}
.nav-button:hover .ncs,
.nav-button:hover .nbs,
.nav-button:hover .nos {
	width: 100%;
}

.nav-button:hover .ncs, .nav-button:hover .nbs, .nav-button:hover .nos {
	
}
.nav-button:hover .nos {
	 width: 12px;
}
.nav-button:hover .ncs {
	width: 28px;
}
.nav-button:hover .nbs {
	width: 20px;
}

.nav-button.cmenu .nos {
	-webkit-transform: rotate(-45deg) scale(0.8);
	transform: rotate(-45deg) scale(0.8);
	margin-bottom: 0;
	top: 8px;
	width: 28px;
}
.nav-button.cmenu .ncs {
	-webkit-transform: rotate(45deg) scale(0.8);
	transform: rotate(45deg) scale(0.8);
	margin-bottom: 0;
	top: 7px;
	width: 100%;
}

.header-contacts {
	float:right;
	position:relative;
	top:33px;
	padding-right:70px;
	right:150px;
}
.header-contacts ul {
	float:right;
}
.header-contacts li {
    list-style: none;
    float: left;
    margin-left: 86px;
    top: 3px;
    position: relative;
    /* text-transform: uppercase; */
    font-weight: 500;
    font-size: 13px;
    color: #ffffff;
    letter-spacing: 1px;
}
.header-contacts li:before {
    content: '';
    position: absolute;
    left: -40px;
    width: 28px;
    top: 50%;
    height: 1px;
    margin-top: -1px;
    background-color: #fff !important;
}
.header-contacts li a{
	color:#fff;
	font-size: 16px;
}
.header-contacts li address {
	font-size: 16px;
}


/*------ navigation  ------------------------------------------------*/
.nav-holder {
	position:fixed !important;
	top: 0px;
	right:-500px;
	width:450px;
	bottom:0;
	background: #262627;
	overflow:auto;
	z-index:105;
    -webkit-transform: translate3d(0, 0, 0) !important;
}
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index:103;
    width: 100%;
    background: rgba(37, 36, 37, 0.71);
	display:none;
	overflow:hidden;
    -webkit-transform: translate3d(0, 0, 0);
}
.element {
	width:45px;
	height:45px;
	border-radius: 50%;
	will-change: transform;
	border:1px solid #ffc125;
	background-color: #ffc125;
}
.element:before {
    content: "";
    background-image: url(../images/icons/plus.svg);
    background-size: cover;
    height: 15px;
    width: 15px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
}
.nav-scroll-bar-wrap {
	overflow:hidden;
	position:absolute;
	left:0;
	right:0;
	bottom:70px;
	top:0;
	padding:80px 40px 100px 50px;
}
nav.nav-inner {
	float: left;
	overflow: hidden;
	width: 100%;
	position: relative;
 	margin-top: 90px;
	z-index: 20;
}
.sliding-menu ul {
	margin: 0;
	float: left;
	width: 100%;
	overflow: hidden;
}
.sliding-menu li {
	margin: 0;
	position: relative;
	float: left;
	width: 100%;
}

.sliding-menu li:after {
	content: '';
	position: absolute;
	top: 0;
	left: -10px;
	width: 0;
	z-index:1;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	height: 100%;
	background: rgba(255, 255, 255, 0.071);
}
.sliding-menu li:hover:after {
	width: 50%;
}



.lang-links {
	margin-top:140px;
	padding-left:20px;
}
.lang-links a {
	font-size:14px;
	float:left;
	color:rgba(255, 255, 255, 0.41);
	margin-right:10px;
}
.lang-links a.act-leng {
	color:#fff;
}
.nav-social {
	position:absolute;
	height:80px;
	width:100%;
	left:0;
	bottom:0;
    background: #2D2D32;
	padding:0 20px 0 70px;
}

/*
.nav-social li{
    width: 40px;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: none;
    position: relative;
	float:left;
	top:20px;
}
.nav-social li:first-child {
	border-left:1px solid rgba(255, 255, 255, 0.08);
}
.nav-social li a{
    color: #767676;
	position:relative;
	z-index:10;
}
*/

#submit_btn {
	position:absolute;
	right:0;
	top:6px;
	color:#fff;
	z-index:2;
	width:50px;
	height:20px;
	line-height:20px;
	cursor:pointer;
}


.title-sub {
		    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 0 10px;
    margin-top: 56px;
		line-height: 33px;
	}
	
	.header-nav {
		    position: absolute;
    z-index: 10;
    top: 36px;
    left: 0;
    right: 0;
    text-align: center;
	}
	
	.header-nav li {
    margin: 0 10px;
    display: inline-block;
	}
	.header-nav a {
		color: #fff;
		font-size: 25px;
	}
	
	.header-contacts {
    float: right;
    position: relative;
    top: 100px;
    padding-right: 0;
    right: 40px;
}
	.header-contacts li {
    list-style: none;
     float: none; 
    margin-left: 86px;
    top: 3px;
    position: relative;
    /* text-transform: uppercase; */
    font-weight: 500;
    font-size: 13px;
    color: #ffffff;
    letter-spacing: 1px;
}
	.header-contacts li a {
		font-size: 20px;
	}
	.header-address {
		    position: absolute;
    left: 40px;
    top: 100px;
	}
	.header-address address {
		color: #fff;
		font-size: 20px;
	}

/******************************************************************
-- end header
******************************************************************/


/*******************************************************************
-- footer
*******************************************************************/

footer {
	margin-top: 80px;
}
footer .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
}
.logo-footer__image {
	height: 60px;
}

.footer-contacts {
		display: flex;
align-items: center;
justify-content: center;
}
.footer-contacts__item, .footer-contacts__item {
list-style: none;
float: none;
margin-left: 86px;
position: relative;
font-weight: 500;
font-size: 14px;
color: #000;
letter-spacing: 1px;
}
.footer-contacts__item::before, .footer-contacts__item::before {
	content: '';
position: absolute;
left: -40px;
width: 28px;
top: 50%;
height: 1px;
margin-top: -1px;
background-color: #000;
}
.footer-contacts__item address {
	margin-bottom: 10px;
}
.footer-contacts__item a {
	font-size: 18px;
}
.footer-nav {
margin-top: 40px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.footer-nav li {
	margin: 0 10px;
display: inline-block;
}

.footer-copyright {
	margin-top: 60px; opacity: 0.5;
}

/******************************************************************
-- end footer
******************************************************************/



/*******************************************************************
-- main page
*******************************************************************/


/*********************************
-- main page section
	-- slider
*********************************/

.hero-wrap {
    overflow: hidden;
    height: 95.8vh;
    max-height: 100%;
    width: 100%;
    margin: 0 0 0 auto;
    box-shadow: 0px 4px 28px 0px rgba(79, 79, 79, 0.1);
    background-color: #fff;
}

.hero-slider-wrap {
    width: 85%;
    max-width: 1200px;
    margin: 0 0 0 auto;
    height: 75vh;
}

.dots {
    content: "";
    position: absolute;
    z-index: 0;
    right: 580px;
    bottom: 16%;
    width: 700px;
    top: 13.4%;
    opacity: .8;
    background: url(../images/dots-2.svg) repeat;
    background-size: 15px;
    height: 70%;
    filter: grayscale(1);
}

.hero-slider:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 200px;
    background-color: #ffc125;
    left: -111px;
    top: -152px;
    bottom: 0;
    margin: auto;
}

.gallery-top {
    height: 75vh;
    width: 100%;
}

.gallery-top .swiper-slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    z-index: 1;
}

.gallery-top .swiper-slide {
    height: 75vh;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.swiper-slide-info {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 40px;
    color: #fff;
    padding-top: 60px;
    z-index: 2;
}
.swiper-slide-info .event__date::before {
	display: none;
}

.swiper-slide-info:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 200px;
    background-color: #fff;
    left: -111px;
    top: -152px;
    bottom: 0;
    margin: auto;
}

.swiper-slide-info.event .event__date {
    font-size: 20px;
}

.swiper-slide-info.event .event__title a {
    pointer-events: initial;
    color: #fff;
    font-size: 40px;
    transition: all 0.5s ease;
}

.swiper-slide-info.event .event__title a:hover {
    color: #ffc125;
}

.swiper-slide-info.event .event__subtitle {
    color: #fff;
    font-size: 17px;
    font-weight: normal;
}


/* slider arrows */

.swiper-button-next,
.swiper-button-prev {
    top: initial;
    margin-top: 0;
    bottom: 42px;
}

.swiper-button-next {
    content: "";
    background-image: url(../images/icons/right.svg) !important;
    background-size: cover;
    width: 30px;
    height: 30px;
    right: initial;
    left: 534px;
}

.swiper-button-prev {
    content: "";
    background-image: url(../images/icons/left.svg) !important;
    background-size: cover;
    width: 30px;
    height: 30px;
    left: 40px;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    display: none;
}


/* end slider arrows */

.gallery-thumbs {
    max-height: 58px;
    box-sizing: border-box;
    padding: 10px 0 10px 0px;
    /* max-width: 550px; */
    max-width: 445px;
    width: 100%;
    margin-left: 70px;
    overflow: hidden;
    position: absolute;
    bottom: 30px;
}

.gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.gallery-thumbs .swiper-slide:hover {
    opacity: 1;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide-thumb.event {
    text-align: left;
    position: relative;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    margin-right: 21px;
    cursor: pointer;
}

.swiper-slide-thumb.event:after {
    content: "";
    position: absolute;
    right: -11px;
    top: -2px;
    background-color: #000;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 58px;
}

.swiper-slide-thumb.event .event__number {
    position: absolute;
    left: 0;
    top: -12px;
    font-size: 50px;
    font-weight: normal;
    line-height: normal;
}

.swiper-slide-thumb.event .event__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 160px;
    overflow: hidden;
}

.swiper-slide-thumb.event .event__title a:hover {
    color: #909090;
}

.swiper-slide-next .event__title a,
.swiper-slide-active .event__title a {
    pointer-events: none;
}

.swiper-slide-thumb-active .event__title a {
    pointer-events: initial;
}

.swiper-container-thumbs .event__date {
    color: #000;
    font-size: 14px;
}
.swiper-container-thumbs .event__date::before {
	display: none;
}
.swiper-slide-next .swiper-slide-thumb.event:after {
    right: initial;
    left: -11px;
}

.swiper-slide-prev .swiper-slide-thumb.event:after {
    opacity: 0;
}


/* end -- slider */


/*********************************
-- main page section
	-- all-events-sidebar
*********************************/

.all-events {
    position: absolute;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
}

.all-events span {
    background-color: #f00;
    color: #fff;
    font-size: 16px;
    padding: 10px 45px 10px 15px;
    border-radius: 0px;
    display: inline-block;
    line-height: 16px;
}

.all-events span::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 10px;
    background-image: url(../images/icons/plus.svg);
    background-size: cover;
    width: 15px;
    height: 15px;
}

.click {
    z-index: 1000;
    position: absolute;
    max-width: 730px;
    background: #fff;
    transition: all .55s ease;
    right: 20px;
    box-shadow: 0px 4px 28px 0px rgba(79, 79, 79, 0.2);
    bottom: 80px;
    height: 0;
    width: 85%;
    opacity: 0;
    overflow: hidden;
	z-index: 1;
}

.click.toggled {
    height: 252px;
    opacity: 1;
}

#sidebar-wrapper {
    max-height: 214px;
    overflow-x: hidden;
    height: auto;
    margin-right: 4px;
}

.sidebar-toggle {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.nearest-event.event .event__item {
    display: flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #eaeaea;
    transition: all 0.5s ease;
}

.nearest-event.event .event__item:hover {
    background-color: #eaeaea;
}

.nearest-event.event .event__date {
    font-size: 24px;
    color: #f00;
    display: flex;
    flex-direction: column;
    line-height: 20px;
    font-weight: bold;
    margin-right: 10px;
	align-items: center;
}

.nearest-event .event__date::before {
	display: none;
}
.nearest-event.event .event__date small {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.nearest-event.event .event__img {
    width: 100%;
    margin-right: 10px;
    background-size: cover;
    width: 50px;
    height: 50px;
    background-position: center;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
}

.nearest-event.event .event__name-event {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    margin-right: 10px;
    flex: 0 1 208px;
}

.nearest-event.event .event__title a {
    transition: all 0.5s ease;
}

.nearest-event.event .event__title a:hover {
    color: #909090;
}

.event .event__place {
    position: relative;
    padding-left: 17px;
    margin-right: 10px;
}

.event .event__place::before {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../images/icons/placeholder.svg);
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0px;
    margin: auto;
    bottom: 0;
    opacity: 0.3;
}

.event .event__time {
    position: relative;
    padding-left: 20px;
    margin-right: 10px;
    width: 60px;
}

.event .event__time::before {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../images/icons/clock-2.svg);
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0px;
    margin: auto;
    bottom: 0;
    opacity: 0.3;
}

.event .event__age-rating {
    position: relative;
    padding-left: 17px;
    margin-right: 10px;
}

.event .event__age-rating::before {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../images/icons/user.svg);
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0px;
    margin: auto;
    bottom: 0;
    opacity: 0.3;
}

.event__item .btn {
    padding: 6px 16px;
    margin-top: -2px;
    font-size: 14px;
}

.event .event__phone {
			    position: relative;
    padding-left: 17px;
    margin-right: 10px;
	display: inline-block;
		}
.event .event__phone::before {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../images/icons/phone.svg);
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0px;
    margin: auto;
    bottom: 0;
    opacity: 0.3;
}

.click .link {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 9px auto;
    width: 150px;
    display: inline-block;
}

#sidebar-wrapper::-webkit-scrollbar {
    width: 8px;
}

#sidebar-wrapper::-webkit-scrollbar-track {
    background-color: transparent;
    border: none;
    box-shadow: none;
    margin-top: 4px;
}

#sidebar-wrapper::-webkit-scrollbar-thumb {
    background-color: #a4a4a4;
    border-radius: 10px;
    transition: all 0.5s ease;
}

#sidebar-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #9b9b9b;
}


/* end -- all-events-sidebar */

	.rent-object-btns {
    text-align: center;
    position: absolute;
    z-index: 10;
    right: 0;
    top: 70%;
    margin: auto;
    left: 0;
    bottom: 0;
    height: 50px;
	}
	.rent-object-btns .btn {
		margin: 0 20px;
	}
.rent-object-btns .btn-accent-icon:first-child::after {
    background-image: url(../images/icons/rent-event.svg);
    transform: rotate(0deg);
	    height: 35px;
    width: 35px;
	    top: 6px;
}
	.rent-object-btns .btn-accent-icon:last-child::after {
    background-image: url(../images/icons/rent-office.svg);
    transform: rotate(0deg);
		    height: 35px;
    width: 35px;
		    top: 6px;
}
.rent-object {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
    margin-right: -10px;
    margin-left: -10px;
}
	.rent-object__event-object, .rent-object__office-object
	{
		position: relative;
		    display: flex;
		height: 100%;
    width: calc(100% / 12 * 6);
		    flex-wrap: wrap;
		padding: 0px 10px;
		margin-top: 20px;
	}

	.event-object__bg {
		background-image: url(../pic/all-events.jpg);
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		/* background-attachment: fixed; */
		width: 100%;
		height: 450px;
		position: relative;
		z-index: 1;
		}
	
.rent-object__event-object .event__item .btn {
		margin: 5px 0 0 auto;
	}
	
	.office-object__bg {
		background-image: url(../pic/office.jpg);
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		/* background-attachment: fixed; */
		width: 100%;
		height: 450px;
		position: relative;
		z-index: 1;
	}
.office-object__bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.event-object__bg, .office-object__bg {
	height: 230px;    background-size: cover;
    background-position: center;
}

.event-object__bg a, .office-object__bg a  {
	color: #fff;    background-color: rgba(0, 84, 143, 0.75); padding: 7px 14px;
}
.concert-place .event-object__bg, .concert-place  .office-object__bg {
	height: 300px;
}

.concert-place .event-object__bg::before {
	background-color: transparent;
}

.place .btn-accent {
	width: 100%;
    max-width: 400px;
}
/*******************************************************************
	end
	--  main page section
*******************************************************************/




/*******************************************************************
-- others pages
*******************************************************************/

.event-wrap {
			max-width: 900px;
    width: 95%;
    /* box-shadow: 0px 4px 28px 0px rgba(79, 79, 79, 0.2); */
    margin: -40px auto 0;
    position: relative;
    z-index: 3;
    background-color: #fff;
    padding: 20px;
		}
/*********************************
-- others pages
	-- event-sub
*********************************/

.event-card {
		    min-height: 95.8vh;
	    background-color: #fff;

     margin-bottom: 20px; 
/*
    height: auto;
    max-height: 100%;
*/
    padding-bottom: 20px;
	}
	.event-card__bg {
background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    width: 100%;
    height: 500px;
    position: relative;
    z-index: 2;
    background-position: 100% 100%;
	}
	.event-card__bg::before {
		content: "";
		position: absolute;
		    left: 0;
    top: 0;
		z-index: 1;
		width: 100%;
		height: 100%;
/*	    background-color: rgba(0, 0, 0, 0.3);*/
		    background-color: rgba(0, 84, 143, 0.75);
	}
	.event-card__bg .title {
		align-items: flex-start !important;
		top: 90px;
	}
	.event-card .title {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 50px;
    width: 100%;
    height: 100%;
		    text-align: center;
    padding: 0 10px;
	}
	
	.event-card .breadcrumbs {
	    position: absolute;
    width: 100%;
    top: 100px;
    bottom: 0;
    margin: auto;
    height: 44px;
		z-index: 1;
	}
	.event-card__description {
		    max-width: 900px;
    width: 95%;
/*    box-shadow: 0px 4px 28px 0px rgba(79, 79, 79, 0.2);*/
    margin: -90px auto 0;
    position: relative;
    z-index: 3;
    background-color: #fff;
    padding: 20px;
	}
	
	.event-card__description.event .event__line {
position: absolute;
    width: 200px;
    height: 1px;
    background-color: #ffc125;
    left: -100px;
	}
	.event-card__description.event .event__date {
    font-size: 16px;
    font-weight: normal;
    margin-top: 15px;
    display: inline-block;
    margin-right: 15px;
		 position: relative;
    padding-left: 20px;
	}
	.event__date::before {
			  content: "";
    width: 16px;
    height: 16px;
    background-image: url(../images/icons/calendar.svg);
    background-size: cover;
    position: absolute;
    left: 0;
     top: 0px;
    margin: auto;
    bottom: 0;
    opacity: 0.3;
	}
	.event-card__description.event .event__place {
		font-size: 16px;
    font-weight: normal;
    margin-top: 15px;
    display: inline-block;
    margin-right: 15px;
	}
/*
	.event-card__description.event .event__time {
				font-size: 16px;
    font-weight: normal;
    margin-top: 15px;
    display: inline-block;
    margin-right: 15px;
	}
*/
	.event-card__description.event .event__age-rating {
		font-size: 16px;
	}
	.event-card__description.event .event__name-event {
		    margin-top: 20px;
		margin-bottom: 20px;
		border-bottom: 1px solid #eaeaea;
		padding-bottom: 15px;
	}
	.event-card__description.event .event__title {
		font-size: 36px;
		    line-height: 36px;
		margin-bottom: 6px;

	}
	.event-card__description.event .event__subtitle {
		    font-size: 16px;
   	 color: #909090;
		    max-width: 450px;
    width: 100%;
	}
	
	.event-card__description.event .event__cost-tickets {
    font-size: 16px;
    margin-bottom: 25px;
    position: absolute;
    right: 20px;
    top: 118px;
	}
	.event-card__description.event .btn {
		position: absolute;
		top: 20px;
		right: 20px;
	}
	
	.event-card__content {
		margin-top: 40px;
		font-size: 16px;
	}


	.event__geolocation .link {
					padding-right: 0;
					border-bottom: 1px dashed #000;
					transition: all 0.5s ease;
				}
				.event__geolocation .link:hover, .event__geolocation .link:focus {
					border: none;
					text-decoration: none;
				}
				.event__geolocation .link::after {
					right: -26px;
				}
				.event__geolocation .link:hover::after {
					right: -31px;
				}
				#collapse1 {
					margin-top: 15px;
				}
		#map {
    width: 100%;
    height: 300px;
}

/* end -- event-sub */


/*********************************
-- others pages
	-- all-events
*********************************/


/* end -- all-events */


/*********************************
-- others pages
	-- contacts
*********************************/

		
.event-contacts h4 {
			margin-bottom: 10px;
			font-size: 18px;
		}
		.phone-group {
			margin-bottom: 30px; display: inline-block;
		}
		.event-contacts.event .event__phone {
			    padding-left: 26px;
    font-size: 20px;
    font-weight: 600;
    margin-right: 20px;
			margin-bottom: 10px;
		}
		.event-contacts.event .event__phone::before {
	
    width: 20px;
    height: 20px;

		}

.address {
	margin-bottom: 30px;
}
.social {
	margin-bottom: 10px;
	
}
.social img {
	transition: all 0.5s ease;
	width: 50px;
	filter: grayscale(1);
}
.social a:hover img {
	filter: grayscale(0);
}

/* end -- contacts */


/*********************************
-- others pages
	-- about
*********************************/


.attention-block {
			margin-bottom: 20px;
			    padding: 20px;
    background-color: #efefef;
    font-size: 18px;
		}
		.attention-block p {
			margin-bottom: 0;
		}
		.content.event .event__phone {
			    padding-left: 26px;
    font-size: 20px;
    font-weight: 600;
    margin-right: 20px;
			margin-bottom: 10px;
		}
		.content.event .event__phone::before {
	
    width: 20px;
    height: 20px;

		}
/* end -- about */


/*********************************
-- others pages
	-- rent-event
*********************************/

.event-gallery { 

  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
  -ms-flex-direction: column;
  -webkit-flex-flow: row wrap; 
  flex-flow: row wrap; 
  display: -webkit-box;
  display: flex;
}

.event-gallery a { 
  -webkit-box-flex: auto;
  -ms-flex: auto;
  flex: auto; 
  width: 200px; 
  margin: 10px; 
	overflow: hidden;
	position: relative;
}
	.event-gallery a::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0);
		z-index: 1;
	}
	.event-gallery a::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url(../images/icons/search.svg);
    background-size: cover;
    top: 0;
    left: 0;
    z-index: 2;
    right: 0;
    bottom: 0;
    margin: auto;
		opacity: 0;
		transition: all 0.5s ease-out;
	}
	.event-gallery a:hover::after {
		opacity: 1;
	}
	.event-gallery a:hover::before {
		background-color: rgba(0, 0, 0, .5);
	}
.event-gallery a img { 
  width: 100%; 
  height: auto; 
	transition: all 0.5s ease-out;
}
.event-gallery a:hover img {
	transform: scale(1.15);
}

/* end -- rent-event */


/*********************************
-- others pages
	-- rent-offices
*********************************/

	.rent-object {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 0px;
    margin-right: -10px;
    margin-left: -10px;
}

.rent-object__event-object, .rent-object__office-object {
    position: relative;
    display: flex;
    height: 100%;
    width: calc(100% / 12 * 6);
    flex-wrap: wrap;
    padding: 0px 10px;
}
		.event-object__bg {
			position: relative;
			height: 230px; background-size: cover; background-position: center; width: 100%
		}

.content .event-object__bg::before {
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 84, 143, 0.75);
    top: 0;
    left: 0;
    z-index: 1;
	
	 background-color: rgba(0, 84, 143, 0.0);
}


.rent-object__descr {
    position: absolute;
    color: #fff;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
	width: 100%;
	
	text-align: center;
	position: relative;
}

.rent-object__title {
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
	
	background-color: #00548f;
    padding: 10px 15px;
	height: 75px;
}
.rent-object__title a {
	color: #fff;
	font-size: 24px;
}
.rent-object__floor, .rent-object__square, .rent-object__cost {
    display: flex;
    margin: 0 5px;
    font-size: 18px;
}

.rent-object__floor, .rent-object__square, .rent-object__cost {
display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.rent-object__square sup {
	top: 8px;
}
		.rent-object__cost sup {
			top: 8px;
		}
.rent-object__descr .btn {
	display: flex;
	flex-direction: column;
	width: 140px;
	padding: 6px 16px;
	background-color: #ffc125;
    color: #000;
	
	position: absolute;
	top: -55px;
}



.rent-object__descr .btn:hover {
	background-color: #ffc83f;
}
/* end -- rent-offices */


/*********************************
-- others pages
	-- rent-offices-sub
*********************************/

.event-card-sub.event-card .title {
	top: initial;
    bottom: -330px;
    font-size: 32px;
	
	display: none;
}

.rent-offices-sub.event-card .title {
	top: initial;
	bottom: -356px;
}

.rent-offices-sub .rent-object {
	display: none !important;
}

	.rent-object {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 0px;
    margin-right: -10px;
    margin-left: -10px;
}
.rent-object__event-object, .rent-object__office-object {
    position: relative;
    display: flex;
    height: 100%;
    width: calc(100% / 12 * 6);
    flex-wrap: wrap;
    padding: 0px 10px;
}
		.event-object__bg {
			position: relative;
			height: 230px; background-size: cover;
			background-position: center; 
			width: 100%;
		}
/*
.event-object__bg::before {
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 84, 143, 0.75);
    top: 0;
    left: 0;
    z-index: 1;
}
*/


.rent-object__title {
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}
.rent-object__title a {
	color: #fff;
	font-size: 24px;
}
.rent-object__floor, .rent-object__square, .rent-object__cost {
    display: flex;
    margin: 0 5px;
    font-size: 18px;
}
.rent-object__square sup {
	top: 8px;
}
		.rent-object__cost sup {
			top: 8px;
		}
.rent-object__descr .btn {
	display: flex;
	flex-direction: column;
	width: 140px;
	padding: 6px 16px;
	
}
		.rent-offices-sub .rent-object__descr {
			color: #000;
			position: relative;
			margin-bottom: 40px;
			width: 100%;
			justify-content: flex-start;
		}
.rent-offices-sub .btn {
	margin-left: auto;
}
		.rent-offices-sub .rent-object__event-object {
			width: 100%;
			padding: 0;
		}
		.rent-offices-sub .rent-object {
			margin: 0;
		}
		.rent-offices-sub .rent-object__floor, .rent-offices-sub .rent-object__square, .rent-offices-sub .rent-object__cost {
    margin: 0 10px;
    font-size: 20px;
}
/* end -- rent-offices-sub */


/*******************************************************************
	end
	-- others pages
*******************************************************************/




/*******************************************************************
	mediaqueries
*******************************************************************/

@media (max-width: 1500px) {
	.hero-slider-wrap {
		width: 75%;
	}
	.dots {
		right: initial;
    	left: 21.1%;
	}
}

@media only screen and (max-width: 1064px) {
	.header-contacts, .progress-bar-wrap, .scroll-nav-wrap, .height-emulator, .flat-project_title_dec, .tabs-counter, .hor-mob-filter:before, .hor-mob-filter:after {
		 display: block; 
	}
}

@media (max-width: 1024px) {
	.header-nav a {
		font-size: 18px;
	}
	
	.event-object__bg a, .office-object__bg a {
		font-size: 26px;
	}
}

@media (max-width: 991px) {
/*
	header.main-header {
		z-index: 10;
	}
	
*/
	.header-nav {
		display: none;
	}
	.nav-button-wrap {
		display: block;
	}
	
	.header-contacts {
		top: 20px;
		padding-right: 0;
		right: initial;
		left: 40px;
		float: none;
		position: absolute;
	}
	
	.header-contacts li {
		display: inline-block;
		margin-left: 0;
    	margin-right: 20px;
	}
	
	.header-contacts li:before {
		display: none;
	}
	
	.header-contacts li a {
		font-size: 16px;
	}
	
	.header-address {
		top: 50px;
	}
	.header-address address {
		font-size: 16px;
	}
	.header-address br { 
		display: none;
	}
	
	.nearest-event.event .event__name-event {
		margin-bottom: 10px;
	}
	.rent-object__event-object .event__item .btn {
		margin: 10px 0 0 0;
	}
	
	
}


@media (max-width: 823px) {
	body {
		font-size: 14px;
	}
	.btn {
		font-size: 14px;
		padding-top: 6px;
		padding-bottom: 6px;
		border-width: 1px;
	}
	.btn-accent-icon {
    padding-left: 55px;
}
	.btn-icon::after {
    top: 12px;
    width: 11px;
    height: 11px;
}
.btn-icon {
    padding: 6px 40px 6px 15px;
}
	.btn-accent-icon::after {
    height: 25px;
    width: 25px;
}
	.btn-border {
		border-width: 1px;
	}
	
	.header-logo {
		top: 150px;
	}
	.title-sub {
		font-size: 20px;
		margin-top: 60px;
		line-height: 27px;
	}
/*
	.btn-accent-icon {
    	padding-left: 32px;
	}
*/
	.rent-object-btns .btn-accent-icon:first-child::after {
		display: none;
	}
	.rent-object-btns .btn-accent-icon:last-child::after {
		display: none;
	}
	.rent-object-btns {
		top: 80%;
	}
	
	.swiper-slide-info.event .event__date {
    font-size: 16px;
}
	.swiper-slide-info.event .event__title a {
		font-size: 30px;
		margin-bottom: 10px;
		display: inline-block;
	}
	nav.nav-inner {
		margin-top: 25px;
	}
	.sliding-menu a {
		height: 30px;
		line-height: 30px;
		font-size: 16px;
	}
	.dots {
		display: none;
	}
	.submen-dec:before {
		top: 10px;
	}
	
	.event-card__bg {
		height: 350px;
	}
	.event-card .title {
		font-size: 30px;
	}
	.event-wrap {
		padding: 10px;
	}
	
	.gallery-thumbs {
		max-width: 400px;
		    margin-left: 60px;
		    bottom: 15px;
	}
	.swiper-button-next, .swiper-button-prev {
		bottom: 32px;
		 width: 21px;
    height: 21px;
		z-index: 0;
	}
	.swiper-button-next {
		left: 500px;
	}
	.swiper-slide-thumb.event {
		padding-left: 42px;
	}
	.swiper-slide-thumb.event .event__number {
		top: -3px;
		font-size: 35px;
	}
	.swiper-slide-thumb.event:after {
		    top: -7px;
		    height: 38px;
	}
	.hero-slider:before {
		    width: 60px;
		    left: -50px;
	}
	.swiper-slide-info:before {
		    width: 50px;
		    left: 0px;
	}
	
	.nearest-event.event .event__title a {
		    font-size: 16px;
	}
	.nearest-event.event .event__subtitle {
		font-size: 13px;
	}
	.gallery-top .swiper-slide::before {
		background-color: rgba(0, 0, 0, 0.6);
	}
	
	.rent-offices-sub.event-card  .title {
		bottom: -252px;
		font-size: 36px;
	}
	
/*
	.event-card-sub .event-card__description {
		margin-top: -20px;
	}
	.event-card-sub.event-card .title {
		bottom: -248px;
		font-size: 26px;
	}
*/
	.event-card__description.event .event__line {
		display: none;
	}
	.event-card__description.event .event__date {
		margin-top: 0;
	}
	.event-card__description.event .event__place {
		margin-top: 0;
	}

	.rent-object-btns .btn-accent-icon {
		padding-left: 32px;
	}
	
} /* 823px */

@media (max-width: 768px) {
	.hero-wrap {
		height: 100%;
	}
	.dots {
		display: block;
	}
	.hero-slider-wrap {
		height: 65vh;
	}
	.gallery-top {
		height: 65vh;
	}
	.dots {
 		width: 400px; height: 58%;
	}
	
	.gallery-thumbs {
		    margin-left: 20px;    bottom: 20px;
	}
	.swiper-button-next {
		left: 90px;
	}
	.click.toggled {
		    width: 100%;
	}
	.swiper-button-next, .swiper-button-prev {
		bottom: 90px;
	}
}

@media (max-width: 736px) {
	/* main page */
	
	.header-contacts {
		width: 80%;
	}
	.header-address {
		top: 80px;
	}
	.title-sub {
		font-size: 18px;
		margin-top: 68px;
		line-height: 27px;
	}
	
	.header-logo {
		top: 165px;
	}
	.event-card__bg .title {
		top: 103px;
	}
	
	.header-logo img {
		height: 50px;
	}
	
	.hero-slider-wrap {
    height: 75vh;
}
	.gallery-top {
    height: 75vh;
}
	.dots {
		display: none;
	}
	.header-contacts li:before {
		display: none;
	}
	.swiper-slide-thumb.event:after {
		display: none;
	}
	.click.toggled {
    width: 82%;
    max-width: 100%;
}
	.nearest-event.event .event__date {
		    font-size: 20px;
	}	
	.nearest-event.event .event__date small {
    font-size: 11px;
}
	.nearest-event.event .event__img {
    width: 35px;
    height: 35px;
}
	.nearest-event.event .event__title a {
    font-size: 14px;
}
	.click {
		bottom: 65px;
	}
	.click.toggled {
    height: 166px;
}
	#sidebar-wrapper {
    max-height: 122px;
}
	.nav-social {
    height: 40px;
}
	.nav-social_title {
    top: 8px;
}
	.nav-social ul li a {
    margin-top: 4px;
}
	.group-btn {
    margin-top: 0px;
}
	/* end main page */
	
	
	/* others pages */
	.event-card__description.event .event__cost-tickets {
    margin-bottom: 20px;
    position: relative;
    right: 0;
    top: 0;
}
	.event-card__description.event .btn {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 20px;
}
	#map {
		height: 200px;
	}
	/* end others pages */
	
	
}/* 736px */

@media (max-width: 704px) {
	
	.rent-object {
		margin-top: 0;
	}
	.rent-object__event-object, .rent-object__office-object {
		width: 100%;
		margin-top: 20px;
	}
	
	.nearest-event .btn {
		margin-top: 10px;
	}
	.nearest-event.event .event__item {
		justify-content: flex-start;
	}
	
	.breadcrumb li a.active {
		max-width: 360px;
	}
	.event-card__description.event .event__name-event {
		margin-top: 5px;
	}
	.event-card__description.event .event__title {
		font-size: 28px;
		line-height: 32px;
		margin-bottom: 0px;
	}
	
	footer {
		margin-top: 20px;
	}
	
	.footer-logo {
		margin-bottom: 20px;
	}
	
	.rent-object__title a {
		font-size: 18px;
	}
	
}

@media (max-width: 568px) {
	body {
		padding: 0;
	}
	
	.rent-object {
		margin-right: 0px;
    margin-left: 0px;
	}
	
	
	.header-contacts {
		top: 0px;
		left: 15px;
	}
	.nav-button-wrap {
		top: 0px;
		right: 5px;
	}
	
	.header-address {
		top: 60px;
		left: 15px;
	}
	
	.header-logo {
		top: 145px;
	}
	
	.nav-holder {
		width: 300px;
	}
	.hero-slider:before, .swiper-slide-info:before {
		display: none;
	}
	.swiper-button-prev {
		left: 20px;
	}
	.swiper-button-next {
    left: 70px;
}
	.gallery-thumbs {
    bottom: -5px;
		    padding: 10px 0 5px 0px;
}
	.swiper-button-next, .swiper-button-prev {
    bottom: 50px;
}
	.sidebar-toggle {
    right: 0;
    bottom: 0;
}
	.hero-slider-wrap {
    height: 85vh;
}
	.gallery-top {
    height: 85vh;
}
	.nav-social_title {
    display: block;
}
		.click {
    bottom: 48px;
    right: 0;
}
	.click.toggled {
    width: 95%;
    max-width: 100%;
}
	.nearest-event.event .event__title a {
		margin-bottom: 5px;
    display: inline-block;
	}
	.nearest-event.event .event__subtitle {
		    line-height: 15px;
	}
	.nearest-event address {
		line-height: 15px;
	}
/*
	.nearest-event.event .event__name-event {
		max-width: 130px;
	}
*/
	.rent-offices-sub.event-card .title {
		font-size: 28px;
	}
	
	.event-card__description {
		margin-top: -60px;
	}
	
}

@media screen and (max-width: 450px) {
	/* main page */
	.title-sub {
		font-size: 16px;
		margin-top: 68px;
		line-height: 18px;
	}
	.hero-slider-wrap {
    width: 100%;
}

	.swiper-button-prev {
    left: 10px;
}
.swiper-button-next {
    left: initial;
    right: 10px;
}
	.swiper-button-next, .swiper-button-prev {
    bottom: 70px;
}
	.gallery-thumbs {
    margin-left: 40px;
    bottom: 52px;
    max-width: 81%;
    margin-right: 40px;
	}

	.click.toggled {
    height: 248px;
}
	#sidebar-wrapper {
    max-height: 206px;
}
	.nearest-event.event .event__item {
		    justify-content: flex-start;
		    flex-wrap: wrap;
	}
/*
	.event__item .btn {
		margin-left: 20px;
	}
*/
/*
	.nearest-event.event .event__date,
	.nearest-event.event .event__img,
	.nearest-event.event .event__name-event {
		margin-bottom: 10px;
	}
*/
/*
	.nearest-event.event .event__name-event {
    max-width: 260px;
}
*/
	.swiper-slide-info {
		padding-left: 20px;
	}
	.group-btn .btn {
		margin-bottom: 20px;
	}
	nav.nav-inner {
    margin-top: 80px;
}
	/* end main page */
  
	/* others pages */
	.event-card .title {
		font-size: 22px;
	}
	.event__age-rating {
		    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
	}
	
	.event-wrap {
		margin: -40px auto 0;
	}
	/* end others pages */
	
	.event-card__description.event .event__name-event {
		margin-top: 20px;
	}
	
	.event-card__description.event .event__title {
		font-size: 24px;
		line-height: 28px;
	}
	
}/* 450px */


@media (max-width: 375px) {
	.hero-slider-wrap {
		height: 80vh;
	}
	.gallery-top {
		height: 80vh;
	}
	.nav-button-wrap {
		right: 10px;
	}
	
	.event-card__bg {
		height: 430px;
	}
	.event-card__bg .title {
		top: 145px;
	}
	.header-logo {
		top: 180px;
	}
		.header-address {
		top: 85px;
	}
	.rent-object-btns {
		top: 70%;
	}
	.rent-object-btns .btn {
		margin-bottom: 10px;
	}
	.event__item .btn {
		margin-left: 0;
		margin-top: 10px;
	}
	#sidebar-wrapper {
		border-bottom: 1px solid #eaeaea;
	}
	
	.rent-offices-sub.event-card .title {
		bottom: -300px;
		font-size: 22px;
	}
}

@media (max-width: 320px) {
	.event-card__bg {
    height: 475px;
}
	.header-address {
    top: 110px;
}
	.event-card__bg .title {
    top: 175px;
}
	.header-logo {
    top: 210px;
}
	
	.rent-offices-sub.event-card .title {
		bottom: -356px;
	}
	
	.event-card .breadcrumbs {
		top: 160px;
		height: 70px;
	}
	
	.breadcrumb li a.active {
		max-width: 260px;
	}
	
}




/*******************************************************************
	end
	-- mediaqueries
*******************************************************************/


