@font-face {
	font-family: 'icomoon';
	src:url('../fonts/icomoon/icomoon.eot');
	src:url('../fonts/icomoon/icomoon.eot?#iefix') format('embedded-opentype'),
		url('../fonts/icomoon/icomoon.woff') format('woff'),
		url('../fonts/icomoon/icomoon.ttf') format('truetype'),
		url('../fonts/icomoon/icomoon.svg#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

.btn {
	background: none;
	cursor: pointer;
	padding: 11px 0px;
	width: 165px;
	display: inline-block;
	font-weight: 700;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn:after {
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn:before,
.icon-heart:after,
.icon-star:after,
.icon-plus:after,
.icon-file:before {
    font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	position: relative;
	-webkit-font-smoothing: antialiased;
}

.icon-arrow-right:before {
	content: "\e00d";
}

.btn-4 {
	border-radius: 60px;
	border: 1px solid #cbcaca;
	color: #26272d;
	overflow: hidden;
    font-size: 15px;
}

.btn-4:active {
	border-color: #999999;
	color: #999999;
}

.btn-4:hover {
	background: #cecece;
	color: #ffffff;
}

.btn-4:before {
	position: absolute;
	height: 100%;
	font-size: 125%;
	line-height: 2.2;
	color: #fff;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn-4:active:before {
	color: #999999;
}

.btn-4c:before {
	left: 70%;
	opacity: 0;
	top: 0;
}

.btn-4c:hover:before {
	left: 80%;
	opacity: 1;
}

@-webkit-keyframes moveToRight {
	80% { -webkit-transform: translateX(250%); }
	81% { opacity: 1; -webkit-transform: translateX(250%); }
	82% { opacity: 0; -webkit-transform: translateX(250%); }
	83% { opacity: 0; -webkit-transform: translateX(-50%); }
	84% { opacity: 1; -webkit-transform: translateX(-50%);  }
	100% { -webkit-transform: translateX(0%); }
}

@-moz-keyframes moveToRight {
	80% { -moz-transform: translateX(250%); }
	81% { opacity: 1; -moz-transform: translateX(250%); }
	82% { opacity: 0; -moz-transform: translateX(250%); }
	83% { opacity: 0; -moz-transform: translateX(-50%); }
	84% { opacity: 1; -moz-transform: translateX(-50%);  }
	100% { -moz-transform: translateX(0%); }
}

@keyframes moveToRight {
	80% { transform: translateX(250%); }
	81% { opacity: 1; transform: translateX(250%); }
	82% { opacity: 0; transform: translateX(250%); }
	83% { opacity: 0; transform: translateX(-50%); }
	84% { opacity: 1; transform: translateX(-50%);  }
	100% { transform: translateX(0%); }
}












.btn-cont2 {
    margin-top: 35px;
}

.btn-cont2 .btn2 {
  font-size: 1em;
  position: relative;
  padding: 15px 50px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-font-smoothing: antialiased;
}
.btn-cont2 .btn2:hover {
  border: none;
}
.btn-cont2 .btn2:hover .line-1 {
  -webkit-animation: move1 1500ms infinite ease;
  -moz-animation: move1 1500ms infinite ease;
          animation: move1 1500ms infinite ease;
}
.btn-cont2 .btn2:hover .line-2 {
  -webkit-animation: move2 1500ms infinite ease;
  -moz-animation: move2 1500ms infinite ease;
          animation: move2 1500ms infinite ease;
}
.btn-cont2 .btn2:hover .line-3 {
  -webkit-animation: move3 1500ms infinite ease;
  -moz-animation: move3 1500ms infinite ease;
          animation: move3 1500ms infinite ease;
}
.btn-cont2 .btn2:hover .line-4 {
  -webkit-animation: move4 1500ms infinite ease;
  -moz-animation: move4 1500ms infinite ease;
          animation: move4 1500ms infinite ease;
}
.btn-cont2 .line-1 {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  background-color: white;
  left: 0;
  bottom: 0;
}
.btn-cont2 .line-2 {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  background-color: white;
  left: 0;
  top: 0;
}
.btn-cont2 .line-3 {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  background-color: white;
  right: 0;
  top: 0;
}
.btn-cont2 .line-4 {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  background-color: white;
  right: 0;
  bottom: 0;
}

@-webkit-keyframes move1 {
  0% {
    height: 46px;
    bottom: 0;
  }
  54% {
    height: 0;
    bottom: 46px;
  }
  55% {
    height: 0;
    bottom: 0;
  }
  100% {
    height: 46px;
    bottom: 0;
  }
}

@keyframes move1 {
  0% {
    height: 46px;
    bottom: 0;
  }
  54% {
    height: 0;
    bottom: 46px;
  }
  55% {
    height: 0;
    bottom: 0;
  }
  100% {
    height: 46px;
    bottom: 0;
  }
}




@-webkit-keyframes move2 {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 281px;
    left: 0;
  }
  100% {
    width: 0;
    left: 281px;
  }
}
@keyframes move2 {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 281px;
    left: 0;
  }
  100% {
    width: 0;
    left: 281px;
  }
}





@-webkit-keyframes move3 {
  0% {
    height: 46px;
    top: 0;
  }
  54% {
    height: 0;
    top: 46px;
  }
  55% {
    height: 0;
    top: 0;
  }
  100% {
    height: 46px;
    top: 0;
  }
}
@keyframes move3 {
  0% {
    height: 46px;
    top: 0;
  }
  54% {
    height: 0;
    top: 46px;
  }
  55% {
    height: 0;
    top: 0;
  }
  100% {
    height: 46px;
    top: 0;
  }
}



@-webkit-keyframes move4 {
  0% {
    width: 0;
    right: 0;
  }
  55% {
    width: 280px;
    right: 0;
  }
  100% {
    width: 0;
    right: 280px;
  }
}
@keyframes move4 {
  0% {
    width: 0;
    right: 0;
  }
  55% {
    width: 280px;
    right: 0;
  }
  100% {
    width: 0;
    right: 280px;
  }
}