@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400");



:root {
	--color-primary-500: #FFEB3B;
	--color-primary-600: #FDD835;
	--color-primary-900: #F57F17;
	--color-secondary-500: #009688;
	--color-secondary-900: #004D40;
	--font-primary: "Montserrat", sans-serif;
}


.btn1 {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 1rem 5rem;
	background: rgba(2, 9, 78, 0.692);
	background: linear-gradient(125deg, rgb(1, 9, 75) 54%, rgb(34, 34, 34) 100%);	
	color: rgb(233, 232, 232);
	font-family: inherit;
	font-size: 100%;
	font-weight: 700;
    line-height: normal;
	/* border: rgb(160, 160, 160) 1px solid; */
    border-radius: 0.4rem;
  /* margin-left: 20px; */
  -webkit-box-shadow: 0px 0px 133px -27px rgba(0,0,0,1);
  -moz-box-shadow: 0px 0px 133px -27px rgba(0,0,0,1);
  box-shadow: 0px 0px 133px -27px rgba(0,0,0,1);
	appearance: none;
	cursor: pointer;
	transition: background 1s, box-shadow 800ms;
}

.btn1:hover {
	background: rgb(9, 23, 221)!important;
	color: aliceblue!important;
	box-shadow: -2px 2px 16px rgba(0, 0, 0, 0.6);
}

.btn1:active, .btn1:focus {
	outline: none;
}

.btn1:active {
	box-shadow: -4px 4px 24px rgba(0, 0, 0, 0.8);
}
.btn1 .text {
	position: relative;
	z-index: 2;
}

.btn1 .dot {
	position: absolute;
	z-index: -1;
	display: block;
	width: 200px;
	height: 10px;
	transform-origin: 5px 5px;
	pointer-events: none;
}

.btn1 .dot:nth-child(1) {
	top: 50%;
	left: 100%;
	transform: translate3d(-10px, -5px, 0);
}

.btn1 .dot:nth-child(2) {
	bottom: 0;
	left: 100%;
	transform: translate3d(-10px, 0, 0) rotate(45deg);
}
.btn1 .dot:nth-child(3) {
	bottom: 0;
	left: 50%;
	transform: translate3d(-5px, 0, 0) rotate(90deg);
}

.btn1 .dot:nth-child(4) {
	bottom: 0;
	left: 0;
	transform: rotate(135deg);
}

.btn1 .dot:nth-child(5) {
	top: 50%;
	left: 0;
	transform: translate3d(0, -5px, 0) rotate(180deg);
}

.btn1 .dot:nth-child(6) {
	top: 0;
	left: 0;
	transform: rotate(225deg);
}

.btn1 .dot:nth-child(7) {
	top: 0;
	left: 50%;
	transform: translate3d(-5px, 0, 0) rotate(270deg);
}

.btn1 .dot:nth-child(8) {
	top: 0;
	left: 100%;
	transform: translate3d(-10px, 0, 0) rotate(315deg);
}
.btn1 .dot::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 6px;
	height: 6px;
	background-color: var(--color-primary-500);
	border-radius: 50%;
	offset-path: path("M0 1c7.1 0 10.7 2 14.3 4s7.1 4 14.3 4 10.7-2 14.3-4 7.2-4 14.3-4 10.7 2 14.3 4 7.1 4 14.3 4 10.7-2 14.3-4 7.1-4 14.3-4 10.7 2 14.3 4 7.1 4 14.3 4 10.7-2 14.3-4 7.1-4 14.3-4 10.7 2 14.3 4 7.1 4 14.3 4");
	offset-distance: 0;
	pointer-events: none;
	content: "";
}

.btn1.is-animating .dot::before {
	animation: dot 750ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes dot {
	0% {
		offset-distance: 0%;
		opacity: 1;
	}

	100% {
		offset-distance: 100%;
		opacity: 0;
	}
}