/*
Theme Name: Overdrive
Theme URI: 
Author: Performance Driven Marketing
Author URI: https://performancedrivenmarketing.com
Description: PDM's fully Block-based Full Site Editing theme.
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 5.7
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: overdrive
Tags: 
*/

/* scroll anim */

.scroll-item {
	opacity: 0;
	transform: translatey(50px);
	transition: .5s;
}

.active-scroll-item {
	transform: none;
	opacity: 1;
}

.main-hero .wp-block-heading,
.main-hero p {
	opacity: 0;
	animation: fadeHIn 1s forwards;
}

.main-hero p {
	animation-delay: .4s;
}

@keyframes fadeHIn {
	from {
		opacity: 0;
		transform: scale(1.1);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.5s; 
}