*,
*::before,
*::after {
  margin: 0px;
  padding: 0px;
}

.container {
  position: relative;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPTBold.otf");
  src: url("../fonts/FuturaPTBold.otf") format("opentype");
  font-style: normal;
}

@font-face {
  font-family: "Futura PT - Book";
  src: url("../fonts/FuturaPTBook.otf");
  src: url("../fonts/FuturaPTBook.otf") format("opentype");
  font-style: normal;
}

@font-face {
  font-family: "Futura PT - Demi";
  src: url("../fonts/FuturaPTDemi.otf");
  src: url("../fonts/FuturaPTDemi.otf") format("opentype");
  font-style: normal;
}

/* Enter and leave animations can use different */
/* durations and timing functions.              */
.slide-fade-enter-active {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slide-fade-leave-active {
  -webkit-transition: all 0.8s cubic-bezier(1, 0.5, 0.8, 1);
  transition: all 0.8s cubic-bezier(1, 0.5, 0.8, 1);
}

.slide-fade-enter, .slide-fade-leave-to {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  opacity: 0;
}

/* Enter and leave animations can use different */
/* durations and timing functions.              */
.slide-fade-top-enter-active {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.slide-fade-top-leave-active {
  -webkit-transition: all 0.8s cubic-bezier(1, 0.5, 0.8, 1);
  transition: all 0.8s cubic-bezier(1, 0.5, 0.8, 1);
}

.slide-fade-top-enter, .slide-fade-top-leave-to {
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  opacity: 0;
}

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

::-webkit-scrollbar-thumb {
  border-radius: 5px !important;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #121237), to(#121237)) !important;
  background-image: linear-gradient(90deg, #121237 0, #121237) !important;
}

/*Bounce*/
@-webkit-keyframes kreep {
  0% {
    -webkit-transform: scale(1.01, 0.99);
    transform: scale(1.01, 0.99);
  }
  50% {
    -webkit-transform: scale(0.99, 1.01) translateY(-0.1rem);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes kreep {
  0% {
    -webkit-transform: scale(1.01, 0.99);
    transform: scale(1.01, 0.99);
  }
  50% {
    -webkit-transform: scale(0.99, 1.01) translateY(-0.1rem);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.arrow {
  position: fixed;
  z-index: 10000;
  width: 80px;
  height: 80px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  right: 50px;
  bottom: 60px;
  -webkit-box-shadow: -4px 13px 22px -1px rgba(0, 0, 0, 0.75);
  box-shadow: -4px 13px 22px -1px rgba(0, 0, 0, 0.75);
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.arrow:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.arrow__res {
  max-width: 60%;
  height: auto;
  max-height: 60px;
}

.swal2-html-container {
  font-family: "Futura PT";
  font-size: 20px;
}

.swal2-styled.swal2-confirm {
  font-family: "Futura PT";
  font-size: 16px;
}

.error-valid {
  color: tomato;
  font-family: "Futura PT";
  font-size: 12px;
  margin-bottom: 15px;
}

.social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .social-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.social-media__fb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 50%;
  margin-right: 10px;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .social-media__fb {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 10px;
  }
}

.social-media__in {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: 10px;
  overflow: hidden;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .social-media__in {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
  }
}

.instagram-media .instagram-media-rendered {
  min-width: 320px;
}

.label-rodo {
  color: #fff;
  margin-bottom: 15px;
  font-family: "Futura PT - Demi";
  cursor: pointer;
  font-size: 16px;
  line-height: 22px;
}

fade-enter-active,
.fade-leave-active {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.fade-enter-active {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.instagram_feed {
  max-width: 500px;
  max-width: 500px;
}

.header {
  background-image: url("../img/headers-nav/78-min.jpg");
  background-position: center;
  background-size: cover;
}

.alpha {
  background-color: rgba(0, 0, 44, 0.35);
}

.header-nav {
  background-color: rgba(0, 1, 2, 0.77);
  padding: 45px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header-nav {
    padding: 20px 40px;
  }
}

.menu-rwd {
  display: none;
  cursor: pointer;
}

@media only screen and (min-width: 577px) and (max-width: 1024px) {
  .menu-rwd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media only screen and (min-width: 320px) and (max-width: 576px) {
  .menu-rwd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.menu-rwd img {
  max-width: 100%;
  height: auto;
  max-height: 30px;
}

.rwd-menu-mobile {
  background-color: black;
  position: fixed;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 50%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header-nav-list-mobile {
  padding-top: 50px;
  padding-bottom: 10px;
  padding-left: 20px;
}

.header-nav-list-mobile li {
  padding-bottom: 20px;
}

.header-nav-list-social-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 20px;
  margin-bottom: 20px;
}

.header-nav-list-social-mobile a {
  margin: 0px;
  margin-bottom: 10px;
  width: 50%;
}

@media only screen and (min-width: 425px) and (max-width: 762px) {
  .header-nav-list-social-mobile a {
    width: 30%;
  }
}

@media only screen and (min-width: 763px) and (max-width: 1024px) {
  .header-nav-list-social-mobile a {
    width: 20%;
  }
}

.header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 65%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style-type: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header-nav-list {
    display: none;
  }
}

.header-nav-list-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 35%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 577px) and (max-width: 1024px) {
  .header-nav-list-social {
    width: 60%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 0px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 576px) {
  .header-nav-list-social {
    display: none;
  }
}

.header-nav-list-link {
  cursor: pointer;
}

.header-nav-list-link a {
  color: #ffffff;
  font-family: "Futura PT - Demi";
  font-size: 18px;
  text-decoration: none;
  padding: 0px 5px;
}

.header-nav-list-social-link {
  margin: 0px 15px;
}

.main-header-live {
  height: 88vh;
  width: 100%;
}

.live {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.main-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 40px 90px 40px;
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .main-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.main-header-left {
  width: 50%;
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .main-header-left {
    width: 100%;
  }
}

.main-header-right-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-header-right {
  width: 50%;
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .main-header-right {
    width: 100%;
    margin-top: 0px;
  }
}

.main-header-left-logotype {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 55px;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .main-header-left-logotype {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.main-header-left-link {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 320px) and (max-width: 576px) {
  .main-header-left-link {
    width: 50%;
  }
}

.main-header-left-link:not(:last-child) {
  margin-right: 35px;
}

@media only screen and (min-width: 320px) and (max-width: 576px) {
  .main-header-left-link:not(:last-child) {
    margin-right: 0px;
  }
}

.main-header-left-link img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
}

.main-header-left-pepsi {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-header-left-live {
  position: relative;
}

.main-header-left-live__img {
  height: 225px;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .main-header-left-live__img {
    height: 150px;
    margin-top: 30px;
  }
}

.main-header-left-live__start {
  color: #ffffff;
  font-family: "Futura PT";
  font-size: 75px;
  text-transform: uppercase;
  text-align: center;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .main-header-left-live__start {
    font-size: 45px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.main-header-left-live__time {
  color: #ffffff;
  font-family: "Futura PT";
  font-size: 110px;
  text-align: center;
  -webkit-transform: translateY(-45px);
          transform: translateY(-45px);
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .main-header-left-live__time {
    font-size: 60px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.main-header-right-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
  margin-top: 35px;
}

.main-header-right-info__live-dj {
  font-size: 55px;
  font-family: "Futura PT";
  text-align: center;
  color: #fff;
}

.main-header-right-info__alphabetical {
  font-size: 29px;
  font-family: "Futura PT - Book";
  text-align: center;
  color: #fff;
  margin-bottom: 65px;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .main-header-right-info__alphabetical {
    font-size: 20px;
  }
}

.main-header-right-info__star {
  font-family: "Futura PT";
  font-size: 53px;
  text-align: center;
  color: #fff;
  width: 50%;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .main-header-right-info__star {
    font-size: 43px;
    width: 100%;
  }
}

.main-header-right-info__star:not(:last-child) {
  margin-bottom: 40px;
}

.artist-section {
  padding-top: 90px;
  background-color: #f7f3f3;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .artist-section {
    background-color: rgba(225, 2, 0, 0.1);
  }
}

.artist-section-name {
  text-align: center;
  color: #000102;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: "Futura PT";
}

.artist-section-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .artist-section-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0px 15px;
    margin-top: 50px;
  }
}

.artist-section-box-single-aplha-adam:hover .artist-section-box-single-aplha__name {
  display: none;
}

.artist-section-box-single-aplha-cb:hover .artist-section-box-single-aplha__name {
  display: none;
}

.artist-section-box-single-aplha-skid:hover .artist-section-box-single-aplha__name {
  display: none;
}

.artist-section-box-single-aplha-djk:hover .artist-section-box-single-aplha__name {
  display: none;
}

.artist-section-box-single {
  width: 50%;
  height: 700px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .artist-section-box-single {
    width: 100%;
    margin-bottom: 15px;
    background-position: center;
  }
}

.artist-section-box-single--adam {
  background-image: url("../img/autors/Adam De Great pressphoto (13)-min.jpg");
  cursor: pointer;
  background-position: center;
}

.artist-section-box-single--blinders {
  background-image: url("../img/autors/Blinders BW-min.jpg");
  cursor: pointer;
  background-position: 50% 30%;
}

.artist-section-box-single--djkris {
  background-image: url("../img/autors/kris1-min.jpg");
  cursor: pointer;
  background-position: 50% 50%;
}

.artist-section-box-single--kubaNeitan {
  background-image: url("../img/autors/2-min.jpg");
  cursor: pointer;
  background-position: 50% 50%;
}

.artist-section-box-single--foothills {
  background-image: url("../img/autors/Foothills Profile-min.jpg");
  cursor: pointer;
  background-position: 50% 60%;
}

.artist-section-box-single--skytech {
  background-image: url("../img/autors/Skytech Pic 2-min.jpg");
  cursor: pointer;
  background-position: 50% 25%;
}

.artist-section-box-single--igotu {
  background-image: url("../img/autors/IGOTU_STUDIO_3-min.jpg");
  cursor: pointer;
  background-position: 50% 0%;
}

.artist-section-box-single--kofm {
  background-image: url("../img/autors/KOFM_PRESS_PACK_WHITE_PHOTO_1-min.jpg");
  cursor: pointer;
  background-position: 50% 10%;
}

.artist-section-box-single--cb {
  background-image: url("../img/autors/Foto 1 - 2020 C-BooL-min.JPG");
  cursor: pointer;
  background-position: 50% -10%;
}

.artist-section-box-single--skid {
  background-image: url("../img/autors/skid-min.jpg");
  cursor: pointer;
  background-position: center;
}

.artist-section-box-single--gromee {
  background-image: url("../img/autors/Gromee.jpg");
  cursor: pointer;
  background-position: center;
}

.artist-section-box-single--MATTHEO {
  background-image: url("../img/autors/MATTHEO.png");
  cursor: pointer;
  background-position: 50% 80%;
}

.artist-section-box-single-aplha {
  background-color: rgba(225, 2, 0, 0.2);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}

.artist-section-box-single-aplha__name {
  color: #ffffff;
  font-family: "Futura PT";
  font-size: 63px;
  margin-bottom: 80px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 85%;
  -webkit-transform: translate(-50%, -85%);
          transform: translate(-50%, -85%);
  text-align: center;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .artist-section-box-single-aplha__name {
    font-size: 36px;
  }
}

.news {
  padding: 0px 50px;
  padding-top: 90px;
  background-color: #f7f3f3;
}

@media only screen and (min-width: 320px) and (max-width: 576px) {
  .news {
    padding: 0px 10px;
  }
}

.news-name {
  text-align: center;
  color: #000102;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: "Futura PT";
}

.news-place {
  margin-top: 130px;
}

.news-place__name {
  text-align: left;
  color: #000102;
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: "Futura PT";
  padding-bottom: 65px;
}

.news-place__paragraph {
  font-size: 30px;
  color: #00002c;
  line-height: 36px;
  font-family: "Futura PT - Book";
  padding-bottom: 20px;
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
  .news-place__paragraph {
    font-size: 24px;
  }
}

.info {
  background-image: url("../img/bc/footer.png");
  background-position: center;
  background-size: cover;
}

.info-bg {
  background-color: rgba(16, 99, 231, 0.65);
  padding: 140px 50px 80px 50px;
}

.info-bg__name {
  text-align: left;
  color: #ffffff;
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: "Futura PT";
  padding-bottom: 65px;
}

.info-bg__paragraph {
  font-size: 30px;
  color: #ffffff;
  line-height: 36px;
  font-family: "Futura PT - Book";
  padding-bottom: 20px;
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
  .info-bg__paragraph {
    font-size: 24px;
  }
}

.containerArtist {
  position: relative;
  margin: auto;
  width: 95%;
  height: 95%;
  cursor: pointer;
  overflow: hidden;
  z-index: 2000;
}

.containerArtist:hover .overlay {
  opacity: 1;
  width: 100%;
  height: 100%;
}

.containerArtist:hover span {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 0.5s ease, opacity 1.3s ease;
  -webkit-transition: opacity 1.3s ease, -webkit-transform 0.5s ease;
  transition: opacity 1.3s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 1.3s ease;
  transition: transform 0.5s ease, opacity 1.3s ease, -webkit-transform 0.5s ease;
}

.containerArtist .overlay {
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  margin: auto;
  width: 0px;
  height: 0px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.containerArtist span {
  color: #fff;
  text-align: center;
  position: absolute;
  margin: auto;
  width: 90%;
  height: 30px;
  font-size: 24px;
  color: #ffffff;
  line-height: 36px;
  font-family: "Futura PT - Book";
  left: 0;
  top: -50%;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: transform 0.5s ease, opacity 0.7s ease;
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.7s ease;
  transition: transform 0.5s ease, opacity 0.7s ease, -webkit-transform 0.5s ease;
  text-align: center;
}

@media only screen and (min-width: 577px) and (max-width: 756px) {
  .containerArtist span {
    font-size: 20px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 576px) {
  .containerArtist span {
    font-size: 14px;
  }
}

.section-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f7f3f3;
}

@media only screen and (min-width: 320px) and (max-width: 756px) {
  .section-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.after-movie {
  width: 50%;
  padding: 0px 15px;
  overflow: hidden;
}

@media only screen and (min-width: 320px) and (max-width: 756px) {
  .after-movie {
    width: 100%;
    padding: 0px;
  }
}

.after-movie__headline {
  text-align: center;
  color: #000102;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: "Futura PT";
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.after-movie__headline-after {
  text-align: center;
  color: #000102;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: "Futura PT";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  margin-top: -20px;
  height: 35px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-animation: kreep 0.7s ease 2s infinite alternate;
          animation: kreep 0.7s ease 2s infinite alternate;
}

.after-movie__headline-after:hover {
  color: #1063e7;
}

.after-movie__line {
  height: 1px;
  background-color: #1063e7;
  width: 30%;
  display: block;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media only screen and (min-width: 320px) and (max-width: 756px) {
  .after-movie__line {
    margin-bottom: 30px;
  }
}

.stream-yt {
  width: 100%;
  height: 500px;
}

.stream {
  width: 50%;
  padding: 0px 15px;
  overflow: hidden;
}

@media only screen and (min-width: 320px) and (max-width: 756px) {
  .stream {
    width: 100%;
    padding: 0px;
  }
}

.stream__headline {
  text-align: center;
  color: #000102;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: "Futura PT";
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.stream__headline-after {
  font-size: 48px;
  text-align: center;
  color: #000102;
  font-size: 48px;
}

.stream__line {
  height: 1px;
  background-color: #1063e7;
  width: 30%;
  display: block;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media only screen and (min-width: 320px) and (max-width: 756px) {
  .stream__line {
    margin-bottom: 30px;
  }
}

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info-left {
  width: 50%;
  background-color: #01203d;
}

.info-head-line {
  color: #f7f3f3;
  font-family: "Futura PT";
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}

.info-head-paragraph {
  color: #f7f3f3;
  font-family: "Futura PT - Book";
  font-size: 30px;
  font-weight: 400;
}

.info-right {
  width: 50%;
}

.small-iframe {
  width: 100%;
  height: 400px;
}

.footer {
  padding-top: 90px;
  background-color: #f7f3f3;
}

.footer-name {
  text-align: center;
  color: #000102;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: "Futura PT";
}

.footer-name-second {
  text-align: center;
  color: #000102;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-top: 35px;
  font-family: "Futura PT";
}

.footer-name-line {
  height: 1px;
  background-color: #1063e7;
  width: 30%;
  display: block;
  margin: 0 auto;
}

.footer-logotype {
  background-color: #000000;
  padding: 100px 50px;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-logotype-single {
  width: 20%;
  max-height: 100px;
  margin-bottom: 30px;
  margin-left: 5px;
  margin-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 576px) and (max-width: 1024px) {
  .footer-logotype-single {
    width: 47%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
  .footer-logotype-single {
    width: 100%;
  }
}

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

.img-res--eska-tv {
  max-height: 200px;
}

.img-res--silesia-24 {
  max-height: 200px;
  height: 200px;
}

.img-res-new {
  max-width: 100%;
  height: auto;
  max-height: 70px;
}

.img-res-new--eska-tv {
  max-height: 130px;
}

.img-res-new--silesia-24 {
  max-height: 100px;
  height: 100px;
}

.footer-form-box {
  background-image: url("../img/bc/footer.png");
  background-position: center;
  background-size: cover;
}

.footer-form-box-name {
  color: #ffffff;
  font-family: "Futura PT";
  font-size: 36px;
  font-weight: 700;
  line-height: 16px;
  display: block;
}

.footer-form-box-alpha {
  background-color: rgba(16, 99, 231, 0.65);
  padding: 60px 50px;
}

.footer-bottom-box {
  height: 144px;
  background-color: #000000;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
  .footer-bottom-box {
    display: none;
  }
}

.footer-bottom-box__name {
  color: rgba(255, 255, 255, 0.2);
  font-family: "Futura PT";
  font-size: 8px;
}

.footer-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 100px 0px;
}

.footer-form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 45%;
}

@media only screen and (min-width: 576px) and (max-width: 1024px) {
  .footer-form-container {
    width: 80%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
  .footer-form-container {
    width: 100%;
  }
}

.footer-form-container__input {
  height: 50px;
  border: 2px solid #1a73cf;
  background-color: #ffffff;
  color: #8db9e7;
  font-family: "Futura PT";
  font-size: 16px;
  padding-left: 15px;
  outline: none;
  margin-bottom: 15px;
}

.footer-form-container__textarea {
  height: 160px;
  border: 2px solid #1a73cf;
  background-color: #ffffff;
  color: #8db9e7;
  font-family: "Futura PT";
  font-size: 16px;
  padding-left: 15px;
  padding-top: 15px;
  outline: none;
  margin-bottom: 40px;
  resize: none;
}

.footer-form-container__send {
  height: 50px;
  border: 2px solid #1a73cf;
  background-color: #e72e10;
  outline: none;
  color: #ffffff;
  font-size: 19px;
  cursor: pointer;
  font-family: "Futura PT";
}

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

.footer-bottom-box p {
  color: #ffffff;
  font-family: "Futura PT - Demi";
}

.footer-bottom-box a {
  text-decoration: none;
  color: #ffffff;
}

.footer-bottom-box a:hover {
  color: #e72e0f;
}

.creators,
.creators a,
.creators a:hover {
  color: rgba(255, 255, 255, 0.2);
  font-family: "Futura PT";
  font-size: 8px;
}

.jocard:hover {
  color: red !important;
}
/*# sourceMappingURL=main.css.map */