/*------------------------------------------------------------------
    File Name: custom.css
-------------------------------------------------------------------*/

/** ADD YOUR AWESOME CODES HERE **/

#static-image {
    position: relative;
    
  }
  
  .static-image-wrapper {
    position: relative;
    overflow: hidden;
  }
  
  .static-image {
    width: 100%;
    height: auto;
  }
  
  .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
  }
  


  .text-background {
    background-color: rgba(23, 165, 233, 0.9); /* Adjust the color and transparency as needed */
    padding: 20px; /* Adjust the padding as needed */
    border-radius: 10px; /* Optional: add rounded corners */
  }



  .text-content {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .text-content h2 {
    font-size: 70px;
    line-height: 70px;
  }
  
  .text-content p {
    font-size: 18px;
    margin-top: 15px;
  }
  

  .brand-logo {
    width: 180px; /* Set a fixed width */
    height: 90px; /* Keep the aspect ratio */
    display: block; /* To center in the LI if needed */
    margin: 0 auto; /* Center the image within the LI */
}

.team_member {
  background-color: #eeeeee;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 0%;
  width: 200px;
  height: 100px;
  text-align: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team_member > * { /* This targets all direct children of .team_member */
  margin: 0;
  padding: 0;
  height: 100%; /* Makes child elements take up full height of the container */
}





/* Style for Image Gallery */
#imageGallery img {
  margin-bottom: 15px;
  margin-right: 10px;
  width: 200px;
  height: 100px;

}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  margin-bottom: 20px;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: rgb(197, 17, 17);
  font-weight: bold;
  font-size: 40px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}





@media only screen and (max-width: 600px) {
  img.responsive {
    width: 100%;
    height: auto;
  }
}



@media (max-width: 768px) {
  .navbar {
      display: flex;
      flex-direction: column;
  }
  .navbar ul {
      width: 100%;
      text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .row > .brand-item {
    width: 33.33%;
    float: left;
    padding: 5px; /* Adjust the spacing as needed */
  }
  .row > .brand-item img {
    max-width: 100%;
    height: auto;
    display: block; /* This will make the image scale within the column */
  }
}

/* Custom CSS for Account Management Icons */
.account_management ul {
  padding: 0;
  margin: 10px;
  list-style: none;
  display: flex;
  align-items: center; /* Center icons vertically */
  height: 100%; /* Ensure it takes the full height of the parent */
}

.account_management ul li {
  display: inline-block;
  margin: 0 5px;
}

.account_management ul li a {
  color: white;
  font-size: 18px; /* Adjust this value to make the icons larger or smaller */
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center; /* Center the icon vertically inside the anchor */
}

.account_management ul li a:hover {
  color: #ddd; /* Adjust the hover color if needed */
  transform: scale(1.2); /* Slightly enlarges the icon on hover */
}



.cookie-consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 20px;
            text-align: center;
            z-index: 1000;
}



.cookie-consent-banner button {
            margin: 10px;
            padding: 10px 20px;
            background: #007bff;
            color: white;
            border: none;
            cursor: pointer;
}
  

/* Ensure the section takes full width */
.section {
  width: 100%;
}

/* Make the grid layout 2x2 on small devices */
@media (max-width: 767px) {
  .row {
    display: flex;
    flex-wrap: wrap;
  }

  .col-lg-3, .col-md-6, .col-sm-6, .col-xs-12 {
    flex: 0 0 50%; /* Each column takes 50% of the row */
    max-width: 50%;
    box-sizing: border-box; /* Ensures padding/margins are included in the width */
  }
}

/* Optional: Ensure the icons are centered */
.icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Optional: Remove margin from the last column */
.col-lg-3:last-child, .col-md-6:last-child, .col-sm-6:last-child, .col-xs-12:last-child {
  margin-bottom: 0;
}


body-icon-user {
  background-color: #e8e8e8;
  font-family: Arial, sans-serif;
}

.button-user-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: whitesmoke;
  padding: 5px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: auto;
  margin-top: 5px;
}

.button-user-container-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: whitesmoke;
  padding: 5px;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: auto;
  margin-top: 5px;
}

.icon-user-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 0 10px;
  background-color: #161c3b;
  border: 2px solid transparent;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}

.icon-user-button:hover {
  background-color: whitesmoke;
  border-color: #AB9741;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.icon_user {
  width: 20px;
  height: 20px;
}


.button-login{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #161c3b;
  border-radius: 20px;
  padding: 5px;
  height: auto;
  width: 100px;
  -webkit-text-fill-color: #f2f2f2;
}

.button-logout{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #161c3b;
  border-radius: 20px;
  padding: 5px;
  height: auto;
  width: 100px;
  -webkit-text-fill-color: #f2f2f2;
}


/*test*/



.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  position: relative;
}

.title {
  font-size: 28px;
  color: royalblue;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.title::before,.title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  background-color: royalblue;
}

.title::before {
  width: 18px;
  height: 18px;
  background-color: royalblue;
}

.title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

.message, .signin {
  color: rgba(88, 87, 87, 0.822);
  font-size: 14px;
}

.signin {
  text-align: center;
}

.signin a {
  color: royalblue;
}

.signin a:hover {
  text-decoration: underline royalblue;
}

.flex {
  display: flex;
  width: 100%;
  gap: 6px;
}

.form label {
  position: relative;
}

.form label .input {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.form label .input + span {
  position: absolute;
  left: 10px;
  top: 15px;
  color: grey;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.form label .input:placeholder-shown + span {
  top: 15px;
  font-size: 0.9em;
}

.form label .input:focus + span,.form label .input:valid + span {
  top: 30px;
  font-size: 0.7em;
  font-weight: 600;
}

.form label .input:valid + span {
  color: green;
}

.submit {
  border: none;
  outline: none;
  background-color: royalblue;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transform: .3s ease;
}

.submit:hover {
  background-color: rgb(56, 90, 194);
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}