* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}

.page-wrapper {
  max-width: 1500px;
  min-width: 280px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.program {
  width: 100%;
  height: 90vh;
  background-color: #000;
  overflow: hidden;
}

h1 {
  font-size: 2.5em;
  font-weight: 700;
}

.program--title {
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  text-transform: uppercase;
}

.program--image {
  width: 100%;
  height: 80vh;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/Background_Room.webp");
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.program--image .swiper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.program--image .js-slide {
  text-align: center;
  font-size: 18px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.program--image .js-slide .js-card {
  width: 100%;
  height: 100%;
}

.program--image .js-slide .js-card-title {
  width: 100%;
  height: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 22px;
  font-weight: bolder;
  margin-bottom: 4%;
}

.program--image .js-slide .js-card-title b {
  width: 100%;
  height: 15%;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 6%;
}

.program--image .js-slide .js-card-image {
  width: 100%;
  height: 40%;
  -o-object-fit: cover;
  object-fit: cover;
}

.program--image .js-slide .js-card-description {
  width: 100%;
  height: 26%;
  text-align: left;
  display: flex;
  justify-content: center;
  padding: 10px;
  font-size: 16px;
}

.program--image .js-slide .js-card .js-card-button {
  width: 40%;
  height: 15%;
  padding: 2%;
  border: 0;
  background-color: #000;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
}

.program--image .js-slide .js-card .js-card-button:hover {
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
  transition: 0.3s;
  border-radius: 5px;
}

.program--image .swiper-wrapper {
  width: 100%;
  height: 70%;
  display: flex;
  align-items: center;
}

.program--image .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.program--image .swiper-pagination-custom {
  color: white;
}

@media screen and (min-width: 768px) and (max-width: 1359px) {
  .program--image .js-slide .js-card-title {
    font-size: 18px;
    align-items: center;
    margin-top: 2%;
    margin-bottom: 2%;
  }
  .program--image .js-slide .js-card-title b {
    font-size: 18px;
    align-items: center;
    margin-top: 2%;
    margin-bottom: 2%;
  }
  .page-wrapper {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .program--image .js-slide .js-card-title {
    font-size: 18px;
    margin-bottom: 0%;
    align-items: center;
  }
  .program--image .js-slide .js-card-title b {
    font-size: 18px;
    margin-bottom: 0%;
    align-items: center;
  }
  .page-wrapper {
    padding: 0 15px;
  }
  .program--image .js-slide .js-card-description {
    font-size: 14px;
  }
  .program--image .js-slide .js-card .js-card-button {
    height: 19%;
  }
  .swiper-slide .js-slide .swiper-slide-active {
    margin-left: 100px;
    margin-right: 100px;
  }
  h1 {
    font-size: 2em;
    font-weight: 700;
  }
} /*# sourceMappingURL=style_program.css.map */