a.big-button{
	position: fixed;
    z-index: 999;
    top: 2rem;
    right: 3rem;
	padding: 20px 50px 30px 50px;
	text-decoration: none;
	color: hsl(0, 0%, 100%) !important;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.722);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);

	-webkit-backdrop-filter: blur(5px);
	width: 280px;

	display: flex;
	justify-content: center;

}

a.big-button #to{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    font-size: 0.7rem;
	font-weight: bold;
}

#big-button-strip{
    position: fixed;
    top: 6.2rem;
    right: 3rem;
    z-index: 999;
    background-color: #ffffff75;
    padding: 4px 50px;
    /* bottom: -24px; */
    /* left: 0; */
    text-align: center;
    color: black;
    width: 280px;
    backdrop-filter: blur(5px);
	background: rgb(255,255,255);
background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255, 255, 255, 0.711) 25%, rgba(255, 255, 255, 0.651) 75%, rgba(255,255,255,0) 100%);

}


@media (max-width: 800px) {
    a.big-button, #big-button-stri{
		width: 95%;
		text-align: center;
		right: 50%;
		transform: translateX(50%);
		top: 89%;
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}

	#big-button-strip{
top: 0;
	
	}
}



a.big-button span{
	position: absolute;
	display: block;
	transition: 0.5s ease;


}

a.big-button span:nth-child(1){
	top: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #E30613;
}

a.big-button:hover span:nth-child(1){
	width: 100%;
	height: 1px;
	transform: translateX(100%);
}

a.big-button span:nth-child(2){
	top: 0;
	left: 0;
	width: 1px;
	height: 0;
	background: #E30613;
}

a.big-button:hover span:nth-child(2){
	height: 100%;
	transform: translateY(100%);
}

a.big-button span:nth-child(3){
	bottom: 0;
	right: 0;
	width: 0;
	height: 1px;
	background: #E30613;
}

a.big-button:hover span:nth-child(3){
	width: 100%;
	height: 1px;
	transform: translateX(-100%);
}

a.big-button span:nth-child(4){
	bottom: 0;
	right: 0;
	width: 1px;
	height: 0;
	background: #E30613;
}

a.big-button:hover span:nth-child(4){
	height: 100%;
	transform: translateY(-100%);
}




.new-animate-arrow-icon {
    width: 48px;
    height: 48px;
    /* z-index: 100; */
    position: absolute;
    /* fill: white; */
    top: 75vh;
    left: 50vw;
    transform: translateX(-50%);
    cursor: pointer;
    transition-duration: 0.5s;
}

.new-animate-arrow-icon:hover {
    height: 64px;
    transform: translateX(-50%) translateY(16px);
}

.new-animate-arrow-icon:active {
    height: 64px;
    transform: translateX(-50%) translateY(20px);
}
.new-animate-arrow-icon svg line{
    transition-duration: 0.5s;
}

.new-animate-arrow-icon:hover svg line {
    stroke: #E30613;
}