:root {
  --vh-offset: 0px;
}

/** height: calc(100vh - var(--vh-offset)); **/

body{
	margin:0;
	padding:0;
	font-size: 14px;
	background-color: #FAFAFA;
	color:#6E6E6E;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: 'Ubuntu', sans-serif;
}

html, body {
     overflow-x:hidden;
}

a { color:inherit; }

h1, h2, h3, h4, h5 {font-weight: normal; margin: 0;}


h1, h2 {
  color: #2E537D;
  font-weight: 700;
  font-size: 46px;
  line-height: normal;
}

h3 {
  font-weight: 700;
  font-size: 20px;
}

h5 {
  color: #2E537D;
  position: relative;
  font-size: 16px;
  margin-bottom: 10px;
}

h5:before {
  content: url(/images/brain_icon.svg);
  vertical-align: middle;
  display: inline-block;
  *display: inline;
  zoom:1;
  vertical-align: top;
  margin-right: 10px;
  margin-top: 5px;
}

p {
  font-size: 16px;
  line-height: 28px;
  margin-top: 25px;
}

p.big {
  font-size: 18px;
  line-height: 30px;
}

.underline {
  text-decoration: underline;
}

.blueColor {
  color:#2E537D!important;
}

.uppercase {
  text-transform: uppercase;
}

.buttons_row {
  margin-top: 30px;
}

.simple_button {
  font-size: 16px;
  margin-right: 30px;
  color: #2E537D;
  text-decoration: underline;
}

.simple_button:hover {
  text-decoration: none;
}

.buttons_row a:last-child .simple_button {
  margin-right: 0;
}

.padding {
  padding: 100px;
  position: relative;
}

#g-footer .platform-content {
  margin: 0;
  padding: 0;
}


#fade {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 80;
  background: #fff;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;

}

#fade.hide {
  opacity: 0;
  visibility: hidden;
}


.main_btn {
  padding: 25px 40px;
  background:#fff;
  cursor: pointer;
  color:#2E537D;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-size: 16px;
  position: relative;
}

.main_btn:hover {
  -webkit-border-radius:30px;
  border-radius:30px;
}

.main_btn:before {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  content: url(/images/brain_half_l_b.svg);
  width: 28px;
  position: absolute;
  left: 5px;
  top: 10px;
  -moz-transform: translateX(-10px);
  -webkit-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
}

.main_btn:hover:before {
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}

.main_btn:after {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  content: url(/images/brain_half_r_b.svg);
  width: 28px;
  position: absolute;
  right: 5px;
  top: 10px;
  -moz-transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -o-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
}

.main_btn:hover:after {
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}


.main_btn.blue {
  background:#2E537D;
  color:#fff;
}

.main_btn.blue:before {
  content: url(/images/brain_half_l_w.svg);
}

.main_btn.blue:after {
  content: url(/images/brain_half_r_w.svg);
}

.alignCenter {
  text-align: center!important;
}

.alignCenter .main_btn {
  margin-left: auto!important;
  margin-right: auto!important;
}

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

  h1,h2 {
    font-size: 38px;
    line-height: 40px;
  }

  .padding {
    padding: 100px 50px;
  }

}


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

  .main_btn:before, .main_btn:after {
    display: none!important;
  }

}


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

  h1,h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .padding {
    padding: 100px 30px;
  }

}


#header {

}

#main_logo {
  position: absolute;
  left: 35px;
  top: 35px;
  width: 220px;
}

#main_logo img {
  width: 100%;
}

#top_row {
  position: relative;
  height: 120px;
}

#main_menu {
  right: 30px;
  top: 50px;
  position: absolute;
}

.main_menu_item {
  font-size: 16px;
  color: #2E537D;
  text-transform: uppercase;
  margin-right: 40px;
  position: relative;
  cursor: pointer;
}

.main_menu_item::before {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  content: url(/images/brain_half_l_b.svg);
  width: 10px;
  position: absolute;
  left: -10px;
  top: 5px;
  -moz-transform: translateX(-10px);
  -webkit-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
}

.main_menu_item::after {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  content: url(/images/brain_half_r_b.svg);
  width: 10px;
  position: absolute;
  right: -10px;
  top: 5px;
  -moz-transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -o-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
}


.main_menu_item:hover::before {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}

.main_menu_item:hover::after {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}


.main_menu_item.selected::before {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}

.main_menu_item.selected::after {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}


#main_menu .showContacts {
  margin-right: 0!important;
}

#mobile_menu_btn {
  display: none;
}

#overlay {
  display: none;
}

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

  #main_logo {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 200px;
  }

  #top_row {
    height: 100px;
  }

  #main_menu {
    right: 25px;
    top: 40px;
    position: absolute;
  }

}

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

  #main_logo {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 150px;
  }

  #top_row {
    height: 80px;
  }

  #main_menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 75%;
    max-width: 400px;
    z-index: 9;
    background: #fff;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    transition-delay: 0ms;
    backface-visibility: hidden;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -o-transform:  translateX(100%);
    -ms-transform:  translateX(100%);
    transform:  translateX(100%);
  }

  #main_menu.show {
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -o-transform:  translateX(0);
    -ms-transform:  translateX(0);
    transform:  translateX(0);
    transition-delay: 400ms;
  }

  .main_menu_item {
    width: 100%;
    height: 12.5%;
  }

  .main_menu_item:before, .main_menu_item:after {
    display: none;
  }

  .main_menu_item span {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    width: 100%;
    text-align: left;
    padding: 20px;
  }

  #mobile_menu_btn {
    position: fixed;
    top: 17px;
    right: 10px;
    width: 40px;
    z-index: 10;
    display: block;
    cursor: pointer;
  }

  #mobile_menu_btn.close .open {
    display: none;
  }

  #mobile_menu_btn img {
    width: 100%;
  }

  #mobile_menu_btn .close {
    display: none;
  }

  #mobile_menu_btn.close .close {
    display: block!important;
  }

  #overlay {
    display: block;
    position: fixed;
    z-index: 8;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    opacity: 0;
    visibility: hidden;
    backface-visibility: hidden;
  }

  #overlay.show {
    opacity: 1;
    visibility:visible;
  }

  #overlay .title {
    width: 200%;
    position: absolute;
    top: 30px;
    padding: 30px;
  }

  #overlay .title_r {
    width: 200%;
    position: absolute;
    bottom: 30px;
    padding: 30px;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  #overlay .title_mobile {
   display: none;
  }

  #overlay img {
    width: 100%;
  }

}


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

  #overlay .title {
    display: none;
  }

  #overlay .title_r {
    display: none;
  }

  #overlay .title_mobile {
   display: block;
   position: absolute;
   width: 25%;
   top: 20px;
   bottom: 20px;
   left: 0;
   text-align: center;
  }

  #overlay .title_mobile img {
    height: 100%;
    width: auto;
  }

}



#home_header_box {
  position: relative;
  margin-top: 200px;
  margin-bottom: 50px;
}

#home_header_box .background {
  position: relative;
  font-size: 0;
  height: 450px;
}

#home_header_box .background .bg_col {
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
  transition: all 800ms ease;
  transition-delay: 1800ms;
}

#home_header_box .background .bg_col:nth-child(1) {
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  position: absolute;
}

#home_header_box .background .bg_col:nth-child(2)  {
  right: 0;
  top: 0;
  bottom: 0;
  width: 0;
  position: absolute;
}

#home_header_box.show .background .bg_col {
  width: 50%!important;
}

#home_header_box .title {
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  position: absolute;
  width: 100%;
  padding: 0 50px;
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
}

#home_header_box.show .title {
  opacity: 1;
  visibility: visible;
}

#home_header_box .title img {
  width: 100%;
}

#home_circle_box {
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  transition-delay: 1200ms;
  width: 360px;
  height: 450px;
  top: 0;
  height: 0;
  position: absolute;
  top: 0;
  border-left: 10px #fff solid;
  border-right: 10px #fff solid;
  margin-left: -180px;
  left: 50%;
}

#home_header_box.show #home_circle_box {
  height: 450px;

}

#home_circle_box .gradient {
  background: -moz-linear-gradient(top,  rgba(250,250,250,0) 0%, rgba(250,250,250,1) 100%);
  background: -webkit-linear-gradient(top,  rgba(250,250,250,0) 0%,rgba(250,250,250,1) 100%);
  background: linear-gradient(to bottom,  rgba(250,250,250,0) 0%,rgba(250,250,250,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00fafafa', endColorstr='#fafafa',GradientType=0 );
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#home_circle_logo {
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  transition-delay: 600ms;
  -moz-transform: translateY(40px);
  -webkit-transform: translateY(40px);
  -o-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  position: absolute;
  left: -10px;
  right: -10px;
  top: -150px;
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
}

#home_circle_logo img {
  width: 100%;
}

#home_header_box.show #home_circle_logo {
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

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

  #home_header_box {
    margin-top: 130px;
    margin-bottom: 20px;
  }

  #home_circle_box {
    width: 260px;
    margin-left: -130px;
  }

  #home_header_box.show #home_circle_box {
    height: 350px;
  }

  #home_header_box.show .background {
    height: 350px;
  }

}

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

  #home_header_box {
    margin-top: 0px;
    margin-bottom: 0;
  }

  #home_circle_box {
    width: 260px;
    margin-left: -130px;
    overflow:hidden;

  }

  #home_header_box.show #home_circle_box {
    height: 350px;
  }

  #home_header_box.show .background {
    height: 350px;
  }

  #home_circle_logo {
    margin-top: -130px;
    top: 50%;
  }

}




.centered_text_box {
  text-align: center;
  position: relative;
}

.centered_text_box p {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#home_welcome_box p {
  color: #2E537D;
}




.circle_photo_box {
  font-size: 0;
}

.circle_photo_box .col {
  width: 50%;
  position: relative;
}

.circle_photo_box .col.circleCol {
  text-align: center;
}

.circle_photo_box .circle_vect {
  position: absolute;
  top: -40px;
  left: -40px;
  bottom: -40px;
  right: -40px;
}

.circle_photo_box .circle_title {
  position: absolute;
  top: 20%;
  left: -40px;
  bottom: -40px;
  right: -40px;
}

.circle_photo_box .circle_title.live {
  top: auto;
  left: auto;
  bottom: 20%;
  right: -40px;
  left: 40%;
}

.circle_photo_box .circle_vect img {
  width: 100%;
}

.circle_photo_box .circle_title img {
  width: 100%;
}

.circle_photo_box .col.text {
  padding-top: 100px;
  padding-left: 70px;
}

.circle_photo_box.right .col.text {
  text-align: right;
  padding-left: 0px;
  padding-right: 70px;
}

.circle_photo_box.right .col.text p {
  float: right;
}

.circle_photo_box .circle_photo {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.circle_photo_box p {
  width: 100%;
  max-width: 650px;
}




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

  .circle_photo_box .circle_photo {
    max-width: 380px;
  }

  .circle_photo_box .col.text {
    padding-top: 20px;
  }

}

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

  .circle_photo_box {
    padding-top: 370px;
  }

  .circle_photo_box .circle_photo {
    max-width: 300px;
  }

  .circle_photo_box .col.text {
    padding-top: 20px;
    width: 100%;
    padding-left: 0!important;
    padding-right: 0!important;
    text-align: center!important;
  }

  .circle_photo_box .col.text p {
    margin-left: auto!important;
    margin-right: auto!important;
    float: none!important;
  }

  .col.circleCol {
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
  }


}

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

  .circle_photo_box {
    padding-top: 330px;
  }

  .circle_photo_box .circle_photo {
    max-width: 280px;
  }

  .col.circleCol {
    top: 50px;
  }

}


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

  .circle_photo_box {
    padding-top: 280px;
  }

  .circle_photo_box .circle_photo {
    max-width: 240px;
  }

}

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

  .circle_photo_box {
    padding-top: 250px;
  }

  .circle_photo_box .circle_photo {
    max-width: 220px;
  }

}



  #bottom_gallery_box {
    font-size: 0;
    margin-top: 120px;
  }

  .pages #bottom_gallery_box {
    margin-top: 0px;
  }

  #bottom_gallery_box.border {
    border-bottom: 10px #fff solid;
  }

  #bottom_gallery_box .gallery_item {
    width: 20%;
    height: 280px;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
  }

  #bottom_gallery_box .gallery_item:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }


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

  #bottom_gallery_box .gallery_item {
    height: 230px;
  }

}

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

  #bottom_gallery_box .gallery_item {
    width: 25%;
  }

  #bottom_gallery_box .gallery_item:last-child {
    display: none;
  }

}

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

  #bottom_gallery_box .gallery_item {
    width: 33.3%;
  }

  #bottom_gallery_box .gallery_item:first-child {
    display: none;
  }

}

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

  #bottom_gallery_box .gallery_item:nth-child(2) {
    width: 100%;
  }

  #bottom_gallery_box .gallery_item {
    width: 50%;
  }

  #bottom_gallery_box .gallery_item:first-child {
    display: none;
  }

}



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

  #bottom_gallery_box .gallery_item {
    width: 100%;
  }


}


#home_about_box {
  position: relative;
}

#home_about_box p, #home_about_box h2 {
  color: #fff;
}

#home_about_box .buttons_row {
  margin-top: 50px;
}


#booking_box {
  background: #FAFAFA;
}

#booking_logo {
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -150px;
  margin-bottom: -30px;
}

#booking_logo img {
  width: 100%;
}

#booking_box .buttons_row {
  margin-top: 50px;
}

.social_row {
  margin-top: 30px;
}

.social_item {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.social_row a:last-child .social_item {
  margin-right: 0;
}

.social_item img {
  width: 100%;
  height: 100%;
}

.social_item:hover {
  opacity: 0.7;
}



#footer {
  background: #EFEFEF;
  padding: 35px;
  text-align: center;
  font-size: 12px;
  line-height: 25px;
}

#footer a:hover {
  text-decoration: underline;
}

#footer_logo {
  width: 170px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

#footer_logo img {
  width: 100%;
}

#footer span {
  display: block;

}

#footer span:last-child {
  padding-top: 15px;
}

#pages_header_box {
  position: relative;
  width: 100%;
  background: #2E537D;
  color:#fff;
  padding-left: 300px;
  overflow: hidden;
}

#pages_header_box > .bg {
  opacity: 0.19;
}

#pages_header_box .title {
  left: 100px;
  right: 100px;
  position: absolute;
}

#pages_header_box .title img {
  max-width: 100%;
}

#pages_header_box p {
  max-width: 600px;
  margin-top: 140px;
  position: relative;
}

#pages_header_box h1 {
  position: relative;
  color: #fff;
  margin-top: 150px;
  margin-bottom: 20px;
}

.pages #home_circle_box {
  -webkit-transition: all 0ms ease;
  -moz-transition: all 0ms ease;
  -ms-transition: all 0ms ease;
  -o-transition: all 0ms ease;
  transition: all 0ms ease;
  transition-delay: 0ms;
  width: 320px;
  position: absolute;
  top: 160px;
  bottom: 0;
  left: -30px;
  border-left: 10px #fff solid;
  border-right: 10px #fff solid;
  margin-left: 0;
  height: auto;
}

.pages #home_circle_logo {
  -webkit-transition: all 0ms ease;
  -moz-transition: all 0ms ease;
  -ms-transition: all 0ms ease;
  -o-transition: all 0ms ease;
  transition: all 0ms ease;
  transition-delay: 0ms;
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  position: absolute;
  left: -10px;
  right: -10px;
  top: -170px;
  opacity: 1;
  visibility: visible;
  backface-visibility: hidden;
}

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

  #pages_header_box p {
    margin-top: 100px;
  }


}

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

  #pages_header_box {
    padding-left: 200px;
  }

  #pages_header_box p {
    margin-top: 80px;
  }

  #pages_header_box > .padding {
    padding: 60px 100px;
  }

  .pages #home_circle_box {
    width: 240px;
    top: 120px;
    left: -30px;
  }

  .pages #home_circle_logo {
    left: -10px;
    right: -10px;
    top: -130px;
  }

}

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

  #pages_header_box {
    padding-left: 0px;
    overflow: hidden;
  }

  #pages_header_box p {
    margin-top: 60px;
    font-size: 16px;
  }

  #pages_header_box > .padding {
    padding: 50px;
    z-index: 2;
  }

  .pages #home_circle_box {
    display: none;
  }

  #pages_header_box > .bg {
    opacity: 0.1;
  }

  #pages_header_box .title  {
   fill:#fff!important;
  }

  #pages_header_box .title {
    left: 50px;
    right: 50px;
  }


}

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

  #pages_header_box > .padding {
    padding: 50px 30px;
    z-index: 2;
  }

  #pages_header_box .title {
    left: 30px;
    right: 30px;
  }


}




.brain_text_row {
  position: relative;
}

.brain_text_box {
  margin-top: 100px;
  margin-bottom: 100px;
  position: relative;
  max-width: 800px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.brain_text_box .centered_text_box {
  margin: 0 auto;
}

.brain_box_bg {
  position: absolute;
  width: 830px;
  margin-left: -415px;
  left: 50%;
}

.brain_box_bg img {

}

.brain_text_row .br_image {
  position: absolute;
  top: 50%;
  bottom:-200px;
  right: 0;
  width: 50%;
}

.background_row {
  position: relative;
  color:#fff;
}

.background_row h2 {
  color: #fff;
}

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

  .brain_text_box {
    max-width: 650px;
  }

  .brain_text_box .centered_text_box {
    margin: 0 auto;
  }

  .brain_box_bg {
    position: absolute;
    width: 740px;
    margin-left: -370px;
    left: 50%;
    top: 30px;
  }

}

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

  .brain_text_box {
    max-width: 550px;
  }

  .brain_text_box .centered_text_box {
    margin: 0 auto;
  }

  .brain_box_bg {
    display: none;
  }

  .brain_text_row {
    background-image: url(/images/brain_mobile_bg.jpg);
    background-size: cover;
    background-position: center;
  }


}






.live_shows_welcome_box {
  padding-left: 300px;
}

.live_shows_welcome_box p {
  max-width: 600px;
}

.circle_image_box {
  width: 320px;
  position: absolute;
  bottom:0;
  top: 0;
  left: -30px;
}

.circle_image_bg {
  background: #FAFAFA;
  position: absolute;
  bottom: 210px;
  left: 0;
  top: 0;
  right:0;
  border-left: 10px #FAFAFA solid;
  border-right: 10px #FAFAFA solid;
}

.circle_image_box .circle_image {
  position: absolute;
  left: -10px;
  right: -10px;
  top: 50%;
  margin-top: -160px;
  opacity: 1;
  visibility: visible;
  backface-visibility: hidden;
  width: 330px;
  height: 330px;
  border: 10px #FAFAFA solid;
}

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

  .live_shows_welcome_box {
    padding-left: 200px;
  }

  .live_shows_welcome_box > .padding {
    padding: 60px 100px;
  }

  .pages #home_circle_box {
    width: 240px;
    top: 120px;
    left: -30px;
  }

  .pages #home_circle_logo {
    left: -10px;
    right: -10px;
    top: -130px;
  }

  .background_row .circle_image_box {
    width: 240px;
  }

  .background_row .circle_image_bg {
    bottom: 170px;
  }

  .background_row .circle_image_box .circle_image {
    width: 250px;
    height: 250px;
    margin-top: -120px;
  }

}

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

  .background_row .circle_image_bg {
    display: none;
  }

  .background_row .circle_image_box .circle_image {
    width: 250px;
    height: 250px;
    margin-top: 0;
    top: -30px;
  }

  .live_shows_welcome_box {
    padding-left: 150px;
  }

}

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

  .live_shows_welcome_box > .padding {
    padding: 60px 50px;
  }

  .background_row .circle_image_box {
    z-index: 2;
    opacity: 0.3;
    -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  }

  .live_shows_welcome_box {
    z-index: 3;
    padding-left: 0;
    position: relative;
  }

}


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

  .live_shows_welcome_box > .padding {
    padding: 60px 30px;
  }

}


#mentalism_box {
  width: 100%;
  position: relative;
  text-align: right;
  padding-right: 300px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.mentalism_title {
  position: absolute;
  left: 50px;
  bottom: 0;
  top: 100px;
  right: 50px;
}

.mentalism_title img {
  width: 100%;
}

#mentalism_box p {
  max-width: 600px;
  float: right;
}

#mentalism_box .circle_image_box {
  width: 320px;
  position: absolute;
  bottom:0;
  top: 0;
  left: auto;
  right: -30px;
}

#mentalism_box .circle_image_box:before {
  content: url(/images/brain_half_r_g.svg);
  position: absolute;
  width: 190px;
  right: -50px;
  top: 51%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

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

  #mentalism_box {
    padding-right: 260px;
  }

}


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

  #mentalism_box {
    padding-right: 0px;
    text-align: center;
  }

  #mentalism_box p {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }

  #mentalism_box .circle_image_box {
    opacity: 0.2;
    z-index: 1;
    -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  }

  #mentalism_box .padding {
    z-index: 3;
  }

}





#live_shows_gallery_box {
  position: relative;
  text-align: center;
}

.live_shows_gallery {
  top: 0;
  bottom: 0;
  right: 50px;
  left: 50px;
  overflow: hidden;
  -webkit-border-radius:400px;
  border-radius:400px;
  position: absolute;
}

.live_shows_gallery_item {
  position: absolute;
  width: 50%;
  height: 50%;
}

.live_shows_gallery_item.tl {
  left: 0;
  top: 0;
}

.live_shows_gallery_item.tr {
  right: 0;
  top: 0;
}

.live_shows_gallery_item.br {
  right: 0;
  bottom: 0;
}

.live_shows_gallery_item.bl {
  left: 0;
  bottom: 0;
}

.live_shows_gallery_content {
  margin: 0 auto;
  max-width: 650px;
  position: relative;
  overflow: hidden;
  -webkit-border-radius:400px;
  border-radius:400px;
  padding: 100px;
}

.live_shows_gallery_content .content {
  position: relative;
}

.live_shows_gallery_content .content h2, .live_shows_gallery_content .content p {
  color:#fff;
}


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

  .live_shows_gallery {
    top: 0;
    bottom: 0;
    right: 0px;
    left: 0px;
    overflow: hidden;
    -webkit-border-radius:0px;
    border-radius:0px;
    position: absolute;
  }

  .live_shows_gallery_content {
    padding: 50px 100px;
  }

  #live_shows_gallery_box > .padding {
    padding: 0;
  }

}

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


  .live_shows_gallery_content {
    padding: 50px;

  }

}

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


  .live_shows_gallery_content {
    padding: 50px 30px;

  }

}



.watch_section {
  padding: 100px;
  padding-left: 400px;
  padding-bottom: 0;
}


.watch_section.testimonials {
  padding: 100px;
  padding-left: 400px;
  padding-bottom: 100px;
  position: relative;
  margin-top: 100px;
  color:#fff;
}

.watch_section.testimonials h2 {
  color: #fff;
}

.testimonials_content {
  position: relative;
}

.watch_items_box {
  font-size: 0;
  margin-top: 50px;
}

.watch_item {
  color:#2E537D;
  position: relative;
  width: 33.3%;
  padding: 30px;
  padding-top: 120px;
  border: 10px #fff solid;
  -webkit-box-shadow: 0 0 60px 0 rgba(0,0,0,0.16);
  box-shadow: 0 0 60px 0 rgba(0,0,0,0.16);
  min-height: 350px;
  background: #fff;
}

.testimonials .watch_item {
  border: 10px #2E537D solid;
  background: #2E537D;
}

.watch_item .content {
  position: relative;
}

.watch_item p {
  margin-top: 10px;
}

.watch_item .bg {
  opacity: 0.14;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.watch_item:hover .bg {
  opacity: 0.22;
}

.watch_item .icon {
  margin-bottom: 20px;
  position: absolute;
  left: 15px;
  top: 15px;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.testimonials .watch_item .icon {
   top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
}

.watch_item:hover .icon {
  -moz-transform: scale(1.1);
-webkit-transform: scale(1.1);
-o-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}

.testimonials .watch_item:hover .icon {
   top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
  position: absolute;
}



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

  .watch_item {
    width: 50%;
  }

}

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

  .watch_section {
    padding-left: 300px!important;
  }

}

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

  .watch_section {
    padding-left: 50px!important;
    padding-right: 50px!important;
  }

}

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

  .watch_item {
    width: 100%;
  }

}

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

  .watch_section {
    padding-left: 30px!important;
    padding-right: 30px!important;
  }

}



.number_circle {
  position: absolute;
  left:50%;
  margin-left: -80px;
  font-size: 0;
  top: -35px;
  height: 160px;
  width: 160px;
}

.number_circle span {
  font-size: 90px;
  font-weight: 700;
}

.number_circle img {
  position: absolute;
  width: 100%;
}

.why p {
  max-width: 500px;
}

.number_circle.two img {
  -moz-transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.number_circle.three img {
  -moz-transform: rotate(60deg);
  -webkit-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}
.number_circle.four img {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.number_circle.five img {
  -moz-transform: rotate(120deg);
  -webkit-transform: rotate(120deg);
  -o-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}
.number_circle.six img {
  -moz-transform: rotate(150deg);
  -webkit-transform: rotate(150deg);
  -o-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}


.about_gallery_item {
  top: 65px;
  width: 300px;
  background: red;
  position: relative;
  left: 30px;
  border:10px #fff solid;
  overflow: hidden;
  margin-right: -60px;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
}

.about_gallery_item:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.brain_text_row.about_gallery {
  padding-bottom: 140px;
}

.about_mobile {
  display: none;
}

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

  .about_gallery_item {
    width: 270px;
    left: 0px;
    top: 80px;
  }

}


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

  .brain_text_row.about {
    background-image: none;
  }

  .about_mobile {
    display: block;
    width: 100px;
    position: relative;
    left: 50%;
    margin-left: -75px;
    margin-top: -150px;
    margin-bottom: -150px;
  }

  .about_mobile.small {
    width: 40px;
    margin-top: 50px;
    margin-left: -20px;
  }

  .about_mobile.small.last {
    margin-bottom: 0;
    margin-bottom: 50px;
  }

  .brain_text_row.about_gallery {
    padding-bottom: 0px;
  }

  .about_gallery_item {
    width: 270px;
    left: 0px;
    top: 80px;
    margin-right: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -60px;
  }

  .about_gallery .about_gallery_item:last-child {
    margin-bottom: 0px;
  }

  .about_gallery {
    text-align: center;
  }

}

#contacts_overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  top: 0;
}

#contacts_overlay.show {
  opacity: 1;
  visibility: visible;
}

#contacts_box {
  position: fixed;
  z-index: 11;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
  padding: 50px;
  background:#fff;
  text-align: center;
  -moz-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -o-transform:  translateY(100%);
  -ms-transform:  translateY(100%);
  transform:  translateY(100%);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  opacity: 0;
  visibility: none;
  backface-visibility: hidden;
}

#contacts_box.show {
  -moz-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -o-transform:  translateY(0%);
  -ms-transform:  translateY(0%);
  transform:  translateY(0%);
  opacity: 1;
  visibility: visible;
}

#contacts_box p a:hover {
  text-decoration: underline;
}

#contacts_box .close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  cursor: pointer;
}

#contacts_box .social_row {
  margin-bottom: 50px;
}



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

  #contacts_box {

  overflow-y: scroll;
   -webkit-overflow-scrolling:scroll;
   height: auto;
   top:0;
   padding-top: 90px;
}

}

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

  #contacts_box {
  overflow-y: scroll;
   -webkit-overflow-scrolling:scroll;
   height: auto;
   top:0;
   padding-top: 90px;
}

}

.pink #pages_header_box {
  background: #000;
}

.pink #pages_header_box .bg {
  opacity: 0.7;
}

.pink #pages_header_box .title {
  position: relative;
  padding: 50px 0;
  left: auto;
  right: auto;
}

/**
.pink .main_menu_item {
  color: #CC0A44;
}
**/

.pink .main_menu_item::before {
  content: url(/images/brain_half_l_p.svg);
}

.pink .main_menu_item::after {
  content: url(/images/brain_half_r_p.svg);
}

#couples_main_box {
  text-align: center;
}

#couples_main_box h3 {
  font-size: 40px;
  color: #CC0A44;
}

#couples_main_box h3 span {
  text-transform: uppercase;
}

.couples_type_item {
  width: 45%;
  background: #CC0A44;
  color: #fff;
  padding: 50px;
  -webkit-border-radius:90px;
  border-radius:90px;
  border: 20px #fff solid;
  -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,0.16);
  box-shadow: 0 0 30px 0 rgba(0,0,0,0.16);
  position: relative;
  padding-left: 160px;
}

.couples_type_item h2 {
  color: #fff;
  text-transform: uppercase;
}

.couples_type_item .number {
  position: absolute;
  top: 0;
  left: 0;
}

.padding.noTop {
  padding-top: 0;
}

.padding.noBottom {
  padding-bottom: 0;
}

#couples_threeBox {
  z-index: 3;
  position: relative;
}

.couple_threeBox_item {
  background: #FFE2E9;
  -webkit-border-radius:90px;
  border-radius:90px;
  overflow: hidden;
  width: 32%;
}

.couple_threeBox_item .photo img {
  width: 100%;
  font-size: 0;
}

.couple_threeBox_item .content {
  padding: 50px;
}

.couple_threeBox_item .content p {
  margin: 0;
  font-weight: 700;
  color:#CC0A44;
}

#couples_media_box {
  margin-top: -100px;
  padding-top: 200px;
  text-align: center;
}

#couples_media_box p {
  color: #fff;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
}

#couples_media_box .content {
  position: relative;
}

.media_box {
  background: #fff;
  position: relative;
  -webkit-border-radius:90px;
  border-radius:90px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.media_box .media {
  -webkit-border-radius:90px;
  border-radius:90px;
  position: absolute;
  background: #fff;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  cursor: pointer;
  overflow: hidden;
}

.media_box .media .bg {
  opacity: 0.5;
}

#couples_text_box {
  text-align: center;
}

#couples_text_box h2 {
  text-transform: uppercase;
}

#couples_text_box h2, #couples_text_box p {
  color: #CC0A44;
}

#couples_text_box p.boxed {
  background: #CC0A44;
  -webkit-border-radius:50px;
  border-radius:50px;
  color: #fff;
  padding: 50px;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  border: 10px #fff solid;
  margin-bottom: -100px;
  z-index: 2;
  position: relative;
}

.pink .centered_text_box .padding {
  padding-bottom: 0px;
}

.pink #booking_box {
  margin-top: 0;
  padding-top: 0;
}

.pink #booking_box .padding {
  padding-top: 0;
  padding-bottom: 20px;
}

.pink .blueColor {
  color: #CC0A44!important;
}

.brain_text_row.pink h2 {
  color: #CC0A44!important;
}

.pink #contacts_box p {
  color: #CC0A44!important;
}

.pink .main_btn {
  background: #CC0A44!important;
}

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

  .couples_type_item {
    width: 100%;
    margin-bottom: 30px;
    border: 15px #fff solid;
    -webkit-border-radius:60px;
    border-radius:60px;
    padding: 50px;
    padding-left: 100px;
  }

  #couples_type_box .couples_type_item:last-child {
    margin-bottom: 0;
  }

  .couples_type_item .number {
    width: 80px;
  }

  .couples_type_item .number img {
    width: 100%;
  }

  .couple_threeBox_item {
    -webkit-border-radius:40px;
    border-radius:40px;
  }

  .couple_threeBox_item .content {
    padding: 30px;
  }

  #couples_media_box .media_box {
    -webkit-border-radius:40px;
    border-radius:40px;
  }

  #couples_media_box .media_box .media {
    -webkit-border-radius:40px;
    border-radius:40px;
  }

}

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

  .couple_threeBox_item {
    width: 100%;
    margin-bottom: 50px;
  }

  #couples_threeBox .couple_threeBox_item:last-child {
    margin-bottom: 0px;
  }

}

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

  .pink #pages_header_box .title {
    margin: 0;
  }

  .pink h3 {
    font-size: 30px!important;
  }

  .pink h2 {
    font-size: 30px!important;
  }

  .pink p.boxed {
    font-size: 20px!important;
    padding: 30px!important;
  }

  .couples_type_item {
    padding: 30px;
    text-align: center!important;
    margin-bottom: 80px;
  }

  .couples_type_item .number {
    left: 50%;
    margin-left: -40px;
    top: -60px;
  }

  .couple_threeBox_item {
    text-align: center!important;
  }

  .media_box:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 100%;
  }

}

.pinkColor {
  color: #CC0A44!important;
}

.brain_text_row.romance .padding {
  padding-top: 80px;
}

.brain_text_row.family_friends .padding {
  padding-top: 70px;
}

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

  .brain_text_row.romance .padding {
    padding-top: 120px;
  }

  .brain_text_row.family_friends .padding {
    padding-top: 85px;
  }

}

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

  .brain_text_row.romance .padding {
    padding-top: 100px;
  }

  .brain_text_row.family_friends .padding {
    padding-top: 100px;
  }

}


.download #header {
  text-align: center;
  background-color: #CC0A44;
  position: relative;
  -webkit-box-shadow: 0 0 60px 0 rgba(0,0,0,0.16);
  box-shadow: 0 0 60px 0 rgba(0,0,0,0.16);
  z-index: 1;
}

.download #main_logo {
  top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;

}

.download_spacer {
  width: 100%;
  height: 1px;
  background: #c6c6c6;
}

.download #booking_box {
  position: relative;
}

.download_item {
    background: #FFE2E9;
    -webkit-border-radius:90px;
    border-radius:90px;
    overflow: hidden;
    width: 100%;
    max-width: 700px;
    padding: 30px;
    margin: 0 auto;
    color: #CC0A44;
    margin-bottom: 50px;
}

.download_item h1 {
  color: #CC0A44;
}

.padding .download_item:last-child {
  margin-bottom: 0;
}

.download_item .main_btn {
  background:  #CC0A44;
}

.download #footer {
  background: #FFE2E9;
    color: #CC0A44;
}

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

  .download_item {
      -webkit-border-radius:30px;
      border-radius:30px;
  }

}
