/*!

*/
/*! GLOBAL */
body {
  font-family: "Source Sans Pro", sans-serif;
  color: #040606;
}

.page {
  margin: 0;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
}

main p, main ul, main ol {
  font-size: 18px;
  line-height: 1.5em;
  margin: 0 0 1em 0;
}
main p strong, main ul strong, main ol strong {
  font-weight: 700;
}
main ul, main ol {
  margin: 0 0 1em 0;
  padding-left: 1em;
}
main ul li, main ol li {
  margin-bottom: 0;
}
main blockquote {
  border-left: 8px solid #b1c0c6;
  padding-left: 20px;
  margin-top: 1.5em;
  margin-bottom: 2em;
  margin-left: 0;
  color: #757988;
}
main blockquote p {
  font-size: 22px;
  line-height: 1.3em;
}
main hr.wp-block-separator {
  background-color: #b1c0c6;
  height: 1px;
  border: none;
  margin-top: 1.5em;
}

.wrapper, .c-footer__wrapper {
  max-width: 1340px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.2em;
  margin: 0;
  color: #040606;
}

h2 {
  font-size: 40px;
}

/* Links
--------------------------------------------- */
a {
  color: #d1154f;
}

a:visited {
  color: #d1154f;
}

a:hover,
a:focus,
a:active {
  color: #d1154f;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

.c-button {
  background: #4564fd;
  display: block;
  line-height: 40px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  text-transform: uppercase;
}
.c-button:visited, .c-button:hover, .c-button:focus, .c-button:active {
  color: white;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .c-button {
    padding: 0 30px;
    letter-spacing: 1.5px;
    font-size: 14px;
    line-height: 46px;
  }
}
.c-button.c-button--white {
  background: white;
  color: #4564fd;
}
.c-button.c-button--ghost {
  background: white;
  color: #4564fd;
  border: 2px solid #4564fd;
  line-height: 40px;
}
@media screen and (min-width: 1024px) {
  .c-button.c-button--ghost {
    display: inline-block;
  }
}

.c-button + .c-button {
  margin-top: 20px;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  margin-top: 20px;
  display: flex;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .comment-navigation .nav-links,
  .posts-navigation .nav-links,
  .post-navigation .nav-links {
    font-size: 18px;
  }
}
.comment-navigation .nav-links > div a,
.posts-navigation .nav-links > div a,
.post-navigation .nav-links > div a {
  border: 1px solid #d1154f;
  padding: 10px 15px;
  text-decoration: none;
  white-space: nowrap;
}

.alert {
  border: 1px solid #b4b4b4;
  padding: 15px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5em;
  margin: 0 0 1em 0;
}

.up {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 50px;
  right: 30px;
  background-color: #757988;
  display: none;
  cursor: pointer;
  border-radius: 5px;
  opacity: 0.7;
  z-index: 2;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}
.up i {
  line-height: 45px !important;
}
@media screen and (min-width: 1024px) {
  .up {
    visibility: visible;
  }
}
.up:hover {
  opacity: 1;
}
.up i {
  color: white;
  line-height: 25px;
  font-size: 25px;
  width: 100%;
  text-align: center;
}

.placeholder {
  background: #efefef;
  padding: 3em 0;
}
.placeholder.placeholder--2 {
  background: #dfdfdf;
}
.placeholder h2 {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

/*! HEADER */
.c-header {
  background: white;
  padding: 0 15px;
  position: fixed;
  width: 100vw;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .c-header {
    padding: 0 15px 25px 15px;
  }
}

.c-header__wrapper {
  padding: 20px 0 10px 0;
  display: flex;
  justify-content: flex-start;
}
@media screen and (min-width: 1024px) {
  .c-header__wrapper {
    justify-content: center;
    padding: 30px 0;
    height: 164px;
  }
}

.c-header__logo img {
  max-width: 140px;
}
@media screen and (min-width: 1024px) {
  .c-header__logo img {
    max-width: 292px;
  }
}

.c-header__social {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-header__social {
    display: block;
  }
}

.c-header__social-wrapper {
  text-align: center;
  margin-bottom: 25px;
  display: flex;
  justify-content: flex-end;
  height: 24px;
}
.c-header__social-wrapper a {
  color: #2f3849;
  display: inline-block;
  margin: 0 10px;
  transition: all 0.1s ease-out 0s;
  opacity: 1;
}
.c-header__social-wrapper a:hover {
  opacity: 0.7;
}
.c-header__social-wrapper a:last-child {
  margin-right: 0;
}

.menu-toggle {
  position: absolute;
  background: white;
  right: 20px;
  top: 25px;
  border: none;
}
@media screen and (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.main-navigation {
  padding: 0;
  margin-left: -15px;
  margin-right: -15px;
}
@media screen and (min-width: 1024px) {
  .main-navigation {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    border-top: none;
    border-bottom: none;
  }
}

.c-header-nav {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 45px;
  display: none;
  list-style-type: none;
  padding: 15px 0 25px 0;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .c-header-nav {
    line-height: 28px;
    display: flex;
    padding: 5px 10px;
    justify-content: center;
  }
}
.c-header-nav > .menu-item {
  padding: 0;
  position: relative;
  transition: all 0.15s ease-out 0s;
  opacity: 0.4;
}
.c-header-nav > .menu-item.current-menu-item, .c-header-nav > .menu-item:hover {
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .c-header-nav > .menu-item {
    padding: 0 15px;
  }
  .c-header-nav > .menu-item::after {
    content: "";
    position: absolute;
    top: 6px;
    right: -2px;
    width: 3px;
    height: 20px;
    background: white;
    display: block;
  }
}
.c-header-nav > .menu-item a {
  display: block;
  color: #040606;
  text-decoration: none;
  transition: all 0.15s ease-out 0s;
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  border-top: 1px solid #040606;
  border-bottom: 1px solid #040606;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .c-header-nav > .menu-item a {
    text-indent: 0;
  }
}
.c-header-nav > .menu-item:last-child::after {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-header-nav .menu-item-has-children--open > a {
    color: white !important;
  }
}
.c-header-nav .sub-menu {
  display: none;
  background: #e2a700;
  padding: 10px 15px 15px 15px;
  margin: 0;
  list-style-type: none;
  text-transform: initial;
  line-height: 35px;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .c-header-nav .sub-menu {
    background: #fbba00;
    box-shadow: 0 -2px 7px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 35px;
    left: 0;
    white-space: nowrap;
  }
}
.c-header-nav .sub-menu > .menu-item {
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .c-header-nav .sub-menu > .menu-item a {
    display: inline-block;
    line-height: 1.4em;
  }
  .c-header-nav .sub-menu > .menu-item a:hover {
    border-bottom: 2px solid white;
  }
}

.toggled .c-header-nav {
  display: block;
}

/*! FOOTER */
.c-footer {
  background: white;
  position: relative;
}

.c-footer__wrapper {
  padding: 30px 15px;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.7em;
  text-align: center;
  font-weight: 400;
  opacity: 0.6;
}
@media screen and (min-width: 1024px) {
  .c-footer__wrapper {
    padding: 30px;
  }
}
@media screen and (min-width: 1300px) {
  .c-footer__wrapper {
    padding: 50px 70px 80px 70px;
  }
}
.c-footer__wrapper a {
  color: #040606;
  text-decoration: none;
}

.site-main {
  background: white;
  padding: 85px 0 40px 0;
}
@media screen and (min-width: 1024px) {
  .site-main {
    padding: 230px 0 0 0;
  }
}

.visual {
  position: relative;
}
.visual .visual__image {
  height: 35vw;
  min-height: 280px;
  background: url("images/uffici.jpg") no-repeat center;
  background-size: cover;
  display: block;
}
@media screen and (min-width: 1024px) {
  .visual .visual__image {
    height: calc(100vh - 230px);
  }
}
.visual h1 {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  color: black;
  font-size: 35px;
  text-align: center;
  padding: 30px 15px;
}
@media screen and (min-width: 1024px) {
  .visual h1 {
    font-size: 72px;
    color: white;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.home .content {
  background: #e6e9eb;
}

.content__text {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.5em 15px;
}
.content__text p {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.7em;
  text-align: justify;
  font-weight: 400;
  opacity: 0.6;
}

.home-contatti__wrapper {
  display: flex;
  flex-direction: column;
}

.home-contatti {
  padding: 1em 15px 3em 15px;
  order: 1;
}
@media screen and (min-width: 1024px) {
  .home-contatti {
    order: 0;
  }
}
.home-contatti h2 {
  text-align: center;
  font-weight: 400;
  font-family: sans-serif;
  font-size: 25px;
  margin-bottom: 10px;
}
.home-contatti p {
  text-align: center;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.7em;
  font-weight: 400;
  opacity: 0.6;
}
.home-contatti p a {
  color: #040606;
  text-decoration: none;
}
.home-contatti p a:hover {
  text-decoration: underline;
}

.map-wrap {
  max-height: 450px;
  overflow: hidden;
  order: 0;
}
@media screen and (min-width: 1024px) {
  .map-wrap {
    order: 1;
  }
}

.map {
  position: relative;
  padding-bottom: 75%;
  height: 0;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-height: 450px;
}

.page-template-template-progetti {
  background: url("images/fondino-progetti.png") repeat center;
  background-size: cover;
  background-attachment: fixed;
}
.page-template-template-progetti .site-main {
  margin-bottom: 45px;
}

.progetti {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.5em 15px 50px 15px;
}
.progetti h1 {
  text-align: center;
  font-family: sans-serif;
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 15px;
}
.progetti p {
  font-family: sans-serif;
  font-size: 18px;
  line-height: 1.7em;
  font-weight: 400;
  opacity: 0.6;
  margin-top: 30px;
  margin-bottom: 1.5em;
}
.progetti .just {
  text-align: justify;
}
.progetti .loghi {
  max-width: 870px;
  margin: 3em auto 0 auto;
}

.contatti {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.5em 15px 10em 15px;
}
.contatti h1 {
  text-align: center;
  font-family: sans-serif;
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 15px;
  margin-top: 25px;
  text-transform: uppercase;
}
.contatti p {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.7em;
  font-weight: 400;
  opacity: 0.6;
  margin-top: 30px;
  margin-bottom: 1.5em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .cols {
    display: flex;
    column-gap: 40px;
  }
}

.col-sx {
  flex-basis: 69%;
  padding-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .col-sx {
    padding-bottom: 0;
  }
}

.col-dx {
  flex-basis: 31%;
}

.archive .cols {
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .archive .cols {
    padding-top: 50px;
  }
}

@media screen and (min-width: 1024px) {
  .single .col-sx {
    padding-right: 20px;
  }
}

.latest {
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .latest {
    margin-left: 0;
    margin-right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 50% 50%;
  }
}

.latest__item {
  min-height: 10rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-out 0s;
}
@media screen and (min-width: 1024px) {
  .latest__item {
    display: block;
  }
}
.latest__item:hover {
  background-size: cover !important;
}
.latest__item:hover h2 {
  text-decoration: underline;
}
.latest__item.latest__item--1 {
  grid-column: 1/3;
  grid-row: 1/3;
}
.latest__item img {
  display: block;
  height: 70vw;
  min-height: 340px;
  object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .latest__item img {
    max-height: 500px;
  }
}
@media screen and (min-width: 1024px) {
  .latest__item img {
    height: auto;
    object-fit: cover;
  }
}
.latest__item .latest__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

@media screen and (max-width: 1024px) {
  .latest__item:not(.latest__item--main) {
    background: #efefef !important;
    min-height: initial;
    border-bottom: 1px solid #b4b4b4;
  }
  .latest__item:not(.latest__item--main) .latest__panel {
    position: relative;
    left: auto;
    bottom: auto;
    height: auto;
  }
  .latest__item:not(.latest__item--main) .latest__panel::after {
    display: none;
  }
  .latest__item:not(.latest__item--main) .latest__cat {
    display: none;
  }
  .latest__item:not(.latest__item--main) .latest__title {
    color: #2f3849;
    font-size: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    padding-left: 15px;
  }
  .latest__item:not(.latest__item--main) .latest__title::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 0;
  }
}

.latest__panel {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  font-family: "Oswald", sans-serif;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .latest__panel {
    padding: 30px;
  }
}
.latest__panel::after {
  content: "";
  transition: all 0.3s ease-out 0s;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(transparent, rgb(0, 0, 0));
  opacity: 0.65;
}
.latest__panel:hover {
  cursor: pointer;
}
.latest__panel:hover .latest__title {
  text-decoration: underline;
}
.latest__panel:hover::after {
  opacity: 0.95;
}

.latest__image {
  display: none;
}
@media screen and (min-width: 1024px) {
  .latest__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.3s ease-out 0s;
    transform: scale(1);
  }
}

.latest__item:hover .latest__image {
  transform: scale(1.1);
}

.latest__cat {
  font-weight: 700;
  font-size: 18px;
  line-height: 1em;
  text-transform: uppercase;
  color: #fbba00;
  margin-bottom: 5px;
  z-index: 1;
}

.latest__title {
  font-weight: 700;
  font-size: 25px;
  line-height: 1.2em;
  color: white;
  margin: 0;
  z-index: 1;
}
.latest__title a {
  color: white;
  text-decoration: none;
}
.latest__title a:hover {
  text-decoration: underline;
}

.latest__intro {
  font-weight: 400;
  font-size: 20px;
  line-height: 1em;
  color: white;
  margin: 0;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .latest__intro {
    font-size: 25px;
  }
}

.latest__item--main {
  display: block;
}
.latest__item--main .latest__cat {
  font-size: 23px;
}
@media screen and (min-width: 1024px) {
  .latest__item--main .latest__cat {
    font-size: 27px;
  }
}
.latest__item--main .latest__title {
  font-size: 28px;
  margin: 0 0 5px 0;
}
@media screen and (min-width: 1024px) {
  .latest__item--main .latest__title {
    font-size: 40px;
  }
}

.j-latest__slider {
  visibility: hidden;
}

.latest__slider {
  position: relative;
}
.latest__slider::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.4));
}
.latest__slider.slick-initialized {
  visibility: visible;
}
.latest__slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.latest__slider .slick-prev,
.latest__slider .slick-next {
  width: 30px;
  height: 30px;
  display: block;
  background: lime;
  z-index: 2;
  top: 35px;
  border-radius: 0;
}
.latest__slider .slick-prev::before,
.latest__slider .slick-next::before {
  display: none;
}
.latest__slider .slick-prev {
  left: 15px;
  background: rgba(0, 0, 0, 0) url("images/slider-arrow-left.svg") no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 1024px) {
  .latest__slider .slick-prev {
    left: 20px;
  }
}
.latest__slider .slick-next {
  right: 15px;
  background: rgba(0, 0, 0, 0) url("images/slider-arrow-right.svg") no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 1024px) {
  .latest__slider .slick-next {
    right: 20px;
  }
}
.latest__slider .slick-dots {
  bottom: auto;
  top: 18px;
}
.latest__slider .slick-dots li {
  width: auto;
  height: auto;
  z-index: 3;
  opacity: 0.5;
  margin: 0 8px;
}
.latest__slider .slick-dots li.slick-active {
  opacity: 1;
}
.latest__slider .slick-dots li button {
  background: white;
  width: 25px;
  height: 10px;
  border-radius: 0;
}
.latest__slider .slick-dots li button::before {
  display: none;
}

.latest__slider-item {
  position: relative;
}

.box-office__title {
  color: #b1c0c6;
  background: #2f3849;
  font-size: 25px;
  line-height: 1.5em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .box-office__title {
    margin-bottom: 30px;
    font-size: 32px;
  }
  .box-office__title > div {
    flex-basis: 50%;
  }
}
.box-office__title a {
  color: #b1c0c6;
  text-decoration: none;
  transition: all 0.3s ease-out 0s;
}
.box-office__title a:hover {
  color: white;
}

@media screen and (min-width: 768px) {
  .box-office__columns {
    display: flex;
    column-gap: 40px;
  }
}

.box-office__list {
  margin-bottom: 40px;
  flex-basis: 50%;
}

.box-office__location {
  color: #040606;
  background: #fbba00;
  font-size: 23px;
  line-height: 38px;
  text-align: center;
  margin-bottom: 20px;
  opacity: 1;
  transition: all 0.3s ease-out 0s;
}
.box-office__location strong {
  color: white;
}
.box-office__location a {
  text-decoration: none;
  border-bottom: none;
  display: block;
  color: #040606;
  font-style: normal !important;
  text-decoration: none !important;
  border-bottom: none !important;
}
.box-office__location:hover {
  opacity: 0.7;
}

.box-office__item-wrap {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.box-office__item {
  display: flex;
  column-gap: 20px;
}

.box-office__position {
  flex-basis: 30%;
  position: relative;
  max-width: 140px;
}
.box-office__position img {
  display: block;
}
.box-office__position span {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 60px;
  letter-spacing: -5px;
}

.box-office__film {
  flex-basis: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
  border-bottom: 1px solid #b4b4b4;
  line-height: 1.2em;
}

.mention {
  background: url("images/mention-bg.jpg") no-repeat center;
  background-size: cover;
  padding: 25px 15px 35px 15px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mention a {
  text-decoration: none;
}

.mention__title {
  font-size: 30px;
  line-height: 1em;
  text-align: center;
  color: #2f3849;
  text-transform: uppercase;
  margin-bottom: 1em;
}

.mention__text {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2em;
  text-align: center;
  text-transform: uppercase;
  color: #fbba00;
  background: white;
  padding: 40px 30px 45px 30px;
  border-radius: 40px;
  margin-bottom: 2em;
  position: relative;
  top: 0;
  transition: all 0.3s ease-out 0s;
}
.mention__text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: 0;
  height: 0;
  margin-left: -34px;
  border-left: 34px solid transparent;
  border-right: 34px solid transparent;
  border-top: 40px solid white;
}
.mention__text:hover {
  top: 10px;
}

.mention__author {
  text-align: center;
  color: #040606;
  font-size: 22px;
  line-height: 1.2em;
}
.mention__author strong {
  display: block;
}

.personage {
  background: url("images/personage-bg.jpg") no-repeat center;
  background-size: cover;
  padding: 25px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.personage .personage__img-wrap {
  position: relative;
  margin: 50px auto;
}
.personage .personage__img-wrap::after {
  content: "";
  width: 230px;
  height: 230px;
  border-radius: 115px;
  display: block;
  position: absolute;
  left: -15px;
  top: -15px;
  background: transparent;
  border: 2px solid #fbba00;
  pointer-events: none;
}
.personage .personage__link {
  position: relative;
  clip-path: circle(100px at center);
  display: block;
}
.personage .personage__link img {
  width: 200px;
  height: auto;
  display: block;
  transition: all 0.3s ease-out 0s;
  transform: scale(1);
}
.personage .personage__link:hover img {
  transform: scale(1.1);
}

.personage__title {
  font-size: 26px;
  line-height: 1em;
  text-align: center;
  color: #fbba00;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.personage__subtitle {
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  line-height: 1.2em;
  text-align: center;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0;
}

.personage__excerpt {
  text-align: center;
  color: white;
  font-size: 16px;
  line-height: 1.3em;
}

.h-festival {
  background: #2f3849;
  background-size: cover;
  padding: 25px 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  overflow: hidden;
}
.h-festival .h-festival__img-wrap {
  position: relative;
  margin: 20px auto;
}
.h-festival .h-festival__link {
  position: relative;
  display: block;
  overflow: hidden;
}
.h-festival .h-festival__link img {
  height: auto;
  display: block;
  transition: all 0.3s ease-out 0s;
  transform: scale(1);
}
.h-festival .h-festival__link:hover img {
  transform: scale(1.1);
}

.h-festival__cat {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  line-height: 1.1em;
  text-align: center;
  font-weight: 700;
  color: #fbba00;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 0 35px;
}

.h-festival__title {
  font-size: 26px;
  line-height: 1em;
  font-weight: 400;
  text-align: center;
  color: white;
  text-transform: uppercase;
  padding: 0 25px;
  margin-bottom: 10px;
}

.h-festival__subtitle {
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  line-height: 1.2em;
  font-weight: 700;
  text-align: center;
  color: white;
  text-transform: uppercase;
  padding: 0 25px;
  margin-bottom: 0;
}

.h-festival__excerpt {
  text-align: center;
  color: white;
  font-size: 16px;
  line-height: 1.3em;
  padding: 0 25px;
}

.h-festival.h-festival--sx {
  padding: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .h-festival.h-festival--sx {
    display: flex;
    flex-direction: row;
  }
}
.h-festival.h-festival--sx .col {
  flex-basis: 50%;
}
.h-festival.h-festival--sx .col:first-child {
  padding: 30px 0 35px 0;
}
.h-festival.h-festival--sx .h-festival__cat {
  text-align: left;
  padding: 0 30px;
  margin-bottom: 15px;
}
.h-festival.h-festival--sx .h-festival__cat a {
  transition: all 0.15s ease-out 0s;
  color: #fbba00;
  text-decoration: none;
  opacity: 1;
}
.h-festival.h-festival--sx .h-festival__cat a:hover {
  color: #fbba00;
  opacity: 0.7;
}
.h-festival.h-festival--sx .h-festival__title {
  text-align: left;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2em;
  padding: 0 30px;
  margin-bottom: 5px;
}
.h-festival.h-festival--sx .h-festival__subtitle {
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  padding: 0 30px;
  margin-bottom: 15px;
  text-transform: initial;
}
.h-festival.h-festival--sx .h-festival__excerpt {
  text-align: left;
  padding: 0 30px 0 30px;
}
.h-festival.h-festival--sx .h-festival__img-wrap {
  padding: 0;
  margin: 0;
}

.c-news__title {
  color: #2f3849;
  font-size: 25px;
  line-height: 50px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}

.c-news {
  display: block;
}
@media screen and (min-width: 1024px) {
  .c-news {
    display: none;
  }
}
.c-news a {
  color: #fbba00;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.15s ease-out 0s;
  opacity: 1;
}
.c-news a:hover {
  opacity: 0.7;
}
.c-news .c-news__item {
  background: #2f3849;
  color: white;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  line-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 15px;
}
.c-news .c-news__item:nth-of-type(1) {
  border-bottom: 1px solid #757988;
}

.archive .page-title,
.single .page-title {
  text-transform: uppercase;
  margin-bottom: 1em;
}
.archive .archive-description,
.single .archive-description {
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .archive .archive-description,
  .single .archive-description {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .archive .article__wrapper,
  .single .article__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    column-gap: 30px;
  }
}
.archive article,
.single article {
  background: #fbba00;
  margin: 0 0 35px 0;
}
.archive article a,
.single article a {
  display: block;
  background: white;
}
.archive article a img,
.single article a img {
  transition: all 0.3s ease-out 0s;
  display: block;
  opacity: 1;
  width: 100%;
  max-height: 135px;
  object-fit: cover;
}
.archive article a img:hover,
.single article a img:hover {
  opacity: 0.8;
}
.archive article .entry-header,
.single article .entry-header {
  padding: 15px 25px 20px 25px;
}
.archive article h2,
.single article h2 {
  font-size: 21px;
  text-transform: uppercase;
  margin-bottom: 1px;
}
.archive article h2 a,
.single article h2 a {
  background: transparent;
  text-decoration: none;
  color: #040606;
  border-bottom: 2px solid transparent;
}
.archive article h2 a:hover,
.single article h2 a:hover {
  color: #040606;
  border-bottom: 2px solid #040606;
  padding-bottom: 0;
  display: inline-block;
}
.archive article h3,
.single article h3 {
  font-weight: 500;
  margin-bottom: 10px;
}
.archive article .entry-meta,
.single article .entry-meta {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: #2f3849;
}
.archive .empty-cat,
.single .empty-cat {
  border: 1px solid #b4b4b4;
  padding: 15px;
  text-align: center;
}

.category-videorecensioni article.category-videorecensioni {
  background: #2f3849;
}
.category-videorecensioni article.category-videorecensioni a {
  display: block;
  background: white;
}
.category-videorecensioni article.category-videorecensioni a img {
  transition: all 0.3s ease-out 0s;
  display: block;
  opacity: 1;
  width: 100%;
  max-height: 135px;
  object-fit: cover;
}
.category-videorecensioni article.category-videorecensioni a img:hover {
  opacity: 0.8;
}
.category-videorecensioni article.category-videorecensioni .entry-header {
  padding: 15px 25px 20px 25px;
}
.category-videorecensioni article.category-videorecensioni h2 {
  font-size: 21px;
  text-transform: uppercase;
  margin-bottom: 1px;
  color: white;
}
.category-videorecensioni article.category-videorecensioni h2 a {
  background: transparent;
  text-decoration: none;
  color: white;
  border-bottom: 2px solid transparent;
}
.category-videorecensioni article.category-videorecensioni h2 a:hover {
  color: white;
  border-bottom: 2px solid #040606;
  padding-bottom: 0;
  display: inline-block;
}
.category-videorecensioni article.category-videorecensioni h3 {
  font-weight: 500;
  margin-bottom: 10px;
  color: white;
}
.category-videorecensioni article.category-videorecensioni .entry-meta {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: white;
  opacity: 0.7;
}

.hero {
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .hero {
    margin-left: 0;
    margin-right: 0;
  }
}
.hero img {
  display: block;
  height: 70vw;
  min-height: 340px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .hero img {
    max-height: 460px;
  }
}
@media screen and (min-width: 1024px) {
  .hero img {
    height: auto;
    object-fit: cover;
    width: 100%;
  }
}

.hero__panel {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  font-family: "Oswald", sans-serif;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .hero__panel {
    padding: 30px;
  }
}
.hero__panel::after {
  content: "";
  transition: all 0.3s ease-out 0s;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(transparent, rgb(0, 0, 0));
  opacity: 0.65;
}

.hero__meta {
  color: #fbba00;
  font-size: 20px;
  margin-bottom: 5px;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .hero__meta {
    font-size: 24px;
  }
}
.hero__meta span {
  color: white;
  font-size: 20px;
  font-weight: 300;
  font-family: "Source Sans Pro", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2em;
  color: white;
  margin: 0 0 3px 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .hero__title {
    font-size: 42px;
  }
}

.hero__subtitle {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2em;
  color: white;
  margin: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .hero__subtitle {
    font-size: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .hero__subtitle {
    font-size: 34px;
  }
}

.hero--noimage {
  border-bottom: 1px solid #b4b4b4;
}
.hero--noimage .hero__panel {
  position: relative;
  padding: 30px 15px 30px 15px;
}
@media screen and (min-width: 768px) {
  .hero--noimage .hero__panel {
    padding: 50px 30px 30px 0;
  }
}
.hero--noimage .hero__panel::after {
  display: none;
}
.hero--noimage .hero__meta {
  color: #b4b4b4;
}
.hero--noimage .hero__title {
  color: #2f3849;
}
.hero--noimage .hero__subtitle {
  color: #2f3849;
}

.single .entry-content,
.page .entry-content {
  margin-top: 0;
}
.single .entry-content h2,
.page .entry-content h2 {
  font-size: 22px;
  margin-bottom: 0.2em;
  color: #fbba00;
}
@media screen and (min-width: 768px) {
  .single .entry-content h2,
  .page .entry-content h2 {
    font-size: 25px;
  }
}
.single .entry-content h3,
.page .entry-content h3 {
  font-size: 18px;
  margin-bottom: 0.2em;
  color: #2f3849;
}
@media screen and (min-width: 768px) {
  .single .entry-content h3,
  .page .entry-content h3 {
    font-size: 24px;
  }
}
.single .entry-content p + h2,
.page .entry-content p + h2 {
  margin-top: 2rem;
}
.single .entry-content a,
.page .entry-content a {
  font-weight: 600;
  font-style: italic;
  text-decoration: none;
  border-bottom: 2px solid #d1154f;
  padding-bottom: 0;
  line-height: 20px;
  display: inline-block;
}
.single .entry-content figure,
.page .entry-content figure {
  margin: 2em 0;
}
.single .entry-content figure a,
.page .entry-content figure a {
  border-bottom: none;
  text-decoration: none;
}
.single .entry-content p + .wp-block-columns,
.page .entry-content p + .wp-block-columns {
  margin-top: 2em;
  margin-bottom: 2em;
}
.single .entry-content .wp-block-columns figure,
.page .entry-content .wp-block-columns figure {
  margin: 0;
}
.single .entry-content .wp-block-embed-youtube,
.page .entry-content .wp-block-embed-youtube {
  background: #2f3849;
}
@media screen and (min-width: 768px) {
  .single .entry-content .wp-block-embed-youtube,
  .page .entry-content .wp-block-embed-youtube {
    padding: 30px;
  }
}
.single .entry-content .wp-block-gallery a,
.page .entry-content .wp-block-gallery a {
  border-bottom: none;
}

.signature {
  font-style: italic;
  margin-bottom: 1em;
  font-weight: 600;
  border-bottom: 1px solid #b4b4b4;
  padding-bottom: 20px;
  display: inline-block;
}

.single .post__tags {
  margin: 0 -5px 30px -5px;
}
.single .post__tags a {
  font-family: "Oswald", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  color: #2f3849;
  background: #fbba00;
  display: inline-block;
  padding: 5px 10px;
  margin: 0 5px 10px 5px;
  border-bottom: none;
  transition: all 0.3s ease-out 0s;
}
.single .post__tags a:hover {
  color: white;
}

.single .social-sharing {
  border: 1px solid #b4b4b4;
  padding: 20px 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .single .social-sharing {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.single .social-sharing a {
  line-height: 30px;
  text-align: center;
  display: inline-block;
  margin: 0 0 0 10px;
  border-bottom: none;
  width: 30px;
}
.single .social-sharing i {
  color: #2f3849;
  border-bottom: none;
}

.social-sharing__text {
  font-size: 25px;
  line-height: 30px;
  font-weight: 300;
  color: #757988;
}

aside > h3,
aside section > h3 {
  color: #fbba00;
  text-align: center;
  font-size: 23px;
  border: 1px solid #b4b4b4;
  padding: 10px 30px;
  margin-bottom: 30px;
}
aside > h3 a,
aside section > h3 a {
  color: #fbba00;
  text-decoration: none;
  border-bottom: none;
}

.all-review {
  border: 1px solid #b4b4b4;
  padding: 10px 30px;
  margin-bottom: 30px;
}
.all-review h3 {
  color: #fbba00;
  text-align: center;
  font-size: 23px;
}
.all-review h3 a {
  color: #fbba00;
  text-decoration: none;
  border-bottom: none;
}

.active-cat {
  display: none;
}

.yearly-archive {
  background: #2f3849;
  color: white;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2em;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-left: 15px solid #757988;
  min-height: 92px;
}
.yearly-archive a {
  color: #fbba00;
  text-decoration: none;
  font-weight: 700;
  display: block;
}
.yearly-archive ul, .yearly-archive li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.yearly-archive .active-cat {
  display: block;
}

.insala {
  background: #e6e9eb url("images/insala-linee.png") no-repeat 45% 0;
  background-size: 70px;
  padding: 15px 30px 30px 30px;
  margin-bottom: 40px;
}
.insala img {
  display: block;
}
.insala p a {
  font-weight: 600;
  font-style: italic;
  text-decoration: none;
  border-bottom: 2px solid #d1154f;
  padding-bottom: 0;
  line-height: 20px;
  display: inline-block;
}

.insala__title,
.nelle-sale__title {
  text-transform: uppercase;
  color: #2f3849;
  font-size: 30px;
  margin-bottom: 7px;
}
.insala__title a,
.nelle-sale__title a {
  color: #2f3849;
  text-decoration: none;
  opacity: 1;
  transition: all 0.3s ease-out 0s;
}
.insala__title a:hover,
.nelle-sale__title a:hover {
  opacity: 0.7;
}
.insala__subtitle,
.nelle-sale__subtitle {
  text-transform: uppercase;
  color: #2f3849;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 0.5em;
}
.insala p,
.nelle-sale p {
  font-size: 19px;
  line-height: 1.4em;
}
.insala .entry-content p a,
.nelle-sale .entry-content p a {
  font-weight: 600;
  font-style: italic;
  text-decoration: none;
  border-bottom: 2px solid #d1154f;
  padding-bottom: 0;
  line-height: 20px;
  display: inline-block;
}
.insala .wp-block-media-text,
.nelle-sale .wp-block-media-text {
  column-gap: 30px;
  margin-bottom: 20px;
}
.insala .wp-block-media-text figure,
.nelle-sale .wp-block-media-text figure {
  margin: 0;
}
.insala .wp-block-media-text__media img,
.nelle-sale .wp-block-media-text__media img {
  margin-bottom: 2em;
}
@media screen and (min-width: 600px) {
  .insala .wp-block-media-text__media img,
  .nelle-sale .wp-block-media-text__media img {
    margin-bottom: 0;
  }
}
.insala .wp-block-media-text .wp-block-media-text__content,
.nelle-sale .wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}

.category-festival .page-header {
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .category-festival .page-header {
    padding-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  .category__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    column-gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .category__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.category__item {
  background: #b1c0c6;
  margin: 0 0 35px 0;
}
.category__item a {
  display: block;
  background: white;
}
.category__item a img {
  transition: all 0.3s ease-out 0s;
  display: block;
  opacity: 1;
  width: 100%;
}
.category__item a img:hover {
  opacity: 0.8;
}
.category__item .entry-header {
  padding: 15px 25px 20px 25px;
}
.category__item h2 {
  font-size: 21px;
  text-transform: uppercase;
  margin-bottom: 1px;
}
.category__item h2 a {
  background: transparent;
  text-decoration: none;
  color: #040606;
  border-bottom: 2px solid transparent;
}
.category__item h2 a:hover {
  color: #040606;
  border-bottom: 2px solid #040606;
  padding-bottom: 0;
  display: inline-block;
}
.category__item h3 {
  font-weight: 500;
  margin-bottom: 10px;
}
.category__item .entry-meta {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: #2f3849;
}

.archive .cols.cols--festival {
  padding-top: 10px;
}
.archive .article__wrapper--festival {
  display: block;
}
.archive .article__wrapper--festival article {
  background: white;
  border-bottom: 1px solid #fbba00;
  padding-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .archive .article__wrapper--festival article {
    padding-bottom: 20px;
    margin-bottom: 45px;
  }
}
.archive .article__wrapper--festival article img {
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
}
.archive .article__wrapper--festival article .entry-header {
  padding: 0;
}
.archive .article__wrapper--festival article .entry-header h2 {
  text-transform: initial;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .archive .article__wrapper--festival article .entry-header h2 {
    font-size: 26px;
  }
}
@media screen and (min-width: 1024px) {
  .archive .article__wrapper--festival article .entry-header h2 {
    font-size: 30px;
  }
}
.archive .article__wrapper--festival article .entry-header h2 a {
  border-bottom: none;
  color: #2f3849;
}
.archive .article__wrapper--festival article .entry-header h2 a:hover {
  border-bottom: none;
  text-decoration: underline;
}
.archive .article__wrapper--festival article .entry-header .entry-meta {
  margin-bottom: 5px;
}

.page:not(.home) .cols,
.search-results .cols,
.search-no-results .cols,
.error404 .cols {
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .page:not(.home) .cols,
  .search-results .cols,
  .search-no-results .cols,
  .error404 .cols {
    padding-top: 50px;
  }
}
.page:not(.home) .entry-content,
.search-results .entry-content,
.search-no-results .entry-content,
.error404 .entry-content {
  margin: 0;
}
.page:not(.home) .entry-title,
.search-results .entry-title,
.search-no-results .entry-title,
.error404 .entry-title {
  margin-bottom: 1em;
}
.page:not(.home) .chisono-pict figure,
.search-results .chisono-pict figure,
.search-no-results .chisono-pict figure,
.error404 .chisono-pict figure {
  width: 50%;
  margin: 0.5em 30px 0.5em 0;
}
@media screen and (min-width: 520px) {
  .page:not(.home) .chisono-pict figure,
  .search-results .chisono-pict figure,
  .search-no-results .chisono-pict figure,
  .error404 .chisono-pict figure {
    width: auto;
    margin: 0.5em 30px 0.5em 0;
  }
}

.search-results .page-title,
.search-no-results .page-title,
.error404 .page-title {
  text-transform: uppercase;
  margin-bottom: 1em;
}
.search-results article,
.search-no-results article,
.error404 article {
  border-top: 1px solid #fbba00;
  padding: 20px 0 10px 0;
  margin-bottom: 0;
}
.search-results article .entry-title,
.search-no-results article .entry-title,
.error404 article .entry-title {
  font-size: 21px;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .search-results article .entry-title,
  .search-no-results article .entry-title,
  .error404 article .entry-title {
    font-size: 21px;
  }
}
.search-results article .entry-title a,
.search-no-results article .entry-title a,
.error404 article .entry-title a {
  background: transparent;
  text-decoration: none;
  color: #040606;
  border-bottom: 2px solid transparent;
}
.search-results article .entry-title a:hover,
.search-no-results article .entry-title a:hover,
.error404 article .entry-title a:hover {
  text-decoration: underline;
  color: #040606;
  padding-bottom: 0;
}
.search-results article .entry-meta,
.search-no-results article .entry-meta,
.error404 article .entry-meta {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: #2f3849;
  margin-bottom: 5px;
}
.search-results article .entry-meta span,
.search-no-results article .entry-meta span,
.error404 article .entry-meta span {
  text-transform: uppercase;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 1px;
}
.search-results .empty-cat,
.search-no-results .empty-cat,
.error404 .empty-cat {
  border: 1px solid #b4b4b4;
  padding: 15px;
  text-align: center;
}
.search-results .col-sx,
.search-no-results .col-sx,
.error404 .col-sx {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .search-results .col-sx,
  .search-no-results .col-sx,
  .error404 .col-sx {
    margin-bottom: 0;
  }
}

.book {
  background: #e6e9eb;
  padding: 0 0 20px 0;
  margin-bottom: 40px;
}
.book figure {
  margin: 0;
}
.book img {
  max-width: 230px;
  display: block;
  margin: 0 auto 15px;
  transition: all 0.2s ease-out 0s;
  opacity: 1;
}
.book img:hover {
  opacity: 0.8;
}
.book p {
  text-align: center;
  padding: 0 40px 0 40px;
  margin-bottom: 0;
  font-weight: 700;
  color: #2f3849;
  line-height: 1.3em;
}

.wpcf7-form .wpcf7-text,
.wpcf7-form input[type=text],
.wpcf7-form .wpcf7-textarea,
.wpcf7-form textarea,
.comment-form .wpcf7-text,
.comment-form input[type=text],
.comment-form .wpcf7-textarea,
.comment-form textarea {
  border: 1px solid #b4b4b4;
}
.wpcf7-form .wpcf7-submit,
.wpcf7-form .submit,
.comment-form .wpcf7-submit,
.comment-form .submit {
  background: #2f3849;
  color: white;
  display: inline-block;
  font-weight: 700;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  line-height: 40px;
  padding: 0 40px;
  cursor: pointer;
}
.wpcf7-form .wpcf7-submit:hover,
.wpcf7-form .submit:hover,
.comment-form .wpcf7-submit:hover,
.comment-form .submit:hover {
  background: #757988;
}
.wpcf7-form .acceptance .wpcf7-list-item,
.comment-form .acceptance .wpcf7-list-item {
  display: inline-block;
  margin: 0 10px 0 0;
}

.single .comments-area ul, .single .comments-area ol {
  list-style-type: none;
}
.single .comments-area .comments-title,
.single .comments-area .comment-reply-title {
  font-size: 20px;
}
@media screen and (min-width: 1024px) {
  .single .comments-area .comments-title,
  .single .comments-area .comment-reply-title {
    font-size: 30px;
  }
}
.single .comments-area .comments-title {
  margin-bottom: 1em;
}
.single .comments-area article {
  background: #efefef;
  padding: 20px 20px 20px 70px;
  position: relative;
}
.single .comments-area article a {
  background: transparent;
}
.single .comments-area article .avatar {
  position: absolute;
  left: 20px;
}

.video-wrapper {
  margin-bottom: 2em;
}

.single-video {
  background: #2f3849;
}

/*# sourceMappingURL=app.css.map */
