.grecaptcha-badge{
    margin-bottom: 100px;
}


#page-top {
	width:100%;
	height:60px;
	background-color: var(--color-blue1);
	transition: all .6s;
	border-bottom:solid 1px var(--color-white);
	transform: scale(1);
}

#page-top::after{
	content: "";
	position: absolute;
	top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#page-top:hover{
	background-color: var(--color-blue3);
}


@media screen and (max-width:599px){
#page-top {bottom: 115px;}
}