@charset "UTF-8";
/*
Theme Name:     dylan-days
Author:         Ivan Bárta
Version:        1.0.0
Author URI: 	https://ivanbarta.cz/
Description: 	šablona
Tags: 			blog, news
Text Domain: 	dylan-days 
*/
:root {
  --white: #ebebeb;
  --white-mid: #aaaaaa;
  --white-dark: #b4b4b486;
  --background-dark: rgba(27, 27, 27, 0.644);
  --background-white: rgba(255, 255, 255, 0.88);
  --text-white: #bdbdbd;
  --text-white-link: #ffffff;
  --text-grey-light: #a7a7a7;
  --text-grey: #5e5e5e;
  --text-grey-dark: #272727;
  --button: #0000003b;
  --button-text: #ffffff66;
  --button-shadow: #000000a8; }

* {
  margin: 0;
  padding: 0; }

*,
*::before,
*::after {
  box-sizing: border-box; }

html {
  box-sizing: border-box;
  font-size: 62.5%; }

body {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh; }

::-webkit-scrollbar {
  width: 0px; }

/*
0 - 620px:      Phone
620 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where normal styles apply
1800px + :      Big desktop
$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop
ORDER: Base + typography > general layout + grid > page layout > components
1em = 16px
*/
h1 {
  font-size: 4.6rem;
  font-weight: 600; }
  @media only screen and (max-width: 38.75em) {
    h1 {
      font-size: 3.4rem;
      font-weight: 600;
      line-height: 4.2rem; } }

h2 {
  font-size: 3rem;
  font-weight: 600; }
  @media only screen and (max-width: 38.75em) {
    h2 {
      font-size: 2.6rem;
      font-weight: 600; } }

h3 {
  font-size: 2.4rem;
  font-weight: 400; }
  @media only screen and (max-width: 38.75em) {
    h3 {
      font-size: 2rem; } }

h4 {
  font-size: 2.2rem;
  font-weight: 400; }

h5 {
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 300; }

p {
  font-size: 1.8rem;
  line-height: 2.4rem; }

.btn, .btn:link, .btn:visited {
  position: relative;
  display: inline-block;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 2rem;
  margin-top: 1rem;
  transition: all 0.2s;
  font-size: 1.6rem;
  background-color: var(--button);
  color: var(--button-text);
  border: 1px solid var(--text-grey-dark);
  border-radius: 6px;
  cursor: pointer; }

.btn:hover {
  color: var(--text-grey-light);
  border: 1px solid var(--text-grey-light);
  transform: translateY(-0.3rem);
  box-shadow: 0.4rem 0.6rem 1.5rem var(--button-shadow); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-0.1rem);
  color: var(--white);
  box-shadow: 0 0.5rem 1rem var(--button-shadow); }

.popup-wrapper {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  .popup-wrapper .popup-window {
    font-family: "Mulish", sans-serif;
    text-align: center;
    width: 100%;
    max-width: 66rem;
    border-radius: 4px;
    margin: 34% auto;
    padding: 4rem;
    position: relative;
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out; }
    .popup-wrapper .popup-window a {
      background: crimson;
      color: white;
      text-decoration: none;
      padding: 6px 10px; }
    .popup-wrapper .popup-window .popup-close {
      position: absolute;
      top: 3px;
      right: 12px;
      font-size: 2rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.5);
      cursor: pointer; }

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: scale(0.6); }
  80% {
    /* transform: translateX(1rem); */ }
  100% {
    opacity: 1;
    transform: scale(1); } }

.gallery {
  background-color: var(--background-mid);
  border-radius: 2px;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* fraction*/
  row-gap: 1.4rem;
  column-gap: 1.2rem;
  overflow-wrap: normal; }
  @media only screen and (max-width: 38.75em) {
    .gallery {
      grid-template-columns: repeat(2, 1fr);
      /* fraction*/
      row-gap: 0.6rem;
      column-gap: 0.6rem; } }

a.gallery-image {
  background-color: #bebebe;
  border: #636363 1px solid;
  border-radius: 5px; }
  a.gallery-image img {
    border-radius: inherit;
    width: 100%;
    box-shadow: 3px 3px 11px 1px rgba(68, 68, 68, 0.6);
    display: block; }
    @media only screen and (max-width: 38.75em) {
      a.gallery-image img {
        box-shadow: none; } }
    a.gallery-image img:hover {
      opacity: 0.7;
      transition: all 0.4s ease; }

.cela-galerie {
  margin: 0 0 4rem;
  text-align: center; }

.gallery-video {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* fraction*/
  row-gap: 4rem;
  column-gap: 4.2rem;
  overflow-wrap: normal; }
  .gallery-video h3 {
    margin-bottom: 0.5rem;
    color: var(--text-white); }
  .gallery-video .video-blok iframe {
    width: 100%;
    border-radius: 6px; }

.pswp__img {
  border: rgba(255, 255, 255, 0.3) 2px solid;
  border-radius: 4px; }

.all-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* fraction*/
  row-gap: 6rem;
  column-gap: 6rem;
  margin-top: 6rem; }
  @media only screen and (max-width: 38.75em) {
    .all-cards {
      display: grid;
      grid-template-columns: 1fr;
      row-gap: 2rem;
      padding: 1rem; } }
  .all-cards a {
    color: var(--darkGray);
    text-decoration: none; }
    .all-cards a:hover {
      color: var(--text-grey); }
  .all-cards p:hover {
    transition: all 0.5s ease;
    transform: translateX(0.3rem); }

.card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 4px 4px 14px 1px rgba(75, 75, 75, 0.6);
  padding: 2rem;
  border-radius: 0.4rem; }
  .card h3 {
    color: var(--text-grey-dark);
    isolation: isolate; }
  .card h4 {
    margin-bottom: 0.5rem;
    isolation: isolate; }
  .card p {
    color: var(--text-grey-dark);
    isolation: isolate; }
  .card .card-image {
    position: relative;
    margin: 2rem 0;
    z-index: 500;
    opacity: 1; }
    .card .card-image .ikonka-galerie {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 12rem;
      opacity: 0.7;
      padding: 1.4rem;
      background-color: rgba(0, 0, 0, 0.842); }
    .card .card-image:hover {
      opacity: 0.8;
      transition: all 0.5s ease-out; }
    .card .card-image:hover > .ikonka-galerie {
      width: 13.5rem;
      transition: all 0.8s ease-out;
      background-color: rgba(255, 255, 255, 0); }
    .card .card-image img {
      width: 100%;
      height: auto;
      border-radius: 6px; }

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0.4rem;
  background-color: white;
  mix-blend-mode: overlay;
  opacity: 0.7; }

.neukazovat {
  display: none; }

.to-top {
  display: block;
  position: fixed;
  bottom: 6rem;
  right: 0;
  width: 6rem;
  border: none;
  cursor: pointer;
  z-index: 600;
  padding: 1.4rem 1rem;
  background-color: rgba(177, 177, 177, 0.4);
  border-radius: 8px  0 0 8px; }
  @media only screen and (max-width: 75em) {
    .to-top {
      width: 6rem;
      padding: 1rem 1rem; } }
  @media only screen and (max-width: 56.25em) {
    .to-top {
      width: 6rem;
      padding: 1rem 1rem; } }
  @media only screen and (max-width: 38.75em) {
    .to-top {
      display: none; } }
  .to-top img:hover {
    opacity: 0.2; }

.container {
  width: 70%;
  margin: 0 auto;
  padding: 5rem; }
  @media only screen and (max-width: 38.75em) {
    .container {
      width: 100%;
      padding: 0; } }
  .container h1 {
    color: var(--text-white);
    text-align: center;
    font-weight: 200;
    margin-top: 4rem; }
  .container h2 {
    color: var(--text-grey-light);
    text-align: center;
    font-weight: 200;
    margin-top: 4rem; }
    .container h2 a {
      color: var(--text-white);
      text-decoration: none; }
      .container h2 a:hover {
        color: var(--white); }

.wrapper-background {
  background: linear-gradient(to right bottom, #000000bb, #000000bb), url(./img/texture/pattern_01.jpg);
  /*min-height: 100vh; */
}

footer hr {
  border: none;
  height: 1px;
  background-color: var(--text-grey); }

.upper {
  display: flex;
  align-items: center;
  width: 90%;
  margin: 4rem auto 2rem;
  padding: 3rem 0; }
  @media only screen and (max-width: 38.75em) {
    .upper {
      flex-direction: column;
      width: 90%;
      padding: 0; } }
  .upper h3 {
    color: var(--text-white);
    font-weight: 600;
    margin: 1rem 0 1rem; }
  .upper__left {
    width: 70%;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center; }
    @media only screen and (max-width: 38.75em) {
      .upper__left {
        width: 100%; } }
    .upper__left .partneri {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      align-items: center; }
      .upper__left .partneri a:not(:first-child) {
        opacity: 0.5; }
      .upper__left .partneri a img {
        height: 8rem;
        width: auto;
        margin: 4rem 6rem 2rem 0; }
        @media only screen and (max-width: 56.25em) {
          .upper__left .partneri a img {
            height: 6rem;
            margin: 4rem 2rem 2rem 0; } }
        @media only screen and (max-width: 38.75em) {
          .upper__left .partneri a img {
            height: 4rem;
            margin: 3rem 2rem 1rem 0; } }
        .upper__left .partneri a img:hover {
          opacity: 0.5; }
    .upper__left .partneri a .unijazz {
      height: 5.2rem; }
      @media only screen and (max-width: 56.25em) {
        .upper__left .partneri a .unijazz {
          height: 3.6rem; } }
      @media only screen and (max-width: 38.75em) {
        .upper__left .partneri a .unijazz {
          height: 2.6rem; } }
    .upper__left .partneri a .pop-muzeum {
      height: 12rem; }
      @media only screen and (max-width: 56.25em) {
        .upper__left .partneri a .pop-muzeum {
          height: 8rem; } }
      @media only screen and (max-width: 38.75em) {
        .upper__left .partneri a .pop-muzeum {
          height: 5.4rem; } }
    .upper__left .partneri a .slunicko {
      height: 10rem; }
      @media only screen and (max-width: 56.25em) {
        .upper__left .partneri a .slunicko {
          height: 8rem; } }
      @media only screen and (max-width: 38.75em) {
        .upper__left .partneri a .slunicko {
          height: 6rem; } }
    .upper__left .partneri a .ministerstvo {
      height: 8rem; }
      @media only screen and (max-width: 56.25em) {
        .upper__left .partneri a .ministerstvo {
          height: 8rem; } }
      @media only screen and (max-width: 38.75em) {
        .upper__left .partneri a .ministerstvo {
          height: 6rem; } }
  .upper__right {
    width: 30%;
    padding-left: 6rem;
    text-align: left; }
    @media only screen and (max-width: 38.75em) {
      .upper__right {
        width: 100%;
        padding-left: 1rem;
        border: none; } }
    .upper__right ul {
      margin: 2rem 0;
      color: var(--text-white);
      font-size: 1.8rem;
      line-height: 3rem; }
      .upper__right ul li a {
        color: var(--text-white);
        text-decoration: none; }
        .upper__right ul li a:hover {
          color: #fff; }
      .upper__right ul li:hover {
        transition: all 1s ease;
        transform: translateX(0.3rem); }

.lower {
  display: flex;
  color: var(--text-grey-light);
  padding: 0 1rem 0.5rem;
  align-items: flex-end;
  justify-content: space-between; }
  @media only screen and (max-width: 38.75em) {
    .lower {
      padding: 1rem 1rem 0.5rem;
      position: static;
      flex-direction: column; } }
  .lower .third {
    width: 33%; }
    .lower .third p {
      font-size: 1.4rem; }

@media only screen and (max-width: 27em) {
  .lower .third {
    width: 100%;
    text-align: center; } }

@media only screen and (max-width: 27em) {
  .lower .third p a {
    display: block; } }

@media only screen and (max-width: 27em) {
  .lower .third p span {
    display: none; } }

.lower .third a {
  color: var(--text-grey-light);
  text-decoration: none; }

.lower .third a:hover {
  opacity: 0.6; }

.lower .third a img {
  width: 3rem;
  height: 3rem; }

@media only screen and (max-width: 27em) {
  .lower .third a img {
    width: 4rem;
    height: 4rem; } }

.lower .third a img:hover {
  opacity: 0.5;
  transform: scale(1.3);
  transition: all 0.5s ease-out; }

.lower * :not(:last-child) {
  margin-right: 0.8rem; }

.prostred {
  text-align: center; }

.vpravo {
  text-align: right;
  padding-top: 1rem; }

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 96rem;
  background-image: linear-gradient(to right bottom, #00000049, #0000002f), url(./img/hero_08.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top; }
  @media only screen and (max-width: 75em) {
    .hero-section {
      min-height: 80rem; } }
  @media only screen and (max-width: 38.75em) {
    .hero-section {
      display: block; } }
  .hero-section .custom-header {
    top: 0;
    text-align: center; }
    .hero-section .custom-header #desktop {
      width: 59%;
      margin-top: 6rem; }
      @media only screen and (max-width: 56.25em) {
        .hero-section .custom-header #desktop {
          width: 70%; } }
      .hero-section .custom-header #desktop:hover {
        opacity: 0.8; }
      @media only screen and (max-width: 38.75em) {
        .hero-section .custom-header #desktop {
          display: none; } }
    .hero-section .custom-header #mobile {
      display: none;
      width: 56%;
      margin: 5rem auto 0; }
      @media only screen and (max-width: 38.75em) {
        .hero-section .custom-header #mobile {
          display: block; } }
    .hero-section .custom-header .text-box {
      padding: 0 22%;
      margin: 7% 0 28%;
      line-height: 2.7rem;
    }
      @media only screen and (max-width: 75em) {
        .hero-section .custom-header .text-box {
          padding: 0 16%; } }
      @media only screen and (max-width: 56.25em) {
        .hero-section .custom-header .text-box {
          padding: 0 8%; } }
      @media only screen and (max-width: 38.75em) {
        .hero-section .custom-header .text-box {
          padding: 0 0; } }
      .hero-section .custom-header .text-box h4 {
        border-radius: 6px;
        box-shadow: 0.1rem 0.4rem 6rem var(--white-dark);
        color: var(--white-mid);
        background-color: var(--background-dark);
        padding: 2.2rem 4rem; }
        .hero-section .custom-header .text-box h4 a {
          color: #dedede;
        }
        @media only screen and (max-width: 38.75em) {
          .hero-section .custom-header .text-box h4 {
            padding: 2.2rem 2%;
            line-height: 2rem; } }

.kontakty {
  min-height: 44vh;
  margin-top: 6rem; }
  .kontakty h2 {
    margin-bottom: 2rem; }
  .kontakty p {
    color: var(--text-white); }
    .kontakty p a {
      color: var(--text-white-link); }
      .kontakty p a:hover {
        color: var(--text-white); }

#nav {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
  font-size: 2.2rem;
  letter-spacing: 0.6px; }
  @media only screen and (max-width: 38.75em) {
    #nav {
      display: none; } }

#nav ul li {
  position: relative;
  float: left;
  list-style: none; }

#nav ul li a {
  display: block;
  color: var(--white);
  padding: 0.5rem 1.6rem;
  text-decoration: none; }

#nav ul li ul {
  display: block;
  position: absolute;
  background-color: var(--background);
  box-shadow: 1px 8px 10px rgba(46, 46, 46, 0.329);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-0.8rem);
  transition: all 0.4s ease;
  z-index: 100; }

#nav > ul > li > a:hover {
  opacity: 0.5; }

#nav ul li:hover ul {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0rem); }

#nav ul li ul li {
  width: 14rem; }

#nav ul li ul li a {
  padding: 0.8rem 1.4rem; }

#nav ul li ul li a:hover {
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--white);
  transition: all 0.2s ease; }

#mobil {
  display: none;
  list-style: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: rgba(236, 236, 236, 0.904);
  text-align: center;
  font-size: 3.6rem;
  z-index: 1000;
  transform: translateX(100%);
  transition: all 0.5s ease-out; }
  @media only screen and (max-width: 38.75em) {
    #mobil {
      display: block; } }

#mobil ul {
  margin-top: 30%; }

#mobil ul li {
  position: relative;
  display: inline-block;
  color: #333;
  padding: 1rem; }
  @media only screen and (max-width: 38.75em) {
    #mobil ul li {
      display: block; } }

#mobil ul li a {
  color: #333;
  text-decoration: none; }

#mobil ul li ul {
  display: none; }

#mobil ul li:hover {
  cursor: pointer; }

#mobil ul li:hover a {
  color: #fff; }

#mobil ul li:hover ul {
  display: block;
  position: absolute;
  left: 0;
  width: 200px;
  margin-top: 1rem; }
  @media only screen and (max-width: 38.75em) {
    #mobil ul li:hover ul {
      width: 100%;
      position: relative; } }

#mobil ul li:hover ul li {
  display: block;
  background: #ffffff8e; }

#mobil ul li:hover ul li a {
  color: #333; }

#mobil ul li:hover ul li:hover {
  background: #c5c5c5;
  color: inherit; }

.telefon {
  display: none;
  opacity: 0.6;
  cursor: pointer; }
  @media only screen and (max-width: 38.75em) {
    .telefon {
      display: block;
      margin-top: 1.4rem; } }

.telefon a {
  padding: 0 1.2rem;
  text-decoration: none;
  font-size: 2.4rem;
  color: var(--text); }

.telefon img {
  width: 3rem;
  height: 3rem; }

.lang-switch {
  position: fixed;
  top: 0;
  right: 0;
  width: 14rem;
  font-size: 1.6rem; }
  .lang-switch ul li a {
    padding: 1rem; }
  @media only screen and (max-width: 38.75em) {
    .lang-switch {
      left: 50%;
      transform: translateX(-50%); } }

.hamburger {
  display: none; }
  @media only screen and (max-width: 38.75em) {
    .hamburger {
      display: block; } }

.hamburger__checkbox {
  display: none; }

.hamburger__button {
  background-color: white;
  height: 5rem;
  width: 5rem;
  border-radius: 5px;
  position: fixed;
  top: 1rem;
  right: 2rem;
  z-index: 2000;
  text-align: center;
  cursor: pointer; }

.hamburger__icon {
  position: relative;
  margin-top: 2.4rem; }

.hamburger__icon,
.hamburger__icon::before,
.hamburger__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #111;
  display: inline-block; }

.hamburger__icon::before,
.hamburger__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.4s; }

.hamburger__icon::before {
  top: -0.8rem; }

.hamburger__icon::after {
  top: 0.8rem; }

.hamburger__button:hover .hamburger__icon::before {
  top: -1rem; }

.hamburger__button:hover .hamburger__icon::after {
  top: 1rem; }

.hamburger__checkbox:checked + .hamburger__button .hamburger__icon {
  background-color: transparent; }

.hamburger__checkbox:checked + .hamburger__button .hamburger__icon::before {
  transform: rotate(135deg);
  top: 0; }

.hamburger__checkbox:checked + .hamburger__button .hamburger__icon::after {
  transform: rotate(-135deg);
  top: 0; }

#mobil.show-navi {
  transform: translateX(0);
  transition: all 0.5s ease-out; }

#mobil.navi-remove {
  transform: translateX(100%);
  transition: all 0.5s ease-out; }

.single-program h1,
.content-program h1 {
  color: var(--text-white);
  margin: 8rem 0 0; }
  @media only screen and (max-width: 38.75em) {
    .single-program h1,
    .content-program h1 {
      margin: 8rem 0 4rem; } }

.single-program h2,
.content-program h2 {
  color: var(--text-white);
  margin: 4rem 0 4rem; }

.single-program h4,
.content-program h4 {
  color: var(--text-white);
  font-weight: 200;
  text-align: center;
  margin: 4rem 0 4rem; }

.single-program h5,
.content-program h5 {
  color: var(--text-white);
  margin-bottom: 4rem; }

.single-program p,
.content-program p {
  color: var(--text-white); }
  .single-program p a,
  .content-program p a {
    color: var(--text-white); }

.single-program hr,
.content-program hr {
  border: none;
  height: 1px;
  margin-bottom: 8rem; }

.single-program {
  text-align: center; }
  .single-program h2 {
    display: inline-block;
    margin: 12rem 0 6rem;
    padding: 0 3rem;
    border-top: 1px solid var(--text-grey);
    border-bottom: 1px solid var(--text-grey);
    border-radius: 1px; }
    @media only screen and (max-width: 38.75em) {
      .single-program h2 {
        margin: 0 0 2rem;
        padding: 0 0.5rem;
        font-size: 2rem; } }
  .single-program p {
    text-align: left; }

.content-program {
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0.1rem 0.4rem 6rem rgba(97, 97, 97, 0.3);
  padding: 2rem 4rem;
  margin-top: 6rem;
  border-radius: 8px; }
  @media only screen and (max-width: 38.75em) {
    .content-program {
      padding: 0.6rem 1.6rem 1rem;
      margin-top: 1rem; } }

.content-novinky {
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0.1rem 0.4rem 6rem rgba(97, 97, 97, 0.3);
  padding: 4rem 4rem 6rem;
  margin-top: 6rem;
  border-radius: 8px; }
  @media only screen and (max-width: 38.75em) {
    .content-novinky {
      padding: 2rem 1.6rem 4rem; } }
  .content-novinky h2 {
    color: var(--text-white);
    margin: 0 0 2.6rem; }
  .content-novinky h4 {
    color: var(--white-dark);
    margin: 0 0 2rem;
    text-align: center;
    font-size: 1.8rem; }
  .content-novinky p {
    color: var(--text-white); }
    .content-novinky p a {
      color: var(--text-white); }

.aktualni-program {
  min-height: 30%;
  margin-top: 6rem; }
  @media only screen and (max-width: 38.75em) {
    .aktualni-program {
      padding: 0 1.6rem 4rem; } }
  .aktualni-program h2 {
    margin-bottom: 2rem; }
  .aktualni-program p {
    color: var(--text-white); }
    .aktualni-program p a {
      color: var(--text-white-link); }
      .aktualni-program p a:hover {
        color: var(--text-white); }
