.tut-category:hover{
  cursor: pointer;
}

.category-link{
  /* color: #4661ae; */
  line-height: 1.625;
  font-size: large;
}

.ts-header.text-center a{
  color:#4661ae;
}

p{
  font-size: larger;
}


.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect .overlay {
  position: absolute;
  overflow: hidden;
  width: 80%;
  height: 80%;
  left: 10%;
  top: 10%;
  /* border-bottom: 1px solid #FFF;
  border-top: 1px solid #FFF; */
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0,1);
  -ms-transform: scale(0,1);
  transform: scale(0,1);
}

.hovereffect:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hovereffect:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.hovereffect:hover img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.6" /><feFuncG type="linear" slope="0.6" /><feFuncB type="linear" slope="0.6" /></feComponentTransfer></filter></svg>#filter');
  filter: brightness(0.6);
  -webkit-filter: brightness(0.6);
}


.hovereffect h2 {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-size: 17px;
  background-color: transparent;
  color: #FFF;
  padding: 1em 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,-100%,0);
  transform: translate3d(0,-100%,0);
}

.hovereffect a, .hovereffect p {
  color: #FFF;
  padding: 1em 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
}

.hovereffect:hover a, .hovereffect:hover p, .hovereffect:hover h2 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}


.bp-card{
    width: 100%;
    height: 200px;
}



/* Interactive Card */
.interactive-cards-wrapper {
  /* margin-top: 50px; */
  height: 100%;
}
.interactive-card-container {
  perspective: 1200px;

}
.interactive-card {
  /* margin: 0 auto; */
  height: 250px;
  width: 100%;
  padding:15px;
  /* max-width: 80%; */
  position: relative;
  border-radius: 25px;
  transition: all 1s ease;
  transform-style: preserve-3d;
  box-shadow: 1px 3px 3px rgba(0,0,0,0.2)
}

.rotated {
  transform: rotateY(-180deg);
}
.interactive-card-contents {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
}

.interactive-card-contents h2, .interactive-card-contents p {
  text-shadow: 1px 2px 2px rgba(0,0,0,0.2);
}
.interactive-card-contents h2 {
  font-size: 3em;
  margin: 0 auto;
}
.interactive-card-contents hr {
  width: 50%;
  margin: 20px auto;
}
.interactive-card-contents p {
  margin: 0 auto;
}
.interactive-card-depth {
   transform: translateZ(100px) scale(0.98);
   perspective: inherit;

}
.interactive-card-front {
  background:  #e6e9ec;           
  transform-style: preserve-3d;
}
.interactive-card-back {
  transform: rotateY(180deg);
  background:  #c8cacc;   
  transform-style: preserve-3d;
}

.a-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80px;
  height: 60px;
  cursor: pointer;
}

.arrow {
  position: absolute;
  top: 25px;
  width: 90%;
  height: 10px;
  background-color: #e6e9ec;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
  animation: arrow 700ms linear infinite;
}

.arrow::after, .arrow::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 10px;
  right: -8px;
  background-color: #e6e9ec;
}

.arrow::after {
  top: -12px;
  transform: rotate(45deg);
}

.arrow::before {
  top: 12px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
  transform: rotate(-45deg);
}

.check {
  display: inline-block;
  transform: rotate(45deg);
  height: 24px;
  width: 12px;
  border-bottom: 7px solid #78b13f;
  border-right: 7px solid #78b13f;
  display:none;

}

.check-background{
  background:white;
  border-radius: 25px;
  position: absolute;
  left: 0;
  top: 5px;
  width: 30px;
  height: 30px;
  z-index: 2;
  padding: 1px;
  display: none;
}


.cross {
  background: red;
  height: 20px;

  width: 5px;
  margin-top: 3px;    
  transform: rotate(45deg);
  display:none;
}
.cross:after {
  background: red;
  content: "";
  height: 5px;
  left: -8px;
  position: absolute;
  top: 8px;
  display: inline-block;
  width: 21px;
  /* transform: rotate(45deg); */
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.ui-draggable-disabled .check-background, .ui-draggable-disabled .check-background .check{
  display:inline-block;
}

.check-background.incorrect, .check-background.incorrect .cross{
  display:inline-block;
}

#successMessage{
display: inline-block;
position: absolute;
top: 25%;
}

.v-none{
  visibility: hidden;
}