/****************
Main Home page
******************/
.plazmaFrame
{
  height: 603px;
  overflow: hidden;
  justify-content: flex-start;
  display: flex;
}

#myCarousel .item img
{
  width: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: left;
  transition: all 0.5s ease;
}

.mobile-view
{
  display: none;
}

@media screen and (max-width: 1440px)
{
  #myCarousel .item img
  {
    object-position: center;
  }
}

@media screen and (max-width: 1023px)
{
  .plazmaFrame
  {
    height: auto !important;
  }
}

@media screen and (max-width: 767px)
{
  .popOpen
  {
    height: unset !important;
    position: unset !important;
    width: unset !important;
  }

  /* .desktop-view
  {
    display: none !important;
  }

  .mobile-view
  {
    display: block !important;
    object-position: top !important;
  } */
}

@media screen and (max-width: 600px)
{
  #myCarousel .item img
  {
    object-position: top;
    height: 160px;
  }
}

@media screen and (max-width: 375px)
{
  .carousel-inner
  {
    top: 0;
  }
}