@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

:root {
  --font-family: "Poppins", sans-serif;
  --font-header-size: 60px;
  --font-subheader-size: 2rem;
  --primary-bg-color: #79008b;
  --secondary-bg-color: #41a8bf;
  --text-tertiary-color: #000000;
  --text-secondary-color: #ffffff;
  --text-primary-color: #040c50;
}
.main-container {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

.first-section {
  display: flex;
  height: 73vh;
  background-image: url("<%=request.getContextPath()%>/assets/images/about.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: max(100vw, 1200px);
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.second-container {
  width: 100%;
  height: 100%;
  opacity: 0.6;
  position: absolute;
  top: 0;
  background-color: #000000;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding: 1rem;
}

.content h1 {
  font-size: 80px;
  color: var(--text-secondary-color);
}

.content p {
  font-size: var(--font-size);
  text-align: center;
  line-height: 26px;
  color: rgb(182, 182, 182);
  margin-bottom: 15px;
}

.second-section {
  text-align: center;
}

.second-section p{
    padding: 30px;
}

.second-section .heading {
  height: 12vh;
  background: var(--primary-bg-color);
}

.second-section .heading h2 {
  font-size: var(--font-subheader-size);
  text-align: center;
  padding-top: 1.5rem;
  color: var(--text-secondary-color);
  text-transform: uppercase;
  font-weight: bolder;
}

.left-container,
.right-container {
  height: 40vh;
}

.sub-content {
  width: 80vw;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.line {
  height: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: rgb(189, 228, 247);
}
.sub-content .se-co-te {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin: 10px;
  text-align: justify;
}

.se-co-te :first-child {
  color: var(--primary-bg-color);
}

.se-co-te button {
  width: 8vw;
}

.pr-image img {
  width: 30vw;
  height: 35vh;
  position: relative;
  z-index: -1;
  top: 10px;
}

.pr-image {
  position: relative;
}

.pr-section .heading {
  margin-bottom: 2rem;
}

@media screen and (max-width: 780px) {
  .content h1 {
    font-size: 50px;
  }
}
