/* ======== RESPONSIVE CSS ========= */

/* ===================================================
		MIN WIDTH 
=================================================== */
@media screen and (min-width: 1300px) {
}

@media screen and (min-width: 1600px) {
}

@media screen and (min-width: 1900px) {
}

@media screen and (min-width: 2000px) {
}

@media screen and (min-width: 2200px) {
}

@media screen and (min-width: 2700px) {
}

/* ------------------------------ 
	768px SMALL
------------------------------ */
@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }

  .show-mobile {
    display: none;
  }
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 750px;
    margin: 6.75rem auto;
  }
}

/* ===================================================
		MIN - MAX WIDTH 
=================================================== */
/* ------------------------------ 
	992px - 1199px LARGE
------------------------------ */
@media (min-width: 992px) and (max-width: 1230px) {
  #plaVideoCarousel .carousel-control-prev {
    left: -40px !important;
  }

  #plaVideoCarousel .carousel-control-next {
    right: -40px !important;
  }
}

/* ------------------------------ 
	768px - 991px MEDIUM
------------------------------ */
@media (min-width: 641px) and (max-width: 991px) {
}

/* ===================================================
		MAX WIDTH 
=================================================== */
@media screen and (max-width: 1399px) {
  #plaVideoCarousel {
    position: relative;
  }

  #plaVideoCarousel .carousel-inner {
    overflow: visible;
  }

  #plaVideoCarousel .carousel-control-prev,
  #plaVideoCarousel .carousel-control-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    opacity: 1;
    z-index: 20;
  }

  #plaVideoCarousel .carousel-control-prev {
    left: -58px;
  }

  #plaVideoCarousel .carousel-control-next {
    right: -58px;
  }
}

@media screen and (max-width: 1199px) {
  .pla-inner {
    max-width: 100%;
    padding-top: 0 !important;
  }
  .pla-video-wrap {
    min-height: 600px;
  }
  .pla-video {
    width: 100%;
  }
  .pla-content {
    margin-left: 0;
    min-height: 500px;
  }
  .pla-video-wrap::after {
    background: linear-gradient(
      180deg,
      rgba(9, 31, 80, 0) 0%,
      rgba(9, 31, 80, 0.15) 55%,
      rgba(9, 31, 80, 0.45) 72%,
      rgba(9, 31, 80, 0.75) 85%,
      #091f50 100%
    );
  }
}

@media screen and (max-width: 991px) {
}

@media screen and (max-width: 767px) {
  .letters-list {
    max-width: 95%;
  }
  #plaVideoCarousel .carousel-control-prev {
    left: 46px;
  }

  #plaVideoCarousel .carousel-control-next {
    right: 46px;
  }

  .pla-video-carousel-section {
    height: auto;
    padding: 56px 0;
  }

  .pla-video-kicker {
    font-size: 1.4rem;
    line-height: 1.05;
    margin-bottom: 0.35rem !important;
  }

  .pla-video-heading {
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 1.75rem !important;
  }

  #plaVideoCarousel .carousel-inner {
    overflow: hidden;
  }

  .pla-carousel-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
  }

  /* hide the preview cards on mobile */
  .pla-video-card-side {
    display: none !important;
  }

  /* show only the main card */
  .pla-video-card-center {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .pla-video-card-center img {
    width: 100%;
    height: auto;
    display: block;
  }

  .pla-video-card-center::after {
    width: 64px;
    height: 64px;
  }

  .pla-video-caption {
    font-size: 0.9rem;
    line-height: 1.35;
    margin-top: 1rem;
    padding: 0 16px;
  }

  #plaVideoCarousel .carousel-control-prev,
  #plaVideoCarousel .carousel-control-next {
    width: 0%;
  }

  .pla-carousel-arrow {
    font-size: 1.8rem;
  }

  #plaVideoCarousel .carousel-indicators {
    margin-top: 0.85rem !important;
  }

  .pla-video {
    object-position: 10% 50%;
  }
}

@media screen and (max-width: 640px) {
  .desktop {
    display: none !important;
  }

  .mobile {
    display: block !important;
  }

  .name_first {
    margin-bottom: 1em !important;
  }

  .name_last {
    margin-bottom: 0 !important;
  }
}

@media screen and (max-width: 600px) {
  .letter-card-logo {
    max-width: 230px;
  }
  /* Reset for Mobile Admin bar */
  body {
    position: initial;
  }
  .pla-title {
    font-size: 46px;
  }
}

@media screen and (max-width: 576px) {
  .footer {
    width: 100%;
  }
  #plaVideoCarousel .carousel-control-prev {
    left: 1000px;
  }

  #plaVideoCarousel .carousel-control-next {
    right: 1000px;
  }
  .mobile-nav-button {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    display: block;
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .mobile-nav-button span {
    display: block;
    width: 100%;
    height: 5px;
    background: var(--blue);
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s all cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: absolute;
    left: 0;
  }

  .mobile-nav-button span:nth-child(1) {
    top: 4px;
  }

  .mobile-nav-button span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .mobile-nav-button span:nth-child(3) {
    bottom: 4px;
  }

  .mobile-nav-button.active-nav span:nth-child(1) {
    top: 0;
    transform: rotate(45deg) translate(9px, 9px);
  }

  .mobile-nav-button.active-nav span:nth-child(2) {
    opacity: 0;
    transform: translate(-10px, -50%);
  }

  .mobile-nav-button.active-nav span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -8px);
    bottom: 0;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    right: -201px;
    padding-top: 50px;
    background: var(--red);
    height: 100vh;
    border-left: 1px solid var(--blue);
    z-index: 99;
    transition: 0.25s all;
    display: block;
  }

  .main-navigation ul {
    flex-wrap: wrap;
    width: 200px;
    margin-top: 40px;
    padding: 0;
    list-style: none;
  }

  .main-navigation li {
    float: none;
    border-bottom: 1px solid var(--blue);
    padding: 10px !important;
    width: 100%;
  }

  .main-navigation li,
  .main-navigation a {
    color: white !important;
    width: 200px;
    margin: 0;
  }

  .main-navigation a {
    padding: 10px 20px;
  }
  .main-navigation.active-main {
    right: 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  }

  .menu-item:last-child a {
    margin-right: 10px;
  }
}

@media screen and (max-width: 500px) {
  .pla-video {
    object-position: 30% 50%;
  }
}

@media screen and (max-width: 400px) {
}

@media screen and (max-width: 350px) {
}

@media screen and (max-width: 300px) {
}
