
*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
:root {
    --card-height: 300px;
    --card-width: calc(var(--card-height) / 0.9);
}
@font-face { font-family: pigura; 
    src: url('../font/Fonts/pigura_italic.otf'); } 

/* Custom CSS */
body {
    padding-top: 56px;
}



h2 {
	color: #333;
	text-align: center;
	text-transform: uppercase;
	font-family: "Roboto", sans-serif;
	font-weight: bold;
	position: relative;
	margin: 25px 0 50px;
}
h2::after {
	content: "";
	width: 100px;
	position: absolute;
	margin: 0 auto;
	height: 3px;
	background: #ffdc12;
	left: 0;
	right: 0;
	bottom: -10px;
}
.testimonials .carousel {
	width: 650px;
	margin: 0 auto;
	padding-bottom: 50px;
}
.testimonials .carousel .carousel-item {
	color: #999;
	font-size: 14px;
	text-align: center;
	overflow: hidden;
	min-height: 340px;
}
.testimonials .carousel .carousel-item a {
	color: #eb7245;
}
.testimonials .carousel .img-box {
	width: 145px;
	height: 145px;
	margin: 0 auto;
	border-radius: 50%;
}
.testimonials .carousel .img-box img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
}
.testimonials .carousel .testimonial {	
	padding: 30px 0 10px;
}
.testimonials .carousel .overview {	
	text-align: center;
	padding-bottom: 5px;
}
.testimonials .carousel .overview b {
	color: #333;
	font-size: 15px;
	text-transform: uppercase;
	display: block;	
	padding-bottom: 5px;
}
.testimonials .carousel .star-rating i {
	font-size: 18px;
	color: #ffdc12;
}
.testimonials .carousel-control-prev, .testimonials .carousel-control-next {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #999;
	text-shadow: none;
	top: 4px;
}
.testimonials .carousel-control-prev i,.testimonials .carousel-control-next i {
	font-size: 20px;
	margin-right: 2px;
}
.testimonials .carousel-control-prev {
	left: auto;
	right: 40px;
}
.testimonials .carousel-control-next i {
	margin-right: -2px;
}
.testimonials .carousel .carousel-indicators {
	bottom: 15px;
}
.testimonials .carousel-indicators li,.testimonials .carousel-indicators li.active {
	width: 11px;
	height: 11px;
	margin: 1px 5px;
	border-radius: 50%;
}
.testimonials .carousel-indicators li {	
	background: #e2e2e2;
	border: none;
}
.testimonials .carousel-indicators li.active {		
	background: #888;		
}




.cardholder{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #007bff; */
}

.card {
    width: var(--card-width);
    height: var(--card-height);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* padding: 0 36px; */
    perspective: 2500px;
    margin: 0 50px;
    /* background: #007bff; */
  }
  
  .cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .wrapper {
    transition: all 0.5s;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  
  .card:hover .wrapper {
    transform: perspective(900px) translateY(-5%) rotateX(25deg) translateZ(0);
    /* box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75); */
  }
  
  .wrapper::before,
  .wrapper::after {
    content: "";
    opacity: 0;
    width: 100%;
    height: 80px;
    transition: all 0.5s;
    position: absolute;
    left: 0;
  }
  .wrapper::before {
    top: 0;
    height: 100%;
    background-image: linear-gradient(
      to top,
      transparent 46%,
      rgba(12, 13, 19, 0.5) 68%,
      rgba(12, 13, 19) 97%
    );
  }
  .wrapper::after {
    bottom: 0;
    opacity: 1;
    background-image: linear-gradient(
      to bottom,
      transparent 46%,
      rgba(12, 13, 19, 0.5) 68%,
      rgba(12, 13, 19) 97%
    );
  }
  
  .card:hover .wrapper::before,
  .wrapper::after {
    opacity: 1;
  }
  
  .card:hover .wrapper::after {
    height: 120px;
  }
  .title {
    width: 100%;
    transition: transform 0.5s;
  }
  .card:hover .title {
    transform: translate3d(0%, -50px, 100px);
  }
  
  .character {
    width: 100%;
    opacity: 0;
    transition: all 0.5s;
    position: absolute;
    z-index: -1;
  }
  
  .card:hover .character {
    opacity: 1;
    transform: translate3d(0%, -30%, 100px);
  }
  



.logo{
    font-family: pigura,Arial, Helvetica, sans-serif;
    font-size: 2.3rem;
}
.logo span{
    color: #007bff;
}
.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.feature-box {
    margin: 20px 0;
}

.feature-box i {
    color: #007bff;
}

footer .social-icons i {
    font-size: 1.5rem;
}

/* CSS */
.button-71 {
  background-color: #0078d0;
  border: 0;
  border-radius: 56px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: system-ui,-apple-system,system-ui,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",sans-serif;
  font-size: 18px;
  font-weight: 600;
  outline: 0;
  padding: 16px 21px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-71:before {
  background-color: initial;
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 125px;
  content: "";
  height: 50%;
  left: 4%;
  opacity: .5;
  position: absolute;
  top: 0;
  transition: all .3s;
  width: 92%;
}

.button-71:hover {
  box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
  color: #fff;
  text-decoration: none;
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .button-71 {
    padding: 16px 48px;
  }
}



/* CSS */
.button-63 {
  align-items: center;
  background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  font-family: Phantomsans, sans-serif;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 30%;
  min-width: 140px;
  padding: 19px 24px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

.button-63:active,
.button-63:hover {
    color: #fff;
    text-decoration: none;
  outline: 0;
}

@media (min-width: 768px) {
  .button-63 {
    font-size: 24px;
    min-width: 196px;
  }
}



/* CSS */
.button-21 {
  align-items: center;
  appearance: none;
  background-color: #3EB2FD;
  background-image: linear-gradient(1deg, #4F58FD, #149BF3 99%);
  background-size: calc(100% + 20px) calc(100% + 20px);
  border-radius: 100px;
  border-width: 0;
  box-shadow: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-flex;
  font-family: CircularStd,sans-serif;
  font-size: 1.5rem;
  height: auto;
  justify-content: center;
  line-height: 1.5;
  padding: 6px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s,background-position .2s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.button-21:active,
.button-21:focus {
  outline: none;
}

.button-21:hover {
  background-position: -20px -20px;
}

.button-21:focus:not(:active) {
  box-shadow: rgba(40, 170, 255, 0.25) 0 0 0 .125em;
}


/* CSS */
.button-58 {
  align-items: center;
  background-color: #06f;
  border: 2px solid #06f;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  fill: #000;
  font-family: Inter,sans-serif;
  font-size: 16px;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  letter-spacing: -.8px;
  line-height: 24px;
  min-width: 140px;
  outline: 0;
  padding: 0 17px;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-58:focus {
  color: #171e29;
}

.button-58:hover {
  background-color: #3385ff;
  border-color: #3385ff;
  fill: #06f;
}

.button-58:active {
  background-color: #3385ff;
  border-color: #3385ff;
  fill: #06f;
}

@media (min-width: 768px) {
  .button-58 {
    min-width: 170px;
  }
}





.practice a{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  opacity: 0.95;
}

.practice a:hover{
opacity: 1;
color: black;
}
/*----------------
Push Bar
------------------*/
.practice .bar-cont{
  position: relative;
  top: -215px;
}

.practice .push-bar{
  position: relative;
  margin: auto;
  width: 500px;
  height: 200px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.practice .creator{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
    -ms-flex-direction: row;
        flex-direction: row;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
}

.practice .creator #codepen{
text-align: center;
font-size: 180px;
margin-top: 30px;
border: 2px solid white;
border-radius: 50%;
-webkit-box-shadow: 0px 8px 5px grey;
        box-shadow: 0px 8px 5px grey;
}


.practice .arrow{
margin: auto;
  padding: 0;
  margin-top: 50px;
  margin-bottom: 0;
  max-width: 80px;
  height: 80px;
  border: 3px solid black;
  border-radius: 50%;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yOTMuNzUxLDQ1NS44NjhjLTIwLjE4MSwyMC4xNzktNTMuMTY1LDE5LjkxMy03My42NzMtMC41OTVsMCwwYy0yMC41MDgtMjAuNTA4LTIwLjc3My01My40OTMtMC41OTQtNzMuNjcyICBsMTg5Ljk5OS0xOTBjMjAuMTc4LTIwLjE3OCw1My4xNjQtMTkuOTEzLDczLjY3MiwwLjU5NWwwLDBjMjAuNTA4LDIwLjUwOSwyMC43NzIsNTMuNDkyLDAuNTk1LDczLjY3MUwyOTMuNzUxLDQ1NS44Njh6Ii8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjIwLjI0OSw0NTUuODY4YzIwLjE4LDIwLjE3OSw1My4xNjQsMTkuOTEzLDczLjY3Mi0wLjU5NWwwLDBjMjAuNTA5LTIwLjUwOCwyMC43NzQtNTMuNDkzLDAuNTk2LTczLjY3MiAgbC0xOTAtMTkwYy0yMC4xNzgtMjAuMTc4LTUzLjE2NC0xOS45MTMtNzMuNjcxLDAuNTk1bDAsMGMtMjAuNTA4LDIwLjUwOS0yMC43NzIsNTMuNDkyLTAuNTk1LDczLjY3MUwyMjAuMjQ5LDQ1NS44Njh6Ii8+DQo8L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 45%;
  background-color: black;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-animation: blockAppear .6s ease-in-out;
          animation: blockAppear .6s ease-in-out;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

@-webkit-keyframes bounce {
0%, 20%, 50%, 80%, 100% {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
40% {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
60% {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
40% {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
60% {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}
}
/*-----------------
Cards
------------------*/
.practice .main-cont{
  padding: 0;
  margin: 0;
  top: -215px;
}

.practice .news-row {
margin: 0;
  margin-top: 50px;
  margin-bottom: 50px;
}

.practice .news-block{
  margin: auto;
  padding: 0;
  background-color: transparent;
  max-width: 1060px;
  min-width: 100px;
  border: 20px solid transparent;
  -o-border-image: linear-gradient(to bottom right,rgba(255, 255, 255, 0.75) 0%,rgba(245, 245, 245, 0.75) 0%,rgba(245, 245, 245, 0.75) 16.6%,rgb(245, 245, 245) 37.8%,rgb(245, 245, 245) 48.8%,rgb(254, 254, 254) 53.1%,rgba(245, 245, 245, 0.75) 79.4%,rgba(245, 245, 245, 0.75) 84.3%) !important;
     border-image: -webkit-gradient(linear,left top, right bottom,from(rgba(255, 255, 255, 0.75)),color-stop(0%, rgba(245, 245, 245, 0.75)),color-stop(16.6%, rgba(245, 245, 245, 0.75)),color-stop(37.8%, rgb(245, 245, 245)),color-stop(48.8%, rgb(245, 245, 245)),color-stop(53.1%, rgb(254, 254, 254)),color-stop(79.4%, rgba(245, 245, 245, 0.75)),color-stop(84.3%, rgba(245, 245, 245, 0.75))) !important;
     border-image: linear-gradient(to bottom right,rgba(255, 255, 255, 0.75) 0%,rgba(245, 245, 245, 0.75) 0%,rgba(245, 245, 245, 0.75) 16.6%,rgb(245, 245, 245) 37.8%,rgb(245, 245, 245) 48.8%,rgb(254, 254, 254) 53.1%,rgba(245, 245, 245, 0.75) 79.4%,rgba(245, 245, 245, 0.75) 84.3%) !important;
  border-image-slice: 1 !important;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-animation: blockAppear .6s ease-in-out;
          animation: blockAppear .6s ease-in-out;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.practice .underlay{
/*display: none;*/
margin: 0;
padding: 0;
max-height: 350px;
max-width: 340px;
}

.practice .card{
  margin: 0;
  width: 340px;
  max-height: 350px;
  max-width: 340px;
  background-color: transparent;
  border: 20px solid transparent !important;
  -o-border-image: linear-gradient(to bottom right,rgba(255, 255, 255, 0.75) 0%,rgba(245, 245, 245, 0.75) 0%,rgba(245, 245, 245, 0.75) 16.6%,rgba(245, 245, 245, 0.75) 79.4%,rgba(245, 245, 245, 0.75) 84.3%) !important;
     border-image: -webkit-gradient(linear,left top, right bottom,from(rgba(255, 255, 255, 0.75)),color-stop(0%, rgba(245, 245, 245, 0.75)),color-stop(16.6%, rgba(245, 245, 245, 0.75)),color-stop(79.4%, rgba(245, 245, 245, 0.75)),color-stop(84.3%, rgba(245, 245, 245, 0.75))) !important;
     border-image: linear-gradient(to bottom right,rgba(255, 255, 255, 0.75) 0%,rgba(245, 245, 245, 0.75) 0%,rgba(245, 245, 245, 0.75) 16.6%,rgba(245, 245, 245, 0.75) 79.4%,rgba(245, 245, 245, 0.75) 84.3%) !important;
  border-image-slice: 1 !important;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-animation: blockAppear .6s ease-in-out;
          animation: blockAppear .6s ease-in-out;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

@-webkit-keyframes blockAppear {
0% {
  opacity: 0;
  -webkit-transform: translateY(20px) ;
          transform: translateY(20px) ;
}
40% {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-box-shadow: 0 10px 35px rgba(0,0,0,.15), 0 1px 0 rgba(0,0,0,.15);
          box-shadow: 0 10px 35px rgba(0,0,0,.15), 0 1px 0 rgba(0,0,0,.15);
}
80% {
  opacity: 1;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
100% {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: none;
          box-shadow: none;
}
}

@keyframes blockAppear {
0% {
  opacity: 0;
  -webkit-transform: translateY(20px) ;
          transform: translateY(20px) ;
}
40% {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-box-shadow: 0 10px 35px rgba(0,0,0,.15), 0 1px 0 rgba(0,0,0,.15);
          box-shadow: 0 10px 35px rgba(0,0,0,.15), 0 1px 0 rgba(0,0,0,.15);
}
80% {
  opacity: 1;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
100% {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: none;
          box-shadow: none;
}
}

.practice .card:hover{
  z-index: 999;
  max-height: 800px;
  width: 400px;
  max-width: 400px;
  border: none !important;
  border-right: 60px solid transparent !important;
  border-bottom: 20px solid transparent !important;
  margin-right: -20px;
  -webkit-transform:  translate(-30px, -50px);
          transform:  translate(-30px, -50px);
}

.practice .card:before{
-webkit-box-shadow: none;
        box-shadow: none;
display: block;
content: '';
position: absolute;
width: 100%;
max-width: 400px;
height: 100%;
-webkit-transition: -webkit-box-shadow 0.6s ease;
transition: -webkit-box-shadow 0.6s ease;
transition: box-shadow 0.6s ease;
transition: box-shadow 0.6s ease, -webkit-box-shadow 0.6s ease;
}

.practice .card:hover:before
{
max-width: 300px;
-webkit-box-shadow: 60px 60px 20px RGBA(142, 142, 142, .6);
        box-shadow: 60px 60px 20px RGBA(142, 142, 142, .6);
}

.practice .card:hover .card-img-top{
height: 300px;
}

.practice .card:hover .card-block {
width: 300px;
background-image: -webkit-gradient(linear,right bottom, left top,from(rgb(72, 85, 108)),color-stop(50%, rgb(27, 33, 43)),color-stop(51%, rgb(20, 25, 34)),to(rgb(53, 59, 69)));
background-image: linear-gradient(to top left,rgb(72, 85, 108) 0%,rgb(27, 33, 43) 50%,rgb(20, 25, 34) 51%,rgb(53, 59, 69) 100%);
}

.practice .card:hover .card-title{
  color: white;
}

.practice .card:hover .card-text{
  display: block !important;
  color: white;
}

.practice .card-block{
  background-color: transparent;
  background-image: -webkit-gradient(linear,left top, right bottom,from(rgba(255, 255, 255, 0.75)),color-stop(0%, rgba(245, 245, 245, 0.75)),color-stop(16.6%, rgba(245, 245, 245, 0.75)),color-stop(37.8%, rgb(245, 245, 245)),color-stop(48.8%, rgb(245, 245, 245)),color-stop(53.1%, rgb(254, 254, 254)),color-stop(79.4%, rgba(245, 245, 245, 0.75)),color-stop(84.3%, rgba(245, 245, 245, 0.75)));
  background-image: linear-gradient(to bottom right,rgba(255, 255, 255, 0.75) 0%,rgba(245, 245, 245, 0.75) 0%,rgba(245, 245, 245, 0.75) 16.6%,rgb(245, 245, 245) 37.8%,rgb(245, 245, 245) 48.8%,rgb(254, 254, 254) 53.1%,rgba(245, 245, 245, 0.75) 79.4%,rgba(245, 245, 245, 0.75) 84.3%);
  background-repeat: no-repeat;
}

.practice .card-text {
display: none;
}

.practice .card-img-top{
  width: 300px;
  height: 250px;
  background-color: #fff;
  -webkit-transition: height 0.8s ease;
  transition: height 0.8s ease;
}

@media (max-width: 1120px){
  .practice .bar-cont{
      width: 100%;
  }
  .practice .news-block{
     max-width: 720px;
  }
  .practice .card:hover{
    margin-right: -20px;
  }
  .practice .card:hover .card-block{
    width: 300px;
  }
}

@media (max-width: 800px){
  .practice .news-block{
     min-width: 380px;
  }
  .practice .card:hover{
    border-left: 20px solid transparent !important;
    margin-right: -40px;
    -webkit-transform:  translate(0, -50px);
            transform:  translate(0, -50px);
  }
  .practice .card:hover:before{
    -webkit-box-shadow: 0px 60px 40px RGBA(142, 142, 142, .5);
            box-shadow: 0px 60px 40px RGBA(142, 142, 142, .5);
  }
  .practice .card:hover .card-block{
    width: 300px;
  }
}

@media (max-width: 580px){
.practice .news-block{
   max-width: 380px;
}
}
/*-----------------
Pixel Grid
------------------*/
.practice .pixel-grid{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
z-index: 15;
opacity: .2;
display: none;
}

.practice #toggle-grid{
position: fixed;
top: 150px;
right: 2px;
z-index: 16;
color: white;
display: inline-block;
/*border: 2px ridge white;*/
font-size: 1.8em;
width: 1.8em;
text-align: center;
line-height: 1.85em;
background: #666;
border-radius: 50%; /* or 50% width & line-height */
opacity: .3;
-webkit-transition: background 1s ease-out;
transition: background 1s ease-out;
display: none;
}

.practice #toggle-grid:hover{
cursor: pointer;
background: repeating-linear-gradient(to bottom right,rgb(0, 0, 0) 0%,rgb(226, 226, 226) 61.4%,rgb(226, 226, 226) 66.9%,rgb(226, 226, 226) 76.6%,rgb(226, 226, 226) 88.7%,rgb(255, 255, 255) 100%);
}

.practice .orange{
color: orange !important;
-webkit-box-shadow: 2px 2px 3px #888;
        box-shadow: 2px 2px 3px #888;
opacity: 1 !important;
}
