@font-face {
	font-family: "Lato";
	src: url("assets/fonts/Lato-Black.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
}
@font-face {
	font-family: "Futura";
	src: url("assets/fonts/FuturaPT-ExtraBold.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
}
@font-face {
	font-family: "FuturaPT";
	src: url("assets/fonts/FuturaPT-Heavy.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
}
body{
	font-family: 'Roboto', sans-serif;
	margin: 0;
	color: #212121;
	font-size: 16px;
	line-height: 1.1;
	width: 100%;
	height: 100%;
	background-color: #fff;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}
#bot{
	min-height: 100vh;
	widows: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
#bot .logo{
	position: absolute;
	left: 50px;
	top: 50px;

}
#bot .line{
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	background-size: auto;
	background-position: bottom right;
	background-repeat: no-repeat;
}
#bot .logo_bg{
	position: absolute;
	bottom: 50px;
	left: 50px;
}
#bot h1{
	color: #fff;
	text-transform: uppercase;
	font-size: 40px;
	font-family: "FuturaPT";
}




#bot .btn {
	display: inline-block;
	width: 90px;
	height: 90px;
	background: transparent;
	margin: 10px;
	border-radius: 20px;
	color: #e95229;
	overflow: hidden;
	position: relative;
	text-align: center;
}
#bot .btn i {
	line-height: 90px;
	font-size: 46px;
	transition: 0.2s linear;
}
#bot .btn:hover i {
	transform: scale(1.2);
	color: #fff;
}
#bot .btn::before {
	content: '';
	position: absolute;
	width: 120%;
	height: 120%;
	background: linear-gradient(45deg, #e95229 5%, #cf4621);;
	transform: rotate(15deg);
	left: -110%;
	top: 90%;
}
#bot .btn::hover {
	box-shadow: 0 5px 15px -5px #00000070;
}

#bot .btn:hover::before {
	animation: flash 0.7s 1;
	top: -10%;
	left: -10%;
}


@media only screen and (max-width: 1023px){
	#bot h1 {
		max-width: 500px;
	    font-size: 40px;
	    text-align: center;
	}
	#bot .line{

	}
	#bot .line{
		background-size: auto;
		background-position: 150px bottom;
		background-repeat: no-repeat;
	}
	#bot .btn i {
	    line-height: 90px;
	    font-size: 56px;
	}
}

@media only screen and (max-width: 767px){
	#bot h1 {
		max-width: 380px;
	    font-size: 30px;
	    text-align: center;
	}
	#bot .logo {
	    position: absolute;
	    left: 30px;
	    top: 30px;
	}
	#bot .logo img{
		max-width: 160px; 
	}
	#bot .line{
		background-size: 130%;
		background-position: 100px bottom;
		background-repeat: no-repeat;
	}
	#bot .btn i {
	    line-height: 90px;
	    font-size: 50px;
	}
	#bot .logo_bg {
	    bottom: 30px;
	    left: 30px;
	}
	#bot .logo_bg img{
		max-width: 200px; 
	}
}



@keyframes flash {
	0% {
		left: -100%;
		top: 90%;
	}
	50% {
		left: 10%;
		top: -30%;
	}
	100% {
		left: -10%;
		top: -10%;
	}
}