.navbar-item-register {
  display: none !important;
}

.btn {
border-radius: 4px
}

.video-wrapper {
width: 100%;
height: auto;
max-width: 640px;
max-height: 360px;
margin: 0 auto;
}
.video-wrapper .video-container {
position:relative;
width: 100%;
height: 0;
max-width:640px;
padding-bottom: 56.25%;
margin: 16px auto;
overflow:hidden;
}
.banner__countdown-label {
font-size: 2rem
}
.countdown__number {
font-size: 3rem
}
.countdown__label {
font-size: 1.5rem
}
.text-white {
color: #fff;
}
.banner-icons .fa {
font-size: 32px;
}
.footer_content {
margin-bottom: 0;
}
.footer__content {
min-height: 0;
}
.footer .col-xs-12, .footer [class^="col-"] {
margin-bottom: 0;
}
.speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin: 8px auto;
  width: 100%;
  max-width: 320px;
  text-align: center;
  min-height: 550px;
}
.speaker-card img {
max-width: 280px;
border-radius: 50%;
}
.speaker-photo {
    align-self: flex-start;
  }

  .speaker-name {
    color: #751436; 
  }

  .speaker-bio {
    flex-grow: 1; 
    margin-bottom: 16px;
    text-align: center;
  }

  .btn.readMoreBtn {
    align-self: center;
  }
/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0; /* Start with opacity 0 */
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 500px;
  text-align: center;
  transform: scale(0.8); /* Start with a smaller scale */
  transition: transform 0.3s ease; /* Smooth transition for scaling */
  opacity: 0; /* Start with opacity 0 */
  max-height: 80vh;
  overflow: auto;
}

/* Modal is visible and fully animated */
.modal.show {
  display: block; /* Ensure it's visible */
  opacity: 1; /* Full opacity for the modal background */
}

.modal.show .modal-content {
  transform: scale(1); /* Scale up to its full size */
  opacity: 1; /* Fully visible */
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  cursor: pointer;
}

/* Modal image */
.modal-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .speaker-card {
   min-height: 0;
  }

  .modal-content {
    width: 100%;
   margin: 15% auto;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-description {
    font-size: 1rem;
  }
}
.hotel-list {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.hotel-list-item {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}

.thumb {
    width: 50%; /* Set to half of the width */
    height: auto;
    border-radius: 5px;
    margin-right: 15px;
}

.description {
    flex: 1;
}

.hotel-name {
    margin: 0;
    font-size: 1.5em;
    color: #751436; /* Highlight color */
}

.hotel-info {
    margin: 5px 0 0;
    color: #555;
}
.agenda-title {
      text-align: center;
      color: #751436;
      margin: 20px 0;
    }

    h2 {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    h3 {
      font-size: 1.5rem;
      font-weight: normal;
      margin-bottom: 30px;
    }

    /* Agenda Container */
    .agenda-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Agenda List */
    .agenda-item {
      display: flex;
      flex-direction: row;
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    /* Time (left side) */
    .time {
      background-color: #751436;
      color: white;
      padding: 15px;
      flex-basis: 25%;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    /* Information (right side) */
    .info {
      flex-basis: 75%;
      padding: 15px;
      background-color: #bdc3c7;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Agenda Titles in Info */
    .agenda-title-item {
      font-size: 1.1rem;
      margin-bottom: 5px;
      color: #111111;
    }

    .agenda-description {
      font-size: 1rem;
      color: #111111;
    }

    /* Responsive Layout */
    @media (max-width: 600px) {
      .agenda-item {
        flex-direction: column;
      }

      .time, .info {
        flex-basis: 100%;
        text-align: left;
      }

      .time {
        text-align: center;
        padding: 10px;
      }
    }
.btn-default.btn, .btn-default.btn:hover {
  background-color: #751436 !important;
  border: 1px solid #751436 !important;
  color: #ffffff !important; 
}