.preload{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 200;
    background: #F0ECE4;
}
.logo-box{
	text-align: center;
	width: 80%;
	max-width: 600px;
}
#logo1{
	margin-left: calc(50% - 190px);
	width: 0;
	max-width: 390px;
	height: 59px;
	background: url("/assets/img/aus-nz.png") no-repeat;
	background-position: 0 0;
	background-size: auto 59px;
	animation: scrollin 5s 5s ease-in-out;
	animation-fill-mode: forwards;
}
#logo2{
	max-width: 597px;
	margin: 5px 0 25px;
	width: 100%;
}
#logo3{
	font-size: 30px;
	color: #12312A;
	animation: enter 1.6s ease-in-out infinite;
	opacity: 0;
}
.anime{
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    stroke-width:1;
    fill: #8A6D4D;
    animation: draw-sheep 5s linear forwards;
}
@keyframes draw-sheep {
    0% {
        stroke-dashoffset: 500;
    }
    70%{
    	fill:#8A6D4D;
        stroke: #fff;
    }
    100% {
    	fill:#fff;
        stroke: #8A6D4D;
        stroke-dashoffset: 0;
    }
}
@keyframes scrollin {
	0%{
		width: 0;
	}
	100%{
		width: 100%;
	}
}
@keyframes enter{
	0%{
		transform: scale(1);
	}
	50%{
		transform: scale(1.05);
	}
	100%{
		transform: scale(1);
	}
}
@media(max-width: 768px){
	#logo1 {
	    margin-left: calc(50% - 140px);
	    max-width: 290px;
	    height: 45px;
	    background-size: auto 45px;
	}
}
@media(max-width: 450px){
	#logo3{
		font-size: 20px;
	}
	#logo1 {
	    margin-left: calc(50% - 110px);
	    max-width: 230px;
	    height: 35px;
	    background-size: auto 35px;
	}
}