body
{
    font-family: 'Russo One', sans-serif;
}

.shadow
{
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.big-shadow
{
    text-shadow: -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 3px 0 #000;
}

.with-background
{
    background: rgba(105, 105, 105, 0.5);
    /*
    background-color: dimgrey;
    opacity: 0.5;
    */
}

.container-deluxe
{
    position: relative;
}

.container-deluxe::before
{
    z-index: -100;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    display: inline-flex;
    width: 100%;
    height: 100%;
    background-image: url("img/ursa.png");
    background-repeat: no-repeat;
    /* background-size: 50%, 50%; */
    background-position: -300px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-filter: opacity(10%);
    filter: opacity(10%);
}

.container-tutor
{
    position: relative;
}

.container-tutor::before
{
    z-index: -100;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    display: inline-flex;
    width: 100%;
    height: 100%;
    background-image: url("img/tutoring_logo.svg");
    background-repeat: no-repeat;
    /* background-size: 50%, 50%; */
    background-position: 50px, 20px; 
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-filter: opacity(10%);
    filter: opacity(10%);
}

.text-minor
{
    font-family: 'Poppins', sans-serif !important;
}

.custom-nav
{
    width: 100%;
    color: white;
    background-color: #33416F;
}

.big-title
{
    font-size: 72px;
}

.small-title
{
    font-size: 18px;
    text-align: start;
}

.nav-link
{
    font-size: 16px;
}

#mainmenu ul li a 
{
    color: white;
    background-color: #33416F;
    border-color: white;
}

#mainmenu ul li a:hover 
{
    box-shadow: 0px 0px 10px 2px rgba(204, 204, 204, 0.9);
}

.highlighted-text
{
    color: #ECB247 !important;
}

.navbar-toggler
{
    color: white !important;
    border-color: white !important;
}
/*
.carousel-item 
{
    width: 300px;
    height: 170px;
    position: relative;
    color: black;
}
*/
.userbar
{
    z-index: 10;
}
.custom-btn
{
    color: white;
    background-color: #33416F;
    opacity: 1;
}

#slider
{
    height: 200px;
}

.img-fit
{
   
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
   
}

.footer1::before
{
    z-index: -100;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("img/ursa.png");
    background-repeat: no-repeat;
    background-size: 50%, 50%;
    background-position: -300px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-filter: opacity(10%);
    filter: opacity(10%);
}

.footer1
{
    overflow: auto;
    position: relative;
    color: white;
    font-size: 18;
    background-color: #33416F;
    z-index: 10;
}

.footer1 a
{
    color: white;
}

.loader{
    position: fixed;
    top: 0;
    left: 0;
    background: lightgrey;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .disppear{
    animation: vanish 1s forwards;
  }
  @keyframes vanish {
    100%{
      opacity: 0;
      visibility: hidden;
    }
  }