/* ~~~~~~~~~~~~ hero section ~~~~~~~~~~~~ */
.hero-section {
  background-image: linear-gradient(
      45deg,
      rgba(24, 100, 171, 0.35),
      rgba(3, 167, 255, 0.35)
    ),
    url(../image/background-top.webp);
}
.hero-container,
.rated-container {
  padding: 9.6rem 0;
  margin: 0 auto;
  color: #fff;
  max-width: 70rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.hero-description {
  font-size: 2rem;
  line-height: 1.5;
  text-align: left;
}
/* ~~~~~~~~~~~~ featured in section ~~~~~~~~~~~~ */
/* .section-featured {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.4rem;
  padding: 0 10rem;
} */
.section-featured {
  padding: 0 6.4rem;
}
.heading-featured-in {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 600;
  text-align: center;
  margin-top: 9.6rem;
  /* margin-bottom: 2.4rem; */
  color: #888;
}
/* .logos {
  display: flex;
  justify-content: space-around;
} */
.logos img {
  height: 3.2rem;
  filter: brightness(0);
  opacity: 50%;
}
/* ~~~~~~~~~~~~ home section ~~~~~~~~~~~~ */

.aboutpic-container {
  border-radius: 50%;
  box-shadow: 1px 1px 8px 4px rgba(120, 114, 114, 0.15);
  max-height: 52rem;
}
.Blog-section .grid,
.plans .grid {
  column-gap: 1rem;
}
.pr {
  margin: 2rem;
  padding: 2rem;
  background-color: #e6f8fb;
  border-radius: 9px;
  overflow: hidden;
  transition: all 0.3s;
}
.pr:hover {
  transform: translateY(-1.5rem);
  box-shadow: 1px 1px 8px 4px rgba(120, 114, 114, 0.15);
}
/* ~~~~~~~~~~~~ about section ~~~~~~~~~~~~ */
.paradise .flex-col-cen {
  gap: 9.6rem;
}
.on-a-plane {
  border-radius: 50%;
  width: 34rem;
}
.bt {
  grid-template-columns: 1fr 1.5fr 1fr;
  display: grid;
  /* row-gap: 9.6rem; */
  column-gap: 4rem;
}
/* ~~~~~~~~~~~~ book video section ~~~~~~~~~~~~ */
.book {
  position: relative;
}
.book::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 40%);
}
.book video {
  width: 100%;
}
.texting-video {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 4.8rem;
  background-color: #ccf2f680;
  color: white;
  text-align: center;
}

/* ~~~~~~~~~~~~ jump section ~~~~~~~~~~~~ */
.tandem {
  background-image: linear-gradient(
      45deg,
      rgba(83, 83, 83, 0.35),
      rgba(10, 10, 10, 0.7)
    ),
    url("../image/tandemjump.webp");
}
.solo {
  background-image: linear-gradient(
      45deg,
      rgba(83, 83, 83, 0.35),
      rgba(10, 10, 10, 0.7)
    ),
    url("../image/solojump.jpeg.webp");
}
.tandem,
.solo {
  transition: all 0.3s ease-out;
}

.tandem:hover,
.solo:hover {
  transform: scale(1.1);
}
.jump-title {
  color: #fff;
  text-transform: uppercase;
}
.jump-text {
  color: #e6f8fb;
}
.jump-pricing {
  font-size: 6.2rem;
  font-weight: 600;
  color: #fff;
}
.jump-pricing span {
  font-size: 3rem;
  font-weight: 600;
  margin-right: 0.8rem;
}
/* ~~~~~~~~~~~~ event section ~~~~~~~~~~~~ */
.Event-section .heading-secondary {
  margin-bottom: 4rem;
}
.different-date {
  font-size: 1.8rem;
  /* margin-top: 2rem; */
}
.events-detail {
  box-shadow: 1px 1px 8px 4px rgba(120, 114, 114, 0.15);
  border-radius: 9px;
  background-color: #fff;
}
.date {
  color: #888;
}
.day {
  font-size: 6.2rem;
  margin-top: -2.5rem;
  /* overflow: auto; */
  /* z-index: 3; */
}
/* ~~~~~~~~~~~~ review section ~~~~~~~~~~~~ */
.review-section {
  display: flex;
  overflow: hidden;
}
.review {
  width: 50%;
  background-image: linear-gradient(45deg, #00a9bf, #5f27cd);
  padding: 5rem 7rem;
}
.review blockquote {
  color: #fff;
}
.personal-review {
  display: flex;
  gap: 2.4rem;
  color: #fff;
}
.member-profile-pic {
  height: 12rem;
  width: 12rem;
  border-radius: 50%;
}

.name {
  color: #fff;
}

.review-picture {
  width: 50%;
  background-image: url(../image/review.webp);
}
/* ~~~~~~~~~~~~ coaches section ~~~~~~~~~~~~ */
.coach {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.coach img {
  width: 25rem;
  height: 25rem;
}
.coach-job {
  color: #767676;
}
/* ~~~~~~~~~~~~ mailing section ~~~~~~~~~~~~ */
.mailing-section {
  background-image: linear-gradient(45deg, #00a9bf, #5f27cd);
}
.intro-join {
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}
label {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}
input {
  padding: 1.2rem;
  font-size: 1.6rem;
  border-radius: 9px;
  background-color: transparent;
  border-color: #fff;
  min-width: 35rem;
}
button {
  display: inline-block;
  font-size: 2rem;
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 600;
  /* put transition on the original state */
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
  /* .btn only */
  border: none;
  cursor: pointer;
  font-family: inherit;
}
input::placeholder {
  color: #fff;
}
/* ~~~~~~~~~~~~ blog section ~~~~~~~~~~~~ */

.blog-detail {
  box-shadow: 1px 1px 8px 4px rgba(120, 114, 114, 0.15);
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  gap: 3.2rem;
  align-items: center;
  overflow: hidden;
}
/* .blog-img img {
  width: 100%;
} */
.titles-part {
  font-size: 3rem;
}
.time-blog-details {
  display: Flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}
.calendar-blog {
  display: flex;
  gap: 0.8rem;
}
.time-blog-details p {
  font-size: 1.6rem;
}
.time-blog-details .flex-standard {
  gap: 1rem;
}
.blog-text {
  font-size: 1.6rem;
  margin-bottom: 3.2rem;
  /* padding: 0 1.2rem; */
}
.blog-icon {
  color: #00bcd4;
  font-size: 1.6rem;
}

.blog {
  transition: all 0.3s ease-in;
  border-radius: 9px;
  background-color: #fff;
  overflow: hidden;
  margin: 2rem;
}
.blog:hover {
  box-shadow: 1px 1px 8px 4px rgba(120, 114, 114, 0.15);
  transform: translateY(-1.5rem);
}
.blog-img img {
  width: 100%;
}

/* ~~~~~~~~~~~~ rated section ~~~~~~~~~~~~ */
.top-rated-section {
  background-image: linear-gradient(
      45deg,
      rgba(24, 100, 171, 0.35),
      rgba(3, 167, 255, 0.35)
    ),
    url(../image/bottom.webp);
}

/* ~~~~~~~~~~~~ footer ~~~~~~~~~~~~ */
.social .flex-bet-center {
  justify-content: start;
  gap: 0.8rem;
}
