.carousel-text {
  text-align: center;
  font-size:large;
  padding-left:15%;
  padding-right:15%;
}
.carousel-item{
  height: 100%;
}
 .container-fluid{
  padding-left: 0px;
  padding-right: 0px;
  width:100%;
  max-width:none ;
 }
 .container-fluid > .row {
  margin:0;
}
.text-directions {
  font-size:small;
  font-style: italic;
  color: lightslategray;
}
.footer {
  position: fixed;
  bottom: 0px;
  margin-bottom: 0px;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 36px;
  line-height: 36px; /* Vertically center the text there */
  background-color: whitesmoke;
  border-top: 1px solid black;
  clear: both;
  z-index:1;
}
.div-striped  > div {
  padding: 2px;
  margin-left: -18px;
  margin-right: -18px;
  border-bottom: 1px solid lightgrey;
}

.div-striped > div:nth-child(even) {
  background: white;
  padding: 2px;  
}
.div-striped > div:nth-child(odd) {
  background: ghostwhite;
  padding: 2px;
}

.div-striped > div:hover,
.div-striped > div.edit-ready {
  background: #bcdbff;
}
.footer a {
  color:darkgrey;
}
.nav-link {
  color:black;
}
.tilt {
    transform: rotate(7deg);
    filter: drop-shadow(10px 20px 10px rgba(0,0,0,.5));
    object-fit: cover;
}
.tilt.cc {
  transform: rotate(-7deg);
}
.x-danger {
  font-size: 30px;
  color: firebrick;
}
.x-warning {
  font-size: 30px;
  color: goldenrod;
}
 .teach {
        position: relative;
        float: right;
        display: block;
        border-bottom-left-radius : 40px;
        background: rgb(48, 76, 201);
        padding-right: 20px;
        color: white;
        padding-left: 5px;
        padding-right:10px;
        padding-top: 0px;
        top: 0px;
        right: 0px;
        font-size:smaller;
        max-height: 80px;
        width: 220px;
 }
 .testimonials {
    background-color: rgb(48, 76, 201);
    color: white;
    min-height: 265px;
 }
 .vcenter-item{
  display: flex;
  align-items: center;
}
 .paper {
    position:relative;
    height: 200px;
    width: 100%;
    background-image: url("../img/papers.webp");
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 7px solid #EDDA74;
    border-bottom: 5px solid #EDDA74;
    padding-left: 0px;
    margin-left: 0px;
    }
    .first-txt {
        position: absolute;
        font-weight: bolder;
        bottom: 45px;
        left: 30px;
        color: white
    }
    .second-txt {
        position: absolute;
        bottom: 20px;
        left: 75px;
        color: white;
        font-style: italic;
        font-weight: lighter;
    }
  .text-blue{
    color: rgb(48, 76, 201);
  }

  .ribbon {
    width: 125px;
    height: 125px;
    overflow: hidden;
    position: absolute;
    z-index: 1;
  }

  .ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 8px 0;
    background-color: #3498db;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    color: #fff;
    font: 700 18px/1 'Lato', sans-serif;
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
    text-transform: uppercase;
    text-align: center;
    font-size:x-small;
  }
  /* top right*/
.ribbon-top-right {
  top: 0px;
  right: 0px;
}

.ribbon-top-right span {
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}
/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
 .cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0 !important;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  transform: translateY(100%);
  transition: all 500ms ease-out;
  color: #ecf0f1;
  background: #212327; 
}
.cookiealert.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  transition-delay: 1000ms;
}
.cookiealert a {
  text-decoration: underline
}
.cookiealert .acceptcookies {
  margin-left: 10px;
  vertical-align: baseline;
}