/*!*****************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \*****************************************************************************************************************************************/
body {
  font-family: "MontserratRegular";
  font-size: 16px;
  overflow-x: hidden;
  color: #ffffff;
  background-color: #000000;
}

.pm__title {
  font-family: "MontserratBold";
  font-size: 32px;
  line-height: 54px;
}
@media only screen and (max-width: 991px) {
  .pm__title {
    font-size: 24px;
    line-height: 33px;
  }
}

.pm__subtitle {
  font-size: 20px;
}

.pm__videoBg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: -2;
}
.pm__videoBg .video-mobile {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  pointer-events: none;
}
@media only screen and (max-width: 640px) {
  .pm__videoBg .video-mobile {
    display: block;
    width: 100vw;
    height: 75vw;
    min-height: 100vh;
    min-width: 180vh;
  }
}
.pm__videoBg .video-desktop {
  display: block;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  pointer-events: none;
}
@media only screen and (max-width: 640px) {
  .pm__videoBg .video-desktop {
    display: none;
  }
}
.pm__videoBg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.pm__videoBg__image {
  display: flex;
}
.pm__videoBg__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm__button {
  display: flex;
  width: fit-content;
  border-radius: 5px;
  padding: 10px 30px;
  background-color: #EAB448;
  cursor: pointer;
  color: #000000;
  font-family: "MontserratRegular";
}

.pm__link {
  text-decoration: underline;
}
.pm__link:hover {
  color: #EAB448;
}

.noScroll {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.yellow {
  color: #EAB448;
}

h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover, a:active {
  text-decoration: none;
  color: initial;
}

.page-wrapper *:focus {
  outline: none;
  box-shadow: none;
}

.messages-list {
  display: none;
}

@font-face {
  font-family: "MontserratBold";
  src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MontserratExtraBold";
  src: url("../fonts/Montserrat/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MontserratRegular";
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MontserratSemiBold";
  src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MontserratBoldItalic";
  src: url("../fonts/Montserrat/Montserrat-BoldItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MontserratLightItalic";
  src: url("../fonts/Montserrat/Montserrat-LightItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.pm__modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  background-color: rgba(234, 180, 72, 0.47);
  z-index: 20;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.5s ease-in;
}
.pm__modal.active {
  transition: all 0.5s ease-in;
  transform: translateY(0);
  opacity: 1;
}
.pm__modal__content {
  position: relative;
  max-width: 470px;
  min-height: 400px;
  width: 90%;
  border-radius: 30px;
  padding: 65px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  background-color: #000000;
}
.pm__modal__close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  top: 40px;
  right: 40px;
  cursor: pointer;
}
.pm__modal__close::before, .pm__modal__close::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 32px;
  border-radius: 3px;
  background-color: #EAB448;
}
.pm__modal__close::before {
  transform: rotate(45deg);
}
.pm__modal__close::after {
  transform: rotate(-45deg);
}
.pm__modal__icon {
  display: flex;
  animation: rorateNo 4s linear infinite;
}
@keyframes rorateNo {
  0% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(-15deg);
  }
}
.pm__modal__text {
  margin-top: 25px;
  text-align: center;
  line-height: 1.3em;
}
.pm__modal__text .yellow {
  font-family: "MontserratBold";
}

.pm__header {
  position: relative;
  width: 100%;
  height: 115px;
  transition: all 0.3s ease-in;
  z-index: 10;
}
@media only screen and (max-width: 991px) {
  .pm__header {
    height: 105px;
  }
}
.pm__header__container {
  width: 80%;
  height: 115px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1245px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .pm__header__container {
    height: 105px;
  }
}
.pm__header #block-moviemood-theme-main-menu {
  height: 0;
}
.pm__header__logo {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .pm__header__logo {
    width: 160px;
  }
}
.pm__header__logo img {
  transition: all 0.3s ease-in;
}
.pm__header__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pm__header__nav-user {
  display: flex;
  border-radius: 50%;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .pm__header__nav-user {
    width: 30px;
  }
}
.pm__header__nav-user img {
  transition: all 0.3s ease-in;
}
.pm__header__nav-user:hover {
  background-color: #EAB448;
}
.pm__header__nav-menu {
  position: relative;
  width: 45px;
  height: 45px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in;
}
@media only screen and (max-width: 991px) {
  .pm__header__nav-menu {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }
}
.pm__header__nav-menu::before, .pm__header__nav-menu::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease-in;
}
@media only screen and (max-width: 991px) {
  .pm__header__nav-menu::before, .pm__header__nav-menu::after {
    width: 4px;
    height: 4px;
  }
}
.pm__header__nav-menu::before {
  transform: translateX(-10px);
}
@media only screen and (max-width: 991px) {
  .pm__header__nav-menu::before {
    transform: translateX(-6px);
  }
}
.pm__header__nav-menu::after {
  transform: translateX(10px);
}
@media only screen and (max-width: 991px) {
  .pm__header__nav-menu::after {
    transform: translateX(6px);
  }
}
.pm__header__nav-menu .menu__dot {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: all 0.4s ease-in;
}
@media only screen and (max-width: 991px) {
  .pm__header__nav-menu .menu__dot {
    width: 4px;
    height: 4px;
  }
}
.pm__header__nav-menu:hover {
  background-color: #EAB448;
}
.pm__header__nav-menu:hover::before {
  animation: movePoints 1s linear infinite;
}
.pm__header__nav-menu:hover .menu__dot {
  animation: movePoints 1.5s linear infinite;
}
.pm__header__nav-menu:hover::after {
  animation: movePoints 2s linear infinite;
}
@keyframes movePoints {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.pm__header__menu {
  position: relative;
  width: 100%;
  height: calc(100vh - 115px);
  background-color: #ffffff;
  transform: translateY(-120%);
  transition: all 0.5s ease-out;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .pm__header__menu {
    height: calc(100vh - 105px);
  }
}
.pm__header__menu-lines {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
@media only screen and (max-width: 1367px) {
  .pm__header__menu-lines {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .pm__header__menu-lines {
    width: 100%;
    height: 75%;
  }
  .pm__header__menu-lines img {
    width: 100%;
    height: 100%;
  }
}
.pm__header__menu-promo {
  position: absolute;
  right: 50px;
  bottom: 45px;
  pointer-events: all;
}
@media only screen and (max-width: 1367px) {
  .pm__header__menu-promo {
    width: 22%;
  }
}
@media only screen and (max-width: 991px) {
  .pm__header__menu-promo {
    right: 55px;
    bottom: 55px;
    width: auto;
  }
}
.pm__header__menu-promo picture {
  display: flex;
}
.pm__header__sticky {
  position: absolute;
  width: 100%;
  height: calc(100vh - 115px);
  transform: translateY(-120%);
  transition: all 0.5s ease-out;
  z-index: 0;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .pm__header__sticky {
    height: calc(100vh - 105px);
  }
}
.pm__header__list {
  max-width: 1245px;
  margin: 0 auto;
  padding-top: 90px;
}
@media only screen and (max-width: 1300px) {
  .pm__header__list {
    width: 80%;
  }
}
@media only screen and (max-width: 991px) {
  .pm__header__list {
    padding-top: 50px;
  }
}
.pm__header__list .item {
  display: flex;
  font-family: "MontserratBold";
  font-size: 76px;
  line-height: 115px;
  color: #EAB448;
  width: fit-content;
  margin-bottom: 20px;
  text-decoration: none;
  transform: rotate(-2deg);
}
@media only screen and (max-width: 1450px) {
  .pm__header__list .item {
    font-size: 60px;
    line-height: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .pm__header__list .item {
    font-size: 24px;
    line-height: 50px;
    margin-bottom: 10px;
  }
}
.pm__header__list .item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 6px;
  background-color: #EAB448;
  border-radius: 3px;
}
@media only screen and (max-width: 991px) {
  .pm__header__list .item::after {
    height: 4px;
    bottom: 2px;
  }
}
.pm__header__list .item:nth-child(2n) {
  color: #000000;
}
.pm__header__list .item:nth-child(2n)::after {
  background-color: #000000;
}
.pm__header__active {
  background-color: #ffffff;
  transition: all 0.3s ease-in;
}
.pm__header__active .pm__header__logo img {
  filter: invert(1);
  transition: all 0.3s ease-in;
}
.pm__header__active .pm__header__nav-user img {
  filter: invert(1);
  transition: all 0.3s ease-in;
}
.pm__header__active .pm__header__nav-menu {
  border-color: #000000;
}
.pm__header__active .pm__header__nav-menu::before, .pm__header__active .pm__header__nav-menu::after {
  width: 4px;
  height: 25px;
  border-radius: 2px;
  background-color: #000000;
  transition: all 0.3s ease-in;
}
@media only screen and (max-width: 991px) {
  .pm__header__active .pm__header__nav-menu::before, .pm__header__active .pm__header__nav-menu::after {
    width: 3px;
    height: 15px;
  }
}
.pm__header__active .pm__header__nav-menu::before {
  transform: rotate(45deg);
}
.pm__header__active .pm__header__nav-menu::after {
  transform: rotate(-45deg);
}
.pm__header__active .pm__header__nav-menu .menu__dot {
  opacity: 0;
  transition: all 0.3s ease-in;
}
.pm__header__active .pm__header__nav-menu:hover {
  background-color: #EAB448;
  animation: moveX 0.3s linear forwards;
}
.pm__header__active .pm__header__nav-menu:hover::before {
  animation: none;
}
.pm__header__active .pm__header__nav-menu:hover .menu__dot {
  animation: none;
}
.pm__header__active .pm__header__nav-menu:hover::after {
  animation: none;
}
@keyframes moveX {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pm__header__active .pm__header__menu {
  transform: translate(0, 0);
  transition: all 0.5s ease-out;
}
.pm__header__active .pm__header__sticky {
  transform: translateY(0);
  transition: all 0.5s ease-out;
}

.pm__footer {
  width: 90%;
  height: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1245px;
  margin: 0 auto;
  padding-top: 25px;
  box-sizing: border-box;
}
@media only screen and (max-width: 991px) {
  .pm__footer {
    justify-content: center;
    padding-top: 0;
    align-items: center;
  }
}
.pm__footer__list {
  display: flex;
  gap: 55px;
  flex-wrap: wrap;
}
.pm__footer__list .item:hover {
  color: #ffffff;
}
@media only screen and (max-width: 991px) {
  .pm__footer__list {
    gap: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
  }
  .pm__footer__list .item {
    font-size: 13px;
  }
  .pm__footer__list .item:hover {
    color: #ffffff;
  }
}

/* ***************** */
/* By Lorena Cuadros */
/* ***************** */
