#myCarousel .carousel-caption
{
  top: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 0 14px;
  bottom: 46%;
}

#myCarousel .carousel-inner
{
  top: 0 !important;
}

#myCarousel .item img
{
  width: 100%;
  height: 756px;
  border-radius: 0;
  object-fit: cover;
  object-position: bottom;
}

.carousel-caption__content
{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  height: 100%;
  padding-bottom: 0;
  align-items: flex-start;
}

.carousel-caption__content h2
{
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  text-align: left;
  text-shadow: none;
  transition: all 0.35s ease;
  letter-spacing: 1.213px;
  text-transform: uppercase;
}

.carousel-caption__content h4
{
  font-family: "Open Sans", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-align: left;
  letter-spacing: 1.213px;
  text-shadow: none;
}

body[dir="rtl"] .carousel-caption__content h2
{
  text-align: right;
}

body[dir="rtl"] .carousel-caption__content h4
{
  text-align: right;
}

img.img-regular-view
{
  display: block;
}

img.img-mobile-view
{
  display: none;
}

@media screen and (max-width: 400px)
{
  img.img-regular-view
  {
    display: none;
  }

  img.img-mobile-view
  {
    display: block;
  }

  .carousel-caption__content
  {
    align-items: center;
  }

  #myCarousel .item img
  {
    height: 500px;
  }
}