@import url('https://fonts.googleapis.com/css2?family=Buenard:wght@400;700&family=Lato:wght@300;400;700;900&display=swap');
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0 none;
  list-style: none outside none;
  margin: 0;
  outline: 0 none;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input, img, iframe {
  vertical-align: middle;
  max-width: 100%;
}
.container-fluid {
  max-width: 1254px;
}
@media (min-width: 768px) {
  .col_side {
    width: 400px;
  }
  .col_main {
    width: calc(100% - 400px);
  }
}
body {
  background-color: white;
  color: black;
  font-family: "Lato", sans-serif;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.text-center {
  text-align: center;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #e31515;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
}
ol, ul {
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
li {
  position: relative;
  list-style: none;
}
main ol {
  counter-reset: counter;
}
main ol li {
  counter-increment: counter;
}
main ol li::before {
  content: counter(counter)"";
}

/* header */

.ph {
  background-color: white;
  position: relative;
  z-index: 1000;
}
.ph .current {
  color: #e31515;
}
.pn {
  font: bold 21px 'Buenard', serif;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.icon {
  display: inline-block;
  vertical-align: middle;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
}
.icon-menu {
  background-image: url(../images/menu.svg);
  width: 36px;
  height: 30px;
  cursor: pointer;
}
.social .icon {
  margin-left: 10px;
  margin-right: 10px;
}
.icon-facebook {
  background-image: url(../images/social_facebook.svg)
}
.icon-twitter {
  background-image: url(../images/social_twitter.svg);
}
.icon-tumblr {
  background-image: url(../images/social_tumblr.svg)
}
.icon-instagram {
  background-image: url(../images/instagram.svg)
}
.icon-youtube {
  background-image: url(../images/social_youtube.svg);
  width: 18px;
}
.icon-soundcloud {
  background-image: url(../images/soundcloud.svg);
  width: 24px;
}
.pn .subscribe {
  text-decoration: underline;
  color: #e31515;
}
.pn .subscribe:hover {
  text-decoration: none;
}
.logo a {
  width: 156px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  background: url(../images/logo.svg) center / contain no-repeat;
}
.ph .logo a {
  width: 200px;
  height: 30px;
}
.ph time {
  font-weight: 300;
  font-size: 15px;
}
.showMenu {
  overflow: hidden;
}
.showMenu .ph, .scrollHeader .ph {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, .1);
  -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, .1);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, .1);
}
@media (min-width:992px) {
  .scrollHeader .ph {
    padding-bottom: 0;
  }
  .scrollHeader .pn {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .scrollHeader .ph .container-fluid>div {
    display: none!important;
  }
  .ph {
    padding-bottom: 40px;
  }

  .pn .subscribe {
    font-size: 20px;
  }
  .ph .social .icon {
    margin-left: 10px;
    margin-right: 0;
  }
  .pn {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pn ul {
    flex: 1;
  }
  .pn li {
    flex-grow: 1;
    text-align: center;
  }
}
@media (min-width:1200px) {
  .pn li {
    padding-left: 13px;
    padding-right: 13px;
  }
}
@media (min-width: 576px) and (max-width:1199px) {
  .festivals .viewmore {
    display: none;
  }
}
@media (max-width:991px) {
  .pn {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .pn ul {
    position: fixed;
    z-index: 1;
    top: 60px;
    left: 0;
    right: 0;
    background-color: white;
    height: calc( 100vh - 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    padding-bottom: 15px;
  }
  .showMenu .pn ul {
    opacity: 1;
    visibility: visible;
  }
  .pn ul a {
    display: inline-block;
    padding: 5px 10px;
  }
  .showMenu .icon-menu {
    background-image: url(../images/x.svg);
    background-size: 30px;
  }
  .ph .logo {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
  }
  .ph .subheader {
    display: none;
  }
  .ph .social {
    position: fixed;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    background-color: white;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .showMenu .ph .social {
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: 0px -1px 3px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0px -1px 3px rgba(0, 0, 0, .1);
    box-shadow: 0px -1px 3px rgba(0, 0, 0, .1);
  }
  .pn .subscribe {
    font-size: 0;
    width: 30px;
    height: 30px;
    background: url(../images/mail.svg) center / 24px no-repeat;
  }
}

/* footer */

.pf {
  background-color: #f6f6f6;
  padding-top: 33px;
}
.pf .logo {
  padding-bottom: 26px;
}
.pf li {
  padding: 4px 11px;
}
.pf .list1 {
  text-transform: uppercase;
  font: bold 20px 'Buenard', serif;
  padding-bottom: 26px;
}
.pf .social {
  padding-bottom: 30px;
}
.pf .social .icon {
  width: 20px;
  height: 20px;
}
.pf .social .icon-facebook {}
.pf .social .icon-twitter {}
.pf .social .icon-tumblr {}
.pf .social .icon-instagram {}
.pf .social .icon-youtube {
  width: 25px;
}
.pf .social .icon-soundcloud {
  width: 26px;
}
.pf .list2 {
  font-weight: bold;
  font-size: 17.5px;
  padding-bottom: 4px;
}
.pf .copyright {
  font-size: 16px;
  line-height: 20px;
  color: rgba(0, 0, 0, .58);
  padding-bottom: 50px;
}
@media (min-width:768px) {
  .pf .logo {
    padding-right: 18px;
  }
}

/* homepage */

article .category {
  display: inline-block;
  background-color: white;
  color: #e31515;
  font-weight: bold;
  font-size: 15px;
  line-height: 25px;
  text-transform: uppercase;
  padding: 4px 8px;
}
article .info {
  margin-top: -33px;
}
article summary {
  font: 14.5px/20px "Helvetica", sans-serif;
  color: rgba(0, 0, 0, 0.85);
}
article h2 {
  font-size: 33.5px;
  line-height: 40px;
  padding: 13px 8px 25px;
}
article h3 {
  font-size: 27px;
  line-height: 31px
}
article h4 {
  font-size: 19.5px;
  line-height: 26px;
  margin-top: 5px;
  margin-bottom: 28px;
}
article h5 {
  margin-top: 12px;
  margin-bottom: 24px;
  font-size: 18.5px;
  line-height: 21.5px;
}
.lists article h5 {
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 10px;
}
article h6 {
  font-size: 17px;
  line-height: 22px;
  padding-bottom: 16px;
}
.bb {
  border-bottom: 1px solid #e6e6e6;
}
.bt {
  border-top: 1px solid #e6e6e6;
}
.bt h5 {
  margin-top: 10px;
}
.bt .thumbnail {
  margin-top: 10px;
}
.headline .slick-arrow {
  width: 56px;
  height: 75px;
  cursor: pointer;
  font-size: 0;
  position: absolute;
  z-index: 1;
  top: 33%;
  background-position: center;
  background-size: 46px;
  background-repeat: no-repeat;
  background-color: black;
  opacity: 0.5;
}
.headline .slick-prev {
  left: 0;
  background-image: url(../images/arrow_carrot-left.svg);
}
.headline .slick-next {
  right: 0;
  background-image: url(../images/arrow_carrot-right.svg);
}
.block-title {
  font-weight: bold;
  font-size: 23.5px;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 10px;
}
.block-title .icon {
  margin-right: 8px;
}
article .thumbnail {
  float: left;
  width: 71px;
  height: 73px;
  overflow: hidden;
  margin-right: 15px;
  margin-bottom: 13px;
}
article .thumbnail a {
  display: block;
  height: 100%;
  position: relative;
}
article .thumbnail a img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: inherit;
  height: 100%;
}
.photos {
  border-bottom: 1px solid #e2e2e2;
}
.photos .slider {
  padding-right: 40px;
  padding-top: 20px;
  margin-left: -20px;
}
.photos .slider-item article {
  border-right: 1px solid #e2e2e2;
  padding-left: 20px;
  padding-right: 20px;
  min-height: 88px;
}
.photos .slick-next {
  cursor: pointer;
  width: 40px;
  height: 88px;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 0;
  background: url(../images/arrow_carrot-right2.svg) center / 30px no-repeat;
}
.photos .slick-next::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #e2e2e2;
  position: absolute;
  top: 0;
  left: -1px;
}
.photos .slick-prev {
  display: none!important;
}
@media (min-width: 768px) {
  .latest .row, .reviews .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .latest .row>div, .reviews .row>div {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (min-width:992px) {
  .latest figure a {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 100%;
  }
  .latest .lg figure a {
    padding-top: 50%;
  }
  .latest figure a img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 100%;
    max-width: inherit;
  }
  .latest .info {
    position: relative;
  }
  .latest .row {
    margin-left: -3px;
    margin-right: -3px;
  }
  .latest .row>div {
    padding-left: 3px;
    padding-right: 3px;
  }
  .latest h4 {
    max-height: 82px;
    overflow: hidden;
  }
  .lists .row {
    margin-left: -8px;
    margin-right: -8px;
  }
  .lists .row>div {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.pb {
  padding-top: 35px;
  padding-bottom: 40px;
}
.ab {
  text-align: center;
}
.ab::before {
  content: "ADVERTISEMENT";
  display: block;
  font: 10px "Helvetica", sans-serif;
  color: rgba(0, 0, 0, .5);
  margin-bottom: 9px;
}
.mb {
  margin-bottom: 15px;
}
.viewmore {
  color: #e31515;
  font-size: 14px;
  text-transform: uppercase;
}
.festivals {
  position: relative;
}
.festivals .viewmore {
  position: absolute;
  top: 30px;
  right: 0;
}
.festivals article h6 {
  font: bold 21px/26px "Buenard", serif;
  max-height: 78px;
  overflow: hidden;
  margin-top: 5px;
}
.festivals .slider {
  padding-bottom: 45px;
}
.slick-dots {
  text-align: center;
}
.festivals .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}
.slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  margin-right: 5px;
}
.slick-dots li button {
  font-size: 0;
  width: 9px;
  height: 9px;
  background-color: #ddd;
  cursor: pointer;
}
.slick-dots .slick-active button {
  background-color: #999;
}
.most {
  padding-bottom: 30px;
}
.most ol li {
  border-top: 1px solid #e6e6e6;
  padding-top: 12px;
}
.most ol li:first-child {
  border-top: 0;
  padding-top: 0;
}
.most ol li::before {
  font-weight: bold;
  font-size: 16px;
  line-height: 36px;
  background-color: white;
  color: #e31515;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 34px;
  text-indent: 7px;
}
.most article h6 {
  font: bold 20px/24px 'Buenard', serif;
  max-height: 100px;
  overflow: hidden;
  padding-bottom: 12px;
}
.most article .thumbnail {
  width: 89px;
  height: 93px;
  margin-bottom: 12px;
}
.genres .slick-arrow {
  cursor: pointer;
  width: 40px;
  height: 80px;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  background: url(../images/arrow_carrot-right2.svg) center / 30px no-repeat white;
}
.genres .slick-prev {
  left: 0;
  background-image: url(../images/arrow_carrot-left2.svg)
}
.genres .slick-next {
  right: 0;
}
.genres .slider-item {
  padding-left: 7px;
  padding-right: 7px;
}
.genres #tabs {
  padding-top: 12px;
}
.genres .col-lg-4 {}
.genres ul {
  background-color: #f5f5f5;
  font-weight: bold;
  font-size: 18.5px;
  line-height: 30px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.genres li {
  padding-left: 12px;
  margin-bottom: 5px;
  cursor: pointer;
}
.genres li.ui-tabs-tab.ui-corner-top.ui-state-default.ui-tab.ui-tabs-active.ui-state-active {
  background-color: white;
}
.genres li.ui-tabs-tab.ui-corner-top.ui-state-default.ui-tab.ui-tabs-active.ui-state-active a:hover {
  color: black;
}
@media (min-width: 768px) {
  .genres {
    padding-right: 50px;
  }
  .shuffle .row, .genres .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .shuffle .row>div, .genres .row>div {
    padding-left: 5px;
    padding-right: 5px;
  }
  .genres .slick-prev {
    left: -50px;
  }
  .genres .slick-next {
    right: -50px;
  }
  */
}
@media (min-width: 992px) {
  .genres ul {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .genres ul {
    margin-bottom: 30px;
  }
}