* {
  box-sizing: border box;
}
#indexItem .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
#indexItem .btn,
#indexItem button {
  background: #1d1d1d;
  color: white;
  border: none;
  font-size: 10px;
  font-size: 1rem;
  background-color: #1d1d1d;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 21px;
  padding: 1.4rem 2.1rem;
  border: 2px solid #1d1d1d;
  transition: color 0.1s cubic-bezier(0.16,0.08,0.355,1), background 0.1s cubic-bezier(0.16,0.08,0.355,1);
  display: inline-block;
  cursor: pointer;
  width: 90%;
  min-width: 200px;
  min-width: 20rem;
  outline: none;
  vertical-align: middle;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 400px) {
#indexItem  .btn,
#indexItem  button {
    width: auto;
  }
}
@media (min-width: 800px) {
#indexItem .btn,
#indexItem button {
    width: auto;
    font-size: 1.1rem;
    padding: 1.6rem 2.8rem;
  }
}
#indexItem .btn:hover,
#indexItem button:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  color: #fff;
}
#indexItem .btn-border {
  background-color: transparent;
  color: #1d1d1d;
}
#indexItem .btn-arrow {
  position: relative;
  transition: background-color 300ms ease-out;
}
#indexItem .btn-arrow span {
  display: inline-block;
  position: relative;
  transition: all 300ms ease-out;
  will-change: transform;
}
#indexItem .btn-arrow:hover span {
  transform: translate3d(-1rem,0,0);
}
#indexItem .btn-arrow svg {
  position: absolute;
  width: 1.1em;
  right: 0px;
  right: 0rem;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 300ms ease-out;
  will-change: right, opacity;
}
#indexItem .btn-arrow svg * {
  stroke-width: 5;
  stroke-color: transparent;
}
#indexItem .btn-arrow:hover svg {
  opacity: 1;
  right: -2rem;
}

#indexAbout button {
	margin-top: 1.5em;
	position: relative;
	display: inline-block;
	cursor: pointer;
	outline: none;
	border: 0;
	vertical-align: middle;
	text-decoration: none;
	background: transparent;
	padding: 0;
	font-size: inherit;
	font-family: inherit;
}
#indexAbout button.learn-more {
	width: 12rem;
	height: auto;
}
#indexAbout button.learn-more .circle {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: relative;
	display: block;
	margin: 0;
	width: 3rem;
	height: 3rem;
	background: #282936;
	border-radius: 1.625rem;
}
#indexAbout button.learn-more .circle .icon {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background: #fff;
}
#indexAbout button.learn-more .circle .icon.arrow {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	left: 0.625rem;
	width: 1.125rem;
	height: 0.125rem;
	background: none;
}
#indexAbout button.learn-more .circle .icon.arrow::before {
	position: absolute;
	content: "";
	top: -0.25rem;
	right: 0.0625rem;
	width: 0.625rem;
	height: 0.625rem;
	border-top: 0.125rem solid #fff;
	border-right: 0.125rem solid #fff;
	transform: rotate(45deg);
}
#indexAbout button.learn-more .button-text {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.75rem 0;
	margin: 0 0 0 1.85rem;
	color: #282936;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	text-transform: uppercase;
}
#indexAbout button:hover .circle {
	width: 100%;
}
#indexAbout button:hover .circle .icon.arrow {
	background: #fff;
	transform: translate(1rem, 0);
}
#indexAbout button:hover .button-text {
	color: #fff;
}
