/* Reset Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* General Styles */
body {
	font-family: Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

.case-study {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 1;
  }

/* Hero Section */
.hero {
	position: relative;
	height: 100vh;
	overflow: hidden;
    background-color: #85cff7; 
    z-index: -2;
}


  .hero-image {
    background-color: #85cff7;
    background-repeat: repeat;
    background-size: auto 100%;
    background-position: left;
    height: 100vh;
    position: fixed;
  }

/* .hero-image {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
    z-index: -1;
	object-fit: cover;
} */

.hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
}

.hero-content h1 {
	font-size: 4rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.hero-content h2 {
	font-size: 2rem;
	font-weight: normal;
	margin-bottom: 2rem;
}

/* Main Content Section */
.intro-content {
	padding: 2rem;
	background-color: #fff;
}

.main-content {
	padding: 2rem;
    /* z-index: -3; */
}

.intro-text {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.intro-text h2 {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 2rem;
}

.main-content .intro-text {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
    color: white;
}

.main-content .intro-text h2 {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 2rem;
    color: white;
}

.image-block {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
}

.example-image {
	max-width: 100%;
	height: auto;
}
/* Media Queries */
@media screen and (max-width: 768px) {
	.hero-content h1 {
		font-size: 3rem;
	}
	.hero-content h2 {
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}
	.intro-text h2 {
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}
}


a#scroll-btn {
    position: absolute;
    height: 10em;
    width: 6.25em;
    border: 0.5em solid #ffffff;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 6.25em;
    border-radius: 3em;
  }
  a#scroll-btn:before {
    position: absolute;
    content: "";
    margin: auto;
    left: 0;
    right: 0;
    top: 1.2em;
    height: 1.2em;
    width: 1.2em;
    background-color: #ffffff;
    border-radius: 50%;
    animation: move-down 2s infinite;
  }
  @keyframes move-down {
    80% {
      opacity: 0.5;
    }
    100% {
      transform: translateY(5.3em);
      opacity: 0;
    }
  }
  a#scroll-btn:after {
    position: absolute;
    content: "SCROLL DOWN";
    width: 12em;
    display: block;
    width: 12em;
    text-align: center;
    left: -4.2em;
    bottom: -2.5em;
    font-size: 1.6em;
    color: #ffffff;
    letter-spacing: 3px;
    font-weight: 600;
  }

  @media screen and (max-width: 500px) {
    a#scroll-btn {
      font-size: 12px;
    }
  }

  @media screen and (max-width: 1200px) {
    .intro-text {
        margin-top:30px !important;
    }
    .hero-image{
        filter: brightness(40%);
      }
  }