/*
Theme Name: Cainz 2023 Theme V.1.11.1
Author: Oliver Chen and the CAINZ 2023/2024 team
Description: A theme for Cainz at the University of Melbourne
Version: 1.11.1
*/

/**
 * This theme was built using the Bootstrap 4 framework and Font Awesome 4.7 for icons.
 * This .css file contains the animations for the theme, for all other classes, see edits.css  
 *
 * Changelog:
 * V.1.11.1
 * - Updated slide images, event and digest images
 *
 * V.1.11
 * - Updated tab for Our Team page
 * 
 * V.1.10
 * 
 * - Added tabs for Our Team page, sorted writers by their respective team, changed photos to square 
 * 
 * V.1.9
 * 
 * - Created annual edition section and fixed recruitment page
 * 
 * V.1.8
 * 
 * - Created financial fridays section
 * 
 * V.1.7
 * 
 * - Updated Our Team section
 * 
 * V.1.6
 * 
 * - Created sponsors post type, allowing for elementor frontend
 * - Revamped sponsors section, added to header and footer
 * 
 * V.1.5
 *
 * - Created Debates and Annual edition digest sections
 *
 * V.1.3
 *
 * - Updated navbar to allow for dropdown
 * - Images in posts are now responsive
 *
 * V.1.2
 *
 * - Small CSS edits to the event summary section on the front page
 * - Moved custom post types from mu-plugins to functions.php
 * - Added excerpt functionality to the Events post type
 * 
 * V.1.1
 *
 * - Small border and margin changes 
 * - Fixed some responsiveness issues with images
 * - Template images now smaller in size (faster load times)
 */

/**
 * ----------------------------------------
 * animation slide-in-blurred-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-blurred-top {
	0% {
		-webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
		transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
		-webkit-filter: blur(40px);
		filter: blur(40px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0) scaleY(1) scaleX(1);
		transform: translateY(0) scaleY(1) scaleX(1);
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
		-webkit-filter: blur(0);
		filter: blur(0);
		opacity: 1;
	}
}
@keyframes slide-in-blurred-top {
	0% {
		-webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
		transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
		-webkit-filter: blur(40px);
		filter: blur(40px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0) scaleY(1) scaleX(1);
		transform: translateY(0) scaleY(1) scaleX(1);
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
		-webkit-filter: blur(0);
		filter: blur(0);
		opacity: 1;
	}
}

@-webkit-keyframes fade-in-bottom {
	0% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes fade-in-bottom {
	0% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}
