body {
	position: relative;
	/*padding-bottom: 100px;*/
}

/*COMMON*/
a {
	text-decoration: none;
}

.clear {
	clear: both;
}

.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: box;
	display: flexbox;
	display: flex;
}

.flex-direction {-webkit-box-flex-direction: column;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}

.space-between {-webkit-box-justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

.flex-wrap {
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;	
}

.flex-center {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.flex-end {
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	-o-justify-content: flex-end;
	justify-content: flex-end;
}

.align-items-center {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;	
}

.align-items-end {
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	-o-align-items: flex-end;
	align-items: flex-end;
}



a.subscribe-button {
	font-family: 'Lato';
	font-weight: 700;
	font-size: 13px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	text-align: center;
	background: #959595;
	padding: 11px 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
}

a.common-button {
	min-width: 162px;
	font-size: 13px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: #b49868;
	padding: 10px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
}

a.common-button.type-a {
	font-family: 'Lato';
	font-weight: 900;
	
}

a.common-button.type-b {
	font-family: 'Lato';
	font-weight: 500;
}

a.common-button.type-b.disabled {opacity: 0.2;pointer-events:none;}

.content {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 15px;
	line-height: 21px;
	letter-spacing: 0.5px;
	color: #222;
}

.content h1 {
	font-size: 32px;
	line-height: 38px;
}

.content p {
	margin-top: 25px;
}

.content a {
        color: #b49868;
}

.content a.return {
	text-decoration: underline;
	color: inherit;
	display: inline-block;

}

.content b {
	font-family: 'Lato';
	font-weight: 700;
	color: #000000; 
}

.content ul,
.content ol {
	list-style: none;
    padding-left: 30px;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.content ul li {
       margin: 0 0 15px 0;
       position: relative;
}

.content ul li:before {
       content: '';
       background: #222;
       border-radius: 50%;
       width: 4px;
       height: 4px;
       position: absolute;
       top: 9px;
       left: -15px;
}

.content ol {
    list-style-type: decimal !important;
}

#languages_js {
	display: none;
}

.preloader {
	background: #fff;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 322;
}

.scroll-top-arrow {
        width: 35px;
        height: 35px;
        margin: 0px auto;
        position: fixed;
        right: -100%;
        bottom: 95px;
        left: calc(-100% + 1200px);
        z-index: 55;

        cursor: pointer;
}

.scroll-top-arrow > div {
        background-color: #b49868;
        height: 100%;
        width: 2px;
        margin: 0px auto;
        position: relative;

        -webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.scroll-top-arrow:hover > div {
        -webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	-o-transform: translateY(-5px);
	transform: translateY(-5px);
}

.scroll-top-arrow > div:before {
        content: '';
        background-color: #b49868;
        height: 50%;
        width: 2px;
        position: absolute;
        left: -4px;
        -webkit-transform: rotate(25deg);
        -ms-transform: rotate(25deg);
        -o-transform: rotate(25deg);
        transform: rotate(25deg);
}

.scroll-top-arrow > div:after {
        content: '';
        background-color: #b49868;
        height: 50%;
        width: 2px;
        position: absolute;
        right: -4px;
        -webkit-transform: rotate(-25deg);
        -ms-transform: rotate(-25deg);
        -o-transform: rotate(-25deg);
        transform: rotate(-25deg);
}
/*SUBSCRIPTION FORM*/
.form-background {
	background: rgba(4,4,4,0.5);
	display: none;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 222;
}

.subscription-from > .flex {
	width: 100vw;
	height: 100vh;
}

.subscription-from .form-outer {
	background: #fff;
	min-width: 640px;
	margin: auto;
	padding: 55px 25px;
	position: relative;
}

.subscription-from .form-outer .title {
	font-size: 14px;
	font-family: 'Lato';
	font-weight: 300;
	text-transform: uppercase;
	text-align: center;
	line-height: 20px;
	letter-spacing: 1px;
	color: #040404;
	
}
p.title {
	font-size: 14px;
	font-family: 'Lato';
	font-weight: 300;
	
	text-align: center;
	line-height: 20px;
	letter-spacing: 1px;
	color: #040404;
	
}
.subscription-from .form-outer .form-inner {
	text-align: center;
	width: 340px;
	margin: 35px auto 0px auto;
}

.subscription-from .form-outer .form-inner br {
	display: none;
}

.subscription-from .form-outer .form-inner input:not([type="submit"]) {
	font-size: 14px;
	font-family: 'Lato';
	font-weight: 100;
	color: #080808;
	background: none;
	border: 1px solid #e1e1e1;
	display: block;
	width: 100%;
	margin-bottom: 20px;
	padding: 6px 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.subscription-from .form-outer .form-inner .wpcf7-form-control-wrap {
	display: block;
	position: relative;
}

.subscription-from .form-outer .form-inner .wpcf7-form-control-wrap.name:after {
	content: '';
	background: url(../img/subscription_form_person_icon.png) no-repeat;
	display: block;
	width: 13px;
	height: 14px;
	position: absolute;
	top: 8px;
	right: 10px;
}

.subscription-from .form-outer .form-inner .wpcf7-form-control-wrap.email:after {
	content: '';
	background: url(../img/subscription_form_mail_icon.png) no-repeat;
	display: block;
	width: 14px;
	height: 10px;
	position: absolute;
	top: 11px;
	right: 10px;
}

.subscription-from .form-outer .form-inner input[type="submit"] {
	font-family: 'Lato';
	font-weight: 500;
	font-size: 14px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	min-width: 160px;
	background: #b49868;
	outline: none;
	border: none;
	display: inline-block;
	margin-top: 10px;
	padding: 12px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.subscription-from .form-outer .form-inner input[type="submit"]:hover {
	opacity: 0.5;
}

.subscription-from .form-outer .close {
	background: url(../img/close-icon.png) no-repeat center;
	border: 1px solid #adadad;
	width: 15px;
	height: 15px;
	padding: 7px;
	position: absolute;
	top: 25px;
	right: 25px;
	cursor: pointer;
}

.subscription-from .form-outer  div.wpcf7-response-output {
	right: -100%;
	left: -100%;
	margin-top: 35px !important;
	margin-right: auto !important;
	margin-left: auto !important;
}
/*SUBSCRIPTION FORM END*/
/*COMMON END*/

/*START-PAGE*/
.wrapper {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0px 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;position: relative;

}
/*menu .wrapper {
	padding: 0px 10px;
}*/
section.welcome {
	min-height: 100vh;
	background: url(../img/index_page_background.jpg) no-repeat center;
	background-size: cover;
	position: relative;
	z-index: 15;
}

.welcome .outer {
	position: relative;
	overflow: hidden;
/*	z-index: 20;
	background: url(../img/backside_background_1.jpg) no-repeat;
	background-size: cover;
	opacity: 0.15;*/
}

.welcome .outer .slideshow:after {
	content: '';
	background: rgba(0,0,0,0.3);
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0px;
	left: 0px;
}

.welcome .outer .slideshow .slide {
	opacity: 0;
	display: block;
	width: 100%;
	height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.welcome .outer .slideshow .slide img {
	width: 100%;
	margin: 0 auto;
	position: absolute;
	top: 0;
	right: -100%;
	left: -100%;
}

.welcome .outer-inner {
	min-height: 100vh;
}

.welcome .wrapper {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	z-index: 30;
	opacity: 1;
}

.welcome header {
	position: relative;
	background: transparent;
}


.welcome header .nav-logo-outer .logo{
        height: 40px;
	margin-top: -5px;
	margin-left: 40px;
}
.welcome header .nav-logo-outer .logo img {max-height: 100%;}

.welcome .brand div.name-outer {
	position: relative;
	overflow: hidden;
}

.welcome .brand div.name-outer span {
	font-size: 320px;
	font-family: 'Lato';
	font-weight: 200;
	letter-spacing: 20px;
	text-transform: uppercase;

	-webkit-text-fill-color: transparent;
	background: -webkit-linear-gradient(transparent, transparent),
	            url(../img/brand_mask.jpg) repeat;
	background: -o-linear-gradient(transparent, transparent);
	background-position: 50% 50%;
	-webkit-background-clip: text;
}

/*@keyframes text_mask {
	0% {background-position: 0% 50%;}
	50% {background-position: 100% 50%;}
	100% {background-position: 0% 50%;}
}

.welcome .brand a {
	animation:text_mask 45s infinite ease-in-out;
}*/

.welcome .socials {

}

.welcome .socials a {
	color: #fff;
	margin-left: 15px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.welcome .socials a:hover {
	opacity: 0.5;
}

.welcome .socials a:first-of-type {
	margin-left: 0;
}

.welcome footer {
	position: relative;
	background-color: transparent;
	align-items: center;
}

.welcome footer .part1 {
max-width: 100px;
}


.welcome footer .part1 a img{max-width: 100%;}


.welcome footer a.itunes {
width: auto;

margin-top: 5px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.welcome footer a.itunes img {
        max-width:100%;
        -webkit-filter: brightness(40);
	-o-filter: brightness(40);
	filter: brightness(40);
}

.welcome footer a.itunes:hover {
	opacity: 0.5;
}

.welcome footer a.youtube {
        margin-top: 5px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.welcome footer a.youtube:hover {
	opacity: 0.5;
}

.welcome footer .part2,
.welcome footer .part3 {
max-width: 300px;
text-align: right;

padding:25px;

-webkit-transition: 1.5s;
	-o-transition: 1.5s;
	transition: 1.5s;

-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.welcome footer .part3 {
	max-width: 330px;
	padding: 15px 25px;
}


.welcome footer .part2 a img,
.welcome footer .part3 a img {
max-width: 60%;
	display: inline-block;
-webkit-transition: 1.5s;
	-o-transition: 1.5s;
	transition: 1.5s;
}

.welcome footer .program {
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
display:block;
max-width: 100%;
}

.welcome footer .program:hover {
	opacity: 0.5;
}

.welcome footer .program p.title {position: relative;}

.welcome footer .program p.title span {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 16px;
	font-style: italic;
        letter-spacing: 0.5px;
	color: #fff;
        text-align: right;
        border: 1px solid #fff;
        background: url(../img/brand_mask.jpg) 21% 16%;
        position: absolute;
        right: 0;
        bottom: 0;
        padding: 0px 3px 2px 3px;
        -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

        -webkit-transition: 1.5s;
	-o-transition: 1.5s;
	transition: 1.5s;
}
/*
.welcome footer .part2.active {
        background: #fff;

}

.welcome footer .part2.active a img {
        -webkit-filter: brightness(0%);
	-o-filter: brightness(0%);
	filter: brightness(0%);
}

.welcome footer .part2.active p.title span {
        color: #000;
}
*/
.maximized-menu-index {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	z-index: 300;
}

.maximized-menu-index > div {
	height: 100%;
}

.maximized-menu-index .menu-outer {
	background: url(../img/maximixed_menu_background_1.png) no-repeat;
	background-size: cover;
	width: 50%;
	position: relative;
   
}

.maximized-menu-index .menu-outer .close-button {
	width: 30px;
	height: 30px;
	outline: 1px solid #adadad;
	margin: 20px;
        padding: 7px 5px 3px 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
position: relative;
top: 25px;
right: 300px;
}

.maximized-menu-index .menu-outer .close-button span {
	background: url(../img/close-icon.png) no-repeat;
	display: block;
	width: 15px;
	height: 15px;
	margin: 0 auto;
}

.maximized-menu-index .menu-outer nav {

}

.maximized-menu-index .menu-outer nav ul {
	width: 350px;

}

.maximized-menu-index .menu-outer nav ul li {
	margin-bottom: 16px;
	padding-bottom: 3px;
	position: relative;
	overflow: hidden;
}

.maximized-menu-index .menu-outer nav > ul > li:first-of-type {
margin-bottom: 50px;
border-bottom: 1px solid #8a8a8a !important;
}

.maximized-menu-index .menu-outer nav ul li a {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 20px;
	text-transform: uppercase;
	color: rgba(0,0,0,0);
	display: inline-block;
	position: relative;
}

.maximized-menu-index .menu-outer nav ul li a:after {
	content: attr(attr-text);
	color: #8a8a8a;
	position: absolute;
	left: 0px;
        bottom: 0;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.maximized-menu-index .menu-outer nav ul li a:hover:after {
	color: #000;
}

.maximized-menu-index .menu-outer nav ul li a.sub_menu {
	
}

.maximized-menu-index .menu-outer nav ul li ul {
	display: none;
	width: 350px;
	margin-top: 5px;
	padding-top: 7px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.maximized-menu-index .menu-outer nav > ul > li .line {display:none;
	background: #8a8a8a;
	width: 0px;
	height: 1px;
	opacity: 1;
	position: absolute;
	bottom: 0px;
	left: 0;
	-webkit-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
}

.maximized-menu-index .menu-outer nav > ul > li:hover .line {
	width: 100%;
}

.maximized-menu-index .menu-outer nav > ul > li > ul > li .line {
	display: none;
}

.maximized-menu-index .menu-outer nav > ul > li > a + ul + .line {
	top: 25px;
}

.maximized-menu-index .menu-outer nav ul li ul li {
	position: relative;
	margin-bottom: 7px;
	padding-left: 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.maximized-menu-index .menu-outer nav ul li ul li:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 10px;
	height: 1px;
	background: #8a8a8a;
	display: block;
}

.maximized-menu-index .menu-outer nav ul li ul li a {
	font-size: 16px;
}

.maximized-menu-index .empty-item {
	width: 50%;
	background: #d5bda0;
	opacity: 0.8;
}

.maximized-menu {
	position: fixed;	
	top:0;
        left:0;
	width: 37vw;
	height: 100vh;
	z-index: 300;
}

.maximized-menu.type-a {
	background: url(../img/maximixed_menu_inner_type_a.png) no-repeat;
	background-size: cover;
}


.maximized-menu.type-b {
	background: url(../img/maximixed_menu_inner_type_b.png) no-repeat;
	background-size: cover;
}

.maximized-menu .menu-outer {
    margin-left: 15vw;
}

.maximized-menu .menu-outer .close-button {
	width: 30px;
	height: 30px;
	outline: 1px solid #fff;
	margin: 30px 20px;
	cursor: pointer;
	position: relative;
}

.maximized-menu .menu-outer .close-button span {
	display: block;
	width: 18px;
	height: 1px;
	background: #fff;
	margin: auto;
}

.maximized-menu .menu-outer .close-button span:nth-of-type(1) {
	position: absolute;
	top: 50%;
	left: 20%;
	-webkit-transform: rotate(135deg);
  	-ms-transform: rotate(135deg);
  	-o-transform: rotate(135deg);
  	transform: rotate(135deg);
}

.maximized-menu .menu-outer .close-button span:nth-of-type(2) {
	position: absolute;
	top: 50%;
	left: 20%;
	-webkit-transform: rotate(45deg);
  	-ms-transform: rotate(45deg);
  	-o-transform: rotate(45deg);
  	transform: rotate(45deg);
}

.maximized-menu .menu-outer nav {
	margin-top: 40px;
	margin-left: 20px;
}

.maximized-menu .menu-outer nav ul {

}

.maximized-menu .menu-outer nav > ul > li:first-of-type {
margin-bottom: 35px!important;
border-bottom: 1px solid #fff;
}
.maximized-menu .menu-outer nav ul:not(.sub-menu) li {
	margin-bottom: 13px;
	padding-bottom: 2px;
	position: relative;
	overflow: hidden;
}

.maximized-menu .menu-outer nav ul li a {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 20px;
	text-transform: uppercase;
	color: rgba(0,0,0,0);
	display: inline-block;
	position: relative;
}

.maximized-menu .menu-outer nav ul li a:after {
	content: attr(attr-text);
	color: #fff;
	position: absolute;
	left: 0px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.maximized-menu .menu-outer nav > ul > li > ul {
	display: none;
	margin-top: 16px;
	padding-top: 2px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.maximized-menu .menu-outer nav > ul > li .line {display:none;
	background: #fff;
	width: 0px;
	height: 1px;
	opacity: 1;
	position: absolute;
	bottom: 0px;
	left: 0;
	-webkit-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
}

.maximized-menu .menu-outer nav > ul > li:hover .line {
	width: 100%;
}

.maximized-menu .menu-outer nav > ul > li > ul > li .line {
	display: none;
}

.maximized-menu .menu-outer nav > ul > li > a + ul + .line {
	top: 25px;
}

.maximized-menu .menu-outer nav ul li ul li {
	position: relative;
	margin-bottom: 7px;
	padding-left: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.maximized-menu .menu-outer nav ul li ul li:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 10px;
	height: 1px;
	background: #fff;
	display: block;
}

.maximized-menu .menu-outer nav ul li ul li a {
	font-size: 16px;
}
/*START-PAGE END*/

/*HEADER MAIN*/

header {
	background: #fff;
	width: 100%;
	padding: 30px 0 28px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: fixed;
	top:0;
	z-index: 101;
	
}

header .label-burger {
font-family: 'Lato';
	font-weight: 200;
	font-size: 16px;
text-transform: uppercase;
color: #fff;
margin-top: 7px;
margin-right: 8px;
}

header .button-menu ul{
	width: 25px;
	height: 25px;
}

header .button-menu ul li.start-page {
        background: #fff;
}
header .button-menu ul li {
	margin: 5px 0;
    width: 35px;
    height: 2px;
    background: #000;
    cursor: pointer;
}



header .menu-burger {
  	margin: 0 auto;
  	padding-left: .75em;
  	position: relative;
  	z-index: 50;
  	cursor: pointer;
}

header .menu-global {
  	position: absolute;
  	left: 0;
  	height: 4px;
  	background: #fff;
  	width: 100%;
  	cursor: pointer;
}

header .menu-top {
	top: 0;
	cursor: pointer;
}

header .menu-middle {
	top: 10px;
	cursor: pointer !important;
}

header .menu-bottom {
	top: 20px;
	cursor: pointer !important;
}

header .menu-top-click {
  	top: 15px;
  	-webkit-transform: rotate(45deg);
  	-ms-transform: rotate(45deg);
  	-o-transform: rotate(45deg);
  	transform: rotate(45deg);
  	-webkit-transition:  0.55s 0.5s;
  	-moz-transition:  0.55s 0.5s;
  	-o-transition:  0.55s 0.5s;
  	transition:  0.55s 0.5s;
}

header .menu-middle-click {
	opacity: 0;
}
	
header .menu-bottom-click {
	 top: 15px;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transition:  0.75s;
	-moz-transition:  0.75s;
	-o-transition:  0.75s;
	transition:  0.75s;
}

header .wrapper .title-outer {
	min-width: 26vw;
	margin-left: 75px;
}

header .wrapper .title-outer p.title {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #373636;
}

header .socials {
	margin-top: 5px;
	margin-right: 15px;
}

header .socials a {
	color: #b49868;
	margin-left: 15px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

header .socials a:hover {
	opacity: 0.5;
}

header .socials a:first-of-type {
	margin-left: 0;
}


header .info form {
	position: relative;
	pointer-events: none;
}

header .info .form-outer {
	width: 220px;
	cursor: pointer;
}

header .info .form-outer form input[type="text"] {
	font-family: 'Lato';
	font-weight: 300;
  	font-style: italic;
	font-size: 14px;
	color: #676767;
	outline: none;
	border: 1px solid #b49868;
	background: transparent;
	padding: 2px 5px 3px 5px;
	width: 223px;
}

header .info .form-outer.form-outer-index form input[type="text"] {
         color: #fff;
         border: 1px solid #fff;
}


header .info .form-outer.form-outer-index form input[type="text"]::-webkit-input-placeholder {
       color: #fff;
}



header .info form input[type="text"]::-webkit-input-placeholder {
	font-family: 'Lato';
	font-weight: 300;
  	font-style: italic;
	font-size: 14px;
	color: #676767;
}

header .info form input[type="submit"] {
	color: rgba(0,0,0,0);
	display: block;
	background: url(../img/submit_background.png) no-repeat;
	background-size: cover;
	outline: none;
	border: none;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 4px;
	right: 5px;
        display: none;

	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

header .info form input[type="submit"]:hover {
	opacity: 0.5;
}

header .info .language-button-outer {
        margin-left: 15px;
	position: relative;
}

header .info .language-button-outer .language-button {
	background: #575757;
	width: 24px;
	height: 24px;
	cursor: pointer;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

header .info .language-button-outer .language-button:hover {
	opacity: 0.5;
}

header .info .language-button-outer .language-button > div {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 14px;
	color: #fff;
	margin: 0 auto;
}

header .info .language-button-outer .language-list {
	background: #575757;
	display: none;
	width: 24px;
	padding: 4px 0;
	position: absolute;
	top: 0px;
	left: 0px;
}

header .info .language-button-outer .language-list li {
	text-align: center;
	margin-bottom: 3px;
}

header .info .language-button-outer .language-list li a {
	font-family: 'Lato';
	font-weight: 500;
	font-size: 14px;
	color: #fff;
}
/*HEADER MAIN END*/


/*MAIN FOOTER */

footer {
	padding: 15px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	position: fixed;
	bottom: 0;
	z-index: 200;
	background: #efefef;
}

footer .copyright {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 16px;
	color: #8f8f8f;
}

footer .tel {
	font-family: 'Lato';
	font-weight: 900;
	font-size: 14px;
	letter-spacing: 0.5px;
	color: #696969;
}

footer .info {
	margin-right: 30px;
position: relative;
}

footer .info a {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 12px;
	text-transform: uppercase;
	color: #6a6a6a;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
    position: absolute;
    top: -7px;
    right: 0;
    min-width: 150px;
}

footer .info a:hover {
	opacity: 0.5;
}

footer .info + div a {
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

footer .info + div a:hover {
	opacity: 0.5;
}

footer .mama-music-link-outer {
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

footer .mama-music-link-outer:hover {
	opacity: 0.5;
}
/*MAIN FOOTER END*/

/*AFISHA-PAGE*/
.afisha-outer {
	position: relative;
	overflow: hidden;
/*	z-index: 20;
	background: url(../img/backside_background_1.jpg) no-repeat;
	background-size: cover;
	opacity: 0.15;*/
}

.afisha-outer > img {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: -1;

	opacity: 0.1;
}

section.afisha {
	margin-top: 100px;
	padding-bottom: 100px;
}

section.afisha .item {
	padding: 23px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 1px solid #d7d7d7;
	border-bottom: 1px solid #d7d7d7;
}

section.afisha .full-item:not(:nth-child(1)) .item {
	margin-top:-1px;
}

section.afisha .item .table-col {
        min-height: 35px;
}

section.afisha .item .table-col:not(:nth-last-child(1)) {
        margin-bottom: 5px;
}

section.afisha .item .table-col .city {
	margin-left: 0;
}

section.afisha .item .table-col .theme {
	margin-left: 0;
}

section.afisha .item .table-col .time {
	margin-right: 0;
}

section.afisha .item .date {
	font-family: 'Lato';
	font-weight: 900;
	font-size: 16px;
	color: #212121;
}

section.afisha .item .city {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 16px;
	color: #b49868;
}

section.afisha .item .city i {
	margin-right: 10px;
}

section.afisha .item .place {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 16px;
        line-height: 20px;
	color: #212121;
}


section.afisha .item .theme {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 16px;
        line-height: 20px;
	color: #212121;
	text-transform: uppercase;
	text-decoration: none;position: relative;
}

section.afisha .item .theme:after {

content: '';
display: block;
width: 30px; 
height: 15px;
background: url(../img/scroll_down.png) no-repeat;
    background-size: 66% 66%;
position: absolute;
top: 5px;
right:-45px;

}

section.afisha .item .time {
	font-family: 'Lato';
	font-weight: 900;
	font-size: 16px;
	color: #212121;
}


section.afisha .details {display: none;
	background: #fff;
	padding-bottom: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
section.afisha .full-item {
	position: relative;
	display: block;
}

section.afisha .details .heading {

}

section.afisha .details .heading .title-outer {
	width: 50%;
}

section.afisha .details .heading p.title {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 20px;
	text-transform: uppercase;
	text-align: center;
	color: #3c3c3c;
}

section.afisha .details .heading .close-button {
	width: 30px;
	height: 30px;
	outline: 1px solid #b9b9b9;
	margin-right: 20px;
	cursor: pointer;
}
section.afisha .details .heading .close-button span {
	background: url(../img/close-icon.png) no-repeat;
	display: block;
	width: 15px;
	height: 15px;
	margin: auto;
}

section.afisha .details .info {

}

section.afisha .details .info .content {
	width: 45%;
}

section.afisha .details .info .content p:first-child { margin-top: 15px;}

section.afisha .details .info .player {
	width: 50%;
	padding-top: 20px;
        position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}

section.afisha .details .info .player > iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 20px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.afisha .details .info .player img {
        max-width: 100%;
}
/*AFISHA-PAGE END*/

/*NEWS SECTION*/
section.news {
	margin-top: 100px;
	padding-bottom: 80px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.news .items-outer {
/*	height: 80vh;*/
	overflow: hidden;
}

section.news .items-outer a {
transitions: 0.75s;
}



section.news .item {
	width: 31.5%;
	margin-bottom: 20px;
}

section.news .item .pics-outer {
	height: 235px;
        position:relative;
	overflow: hidden;
}

section.news .item .pics-outer img {
	max-width: 100%;
        margin: auto;
        position: absolute;
        top: 0;
        right: -100%;
        left: -100%;

	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;

	-webkit-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}

section.news .item:hover .pics-outer img {
	-webkit-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	filter: grayscale(0%);
}

section.news .item .date {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 13px;
	color: #8e8d8d;
	margin-top: 15px;
}

section.news .item p.title {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 16px;
	color: #212121;
	margin-top: 15px;
}

section.news .item .more {
	font-family: 'Lato';
	font-weight: 300;
  	font-style: italic;
	font-size: 13px;
	color: #8e8d8d;
	text-decoration: none;
	display: inline-block;
	margin-top: 15px;
}


section.news .items-outer a:hover .more{
color: #b49868;
}

section.news .scroll-top, 
section.news .scroll-down{
	margin: 10px auto 0 auto;
}

/*NEWS SECTION END*/


/*SINGLE NEWS*/

section.single-news {
	margin-top: 100px;
        margin-bottom: 100px;
}
.page-id-1043 section.news, .single-inspiring_delivery section.single-news {
	margin-top: 25px;
	
}
.single-inspiring_delivery section.single-news {
	margin-bottom: 60px;
}
section.single-news .items-outer {
font-family: 'Lato';
    font-weight: 400;
    font-size: 16px;
    color: #212121;
}


section.single-news .items-outer .content p.title {

}

section.single-news .items-outer .content {
	width: 100%;
}

section.single-news .items-outer .outer {
width: 50%;
}


section.single-news .items-outer .pic-outer{
padding-top: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;	
}

section.single-news .items-outer .pic-outer.single {
	
}

section.single-news .items-outer .pic-outer.twice {
      
}

section.single-news .items-outer .pic-outer.twice a {
      
}

section.single-news .items-outer .pic-outer.twice > a {
        width: 48.5%;
        margin-bottom: 10px;
        height: 274px;
       	position: relative;
       	overflow: hidden;
}
section.single-news .items-outer .pic-outer.twice  a img {
	display: block;
    position: absolute;
    width: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

section.single-news .items-outer .pic-outer.fourth {
      
}

section.single-news .items-outer .pic-outer.fourth a {
       width:48.75%;
       margin-bottom: 10px;
       height: 185px;
       position: relative;
       overflow: hidden;
}

section.single-news .items-outer .pic-outer.fourth a img {
	display: block;
    position: absolute;
    width: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
}

section.single-news .items-outer .pic-outer.ninth {
        
}

section.single-news .items-outer .pic-outer.ninth a {
       width: 32%;
       margin-bottom: 10px;
       height: 160px;
       position: relative;
       overflow: hidden;
}
section.single-news .items-outer .pic-outer.ninth a img {
	display: block;
    position: absolute;
    width: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
}

section.single-news .items-outer .pic-outer img {
	max-width: 100%;
-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;

	-webkit-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}

section.single-news .items-outer .pic-outer a:hover img {
-webkit-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	filter: grayscale(0%);
}



section.single-news .image-gallery-outer {
width: 480px; 

float:right;

padding-left: 15px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

}



section.single-news .image-gallery li {
    margin: 0;

}

section.single-news .image-gallery li img {max-width: 100%;}

.lSSlideOuter .lSPager.lSGallery {
width: 100% !important; 
}

section.single-news .lSPager {
display:flex;
justify-content: center;
}

section.single-news .lSPager li {

width: 75px!important;
height: 60px;
margin: 0;
}

section.single-news .lSSlideOuter .lSPager.lSGallery img {
max-width: auto !important;
    max-height: 100%;
}


.lightboxOverlay {
	top: -100px;
}
/*SINGLE NEWS END*/
/*SUBSCRIBE SECTION*/

section.subscribe {
	margin-top: 100px;
	margin-bottom: 75px;
}

section.subscribe .choice {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 14px;
        line-height: 18px;
	letter-spacing: 1.5px;
	color: #4f4f4e;
}

section.subscribe .content-outer {
	padding: 50px 0 30px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.subscribe .content-outer .items-outer {
	width: 49%;
}

section.subscribe .content-outer .items-outer .item {
	width: 47%;
	outline: 1px solid #e1e1e1;
	padding-bottom: 15px;
	cursor: pointer;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.subscribe .content-outer .items-outer .item .heading {
	
	background: #959595;	
	width: 100%;
        min-height: 100px;
	padding: 20px 0;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.subscribe .content-outer .items-outer .item .heading p {
font-family: 'Lato';
	font-weight: 900;
	font-size: 12px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1.5px;
        line-height: 20px;
	text-align: center;
        margin: auto;
}

section.subscribe .content-outer .items-outer .item.active .heading,
section.subscribe .content-outer .items-outer .item:hover .heading {
	background: #1d1d1d;
}

section.subscribe .content-outer .items-outer .item .heading.small {
	text-transform: lowercase;
}

section.subscribe .content-outer .items-outer .item .common-outer {
	width: 100%;
  	height: 100%;
min-height: 600px;
position: relative;
}

section.subscribe .content-outer .items-outer .item .common-outer .item-info {
	margin: 25px 10px;
	
}

section.subscribe .content-outer .items-outer .item .common-outer .item-info p {
	font-family: 'Lato';
	font-size: 13px;
	line-height: 19px;
	font-weight: 400;
	color: #212121;
	margin-top: 15px;
	padding-left: 25px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.subscribe .content-outer .items-outer .item .common-outer .item-info p:last-of-type {
margin-bottom: 50px;
}

section.subscribe .content-outer .items-outer .item .common-outer .item-info p span {
	text-decoration: underline;
}

section.subscribe .content-outer .items-outer .item .common-outer .item-info p:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	height: 14px;
	background: url(../img/subscribe_marker.png);
}

section.subscribe .content-outer .items-outer .item .link-outer {
	width: 100%;
	height: 65px;
	padding: 15px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
position: absolute;
bottom:0;
}

section.subscribe .content-outer .items-outer .item .link-outer a.subscribe-button  {
	background: #959595;
	margin: auto;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

section.subscribe .content-outer .items-outer .item.active .link-outer a.subscribe-button,
section.subscribe .content-outer .items-outer .item:hover .link-outer a.subscribe-button {
	background: #3a3a3a;
	margin: auto;
}

section.subscribe .content-outer .info {
	width: 48.5%;
}

section.subscribe .content-outer .info p.title {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 16px;
line-height: 22px;
	color: #989897;
	text-transform: uppercase;
}

section.subscribe .content-outer .info p.title span:nth-child(2) {
	display: none;
}

section.subscribe .content-outer .info .content div:nth-child(2) {
	display: none;
}

section.subscribe .content-outer .info .form-outer {

}

section.subscribe .content-outer .info form {
	margin-top: 30px;
}

section.subscribe .content-outer .info form label, 
section.subscribe .content-outer .info form input {
	display: block;
}

section.subscribe .content-outer .info form label {
	font-family: 'Lato';
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.5px;
	color: #4f4f4e;
}

section.subscribe .content-outer .info form input[type="text"] {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.5px;
	color: #4f4f4e;
	width: 100%;
	height: 40px;
	border: 1px solid #e1e1e1;
	outline: none;
	margin: 10px 0 15px 0;
	padding: 0 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


section.subscribe .content-outer .info form textarea {
        font-family: 'Lato';
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.5px;
	color: #4f4f4e;
	width: 100%;
	height: 95px;
	border: 1px solid #e1e1e1;
        resize: none;
	outline: none;
	margin: 10px 0 15px 0;
	padding: 15px 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
section.subscribe .content-outer .info form input[type="submit"] {
	font-family: 'Lato';
	font-size: 14px;
	color: #fff;
	text-align: center;
	letter-spacing: 1px;
	text-transform: uppercase;
	min-width: 160px;
	background: #b49868;
	outline: none;
	border: none;
	margin-top: 30px;
	padding: 9px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
position: relative;top:45px;
} 

section.subscribe .content-outer .info form input[type="submit"]:hover {
	opacity: 0.5;
}

section.subscribe .content-outer .info form img.ajax-loader {
	display: none !important;
}
/*SUBSCRIBE SECTION END*/

/*PHOTOGALLERY SECTION*/

section.gallery {
	margin-top: 130px;
	padding-bottom: 100px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.gallery .items-outer {

}

section.gallery .items-outer .item-big {
	height: calc(100vh - 220px);
}

section.gallery .items-outer .item-big {
	width: 34%;
}

section.gallery .items-outer .item {
	width: 26.5%;
	height: calc(100vh - 220px);
}

section.gallery .items-outer .item-big {
	
	width: 34%;

}

section.gallery .items-outer .item .pic-outer {
	

}

section.gallery .items-outer .item-big .pic-outer img {
	width: 100%;


}

section.gallery .items-outer .item .sub-items-outer {
	height: 28%;

}

section.gallery .items-outer .item .sub-items-outer .sub-item-big {
	width: 100%;
}

section.gallery .items-outer .item .sub-items-outer .sub-item-big .pic-outer {
	height: 100%;
}

section.gallery .items-outer .item .sub-items-outer .sub-item-small {
	width: 48%;
}

section.gallery .items-outer .item .sub-items-outer .sub-item-small .pic-outer {
	height: 100%;
}

section.gallery .items-outer .item .sub-items-outer .sub-item-big .pic-outer img{
	max-width: 100%;
}

section.gallery .items-outer .item .sub-items-outer .sub-item-small .pic-outer img{
	max-width: 100%;
}

section.gallery .scroll-down {
	margin: 20px auto;
}


section.gallery .items-outer .item-big,
section.gallery .items-outer .item .sub-items-outer .sub-item-big,
section.gallery .items-outer .item .sub-items-outer .sub-item-small {
	background-position: top center !important;
	position: relative;
}

section.gallery .items-outer .item-big .mask,
section.gallery .items-outer .item .sub-items-outer .sub-item-big .mask,
section.gallery .items-outer .item .sub-items-outer .sub-item-small .mask {
	position: absolute;
	top: 0;
	z-index: 30;
	width: 100%;
	height: 100%;
	background: #b49868;
	opacity: 0;
	-webkit-transition: 0.75s;
	-o-transition: 0.75s;
	transition: 0.75s;
}

section.gallery .items-outer .item-big .mask .item,
section.gallery .items-outer .item .sub-items-outer .sub-item-big .mask .item,
section.gallery .items-outer .item .sub-items-outer .sub-item-small .mask .item {
	width: 65px;
	height: 55px;
	border: 1px solid #fff;
	margin: auto;
	opacity: 0.6;
}

section.gallery .items-outer .item-big .mask .item .line1,
section.gallery .items-outer .item .sub-items-outer .sub-item-big .mask .item .line1,
section.gallery .items-outer .item .sub-items-outer .sub-item-small .mask .item .line1 {
	width: 30px;
	height: 1px;
	background: #fff;
	margin: auto;
	position: relative;
}

section.gallery .items-outer .item-big .mask .item .line2,
section.gallery .items-outer .item .sub-items-outer .sub-item-big .mask .item .line2,
section.gallery .items-outer .item .sub-items-outer .sub-item-small .mask .item .line2 {
	position: absolute;
	top:-14px;
	left: 14px;
	width: 29px;
	height: 29px;
	border-left: 1px solid #fff;

}


section.gallery .items-outer .item-big .mask:hover,
section.gallery .items-outer .item .sub-items-outer .sub-item-big .mask:hover,
section.gallery .items-outer .item .sub-items-outer .sub-item-small .mask:hover {
	position: absolute;
	top: 0;
	z-index: 30;
	width: 100%;
	height: 100%;
	background: #010101;
	opacity: 0.6;
	cursor: pointer;
}

section.gallery .items-outer .view-more {
       position: relative;
}

section.gallery .view-more p.title {
        font-family: 'Lato';
	font-weight: 300;
	color: #000000; 
        margin: 20px auto;

}


section.gallery .scroll-down {
    position: absolute;
    right: 15px;
    animation: mouse_hint_anim 5s infinite ease-in-out;
}

.full-gallery {
	display: none;
	padding: 50px 0 50px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100vh;
	z-index: 111;
	background: #1e1e1e;
}

.full-gallery .items-outer {
	max-width: 640px;
	height: calc(100vh - 100px);
	margin: 0 auto;
}

.full-gallery .items-outer .controls {
	position: absolute;
	bottom: -40px;
	left: 15%;
	z-index: 55;
}

.full-gallery .items-outer .controls .left {
	cursor: pointer;
}

.full-gallery .items-outer .controls .right {
	cursor: pointer;
	margin-left: 15px;
}

.full-gallery .items-outer .item {
        width: 100%;
	height: 100%;
	position: relative;
}

.full-gallery .items-outer .item .pic-outer {
	max-width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.full-gallery .items-outer .item .pic-outer img {
	display: block;
        max-width: 100%;
	max-height: 100%;
}

.full-gallery .items-outer .name {
	margin-top: 20px;
	position: absolute;
	right: 0px;
	bottom: -30px;
	left: 0px;
	margin: 0 auto;
}

.full-gallery .items-outer .name p.title {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 14px;
	color: #fff;
	text-align: center;

}

.full-gallery .items-outer .item .name p.title span {
	text-transform: uppercase;
}


.full-gallery .items-outer .socials {
	
}

.full-gallery .close-button {
	position: absolute;
	top: 0;
	right: 15%;
	width: 30px;
	height: 30px;
	outline: 1px solid #adadad;
	margin: 0px 20px;
	cursor: pointer;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.full-gallery .close-button span {
	background: url(../img/close-icon.png) no-repeat;
	display: block;
	width: 15px;
	height: 15px;
	margin: auto;
}




/*PHOTOGALLERY SECTION END*/

/*MUSIC SECTION*/
@keyframes mouse_hint_anim {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	25% {
		-webkit-transform: translateY(-12px);
		-ms-transform: translateY(-12px);
		-o-transform: translateY(-12px);
		transform: translateY(-12px);
		-webkit-filter: brightness(80%);
		-o-filter: brightness(80%);
		filter: brightness(80%);
	}
	50% {
		-webkit-transform: translateY(10px);
		-ms-transform: translateY(10px);
		-o-transform: translateY(10px);
		transform: translateY(10px);
	}
	75% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
		-webkit-filter: brightness(100%);
		-o-filter: brightness(100%);
		filter: brightness(100%);
	}
	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
}

section.music .items-outer {
	min-height: calc(100vh - 215px);
	margin-top: 100px;

}
section.music .show-more {margin-top: -30px;
	margin-bottom: 20px;
}

section.music .show-more span {
  font-family: 'Lato';
  font-size: 14px;
	font-weight: 300;
	text-transform: uppercase;
	color: #6e6e6e; 
}

section.music .show-more span a {color:inherit;}


section.music .scroll-tip {
	background: url(../img/scroll_down.png) no-repeat;
	width: 30px;
	height: 15px;

	animation: mouse_hint_anim 5s infinite ease-in-out;
}

section.music .items-outer .item {
	height: calc(100vh - 215px);
        background-position: center;
        background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 0px !important;
	margin-bottom: 50px;
	position: relative;
}

section.music .items-outer .item iframe {
	width: 100%;
	height: 100%;
}

section.music .items-outer .item .ytp-thumbnail {
        background-image: none !important;;
	
	width: 100%;
	height: 100%;
	position: relative;
}

section.music .items-outer .item .ytp-thumbnail:after {
	content: '';
	background: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.music .items-outer .item .ytp-large-play-button {
	width: 85px;
	height: 60px;
	margin: auto;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: 55;
	cursor: pointer;
}

section.music .items-outer .item .ytp-large-play-button svg path {
	fill: #b49868;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

section.music .items-outer .item .ytp-large-play-button svg polygon {
	fill: rgba(0,0,0,0);
}

section.music .items-outer .item .ytp-large-play-button:hover svg path {
	fill: #fff;
}

section.music .items-outer .item .html5-info-bar {
	position: absolute;
	bottom: 75px;
}

section.music .items-outer .item .html5-info-bar a {
	font-size: 14px;
	font-family: 'Lato';
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 18px;
	color: #fff;
	display: inline-block;
	padding-left: 15px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.music .items-outer .item .html5-info-bar a:after {
	content: '';
	background: #b49868;
	display: block;
	width: calc(100%);
	height: 1px;
	position: absolute;
	bottom: -10px;
	left: 0px;
}
/*MUSIC SECTION END*/

/*BIOGRAPHY SECTION*/
section.biography {

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

header .wrapper .title-outer.bio{
	margin-left: 75px;
}

section.biography .beginning {
	position: relative;
/*	margin-top: -98px;*/
	margin-top: 0;
}

section.biography .beginning .item {
	
}

section.biography .beginning .item:nth-child(1) {
	width: 43%;

}

section.biography .beginning .item:nth-child(2) {
	width: 57%;
	position: relative;
	z-index: 105;
}

section.biography .beginning .item:nth-child(1) .content {
	position: relative;
	top: 70px;
	width: 115%;
}

section.biography .beginning .item:nth-child(1) .content p {
	font-size: 17px;
	line-height: 24px;
}

section.biography .beginning .item .pic-outer {
	position: relative;
	top: 110px;
}

section.biography .beginning .item .pic-outer img {
	max-width: 100%;
}

section.biography .beginning .item .start-career {
	position: relative;
	top: 150px;
	padding-left: 25px;
}

section.biography .beginning .item .start-career p.title {
	font-family: 'Lato';
	font-weight: 900;
	font-style: italic;
	font-size: 18px;
	color: #a29f9f;
	width: 0.5ch; 
	line-height: 25px;
	text-align: center;  
	word-wrap: break-word;
	position: absolute;
	top: 0px;
	left: 0;
}

section.biography .beginning .item .start-career p.info {
	font-family: 'Lato';
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 25px;
	color: #373636;
	padding-right: 35px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.biography .beginning .item:nth-child(2) .pic-outer {
	background: #fff;
	width: 80%;
	position: relative;
	z-index: 20;
	top: 0;
	float: right;
}

section.biography .beginning .item:nth-child(2) .pic-outer img{
	max-width: 100%;
}

section.biography .beginning .item:nth-child(2) .content.type-a{
	width: 400px;
	background: #fff;
	padding: 10px 35px 20px 35px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	z-index: 30;
	top: -420px;
}

section.biography .beginning .item:nth-child(2) .content p {
	font-size: 17px;
	line-height: 24px;
}

section.biography .beginning .item:nth-child(2) .content.type-b {
	width: 100%;
	background: #fff;
	padding: 0 25px 35px 35px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	margin-top: -360px;
}

section.biography .beginning .item:nth-child(2) .content.type-b span {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 96px;
	letter-spacing: 1px;
	color: #373636;
	display: block;
	margin-bottom: 60px;
}

section.biography .one-year-1  {
	background: url(../img/olga_13.jpg) no-repeat;
	background-size: cover;
	height: 760px;
	position: relative;
	z-index: 30;
	margin-top: -45px;
}

section.biography .one-year-1  .info {
	
	background: #fff;
	width: 245px;
	padding: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	top: 65px;
	left: 75px;
}

section.biography .one-year-1  .info p {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 0.5px;
	color: #090909;
	margin-bottom: 15px;
}

section.biography .one-year-1  .info p:last-of-type {
	margin-bottom: 0;
}

section.biography .one-year-1  .info span {
	font-family: 'Lato';
	font-weight: 700;
	font-size: 18px;
}

section.biography .one-year-1 .info b {
	font-family: 'Lato';
	font-weight: 700;
}

section.biography .chronology {
	
}

section.biography .chronology .items-outer {
	background: #fff;
	padding: 50px 70px;
	width: 80%;
	margin: -150px auto 0 auto;
	position: relative;
	z-index: 40;
}

section.biography .chronology .items-outer .item {
	margin-bottom: 50px;
}

section.biography .chronology .items-outer .item:last-of-type {
	margin-bottom: 0;
}

section.biography .chronology .items-outer .item .year {
	font-size: 76px;
	font-family: 'Lato';
	font-weight: 400;
	letter-spacing: 2px;
	margin-right: 80px;
min-width: 185px;
	text-transform: uppercase;
	text-decoration: underline;
	-webkit-text-fill-color: transparent;
	background: -webkit-linear-gradient(transparent, transparent),
	            url(../img/year_mask.jpg) repeat;
	background: -o-linear-gradient(transparent, transparent);
	-webkit-background-clip: text;
	text-decoration: none;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
position: relative;
z-index:50;
}

section.biography .chronology .items-outer .item .year:hover {
	-webkit-filter: brightness(120%);
	-o-filter: brightness(120%);
	filter: brightness(120%);
}

@keyframes text_mask_2 {
	0% {background-position: 0% 50%;}
	50% {background-position: 100% 50%;}
	100% {background-position: 0% 50%;}
}

section.biography .chronology .items-outer .item .year {
	animation:text_mask_2 45s infinite ease-in-out;
}

section.biography .chronology .items-outer .item .info {


}

section.biography .chronology .items-outer .item .info p {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	color: #88898a;
}

section.biography .one-year-2 {
	background: url(../img/olga_4.jpg) no-repeat;
	background-size: cover;
	height: 700px;
	position: relative;
	z-index: 20;
	margin-top: -50px;
}

section.biography .one-year-2 .info {

	background: #fff;
	width: 245px;
	padding: 25px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	right: 5%;
	bottom: 5%;
}

section.biography .one-year-2 .info p {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 0.5px;
	color: #090909;
	margin-bottom: 15px;
}

section.biography .one-year-2 .info p.title {
	font-family: 'Lato';
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	margin-top: 20px;
}

section.biography .one-year-2 .info p:last-of-type {
	margin-bottom: 0;
}

section.biography .one-year-2 .info span {
	font-family: 'Lato';
	font-weight: 700;
	font-size: 18px;
}

section.biography .facts {
	margin-top: 40px;
}

section.biography .facts .item {
	width: 31%;
	min-height: 325px;
	background: url(../img/olga_5.jpg) no-repeat;
	background-size: cover;
	padding: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

}

section.biography .facts .item .info {
	background: #fff;
    min-height: 345px;
	padding: 40px 25px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.biography .facts .item .info p {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
}

section.biography .facts .item .info p.title {
	font-family: 'Lato';
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	line-height: 22px;
	color: #090909;

}

section.biography .facts .item .info span {
	font-family: 'Lato';
	font-weight: 700;
	font-size: 17px;
}

section.biography .facts .item .info b {
	font-family: 'Lato';
	font-weight: 700;

}

section.biography .facts .item .info span.title {
	font-family: 'Lato';
	font-weight: 700;

	line-height: 25px;
	text-transform: uppercase;

}

section.biography .face {
	height: 335px;
	margin-top: 50px;
}

section.biography .face img{
	display: block;
	max-width: 100%;
}

section.biography .private {
	margin-top: 50px;
	margin-bottom: 75px;
	position: relative;
}

section.biography .private .part-1 {
	width: 58%;
}

section.biography .private .part-1 p {
	position: relative;
}

section.biography .private .part-1 > span {
    font-family: 'Lato';
    font-weight: 300;
    font-size: 100px;
    display: block;
    margin-top: 25px;
    margin-right: 15px;
    margin-bottom: 30px;
    float: left;
}

section.biography .private .part-1 p.title {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 175px;
	line-height: 175px;
	letter-spacing: 20px;
	text-align: right;
	display: block;
	color: #090909;
	opacity: 0.05;
	position: absolute;
	top: -90px;
	right: 0;
}



section.biography .private .part-2 {
	position: relative;
	margin-top: 60px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


section.biography .private .part-3 {
	position: relative;
margin-top: 40px;
        padding: 40px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
        border-top: 12px solid #e4e4e4;
}

section.biography .private .part-2 p.title {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 118px;
letter-spacing: 15px;
    text-transform: uppercase;
margin: 25px 0 35px 0;

}

section.biography .private .pic-outer {
	width: 48%;
}

section.biography .private .pic-outer img{
	display: block;
	max-width: 100%;
}

section.biography .private .info {
	width: 48%;

}

section.biography .private .info p{
	font-family: 'Lato';
	font-weight: 400;
}

section.biography .private .info p:first-of-type {
	margin-top: 0;
}

/*BIOGRAPHY SECTION END*/

/*WOMAN LIFE PAGES MENU*/


menu {
	margin-top: 100px;
}

menu ul {
	margin-left: -20px; 
	margin-right: 20px;
}

menu ul li {
	/*width: 19%;*/
	width: 19.7%; 
}

menu ul li a {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 12px;
	text-transform: uppercase;
	color: #fff;
    background: -webkit-linear-gradient(top, #c5af86, #9a7a4a 95%);
    background: -moz-linear-gradient(top, #c5af86, #9a7a4a 95%);
    background: -ms-linear-gradient(top, #c5af86, #9a7a4a 95%);
    background: linear-gradient(top, #c5af86, #9a7a4a 95%);
	text-align: center;
	padding: 15px 10px;
	display: block;
	-webkit-transition: all 0.75s;
  	-moz-transition: all 0.75s;
  	-o-transition: all 0.75s;
  	transition: all 0.75s;
}

menu ul li a:hover {
	opacity: 0.7;
}

menu ul li.current-menu-item a {
opacity: 0.5;
	
}

.submenu .title-outer{
	text-align: center;
	background: url(../img/title_outer_background.jpg) repeat-x center;
	margin-top: 30px;
}

.submenu .title-outer p.title {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 25px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #b49868;
	background: #fff;
	display: inline-block;
	padding: 0 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.submenu ul {
	border-bottom: 1px solid #b49868;
	padding: 25px 0 20px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.submenu ul li {
        border: 1px solid #b49868;
        position: relative;
}

.submenu ul li.disabled a {
        color:  #b49868 !important;
        background-color: rgba(255,255,255,0) !important;
        opacity:0.4 !important;
        pointer-events: none;
}

-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.submenu ul li:last-of-type {
	text-align: right;
}


.submenu ul li a {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 12px;
	line-height: 24px;
	text-transform: uppercase;
	color: #b49868;
	display: block;
	width: 100%;
	height: 100%;
	padding: 15px 20px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;

	-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
}

.submenu ul li:hover a {
	color: #fff;
	background: #b49868;
}

.submenu ul li.current-menu-item a {
	color: #fff;
	background: #b49868;
}

.submenu ul li a br {
	display: none;
}

.submenu ul li.disabled .tip {
        background-color: #fff;
        border: 1px solid #b49868;
        opacity: 0;
        width: 290px;
        padding: 15px;
        position: absolute;
        bottom: -1px;
        right: -1px;

        pointer-events: none;

        -webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.submenu ul li.disabled:hover .tip {
        opacity: 1;
}
/*WOMAN LIFE PAGES MENU END*/

/*SHEDULE SECTION*/

section.shedule {
	padding-bottom: 100px;
}

section.shedule .preview {
	/*border-bottom: 1px solid #b49868;*/
	padding: 10px 0px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.shedule .preview:after {
	content: '7жж';
	font-size: 150px;
	font-family: 'Lato';
	font-weight: 300;
	color: #1e1f1f;
	opacity: 0.05;
	margin: auto 0;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
}

section.shedule .preview p {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 18px;
	line-height: 24px;
	color: #1e1f1f;
}

section.shedule p.title {
	font-family: 'Lato';
	font-weight: 900;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	text-align: center;
	color: #191918;
	margin: 25px auto;
	display: block;
}

section.shedule p.subtitle {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 1.5px;
	text-align: center;
	color: #191918;
	margin: 25px auto;
	display: block;
}


section.shedule .items-outer {

}

section.shedule .items-outer .scroll-outer {
	position: relative;
}

section.shedule .items-outer .scroll-outer .scroll-outer {
	position: absolute;
	left:48%;
	bottom: 20%;
}


section.shedule .items-outer .item {
	width: 48.5%;
	margin-bottom: 50px;
	padding: 30px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}



section.shedule .items-outer .item .pic-outer {
	width: 100px;
	height: 100px;
	border-radius: 100px;
	border: 1px solid #b49868;
        position: relative;
        overflow: hidden;

}

section.shedule .items-outer .item .pic-outer div {
}

section.shedule .items-outer .item .pic-outer img {
	border-radius: 100px;
        height: 75px;
	display: block;
margin: 0 auto;
}

section.shedule .items-outer .item .name {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
	color: #1b1c1c;
	width: 27%;
	margin-top: 10px;
	margin-right: 15px;
	margin-left: 20px;
}

section.shedule .items-outer .item .name b {
	font-size: 44px;
}

section.shedule .items-outer .item .name span {
	line-height: 21px;
	color: #b49868;
	display: block;
	margin-top: 10px;
	margin-left: 0px;

}

section.shedule .items-outer .item .info {
	width: 45%;
	margin-top: 10px;
	/*padding-right: 75px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;*/
}

section.shedule .items-outer .item .info ul {list-style:none;}

section.shedule .items-outer .item .info p,
section.shedule .items-outer .item .info li {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #88898a;
	margin-top: 15px;
}

section.shedule .items-outer .item .info li {
-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
position: relative;
}

section.shedule .items-outer .item .info li:before {
content: '';
    background: #88898a;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    position: absolute;
    top: 9px;
    left: -15px;
}

section.shedule .items-outer .item .info p:first-of-type {
	margin-top: 0;
}



section.shedule a.common-button {
	background: -webkit-linear-gradient(top, #c3ad7d, #9b7a4a);
    background: -moz-linear-gradient(top, #c3ad7d, #9b7a4a);
    background: -ms-linear-gradient(top, #c3ad7d, #9b7a4a);
    background: linear-gradient(top, #c3ad7d, #9b7a4a);
	padding: 15px 0;
	margin: 10px auto;
	-webkit-transition: 0.75s;
	-o-transition: 0.75s;
	transition: 0.75s;
}


section.shedule a.common-button:hover {
	opacity: 0.7;
}

section.shedule .line {
	width: 100%;
	height: 1px;
	background: #b49868;
	margin: 50px 0 30px 0;
}
/*SHEDULE SECTION END*/


/*VIDEOBLOG SECTION*/

section.videoblog {
	padding-bottom: 100px;
}

section.videoblog .items-outer .layoutArea a {
        color: #b49868;
}

section.videoblog .items-outer .layoutArea ul {
     margin-top: 25px;

}

section.videoblog .items-outer .info {

	width: 44%;
}

section.videoblog .items-outer .info .sun {display: none;
	margin-top: 50px;
	margin-left: -10px;
	position: relative;
}

section.videoblog .items-outer .info .sun span {
	font-family: 'Baskerville Italic Win95BT';
	font-size: 18px;
	color: #f89c39;
	position: absolute;
	top: 75px;
	left: 60px;
}

section.videoblog .items-outer .info .sun span mark {
	color: #1d1d1d;
	background: none;
}

section.videoblog .items-outer .player {
	width: 51.5%;
	height: 380px;
	padding: 25px 0;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.videoblog .items-outer .player img {
	width: 100%;
}

section.videoblog iframe {
	position: relative;
	width: 100%;
	height: 100%;
}

section.videoblog .scroll-down {
	margin: 0 auto 25px auto;
}

section.videoblog .playlist-outer {
margin-top: 25px;
}

section.videoblog .playlist-outer .item{
	width: 24%;
	height: 210px;
	position: relative;
}

section.videoblog .playlist-outer .item.watched{
	opacity:0.25;
}

section.videoblog .playlist-outer .item .yt-icon {
        position: absolute;
    width: 45px;
    height: 25px;
    left: 0;
    right: 0;
    top: -50px;
    bottom: 0;
    margin: auto;
}

section.videoblog .playlist-outer .item .yt-icon img {max-width: 100%;}

section.videoblog .playlist-outer .item img {
	max-width: 100%;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

section.videoblog .playlist-outer .item:hover img {
	opacity: 0.5;
}

section.videoblog .playlist-outer .item .outer {
position: relative;
}


section.videoblog .playlist-outer .item p {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 13px;
    color: #212121;
    text-transform: uppercase;
margin-top: 5px;
}

section.videoblog .playlist-outer .item .outer .new {
font-size: 14px;
color: #b49868;
position: absolute;
right:0;
top: 0;
}

section.videoblog .playlist-outer .item p span {
text-transform: initial;
}

/*VIDEOBLOG SECTION END*/

/*ONLINE CHAT SECTION*/

.online-chat-outer {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
	z-index: 30;
}

.online-chat-outer:before {
	content: '';
	background: url(../img/chat_background.jpg) no-repeat;
	background-size: cover;
	opacity: 0.3;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

.online-chat-outer > img {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 222;
	min-width: 100%;
	min-height: 100%;
	opacity: 0.2;
	pointer-events: none;
}

section.chat {
	margin: 0px auto;
	padding: 8% 0;
	top: initial !important;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.chat .announcement {
	text-align: center;
}

section.chat .announcement p {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 16px;
	line-height: 32px;
	color: #4f4f4e;
}

section.chat .announcement p mark {
	background: none;
	font-size: 18px;
	text-transform: uppercase;
}

section.chat .announcement p b {
	font-family: 'Lato';
	font-weight: 700;
	text-transform: uppercase;
}

section.chat .announcement p span {
	font-family: 'Lato';
	font-weight: 900;
}

section.chat .announcement a {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
	color: #b49868;
	text-decoration: underline;
	display: inline-block;
	margin-top: 75px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

section.chat .announcement a:hover {
	opacity: 0.5;
}
/*ONLINE CHAT SECTION END*/

/*BUY COURSE*/

section.buy-course {
margin-top: 80px;
	margin-bottom: 100px;
	padding-top: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.buy-course .wrapper {
	
}

section.buy-course .items-outer {

}

section.buy-course .items-outer .info {
	
}

section.buy-course .wrapper p.title {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 30px;
	line-height: 36px;
        text-align: center;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	color: #373636;
}


section.buy-course .wrapper p.subtitle {
font-family: 'Lato';
	font-weight: 300;
	font-size: 16px;
	line-height: 20px;
        text-align: center;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	color: #b49868;
margin: 10px 0;
}

section.buy-course  .items-outer {
	
        margin-top: 30px;
}

section.buy-course  .items-outer form {
     
}

section.buy-course  .items-outer form br {
	
}

section.buy-course  .items-outer form .choose {
       background: #fafafa;
       border-top: 1px solid #efefef;
       border-bottom: 1px solid #efefef;
padding: 20px 0;
-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

}

section.buy-course  .items-outer form .choose .item {
       margin-left: 30px;
}

section.buy-course  .items-outer form .choose .item:first-of-type {
       margin-left: 0;
}


input[type="radio"]:not(old){
font-size : 1em;
  width   : 16px;
  margin  : 0;
  padding : 0;
  opacity : 0;
}


input[type=radio]:not(old) + label{
  display      : inline-block;
  margin-left  : -2em;
  line-height  : 1.5em;
}



input[type=radio]:not(old) + label > span{
  display          : inline-block;
  width            : 16px;
  height           : 16px;
  margin           : 0.25em 0.5em 0.25em 0.25em;
  border           : 1px solid #8c8c8c;
  border-radius    : 16px;
  background       : #fff;
  vertical-align   : bottom;
}

section.buy-course  .items-outer form .data-outer .item .way .radio-outer input[type=radio]:not(old) + label > span {
 position: absolute;
    top: -3px;
    left: 10px;
}


input[type=radio]:not(old):checked + label > span{

}

input[type=radio]:not(old):checked + label > span > span{
  display          : block;
  width            : 6px;
  height           : 6px;
  margin           : 4px;
  border           : 1px solid #8c8c8c;
  border-radius    : 16px;
  background       : #a98f65;

}






section.buy-course  .items-outer form .choose .item input[type="radio"] {
       position: relative;
top: 1px;
}

section.buy-course  .items-outer form .choose .item label {
       font-family: 'Lato';
       font-weight: 400;
       font-size: 16px;
text-transform: uppercase;
letter-spacing: 1px;
       color: #303030;
padding-left: 10px;
padding-bottom: 3px;

}


section.buy-course  .items-outer form .data-outer {

}

section.buy-course  .items-outer form .data-outer .item {
width: 49%;
margin: 15px 0 30px 0;
}

section.buy-course  .items-outer form .data-outer .item .field-outer {
margin-top: 28px;
}

section.buy-course  .items-outer form .data-outer .item .field-outer:first-of-type {
margin-top: 0;
}


section.buy-course  .items-outer form .data-outer .item .field-outer label {
font-family: 'Lato';
       font-weight: 300;
font-size: 14px;
color: #262626;
margin-bottom: 8px;
display: block;
}

section.buy-course  .items-outer form .data-outer .item .field-outer input {
padding-left: 10px;
-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.buy-course  .items-outer form .data-outer .item .field-outer input[type="text"] {
width: 80%;
height: 30px;
border: 1px solid #bfbfbf;
}


section.buy-course  .items-outer form .data-outer .item .field-outer input[type="tel"] {
width: 37%;
height: 30px;
border: 1px solid #bfbfbf;
}


section.buy-course  .items-outer form .data-outer .item .field-outer input[type="email"] {
width: 65%;
height: 30px;
border: 1px solid #bfbfbf;
}

section.buy-course  .items-outer form .data-outer .item .subitem-outer {
width: 80%;
margin-top: 22px;
}

section.buy-course  .items-outer form .data-outer .item .subitem-outer .subitem {
width: 30.5%;
}

section.buy-course  .items-outer form .data-outer .item .subitem-outer .subitem label {
font-family: 'Lato';
       font-weight: 300;
font-size: 14px;
color: #262626;
margin-bottom: 8px;
display: block;
}

section.buy-course  .items-outer form .data-outer .item .subitem-outer .subitem input {
width: 100%;
height: 30px;
border: 1px solid #bfbfbf;
padding-left: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


section.buy-course  .items-outer form .data-outer .item .way {
margin-bottom: 30px;
}


section.buy-course  .items-outer form .data-outer .item .way p.title {
font-family: 'Lato';
       font-weight: 300;
font-size: 14px;
    line-height: 18px;
text-align: left;
text-transform: initial;
letter-spacing: 0;
color: #262626;
margin-bottom: 15px;
}

section.buy-course  .items-outer form .data-outer .item .way .radio-outer {
margin-bottom: 20px;
}

section.buy-course  .items-outer form .data-outer .item .way .radio-outer input[type="radio"] {

}

section.buy-course  .items-outer form .data-outer .item .way .radio-outer label {
font-family: 'Lato';
       font-weight: 400;
font-size: 14px;
    line-height: 18px;
padding-left: 40px;
padding-bottom: 3px;
display: block;
    position: relative;
}

section.buy-course  .items-outer form .data-outer .item .text-outer {

}

section.buy-course  .items-outer form .data-outer .item .text-outer label {
    font-family: 'Lato';
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    text-align: left;
    text-transform: initial;
    letter-spacing: 0;
    color: #262626;
    margin-bottom: 8px;
display: block;
}

section.buy-course  .items-outer form .data-outer .item .text-outer textarea {
border: 1px solid #a98f65;
padding: 10px;
-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
resize: none;
   width: 100%;
min-height: 90px;
}


section.buy-course  .items-outer form .price-outer {
       background: #fafafa;
       border-top: 1px solid #efefef;
       border-bottom: 1px solid #efefef;
padding: 10px 15px;
-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.buy-course  .items-outer form .price-outer .info {

}

section.buy-course  .items-outer form .price-outer .info p {
	font-family: 'Lato';
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.5px;
    color: #262626;
    cursor: pointer;
}

section.buy-course  .items-outer form .price-outer .info p:hover {
	text-decoration: underline;
}

section.buy-course  .items-outer form .extensions {
        margin-bottom: 30px;
}


section.buy-course  .items-outer form .extensions .heading {
    font-family: 'Lato';
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    text-align: left;
    text-transform: initial;
    letter-spacing: 0;
    color: #262626;
    margin-bottom: 15px;
}


section.buy-course  .items-outer form .extensions ul {

}


section.buy-course  .items-outer form .extensions ul li {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    padding-left: 27px;
    padding-bottom: 3px;
    display: block;
    position: relative;
}




section.buy-course  .items-outer form .price-outer .item {

}

section.buy-course  .items-outer form .price-outer .item .summa{
	font-family: 'Lato';
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    color: #262626;
}

section.buy-course  .items-outer form .price-outer .item .total-price {
	margin-left: 30px;
}

section.buy-course  .items-outer form .price-outer .item .total-price .current-price {
 font-family: 'Lato';
    font-weight: 600;
    font-size: 28px;
letter-spacing: 1.5px;
color: #262626;
}


section.buy-course  .items-outer form .confirm-outer {
margin-top: 35px;
margin-bottom: 60px;
}

section.buy-course  .items-outer form .confirm-outer .warning{

}


section.buy-course  .items-outer form .confirm-outer .warning p {
 font-family: 'Lato';
    font-weight: 400;
    font-size: 14px;
line-height: 18px;
letter-spacing: 0.5px;
color: #262626;
border-left: 1px solid #bdbdbd;
padding: 2px 0 2px 15px;
}

section.buy-course  .items-outer form .confirm-outer .button-outer {

}

section.buy-course  .items-outer form .confirm-outer .button-outer input[type="submit"]{
 font-family: 'Lato';
    font-weight: 600;
    font-size: 12px;
text-transform: uppercase;

letter-spacing: 1.5px;
color: #fff;
background: #d5c2aa;
border: none;
width: 220px;
height: 40px;
}

section.buy-course  .items-outer .add-info {
border-bottom: 1px solid #efefef;
padding-bottom: 30px;
-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.buy-course  .items-outer .add-info p {
 font-family: 'Lato';
    font-weight: 400;
    font-size: 14px;
line-height: 18px;
letter-spacing: 0.5px;
color: #262626;
}

section.buy-course  .items-outer .add-info p a {
	color: inherit;
	text-decoration: none;
}

.thank-you-pop-up > div.flex {
	height: 100%;
}

.thank-you-pop-up .outer {
	background: #fff;
	margin: auto;
	padding: 35px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.thank-you-pop-up .outer p {
	font-size: 14px;
	font-family: 'Lato';
	font-weight: 400;
	text-align: center;
	line-height: 20px;
	letter-spacing: 1px;
	color: #040404;
}
/*BUY COURSE END*/


/*WHAT-IS*/

section.what-is-why {
	margin-bottom: 100px;
	padding-top: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


section.what-is-why .wrapper p.title {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #3d3d3d;
	text-align: center;
	margin-bottom: 25px;
}

section.what-is-why .items-outer {
	margin-top: 25px;
}

section.what-is-why .items-outer .content {
	width: 54%;
	padding-right: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

}

section.what-is-why .items-outer .content p:first-of-type {
	margin-top: 0;
}

section.what-is-why .items-outer .pic-outer {
	width: 46%;
}

section.what-is-why .items-outer .pic-outer img {
	max-width: 100%;
}

/*WHAT-IS END*/

/*WHAT IS NEW*/
section.what-is-why-new {
	padding-top: 0px;
}

section.what-is-why-new .background {
	position: absolute;
	z-index: -1;
}

section.what-is-why-new .background img {
	max-width: 100%;
}

section.what-is-why-new .content-outer {
	padding-top: 50px;
	padding-bottom: 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


section.what-is-why-new .content-outer .item {
        width: 48%;
}
section.what-is-why-new .content-outer .item .player img {
	width: 100%;
}
section.what-is-why-new .content-outer .item iframe {
        width: 100%;
        height: 300px;
}

section.what-is-why-new .content-outer .title {
	font-size: 30px;
	font-family: 'Lato';
	font-weight: 300;
	text-transform: uppercase;
	line-height: 36px;
	color: #222222;
	margin-bottom: 25px;
}

section.what-is-why-new .content-outer .title span {
font-weight: 600;
}

section.what-is-why-new .content-outer .item .pic-outer {height:100%;}

section.what-is-why-new .content-outer .item .pic-outer img {
        max-width: 100%;
}
/*WHAT IS NEW END*/


/*REVIEWS*/

section.reviews {
	margin-bottom: 100px;
	padding-top: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

	section.reviews .outer {

	}


section.reviews .outer .item {
		width: 32%;
	}


section.reviews .outer .item .info {
        position:relative;
        min-height: 240px;
	background: #f7f4f0;
	padding: 20px;

		-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


section.reviews .outer .item .info .image-outer {
       
}

section.reviews .outer .item .info .bubble {
	position: absolute;
left: 25px;
bottom: -20px;
	width: 0;
	height: 0;
	border-left: 35px solid transparent;
	border-right: 25px solid transparent;
	border-bottom: 40px solid #f7f4f0;
opacity:0.8;
-moz-transform: rotate(45deg); 
    -ms-transform: rotate(45deg); 
    -webkit-transform: rotate(45deg); 
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

section.reviews .outer .item .info p {
	font-size: 14px;
	font-family: 'Lato';
	font-weight: 500;
	line-height: 20px;
}


section.reviews .outer .item .info img {
        display: block;
        max-width: 100%;
        max-height: 250px;
        padding: 5px 5px 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.reviews .outer .item .name {
	font-size: 14px;
	font-family: 'Lato';
	font-weight: 500;
	text-transform: uppercase;
	line-height: 20px;
	margin-top: 50px;
}


section.reviews .outer .item .name span.city {
	font-size: 13px;
	font-family: 'Lato';
	font-weight: 500;
text-transform: none;
	font-style: italic;
	line-height: 20px;
margin-left: 5px;
}

/*REVIEWS END*/

/*PROGRAM GET*/


section.program-get {
	margin-bottom: 100px;
	padding-top: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

	section.program-get .outer {

	}


section.program-get .outer .item {
		width: 19%;
margin-bottom: 20px;
	}


section.program-get .outer .item .info {
	background: #ebebeb;
	padding: 20px;

		-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.program-get .outer .item .info .heading {
min-height: 150px;
}

section.program-get .outer .item .info span {
  font-size: 120px;
    font-family: 'Lato';
    font-weight: 300;

color:#080808;
}

section.program-get .outer .item .info p.title {
    font-size: 10px;
    font-family: 'Lato';
    font-weight: 500;
letter-spacing: 0px;
    text-transform: uppercase;
color:#757575;
    line-height: 14px;
margin: 15px 0px 30px 10px;
}

section.program-get .outer .item .info .content {
	font-size: 12px;
	font-family: 'Lato';
	font-weight: 500;
	line-height: 16px;
min-height: 355px;
margin-bottom: 10px;
border-top: 6px solid #707070;
border-bottom: 6px solid #707070;
	padding: 20px 0;

		-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;


}


/*PROGRAM GET END*/

/*FROM WHAT*/

section.from-what {
	margin-bottom: 100px;
	padding-top: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.from-what .items-outer {
	margin-top: 50px;
}

section.from-what .items-outer .item {
	width: 22.5%;
}

section.from-what .items-outer .item .pic-outer {
	max-height: 170px;
	margin-bottom: 40px;
}

section.from-what .items-outer .item .pic-outer img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

section.from-what .items-outer .item p.title {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #3d3d3d;
	text-align: center;
}

section.from-what .items-outer .item .content {
	font-size: 14px;
	border-top: 1px solid #E5E5E5;
	margin-top: 20px;
	padding-top: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.from-what .items-outer .item a.store {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 14px;
	line-height: 24px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #3d3d3d;
	text-decoration: underline;
	text-transform: uppercase;
	display: inline-block;
	margin-top: 20px;
}

/*FROM WHAT END*/

/*FOR WHO*/

section.for-who {
	margin-bottom: 100px;
	padding-top: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.for-who p.title {
	font-family: 'Lato';
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #3d3d3d;
	text-align: center;
}

section.for-who .items-outer {
	margin-top: 30px;
}

section.for-who .items-outer .item {
	width: 28.5%;
}

section.for-who .items-outer .item .pic-outer {

}

section.for-who .items-outer .item .pic-outer img {
	max-width: 100%;
}

section.for-who .items-outer .item .content {

}

section.for-who .items-outer .item .content p {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
/*FOR WHO END */

/*Modal form*/

.modal input,
.modal textarea {
    width: 100%;
    border: 1px solid #c18f4e;
    margin-top: 0;
    height: 30px;
}
.modal .row > div {
    margin-top: 10px;
}
.modal span {
    padding-top: 5px;
}

input[type="submit"],button.main_btn{
	width: 240px;
    height: 41px;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 20px;
    text-align: center;
    border: none;
    background: #b49868;
    border-radius: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Lato';
    font-weight: 300;
    font-size: 12px; 
}

/*End modal*/

/*CONTACT FORM 7*/
span.wpcf7-not-valid-tip {
	display: none !important;
}

div.wpcf7-validation-errors {
	display: none !important;
}

input[type="text"].wpcf7-not-valid,
input[type="email"].wpcf7-not-valid  {
	border-color: red !important; 
}

div.wpcf7-mail-sent-ok {
	font-size: 14px;
	font-family: 'Lato';
	font-weight: 400;
	line-height: 18px;
	background: #fff;
	border: 1px solid #000 !important;
	width: 100%;
	margin: 0px !important;
	padding: 5px 8px !important;
	position: absolute;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#subscription_type {
	display: none;
}

section.subscribe .content-outer .info .form-outer {    margin-bottom: 75px;}

section.subscribe .content-outer .info .form-outer br {
	display: none;
}

section.subscribe .content-outer .info .form-outer .content {
	width: 80%;
}
/*CONTACT FORM 7 END*/
div.content_block {
	padding-top: 25px;
}




.force-hover ul.sub-menu {
    display: block!important;
}

.tickets.subscription-from .form-outer .form-inner {
	background-size: cover;
    width: inherit;
    margin: 0 auto;
}

#concert_popup .form-outer {
	max-height: 742px;
	height: 742px;
	height: 100vh;
	max-width: 640px;
	width: 640px;
	width: 86vh;
	min-width: inherit;
	box-sizing: border-box;
	padding: 0;
}
#concert_popup .form-outer:before {
	content: "";
	max-height: 371px;
	height: 371px;
	height: 50vh;
	display: block;
}
#concert_popup.subscription-from .form-outer .close {
	background: url(../images/close1.png) no-repeat center;
	border: none;
	width: 25px;
	height: 25px;
	padding: 7px;
	top: 20px;
	right: 20px;
}
#concert_popup .form-inner div,
#concert_popup input,
#concert_popup button,
#mc_embed_signup input[type='text'] {
	display: block;
	text-align: center;
	width: 100%;
	margin: 10px auto 25px;
	margin: 1.33vh auto 3.33vh;
	font-size: 24px;
	height: 60px;
	height: 7vh;
	text-transform: uppercase;
	color: #4f311c;
	background: transparent;
	border: 3px solid #ffba3e;
	border-radius: 0;
}
#concert_popup .form-inner div {
	line-height: 1.4;
	height: inherit;
	border: none;
	margin-bottom: 15px;
	margin-bottom: 2vh;
	outline:none;
}
#concert_popup input{
	font-weight: normal;
	-webkit-transition: all 0.7s ease-out;
	-moz-transition: all 0.7s ease-out;
	-o-transition: all 0.7s ease-out;
	transition: all 0.7s ease-out;
}

#concert_popup.subscription-from .form-outer .form-inner {
	max-width: 450px;
	min-width: 280px;
	width: 450px;
	width: 61vh;
	margin: 0 auto;
}
#concert_popup .form-inner button:hover {
	background-color: rgba(255, 186, 62, 0.7);
}
#concert_popup .form-inner button {
	width: 245px;
	width: 33vh;
	height: 67px;
	height: 8vh;
	font-size: 27px;
	font-size: 3.8vh;
	font-weight: bold;
	margin: 45px auto 25px;
	margin: 6vh auto 3.33vh;
	border-radius: 70px;
	border: 4px solid;
	line-height: 0.3;
	color: #4f311c;
	transition: back;
	background-color: transparent;
	-webkit-transition: background-color 0.5s ease-out;
	-moz-transition: background-color 0.5s ease-out;
	-o-transition: background-color 0.5s ease-out;
	transition: background-color 0.5s ease-out;
}
#concert_popup input:focus {
	outline: 2.5px solid #4f311c;
}
#concert_popup input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #4f311c;
}
#concert_popup input::-moz-placeholder { /* Firefox 19+ */
	color: #4f311c;
}
#concert_popup input:-ms-input-placeholder { /* IE 10+ */
	color: #4f311c;
}
#concert_popup input:-moz-placeholder { /* Firefox 18- */
	color: #4f311c;
}
#mc_embed_signup input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #4f311c;
}
#mc_embed_signup input::-moz-placeholder { /* Firefox 19+ */
	color: #4f311c;
}
#mc_embed_signup input:-ms-input-placeholder { /* IE 10+ */
	color: #4f311c;
}
#mc_embed_signup input:-moz-placeholder { /* Firefox 18- */
	color: #4f311c;
}


.o-part {

}
.o-part img {
	height: 200px;
	height: 20vh;
}


.terms a {
	font-family: 'Lato';
	font-weight: 300;
	font-size: 16px;
	color: #b49768;
}

@media screen and (max-width: 667px) {
	#concert_popup  .form-outer {
		min-width: auto;
		width: 100%;
		height: 100vh;
	}
	#concert_popup.subscription-from .form-outer .form-inner {
		width: 90%;
	}
	.welcome footer .part2,
	.welcome footer .part3 {
		text-align: center;
	}
	
}
/*
     FILE ARCHIVED ON 18:37:27 Feb 22, 2020 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 19:29:05 Sep 05, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.486
  exclusion.robots: 0.062
  exclusion.robots.policy: 0.049
  esindex: 0.009
  cdx.remote: 16.868
  LoadShardBlock: 224.227 (3)
  PetaboxLoader3.datanode: 288.565 (5)
  PetaboxLoader3.resolve: 411.073 (3)
  load_resource: 2196.303 (2)
*/