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

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

body{
	margin:0;
	padding:0;
	font-size: 14px;
	background-color: #000;
	color:#fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  font-family: 'Sen', sans-serif;
}

html, body {
     overflow-x:hidden;
}

a { color:inherit; }

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

.bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#top_row {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  line-height: 100px;
  z-index: 5;
}

#main_logo {
  position: absolute;
  left: 0;
  width: 60px;
  left: 30px;
  top: 16px;
}

#main_logo img {
  width: 100%;
}

#main_menu {
  position: absolute;
  right: 30px;
  z-index: 7;
  height: 100px;
  line-height: 100px;
}

.main_menu_item {
  text-transform: uppercase;
  font-size: 16px;
  margin-left: 70px;
  position: relative;
}

.main_menu_item span {
  position: relative;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}


.main_menu_item span:before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  opacity: 0.4;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;

}

.main_menu_item.selected span:before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 1;
}

.main_menu_item:hover span:before {
  width: 100%;
}

#main_menu a:first-child .main_menu_item  {
  margin-left: 0;
}

#header {
  position: relative;
  height: 100vh;
  height: calc(100vh - var(--vh-offset));
  width: 100%;
}

.pages #header {
  height: 500px;
}

#header .bg {
  opacity: 0.39;
}

@keyframes jump {
  0% { top: 0; } 50% { top: 15px; } 100% { top: 0; }
}

#arrow {
  position: absolute;
  bottom: 20px;
  width: 30px;
  left: 50%;
  margin-left: -15px;
  display: none;
}

#arrow img {
  position: relative;
  animation: jump 2s infinite;
}

#pageTitle {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  height: 78px;
  bottom: -37px;
}

#pageTitle:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
  height: 1px;
  background: #fff;
  width: 700px;
  opacity: 0.4;
}

#pageTitle:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
  height: 1px;
  background: #fff;
  width: 700px;
  opacity: 0.4;
}

#home_logo_text {
  position: relative;
  width: 300px;
  margin: 0 auto;
}

#home_logo_text img {
  width: 100%;
}

#header_content {
  position: absolute;
  padding-left: 50%;
  width: 100%;
  padding-right: 100px;
}

.pages #pageTitle h1 {
  text-transform: uppercase;
  font-size: 60px;
  margin-top: 15px;
}

.uppercase {
  text-transform: uppercase;
}

h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
}

h1 {
  font-size: 43px;
  line-height: 50px;
  font-weight: 700;
}

h2 {
  font-size: 35px;
  line-height: 40px;
  font-weight: 700;
}

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

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

#header_content p {
  margin-top: 20px;
}

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

.padding.big {
  padding: 200px 70px;
}

#page_welcome_text {
  text-align: center;
  position: relative;
  z-index: 2;
}

#page_welcome_text p {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

#page_welcome_text .padding {
  padding-bottom: 0;
}

.main_btn {
  background: #000;
  font-size: 18px;
  color: #fff;
  height: 55px;
  line-height: 55px;
  padding: 0px 30px;
  text-transform: uppercase;
  margin-top: 40px;
  cursor: pointer;
}

.main_btn:hover {
  background: #fff;
  color: #000;
}

.main_btn.white {
  background: #fff;
  color: #000;
  height: 55px;
  line-height: 47px;
  border: 4px #fff solid;
}

.main_btn.white:hover {
  background: #000;
  color: #fff;
}

.fourImagesBox {
  padding: 300px 70px;
  position: relative;
  margin-top: -27px;
  text-align: center;
}

.fourImagesBox .image_item {
  width: 50%;
  height: 50%;
  position: absolute;
}

.fourImagesBox .image_item.tl {
  top: 0;
  left: 0;
}

.fourImagesBox .image_item.tr {
  top: 0;
  right: 0;
}

.fourImagesBox .image_item.bl {
  bottom: 0;
  left: 0;
}

.fourImagesBox .image_item.br {
  bottom: 0;
  right: 0;
}

.fourImagesBox_content {
  background: #000;
  position: relative;
  text-align: left;
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  z-index: 3;
}

.fourImagesBox_content p {
  margin-top: 30px;
}

.leftLine {
  position: relative;
}

.leftLine:before {
  content: '';
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #fff;
  opacity: 0.4;
  position: absolute;
}

.fourImagesBox_content.leftLine:before {
  left: 35px;
  top: 35px;
  bottom: 35px;
}

.twoColBox {
  position: relative;
  font-size: 0;
  margin: 100px 0;
}

.twoColBox .col {
  width: 50%;
}

.twoColBox .col.title p.big {
  max-width: 550px;
  margin-top: 10px;
}

.twoColBox .col.text p {
  margin-top: 20%;
  max-width: 550px;
}

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

#quotes_box .bg {
  opacity: 0.39;
}

#quotes_box p {
  max-width: 600px;
  margin: 0 auto;
}

#quotes_box .nameSurname {
  margin-top: 20px;
  font-weight: 700;
  font-size: 16px;
  position: relative;
}

#quotes_box .nameSurname:before {
  left: 0;
  bottom: -10px;
  height: 1px;
  background: #fff;
  opacity: 0.4;
  position: absolute;
  right: 0;
  content: '';
}

#quotes_box .nameSurname span {
  font-weight: 300;
  font-size: 14px;
}

#footer_contacts_box {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

#footer_contacts_box:before {
  content: '';
  position: absolute;
  left: 0;
  top: 39px;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
  height: 1px;
  background: #fff;
  width: 500px;
  opacity: 0.4;
}

#footer_contacts_box:after {
  content: '';
  position: absolute;
  right: 0;
  top: 39px;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
  height: 1px;
  background: #fff;
  width: 500px;
  opacity: 0.4;
}

#footer_contacts_box h1 {
  margin-top: 10px;
}

#footer_contacts_box .main_btn {
  margin-top: 60px;
}

.socialMedia_row {
  margin-top: 30px;
}

.socialMedia_item {
  margin-right: 15px;
  width: 20px;
  height: 20px;
}

.socialMedia_item:hover {
  opacity: 0.6;
}

.socialMedia_row a:last-child .socialMedia_item {
  margin-right: 0;
}

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

#footer_row {
  background: #101010;
  margin-top: 100px;
  padding: 40px;
  text-align: center;
}

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

#footer_logo {
  width: 200px;
  margin: 0 auto;
}

#footer_logo img {
  width: 100%;
}

#footer_row p {
  font-size: 14px;
  margin-top: 20px;
}

.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #fff; }

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -8px; }
  .hamburger-inner::after {
    bottom: -8px; }

    .hamburger--spin .hamburger-inner {
      transition-duration: 0.22s;
      transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
      .hamburger--spin .hamburger-inner::before {
        transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
      .hamburger--spin .hamburger-inner::after {
        transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

    .hamburger--spin.is-active .hamburger-inner {
      transform: rotate(225deg);
      transition-delay: 0.12s;
      transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
      .hamburger--spin.is-active .hamburger-inner::before {
        top: 0;
        opacity: 0;
        transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
      .hamburger--spin.is-active .hamburger-inner::after {
        bottom: 0;
        transform: rotate(-90deg);
        transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }


    .hamburger {
      position: fixed;
      top: 0px;
      right: 0px;
      z-index: 7;
      background: transparent;
      display: none;
      -webkit-transition: all 600ms ease;
      -moz-transition: all 600ms ease;
      -ms-transition: all 600ms ease;
      -o-transition: all 600ms ease;
      transition: all 600ms ease;
      cursor: pointer;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 6;
      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;
    }

    .h_spacer {
      height: 150px;
      width: 1px;
      background: #fff;
      opacity: 0.4;
      margin: 50px auto;
    }

    .twoCol_image_box {
      position: relative;
      padding-left: 50%;
    }

    .twoCol_image_box .image_box {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 50%;
      background-position: left;
    }

    .twoCol_image_box .content_box {
      position: relative;
    }

    .twoCol_image_box .content_box .padding {
      padding: 100px;
    }

    .twoCol_image_box .content_box .bg {
      opacity: 0.24;
    }

    .twoCol_image_box .content_box p {
      margin-top: 30px;
    }

    .twoImage_box {
      font-size: 0;
    }

    .twoImage_box .twoImage_item {
      width: 50%;
      position: relative;
    }

    .twoImage_box .twoImage_item .bt {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 50px;
      background: #000;
      opacity: 0.8;
    }

    .twoImage_box .twoImage_item .bb {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 50px;
      background: #000;
      opacity: 0.8;
    }

    .twoImage_box .twoImage_item .br {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      width: 50px;
      background: #000;
      opacity: 0.8;
    }

    .twoImage_box .twoImage_item .bl {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 50px;
      background: #000;
      opacity: 0.8;
    }

    #shows_menu_box {
      width: 100%;
      text-align: center;
      margin: 100px 0;
    }

    #shows_menu_box .spacer {
      width: 100%;
      height: 1px;
      background: #fff;
      opacity: 0.4;
      margin: 20px 0;
    }

    .shows_menu_item {
      text-transform: uppercase;
      font-size: 18px;
      margin-right: 40px;
    }

    .shows_menu_item.lastTop {
      margin-right: 0;
    }

    .shows_menu_item.customized {
      margin-right: 0;
    }

    .shows_menu_item:hover {
      opacity: 0.6;
    }

    #shows_list_box {
      width: 100%;
    }

    .shows_list_item {
      position: relative;
    }

    .shows_list_item .show_top {
      position: relative;
      padding-left: 35%;
    }

    .shows_list_item.right .show_top {
      position: relative;
      padding-left: 0;
      padding-right: 35%;
    }

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

    .shows_list_item .show_img {
      width: 35%;
      position: absolute;
      bottom: 0;
      left: 0;
      top: 0;
    }

    .shows_list_item.right .show_img {
      width: 35%;
      position: absolute;
      bottom: 0;
      left: auto;
      right: 0;
      top: 0;
    }

    .shows_list_item .show_content {
      position: relative;
    }

    .shows_list_item .show_content .bg {
      opacity: 0.19;
    }

    .shows_list_item .show_text {
      position: relative;
      padding: 20px 0;
      padding-left: 35%;
    }

    .shows_list_item.right .show_text {
      position: relative;
      padding: 20px 0;
      padding-left: 0;
      padding-right: 35%;
    }

    .shows_list_item .show_text:before {
      position: absolute;
      content: '';
      left: 35%;
      bottom: 50px;
      top: 50px;
      width: 1px;
      background: #fff;
      opacity: 0.4;
    }

    .shows_list_item.right .show_text:before {
      position: absolute;
      content: '';
      left: auto;
      right: 35%;
      bottom: 50px;
      top: 50px;
      width: 1px;
      background: #fff;
      opacity: 0.4;
    }

    .simple_btn {
      text-transform: uppercase;
      text-decoration: underline;
      font-size: 18px;
      margin-top: 40px;
    }

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

    #media_intro_box {
      margin-top: 100px;
      width: 100%;
    }

    #media_intro_images {
      font-size: 0;
    }

    .media_intro_img {
      width: 50%;
      height: 450px;
    }

    #media_intro_text_box {
      background: #000;
      width: 100%;
      max-width: 700px;
      margin: 0 auto;
      margin-top: -150px;
      position: relative;
    }

    #media_intro_text_box p {
      margin-top: 10px;
    }

    #media_list_box {

    }

    .media_list_item {
      position: relative;
      width: 30%;
      margin-bottom: 100px;
    }

    .media_list_item:before {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 1px;
      background: #fff;
      opacity: 0.4;
      content:'';
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
    }

    .media_list_item:hover:before {
      width: 5px;
      opacity: 1;
    }

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

    .media_list_item .bg {
      -webkit-filter: grayscale(100%);
      filter: grayscale(100%);
      opacity: 0.18;
    }

    .media_list_content {
      position: relative;
      padding: 30px;
      text-align: left;
    }

    p a {
      text-decoration: underline;
      font-weight: 700;
    }

    p a:hover {
      text-decoration: none;
    }


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

  #pageTitle:before {
    width: 650px;
  }

  #pageTitle:after {
    width: 650px;
  }

  #footer_contacts_box:before {
    width: 350px;
  }

  #footer_contacts_box:after {
    width: 350px;
  }

}

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

  #pageTitle:before {
    width: 550px;
  }

  #pageTitle:after {
    width: 550px;
  }

}

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

  #pageTitle:before {
    width: 430px;
  }

  #pageTitle:after {
    width: 430px;
  }

  .twoColBox .col.text p {
    margin-top: 30%;
  }

  #footer_contacts_box:before {
    width: 280px;
  }

  #footer_contacts_box:after {
    width: 280px;
  }

}

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

    #header_content {
      padding-left: 30%;
    }

    #pageTitle:before {
      width: 100%;
      top: 0;
    }

    #pageTitle:after {
      display: none;
    }

    #pageTitle {
      position: relative
      bottom: 0;
      width: 100%;
      text-align: center;
      height: 78px;
      bottom: 0;
      -webkit-transform: translate(0, 100%);
      transform: translate(0, 100%);
      padding-top: 60px;
    }

    #page_welcome_text {
      padding-top: 100px;
    }

    #home_logo_text {
      width: 80%;
      max-width: 300px;
    }

    #home_logo_text img {
      width: 100%;
    }

    #arrow {
      display: block;
    }

    .fourImagesBox {
      padding: 200px 70px;
    }

    .twoColBox .col.text p {
      margin-top: 40%;
    }

    #footer_contacts_box {
      text-align: center;
      position: relative;
      z-index: 2;
      margin-top: 0px;
      padding: 0 30px;
      padding-top: 70px;
    }

    #footer_contacts_box:before {
      left: 0;
      top: 0;
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0);
      width: 100%;
    }

    #footer_contacts_box:after {
      display: none;
    }

    .pages #header {
      height: 350px;
    }

    .pages #pageTitle h1 {
      margin-top: 0;
    }

    .twoCol_image_box .content_box .padding {
      padding: 70px;
    }

    .twoImage_box .twoImage_item .bt {
      height: 30px;
    }

    .twoImage_box .twoImage_item .bb {
      height: 30px;
    }

    .twoImage_box .twoImage_item .br {
      width: 30px;
    }

    .twoImage_box .twoImage_item .bl {
      width: 30px;
    }

    #shows_menu_box {
      display: none;
    }

    #shows_list_box {
      margin-top: 100px;
    }

    .shows_menu_item {
      font-size: 16px;
      margin-right: 30px;
    }

    .media_list_item {
      width: 47%;
    }
}
.contctfrom{	margin: 0 auto;    padding-bottom: 50px;    width: 70%;}
@media only screen and (max-width: 1000px) {
.contctfrom{	margin: 0 auto;    padding-bottom: 50px;    width: 100%;}
  .overlay.show {
    opacity: 1;
    visibility: visible;
  }

  #main_menu {
    height: auto;
    position: fixed;
    background: #000;
    padding: 50px;
    line-height: 0;
    right: 0;
    bottom: 0;
    width: 330px;
    top: 0;
    z-index: 7;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -o-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(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;
  }

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

  #main_menu:before {
    position: absolute;
    left: 20px;
    top: 0;
    height: 0;
    width: 1px;
    background: #fff;
    content: '';
    opacity: 0.5;
    -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: 0;
  }

  #main_menu.show:before {
    height: 100%;
    transition-delay: 600ms;
  }

  .main_menu_item {
    width: 100%;
    margin-left: 0;
    display: block;
    height: 20%;
    position: relative;
  }
  .main_menu_item span {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    width: 100%;
    text-align: left;
  }

  .main_menu_item span:before {
    display: none;
  }

  .main_menu_item:hover span {
    opacity: 0.5;
  }

  .hamburger {
    display: block;
    height: 80px;
    width: 80px;
  }

  .hamburger.small {
    display: block;
    width: 50px;
    height: 50px;
  }

  h3 {
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
  }

  h1 {
    font-size: 38px;
    line-height: 45px;
    font-weight: 700;
  }

  h2 {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
  }

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

  #page_welcome_text {
    padding-top: 120px;
  }

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

  .fourImagesBox_content.leftLine:before {
    left: 25px;
    top: 25px;
    bottom: 25px;
  }

  .pages #pageTitle h1 {
    font-size: 45px;
  }

  .twoCol_image_box {
    padding-left: 0;
  }

  .twoCol_image_box .content_box {
    text-align: center;
  }

  .twoCol_image_box .image_box {
    position: relative;
    left: auto;
    bottom: auto;
    right: auto;
    top: auto;
    width: 100%;
    height: 400px;
  }

  .twoImage_box .twoImage_item {
    width: 100%;
  }

  .twoImage_box .twoImage_item .bt {
    height: 20px;
  }

  .twoImage_box .twoImage_item .bb {
    height: 20px;
  }

  .twoImage_box .twoImage_item .br {
    width: 20px;
  }

  .twoImage_box .twoImage_item .bl {
    width: 20px;
  }

  .media_intro_img:first-child {
    display: none;
  }

  .media_intro_img {
    width: 100%;
  }

}


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

  #header_content {
    padding-left: 100px;
    padding-right: 100px;
  }

  .fourImagesBox {
    padding: 0;
    position: relative;
    margin-top: -27px;
    text-align: center;
  }

  .fourImagesBox .image_item.tl {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
  }

  .fourImagesBox .image_item.tr {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
  }

  .fourImagesBox .image_item.bl {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
  }

  .fourImagesBox .image_item.br {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
  }

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

  .twoColBox .col {
    width: 100%;
  }

  .twoColBox .col.text {
    padding-left: 40px;
  }

  .twoColBox .col.text:before {
    left: 50px;
  }

  .twoColBox .col.text p {
    margin-top: 0;
  }

  #footer_contacts_box br {
    display: none;
  }

  #footer_logo {
    width: 180px;
  }

  .shows_list_item .show_img {
    position: relative!important;
    width: 100%!important;
    top:auto!important;
    bottom: auto!important;
    right: auto!important;
    left: auto!important;
    height: 250px;
  }

  .shows_list_item .show_top {
    padding: 0px!important;
  }

  .shows_list_item .show_text {
    padding-left: 50px!important;
    padding-right: 0!important;
  }

  .shows_list_item .show_text:before {
    left: 50px!important;
    right: auto!important;
  }

  .media_intro_img {
    height: 300px;
  }

  #media_intro_text_box {
    margin-top: 0;
    max-width: 100%;
  }

  .media_list_item {
    width: 100%;
  }

}

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

  .hamburger {
    display: block;
    height: 60px;
    width: 60px;
  }

  .hamburger.small {
    display: block;
    width: 40px;
    height: 40px;
  }

  .hamburger.small .hamburger-inner, .hamburger.small .hamburger-inner::before, .hamburger.small .hamburger-inner::after {
    width: 25px;
    height: 2px;
  }

  #main_logo {
    width: 50px;
    left: 20px;
  }

  #header_content {
    padding-left: 50px;
    padding-right: 50px;
  }


}

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

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

  h1 {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
  }

  h2 {
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
  }

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

  #page_welcome_text {
    padding-top: 140px;
  }

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

  .fourImagesBox_content.leftLine:before {
    left: 15px;
    top: 15px;
    bottom: 15px;
  }

  .shows_list_item .show_text {
    padding-left: 30px!important;
    padding-right: 0!important;
  }

  .shows_list_item .show_text:before {
    left: 30px!important;
    right: auto!important;
  }

}

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




}

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

  #header_content {
    padding-left: 30px;
    padding-right: 30px;
  }

  #main_menu {
    width: 100%;
  }

}

#badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 120px;
}

#badge img {
  width: 100%;
}


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

  #badge {
    width: 100px;
  }

}

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

  #badge {
    width: 90px;
  }

}
#wa-widget-send-button {    margin: 0 0 50px 0 !important;    padding-left: 15px;    padding-right: 15px;    position: fixed !important;    z-index: 16000160 !important;    bottom: 0 !important;    text-align: center !important;    height: 50px;    min-width: 50px;    border-radius: 25px;    visibility: visible;    transition: none !important;    background-color: #4dc247;    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);    left: 30px;    cursor: pointer;    display: flex;    align-items: center;    justify-content: center;}svg:not(:root) {    overflow: hidden;}.wa-messenger-svg-whatsapp {    fill: white;    width: 41px;    height: 50px;    stroke: none;    pointer-events: none;}#whatsapp-chat-widget {    display: block;}