body {
    background-image: url("../images/background.jpg");
    background-size: cover;
    color: white;
    font-family: 'Inter', sans-serif;
}

.nopadding{
    padding: 0px;
}

.banner{
  height: 100vh;
  object-fit: cover;
  width: 100%;
}

.title{
    font-family: 'Orbitron', sans-serif;
}

.card{
    background-color: rgba(255, 255, 255, 0.04);
    margin: 40px 0 0 0;
    padding: 40px;
    color: white;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.mb-40{
    margin-bottom: 40px;
}

.mb-20{
    margin-bottom: 20px;
}

.mt-20{
    margin-top: 20px;
}

.table{
    margin: 20px 0px 0px 0px;
}

.table-header{
    font-weight: 600;
}

hr{
    border: 2px solid white;
    opacity: 1;
    margin-bottom: 35px;
}

.button {
    cursor: pointer;
    -webkit-clip-path: polygon(100% 0, 100% 69%, 69% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 60%, 85% 100%, 0 100%, 0 0);
    background: linear-gradient(180deg, rgba(0,134,255,1) 0%, rgba(0,255,218,1) 100%);
    width: fit-content;
    padding: 15px 50px;
    color: black;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#map-9cd199b9cc5410cd3b1ad21cab2e54d3 iframe{
    border-radius: 8px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 200px;
    display: inline-flex;
    /* border: 1px solid #f1f1f1; */
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
  }
  
  /* This container is needed to position the front and back side */
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  /* Do an horizontal flip when you move the mouse over the flip box container */
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  /* Position the front and back side */
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    
  }
  
  /* Style the front side (fallback if image is missing) */
  .flip-card-front {
    /* background-color: #bbb; */
    background-color: rgba(255, 255, 255, 1);
    /* background-color: rgba(255, 255, 255, 0.55); */
    color: white;
    border-radius: 8px;
  }

  .flip-card-front img{
    width: 100%;
    height: inherit;
    padding: 30px;
    object-fit: contain;
  }
  
  /* Style the back side */
  .flip-card-back {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 40px 20px;
    color: white;
    transform: rotateY(180deg);
    border-radius: 8px;
  }

  .icon-link i{
    font-size: 1.3rem; 
    color: white;
    margin: 10px
  }

  a {
    text-decoration: none;
    cursor: pointer;
  }
  
  a:hover {
    opacity: 0.7;
  }

  ol{
    margin-left: 20px;
  }

  .profile {
    margin: auto;
    text-align: center;
    padding: 40px;
  }

  .profile img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 40px;
  }

  .modal{
    color: black;
  }