.navbar-brand {
    padding: 0;
}
.bg-primary-circle{
    background: #2a3855;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.card-img-workhorse{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.map-container {
    position: relative;
    width: 100%; 
    height: 400px; 
    overflow: hidden;
    border-radius: 10px;
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal {
    display: none; 
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  #myVideo {
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
    height: auto;
    width: auto;
    margin: auto;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    cursor: pointer;
    color: #fff;
    z-index: 99999999;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .15s;
  }
  
  .close:hover {
    background: #ffffff76;
  }
  