.cover {
	opacity: .3;
}

.seperator1 {
	width: 25%;
	border-top: solid 3px yellow;
	float: left;
}

.seperator2 {
	width: 90%;
	border-top: solid 2px black;
}

.seperator3 {
	color: white;
	width: 30%;
	border-top: solid 3px black;
}


/*STAKES*/
.element {
  background-color: #333; /* Default background color */
  color: #fff; /* Default text color */
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transitions */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.element:hover {
  transform: translateY(-5px); /* Raises the element */
  background-color: #555; /* Change background color on hover */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Slightly more pronounced shadow */
}
/*END STAKES*/

/*VALUE PROP*/

.hover-box {
  position: relative;
  overflow: hidden; /* Ensures hidden text stays hidden initially */
	width: 100%;
	height: 15rem;
  text-align: center;
  border: 2px solid #fcfb60; /* Optional: adds a border to frame the element */
  border-radius: 8px; /* Optional: rounded corners */
  background-color: #fcfb60; /* Yellow background */
  color: #fff;
  cursor: pointer;
	display: flex; /* Flexbox for centering */
  align-items: center; /* Vertically center content */
  justify-content: center; /* Horizontally center content */
}

.hover-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; /* Black overlay */
  z-index: 1;
  transition: transform 0.3s ease; /* Smooth slide-up effect */
  transform: translateY(0); /* Black covers the entire element initially */
}

.hover-box:hover::before {
  transform: translateY(-100%); /* Black slides up to reveal yellow background */
}

.front-text {
  font-size: 24px;
  font-weight: bold;
  line-height: 100px; /* Centers text vertically */
  position: relative; /* Ensure it's above the black overlay */
  z-index: 2; /* Keep text visible above the black overlay */
  transition: transform 0.3s ease; /* Smooth slide-up effect */
}

.hidden-text {
  position: absolute;
  top: 50%; /* Start at the vertical center */
  left: 50%;
  transform: translate(-50%, -50%) translateY(100%); /* Center it and hide below initially */
  font-size: 1.25em; /* Scalable font size */
  font-style: italic;
  color: #000; /* Black text for contrast with yellow */
  z-index: 2; /* Visible above background */
  transition: transform 0.3s ease; /* Smooth slide-up effect */
  text-align: center; /* Center text horizontally */
}

.hover-box:hover .front-text {
  transform: translateY(-150%); /* Slides the front text up */
}

.hover-box:hover .hidden-text {
  transform: translate(-50%, -50%) translateY(0); /* Reveal the hidden text in the center */
}

.spoiler-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5%; /* Height of the spoiler bar */
  background-color: #fcfb60; /* Bright yellow color */
  z-index: 3; /* Ensure it appears above the box borders */
}

/*END VALUE PROP*/

/*PLAN*/

/* General Styling */
.plan-section {
  padding: 50px 20px;
  /*background-color: #f9f9f9;*/
  text-align: center;
}

.plan-heading {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
  text-transform: uppercase;
  font-weight: bold;
}

/* Step Container */
.plan-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Step Styling */
.step {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 calc(25% - 20px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Step Number */
.step-number {
  width: 50px;
  height: 50px;
  background-color: #fcfb60;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 auto 15px;
}

/* Step Title */
.step-title {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Step Description */
.step-description {
  font-size: 1em;
  color: #555;
  line-height: 1.5;
}

/*END PLAN*/

/*BEGIN EXPLANATORY DESIGN*/
/* General Styling */
.explanatory-section {
  padding-top: 50px 20px;
  text-align: center;
  line-height: 1.6;
	color: black;
}

.content-container {
  max-width: 800px;
	padding-left: 1rem;
	padding-right: 1rem;
  margin: 0 auto;
  text-align: left;
	border: 2px solid #e0e0e0;
  border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading Styling */
.explanatory-heading {
  font-size: 2.2em;
  color: black;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

/* Paragraph Styling */
.explanatory-paragraph {
  font-size: 1.1em;
  color: black;
  margin-bottom: 15px;
  text-align: justify;
}

/* How We Do It Section */
.how-we-do-it {
  font-size: 1.5em;
  color: black;
	background-color: #fcfb60;
  margin: 30px 0 15px;
  text-align: center;
  font-weight: bold;
}

.how-we-do-it h3 {
	color: black;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.steps-list li {
  font-size: 1.1em;
  color: black;
  margin: 10px 0;
  padding: 10px;
  background-color: #fff;
  border-left: 4px solid #fcfb60;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps-list li:hover {
	transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Call-to-Actions */
.cta-container {
  margin-top: 30px;
  text-align: center;
}

.cta-text {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: black;
}

.cta-button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}
/*END EXPLANATORY DESIGN*/

/* PRICING */
/* Service Item Styling */
/* PRICING SECTION */
.price-section {
  padding: 40px 20px;
  background-color: white;
  line-height: 1.6;
}

.price-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #eaeaea;
  padding: 20px;
  border-radius: 8px;
  background-color: white;
}

.price-heading {
  font-size: 1.8em;
  color: black;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 3px solid #fcfb60;
  display: inline-block;
  padding-bottom: 5px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

.price-item {
  flex: 1;
  background-color: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.title-with-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.service-title {
  font-size: 1.3em;
  color: #000;
  font-weight: bold;
  margin: 0;
  border-left: 4px solid #fcfb60;
  padding-left: 10px;
  flex: 1;
}

.price-item img {
  width: 4rem;
  height: auto;
  margin-left: 10px;
  flex-shrink: 0;
}

.price-subitem {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 1em;
  color: #333;
}

.price {
  font-size: 1.2em;
  font-weight: bold;
  color: #000;
}

@media (max-width: 768px) {
  .price-row {
    flex-direction: column;
  }

  .title-with-image {
    flex-direction: row;
  }

  .price-item {
    margin-bottom: 20px;
  }
}


/*END PRICING*/

/*poptext*/

.poptext {
	border-left: 8px solid #fcfb60;
	border-right: 8px solid #fcfb60;
	border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.conButton a {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conButton a:hover {
	background: #ffff7c;
	transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}