/* Home - Jumbotron */
.home .navbar .sub-nav {
  transform: translateY(0px) !important;
}

.home .font-sub-nav-collapsed {
  font-size: 15px;
}

.home-jumbotron {
  height: 100vh;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.home-jumbotron .container {
  height: 100%;
}

.home-jumbotron .content-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 3;
}

.home-jumbotron .content {
  position: absolute;
  bottom: 65px;
  left: 0;
  color: var(--white);
  z-index: 1;
  opacity: 0;
  transform: translateY(200px);
}

.home-jumbotron .content.anim-enabled {
  transition: 0.6s opacity, 0.6s transform;
}

.home-jumbotron .content.active {
  opacity: 1;
  transform: translateY(0);
}

.home-jumbotron .content .title {
  width: 100%;
  max-width: 960px;
  margin-bottom: 8px;
}


.home-jumbotron .content .description {
  width: 100%;
  max-width: 960px;
}

.home-jumbotron .carousel-arrows {
  position: absolute;
  bottom: 85px;
  right: 91px;
  display: flex;
  gap: 60px;
  z-index: 1;
}

.home-jumbotron .carousel-arrows > * {
  border: 1px solid var(--blue-2);
  border-radius: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.3s transform;
}

.home-jumbotron .carousel-arrows .prev-arrow {
  transform: rotate(180deg);
}

.home-jumbotron .carousel-arrows .prev-arrow:hover {
  transform: rotate(180deg) scale(1.1429);
}

.home-jumbotron .carousel-arrows .next-arrow:hover {
  transform: scale(1.1429);
}

.home-jumbotron .carousel-arrows svg {
  height: 24px;
  fill: var(--white);
  transition: 0.3s fill;
}

.home-jumbotron .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.8);
  background-color: var(--darker-blue-2);
/*   z-index: 0;            /* ensure it sits under content */ */
/*   pointer-events: none;  /* video/image won't capture clicks */ */
}

.home-jumbotron .carousel-item.active {
  z-index: 1;
}

@media (max-width: 1024px) {
  .home-jumbotron .content {
    bottom: 59px;
  }

  .home-jumbotron .content .title,
  .home-jumbotron .content .description {
    max-width: 446px;
  }

  .home-jumbotron .carousel-arrows {
    bottom: 50vh;
    right: 0;
    left: 0;
    width: 100%;
    gap: unset;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .home-jumbotron .content {
    bottom: 100px;
  }

  .home-jumbotron .content .title,
  .home-jumbotron .content .description {
    max-width: 328px;
  }

  .home-jumbotron .content .title {
    margin-bottom: 5px;
  }

  .home-jumbotron .carousel-arrows .prev-arrow,
  .home-jumbotron .carousel-arrows .next-arrow {
    border: none;
  }
}

/* Home - Intro */

.home-intro {
  padding: 106px 0;
  background-color: var(--white);
}

.home-intro .title {
  width: 100%;
  max-width: 620px;
  margin-bottom: 46px;
  color: var(--black);
}

.home-intro .description {
  width: calc(100% - 200px);
  max-width: 760px;
  margin-left: 200px;
  color: var(--black);
}

@media (max-width: 1024px) {
  .home-intro {
    padding: 92px 0;
  }

  .home-intro .title {
    max-width: 446px;
    margin-bottom: 23px;
  }

  .home-intro .description {
    max-width: 515px;
    margin-left: 80px;
  }
}

@media (max-width: 768px) {
  .home-intro {
    padding: 78px 0;
  }

  .home-intro .title {
    max-width: 328px;
    margin-bottom: 14px;
  }

  .home-intro .description {
    width: 100%;
    margin-left: 0;
  }
}

/* Home - Locations */

.home-locations {
  padding-top: 124px;
  padding-bottom: 113px;
  overflow: hidden;
  background-color: #f2f2f2;
}

.home-locations .top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.home-locations .top .left {
  width: 100%;
  max-width: 900px;
}

.home-locations .top .left .subtitle {
  margin-bottom: 15px;
  color: var(--blue);
  max-width: 800px;
}

.home-locations .top .left .location-description {
    width: 100%;
    max-width: 800px;
    color: var(--black);
}

.home-location .top .left .location-description {
    font-family: proxima-nova,sans-serif;
    font-size: 20px;
    line-height: 35px;
    font-weight: var(--regular);
    letter-spacing: .01em;
    margin-bottom: 20px !important;
}

body {
    font-family: proxima-nova,sans-serif;
    font-size: 20px;
}


.home-locations .top .left .title {
  color: var(--black);
}

.home-locations .top .right {
  display: flex;
  gap: 60px;
}

.home-locations.two-col .top .right,
.home-locations.three-col .top .right {
  display: none;
}

.home-locations .carousel-prev-arrow,
.home-locations .carousel-next-arrow {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid var(--blue-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.3s transform;
}

.home-locations .carousel-prev-arrow {
  transform: rotate(180deg);
}

.home-locations .carousel-prev-arrow:hover {
  transform: rotate(180deg) scale(1.1429);
}

.home-locations .carousel-next-arrow:hover {
  transform: scale(1.1429);
}

.home-locations .carousel-prev-arrow svg,
.home-locations .carousel-next-arrow svg {
  fill: var(--blue);
  height: 24px;
}

.home-locations.two-col .carousel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.home-locations.three-col .carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 29px;
}

.home-locations:not(.two-col):not(.three-col) .carousel {
  display: flex;
  gap: 20px;
}

.home-locations:not(.two-col):not(.three-col) .item {
  width: 300px;
  flex-grow: 0;
  flex-shrink: 0;
}

.home-locations .carousel .item {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.home-locations .carousel .item .image {
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 300px;
  border-radius: 7px;
  margin-bottom: 21px;
  opacity: 1;
  transition: 0.6s opacity;
  position: relative;
  z-index: 1;
}

.home-locations .carousel .item:hover .bg + .image {
  opacity: 0;
}

.home-locations .carousel .item .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  border-radius: 7px;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.home-locations .carousel .item .title {
  margin-bottom: 12px;
  color: var(--black);
}

.home-locations .carousel .item .description {
  color: var(--black);
  font-size: 14px;
}

.home-locations .carousel .item .learn-more-button {
  width: 160px;
  height: 32px;
  border-radius: 9px;
  color: var(--white);
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
  margin-top: 20px;
  display: none;
}

@media (max-width: 1024px) {
  .home-locations {
    padding-top: 78px;
    padding-bottom: 72px;
  }

  .home-locations .top {
    margin-bottom: 63px;
  }

  .home-locations .top .right {
    display: none;
  }

  .home-locations .carousel {
    display: block !important;
    transform: none !important;
  }

  .home-locations .carousel .item {
    width: 100% !important;
  }

  .home-locations .carousel .item:not(:last-child) {
    padding-bottom: 47px;
    border-bottom: 1px solid var(--blue);
    margin-bottom: 55px;
  }

  .home-locations .carousel .item .image,
  .home-locations .carousel .item .bg {
    height: 288px;
  }

  .home-locations .carousel .item .learn-more-button {
    display: flex;
  }
}

@media (max-width: 768px) {
  .home-locations {
    padding-bottom: 78px;
  }

  .home-locations .top {
    margin-bottom: 36px;
  }

  .home-locations .top .left {
    max-width: 300px;
  }

  .home-locations .carousel .item:not(:last-child) {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }

  .home-locations .carousel .item .image,
  .home-locations .carousel .item .bg {
    height: 123px;
  }

  .home-locations .carousel .item .learn-more-button {
    margin-top: 40px;
  }
}

/* Home - Cinecares */

.home-cinecares {
  background-color: var(--darker-blue);
  padding-top: 231px;
  padding-bottom: 152px;
  position: relative;
  overflow: hidden;
}

.home-cinecares .top-right-logo {
  height: 493px;
  position: absolute;
  top: 71px;
  right: -191px;
}

.home-cinecares .top-right-logo svg {
  height: 100%;
}

.home-cinecares .top {
  margin-bottom: 156px;
}

.home-cinecares .top .title {
  color: var(--white);
  width: 100%;
  max-width: 740px;
}

.mt-30{margin-top:30px}
.home-cinecares .middle {
/*  margin-bottom: 86px;*/
  margin-bottom: 0;
}
.home-cinecares .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-cinecares .middle .image-carousel-container,
.home-cinecares .middle .image-carousel-container .carousel-item {
  width: 804px;
  height: 568px;
  flex-shrink: 0;
  flex-grow: 0;
}

.home-cinecares .middle .image-carousel-container {
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  will-change: transform;
  transform: translate3d(0px, 0px, 0px);
}

.home-cinecares .middle .image-carousel-container .carousel-item {
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.home-cinecares .middle .image-carousel-container .carousel-item.active {
  z-index: 1;
}

.home-cinecares .middle .image-carousel-arrows {
  display: flex;
  gap: 60px;
  margin-top: 30px;
  margin-left: 664px;
  will-change: transform;
  transform: translate3d(0px, 0px, 0px);
}

.home-cinecares .middle .image-carousel-arrows .prev-arrow,
.home-cinecares .middle .image-carousel-arrows .next-arrow {
  border: 1px solid var(--blue-2);
  border-radius: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.3s transform;
}

.home-cinecares .middle .image-carousel-arrows .prev-arrow {
  transform: rotate(180deg);
}

.home-cinecares .middle .image-carousel-arrows .prev-arrow:hover {
  transform: rotate(180deg) scale(1.1429);
}

.home-cinecares .middle .image-carousel-arrows .next-arrow:hover {
  transform: scale(1.1429);
}


.home-cinecares .middle .image-carousel-arrows svg {
  height: 24px;
  fill: var(--white);
}

.home-cinecares .middle .description {
  width: 100%;
  max-width: 460px;
  color: var(--white);
  margin-right: 91px;
  margin-left: 40px;
}

.home-cinecares .bottom .content {
  color: var(--white);
  margin-bottom: 27px;
  width: 100%;
  max-width: 560px;
}

.home-cinecares .bottom .cta-button-wrapper {
  display: flex;
}

.home-cinecares .bottom .cta-button {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.home-cinecares .bottom .cta-title {
  color: var(--white);
}

.home-cinecares .bottom .cta-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid var(--blue-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s transform;
}

.home-cinecares .bottom .cta-button:hover .cta-arrow {
  transform: scale(1.1429);
}

.home-cinecares .bottom .cta-arrow svg {
  height: 24px;
  fill: var(--white);
}

/* 10-Apr-2023 */

.credits_slider_row:not(:last-child){
  margin-bottom: 40px;
}

.credits_slider .slick-prev,
.credits_slider .slick-next{
    border: 1px solid var(--blue-2);
    border-radius: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: 0.3s transform;
    z-index: 1;
    background-color: var(--blue-2);
}
.credits_slider .slick-prev:before,
.credits_slider .slick-next:before{
  display: none;
}
.credits_slider .slick-prev{left: 25px;}
.credits_slider .slick-next{right: 25px;}

.credits_slider .slick-arrow svg {
  height: 24px;
  fill: var(--white);
}
.credits_slider .slick-prev svg{
  transform: rotate(180deg);
}

.credits_slider .item {
  width: 260px;
  height: 318px;
  flex-grow: 0;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  margin:0 20px;
}

.credits_slider .item .cover {
  width: 100%;
  height: 100%;
  background-image: url("https://via.placeholder.com/260x318");
  background-position: center center;
  background-size: cover;
}

.credits_slider .item .info {
  position: absolute;
  width: calc(100% - 84px);
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--light-gray-2);
  cursor: default;
  padding: 0 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(260px);
  transition: 0.6s transform;
}

.credits_slider .item:hover .info {
  transform: translateX(0);
}

.credits_slider .item .info .title {
  color: var(--black);
  margin-bottom: 16px;
}

.credits_slider .item .info .description {
  color: var(--black);
	word-break: break-word;
}

@media (max-width: 1440px) {
  .home-cinecares .top-right-logo {
    height: 427px;
    top: 109px;
    right: -164px;
  }

  .home-cinecares .middle .image-carousel-container,
  .home-cinecares .middle .image-carousel-container .carousel-item {
    width: 651px;
    height: 460px;
  }

  .home-cinecares .middle .image-carousel-arrows {
    margin-left: 511px;
  }
}

@media (max-width: 1330px) {
  .home-cinecares .middle .description {
    margin-right: 0;
  }
}

@media (max-width: 1300px) {
  .home-cinecares .top .title {
    max-width: 530px;
  }

  .home-cinecares .top-right-logo {
    height: 330px;
    top: 180px;
  }
}

@media (max-width: 1200px) {
  .home-cinecares .middle .image-carousel-container,
  .home-cinecares .middle .image-carousel-container .carousel-item {
    width: 500px;
    height: 353px;
  }

  .home-cinecares .middle .image-carousel-arrows {
    margin-left: 356px;
  }
  .home-cinecares .top-right-logo {
    height: 320px;
    width: 45%;
  }
}

@media (max-width: 1024px) {
  .home-cinecares {
    padding-top: 256px;
    padding-bottom: 131px;
  }

  .home-cinecares .top-right-logo {
    top: 0;
    right: -91px;
    height: 220px;
    width: 35%;
  }

  .home-cinecares .top {
    margin-bottom: 25px;
  }

  .home-cinecares .top .title,
  .home-cinecares .middle .description {
    max-width: 552px;
  }

  .home-cinecares .middle {
    margin-bottom: 43px;
  }

  .home-cinecares .middle .content {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .home-cinecares .middle .image-carousel-container {
    height: 488px;
    width: auto;
    display: flex;
    gap: 20px;
    border-radius: 0;
    overflow-x: scroll;
    margin-left: -80px;
    margin-right: -80px;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 16px;
    width: 100%;
  }

  .home-cinecares .middle .image-carousel-container .carousel-item {
    height: 100%;
    width: auto;
    border-radius: 7px;
    position: unset;
  }

  .home-cinecares .middle .image-carousel-arrows {
    display: none;
  }

  .home-cinecares .middle .description {
    margin-left: 0;
    margin-bottom: 45px;
    font-weight: var(--medium);
  }

  .home-cinecares .bottom .content {
    max-width: 571px;
    margin-bottom: 45px;
    font-weight: var(--medium);
  }

/*  .home-cinecares .bottom .cta-button {
    width: 284px;
    height: 45px;
    border-radius: 8px;
    justify-content: center;
    background-color: var(--white);
  }

  .home-cinecares .bottom .cta-title {
    color: var(--blue);
  }

  .home-cinecares .bottom .cta-arrow {
    display: none;
  }*/
}

@media (max-width: 768px) {
  .home-cinecares {
    padding-top: 214px;
    padding-bottom: 103px;
  }

  .home-cinecares .top-right-logo {
    height: 187.5px;
    right: -72px;
}

  .home-cinecares .top .title,
  .home-cinecares .middle .description,
  .home-cinecares .bottom .content {
    max-width: 100%;
  }

  .home-cinecares .top,
  .home-cinecares .middle,
  .home-cinecares .middle .description {
    margin-bottom: 30px;
  }

  .home-cinecares .middle .image-carousel-container {
    height: 333px;
    gap: 14px;
  }

  .home-cinecares .bottom .content {
    margin-bottom: 58px;
  }

  .home-cinecares .bottom .cta-button {
    width: 240px;
    height: 32px;
  }
  .credits_slider .slick-prev{left: 15px;}
.credits_slider .slick-next{right: 15px;}
.credits_slider .item{margin: 0 15px;}
}
@media (max-width: 575px) {
  .home-cinecares .top-right-logo {
      /* width: auto;*/
      display: none;
  }
}
