
#wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 70vh;
  background: #E1F5FE;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  box-shadow: 
  12px 12px 16px 0 rgba(255, 255, 255, 0.3) inset,
  -8px -8px 12px 0 rgba(125, 183, 245, 1) inset,
  4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  border-radius: 1rem;
}

#canvas_container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 70vh;
  z-index: 0;
  border-radius: 1rem;
}

canvas {
  display: block;
}

.link_slydes {
  color: #FFFF00;
  }
  
.link_slydes:hover {
  border-bottom: dotted;
  text-shadow:1px 1px 0px #000;
  }

.text {
  width: 100%;
  height: 65px;
  letter-spacing: 2px;
  text-align: center;
  position: absolute;
  color: rgb(255, 255, 255);
  left: 50%;
  top: 87%;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
  background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #0cbff5), color-stop(1, #0c33f5) );
  background:-moz-linear-gradient( center top, #0cbff5 5%, #0c33f5 100% );
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0cbff5', endColorstr='#0c33f5');
  background-color:#0cbff5;
  font-size: 1.6rem;
  line-height: 1.5;
  user-select: none;
  overflow: hidden;
  display: flex;
  align-items:center;
  opacity: 0.8;
  text-shadow:1px 1px 0px #000;
}

.text span {
  color: rgb(255, 255, 255);
  opacity: 1;
}

.text .quoteText {
  width: 85%;
  margin: 0 auto;
}

.clickInfo {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: -80px;
  z-index: 11;
  cursor: pointer;
  color: #F9B31C;
  background-color: rgba(23, 23, 23, 0.9);
  padding: 10px 0;
  font-size: 20px;
}

.btn {
  position: absolute;
  bottom: 5%;
  right: 0px;
  transform: translateX(-50%);
  border: 1px solid white;
  border-radius: 5px;
  font-size: 0.9rem;
  padding: 0.5rem 0.7em;
  background: transparent;
  color: #F9B31C;
  -webkit-font-smoothing: antialiased;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  z-index: 11;
}

.btn_works {
  left: 100px;
  right: unset;
  text-decoration: none;
}

.btn:hover {
  background: #ffffff;
  color: #2a2b2f;
}

.chevron {
    content: '';
	cursor: pointer;
	right: 2rem;
    position: absolute;
    display: inline-block;
	width: 30px;
    height: 30px;
    border-right: 10px solid #a8e3fd;
    border-bottom: 10px solid #a8e3fd;
	opacity: 0.5;
    transform: rotate(-45deg);
	filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.3));
}

@media only screen and (max-width:815px) {
  .text {
    font-size: 1rem;
  }

  .text span {
    afont-size: 0.8rem !important;
  }

  .clickInfo {
    font-size: 1rem;
  }
	
  .chevron {
    width: 15px;
    height: 15px;
    border-right: 5px solid #a8e3fd;
    border-bottom: 5px solid #a8e3fd;
	opacity: 1;
}
}