.header-swiper {
  position: relative;
  width: 100%;
  height: 100vh;
}
.slider-img::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: -o-linear-gradient(240deg, #000000de 10%, #55330936 100%);
  background-image: linear-gradient(-150deg, #000000de 10%, #55330936 100%);
  z-index: 1;
}
.slider-img {
  position: relative;
}
.slider-img img {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top left;
  object-position: top left;
}
.slider-description {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  z-index: 1;
  width: 100%;
}
.header-swiper .swiper-slide-active img {
  -webkit-transition: -webkit-transform 22s;
  transition: -webkit-transform 22s;
  -o-transition: transform 22s;
  transition: transform 22s;
  transition: transform 22s, -webkit-transform 22s;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.about-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 5px;
  margin-bottom: 30px;
}
.about-option span {
  width: 50%;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  color: var(--text-color);
}
.about-option i {
  color: var(--secondary-color);
}
.service-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  height: 100%;
}
.price-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}
.course-section {
  background-image: url("../image/course-back.jpg");
  padding-top: var(--global-margin);
  padding-bottom: var(--global-margin);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
