
@charset "UTF-8";

.nav-primary {
	min-width: 0;
}

.nav-primary ul {
	display: flex;
	flex-direction: row;
	align-items: center;
	list-style: none;
	margin: 0;
	padding-top: 1.5rem;
	font-size: 18px;
}

.nav-primary ul .menu-buttons {
	padding: .8rem;
}

.nav-primary ul .menu-buttons a {
	display: inline-block;
	padding: .5rem 1rem;
	text-decoration: none;
	color: #000;
	transition: color .3s ease;
}

.nav-primary ul .menu-buttons a:hover, .nav-primary ul .menu-buttons a:focus {
	color: gray;
}

.nav-primary ul li:last-child {
	border-bottom: none;
}

.banner {
	background-color: #fff;
	padding: 10px 50px;
	position: sticky;
	top: 0;
	right: 0;
	left: 0;
	z-index: 999;
	text-wrap: nowrap;
	width: 100%;
	transition: opacity .3s ease-in-out;
	font-family: Helvetica Neue, sans-serif;
	align-items: center;
}

.banner .brand {
	flex: 0 0 auto;
}

.banner .brand img {
	display: block !important;
	height: 97px !important;
	width: auto !important;
	max-width: none !important;
	transform: none !important;
	-o-object-fit: scale-down;
	object-fit: scale-down;
}

.banner>* {
	min-width: 0;
}

.banner .magnifying-glass-desktop {
	display: block !important;
	height: 22px;
	width: auto;
	margin-left: 20px;
}

.banner .magnifying-glass-mobile {
	display: none;
	height: 30px;
	width: auto;
	margin: auto;
}

.banner #searchOverlay {
	transition: opacity .3s ease;
}

.banner #searchOverlay.hidden {
	opacity: 0;
	pointer-events: none;
}

.banner #searchOverlay:not(.hidden) {
	opacity: 1;
	pointer-events: auto;
}

.banner .openSearchBtn:focus, .banner .openSearchBtn:focus-visible {
	outline: none !important;
	box-shadow: none !important;
}

.banner .mobile-menu-module {
	display: flex;
	flex-direction: row;
	position: absolute;
	top: 35px;
	right: 35px;
	gap: 1rem;
	z-index: 9999;
}

.donate_button {
	background-color: #416fb3 !important;
	color: #fff !important;
	text-align: center !important;
	text-decoration: none !important;
	display: inline-block;
	font-size: 15px !important;
	border-radius: 30px !important;
	padding: 19px 28px !important;
	margin-top: 1.2rem !important;
	transition: all .3s ease-in-out !important;
}

.donate_button:hover {
	background-color: #6089c6 !important;
	color: #fff !important;
}

.donate-desktop {
	display: inline-block;
}

.donate-mobile {
	display: none;
}

.page-header {
	padding-top: 0;
}

.hamburger {
	display: none !important;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	position: relative;
	z-index: 99999;
}

.nav-primary.active {
	display: flex;
	top: 0;
}

@media (max-width: 767px) {
	.banner .brand img {
		height: 97px !important;
	}
	
	.hamburger {
		display: block !important;
	}
	
	.banner .magnifying-glass-desktop {
		display: none !important;
	}
	
	.magnifying-glass-mobile {
		display: block !important;
	}
	
	.nav-primary {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		background: #fff;
		box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
		border-radius: 0 0 10px 10px;
		padding: 15px 0;
		z-index: 999;
		height: 800px;
	}
	
	.nav-primary.active {
		display: flex !important;
		padding-top: 30px;
	}
	
	.nav-primary ul {
		flex-direction: column;
		width: 100%;
	}
	
	.nav-primary ul li {
		padding: 12px 0;
		border-bottom: 1px solid #ddd;
	}
	
	.nav-primary ul li a {
		font-size: 20px;
	}
	
	.donate_button, .donate-desktop {
		display: none;
	}
	
	.donate-mobile {
		display: flex;
		justify-content: center;
		padding-top: 10px;
	}
	
	.donate-mobile .donate_button {
		display: block;
		margin: auto;
		text-align: center;
		color: #fff;
	}
}

@media (max-width: 880px) {
	.nav-primary ul .menu-buttons {
		padding: .6rem;
		font-size: 13px;
	}
}

main {
	background-color: #fff;
}

main .features-section {
	background-color: #fff;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 10px;
}

main .features-section .features-row {
	display: flex;
	margin: 50px;
	align-self: center;
}

main .features-section .features-row .features-cell {
	flex: 25%;
	padding: 15px 10px 30px;
}

main .features-section .features-row .features-cell img {
	margin: auto;
}

main .features-section .features-row .features-cell h2 {
	margin-top: 40px;
	margin-bottom: 30px;
}

main .features-section .features-row .features-cell p {
	padding: 1px;
	margin-top: 2px;
}

main .spotlight-section {
	display: flex;
	flex-direction: column;
	background: #000;
	color: #fff;
	padding: 25px 40px 80px;
}

main .spotlight-section .spotlight-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	width: 95%;
	align-self: center;
}

main .spotlight-section .spotlight-container .spotlight-main {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: auto;
}

main .spotlight-section .spotlight-container .home-video-container {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%;
}

main .spotlight-section .spotlight-container .home-video-container .responsive-iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

main .spotlight-section .spotlight-container .spotlight-side-container {
	display: flex;
	gap: 15px;
	float: left;
	margin: auto;
	width: 100%;
}

@media (max-width: 767px) {
	main .spotlight-section .spotlight-container .spotlight-side-container {
		width: 100%;
		flex-direction: column;
	}
}

main .spotlight-section .spotlight-container .spotlight-side-container .side-individual-cell {
	width: 100%;
}

main .spotlight-section .spotlight-container .spotlight-side-container .side-individual-cell .side-home-video-container {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%;
}

main .spotlight-section .spotlight-container .spotlight-side-container .side-individual-cell .side-home-video-container .responsive-iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

main .spotlight-section h1 {
	font-size: 40px;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

@media (max-width: 767px) {
	main .features-row {
		display: flex;
		flex-direction: column;
	}
	
	main .breaking-news-container {
		display: flex;
		flex-direction: column;
	}
}

main .join-the-resistance {
	display: flex;
	flex-direction: column;
	padding: 150px 65px 130px;
	color: #000;
	background-color: #fff;
	margin: auto;
	text-align: center;
}

main .hero {
	position: relative;
	background: url("https://freespeech.org/wp-content/uploads/2025/08/hand-holding-bg-darken15.png") no-repeat center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 500px;
	text-align: left;
	padding: 20px;
}

main .hero .hero-content {
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
	width: 100%;
	max-width: 1200px;
	z-index: 0;
}

main .hero .hero-content .text-content {
	flex: 1;
}

main .hero .hero-content .text-content h3 {
	font-size: 22px;
	font-weight: 300;
}

main .hero .hero-content .text-content h1 {
	font-size: 38px;
	font-weight: 700;
	margin: 10px 0;
}

main .hero .hero-content .text-content p {
	font-size: 16px;
	margin: auto;
}

main .hero .hero-content .subscribe {
	flex: 1;
	text-align: right;
}

main .hero .hero-content .subscribe h3 {
	font-size: 22px;
	margin-bottom: 5px;
}

main .hero .hero-content .subscribe p {
	font-size: 14px;
}

main .hero .hero-content .subscribe form {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

main .hero .hero-content .subscribe form input {
	flex: 1;
	padding: 10px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	width: 16em;
}

main .hero .hero-content .subscribe form button {
	background-color: #416fb3;
	color: #fff;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 15px;
	border-radius: 30px;
	transition-duration: .4s;
	width: 100px;
	height: 65px;
	margin: auto;
}

main .hero .hero-content .subscribe form button:hover {
	background: #155a8a;
}

main .hero .hero-content .subscribe small {
	display: block;
	font-size: 12px;
	margin-top: 5px;
}

main .hero .wave-shape {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 100px;
	background: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1440 320\"><path fill=\"%23ffffff\" fill-opacity=\"1\" d=\"M0,160L80,149.3C160,139,320,117,480,138.7C640,160,800,224,960,240C1120,256,1280,224,1360,208L1440,192L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z\"></path></svg>") no-repeat bottom/cover;
}

@media (max-width: 768px) {
	main .hero {
		text-align: center;
		padding: 50px;
	}
	
	main .hero .hero-content {
		flex-direction: column;
		gap: 30px;
	}
	
	main .hero .hero-content .subscribe {
		text-align: center;
	}
	
	main .hero .hero-content .subscribe form {
		flex-direction: column;
	}
	
	main .hero .hero-content .subscribe input {
		width: 100%;
		margin: auto;
	}
}

main .watch-on-otts {
	color: #000;
	background-color: #fff;
	text-align: center;
	padding-bottom: 100px;
	padding-top: 100px;
	justify-content: center;
}

main .watch-on-otts img {
	margin: auto;
	padding: 20px;
}

main .watch-on-otts h1 {
	font-size: 40px;
	padding-bottom: 20px;
}

main .watch-on-otts p {
	padding: 40px;
}

main .watch-on-otts .app-icons {
	display: flex;
	padding-bottom: 70px;
}

main .watch-on-otts .app-icons img {
	margin: auto;
	padding: 20px;
}

@media (max-width: 767px) {
	main .app-icons {
		display: flex;
		flex-direction: column;
	}
}

main .news-content-section {
	display: flex;
	flex-direction: column;
	color: #fff;
	background-color: #000;
	text-align: center;
	padding: 40px 40px 100px;
	align-items: stretch;
}

main .news-content-section .news-thumbnails-row {
	display: flex;
	padding: 20px 20px 50px;
}

main .news-content-section .news-thumbnails-row .news-thumbnail {
	display: flex;
	flex-direction: column;
	padding: 5px;
	margin: auto;
}

main .news-content-section .news-thumbnails-row .news-thumbnail img {
	width: auto;
}

main .news-content-section .news-thumbnails-row .news-thumbnail h2 {
	font-size: 20px;
	padding: 5px;
}

main .news-content-section h1 {
	font-size: 40px;
}

main .news-content-section p {
	padding: 40px;
}

@media (max-width: 767px) {
	main .news-thumbnails-row {
		display: flex;
		flex-direction: column;
	}
	
	main .news-thumbnails-row .news-thumbnail {
		width: 100%;
		height: 250px;
		-o-object-fit: cover;
		object-fit: cover;
		overflow: hidden;
	}
	
	main .news-thumbnails-row .news-thumbnail img {
		width: 100%;
		height: 250px;
		-o-object-fit: cover;
		object-fit: cover;
		overflow: hidden;
	}
}

main .films-content-section {
	color: #fff;
	background-color: #000;
	text-align: center;
	padding: 60px;
}

main .films-content-section img {
	padding: 15px 20px 80px;
}

main .films-content-section p {
	padding: 60px;
}

main .donate-section {
	position: relative;
	background: url("https://cdn-ilegaep.nitrocdn.com/ZHmiPvNiMVrSCGuDHSNpzSSieOwyqKOs/assets/images/optimized/rev-19928ac/freespeech.org/wp-content/uploads/2025/10/donate-splash-bg.webp") no-repeat center/cover;
	height: 70vh;
	background-size: cover;
	background-position: center;
	padding-bottom: 100px;
}

main .donate-overlay {
	background: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
}

main .donate-container {
	position: relative;
	z-index: 20;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	padding: 3rem 1.5rem;
	height: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	main .donate-container {
		flex-direction: row;
		justify-content: space-between;
	}
}

main .donate-text {
	color: #fff;
	max-width: 600px;
}

main .donate-text h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

main .donate-text p {
	margin-bottom: 1rem;
	line-height: 1.6;
}

main .donate-widget {
	background: #fff;
	color: #000;
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
	max-width: 360px;
	width: 100%;
}

main .faq-container {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding: 4rem 2rem;
	text-align: center;
	background-color: #fff;
}

main .faq-container h1 {
	font-size: 40px;
	text-align: center;
	padding-bottom: 60px;
}

main .faq-container .main_button {
	margin-top: 60px;
}

main .faq-item {
	border-bottom-width: 1px;
}

main .faq-toggle {
	display: flex;
	width: 100%;
	cursor: pointer;
	justify-content: space-between;
	padding-top: 1rem;
	padding-bottom: 1rem;
	text-align: left;
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 600;
}

main .faq-content {
	max-height: 0px;
	overflow: hidden;
	--tw-text-opacity: 1;
	color: rgb(55, 65, 81, var(--tw-text-opacity, 1));
	transition-property: all;
	transition-duration: .3s;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	text-align: left;
}

main .faq-content p {
	padding-bottom: 20px;
	padding-top: 20px;
}

main .icon {
	transition-property: transform;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .3s;
}

.main_button {
	background-color: #416fb3;
	color: #fff;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	border-radius: 30px;
	transition-duration: .4s;
	width: 300px;
	height: 65px;
	margin: auto;
	white-space: nowrap;
}

.main_button:hover {
	background-color: #6089c6;
	color: #fff;
}

.contact-container {
	max-width: 1200px;
	margin: 2rem auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 2rem;
	padding: 0 50px;
}

.left-column {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.left-column h1 {
	margin-top: 0;
}

.contact-info, .mailing-address {
	margin-bottom: 2rem;
}

.contact-info h3, .mailing-address h3 {
	margin-bottom: 1rem;
}

.social-section {
	margin-top: 1rem;
}

.social-links {
	display: flex;
}

.social-icons {
	margin-right: 1rem;
	text-decoration: none;
	color: #06c;
}

@media (max-width: 768px) {
	.contact-container {
		grid-template-columns: 1fr;
	}
}

.image-container {
	width: 100%;
	height: 550px;
	overflow: hidden;
}

.image-container img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.meet-the-team {
	padding: 2rem 1rem;
	text-align: center;
}

.meet-the-team h2 {
	margin-bottom: 2rem;
	padding: 30px 0;
}

.team-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	justify-items: center;
}

@media (min-width: 768px) {
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.team-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.team-member {
	text-align: center;
	max-width: 240px;
}

.team-member img {
	width: 240px;
	height: 240px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	margin-bottom: 1rem;
}

.team-member h3 {
	margin-bottom: .5rem;
	font-size: 1.1rem;
}

.team-member p {
	margin: 0;
	font-size: 1rem;
	color: #333;
}

.meet-the-board {
	padding: 2rem 1rem;
	text-align: center;
}

.meet-the-board h2 {
	margin-bottom: 2rem;
	padding: 30px 0;
}

.board-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	justify-items: center;
}

@media (min-width: 768px) {
	.board-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.board-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.board-member {
	text-align: center;
	max-width: 240px;
}

.board-member img {
	width: 240px;
	height: 240px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	margin-bottom: 1rem;
}

.board-member h3 {
	margin-bottom: .5rem;
	font-size: 1.1rem;
}

.board-member p {
	margin: 0;
	font-size: 1rem;
	color: #333;
}

.meet-the-hosts {
	padding: 2rem 1rem;
	text-align: center;
}

.meet-the-hosts h2 {
	margin-bottom: 2rem;
	padding: 30px 0;
}

.hosts-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	justify-items: center;
}

@media (min-width: 768px) {
	.hosts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.hosts-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.host-member {
	text-align: center;
	max-width: 240px;
}

.host-member img {
	width: 240px;
	height: 240px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	margin-bottom: 1rem;
}

.host-member h3 {
	margin-bottom: .5rem;
	font-size: 1.1rem;
}

.host-member p {
	margin: 0;
	font-size: 1rem;
	color: #333;
}

.host-program {
	font-size: .9rem;
	font-weight: 300;
	color: #666;
	margin-top: .5rem;
}

.epg-container {
	width: 100%;
	overflow: auto;
	padding: 20px;
	display: none;
	flex-direction: row;
	position: relative;
}

.epg-container-full {
	width: 100%;
	overflow: auto;
	padding: 20px;
	display: flex;
	flex-direction: row;
	position: relative;
}

.epg-header {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	background: #416fb3;
	font-size: 18px;
	font-weight: 700;
}

.epg-info {
	display: flex;
	justify-content: space-between;
	padding: 10px;
	background: #000;
	margin-bottom: 10px;
	align-items: center;
}

.epg-section {
	width: 100%;
	padding: 10px;
	text-align: center;
	background: #fff;
	margin: 5px;
	border-radius: 5px;
	border: 1px solid #416fb3;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
}

.epg-section h2 {
	font-size: 16px;
	margin-bottom: 5px;
}

.epg-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px;
	margin-right: 10px;
	border-radius: 5px;
	background: #fff;
	min-width: 250px;
	position: relative;
}

.epg-program {
	font-weight: 700;
	margin-bottom: 5px;
	text-align: center;
	font-size: 18px;
}

.epg-time {
	font-size: 14px;
	color: #696969;
	margin-bottom: 5px;
}

.epg-description {
	font-size: 12px;
	color: #000;
	text-align: center;
	margin-top: 5px;
}

.progress-bar {
	width: 100%;
	height: 5px;
	background: #d3d3d3;
	position: relative;
	margin-top: 5px;
}

.progress-bar .progress {
	height: 100%;
	background: #416fb3;
	width: 0;
	transition: width 1s linear;
}

.epg-wrapper {
	overflow-x: auto;
	overflow-y: visible;
	white-space: nowrap;
}

.epg-date-row {
	display: inline-flex;
	position: sticky;
	top: 0;
	background: #416fb3;
	z-index: 10;
}

.epg-date-cell {
	display: inline-block;
	width: 250px;
	padding: .75rem 1rem;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
}

.carousel-btn {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	background: #416fb3;
	color: #fff;
	border: none;
	padding: .75rem 1rem;
	font-size: 20px;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .5s ease, visibility .5s ease;
}

.carousel-btn-show {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

.carousel-btn-hidden {
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.carousel-btn:hover {
	background-color: #2e5396;
}

.carousel-btn.left-0 {
	left: 10px;
}

.carousel-btn.right-0 {
	right: 10px;
}

.trending-bar {
	background-color: #000;
	color: #fff;
	font-size: 2vw;
	marquee-speed: fast;
	margin: 0;
	padding: 20px;
}

@media (max-width: 768px) {
	.epg-info {
		flex-direction: column;
	}
	
	.carousel-btn {
		display: none;
	}
}

/*!
* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author Jonathan Suh @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers
*/
.hamburger {
	padding: 15px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: .15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}

.hamburger:hover, .hamburger.is-active:hover {
	opacity: .7;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:before, .hamburger.is-active .hamburger-inner:after {
	background-color: #000;
}

.hamburger-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

.hamburger-inner, .hamburger-inner:before, .hamburger-inner:after {
	width: 40px;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: .15s;
	transition-timing-function: ease;
}

.hamburger-inner:before, .hamburger-inner:after {
	content: "";
	display: block;
}

.hamburger-inner:before {
	top: -10px;
}

.hamburger-inner:after {
	bottom: -10px;
}

.hamburger--3dx .hamburger-box {
	perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
	transition: transform .15s cubic-bezier(.645, .045, .355, 1), background-color 0s .1s cubic-bezier(.645, .045, .355, 1);
}

.hamburger--3dx .hamburger-inner:before, .hamburger--3dx .hamburger-inner:after {
	transition: transform 0s .1s cubic-bezier(.645, .045, .355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
	background-color: transparent !important;
	transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner:before {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner:after {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dx-r .hamburger-box {
	perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
	transition: transform .15s cubic-bezier(.645, .045, .355, 1), background-color 0s .1s cubic-bezier(.645, .045, .355, 1);
}

.hamburger--3dx-r .hamburger-inner:before, .hamburger--3dx-r .hamburger-inner:after {
	transition: transform 0s .1s cubic-bezier(.645, .045, .355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
	background-color: transparent !important;
	transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner:before {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner:after {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dy .hamburger-box {
	perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
	transition: transform .15s cubic-bezier(.645, .045, .355, 1), background-color 0s .1s cubic-bezier(.645, .045, .355, 1);
}

.hamburger--3dy .hamburger-inner:before, .hamburger--3dy .hamburger-inner:after {
	transition: transform 0s .1s cubic-bezier(.645, .045, .355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
	background-color: transparent !important;
	transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner:before {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner:after {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dy-r .hamburger-box {
	perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
	transition: transform .15s cubic-bezier(.645, .045, .355, 1), background-color 0s .1s cubic-bezier(.645, .045, .355, 1);
}

.hamburger--3dy-r .hamburger-inner:before, .hamburger--3dy-r .hamburger-inner:after {
	transition: transform 0s .1s cubic-bezier(.645, .045, .355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
	background-color: transparent !important;
	transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner:before {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner:after {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dxy .hamburger-box {
	perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
	transition: transform .15s cubic-bezier(.645, .045, .355, 1), background-color 0s .1s cubic-bezier(.645, .045, .355, 1);
}

.hamburger--3dxy .hamburger-inner:before, .hamburger--3dxy .hamburger-inner:after {
	transition: transform 0s .1s cubic-bezier(.645, .045, .355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
	background-color: transparent !important;
	transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner:before {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner:after {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dxy-r .hamburger-box {
	perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
	transition: transform .15s cubic-bezier(.645, .045, .355, 1), background-color 0s .1s cubic-bezier(.645, .045, .355, 1);
}

.hamburger--3dxy-r .hamburger-inner:before, .hamburger--3dxy-r .hamburger-inner:after {
	transition: transform 0s .1s cubic-bezier(.645, .045, .355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
	background-color: transparent !important;
	transform: rotateX(180deg) rotateY(180deg) rotate(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner:before {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner:after {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--arrow.is-active .hamburger-inner:before {
	transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(.7);
}

.hamburger--arrow.is-active .hamburger-inner:after {
	transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(.7);
}

.hamburger--arrow-r.is-active .hamburger-inner:before {
	transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(.7);
}

.hamburger--arrow-r.is-active .hamburger-inner:after {
	transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(.7);
}

.hamburger--arrowalt .hamburger-inner:before {
	transition: top .1s .1s ease, transform .1s cubic-bezier(.165, .84, .44, 1);
}

.hamburger--arrowalt .hamburger-inner:after {
	transition: bottom .1s .1s ease, transform .1s cubic-bezier(.165, .84, .44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner:before {
	top: 0;
	transform: translate3d(-8px, -10px, 0) rotate(-45deg) scaleX(.7);
	transition: top .1s ease, transform .1s .1s cubic-bezier(.895, .03, .685, .22);
}

.hamburger--arrowalt.is-active .hamburger-inner:after {
	bottom: 0;
	transform: translate3d(-8px, 10px, 0) rotate(45deg) scaleX(.7);
	transition: bottom .1s ease, transform .1s .1s cubic-bezier(.895, .03, .685, .22);
}

.hamburger--arrowalt-r .hamburger-inner:before {
	transition: top .1s .1s ease, transform .1s cubic-bezier(.165, .84, .44, 1);
}

.hamburger--arrowalt-r .hamburger-inner:after {
	transition: bottom .1s .1s ease, transform .1s cubic-bezier(.165, .84, .44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner:before {
	top: 0;
	transform: translate3d(8px, -10px, 0) rotate(45deg) scaleX(.7);
	transition: top .1s ease, transform .1s .1s cubic-bezier(.895, .03, .685, .22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner:after {
	bottom: 0;
	transform: translate3d(8px, 10px, 0) rotate(-45deg) scaleX(.7);
	transition: bottom .1s ease, transform .1s .1s cubic-bezier(.895, .03, .685, .22);
}

.hamburger--arrowturn.is-active .hamburger-inner {
	transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner:before {
	transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(.7);
}

.hamburger--arrowturn.is-active .hamburger-inner:after {
	transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(.7);
}

.hamburger--arrowturn-r.is-active .hamburger-inner {
	transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner:before {
	transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(.7);
}

.hamburger--arrowturn-r.is-active .hamburger-inner:after {
	transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(.7);
}

.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner:before, .hamburger--boring .hamburger-inner:after {
	transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
	transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner:before {
	top: 0;
	opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(-90deg);
}

.hamburger--collapse .hamburger-inner {
	top: auto;
	bottom: 0;
	transition-duration: .13s;
	transition-delay: .13s;
	transition-timing-function: cubic-bezier(.55, .055, .675, .19);
}

.hamburger--collapse .hamburger-inner:after {
	top: -20px;
	transition: top .2s .2s cubic-bezier(.33333, .66667, .66667, 1), opacity .1s linear;
}

.hamburger--collapse .hamburger-inner:before {
	transition: top .12s .2s cubic-bezier(.33333, .66667, .66667, 1), transform .13s cubic-bezier(.55, .055, .675, .19);
}

.hamburger--collapse.is-active .hamburger-inner {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
	transition-delay: .22s;
	transition-timing-function: cubic-bezier(.215, .61, .355, 1);
}

.hamburger--collapse.is-active .hamburger-inner:after {
	top: 0;
	opacity: 0;
	transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s .22s linear;
}

.hamburger--collapse.is-active .hamburger-inner:before {
	top: 0;
	transform: rotate(-90deg);
	transition: top .1s .16s cubic-bezier(.33333, 0, .66667, .33333), transform .13s .25s cubic-bezier(.215, .61, .355, 1);
}

.hamburger--collapse-r .hamburger-inner {
	top: auto;
	bottom: 0;
	transition-duration: .13s;
	transition-delay: .13s;
	transition-timing-function: cubic-bezier(.55, .055, .675, .19);
}

.hamburger--collapse-r .hamburger-inner:after {
	top: -20px;
	transition: top .2s .2s cubic-bezier(.33333, .66667, .66667, 1), opacity .1s linear;
}

.hamburger--collapse-r .hamburger-inner:before {
	transition: top .12s .2s cubic-bezier(.33333, .66667, .66667, 1), transform .13s cubic-bezier(.55, .055, .675, .19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
	transform: translate3d(0, -10px, 0) rotate(45deg);
	transition-delay: .22s;
	transition-timing-function: cubic-bezier(.215, .61, .355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner:after {
	top: 0;
	opacity: 0;
	transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s .22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner:before {
	top: 0;
	transform: rotate(90deg);
	transition: top .1s .16s cubic-bezier(.33333, 0, .66667, .33333), transform .13s .25s cubic-bezier(.215, .61, .355, 1);
}

.hamburger--elastic .hamburger-inner {
	top: 2px;
	transition-duration: .275s;
	transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
}

.hamburger--elastic .hamburger-inner:before {
	top: 10px;
	transition: opacity .125s .275s ease;
}

.hamburger--elastic .hamburger-inner:after {
	top: 20px;
	transition: transform .275s cubic-bezier(.68, -.55, .265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
	transform: translate3d(0, 10px, 0) rotate(135deg);
	transition-delay: 75ms;
}

.hamburger--elastic.is-active .hamburger-inner:before {
	transition-delay: 0s;
	opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner:after {
	transform: translate3d(0, -20px, 0) rotate(-270deg);
	transition-delay: 75ms;
}

.hamburger--elastic-r .hamburger-inner {
	top: 2px;
	transition-duration: .275s;
	transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
}

.hamburger--elastic-r .hamburger-inner:before {
	top: 10px;
	transition: opacity .125s .275s ease;
}

.hamburger--elastic-r .hamburger-inner:after {
	top: 20px;
	transition: transform .275s cubic-bezier(.68, -.55, .265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
	transform: translate3d(0, 10px, 0) rotate(-135deg);
	transition-delay: 75ms;
}

.hamburger--elastic-r.is-active .hamburger-inner:before {
	transition-delay: 0s;
	opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner:after {
	transform: translate3d(0, -20px, 0) rotate(270deg);
	transition-delay: 75ms;
}

.hamburger--emphatic {
	overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
	transition: background-color .125s .175s ease-in;
}

.hamburger--emphatic .hamburger-inner:before {
	left: 0;
	transition: transform .125s cubic-bezier(.6, .04, .98, .335), top .05s .125s linear, left .125s .175s ease-in;
}

.hamburger--emphatic .hamburger-inner:after {
	top: 10px;
	right: 0;
	transition: transform .125s cubic-bezier(.6, .04, .98, .335), top .05s .125s linear, right .125s .175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
	transition-delay: 0s;
	transition-timing-function: ease-out;
	background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner:before {
	left: -80px;
	top: -80px;
	transform: translate3d(80px, 80px, 0) rotate(45deg);
	transition: left .125s ease-out, top .05s .125s linear, transform .125s .175s cubic-bezier(.075, .82, .165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner:after {
	right: -80px;
	top: -80px;
	transform: translate3d(-80px, 80px, 0) rotate(-45deg);
	transition: right .125s ease-out, top .05s .125s linear, transform .125s .175s cubic-bezier(.075, .82, .165, 1);
}

.hamburger--emphatic-r {
	overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
	transition: background-color .125s .175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner:before {
	left: 0;
	transition: transform .125s cubic-bezier(.6, .04, .98, .335), top .05s .125s linear, left .125s .175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner:after {
	top: 10px;
	right: 0;
	transition: transform .125s cubic-bezier(.6, .04, .98, .335), top .05s .125s linear, right .125s .175s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
	transition-delay: 0s;
	transition-timing-function: ease-out;
	background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner:before {
	left: -80px;
	top: 80px;
	transform: translate3d(80px, -80px, 0) rotate(-45deg);
	transition: left .125s ease-out, top .05s .125s linear, transform .125s .175s cubic-bezier(.075, .82, .165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner:after {
	right: -80px;
	top: 80px;
	transform: translate3d(-80px, -80px, 0) rotate(45deg);
	transition: right .125s ease-out, top .05s .125s linear, transform .125s .175s cubic-bezier(.075, .82, .165, 1);
}

.hamburger--minus .hamburger-inner:before, .hamburger--minus .hamburger-inner:after {
	transition: bottom .08s 0s ease-out, top .08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner:before, .hamburger--minus.is-active .hamburger-inner:after {
	opacity: 0;
	transition: bottom .08s ease-out, top .08s ease-out, opacity 0s .08s linear;
}

.hamburger--minus.is-active .hamburger-inner:before {
	top: 0;
}

.hamburger--minus.is-active .hamburger-inner:after {
	bottom: 0;
}

.hamburger--slider .hamburger-inner {
	top: 2px;
}

.hamburger--slider .hamburger-inner:before {
	top: 10px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: .15s;
}

.hamburger--slider .hamburger-inner:after {
	top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner:before {
	transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
	opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner:after {
	transform: translate3d(0, -20px, 0) rotate(-90deg);
}

.hamburger--slider-r .hamburger-inner {
	top: 2px;
}

.hamburger--slider-r .hamburger-inner:before {
	top: 10px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: .15s;
}

.hamburger--slider-r .hamburger-inner:after {
	top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
	transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner:before {
	transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
	opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner:after {
	transform: translate3d(0, -20px, 0) rotate(90deg);
}

.hamburger--spin .hamburger-inner {
	transition-duration: .22s;
	transition-timing-function: cubic-bezier(.55, .055, .675, .19);
}

.hamburger--spin .hamburger-inner:before {
	transition: top .1s .25s ease-in, opacity .1s ease-in;
}

.hamburger--spin .hamburger-inner:after {
	transition: bottom .1s .25s ease-in, transform .22s cubic-bezier(.55, .055, .675, .19);
}

.hamburger--spin.is-active .hamburger-inner {
	transform: rotate(225deg);
	transition-delay: .12s;
	transition-timing-function: cubic-bezier(.215, .61, .355, 1);
}

.hamburger--spin.is-active .hamburger-inner:before {
	top: 0;
	opacity: 0;
	transition: top .1s ease-out, opacity .1s .12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom .1s ease-out, transform .22s .12s cubic-bezier(.215, .61, .355, 1);
}

.hamburger--spin-r .hamburger-inner {
	transition-duration: .22s;
	transition-timing-function: cubic-bezier(.55, .055, .675, .19);
}

.hamburger--spin-r .hamburger-inner:before {
	transition: top .1s .25s ease-in, opacity .1s ease-in;
}

.hamburger--spin-r .hamburger-inner:after {
	transition: bottom .1s .25s ease-in, transform .22s cubic-bezier(.55, .055, .675, .19);
}

.hamburger--spin-r.is-active .hamburger-inner {
	transform: rotate(-225deg);
	transition-delay: .12s;
	transition-timing-function: cubic-bezier(.215, .61, .355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner:before {
	top: 0;
	opacity: 0;
	transition: top .1s ease-out, opacity .1s .12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(90deg);
	transition: bottom .1s ease-out, transform .22s .12s cubic-bezier(.215, .61, .355, 1);
}

.hamburger--spring .hamburger-inner {
	top: 2px;
	transition: background-color 0s .13s linear;
}

.hamburger--spring .hamburger-inner:before {
	top: 10px;
	transition: top .1s .2s cubic-bezier(.33333, .66667, .66667, 1), transform .13s cubic-bezier(.55, .055, .675, .19);
}

.hamburger--spring .hamburger-inner:after {
	top: 20px;
	transition: top .2s .2s cubic-bezier(.33333, .66667, .66667, 1), transform .13s cubic-bezier(.55, .055, .675, .19);
}

.hamburger--spring.is-active .hamburger-inner {
	transition-delay: .22s;
	background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner:before {
	top: 0;
	transition: top .1s .15s cubic-bezier(.33333, 0, .66667, .33333), transform .13s .22s cubic-bezier(.215, .61, .355, 1);
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner:after {
	top: 0;
	transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), transform .13s .22s cubic-bezier(.215, .61, .355, 1);
	transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--spring-r .hamburger-inner {
	top: auto;
	bottom: 0;
	transition-duration: .13s;
	transition-delay: 0s;
	transition-timing-function: cubic-bezier(.55, .055, .675, .19);
}

.hamburger--spring-r .hamburger-inner:after {
	top: -20px;
	transition: top .2s .2s cubic-bezier(.33333, .66667, .66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner:before {
	transition: top .1s .2s cubic-bezier(.33333, .66667, .66667, 1), transform .13s cubic-bezier(.55, .055, .675, .19);
}

.hamburger--spring-r.is-active .hamburger-inner {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
	transition-delay: .22s;
	transition-timing-function: cubic-bezier(.215, .61, .355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner:after {
	top: 0;
	opacity: 0;
	transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), opacity 0s .22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner:before {
	top: 0;
	transform: rotate(90deg);
	transition: top .1s .15s cubic-bezier(.33333, 0, .66667, .33333), transform .13s .22s cubic-bezier(.215, .61, .355, 1);
}

.hamburger--stand .hamburger-inner {
	transition: transform 75ms .15s cubic-bezier(.55, .055, .675, .19), background-color 0s 75ms linear;
}

.hamburger--stand .hamburger-inner:before {
	transition: top 75ms 75ms ease-in, transform 75ms 0s cubic-bezier(.55, .055, .675, .19);
}

.hamburger--stand .hamburger-inner:after {
	transition: bottom 75ms 75ms ease-in, transform 75ms 0s cubic-bezier(.55, .055, .675, .19);
}

.hamburger--stand.is-active .hamburger-inner {
	transform: rotate(90deg);
	background-color: transparent !important;
	transition: transform 75ms 0s cubic-bezier(.215, .61, .355, 1), background-color 0s .15s linear;
}

.hamburger--stand.is-active .hamburger-inner:before {
	top: 0;
	transform: rotate(-45deg);
	transition: top 75ms .1s ease-out, transform 75ms .15s cubic-bezier(.215, .61, .355, 1);
}

.hamburger--stand.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(45deg);
	transition: bottom 75ms .1s ease-out, transform 75ms .15s cubic-bezier(.215, .61, .355, 1);
}

.hamburger--stand-r .hamburger-inner {
	transition: transform 75ms .15s cubic-bezier(.55, .055, .675, .19), background-color 0s 75ms linear;
}

.hamburger--stand-r .hamburger-inner:before {
	transition: top 75ms 75ms ease-in, transform 75ms 0s cubic-bezier(.55, .055, .675, .19);
}

.hamburger--stand-r .hamburger-inner:after {
	transition: bottom 75ms 75ms ease-in, transform 75ms 0s cubic-bezier(.55, .055, .675, .19);
}

.hamburger--stand-r.is-active .hamburger-inner {
	transform: rotate(-90deg);
	background-color: transparent !important;
	transition: transform 75ms 0s cubic-bezier(.215, .61, .355, 1), background-color 0s .15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner:before {
	top: 0;
	transform: rotate(-45deg);
	transition: top 75ms .1s ease-out, transform 75ms .15s cubic-bezier(.215, .61, .355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(45deg);
	transition: bottom 75ms .1s ease-out, transform 75ms .15s cubic-bezier(.215, .61, .355, 1);
}

.hamburger--squeeze .hamburger-inner {
	transition-duration: 75ms;
	transition-timing-function: cubic-bezier(.55, .055, .675, .19);
}

.hamburger--squeeze .hamburger-inner:before {
	transition: top 75ms .12s ease, opacity 75ms ease;
}

.hamburger--squeeze .hamburger-inner:after {
	transition: bottom 75ms .12s ease, transform 75ms cubic-bezier(.55, .055, .675, .19);
}

.hamburger--squeeze.is-active .hamburger-inner {
	transform: rotate(45deg);
	transition-delay: .12s;
	transition-timing-function: cubic-bezier(.215, .61, .355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
	top: 0;
	opacity: 0;
	transition: top 75ms ease, opacity 75ms .12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 75ms ease, transform 75ms .12s cubic-bezier(.215, .61, .355, 1);
}

.hamburger--vortex .hamburger-inner {
	transition-duration: .2s;
	transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.hamburger--vortex .hamburger-inner:before, .hamburger--vortex .hamburger-inner:after {
	transition-duration: 0s;
	transition-delay: .1s;
	transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner:before {
	transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner:after {
	transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
	transform: rotate(765deg);
	transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.hamburger--vortex.is-active .hamburger-inner:before, .hamburger--vortex.is-active .hamburger-inner:after {
	transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner:before {
	top: 0;
	opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(90deg);
}

.hamburger--vortex-r .hamburger-inner {
	transition-duration: .2s;
	transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.hamburger--vortex-r .hamburger-inner:before, .hamburger--vortex-r .hamburger-inner:after {
	transition-duration: 0s;
	transition-delay: .1s;
	transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner:before {
	transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner:after {
	transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
	transform: rotate(-765deg);
	transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner:before, .hamburger--vortex-r.is-active .hamburger-inner:after {
	transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner:before {
	top: 0;
	opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner:after {
	bottom: 0;
	transform: rotate(-90deg);
}

.tribe-events {
	overflow: hidden;
}

.tribe-events .tribe-events-l-container {
	height: auto;
}

.tribe-events .tribe-events-c-top-bar__datepicker {
	padding: 10px;
}

.tribe-events .tribe-events-c-messages__message {
	display: none !important;
}

.tribe-events .tribe-events-header .tribe-events-header__top-bar {
	padding-top: 30px;
}

.meetup-groups {
	text-align: center;
}

.meetup-groups img {
	justify-self: center;
}

.meetup-groups h1 {
	margin-bottom: 10px;
	font-size: 2em;
	padding-top: 40px;
}

.meetup-groups .state-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
	margin: 20px 0;
}

.meetup-groups .state-container a {
	text-decoration: none;
	color: #000;
	display: inline-block;
	transition: transform .2s ease;
}

.meetup-groups .state-container a:hover {
	transform: scale(1.05);
}

.meetup-groups .state-container img {
	display: block;
	margin: 0 auto;
	width: 160px;
	height: auto;
}

.meetup-groups .info-section {
	width: 80%;
	margin: 0 auto 40px;
	max-width: 800px;
	text-align: center;
}

.meetup-groups .info-section h2 {
	font-size: 1.5em;
	padding: 25px;
}

.responsive-iframe-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 120%;
	height: 0;
	overflow: hidden;
}

.responsive-iframe-wrapper iframe[data-tec-events-ece-iframe=true] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

input[type=text], input[type=email], input[type=url], input[type=tel], input[type=number], input[type=search], input[type=password], textarea, select {
	background-color: #f0f0f0 !important;
	border: none !important;
	border-radius: 30px !important;
	padding: .75em;
	transition: background .2s;
}

input:focus, textarea:focus, select:focus {
	outline: none;
	box-shadow: none;
	background-color: #e8e8e8;
}

body .gform_wrapper .gform_footer input[type=submit] {
	background-color: #416fb3;
	color: #fff;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 15px;
	border-radius: 30px;
	transition-duration: .4s;
	width: 100px;
	height: 65px;
	margin: auto;
}

body .gform_wrapper .gform_footer input[type=submit]:active {
	background: #155a8a;
}

body .gform_wrapper .gform_title {
	display: none !important;
}

.betterdocs-search-details {
	position: fixed !important;
	z-index: 99999 !important;
	background: #fff;
	width: 100%;
	top: 20vh !important;
	transition: top .3s ease;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
	isolation: isolate;
	transform: translateZ(0);
}

@media (max-width: 768px) {
	.betterdocs-search-details {
		top: 10vh !important;
	}
}

.betterdocs-content-wrapper, .betterdocs-category-grid-wrapper, .betterdocs-single-category-wrapper {
	position: relative;
	z-index: -1;
}

#site-footer {
	position: absolute;
	z-index: -1;
}

.betterdocs-search-tabs, .betterdocs-search-tab, .betterdocs-article-reactions, .betterdocs-social-share {
	display: none !important;
}

.fstv-wrapper {
	line-height: 1.75;
	letter-spacing: .025em;
}

.fstv-section {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

@media (min-width: 768px) {
	.fstv-section {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

@media (min-width: 1280px) {
	.fstv-section-wide {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.fstv-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

.fstv-heading-xl {
	font-size: 3.75rem;
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	.fstv-heading-xl {
		font-size: 3rem;
	}
}

.fstv-heading-lg {
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.fstv-heading-md {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.fstv-paragraph {
	margin-bottom: 1.5rem;
}

.fstv-space-y>*+* {
	margin-top: 2.5rem;
}

.fstv-flex-split {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

@media (min-width: 768px) {
	.fstv-flex-split {
		flex-direction: row;
		min-height: 500px;
		height: 100%;
	}
}

.fstv-col-1-2 {
	width: 100%;
}

@media (min-width: 768px) {
	.fstv-col-1-2 {
		width: 50%;
	}
}

.fstv-col-2-3 {
	width: 100%;
}

@media (min-width: 768px) {
	.fstv-col-2-3 {
		width: 66.666667%;
	}
}

.fstv-img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top;
	object-position: top;
	border-radius: .5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}

@media (min-width: 768px) {
	.fstv-img {
		-o-object-position: center;
		object-position: center;
	}
}

.fstv-list {
	list-style-type: disc;
	padding-left: 1.5rem;
	margin-bottom: 3rem;
}

.fstv-list li {
	margin-bottom: .75rem;
}

.fstv-link {
	color: #1d4ed8;
	font-weight: 600;
	text-decoration: underline;
}

.fstv-hide-mobile {
	display: none;
}

@media (min-width: 768px) {
	.fstv-hide-mobile {
		display: block;
	}
}

*, :before, :after {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-scroll-snap-strictness: proximity;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgba(59, 130, 246, .5);
	--tw-ring-offset-shadow: 0 0 rgba(0, 0, 0, 0);
	--tw-ring-shadow: 0 0 rgba(0, 0, 0, 0);
	--tw-shadow: 0 0 rgba(0, 0, 0, 0);
	--tw-shadow-colored: 0 0 rgba(0, 0, 0, 0);
}

::backdrop {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-scroll-snap-strictness: proximity;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgba(59, 130, 246, .5);
	--tw-ring-offset-shadow: 0 0 rgba(0, 0, 0, 0);
	--tw-ring-shadow: 0 0 rgba(0, 0, 0, 0);
	--tw-shadow: 0 0 rgba(0, 0, 0, 0);
	--tw-shadow-colored: 0 0 rgba(0, 0, 0, 0);
}

*, :before, :after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
	border-color: #e5e7eb;
}

:before, :after {
	--tw-content: "";
}

html, :host {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
	font-feature-settings: normal;
	font-variation-settings: normal;
	-webkit-tap-highlight-color: transparent;
}

body {
	margin: 0;
	line-height: inherit;
}

hr {
	height: 0;
	color: inherit;
	border-top-width: 1px;
}

abbr:where([title]) {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: inherit;
}

a {
	color: inherit;
	text-decoration: inherit;
}

b, strong {
	font-weight: bolder;
}

code, kbd, samp, pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
	font-feature-settings: normal;
	font-variation-settings: normal;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse;
}

button, input, optgroup, select, textarea {
	font-family: inherit;
	font-feature-settings: inherit;
	font-variation-settings: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
}

button, select {
	text-transform: none;
}

button, input:where([type=button]), input:where([type=reset]), input:where([type=submit]) {
	-webkit-appearance: button;
	background-color: transparent;
	background-image: none;
}

button.nitro-lazy, input:where([type=button]).nitro-lazy, input:where([type=reset]).nitro-lazy, input:where([type=submit]).nitro-lazy {
	background-image: none !important;
}

:-moz-focusring {
	outline: auto;
}

:-moz-ui-invalid {
	box-shadow: none;
}

progress {
	vertical-align: baseline;
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
	height: auto;
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

summary {
	display: list-item;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
	margin: 0;
}

fieldset {
	margin: 0;
	padding: 0;
}

legend {
	padding: 0;
}

ol, ul, menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

dialog {
	padding: 0;
}

textarea {
	resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
	opacity: 1;
	color: #9ca3af;
}

input::placeholder, textarea::placeholder {
	opacity: 1;
	color: #9ca3af;
}

button, [role=button] {
	cursor: pointer;
}

:disabled {
	cursor: default;
}

img, svg, video, canvas, audio, iframe, embed, object {
	display: block;
	vertical-align: middle;
}

img, video {
	max-width: 100%;
	height: auto;
}

[hidden]:where(:not([hidden=until-found])) {
	display: none;
}

.\!container {
	width: 100% !important;
}

.container {
	width: 100%;
}

@media (min-width: 640px) {
	.\!container {
		max-width: 640px !important;
	}
	
	.container {
		max-width: 640px;
	}
}

@media (min-width: 768px) {
	.\!container {
		max-width: 768px !important;
	}
	
	.container {
		max-width: 768px;
	}
}

@media (min-width: 1024px) {
	.\!container {
		max-width: 1024px !important;
	}
	
	.container {
		max-width: 1024px;
	}
}

@media (min-width: 1280px) {
	.\!container {
		max-width: 1280px !important;
	}
	
	.container {
		max-width: 1280px;
	}
}

@media (min-width: 1300px) {
	.\!container {
		max-width: 1300px !important;
	}
	
	.container {
		max-width: 1300px;
	}
}

@media (min-width: 1536px) {
	.\!container {
		max-width: 1536px !important;
	}
	
	.container {
		max-width: 1536px;
	}
}

h1 {
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 700;
}

@media (min-width: 640px) {
	h1 {
		font-size: 3rem;
		line-height: 1;
	}
}

@media (min-width: 768px) {
	h1 {
		font-size: 3rem;
		line-height: 1;
	}
}

@media (min-width: 1024px) {
	h1 {
		font-size: 3.75rem;
		line-height: 1;
	}
}

h2 {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 600;
}

@media (min-width: 640px) {
	h2 {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
}

@media (min-width: 768px) {
	h2 {
		font-size: 1.5rem;
		line-height: 2rem;
	}
}

@media (min-width: 1024px) {
	h2 {
		font-size: 1.875rem;
		line-height: 2.25rem;
	}
}

p1 {
	font-size: .875rem;
	line-height: 1.25rem;
	--tw-text-opacity: 1;
	color: rgb(255, 255, 255, var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
	p1 {
		font-size: 1rem;
		line-height: 1.5rem;
	}
}

@media (min-width: 768px) {
	p1 {
		font-size: 1.125rem;
		line-height: 1.75rem;
	}
}

p2 {
	font-size: .875rem;
	line-height: 1.25rem;
	--tw-text-opacity: 1;
	color: rgb(75, 85, 99, var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {
	p2 {
		font-size: 1rem;
		line-height: 1.5rem;
	}
}

@media (min-width: 768px) {
	p2 {
		font-size: 1.125rem;
		line-height: 1.75rem;
	}
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.pointer-events-none {
	pointer-events: none;
}

.pointer-events-auto {
	pointer-events: auto;
}

.visible {
	visibility: visible;
}

.invisible {
	visibility: hidden;
}

.static {
	position: static;
}

.fixed {
	position: fixed;
}

.absolute {
	position: absolute;
}

.relative {
	position: relative;
}

.sticky {
	position: sticky;
}

.inset-0 {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.-left-2 {
	left: -.5rem;
}

.-right-2 {
	right: -.5rem;
}

.bottom-4 {
	bottom: 1rem;
}

.left-0 {
	left: 0;
}

.left-1\/2 {
	left: 50%;
}

.left-4 {
	left: 1rem;
}

.left-6 {
	left: 1.5rem;
}

.right-0 {
	right: 0;
}

.right-2 {
	right: .5rem;
}

.right-4 {
	right: 1rem;
}

.right-6 {
	right: 1.5rem;
}

.top-0 {
	top: 0;
}

.top-1\/2 {
	top: 50%;
}

.top-2 {
	top: .5rem;
}

.top-4 {
	top: 1rem;
}

.top-\[-10px\] {
	top: -10px;
}

.z-0 {
	z-index: 0;
}

.z-10 {
	z-index: 10;
}

.z-20 {
	z-index: 20;
}

.z-30 {
	z-index: 30;
}

.z-50 {
	z-index: 50;
}

.z-\[999\] {
	z-index: 999;
}

.order-1 {
	order: 1;
}

.order-2 {
	order: 2;
}

.order-3 {
	order: 3;
}

.mx-0 {
	margin-left: 0;
	margin-right: 0;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.-mt-\[75vh\] {
	margin-top: -75vh;
}

.mb-1 {
	margin-bottom: .25rem;
}

.mb-10 {
	margin-bottom: 2.5rem;
}

.mb-12 {
	margin-bottom: 3rem;
}

.mb-16 {
	margin-bottom: 4rem;
}

.mb-2 {
	margin-bottom: .5rem;
}

.mb-20 {
	margin-bottom: 5rem;
}

.mb-3 {
	margin-bottom: .75rem;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-5 {
	margin-bottom: 1.25rem;
}

.mb-6 {
	margin-bottom: 1.5rem;
}

.mb-8 {
	margin-bottom: 2rem;
}

.ml-2 {
	margin-left: .5rem;
}

.mr-2 {
	margin-right: .5rem;
}

.mt-1 {
	margin-top: .25rem;
}

.mt-10 {
	margin-top: 2.5rem;
}

.mt-12 {
	margin-top: 3rem;
}

.mt-16 {
	margin-top: 4rem;
}

.mt-2 {
	margin-top: .5rem;
}

.mt-20 {
	margin-top: 5rem;
}

.mt-3 {
	margin-top: .75rem;
}

.mt-4 {
	margin-top: 1rem;
}

.mt-auto {
	margin-top: auto;
}

.line-clamp-4 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.inline {
	display: inline;
}

.flex {
	display: flex;
}

.inline-flex {
	display: inline-flex;
}

.grid {
	display: grid;
}

.contents {
	display: contents;
}

.hidden {
	display: none;
}

.aspect-\[1\/1\] {
	aspect-ratio: 1/1;
}

.aspect-\[16\/9\] {
	aspect-ratio: 16/9;
}

.aspect-\[3\/2\] {
	aspect-ratio: 3/2;
}

.aspect-\[4\/3\] {
	aspect-ratio: 4/3;
}

.aspect-\[9\/16\] {
	aspect-ratio: 9/16;
}

.aspect-video {
	aspect-ratio: 16/9;
}

.h-10 {
	height: 2.5rem;
}

.h-16 {
	height: 4rem;
}

.h-6 {
	height: 1.5rem;
}

.h-64 {
	height: 16rem;
}

.h-\[140px\] {
	height: 140px;
}

.h-\[500px\] {
	height: 500px;
}

.h-\[75vh\] {
	height: 75vh;
}

.h-\[90px\] {
	height: 90px;
}

.h-auto {
	height: auto;
}

.h-full {
	height: 100%;
}

.max-h-0 {
	max-height: 0px;
}

.max-h-28 {
	max-height: 7rem;
}

.min-h-10 {
	min-height: 2.5rem;
}

.min-h-\[500px\] {
	min-height: 500px;
}

.min-h-screen {
	min-height: 100vh;
}

.w-1\/2 {
	width: 50%;
}

.w-10 {
	width: 2.5rem;
}

.w-4\/5 {
	width: 80%;
}

.w-40 {
	width: 10rem;
}

.w-6 {
	width: 1.5rem;
}

.w-64 {
	width: 16rem;
}

.w-\[160px\] {
	width: 160px;
}

.w-\[200px\] {
	width: 200px;
}

.w-\[250px\] {
	width: 250px;
}

.w-auto {
	width: auto;
}

.w-full {
	width: 100%;
}

.w-screen {
	width: 100vw;
}

.min-w-\[140px\] {
	min-width: 140px;
}

.min-w-\[14rem\] {
	min-width: 14rem;
}

.max-w-3xl {
	max-width: 48rem;
}

.max-w-4xl {
	max-width: 56rem;
}

.max-w-5xl {
	max-width: 64rem;
}

.max-w-6xl {
	max-width: 72rem;
}

.max-w-7xl {
	max-width: 80rem;
}

.max-w-\[16rem\] {
	max-width: 16rem;
}

.max-w-\[90\%\] {
	max-width: 90%;
}

.max-w-\[calc\(100\%-var\(--g\)\*0\)\] {
	max-width: calc(100% - var(--g) * 0);
}

.max-w-full {
	max-width: 100%;
}

.max-w-md {
	max-width: 28rem;
}

.max-w-none {
	max-width: none;
}

.max-w-sm {
	max-width: 24rem;
}

.max-w-xl {
	max-width: 36rem;
}

.flex-none {
	flex: none;
}

.flex-shrink-0, .shrink-0 {
	flex-shrink: 0;
}

.flex-grow {
	flex-grow: 1;
}

.basis-\[calc\(100\%-var\(--g\)\*0\)\] {
	flex-basis: calc(100% - var(--g) * 0);
}

.-translate-x-1\/2 {
	--tw-translate-x: -50%;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
	--tw-translate-y: -50%;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-0 {
	--tw-translate-x: 0px;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

.animate-fade-in {
	animation: fadeIn .6s ease-out forwards;
}

.animate-marquee {
	animation: marquee 60s linear infinite;
}

@keyframes marquee {
	0% {
		transform: translate(0);
	}
	
	to {
		transform: translate(-100%);
	}
}

.animate-marquee-reverse {
	animation: marquee 60s linear infinite reverse;
}

@keyframes pulse {
	50% {
		opacity: .5;
	}
}

.animate-pulse {
	animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
}

.cursor-pointer {
	cursor: pointer;
}

.select-none {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.resize {
	resize: both;
}

.snap-x {
	scroll-snap-type: x var(--tw-scroll-snap-strictness);
}

.snap-mandatory {
	--tw-scroll-snap-strictness: mandatory;
}

.snap-start {
	scroll-snap-align: start;
}

.list-inside {
	list-style-position: inside;
}

.list-disc {
	list-style-type: disc;
}

.list-none {
	list-style-type: none;
}

.columns-2 {
	-moz-columns: 2;
	columns: 2;
}

.break-inside-avoid {
	-moz-column-break-inside: avoid;
	break-inside: avoid;
}

.auto-rows-\[200px\] {
	grid-auto-rows: 200px;
}

.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flex-col {
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

.items-start {
	align-items: flex-start;
}

.items-end {
	align-items: flex-end;
}

.items-center {
	align-items: center;
}

.justify-start {
	justify-content: flex-start;
}

.justify-end {
	justify-content: flex-end;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-items-center {
	justify-items: center;
}

.gap-0 {
	gap: 0px;
}

.gap-10 {
	gap: 2.5rem;
}

.gap-12 {
	gap: 3rem;
}

.gap-14 {
	gap: 3.5rem;
}

.gap-2 {
	gap: .5rem;
}

.gap-20 {
	gap: 5rem;
}

.gap-3 {
	gap: .75rem;
}

.gap-4 {
	gap: 1rem;
}

.gap-6 {
	gap: 1.5rem;
}

.gap-8 {
	gap: 2rem;
}

.space-y-1>:not([hidden])~:not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(.25rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(.25rem * var(--tw-space-y-reverse));
}

.space-y-10>:not([hidden])~:not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}

.space-y-2>:not([hidden])~:not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(.5rem * var(--tw-space-y-reverse));
}

.space-y-20>:not([hidden])~:not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(5rem * var(--tw-space-y-reverse));
}

.space-y-4>:not([hidden])~:not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-6>:not([hidden])~:not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-visible {
	overflow: visible;
}

.overflow-x-auto {
	overflow-x: auto;
}

.scroll-smooth {
	scroll-behavior: smooth;
}

.whitespace-nowrap {
	white-space: nowrap;
}

.rounded {
	border-radius: .25rem;
}

.rounded-full {
	border-radius: 9999px;
}

.rounded-lg {
	border-radius: .5rem;
}

.rounded-md {
	border-radius: .375rem;
}

.rounded-xl {
	border-radius: .75rem;
}

.border {
	border-width: 1px;
}

.border-b {
	border-bottom-width: 1px;
}

.border-s-2 {
	border-inline-start-width: 2px;
}

.border-fstvBlue {
	--tw-border-opacity: 1;
	border-color: rgb(65, 111, 179, var(--tw-border-opacity, 1));
}

.border-gray-200 {
	--tw-border-opacity: 1;
	border-color: rgb(229, 231, 235, var(--tw-border-opacity, 1));
}

.border-gray-300 {
	--tw-border-opacity: 1;
	border-color: rgb(209, 213, 219, var(--tw-border-opacity, 1));
}

.border-gray-800 {
	--tw-border-opacity: 1;
	border-color: rgb(31, 41, 55, var(--tw-border-opacity, 1));
}

.bg-black {
	--tw-bg-opacity: 1;
	background-color: rgb(0, 0, 0, var(--tw-bg-opacity, 1));
}

.bg-black\/50 {
	background-color: rgba(0, 0, 0, .5);
}

.bg-black\/60 {
	background-color: rgba(0, 0, 0, .6);
}

.bg-black\/70 {
	background-color: rgba(0, 0, 0, .7);
}

.bg-blue-50 {
	--tw-bg-opacity: 1;
	background-color: rgb(239, 246, 255, var(--tw-bg-opacity, 1));
}

.bg-blue-700 {
	--tw-bg-opacity: 1;
	background-color: rgb(29, 78, 216, var(--tw-bg-opacity, 1));
}

.bg-gray-100 {
	--tw-bg-opacity: 1;
	background-color: rgb(243, 244, 246, var(--tw-bg-opacity, 1));
}

.bg-gray-800 {
	--tw-bg-opacity: 1;
	background-color: rgb(31, 41, 55, var(--tw-bg-opacity, 1));
}

.bg-green-400 {
	--tw-bg-opacity: 1;
	background-color: rgb(74, 222, 128, var(--tw-bg-opacity, 1));
}

.bg-indigo-400 {
	--tw-bg-opacity: 1;
	background-color: rgb(129, 140, 248, var(--tw-bg-opacity, 1));
}

.bg-red-400 {
	--tw-bg-opacity: 1;
	background-color: rgb(248, 113, 113, var(--tw-bg-opacity, 1));
}

.bg-white {
	--tw-bg-opacity: 1;
	background-color: rgb(255, 255, 255, var(--tw-bg-opacity, 1));
}

.bg-yellow-400 {
	--tw-bg-opacity: 1;
	background-color: rgb(250, 204, 21, var(--tw-bg-opacity, 1));
}

.bg-opacity-25 {
	--tw-bg-opacity: .25;
}

.bg-opacity-80 {
	--tw-bg-opacity: .8;
}

.bg-gradient-to-b {
	background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-l {
	background-image: linear-gradient(to left, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
	background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-black\/0 {
	--tw-gradient-from: rgba(0, 0, 0, 0) var(--tw-gradient-from-position);
	--tw-gradient-to: rgba(0, 0, 0, 0) var(--tw-gradient-to-position);
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-black\/70 {
	--tw-gradient-from: rgba(0, 0, 0, .7) var(--tw-gradient-from-position);
	--tw-gradient-to: rgba(0, 0, 0, 0) var(--tw-gradient-to-position);
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-black\/40 {
	--tw-gradient-to: rgba(0, 0, 0, 0) var(--tw-gradient-to-position);
	--tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, .4) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-black\/60 {
	--tw-gradient-to: rgba(0, 0, 0, 0) var(--tw-gradient-to-position);
	--tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, .6) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.to-black\/90 {
	--tw-gradient-to: rgba(0, 0, 0, .9) var(--tw-gradient-to-position);
}

.to-transparent {
	--tw-gradient-to: transparent var(--tw-gradient-to-position);
}

.fill-current {
	fill: currentColor;
}

.object-contain {
	-o-object-fit: contain;
	object-fit: contain;
}

.object-cover {
	-o-object-fit: cover;
	object-fit: cover;
}

.p-1 {
	padding: .25rem;
}

.p-10 {
	padding: 2.5rem;
}

.p-20 {
	padding: 5rem;
}

.p-3 {
	padding: .75rem;
}

.p-4 {
	padding: 1rem;
}

.p-5 {
	padding: 1.25rem;
}

.p-6 {
	padding: 1.5rem;
}

.px-0 {
	padding-left: 0;
	padding-right: 0;
}

.px-10 {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.px-12 {
	padding-left: 3rem;
	padding-right: 3rem;
}

.px-2 {
	padding-left: .5rem;
	padding-right: .5rem;
}

.px-3 {
	padding-left: .75rem;
	padding-right: .75rem;
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

.px-5 {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.px-6 {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.px-8 {
	padding-left: 2rem;
	padding-right: 2rem;
}

.py-0 {
	padding-top: 0;
	padding-bottom: 0;
}

.py-1 {
	padding-top: .25rem;
	padding-bottom: .25rem;
}

.py-10 {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.py-16 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.py-2 {
	padding-top: .5rem;
	padding-bottom: .5rem;
}

.py-20 {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.py-28 {
	padding-top: 7rem;
	padding-bottom: 7rem;
}

.py-3 {
	padding-top: .75rem;
	padding-bottom: .75rem;
}

.py-32 {
	padding-top: 8rem;
	padding-bottom: 8rem;
}

.py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.py-5 {
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}

.py-6 {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.py-8 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.pb-10 {
	padding-bottom: 2.5rem;
}

.pb-2 {
	padding-bottom: .5rem;
}

.pb-20 {
	padding-bottom: 5rem;
}

.pb-5 {
	padding-bottom: 1.25rem;
}

.pb-6 {
	padding-bottom: 1.5rem;
}

.pb-8 {
	padding-bottom: 2rem;
}

.pb-\[56\.25\%\] {
	padding-bottom: 56.25%;
}

.pl-5 {
	padding-left: 1.25rem;
}

.pr-6 {
	padding-right: 1.5rem;
}

.pt-10 {
	padding-top: 2.5rem;
}

.pt-16 {
	padding-top: 4rem;
}

.pt-4 {
	padding-top: 1rem;
}

.pt-5 {
	padding-top: 1.25rem;
}

.pt-6 {
	padding-top: 1.5rem;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.font-mono {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
}

.text-2xl {
	font-size: 1.5rem;
	line-height: 2rem;
}

.text-3xl {
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.text-4xl {
	font-size: 2.25rem;
	line-height: 2.5rem;
}

.text-5xl {
	font-size: 3rem;
	line-height: 1;
}

.text-6xl {
	font-size: 3.75rem;
	line-height: 1;
}

.text-base {
	font-size: 1rem;
	line-height: 1.5rem;
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.text-sm {
	font-size: .875rem;
	line-height: 1.25rem;
}

.text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.text-xs {
	font-size: .75rem;
	line-height: 1rem;
}

.font-bold {
	font-weight: 700;
}

.font-extrabold {
	font-weight: 800;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.uppercase {
	text-transform: uppercase;
}

.italic {
	font-style: italic;
}

.leading-loose {
	line-height: 2;
}

.leading-relaxed {
	line-height: 1.625;
}

.leading-snug {
	line-height: 1.375;
}

.leading-tight {
	line-height: 1.25;
}

.tracking-wide {
	letter-spacing: .025em;
}

.tracking-wider {
	letter-spacing: .05em;
}

.text-black {
	--tw-text-opacity: 1;
	color: rgb(0, 0, 0, var(--tw-text-opacity, 1));
}

.text-black\/80 {
	color: rgba(0, 0, 0, .8);
}

.text-blue-300 {
	--tw-text-opacity: 1;
	color: rgb(147, 197, 253, var(--tw-text-opacity, 1));
}

.text-blue-400 {
	--tw-text-opacity: 1;
	color: rgb(96, 165, 250, var(--tw-text-opacity, 1));
}

.text-blue-500 {
	--tw-text-opacity: 1;
	color: rgb(59, 130, 246, var(--tw-text-opacity, 1));
}

.text-blue-600 {
	--tw-text-opacity: 1;
	color: rgb(37, 99, 235, var(--tw-text-opacity, 1));
}

.text-blue-700 {
	--tw-text-opacity: 1;
	color: rgb(29, 78, 216, var(--tw-text-opacity, 1));
}

.text-gray-300 {
	--tw-text-opacity: 1;
	color: rgb(209, 213, 219, var(--tw-text-opacity, 1));
}

.text-gray-400 {
	--tw-text-opacity: 1;
	color: rgb(156, 163, 175, var(--tw-text-opacity, 1));
}

.text-gray-500 {
	--tw-text-opacity: 1;
	color: rgb(107, 114, 128, var(--tw-text-opacity, 1));
}

.text-gray-600 {
	--tw-text-opacity: 1;
	color: rgb(75, 85, 99, var(--tw-text-opacity, 1));
}

.text-gray-700 {
	--tw-text-opacity: 1;
	color: rgb(55, 65, 81, var(--tw-text-opacity, 1));
}

.text-gray-800 {
	--tw-text-opacity: 1;
	color: rgb(31, 41, 55, var(--tw-text-opacity, 1));
}

.text-gray-900 {
	--tw-text-opacity: 1;
	color: rgb(17, 24, 39, var(--tw-text-opacity, 1));
}

.text-green-300 {
	--tw-text-opacity: 1;
	color: rgb(134, 239, 172, var(--tw-text-opacity, 1));
}

.text-green-50 {
	--tw-text-opacity: 1;
	color: rgb(240, 253, 244, var(--tw-text-opacity, 1));
}

.text-green-600 {
	--tw-text-opacity: 1;
	color: rgb(22, 163, 74, var(--tw-text-opacity, 1));
}

.text-indigo-50 {
	--tw-text-opacity: 1;
	color: rgb(238, 242, 255, var(--tw-text-opacity, 1));
}

.text-red-400 {
	--tw-text-opacity: 1;
	color: rgb(248, 113, 113, var(--tw-text-opacity, 1));
}

.text-red-50 {
	--tw-text-opacity: 1;
	color: rgb(254, 242, 242, var(--tw-text-opacity, 1));
}

.text-red-500 {
	--tw-text-opacity: 1;
	color: rgb(239, 68, 68, var(--tw-text-opacity, 1));
}

.text-white {
	--tw-text-opacity: 1;
	color: rgb(255, 255, 255, var(--tw-text-opacity, 1));
}

.text-white\/80 {
	color: rgba(255, 255, 255, .8);
}

.text-yellow-50 {
	--tw-text-opacity: 1;
	color: rgb(254, 252, 232, var(--tw-text-opacity, 1));
}

.text-opacity-90 {
	--tw-text-opacity: .9;
}

.underline {
	text-decoration-line: underline;
}

.opacity-0 {
	opacity: 0;
}

.opacity-100 {
	opacity: 1;
}

.opacity-90 {
	opacity: .9;
}

.shadow {
	--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
	--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.shadow-lg {
	--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
	--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.shadow-md {
	--tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
	--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.shadow-xl {
	--tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
	--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.filter {
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-blur-sm {
	--tw-backdrop-blur: blur(4px);
	-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
	backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition {
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
}

.transition-all {
	transition-property: all;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
}

.transition-opacity {
	transition-property: opacity;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
}

.transition-shadow {
	transition-property: box-shadow;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
}

.transition-transform {
	transition-property: transform;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
}

.duration-200 {
	transition-duration: .2s;
}

.duration-300 {
	transition-duration: .3s;
}

.duration-500 {
	transition-duration: .5s;
}

.duration-700 {
	transition-duration: .7s;
}

.ease-in {
	transition-timing-function: cubic-bezier(.4, 0, 1, 1);
}

.ease-in-out {
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.will-change-transform {
	will-change: transform;
}

.\[--g\:0\.5rem\] {
	--g: .5rem;
}

.\[gap\:var\(--g\)\] {
	gap: var(--g);
}

html {
	scroll-behavior: smooth;
}

.no-scrollbar::-webkit-scrollbar {
	display: none;
}

.no-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.mask-image-fade {
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

@media (max-width: 640px) {
	.mask-image-fade {
		-webkit-mask-image: none;
		mask-image: none;
	}
	
	.mask-image-fade.nitro-lazy {
		mask-image: none !important;
	}
}

.betterdocs-content ol {
	list-style-type: decimal;
	margin-left: 1.5rem;
	padding-left: 1rem;
}

.betterdocs-content ul {
	list-style-type: disc;
	margin-left: 1.5rem;
	padding-left: 1rem;
}

.betterdocs-content li {
	padding: 1rem;
}

.betterdocs-content p {
	padding-bottom: .5rem;
	padding-top: .5rem;
}

.betterdocs-content h2 {
	padding-bottom: 1rem;
	padding-top: 1rem;
}

.gl-branded-donation-widget {
	width: 100% !important;
	max-width: 100% !important;
}

[data-marquee], [data-marquee] * {
	-webkit-mask-image: none !important;
	mask-image: none !important;
}

[data-marquee].nitro-lazy, [data-marquee] *.nitro-lazy {
	mask-image: none !important;
}

.hover\:scale-105:hover {
	--tw-scale-x: 1.05;
	--tw-scale-y: 1.05;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-\[1\.02\]:hover {
	--tw-scale-x: 1.02;
	--tw-scale-y: 1.02;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-\[1\.03\]:hover {
	--tw-scale-x: 1.03;
	--tw-scale-y: 1.03;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:bg-black\/10:hover {
	background-color: rgba(0, 0, 0, .1);
}

.hover\:bg-blue-200:hover {
	--tw-bg-opacity: 1;
	background-color: rgb(191, 219, 254, var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-800:hover {
	--tw-bg-opacity: 1;
	background-color: rgb(30, 64, 175, var(--tw-bg-opacity, 1));
}

.hover\:underline:hover {
	text-decoration-line: underline;
}

.hover\:opacity-100:hover {
	opacity: 1;
}

.hover\:opacity-80:hover {
	opacity: .8;
}

.hover\:opacity-90:hover {
	opacity: .9;
}

.hover\:shadow-lg:hover {
	--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
	--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.focus\:not-sr-only:focus {
	position: static;
	width: auto;
	height: auto;
	padding: 0;
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
}

.focus\:absolute:focus {
	position: absolute;
}

.focus\:left-0:focus {
	left: 0;
}

.focus\:top-0:focus {
	top: 0;
}

.focus\:bg-yellow-400:focus {
	--tw-bg-opacity: 1;
	background-color: rgb(250, 204, 21, var(--tw-bg-opacity, 1));
}

.focus\:p-4:focus {
	padding: 1rem;
}

.focus\:text-black:focus {
	--tw-text-opacity: 1;
	color: rgb(0, 0, 0, var(--tw-text-opacity, 1));
}

.focus\:outline-none:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
}

.focus\:ring:focus {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0, 0, 0, 0));
}

.focus\:ring-2:focus {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0, 0, 0, 0));
}

.focus\:ring-blue-500:focus {
	--tw-ring-opacity: 1;
	--tw-ring-color: rgb(59, 130, 246, var(--tw-ring-opacity, 1));
}

.focus\:ring-gray-600:focus {
	--tw-ring-opacity: 1;
	--tw-ring-color: rgb(75, 85, 99, var(--tw-ring-opacity, 1));
}

.focus\:ring-white:focus {
	--tw-ring-opacity: 1;
	--tw-ring-color: rgb(255, 255, 255, var(--tw-ring-opacity, 1));
}

.focus\:ring-offset-2:focus {
	--tw-ring-offset-width: 2px;
}

.group:hover .group-hover\:scale-105 {
	--tw-scale-x: 1.05;
	--tw-scale-y: 1.05;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:text-opacity-60 {
	--tw-text-opacity: .6;
}

.group:hover .group-hover\:opacity-100 {
	opacity: 1;
}

.group:hover .group-hover\:opacity-80 {
	opacity: .8;
}

.group:hover .group-hover\:opacity-90 {
	opacity: .9;
}

@media (min-width: 640px) {
	.sm\:flex {
		display: flex;
	}
	
	.sm\:w-1\/3 {
		width: 33.333333%;
	}
	
	.sm\:w-\[240px\] {
		width: 240px;
	}
	
	.sm\:grid-cols-1 {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	
	.sm\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.sm\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	
	.sm\:p-2 {
		padding: .5rem;
	}
	
	.sm\:px-6 {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	
	.sm\:py-4 {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
	
	.sm\:text-2xl {
		font-size: 1.5rem;
		line-height: 2rem;
	}
	
	.sm\:text-6xl {
		font-size: 3.75rem;
		line-height: 1;
	}
	
	.sm\:text-xl {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
}

@media (min-width: 768px) {
	.md\:-left-10 {
		left: -2.5rem;
	}
	
	.md\:-right-10 {
		right: -2.5rem;
	}
	
	.md\:order-none {
		order: 0;
	}
	
	.md\:col-span-2 {
		grid-column: span 2/span 2;
	}
	
	.md\:col-span-3 {
		grid-column: span 3/span 3;
	}
	
	.md\:col-span-5 {
		grid-column: span 5/span 5;
	}
	
	.md\:col-start-5 {
		grid-column-start: 5;
	}
	
	.md\:mx-0 {
		margin-left: 0;
		margin-right: 0;
	}
	
	.md\:ml-auto {
		margin-left: auto;
	}
	
	.md\:mr-0 {
		margin-right: 0;
	}
	
	.md\:mt-0 {
		margin-top: 0;
	}
	
	.md\:flex {
		display: flex;
	}
	
	.md\:h-16 {
		height: 4rem;
	}
	
	.md\:w-1\/2 {
		width: 50%;
	}
	
	.md\:w-1\/4 {
		width: 25%;
	}
	
	.md\:w-7\/12 {
		width: 58.333333%;
	}
	
	.md\:w-\[280px\] {
		width: 280px;
	}
	
	.md\:w-\[320px\] {
		width: 320px;
	}
	
	.md\:max-w-\[100\%\] {
		max-width: 100%;
	}
	
	.md\:max-w-\[96\%\] {
		max-width: 96%;
	}
	
	.md\:max-w-\[calc\(\(100\%-var\(--g\)\)\/2\)\] {
		max-width: calc(( 100% - var(--g) ) / 2);
	}
	
	.md\:max-w-none {
		max-width: none;
	}
	
	.md\:basis-\[calc\(\(100\%-var\(--g\)\)\/2\)\] {
		flex-basis: calc(( 100% - var(--g) ) / 2);
	}
	
	.md\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.md\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	
	.md\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	
	.md\:grid-cols-5 {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
	
	.md\:flex-row {
		flex-direction: row;
	}
	
	.md\:items-start {
		align-items: flex-start;
	}
	
	.md\:items-end {
		align-items: flex-end;
	}
	
	.md\:justify-end {
		justify-content: flex-end;
	}
	
	.md\:gap-10 {
		gap: 2.5rem;
	}
	
	.md\:gap-32 {
		gap: 8rem;
	}
	
	.md\:gap-4 {
		gap: 1rem;
	}
	
	.md\:px-10 {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
	
	.md\:px-12 {
		padding-left: 3rem;
		padding-right: 3rem;
	}
	
	.md\:px-16 {
		padding-left: 4rem;
		padding-right: 4rem;
	}
	
	.md\:px-20 {
		padding-left: 5rem;
		padding-right: 5rem;
	}
	
	.md\:px-8 {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	
	.md\:py-10 {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}
	
	.md\:py-12 {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
	
	.md\:pl-16 {
		padding-left: 4rem;
	}
	
	.md\:pr-16 {
		padding-right: 4rem;
	}
	
	.md\:pt-10 {
		padding-top: 2.5rem;
	}
	
	.md\:pt-12 {
		padding-top: 3rem;
	}
	
	.md\:text-center {
		text-align: center;
	}
	
	.md\:text-right {
		text-align: right;
	}
	
	.md\:text-2xl {
		font-size: 1.5rem;
		line-height: 2rem;
	}
	
	.md\:text-3xl {
		font-size: 1.875rem;
		line-height: 2.25rem;
	}
	
	.md\:text-4xl {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}
	
	.md\:text-5xl {
		font-size: 3rem;
		line-height: 1;
	}
	
	.md\:text-6xl {
		font-size: 3.75rem;
		line-height: 1;
	}
	
	.md\:text-base {
		font-size: 1rem;
		line-height: 1.5rem;
	}
	
	.md\:text-xl {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
	
	.md\:\[--g\:0\.75rem\] {
		--g: .75rem;
	}
	
	.md\:\[scroll-padding-inline\:theme\(spacing\.16\)\] {
		scroll-padding-inline: 4rem;
	}
}

@media (min-width: 1024px) {
	.lg\:-left-12 {
		left: -3rem;
	}
	
	.lg\:-right-12 {
		right: -3rem;
	}
	
	.lg\:grid {
		display: grid;
	}
	
	.lg\:h-16 {
		height: 4rem;
	}
	
	.lg\:w-1\/2 {
		width: 50%;
	}
	
	.lg\:w-1\/6 {
		width: 16.666667%;
	}
	
	.lg\:max-w-\[calc\(\(100\%-var\(--g\)\*2\)\/3\)\] {
		max-width: calc(( 100% - var(--g) * 2 ) / 3);
	}
	
	.lg\:basis-\[calc\(\(100\%-var\(--g\)\*2\)\/3\)\] {
		flex-basis: calc(( 100% - var(--g) * 2 ) / 3);
	}
	
	.lg\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.lg\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	
	.lg\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	
	.lg\:flex-row {
		flex-direction: row;
	}
	
	.lg\:items-start {
		align-items: flex-start;
	}
	
	.lg\:gap-12 {
		gap: 3rem;
	}
	
	.lg\:text-3xl {
		font-size: 1.875rem;
		line-height: 2.25rem;
	}
	
	.lg\:text-4xl {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}
	
	.lg\:\[--g\:1rem\] {
		--g: 1rem;
	}
}

@media (min-width: 1280px) {
	.xl\:w-\[360px\] {
		width: 360px;
	}
	
	.xl\:max-w-\[1920px\] {
		max-width: 1920px;
	}
	
	.xl\:max-w-\[calc\(\(100\%-var\(--g\)\*3\)\/4\)\] {
		max-width: calc(( 100% - var(--g) * 3 ) / 4);
	}
	
	.xl\:basis-\[calc\(\(100\%-var\(--g\)\*3\)\/4\)\] {
		flex-basis: calc(( 100% - var(--g) * 3 ) / 4);
	}
	
	.xl\:grid-cols-5 {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
	
	.xl\:px-20 {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}
