/*
 Theme Name:     Divi Child
 Template:       Divi
 Version:        1.0.0
*/

header {
	transition: all 0.5s ease;
}

header.fixed {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	animation: smoothScroll 0.5s forwards;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-60px);
	}
	100% {
		transform: translateY(0px);
	}
}