/* Navigation Bar */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.logo img { 
  width: 130px;
  height: auto;
  margin-top: 1.5em;
}

.line {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
border-top: 1px solid ;
  margin-top: 10px;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 1px;
  color: #C2DAE2;
}

.menu-item {
  margin: 30px;
  color: #C2DAE2;
}

.menu-item i {
  margin-right: 3px;
}

.text1 {
  text-decoration: none;
  font-size: 17px;
  color: #07163d;  
  line-height: 35px;
}

.text1:hover {
  color: #88a9b4;
}

/* Sign In Page  */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

.custom-auth .reset-styles {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.custom-auth *, .custom-auth *::before, .custom-auth *::after {
  box-sizing: inherit;
}

.custom-auth :root {
  --linear-grad: linear-gradient(to right, #C2DAE2,  #C2DAE2);
  --grad-clr1: #C2DAE2;
  --grad-clr2: #C2DAE2;
}

/* :root {
  --linear-grad: linear-gradient(to right, #141E30, #243B55);
  --grad-clr1: #141E30;
  --grad-clr2: #243B55;
} */

/* :root {
  --linear-grad: linear-gradient(to right, #1E3023, #3B5534);
  --grad-clr1: #1E3023;
  --grad-clr2: #3B5534;
} */

/* :root {
  --linear-grad: linear-gradient(to right, #30231E, #55343B);
  --grad-clr1: #30231E;
  --grad-clr2: #55343B;
} */

/* :root {
  --linear-grad: linear-gradient(to right, #301E23, #55343B);
  --grad-clr1: #301E23;
  --grad-clr2: #55343B;
} */

.custom-auth .body1 {
  height: 70vh;
  display: grid;
  place-content: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.custom-auth .logcontainer {
  position: relative;
  width: 850px;
  height: 500px;
  background-color: #FFF;
  box-shadow: 25px 30px 55px #5557;
  border-radius: 13px;
  overflow: hidden;
}

.custom-auth .form-container {
  position: absolute; 
  width: 60%;
  height: 100%;
  padding: 0px 40px; 
  transition: all 0.6s ease-in-out;
}

.custom-auth .sign-up-container {
  opacity: 0;
  z-index: 1;
}

.custom-auth .sign-in-container {
  z-index: 2;
}

.custom-auth form {
  height: 100%;
  display: flex; 
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px 50px;  
}

.custom-auth .social-container {
  margin: 20px 0px; 
}

.custom-auth .social-container a {

  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0px 5px; 
  height: 40px;
  width: 40px;
  background-color: #f3f3f3;
}

.custom-auth .infield {
  position: relative;
  margin: 8px 0px; 
  width: 100%;
}

.custom-auth input {
  width: 100%;
  padding: 12px 15px; 
  background-color: #f3f3f3;
  border: none;
  outline: none;
}

.custom-auth label {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #C2DAE2;
  transition: width 0.3s ease;
}

.custom-auth input:focus ~ label {
  width: 100%;
}

.custom-auth a {
  color: #333;
  font-size: 14px;
  text-decoration: none; 
  margin: 15px 0px;
}

.custom-auth a.forgot {
  padding-bottom: 3px;
  border-bottom: 2px solid #EEE; 
}

.custom-auth button {
  border-radius: 20px;
  border: 1px solid #C2DAE2;
  background: #C2DAE2;
  color: #FFF;
  font-size: 12px;
  font-weight: bold; 
  padding: 12px 45px; 
  letter-spacing: 1px;
  text-transform: uppercase; 
}

.custom-auth .form-container button {
  margin-top: 17px;
  transition: 80ms ease-in;
}

.custom-auth .form-container button:hover {
  background: #FFF;
  color: #C2DAE2;
}

.custom-auth .overlay-container {
  position: absolute;
  top: 0;
  left: 60%;
  width: 40%;
  height: 100%;
  overflow: hidden; 
  transition: transform 0.6s ease-in-out;
  z-index: 9;
} 

.custom-auth #overlayBtn {
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 380px;
  transform: translateX(-50%);
  width: 143.67px;
  height: 40px; 
  border: 1px solid #FFF;
  background: transparent; 
  border-radius: 20px;
} 

.custom-auth .overlay {
  position: relative;
  background: #C2DAE2;
  color: #FFF;
  left: -150%;
  height: 100%;
  width: 250%;
  transition: transform 0.6s ease-in-out;
} 

.custom-auth .overlay-panel {
  position: absolute; 
  display: flex;
  align-items: center;
  justify-content: center; 
  flex-direction: column;
  padding: 0px 40px;
  text-align: center;
  height: 100%;
  width: 340px;  
  transition: 0.6s ease-in-out;
} 

.custom-auth .overlay-left {
  right: 60%;
  transform: translateX(-12%);
}

.custom-auth .overlay-right {
  right: 0;
  transform: translateX(0%);
} 

.custom-auth .overlay-panel h1 {
  color: #FFF; 
}

.custom-auth p {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 25px 0px 35px;
}

.custom-auth .overlay-panel button {
  border: none;
  background-color: transparent;
} 

.custom-auth .right-panel-active .overlay-container {
  transform: translateX(-150%);
}

.custom-auth .right-panel-active .overlay {
  transform: translateX(50%);
}

.custom-auth .right-panel-active .overlay-left {
  transform: translateX(25%);
}

.custom-auth .right-panel-active .overlay-right {
  transform: translateX(35%);
}

.custom-auth .right-panel-active .sign-in-container {
  transform: translateX(20%);
  opacity: 0;
}

.custom-auth .right-panel-active .sign-up-container {
  transform: translateX(66.7%);
  opacity: 1;
  z-index: 5;
  animation: show 0.6s;
}

@keyframes show {
  0%, 50% {
    opacity: 0;
    z-index: 1;
  }
  50.1%, 100% {
    opacity: 1;
    z-index: 5;
  }
}

.custom-auth .btnScaled {
  animation: scaleBtn 0.6s;
}

@keyframes scaleBtn {
  0% {
    width: 143.67px;
  }
  50% {
    width: 250px;
  }
  100% {
    width: 143.67px;
  }
}



/* StartScreen */
html1 {
  text-align: center; 
  position: absolute;
  top: 10em;
  width: 100%;
  height: 100%;
}

.textslider { 
 font-family: mr-eaves-modern, sans-serif;
font-weight: 400px;
font-style: normal;
  font-size: 23px;
}

.item-1, 
.item-2, 
.item-3 {
  position: absolute;
  top: 15.2em;
  width: 50%;
  animation-duration: 20s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.item-1{
  animation-name: anim-1;
}

.item-2{
  animation-name: anim-2;
}

.item-3{
  animation-name: anim-3;
}

@keyframes anim-1 {
  0%, 8.3% { left: -100%; opacity: 0; }
  8.3%,25% { left: 25%; opacity: 1; }
  33.33%, 100% { left: 110%; opacity: 0; }
}

@keyframes anim-2 {
  0%, 33.33% { left: -100%; opacity: 0; }
  41.63%, 58.29% { left: 25%; opacity: 1; }
  66.66%, 100% { left: 110%; opacity: 0; }
}

@keyframes anim-3 {
  0%, 66.66% { left: -100%; opacity: 0; }
  74.96%, 91.62% { left: 25%; opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

.career-button {
  border-radius: 20px;
  border: 1px solid #C2DAE2;
  background: #fff;
  color: #C2DAE2;
  font-size: 12px;
  font-weight: bold; 
  padding: 12px 45px; 
  letter-spacing: 1px;
  text-transform: uppercase; 
}

.form-container button {
  margin-top:40px;
  transition: 80ms ease-in;
}

.form-container button:hover {
  background: #C2DAE2;
  color: #fff;
}


/* CareerCatalyst */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

.careercatalyst {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0px;
}

h3 {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    margin-bottom: 25px;
    font-family: 'Georgia', serif;
    text-align: center;
}

#quiz-container {
  background-color: #e1ebef;
  border: 1px solid #ddd;
  border-radius: 13px;
  padding: 90px;
  max-width: 750px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.question {
  font-size: 20px;
  font-weight: bold;
  color: #374151;
  font-family: 'Georgia', serif;
  text-align: center;
}

button.option {
    display: inline-block;
    margin: 10px 8px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: #b2d1dc;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button.option:hover {
    background-color: #578d9e;
    transform: scale(1.05);
}

.result {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 13px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333;
}

.hidden {
    display: none;
}

.career-btn {
    display: inline-block;
    margin: 10px 10px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 400;
    color: white;
    background-color: #b2d1dc;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.career-btn:hover {
    background-color: #8dbdcc;
    transform: scale(1.05);
}

/* Enterprising Image Grid */

.grid-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0 120px;
}

.column {
  flex: 20%;
  max-width: 25%;
  padding: 5px 8px;
}

.column img {
  margin-top: 15px;
  vertical-align: middle;
  width: 100%;
}

@media (max-width: 1200px) {
  .column {
    flex: 40%;
    flex-wrap: wrap;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .column {
    flex: 50%;
    max-width: 100%;
  }
}

.container .title{
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.content {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.content .content-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  margin-top: 15px;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay{
  opacity: 1;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details h3{
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.content-details p{
  color: #fff;
  font-size: 0.8em;
}

.fadeIn-top{
  top: 20%;
}

.topnav {
  background-color: #f2c640;
  width: 82.5%;
  height: 100px;
  border-radius: 20px;
  margin: auto;
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
   font-family: 'Times New Roman', serif;
  font-size: 50px;
}

/* Social Image Grid */
.grid-container-new {
  display: flex;
  flex-wrap: wrap;
  padding: 0 120px;
}

.column-new {
  flex: 20%;
  max-width: 25%;
  padding: 5px 8px;
}

.column-new img {
  margin-top: 15px;
  vertical-align: middle;
  width: 100%;
}

@media (max-width: 1200px) {
  .column-new {
    flex: 40%;
    flex-wrap: wrap;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .column-new {
    flex: 50%;
    max-width: 100%;
  }
}

.container-new .title-new {
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.content-new {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.content-new .content-overlay-new {
  background: rgba(0,0,0,0.7);
  position: absolute;
  margin-top: 15px;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content-new:hover .content-overlay-new {
  opacity: 1;
}

.content-details-new {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content-new:hover .content-details-new {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details-new h3 {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.content-details-new p {
  color: #fff;
  font-size: 0.8em;
}

.fadeIn-top-new {
  top: 20%;
}

.topnav-new {
  background-color: #9e498b;
  width: 82.5%;
  height: 100px;
  border-radius: 20px;
  margin: auto;
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Times New Roman', serif;
  font-size: 50px;
}

/* Conventional Image Grid */

.grid-container-1 {
  display: flex;
  flex-wrap: wrap;
  padding: 0 120px;
}

.column-1 {
  flex: 20%;
  max-width: 25%;
  padding: 5px 8px;
}

.column-1 img {
  margin-top: 15px;
  vertical-align: middle;
  width: 100%;

}

@media (max-width: 1200px) {
  .column-1 {
    flex: 40%;
    flex-wrap: wrap;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .column-1 {
    flex: 50%;
    max-width: 100%;
  }
}

.container-1 .title{
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.content-1 {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.content-1 .content-overlay-1 {
  background: rgba(0,0,0,0.7);
  position: absolute;
  margin-top: 15px;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content-1:hover .content-overlay-1{
  opacity: 1;
}

.content-details-1 {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content-1:hover .content-details-1{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details-1 h3{
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.content-details-1 p{
  color: #fff;
  font-size: 0.8em;
}

.fadeIn-top-1{
  top: 20%;
}

.topnav-1 {
  background-color: #f1695c;
  width: 82.5%;
  height: 100px;
  border-radius: 20px;
  margin: auto;
  margin-top: 25px;
display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Times New Roman', serif;
  font-size: 50px;
}


/* Investigative Image Grid */

.grid-container-2 {
  display: flex;
  flex-wrap: wrap;
  padding: 0 120px;
}

.column-2 {
  flex: 20%;
  max-width: 25%;
  padding: 5px 8px;
}

.column-2 img {
  margin-top: 15px;
  vertical-align: middle;
  width: 100%;

}

@media (max-width: 1200px) {
  .column-2 {
    flex: 40%;
    flex-wrap: wrap;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .column-2 {
    flex: 50%;
    max-width: 100%;
  }
}

.container-2 .title{
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.content-2 {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.content-2 .content-overlay-2 {
  background: rgba(0,0,0,0.7);
  position: absolute;
  margin-top: 15px;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content-2:hover .content-overlay-2{
  opacity: 1;
}

.content-details-2 {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content-2:hover .content-details-2{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details-2 h3{
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.content-details-2 p{
  color: #fff;
  font-size: 0.8em;
}

.fadeIn-top-2{
  top: 20%;
}

.topnav-2 {
  background-color: #1680a2;
  width: 82.5%;
  height: 100px;
  border-radius: 20px;
  margin: auto;
  margin-top: 25px;

  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Times New Roman', serif;
  font-size: 50px;
}

/* Realistic Image Grid */


.grid-container-3 {
  display: flex;
  flex-wrap: wrap;
  padding: 0 120px;
}

.column-3 {
  flex: 20%;
  max-width: 25%;
  padding: 5px 8px;
}

.column-3 img {
  margin-top: 15px;
  vertical-align: middle;
  width: 100%;

}

@media (max-width: 1200px) {
  .column-3 {
    flex: 40%;
    flex-wrap: wrap;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .column {
    flex: 50%;
    max-width: 100%;
  }
}

.container-3 .title{
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.content-3 {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.content-3 .content-overlay-3 {
  background: rgba(0,0,0,0.7);
  position: absolute;
  margin-top: 15px;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content-3:hover .content-overlay-3{
  opacity: 1;
}

.content-details-3 {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content-3:hover .content-details-3{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details-3 h3{
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.content-details-3 p{
  color: #fff;
  font-size: 0.8em;
}

.fadeIn-top-3{
  top: 20%;
}

.topnav-3 {
  background-color: #48c0c8;
  width: 82.5%;
  height: 100px;
  border-radius: 20px;
  margin: auto;
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Times New Roman', serif;
  font-size: 50px;
}


/* Artistic Image Grid */

.grid-container-4 {
  display: flex;
  flex-wrap: wrap;
  padding: 0 120px;
}

.column-4 {
  flex: 20%;
  max-width: 25%;
  padding: 5px 8px;
}

.column-4 img {
  margin-top: 15px;
  vertical-align: middle;
  width: 100%;

}

@media (max-width: 1200px) {
  .column-4 {
    flex: 40%;
    flex-wrap: wrap;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .column-4 {
    flex: 50%;
    max-width: 100%;
  }
}

.container-4 .title{
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.content-4 {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.content-4 .content-overlay-4 {
  background: rgba(0,0,0,0.7);
  position: absolute;
  margin-top: 15px;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content-4:hover .content-overlay-4{
  opacity: 1;
}

.content-details-4 {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content-4:hover .content-details-4{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details-4 h3{
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.content-details-4 p{
  color: #fff;
  font-size: 0.8em;
}

.fadeIn-top{
  top: 20%;
}

.topnav-4 {
  background-color: #f5934f;
  width: 82.5%;
  height: 100px;
  border-radius: 20px;
  margin: auto;
  margin-top: 25px;

  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Times New Roman', serif;
  font-size: 50px;
}

/* Homepage */

.homepagecontainer {
  max-width: 79.4%;
  margin: 50px auto;
}

.holland-header h2 {
  font-size: 26px;
  font-weight: bold;
  color: #374151;
  font-family: 'Georgia', serif;
  text-align: center;
}

.holland-description {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.6;
  font-family: 'Georgia', serif;
  text-align: center;
}

.find-your-type-btn {
  background-color: #b2d1dc;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 20px;
  border-radius: 20px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: 'Times New Roman', serif;
  text-align: center;
}

.find-your-type-btn:hover {
   background-color: #88a9b4;
}


.career-option {
  width: 79.4%;
  height: 100px;
  border-radius: 20px;
  margin: auto;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Times New Roman', serif;
  font-size: 40px;
  cursor: pointer;
  text-align: center;
  border: none;
}

a.career-option {
  width: 79.4%;
  height: 100px;
  line-height: 100px; /* Vertically centers the text */
  font-size: 40px;
  margin: 10px auto; /* Adjusted for spacing */
}

.conventional { background-color: #f1695c; }
.artistic { background-color: #f7944d; }
.enterprising { background-color: #f0c040; }
.realistic { background-color: #48c0c8; }
.investigative { background-color: #1680a2; }
.social { background-color: #9e498b; }

.career-option:hover {
  opacity: 0.5;
}

/* Under Construction Page */

@media screen and (min-width: 400px) { 
  @media screen and (max-width: 1000px) { 
}

.wrapper1 {
  width: 100%;
  max-width: 1400px;
  height: 640px;
  margin: 30px auto; 
  box-sizing: border-box;
  text-align: center;
}

.boxedconstruction {
  border: 1.5px solid #309ec2}
}

.under {
   padding-bottom: 30px;
}

a.bank {
  color: #309ec2;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s, border-bottom-color 0.3s;
}

a.bank:hover {
  color: #bce3f0;
  border-bottom-color: #309ec2;
}

/* Footer */ 

.footer-body {
  margin: 0;
  padding: 0; 
}

footer {
background-color: #c8dfe8;
padding: 40px 20px;
color: #fff;
font-family: Arial, sans-serif;
}

.footer-container {
display: flex;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
}

.footer-section {
flex-basis: 20%; 
}

.footer-section.about {
flex-basis: 40%; 
}

.footer-section.quick-links {
flex-basis: 25%; 
}

.footer-section h3 {
color: #fff;
margin-bottom: 20px;
}

.footer-section p {
color:#1e6f92;
line-height: 1.6;
font-size: 15px;
}

.footer-section ul {
list-style: disc inside;
padding: 0;
color: #fff;
font-size: 15px;
}

.footer-section ul li {
margin-bottom: 10px;
}

.footer-section ul li a {
color: #1e6f92;
text-decoration: none;
}

.footer-section ul li a:hover {
text-decoration: underline;
}

.footer-bottom {
text-align: center;
margin-top: 40px;
border-top: 1px solid #fff;
padding-top: 20px;
}

.footer-bottom p {
color: #fff;
font-size: 14px;
}

.footer-bottom strong {
color: #fff;
}

.footer-socials {
margin-top: 20px; /* Increase spacing */
}

.footer-socials a {
color: #fff;
margin: 0 10px;
text-decoration: none;
font-size: 30px;
}

.footer-socials a:hover {
color: #1e6f92;
}
