body {
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
.navbar-brand
{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -45px;
    display: block;
}
.navbar-dark
{
    background-color:#111725;
    /*background-image: linear-gradient(0deg, #3b4852 0%, #4b6375 100%) !important; */
}

.featurette-body
{
    background-color: #12141fef !important;
    box-shadow: 0 .5em 1.5em rgba(0, 0, 0, .1), 0 .125em .5em rgba(0, 0, 0, .15) !important;
}

.featurette-divider {
    margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}
  
/* Thin out the marketing headings */
.featurette-heading {
    font-weight: 300;
    line-height: 1;
    /* rtl:remove */
    letter-spacing: -.05rem;
}

@media (min-width: 40em) {
    /* Bump up size of carousel content */
    .carousel-caption p {
      margin-bottom: 1.25rem;
      font-size: 1.25rem;
      line-height: 1.4;
    }
  
    .featurette-heading {
      font-size: 50px;
    }
  }
  
  @media (min-width: 62em) {
    .featurette-heading {
      margin-top: 7rem;
    }
  }
  
.tags {
    padding: 4px;
    padding-left: 1em;
    padding-right: 1em;
    margin: 2px;
    border-radius: 5px;
    display: inline-block;

    background: rgb(208, 209, 235);
    background-size: 200%;
    transition: .3s ease-out;

}

.card {
    display:flex;
    flex-direction: column;
    transition: all .2s ease-in-out;
    background-color: rgb(208, 209, 235);
    padding: 3px;
}

.card:hover
{
    transform: scale(1.1);
    cursor: pointer;

}

.card .description {
    opacity: 0;
    transition: .3s ease-in-out;
    position:absolute;
    font-size: 1.05em;
}

.card:hover .description {
    opacity: 1;
}

.card .card-title-description
{
    position: relative;
    color: black;
    transition: .3s ease-in-out;
    top: 0px;
}


.card:hover .card-title-description
{
    top: -160px;
}

#Project-Cards
{
    display: grid;
    gap: 2rem;

    margin: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
}

.card img
{
    transition: 0.3s ease-in-out;
    opacity: 1;
    object-fit: cover;
    
}

.card:hover img
{
    filter: blur(4px);
    background: rgba(255, 255, 255, .6);
    opacity: 0.4;
}

.b-example-divider {
    height: 3rem;
    /*background-color: rgba(0, 0, 0, .1) !important;
    border: solid rgba(0, 0, 0, 0.15) !important;
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15) !important;*/
}



.zoombackground
{
    height: 100%;
    margin: 0 auto;
    transition: all .2s ease-in-out;
    float: none;
}
.zoombackground:hover 
{
    transform: scale(1.1);
    z-index: 2;
}

.clickable:hover
{
    cursor: pointer;
}

.navbar-toggler
{
    border: 0;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus
{
    outline: none;
    box-shadow: none;
    border: 0;
}

.container-offset { 
    position:relative;
}
.container-offset .offset 
{
    position:absolute; 
    top: -5rem;
}

.headline-text
{
    font-size: 1.5em;
}

.simple-text
{
    font-size: 1.25em;
}

.text-dark-color
{
    color: rgb(57, 56, 65);
}

.text-light-color
{
    color: rgb(204, 202, 216);
}

.shader {
    position: fixed;
    width: 100%;
    height: 100%; 
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; 
    z-index: -1; 
    pointer-events: none;
}

.load-screen
{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #4b6375;
    z-index: 10;
}

.loading-bars-container
{
    box-shadow: 0 .5em 1.5em rgba(0, 0, 0, .1), 0 .125em .5em rgba(0, 0, 0, .15) !important;
    width: 7em;
    height: 2em;
}

.loading-bars
{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

.loading-bar
{
    width: 2em;
    height: 6em;
    background: #3b4852;
    transform-origin: 50% 90%;
    margin-bottom: .5em;
}

@keyframes animation1 {
    0%   {transform: rotate(0deg);}
    25%   {transform: rotate(180deg);}
    50%   {transform: rotate(180deg);}
}

@keyframes animation2 {
    0%   {transform: rotate(0deg);}
    12.5%   {transform: rotate(0deg);}
    37.5%   {transform: rotate(-180deg);}
    50%   {transform: rotate(-180deg);}
}
@keyframes animation3 {
    0%   {transform: rotate(0deg);}
    25%   {transform: rotate(0deg);}
    50%   {transform: rotate(180deg);}
}

.loading-bar#bar1
{
    animation-name: animation1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.loading-bar#bar2
{
    animation-name: animation2;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.loading-bar#bar3
{
    animation-name: animation3;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.row
{
    align-items: center;
}

/* width */
::-webkit-scrollbar {
    width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
background: #304555; 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #181d20; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #6b8291; 
}

.card-tag
{

    color: white;
    padding: 3px;
    margin: 2px;
    border-radius: 5px;
    display: inline-block;

    /* "to left" / "to right" - affects initial color */
    background: linear-gradient(to left, rgb(0, 4, 65) 50%, rgb(63, 70, 175) 50%) right;
    background-size: 200%;
    transition: .3s ease-out;
}

.card-tag:hover
{
    background-position: left;
    transform: scale(1.05);
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.hide
{
    display: none !important;;
}
.selected
{
    background: rgb(63, 70, 175) !important;
}

.clear-tags
{

    color: white;
    padding: 3px;
    margin: 2px;
    border-radius: 5px;
    display: inline-block;

    /* "to left" / "to right" - affects initial color */
    background: linear-gradient(to left, rgb(77, 4, 10) 50%, rgb(211, 46, 60) 50%) right;
    background-size: 200%;
    transition: .3s ease-out;
}

.clear-tags:hover
{
    background-position: left;
    transform: scale(1.05);
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
  }

  .nav-bar-link
  {
    color: rgb(193, 195, 223) !important;
    font-size: 1.5em;
    margin-left: 1em;
  }

  .navbar-brand
  {
    margin-top: .3em;
  }