@charset "UTF-8";
/* CSS Document */

html, body {
    width: 100%;
    /* min-height: 100%; */
    margin: 0;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	letter-spacing: 0.03em;
	min-height: calc(100% - 200px);
	position:  relative;
	line-height: 1.8em;
	background: #f1f1f1;
}
body.noscroll {
    overflow: hidden;
}

p {
	margin: 45px 0;
	line-height: 1.9em;
}

.content > div > p {
	padding: 0 8vw;
}

strong {
	font-weight: 600;
}

h1 {
	font-size: 2.2em;
	font-weight: 500;
	color: #333;
	padding: 0 40px;
	padding-bottom: 10px;
	line-height: 1.6em;
	border-bottom: 1px solid #999;
	margin: 20px auto 60px;
	text-align: center;
	/* display: table; */
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
	display: block;
	pointer-events: none;
	text-align: center;
}

h1:before {
	display: block;
	content: "";
	height: 130px;
	margin: -130px 0 0;
}


h1.main {
	text-transform: uppercase;
	color: #004488;
}

h2 {
	font-size: 1.25em;
	font-weight: 500
}

.part h2:before {
	display: block;
	content: "";
	height: 130px;
	margin: -130px 0 0;
}




ul {
	list-style: none;
	padding: 0;
}

li {
	padding-left: 21px;
	padding-bottom: 0.7em;
}
li:before {
	content: '—';
	margin-left: -20px;
	padding-right: 7px;
}

ul.marker li {
	border-top: 1px solid #ddd;
	margin: auto;
	width: auto;
	display: table;
	padding: 25px 20px 50px;
	position: relative;
	font-weight: 500;
}
ul.marker li:before {
	content: '';
	margin: 0 auto;
	padding-right: 0px;
	display: block;
	background: #1b77b8;
	width: 15px;
	height: 15px;
	position: absolute;
	left: calc(50% - 7.5px);
	top: -8px;
}



.site a {
	color: #3371AA;
	text-decoration: none;
	position: relative;
	padding-bottom: 3px;
	font-weight: 500;
}


.site a:hover {
	color: #1592d1;
}


.site a:after, .site a:before {
	content: '';
	display: block;
	width: 0%;
	height: 2px;
	background: #1592d1;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
	position: absolute;
	bottom: 0;
}
.site a:hover:after, .site a:hover:before {
	width: 50%;
}

.site a:after {
	left: 50%;
} 
.site a:before {
	right: 50%;
}




.content > div {
	padding: 65px 0px 90px;
}

.bg {
	background: #f1f1f1
}

.dot {
	position: relative;
}
.dot:before {
  content:"";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/bg-dot.svg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.4;
}


.content .main {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	/* min-height: calc(100vh - 230px); */
	height: auto;
	background: url("../images/bg-main.jpg") no-repeat 60% 20%;
	background-size: cover;
	padding-top: 130px;
	padding-bottom: 60px;
}

.maxwidth {
	display: block;
	width: calc(100% - 60px);
	max-width: 1500px;
	margin: auto;
	position: relative;
}

.normal > .maxwidth {
	position: initial;
}

.content > .maxwidth.bg {
	padding-top: 70px;
	padding-bottom: 70px;
	margin-top: 150px;
}

@media (min-width: 600px) and (max-width: 1920px) {
.content > .maxwidth.bg {
	padding-top: 70px;
	padding-bottom: 70px;
	margin-top: 10px;
}
}


.content > .maxwidth {
	padding: 10px 3.5vw 0px;
	width: calc(100% - 60px - 7vw);
	margin: 50px auto 70px;
}

.main h2 {
	font-weight: 400;
	font-size: 1.6em;
	line-height: 1.5em;
}


.column {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
	text-align: left;
}
.bg .column {
	margin-bottom: 10px
}
.column > div {
		margin-right: 50px;
}
.column.two > div {
	width: calc(50% - 25px);
}
.column.onethird > div:first-child {
	width: calc(66.6% - 60px);
}
.column.onethird > div:last-child {width: 33.3%;}
.column.onethird > div:last-child .btn {
	min-width: 170px;
}

.column > div:last-child {
	margin-right: 0;
}



.column h1 {
	text-align: left;
	display: inherit;
	margin: inherit;
	padding: 0 0 15px;
}

.form {
	width: calc(100% - 40px); 
    height: calc(100% + 20px);
    padding-left: 40px;
    border-left: 1px solid #888;
	align-items: center; 
	display: flex;
}

.form form {
	width: 100%;
}


.form label {
	display: block;
}

.form input {
	display: block;
	width: calc(100% - 20px);
	height: 40px;
	margin-bottom: 20px;
	border: 1px solid #c0c0c7;
	
}

.form button {
	padding: 20px 40px;
	border-radius: 30px;
	border: 1px solid #3371AA;
	background-color: #3371AA;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin-top: 20px;
	color: #fff;
	
	-webkit-transition: all 0.45s;
	-moz-transition: all 0.45s;
	transition: all 0.45s;

}

.form button:hover {
	border: 1px solid #33b0ee;
	background-color: #33b0ee;
	color:#FFFFFF;
}



.part > div {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #888;
	margin: 30px auto;
	padding: 20px 40px 50px;
	font-size: 14px;
	/* max-width: 1300px; */
}
.part > div:first-child {
	border-top: 1px solid #888;
	padding-top: 50px;
}
.part p {
	margin: 20px 0;
}
.part h2 {
}
.part > div > div:first-child {
	width: calc(28% - 6vw);
	margin-right: 6vw;
	text-align: center;
	min-width: 140px;
}
.part > div > div:nth-child(2) {
	width: calc(72% - 0vw);
}


.part > div > div:first-child img {
	width: 100%;
	max-width: 250px;
	margin: 20px 0 20px;
	min-width: 180px;
}

.front {
	display: block;
	width: calc(40% - 20px);
	background: url(../images/hotel-front-g.jpg);
	height: 230px;
	margin-right: 20px;
	background-size: cover;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}

.conf {
	display: block;
	width: 60%;
	background: url(../images/hotel-place-g.jpg);
	height: 230px;
	background-size: cover;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}


@media screen and (min-width: 2040px) {
.city > div h1 {
	font-size: 2.4em;
}

}


@media screen and (max-width: 1400px) {
.galery img {
	width: calc(33.3% - 10px);
	margin: 5px;
}

.city > div {
	width: calc(50% - 90px);
	margin: 15px;
	background: #f1f1f1;
	padding: 30px 30px;
	text-align: left;
}
.city > div h1 {
	font-size: 2.7vw;
}
.city > div h1:before {
	width: 4.8vw;
	height: 4.8vw;
	left: -5.5vw;
	top: calc(50% - 2.4vw);
}
}


@media screen and (max-width: 1200px) {
h1.headermain {
	font-size: 9vw !important;
}
.organizer {
    padding: 0px 4.5vw;
    top: 13%;
}
.organizer img {
    width: 100px;
    margin: auto;
}
.iconman {
    justify-content: space-around;
}
}

@media (min-width: 1024px) and (max-width: 1150px) {

	.menu a {
		font-size: 0.83em;
	}
}

@media screen and (max-width: 1024px) {
.content .main {
	min-height: 300px;
}
.menu ul {
	display: none;
}



#mobmenu + label + .mobmenu {
		    height: auto;
		    min-height: calc(100vh - 90px);
		    overflow-y: auto;
		    overflow-x: hidden;
		    background: #fff;
		    position: absolute;
		    right: -100vw;
		    top: -30px;
		    z-index: 30;
		    width: calc(100vw - (100vw - 100%) - 60px);
		    transition: all .4s ease-out;
		    -webkit-transition: all .4s ease-out;
		    -moz-transition: all .4s ease-out;
		    -ms-transition: all .4s ease-out;
		    -o-transition: all .4s ease-out;
		    /*box-shadow: inset 0px 1px 3px rgba(0,0,0,0.2);*/
		    text-align: left;
		    display: block;
		    /* border-top: 1px solid #ddd; */
		    padding: 30px 30px 70px;
		    padding-top: 130px;
}

.fix #mobmenu + label + .mobmenu {
	top: 0;
	padding-top: 110px;
}

#mobmenu:checked + label + .mobmenu, input#mobmenu:checked + label:after {
		right: 0;
		min-height: calc(100vh - 180px);
	}
.mobmenu .contact {
	/* position:absolute; */
	/* bottom: 10px; */
	text-align: center;
	/* width: calc(100% - 60px); */
	margin-top: 100px;
}	
	
input#mobmenu + label {
    /* padding: 0 25px; */
    /* margin-left: calc(100% - 260px); */
    float: right;
    display: block;
    height: 30px;
    margin: 20px 0;
    width: auto;
    position: relative;
}

input#mobmenu + label:before {
    content: '';
    width: 26px;
    height: 20px;
    display: block;
    background: url(../images/menu.svg) no-repeat 50% 50%;
    background-size: cover;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 35;
}	

#mobmenu:checked + label:before {
	background: url(../images/menu-close.svg) no-repeat 50% 50%;
    background-size: cover;

}
.mobmenu ul {
	text-align: center;
}
.mobmenu ul > li {
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	margin-top: -1px;
	text-transform: uppercase;
	padding: 0;
}

.mobmenu ul > li:before {
	display: none;
}

.mobmenu ul > li a {
	text-decoration: none;
	display: block;
	height: 100%;
	padding: 2.3vh 0;
}


.content > div > p {
	padding: 0 0vw;
}
.program > ul li {
    width: calc(50% - 40px);
    padding-left: 0;
}
.program > ul li:before {
	display: none;
}

.program > ul li:nth-child(2n) {
    padding-right: 0;
}

.program > ul li img {
    position: relative;
    padding: 0;
    max-width: inherit;
}

.column.two > div, .column.onethird > div {
	width: 100% !important;
	margin: 0px 0 50px;
	margin-right: 0;
}

.column > div:last-child {
	margin-bottom: 0;
}
	
.form {
	width: calc(100%);
    padding-left: 0px;
    border-left: none;
}
.part > div {
	padding: 20px 0 50px;
}
.galery img {
	width: calc(50% - 10px);
	margin: 5px;
}
}

@media screen and (max-width: 900px) {
body {
	font-size: 14px;
}
.content > div {
	padding: 45px 0 50px;
}

.content .main {
	padding-bottom: 50px;
}

p {
    margin: 30px 0;
}

h1 {
	margin: 10px auto 40px;
	padding: 0 20px 15px;
}
h1.headermain {
	font-size: 54px !important;
}
h1.headermain.home  {
	font-size: 12vw !important;
}
.organizer {
	position: inherit;
	margin: 40px 0 0;
	width: max-content;
	border: 0;
}
.date {
	margin-bottom: 70px;
}
.date span {
	display: block;
}
.date .day {
	border-right: 0;
	border-bottom: 1px solid #333;
	margin: 0 0 10px;
}

.iconman div{
	margin: 10px 15px;
}

.block_4 > div {
	margin: 40px 30px;
}
}

@media screen and (max-width: 768px) {
.btn {
	min-width: 50%;
}

.part > div > div {
	width: 100% !important;
	text-align: left !important;
}

.city > div {
	width: calc(100% - 0px);
	margin: 15px 0;
}

.city > div h1 {
    font-size: 5vw;
}
.city > div h1:before {
	width: 8vw;
	height: 8vw;
	left: -9.5vw;
	top: calc(50% - 4vw);
}
}

@media screen and (max-width: 600px) {

body {
	font-size: 13px;
}

.logo {
	width: 190px;
	height: 25px;
}	
.normal {
	top: 5px;
}
.top {
	top: 0;
}
input#mobmenu + label {
	height: 25px;
}

#mobmenu:checked + label + .mobmenu, input#mobmenu:checked + label:after {
	padding: 120px 15px 70px;
	width: calc(100vw - (100vw - 100%) - 30px);
	min-height: calc(100vh - 160px);
}

.fix #mobmenu + label + .mobmenu {
	padding: 90px 15px 70px;
}

.mobmenu .contact {
	/* width: calc(100% - 30px); */
	margin-top: 40px;
}

.mobmenu .contact a.phone:before, .mobmenu .contact a.mail:before {
	width: 35px;
	height: 35px;
	margin-right: 10px;
}
.mobmenu .contact a.phone, .mobmenu .contact a.mail {
	margin-right: 15px;
	font-size: 0.8em;
}

h1 {
    font-size: 1.8em;
    padding: 0 15px 10px;
    line-height: 1.3em;
}

h1.headermain {
	font-size: 9.3vw !important;
	margin: 20px 0;
}

h1.headermain.home  {
	font-size: 13vw !important;
}

h1.headermain span {
    background: #4477aa;
    padding: 0 15px;
}
.content .main {
	padding-top: 80px !important;
}
.main h2 {
	font-size: 1.17em;
}

.date {
	margin-bottom: 30px !important;
	padding: 12px 20px;
}

.organizer img {
    width: 70px;
    padding: 5px 0 0;
}

.content > div {
    padding: 30px 0 30px;
}

.maxwidth {
	display: block;
	width: calc(100% - 30px);
}

.content > .maxwidth {
    width: calc(100% - 7vw);
    margin: 30px auto 50px;
}

.content > .maxwidth.bg {
	width: calc(100% - 34px);
	padding: 40px 17px 40px;
	margin-top: 40px;
	margin-bottom: 40px;
}


.btn {font-weight: 500;display: block;padding: 20px 30px;margin: 10px 0;}

.program > ul {
	display: inherit;
	margin-left: 15px;
}
.program > ul:before {
	left: -5px;
}
.program > ul li {
	width: calc(100% - 25px);
	text-align: left;
	padding-right: 0;
	padding-left: 25px !important;
	margin-top: 20px !important;
}
.program > ul li:hover  {
	background: none;
}
.program > ul li .time:before {
	left: -35px !important;
	width: 12px;
	height: 12px;
}
.program > ul li:hover .time:before {
	background: #4477aa;
	width: 12px;
	height: 12px;
	margin: 0!important;
}
.time {
	font-size: 2em
}
.program p {
	margin: 10px 0 20px;
}

.column.two > div, .column.onethird > div {
    margin: 0px 0 30px;
}

.column.two > div:last-child, .column.onethird > div:last-child  {
	margin-bottom: 0
}

h2.place {
	padding-left: 70px;
}
h2.place:before {
	width: 50px;
	height: 50px;
	top: 0;
}

.iconman {
	margin-top: 30px;
}

.part > div {
	margin: 30px auto;
}
.part > div > div:first-child img {
	width: 14vw;
	margin-bottom: 10px;
}
.footer {
    padding: 40px 0 10px;
    margin-top: 20px;
}
.footer > div {
	display: block;
}
.footer > div > div:first-child {
    border-bottom: 1px solid #595e67;
    border-right: 0;
    margin-bottom: 30px;
    margin-right: 0;
    width: calc(100% - 20px);
    text-align: center;
}

.footer a.logo-bottom {
	padding: 0;
	margin: 0;
}
.galery img {
	width: calc(100% - 10px);
	margin: 5px;
}

.block_4 > div {
	width: calc(50% - 70px);
	max-width: 160px;
}
}

@media screen and (max-width: 480px) {

.city > div h1 {
    font-size: 6.5vw;
}
.city > div h1:before {
	width: 11vw;
	height: 11vw;
	left: -14vw;
	top: calc(50% - 5.5vw);
}

.block_4 > div {
	margin: 20px 30px;
}

}

@media screen and (max-height: 800px) {
.content .main {
    padding-top: 100px;
}

.date {
	margin: 10px 0 40px;
}
}

