@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Yantramanav:wght@100;300;400;500;700;900&display=swap');


.back-to-top{
	position: fixed;
	right: 50px;
	bottom: 50px;
	z-index: 2000;
    cursor: pointer;
	display: block;
	
}


.back-top-btn{
	position: relative;
	width: 50px;
	height: 50px;
	transition: all 0.3s ease; 
}

.top-btn1{
	position: absolute;
	left: 0;
	top: 0;
	opacity: 1;
	transition: opacity 0.3s ease; 
}

.top-btn2{
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: opacity 0.3s ease; 
}

.back-to-top:hover .top-btn2{
	opacity: 1;
}

.back-to-top:hover{
	transform: scale(1.08);
}

