@charset "utf-8";
/* CSS Document */
 body {
  margin: 0;
  padding: 0;
  background-color: #2D2D2E;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  align-items: flex-start; /* Aligns the content to the top */
}

.grid-container {
  display: flex;
  justify-content: center; /* Center boxes horizontally */
  align-items: stretch; /* Stretch boxes to equal height */
  max-width: 1300px;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  flex-wrap: wrap;

}

/* Box Styles */
.box {
  background: #1A1A1A;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;   
}

/* Image Section */
.image-section img {
  width: 100%;
  display: block;
}

/* Header Section */
.header-section {
  background-color: #fff;
  padding: 30px 15px 5px 30px; /* Custom padding */
  font-size: 24px;
  color: #D147A3;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}

/* Sub Header Section */
.sub-header-section {
  background-color: #fff;
  font-size: 24px;
  color: #D147A3;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}




/* Body Section */
.body-section {
  padding: 10px 15px 30px 30px;
  font-size: 14px;
  line-height: 1.6; /* Adjust line spacing */
  color: #2D2D2E;
  background-color: #fff;
  padding-right: 30px;
  flex-grow: 1; /* Fill remaining space */
}

/* Sub Body Section */
.sub-body-section {
  font-size: 14px;
  line-height: 1.6; /* Adjust line spacing */
  color: #2D2D2E;
  background-color: #fff;

}

.full-width-image {
  width: calc(100% + 30px); /* 100% + double the padding of .box */
  margin-left: -50px; /* Negative margin equal to the padding of .box */
  margin-right: -50px; /* Negative margin equal to the padding of .box */
  display: block; /* Remove any extra space below the image */
}

.video {
  padding: 5px; /* Keep the padding if needed */
  width: 110%; /* Set the width to 100% of the container */
  margin: 0; /* Reset any margin to align it properly */
  display: block; /* Keeps the block-level display */
}


/* Width classes for boxes */
.width-25 { width: calc(25% - 15px); }
.width-50 { width: calc(50% - 15px); }
.width-75 { width: calc(75% - 15px); }
.width-33 { width: calc(33.333% - 15px);
}

/* Media Query for Mobile Screens */
@media (max-width: 768px) {
  .grid-container {
    flex-direction: column;
    align-items: center;
  }
  
  .box, .width-25, .width-50, .width-75 {
    width: 100%;
    margin-bottom: 15px;
  }

  body {
    align-items: flex-start; /* Align to the top */
  }
	

}
	
	.custom-link {
  color: #D147A3; /* Pink color */
  text-decoration: none; /* Removes the underline */
  transition: color 0.3s ease; /* Smooth color transition for hover effect */
}

.custom-link:hover {
  color: #00BFFF; /* Light blue color on hover */
}

.custom-link-head {
  color: #D147A3; /* Pink color */
  text-decoration: none; /* Removes the underline */
  transition: color 0.3s ease; /* Smooth color transition for hover effect */
  font-weight: bold; /* Makes the text bold */
}

.custom-link-head:hover {
  color: #00BFFF; /* Light blue color on hover */
}

/* Allow first box to be shorter */
.box.width-25.grey-backdrop {
  align-self: flex-start;
}

