.bodi{
    font-family: Georgia, 'Times New Roman', Times, serif;
}

#NavDash{
    background-color: rgb(34, 34, 65);
    border-bottom: 3px solid rgb(185, 86, 19);
}
#dashOff{
    display: none;
}
#mainLogo{
    width: 120px;
}
.dropSvg{
    margin-left: -7px;
}
#dashNavs{
    background: transparent;
}
@media (max-width: 1115px){
  #offA{
    display: none;
}
    #dashOff{
        display: block;
        margin-top: -10px;
    }
    #mainLogo{
        width: 100px;
        height: 30px;
        margin-left: -150px;
    }
    #dashNavs{
        display: none;
    }
}
#cards{
    background: transparent;
}
#d-flex{
    flex-wrap: wrap;
}
.notify{
    text-align: center;
    margin-top: -42px;
    margin-left: 25px;
    background: red;
    padding: 4px 1px 4px 1px;
    border-radius: 50%;
    font-size: 11px;
    z-index: 1;
}
#dropDown{
    margin-top: -7px;
}

.flip-box {
    background-color: transparent;
    width: 500px;
    height: 300px;
    /* border: 1px solid #f1f1f1; */
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    box-shadow: 5px 5px 10px;
  }
  
  /* This container is needed to position the front and back side */
  .flip-box-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-box:hover .flip-box-inner {
    transform: rotateY(180deg);
  }
  
  /* Position the front and back side */
  .flip-box-front, .flip-box-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-box-front {
    color: black;
  }
  .flip-box-front img {
    width: 500px;
    height: 300px;
  }
  
  /* Style the back side */
  .flip-box-back {
    transform: rotateY(180deg);
  }
  .flip-box-back img{
    width: 500px;
    height: 300px;
  }
  @media (max-width: 490px){
    .flip-box-back img{
        width: 350px;
        height: 230px;
      }
      .flip-box-front img {
        width: 350px;
        height: 230px;
      }
      .flip-box {
        width: 350px;
        height: 230px;
      }
}
  
  #cardsB{
    background-color: rgb(49, 49, 70);
    margin-top: 50px;
  }

  .pSpan{
    border-left: 1px solid  rgb(34, 34, 65);
    padding-left: 5px;
}