body {
	background-color: cornsilk;
}

/* Customize the scrollbar */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: cornsilk; /* Color of the track */
}

::-webkit-scrollbar-thumb {
    background-color: cornsilk; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Roundness of the scrollbar thumb */
    border: 3px solid #f1f1f1; /* Padding around the thumb */
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #1194da cornsilk;
}

.title-box {
	position: relative;
	display: inline-block;
	width: 100%;
	color: white;
	background-color: #1194da;
  box-shadow: 2px 2px 5px black;
	align-content: center;
	justify-content: center;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.main-title {
	position: relative;
	font-family: 'Palatino', 'Book Antiqua';

}

.logo {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  left: 20px;
  top: 10px;


}

.dropdown {
  display: inline-block;
  position: relative;
}

.nav-box {
  position: relative;
  justify-content: center;
  align-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.dropbtn {
  border: none;
  padding: 4px 20px;
  font-size: 16px; 
  font-family: 'calibri';
  background-color: cornsilk;
  color: black;

}

.drop-content {
  display: none;
  position: absolute;
  padding: 14px 16px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  box-sizing: border-box;
  min-width: 160px;
  background-color: white;
  z-index: 1;
  border-radius: 4px;
  -webkit-animation:appear 0.4s ease-in 0s 1 normal;
  -moz-animation:appear 0.4s ease-in 0s 1 normal;
  -ms-animation:appear 0.4s ease-in 0s 1 normal;
  animation:appear 0.4s ease-in 0s 1 normal;
}

@-webkit-keyframes appear {
  0%{ opacity: 0; -webkit-transform: scale3d(0.3, 0.3, 0.3); transform: scale3d(0.3, 0.3, 0.3); }
  60%{ opacity: 1; -webkit-transform: scale3d(1,1,1); transform: scale3d(1,1,1); }
}

@keyframes appear {
  0%{ opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
  60%{ opacity: 1; transform: scale3d(1,1,1); }
}

.drop-content a {
  display: block;
  float: left;
  text-decoration: none;
  color: black;
  padding: 12px 18px;
  align-content: center;
  justify-content: center;
  font-family: 'calibri';
  font-size: 14px;
}

.drop-content a:hover {
  color: #1194da;
}

.dropdown:hover .drop-content {
  display: block;
  
}

.dropdown:hover .dropbtn {
  background-color: cornsilk;
  color: #1194da;
}

.about-main-box {
  position: relative;
  display: inline-flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 30%;
  background-color: white;
  font-family: 'Calibri';
  font-size: 20px;
  font-style: bold;
  box-shadow: 5px 5px 10px black;
  margin-top: 10px;
  overflow: hidden;
}

.about-main-box h2 {
  position: relative;
  float: right;
  bottom: 20px;
  margin-left: 4px;
  font-size: 28px;

  
}

.about-main-box .main-img {
  position: relative;
  /*width: 230px;
  height: 180px;*/
  width: 40%;
  max-width: 30%;
  height: 50%;
  box-sizing: border-box;
  float: right;
  padding: 4px 4px;

  
}

.about-main-box .jackie-about {
  display: block;
  width: 40%;
  box-sizing: border-box;
  padding: 8px 2px;
  margin-top: 30px;
}


.princess-box {
  position: relative;
  display: flex;
  width: 99%;
  height: 35%;
  background: linear-gradient(to right, #1194da, #66ccff); 
  box-shadow: 8px 8px 10px black;
  margin-top: 20px;
  overflow: hidden;
  padding: 10px 2px;
  border: 6px solid #1294da;

}

.princ-but {
  position: relative;
  display: flex;
  width: 60%;
  font-size: 40px;
  box-sizing: border-box;
  color: white;
  text-decoration: none;
  align-content: center;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-left: auto;
}

.princ-donate-but {
  position: relative;
  display: block;
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-style: !important;
  background-color: blue;
  width: 80px;
  height: 30px;
  border: 1px solid white;
  box-shadow: 5px 5px 10px black;
  padding: 4px 4px;
  float: right;
  text-align: center;
  margin-right: 18px; 
  justify-content: center;
  align-content: center;
  margin-left: auto;
  
}

.honor-box {
  position: relative;
  display: inline-flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 30%;
  background-color: white;
  font-family: 'Calibri';
  font-size: 20px;
  font-style: bold;
  box-shadow: 5px 5px 10px black;
  margin-top: 25px;
  padding: 10px 0px;
  overflow: hidden;
  justify-content: center;
  text-align: center;

}

/*.honor-box:hover {
  -webkit-animation:bounce-in 0.4s ease 0s 1 normal;
  -moz-animation:bounce-in 0.4s ease 0s 1 normal;
  -ms-animation:bounce-in 0.4s ease 0s 1 normal;
  animation:bounce-in 0.4s ease 0s 1 normal;
}
*/
@-webkit-keyframes bounce-in {
  0%{ opacity: 0; -webkit-transform: scale(.3); transform: scale(.3); }
  50%{ opacity: 1; -webkit-transform: scale(1.0); transform: scale(1.0); }
  70%{ -webkit-transform: scale(0.9); transform: scale(0.9); }
  100%{ -webkit-transform: scale(1); transform: scale(1); }
}

@keyframes bounce-in {
  0%{ opacity: 0; transform: scale(.3); }
  50%{ opacity: 1; transform: scale(1.0); }
  70%{ transform: scale(0.9); }
  100%{ transform: scale(1); }
}

.bounce-in {
  -webkit-animation: bounce-in 0.8s ease 0s 1 normal;
  -moz-animation: bounce-in 0.8s ease 0s 1 normal;
  -ms-animation: bounce-in 0.8s ease 0s 1 normal;
  animation: bounce-in 0.8s ease 0s 1 normal;
}

.honor-box p {
  position: relative;
  display: block;
  margin-right: 8px;
  top: 20px;


}

.legacy-logo {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 20%;
  height: 20%;
  margin-top: 6px;

}

.vision-box {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
  height: 30%;
  background-color: white;
  font-family: 'Calibri';
  font-size: 26px;
  font-style: bold;
  box-shadow: 5px 5px 10px black;
  margin-top: 30px;
  overflow: hidden;

}

.vision-box p {
  position: relative;
  display: block;
  bottom: 20px; 
  width: 98%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;

}

.mission-title {
  position: relative;
  width: 98%;
  justify-content: center;
  align-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  
}
/*
.mid-box {
  display: flex;
  justify-content: space-around; 
  width: 100%;
  background-color: white;
  font-family: 'Calibri';
  font-size: 26px;
  font-weight: bold;
  box-shadow: 5px 5px 10px black;
  margin-top: 25px;
  border: 1px solid #eeeeee;
  box-sizing: border-box;
}

.mid-box > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 0; 
  margin: 5px; 
  box-shadow: 5px 5px 8px;
  box-sizing: border-box;
}

.left-mid-box:hover, .cen-mid-box:hover, .right-mid-box:hover {
  background-color: #1194da;
  color: white;
  border-color: white;
}

.cen-button {
  text-decoration: none;
  color: white;
  font-size: 20px;
  background-color: blue;
  width: 80px;
  height: 30px;
  border: 1px solid white;
  box-shadow: 5px 5px 10px black;
  margin: 10px 0;
  padding: 4px;
}

.cen-button:hover {
  width: 85px;
  height: 35px;
  font-size: 22px;
}
*/


.mid-box {
  position: relative;
  display: inline-flex;
  flex-wrap: nowrap;
  width: 100%;
  height: auto;
  background-color: white;
  font-family: 'Calibri';
  font-size: 26px;
  font-style: bold;
  box-shadow: 5px 5px 10px black;
  margin-top: 25px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;

}



.mid-box .left-mid-box {
  position: relative;
  display: inline-block;
  width: 33%;
  height: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 5px 5px 8px;
  padding: 2px 0px;
 
  

}

.left-mid-box:hover {
  position: relative;
  color: white;
  border-color: blue;
  background-color: #1194da;

}

.mid-box .cen-mid-box {
  position: relative;
  display: inline-block;
  width: 33%;
  height: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 0px;
  transition: transform 0.8s linear;

 } 

.cen-mid-box:hover {
  transform: scale(1.05);
  font-size: 27px;
  color: #1194da;

  
}



.mid-box .right-mid-box {
  position: relative;
  display: inline-block;
  width: 33%;
  height: auto;
  border: 1px solid black;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background-color: blue;
  color: white;
  box-shadow: black 5px 5px 8px;
  padding: 20px 2px;
  border: 1px solid black;
}


.right-mid-box:hover {
  background-color: #1194da;
  color: white;
  

}

.mid-img {
  position: relative;
  display: inline-block;
  width: 90%;
  height: 100%;
  box-sizing: border-box;
  justify-content: center;
  margin: 4px 0px;
  
}

.cen-button {
  text-decoration: none;
  color: white;
  font-size: 20px;
  background-color: blue;
  width: 80px;
  height: 30px;
  border: 1px solid white;
  box-shadow: 5px 5px 10px black;
  margin: 10px 0;
  padding: 4px;
}

.cen-button:hover {
  width: 85px;
  height: 35px;
  font-size: 22px;
}


.content-box {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #f9f9f9;
}

.content-box div {
    flex: 1;
    margin: 0 10px;
}

.content-box p {
    font-weight: bold;
    margin-bottom: 10px;
    color: #007bff;
}

.content-box ul {
    list-style-type: none;
    padding: 0;
}

.content-box li {
    margin-bottom: 5px;
}

.content-box a {
    text-decoration: none;
    color: black;
    font-family: 'calibri';
}

.content-box a:hover {
    text-decoration: underline;
    color: #007bff;
}

.site-footer {
    background-color: #f9f9f9;
    text-align: center;
    padding: 10px 0;
    position: relative;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.site-footer p {
    margin: 0;
    font-family: 'Calibri', sans-serif;
    font-size: 16px;
    color: #333;
}

/*Contact Form for contact.html */

.contact-form {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: white;
  font-family: 'Calibri';
  box-shadow: 5px 5px 10px black;
  overflow: hidden;
  margin-top: 10px;
}

.contact-form h2 {
  font-size: 28px;
}

.field {
  position: relative;
  display: block;
  margin-bottom: 10px;

}

.field label {
  display: block;
  font-size: 16px;
  color: black;
  justify-content: center;
}

.field input {
  display: block;
  min-width: 250px;
  line-height: 1.5;
  font-size: 16px;
  background-color: #eeeeee;
  border-radius: 8px;

}

input[type="submit"] {
  display: block;
  padding: 10px 30px;
  font-size: 14px;
  background-color: #4460AA;
  color: #fff;
  border: none;
  margin-bottom: 8px;
  border-radius: 8px;

}

.message-box {
  position: relative;
  display: block;
  height: 200px;
  width: 300px;
}


/* POLICY PAGE policy.html */

.policy-box {
  position: relative;
  display: block;
  flex-wrap: nowrap;
  max-width: 90%;
  width: 80%;
  min-width: 50%;
  height: auto;
  background-color: white;
  font-family: 'Calibri';
  font-size: 20px;
  font-style: bold;
  box-shadow: 5px 5px 10px black;
  margin-top: 25px;
  padding: 10px 8px;
  overflow: hidden;
  justify-content: center;
  text-align: center;
  align-content:  center;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid black;
  border-radius: 12px;
}

.policy-box a {
  text-decoration: none;
  color: blue;
}

.polic-box a {
  font-size: 24px;
  color: red;
}

/* CANCER PAGE cancer101.html */

.cancer-box {
  position: relative;
  display: block;
  flex-wrap: nowrap;
  max-width: 90%;
  width: 80%;
  min-width: 50%;
  height: auto;
  background-color: white;
  font-family: 'Calibri';
  font-size: 20px;
  font-style: bold;
  box-shadow: 5px 5px 10px black;
  margin-top: 25px;
  padding: 10px 8px;
  overflow: hidden;
  justify-content: center;
  text-align: center;
  align-content:  center;
  margin-left: auto;
  margin-right: auto;
  
}


/* Cancer 101 cancer101.html */

.cancer-button-box {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  width: 70%;
  height: auto;
  background-color: white;
  font-family: 'Calibri';
  font-size: 20px;
  font-style: bold;
  box-shadow: 5px 5px 10px black;
  margin-top: 25px;
  padding: 10px 8px;
  overflow: hidden;
  justify-content: center;
  text-align: center;
  align-content:  center;
  margin-left: auto;
  margin-right: auto;
}

.cancer-buttons {
  position: relative;
  width: 40%;
  height: 40%;
  text-decoration: none;
  color: black;

}

.image-size {
  position: relative;
  width:60%;
  height: 60%;
  transition: transform 0.3s linear;
}

.image-size:hover {
  transform: scale(1.1);

}

.cancer-buttons:hover {
  color: #1194da;
}

/* Mission Page mission.html */

.mission-box {
  position: relative;
  display: block;
  flex-wrap: wrap;
  max-width: 90%;
  width: 80%;
  min-width: 50%;
  height: auto;
  background-color: white;
  font-family: 'Calibri';
  font-size: 24px;
  font-style: bold;
  box-shadow: 5px 5px 10px black;
  margin-top: 20px;
  align-content: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  animation: fadeIn 2s ease-in-out;
  padding: 0px 8px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1 }
}

.pcl-box {
  position: relative;
  display: block
  flex-wrap: wrap;
  max-width: 90%;
  width: 80%;
  min-width: 50%;
  height: auto;
  background-color: white;
  font-family: 'Calibri';
  font-size: 22px;
  font-style: bold;
  box-shadow: 5px 5px 10px black;
  margin-top: 30px;
  overflow: hidden;
  padding: 8px 8px;
  align-content: center;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

i {
  font-size: 20px;
}


/* pcl advanced medical breakdown pcl_adv_ */

.adv-pclbox {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  max-width: 90%;
  width: 80%;
  min-width: 50%;
  height: auto;
  background-color: white;
  font-family: 'Calibri';
  font-size: 22px;
  font-style: bold;
  box-shadow: 5px 5px 10px black;
  margin-top: 30px;
  overflow: hidden;
  padding: 8px 12px;
  align-content: center;
  justify-content: center;
  
  margin-left: auto;
  margin-right: auto;

}

.adv-title {
  position: relative;
  text-align: center;
  align-content: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;


}

.ster-title {
  position: relative;
  margin: 30px 30px;
}

dl {
  position: relative;
  display: block;
  width: 80%;
}

/* Style the trigger link */
.popup-trigger {
  position: relative;
  cursor: pointer;
  color: blue;
}

.popup-trigger:hover {
  color: #1194da;
}

/* Style the popup box */
.popup-box {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%; /* Adjust position relative to the trigger */
  left: 70%; /* Center horizontally */
  transform: translateX(-50%);
  background-color: #eeeeee;
  font-family: 'Calibri', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: blue;
  text-align: left; /* Align text for proper paragraph structure */
  padding: 15px 20px; /* Keep padding for spacing */
  border-radius: 8px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
  max-width: 400px; /* Limit max width */
  min-width: 250px; /* Ensure popup doesn't shrink too much */
  z-index: 100;
  transition: opacity 1s ease, visibility 1s ease; /* Smooth transitions */
  border: 1px solid #ccc;
}

/* Arrow below the popup box */
.popup-box::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px; /* Adjust the position of the arrow */
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: white transparent transparent transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Show the popup on hover */
.popup-trigger:hover .popup-box {
  visibility: visible;
  opacity: 1;

}

/* Media query for smaller screens */
@media (max-width: 600px) {
  .popup-box {
    width: auto; /* Let the width adjust automatically */
    max-width: 300px; /* Cap it for smaller screens */
    padding: 10px 15px; /* Adjust padding */
  }
}

@media (max-width: 400px) {
  .popup-box {
    font-size: 16px; /* Reduce font size */
    padding: 8px 12px; /* Smaller padding */
  }
}

.tech-link {
  text-decoration: none;
  color: blue;
}

.pcl-menu-box {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  max-width: 90%;
  width: 80%;
  min-width: 50%;
  height: auto;
  background-color: white;
  font-family: 'Calibri';
  font-size: 22px;
  font-style: bold;
  box-shadow: 5px 5px 10px black;
  margin-top: 20px;
  overflow: hidden;
  padding: 8px 8px;
  align-content: center;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;  
}
.pcl-menu-box a {
  text-decoration: none;
  color: blue;
}

.nav-content {
  position: relative;
  height: 30%;
  width: 30%;
  transition: transform 0.3s linear;
}

.nav-content:hover {
  color: #1194da;
  transform: scale(1.10);
  font-size: 27px;
   
}

.pcl-nav-box {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 50%;
  height: auto;
  background-color: white;
  font-family: 'Calibri';
  font-size: 27px;
  font-style: bold;
  box-shadow: 5px 5px 10px black;
  margin-top: 20px;
  overflow: hidden;
  padding: 8px 8px;
  align-content: center;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;

}

.pcl-buttons {
  position: relative;
  width: 30px;
  height: 20px;
  padding: 6px 40px;
  margin: 4px 8px;
  text-align: center;
  justify-content: center;
  align-content: center;
  text-decoration: none;

}

.ref-link {
  text-decoration: none;
  font-size: 20px;
}