html,
body {
  position: relative;
  height: 100%;
}

body {
  background: #f8f7f4;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  flex-wrap: wrap;
  display: flex;

}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: 400px;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #254f86;
  border-radius: 10px;
  padding: 5px;
}
.swiper-slide img:first-child {
  width: auto;
  height: 250px;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.swiper .swiper-pagination {
  color: #254f86; /* Replace with the color you want */
}

/* Adjust width for screens 600px and above */
@media (min-width: 600px) {
  .swiper-slide {
    width: 300px;
  }
}

/* Adjust width for screens 800px and above */
@media (min-width: 800px) {
  .swiper-slide {
    width: 400px;
  }
}

/* Video gallery css */

.flex-video-container {
  width: 100%;
  display: flex;
  height: auto;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #254f86;
  align-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

.flex-video-item {
  width: 100%;
  display: flex;
  margin: 10px;
  flex-wrap: wrap;
}

.flex-video-div  {
  margin: 10px;
}



