/*!
Theme Name: Fractiv
Theme URI: http://underscores.me/
Author: Senff
Author URI: https://www.senff.com
Description: Description
Version: 9.8
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: fractiv
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Fractiv is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

* {
	box-sizing: border-box;
	margin:0;
	padding:0;
}

body {
	background: #1c1c1c;
	color:#ffffff;
	font-family: "Montserrat";
	min-width: 320px;
}

/* ====== MAIN STYLES FOR ALL PAGES ================================================================== */

div#fractiv {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 100px 0 0 0;
	background-color: #1d1f23;
	overflow-x: hidden;

		background-image: 
	    	url('/wp-content/themes/fractiv/img/fractiv-bg-inner-top.png'),
	    	url('/wp-content/themes/fractiv/img/new-grid-fixed.png');    	

		background-repeat:
		    no-repeat,
		    repeat;

	  	background-position:
		    top center,    
		    left top;

		background-size:
		    auto,
		    166px auto;
}

main#fractiv-main {
	min-height: calc(100vh - 331px);	
}

h1 {
	font-weight: 900;
	font-size: 40px;
	color: #ffffff;
	line-height: 36px;
}

h2 {
	font-size: 27px; 
	font-weight: 800;
	line-height: 26px;
}

h3 {
	font-size: 11px; 
	font-weight: 800;
	margin-bottom: 8px;
	color: #ffb02f;
}

h4 {
	font-size: 15px; 
	font-weight: 800;
	margin-bottom: 5px;
}

h5 {
	font-size: 24px; 
	font-weight: 100;
	margin: 25px 0;
	color:#ffffff;
}

p,li {
	font-size: 15px; 
	font-weight: 300;
	color:#a3a4a6; 
	line-height: 20px; 
	margin: 5px 0 20px 0;
}

.action-button {
	font-family:"Montserrat";
	display: block; 
	cursor:pointer;
	text-align: center; 
	border: 0; 
	font-size: 21.33px; 
	font-weight: 800; 
	color:#ffffff; 
	background: #7e00ff; 
	border-radius: 100px; 
	line-height: 48px; 
	text-decoration: none; 
	transition: background-color 0.2s ease;
	padding-left: 30px;
	padding-right: 30px;
}

.action-button:hover {
	background:#a146ff;
}

#fractiv-main {
	transition: filter 1s ease;
}

.blurry {
  filter: blur(8px) brightness(0.6); 
}


	/* ------ HEADER AND MENU --------------------------------------------------------------------- */


	header.site-header {
		position: fixed;
		width: 100%;
		max-width: 1280px;
		z-index: 100;
		left: 50%;
  		transform: translate(-50%,0);		
	}

	header.site-header #main-bar{
		width: calc(100% - 25px);
		height: 80px;
		background-color: #171819;
		border: solid 2px #38393a;
		margin: 20px auto 0;
		border-radius: 30px;
		box-shadow: 0 0 40px #000000;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
	}

	.site-branding {
		width: 130px;
		height: 37px;
	}

	.site-title {
		width: 105px;
		height: 37px;
		margin: 0 0 0 25px;
		background:url('/wp-content/themes/fractiv/img/sync-audio-logo.png');    
		background-size: 100% 100%;
	}

	.site-title a {
		opacity:0;
		width: 105px;
		height: 37px;
		display: block;
	}

	header.site-header .try-fractiv {
		background:#7e00ff;
		color: #ffffff;
		text-align: center;
		height: 50px;
		line-height: 50px;
		margin: 0 25px;
		border-radius: 100px;
		transition: background-color 0.2s ease;	
	}

	header.site-header .try-fractiv:hover {
		background:#a146ff;
	}

	header.site-header .try-fractiv a {
		color: #ffffff;
		text-decoration: none;
		font-size: 22px;
		padding: 0 55px;	
		height: 50px;
		display: block;
		font-weight: 900;
	}

	header.site-header .fractiv-menu {
		width:40px;
		height:35px;
		margin: 0 50px 0 0;
		background:url('/wp-content/themes/fractiv/img/fractiv-menu-burger.png');
		background-size: 100% 100%;
		opacity: 0.3;
	}

	#download-buy {
		width: calc(100% - 25px);
		margin: 10px 13px 0;
		padding: 0 50px;
		background-color: #171819;
		border: solid 2px #38393a;
		border-radius: 30px;
		/* box-shadow: 0 0 40px #000000; */
		text-align: center;
		display: none;
	}

	#download-buy a,
	#download-buy button {
		color: #ffffff;
		text-decoration: none;
		font-size: 30px;
		width: 375px;
		text-align: center;	
		height: 62px;
		line-height: 62px;
		display: block;
		font-weight: 900;
		margin: 20px auto;
		background:#7e00ff;
		border: 0;
		border-radius: 100px;
		font-family: "Montserrat";
		cursor:pointer;
		transition: background-color 0.2s ease;
	}

	#download-buy .divider {
		width: 100%;
		height: 1px;
		border-bottom: solid 1px #38393a;
	}	

	#download-buy a:hover {
		background:#a146ff;
	}

	#main-menu {
		width: calc(100% - 25px);
		margin: 10px 13px 0;
		padding: 0 50px;
		background-color: #171819;
		border: solid 2px #38393a;
		border-radius: 15px;
		/* box-shadow: 0 0 40px #000000; */
		text-align: center;
		display: none;
	}

	#main-menu li {
		list-style-type: none;
		margin: 0;
		padding: 0;
		height: 68px;
		line-height: 68px;
		border-bottom: solid 1px #38393a;
	}	

	#main-menu li:last-child {
		border-bottom: 0;
	}	

	#main-menu li a {
		font-size: 26px;
		text-decoration: none;
		color: #888888;
		font-weight: 900;
		transition: color 0.2s ease;
		margin: 0;
		display: flex;
		justify-content:space-between;
		height: 68px;
		line-height: 68px;
	}	

	#main-menu li a .menu-arrow {
		font-weight: 500;
		font-size: 0;
		display: block;
		width: 18px;
		height: 68px;
		background-image:url('/wp-content/themes/fractiv/img/menu-arrows.png');
		background-size: 36px auto;
		background-repeat: no-repeat;
		background-position: right center;
	}	

	#main-menu li a .menu-arrow:first-child,
	#main-menu li.current_page_item .menu-arrow {
		visibility: hidden;
	}	

	#main-menu li a:hover,
	#main-menu li.current_page_item a {
		color: #ffffff;
	}	

	#main-menu li a:hover .menu-arrow {
		background-position: left center;
	}

	/* ------ FOOTER  --------------------------------------------------------------------- */

	footer {
		text-align: center;
		padding: 35px 0 25px;
		background: #000000;
	}

	footer a {
		display: inline-block;
		width: 130px;
		height: 45px;
		background:url('/wp-content/themes/fractiv/img/sync-audio-logo.png');    
		background-size: 100% auto;
		background-repeat: no-repeat;
		margin-bottom: 10px;
	}

	footer p {
		margin:0;
		font-size: 11px;
	}


/* ========================================================================================= */
/* === HOME PAGE =========================================================================== */
/* ========================================================================================= */

	body.home div#fractiv {
		background-image: 
	    	url('/wp-content/themes/fractiv/img/fractiv-bg-inner-top.png'),
	    	url('/wp-content/themes/fractiv/img/fractiv-gradient-light.png'),
	    	url('/wp-content/themes/fractiv/img/new-grid-fixed.png');    	

		background-repeat:
		    no-repeat,
		    no-repeat,
		    repeat;

	  	background-position:
		    top center,   
		    center 280px,     
		    left top;

		background-size:
		    auto,
		    100% auto,
		    auto auto;
	}	

	/* ====== SECTION 1: LOGO ================================================================== */

		.fractiv-1-main-logo {
			width: 90%;
			max-width: 740px;
			margin: 100px auto 0;
			text-align: center;
		}


	/* ====== SECTION 2: GRANULAR ================================================================== */	

		.fractiv-2-granular {
			position: relative;
		}

		.fractiv-2-granular .desktop-only {
			display: block;
			position: relative;
		}

		.fractiv-2-granular .desktop-only img#play-video {
			position: absolute;
			left:0;
			top:80px;
			opacity: 0.7;
			cursor: pointer;
		}		

		.fractiv-2-granular .desktop-only img#play-video:hover {
			opacity: 1;
		}

		.fractiv-2-granular .mobile-only {
			display: none;
			position: relative;
		}	

		.fractiv-2-granular .mobile-only img#play-video-mob {
			position: absolute;
			cursor:pointer;
			left: 50%;
			top: calc(50% + 20px);
			width: 20%;
			margin-left: -10%;
			margin-top: -13%;
		}		


		.fractiv-2-granular figure {
			width: 80%;
			padding-top: 80px;		
			}	

		.fractiv-2-granular .fractiv-2-text {		
			position: absolute;
			top: 0;
			bottom:0;
			right: 8%;
			width: 35%;
			display: flex;
			align-items: center;
			font-family: "Montserrat";
		}

		.fractiv-2-title {width: 320px;}
		.fractiv-2-intro-sale {font-size: 23.33px; font-weight: 600;}
		.fractiv-2-pricing {font-size:44px; font-weight: 600; display: flex; align-item: top;}
		.fractiv-2-pricing s {font-size:28.5px; color: #737579; margin-top: -5px; margin-right: 10px;}
		.fractiv-2-button button {width:200px; max-width: 200px;margin-top: 15px;}


	/* ====== SECTION 2a: TESTIMONIALS ================================================================== */	

		.fractiv-2a-testimonials {
			width: 100%;
			text-align: center;
			margin-bottom: 100px;
		}

		.fractiv-2a-testimonials h1 {
			font-size: 28px;
			line-height: 24px;
			margin-bottom: 15px;
		}	

		.testimonials {
			position: relative;
			width: 700px; 
			height: 500px;
			overflow: hidden;
			margin: 20px auto;
			background: #121315;
			border-radius: 25px;			
		}	

		.fractiv-testimonial {
			position: absolute;
			top: 0; left: 0;
			width: 100%; height: auto;
			opacity: 0;
			transition: opacity 2s ease-in-out;
			animation: fadeCycle 20s infinite;
			text-align: left;	  
		}

		.testimonial-columns {
			padding: 30px;
		  }	

		.fractiv-testimonial .testimonial-columns {
			align-items: center !important;
		}

		.fractiv-testimonial p:last-child {
			margin-top: -15px;
			margin-bottom: 5px;
		}		

		.fractiv-testimonial strong {
			font-weight: 500;
		}

		/* Each slide starts at a different point in the animation */
		.testimonial-1 { animation-delay: 0s; }
		.testimonial-2 { animation-delay: 10s; }

		@keyframes fadeCycle {
		  0%   { opacity: 0; }
		  5%   { opacity: 1; }
		  45%  { opacity: 1; }
		  50%  { opacity: 0; }
		  100% { opacity: 0; }
		}		


	/* ====== SECTION 3: LOGO ================================================================== */

		.fractiv-3-twist {
			width: 100%;
			margin-top: -100px;
			background-image:url('/wp-content/themes/fractiv/img/fractiv-bg-wave.png');
		    background-repeat: repeat-x; /* repeat horizontally */
		    background-size: auto 390px; /* or 'auto' depending on your image */
		    animation: moveBackground 500s linear infinite; /* duration, timing, repeat */			
			text-align:center;
			padding-top: 100px;
			padding-bottom: 40px;
		}

		@keyframes moveBackground {
			from {
				background-position: 50000px 30px;
			}
			to {
				background-position: 0 30px;
			}	
		}		

		.fractiv-3-twist img {
			max-width: 736px;
		}


		.fractiv-3-twist > div {
			position: relative;
		}

		.fractiv-3-twist .wave-animated {
			position: absolute;
			left: 50%;
			top: 0;
			transform: translate(-50%, 0);
		}

		.fractiv-3-twist p {
			padding: 0 75px;
			margin: 5px auto 20px;
			max-width: 750px;
		}	

	/* ====== SECTION 4: MODULATE ================================================================== */
		
		.fractiv-4-modulate {
			max-width: 1025px;
			background-image:url('/wp-content/themes/fractiv/img/feature-glow.png');
			background-repeat: no-repeat;
			background-position: -40px 50px;
			background-size: 66% 66%;
			margin-top: -170px;
			padding-top: 170px;
			padding-left: 75px;
		}

		.fractiv-4-modulate .fractiv-4-columns {
			column-gap: 0;
		}

		.fractiv-4-modulate .fractiv-4-column-left {
			text-align: center;
			max-width: 450px;
		}

		.fractiv-4-modulate .fractiv-4-column-left img {
			max-width: 388px;
		}		

		.fractiv-4-modulate .fractiv-4-column-right {
			max-width: 500px;
			padding: 0 25px 0 15px;
		}	

		.fractiv-4-modulate h1 {
			width: 350px;
		}


	/* ====== SECTION 5: SHIFT AND WARP ================================================================== */
		
		.fractiv-5-shift {
			background-image:url('/wp-content/themes/fractiv/img/fractiv-bg-glow-2.png');
			background-repeat: no-repeat;
			background-position: right top;
			margin-top: -200px;
			padding-top: 200px;
			padding-right: 75px;
			position: relative;
			top: -80px;
			justify-content: flex-end;
		}

		.fractiv-5-shift .fractiv-5-columns {
			column-gap: 0;
			flex-direction: row-reverse;
		}

		.fractiv-5-shift .fractiv-5-column-left {
			max-width: 500px;
			padding: 0 15px 0 25px;
		}	

		.fractiv-5-shift .fractiv-5-column-right {
			max-width: 450px;
			text-align: center;
		}

		.fractiv-5-shift .fractiv-5-column-right img {
			max-width: 381px;
		}		

		.fractiv-5-shift h1 {
			width: 250px;
			float: right;
		}	

		.fractiv-5-shift p {
			clear: both;
			padding-top: 5px;
		}	


	/* ====== SECTION 6: SLICE ================================================================== */
		
		.fractiv-6-slice {
			max-width: 1025px;
			background-image:url('/wp-content/themes/fractiv/img/fractiv-bg-glow.png');
			background-repeat: no-repeat;
			margin-top: -170px;
			padding-top: 170px;
			padding-left: 75px;
			clear: both;
			position: relative;
			top: -145px;
			margin-bottom: -170px;
			padding-bottom: 100px;
		}

		.fractiv-6-slice .fractiv-6-columns {
			column-gap: 0;
		}

		.fractiv-6-slice .fractiv-6-column-left {
			text-align: center;
			max-width: 450px;
			position: relative;
		}

		.fractiv-6-slice .fractiv-6-column-left figure:first-child {

		}

		.fractiv-6-slice .fractiv-6-column-left #moving-dot {
			position: absolute;
			left: 50%;
			top: 0;
			transform: translate(-50%, 0);
		}		

		.fractiv-6-slice .fractiv-6-column-left img {
			max-width: 381px;
		}

		.fractiv-6-slice .fractiv-6-column-right {
			max-width: 500px;
			padding: 0 25px 0 15px;
		}	

		.fractiv-6-slice h1 {
			width: 350px;
		}


	/* ====== SECTION 7: DOUBLE FEATURE ================================================================== */

		.fractiv-7-double {
			width: 100%;
			max-width: 1090px;
			margin: 0 auto;
			padding: 0 20px;
		}

		.fractiv-7-double .fractiv-7-columns {
			column-gap: 0;
		}	

		.fractiv-7-double .fractiv-7-column-left,
		.fractiv-7-double .fractiv-7-column-right {
			padding: 0 15px;
		}

		.fractiv-7-double img {
			box-shadow: 3.5px -6px 27px rgba(0, 0, 0, 0.75);
		}


	/* ====== SECTION 8: AUDIO EXAMPLES ================================================================== */

		.fractiv-8-audio {
			width: 100%;
			max-width: 1090px;
			margin: 0 auto;
			padding: 70px 35px;
		}

		.fractiv-8-audio p {
			font-size: 12px;
			margin-bottom: 0;
		}

		.fractiv-8-audio .audio-player {
			margin: 15px 0 0 0;
			background: #000000;
			border-radius: 7px;	
			box-shadow: 3.5px -6px 27px rgba(0, 0, 0, 0.4);		
		}	

		.fractiv-8-audio .player {
			display: flex;
			height: 31px;
			overflow: hidden;
			border-radius: 7px;
		}

		.fractiv-8-audio .play-btn {
			width:31px;
			height: 31px;
			font-size: 0;
			border: 0;
			background-image: url('/wp-content/themes/fractiv/img/play-pause.png');
		}

		.fractiv-8-audio .play-btn.playing {
			background-position: 0 -31px;
		}

		.fractiv-8-audio .waveform {
			width: calc(100% - 31px);
			background-image: url('/wp-content/themes/fractiv/img/bg-waveform.png');
		}
		

		.fractiv-8-audio .wp-block-column p {
			padding: 0 0 0 15px;	
			margin: 0;	
			font-size: 10px;
			font-weight: 400;
			color: #ffffff;
			line-height: 28px;
		}

		.wp-block-bizzleblocks-ws-audio-player {
			margin: 0;
			background: #000000;
			border-radius: 10px;		
		}


	/* ====== SECTION 9: FEATURES & REQUIREMENTS ================================================================== */

		.fractiv-9-features-requirements {
			background-image: 
				url('/wp-content/themes/fractiv/img/bg-bottom-glow.png'),
				url('/wp-content/themes/fractiv/img/bg-bottom.png');
			background-repeat:
			    no-repeat,
			    no-repeat;

		  	background-position:
			    center bottom,
			    left top;

			background-size:
			    100% auto,
			    100% 100%;
				border-top: solid 1px #323438;		
				padding: 0 10%;
			}

		.fractiv-9-features	{
			padding: 50px 0;
			overflow:hidden;
			border-bottom: solid 1px #323438;
		}

		.fractiv-9-features	h4 {
			background-image: url('/wp-content/themes/fractiv/img/bullet.png');
			background-repeat: no-repeat;
			background-position: left 6px;
			padding-left: 16px;
		}

		.fractiv-9-features .fractiv-feature {
			width: 33%;
			float: left;
			margin: 15px 0;
		}	

		.fractiv-9-features .fractiv-feature:nth-child(3n) {
			clear:both;
		}		

		.fractiv-9-features p {
			font-size: 12px;
			margin: 0;
			padding-right: 20px;
			line-height: 16px;
		}

		.fractiv-9-requirements {
			padding: 50px 0 70px 0;
		}

		.fractiv-9-requirements h2 {
			margin-bottom: 25px;
		}	

		.fractiv-9-requirements li {
			font-size: 12px;
			margin: 0;
		}


/* ========================================================================================= */
/* === OTHER CONTENT ======================================================================= */
/* ========================================================================================= */

	body.page:not(.home) #fractiv-main h1 {
		margin-bottom: 30px;
	}

	body.page:not(.home) #fractiv-main p {
		font-size: 20px;
		line-height: 45px;
		color: #ffffff;
		margin-bottom: 30px;
	}

	body.page:not(.home) #fractiv-main p a {
		color: #a3a4a6;
		color: #ffffff;
		text-decoration: none;
		font-weight: 700;
	}

	body.page:not(.home) #fractiv-main p strong {
		font-weight: 700;
	}	

	body.page:not(.home) #fractiv-main .wp-block-group {
		background-color: #252628;
		padding: 50px 50px 20px 50px;
		margin: 60px;
		border-radius: 50px;
	}

	button.redeem {
		width: 250px;
		margin-bottom: 40px;
	}

	#video-popup {
		display: none;
		position: fixed;
		left: 0;
		right: 0;
		top:0;
		bottom: 0;
		width: 100vw;
		height: 100vh;
		background:rgba(0,0,0,0.8);
		z-index:100;
  	flex-direction: column;		
  	justify-content: center;
		justify-content:center;
		align-items: center;
	}

		#video-close {
			height: 50px;
			margin-bottom: 30px;
			width: 90%;
			max-width: 1200px;
		}

		#video-close .close-button {
			float: right;
			width: 50px;
			height: 50px;
			cursor:pointer;
			background-image: url('/wp-content/themes/fractiv/img/popup-close.png');
			background-position: center center;
		}

		#video-embed {
			width: 80%;
			max-width: 1200px;
			/* max-height: calc(100vh - 200px); */
			aspect-ratio: 16 / 10;
			border: solid 1px #ffffff;
		}

		.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe{
			width: 100%;
			height: auto;
			aspect-ratio: 16 / 9;
		}

body.page:not(.home) #fractiv-main .wp-block-group.video-getting-started,
body.page:not(.home) #fractiv-main .wp-block-group.video-demos {
	background: transparent;
	padding: 0;
}

/* ========================================================================================= */
/* === ALL THE RESPONSIVE STUFF ============================================================ */
/* ========================================================================================= */

@media screen and (min-width: 850px) {

	.fractiv-4-modulate .fractiv-4-column-right,
	.fractiv-6-slice .fractiv-6-column-right {
		padding-left: 0;
		margin-left: -1px;
	}

	.fractiv-5-shift .fractiv-5-column-left {
		padding-right: 0;
	}	

}


@media screen and (max-width: 1000px) {

	body.page:not(.home) #fractiv-main .wp-block-group {
		margin-left: 20px;
		margin-right: 20px;
	}

	.fractiv-1-main-logo {
		margin-top: 60px;
	}

	.fractiv-2-granular {
		top: -30px;
	}

	.fractiv-2-granular h1,
	.fractiv-2-granular h3,
	.fractiv-2-granular p	{
		width: 100%;
		text-align: center;
	}

	.fractiv-2-granular .desktop-only {
		display: none;
	}

	.fractiv-2-granular .mobile-only {
		display: block;
	}	

	.fractiv-2-granular figure {
		width: 100%;
	}	

	.fractiv-2-granular .fractiv-2-text {
		position: relative;
		top: -60px;
		left: 0;
		width: 100%;
		padding: 0 25px;
	}

	.fractiv-2-granular-pricing-buy	{
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}

	.fractiv-3-twist {
		padding: 3% 25px 0 25px;
		margin-top: -20px;
		background-size: auto 66%;
	}	

	@keyframes moveBackground {
		from {
			background-position: 50000px 0;
		}
		to {
			background-position: 0 0;
		}	
	}

	.fractiv-3-twist .wave-animated {
		left: 0;
		top: 0;
		transform: translate(0, 0);
	}			

	.fractiv-3-twist p {
		padding: 0;
	}	

	.fractiv-3-twist img {
		max-width: 100%;
	}

	.fractiv-4-modulate {
		margin-top: -130px;
		padding-top: 170px;
		padding-left: 0;
		padding-right: 20px;
		max-width: 100%;
	}

	.fractiv-4-modulate .fractiv-4-columns {
		column-gap: 0;
	}

	.fractiv-5-shift {
		margin-top: -100px;
		padding: 170px 0 0 0;
		max-width: 100%;
	}

	.fractiv-5-shift .fractiv-5-column-left	{
		padding-right: 0;
	}

	.fractiv-5-shift .fractiv-5-column-right img {
		width: 100%;
	} 

	.fractiv-5-shift .fractiv-5-columns {
		column-gap: 0;
	}	

	.fractiv-6-slice {
		margin-top: -60px;
		padding-top: 170px;
		padding-left: 0;
		padding-right: 20px;
		max-width: 100%;
	}

	.fractiv-6-slice .fractiv-6-columns {
		column-gap: 0;
	}	

	.fractiv-6-slice .fractiv-6-column-left img {
		width: 100%;
	} 

		.fractiv-6-slice .fractiv-6-column-left #moving-dot {
			width: 100%;
		}	

}

@media screen and (min-width: 781px) {
	.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe{
		margin-bottom: 25px;
	}
}

@media screen and (max-width: 781px) {

	h1, h2, h3, h4, h5, p {
		text-align: center;
	}

	header.site-header .try-fractiv {
		margin: 0;
	}

	header.site-header .try-fractiv a {
		padding: 0;
		font-size: 16px;
		margin: 0 0;
		width: 150px;
	}

	body.page:not(.home) #fractiv-main .wp-block-group {
		padding-left: 20px;
		padding-right: 20px;
	}	

	body.page:not(.home) #fractiv-main .wp-block-group h5 {
		text-align: left;
	}

	body.page:not(.home) #fractiv-main .wp-block-group p {
		text-align: left;
		line-height: 30px;
		font-size: 16px;
	}

	.testimonials {
	  width: calc(100% - 40px);  
	}
	
	.fractiv-2-granular {
		margin-bottom: -40px;
	}

	.fractiv-2a-testimonials {
		margin-bottom: 50px;
	}	
	
	.fractiv-2a-testimonials h1 {
		line-height: 24px;
	}	

	.fractiv-testimonial {

	}

	.fractiv-testimonial .testimonial-columns {
		gap: 20px;
	}

	.fractiv-testimonial p:last-child {
		margin-top: 0;
	}	

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

	.testimonial-image img {
		width: 100px;
	}	

	.fractiv-4-modulate {
		padding-right: 0;
		background-size: 100% auto;
		background-position: center top;
		margin-top: -150px;
	}	

	.fractiv-4-modulate .fractiv-4-columns {
		column-gap: 0;
	}

	.fractiv-4-modulate .fractiv-4-column-left {
		max-width: 100%;
	}

	.fractiv-4-modulate .fractiv-4-column-right {
		max-width: 100%;
		padding: 0 25px;
		text-align: center;
		margin-top: -40px;
	}

	.fractiv-4-modulate .fractiv-4-column-right h1 {
		width: 100%;
	}	

	.fractiv-5-shift {
		background-image:url('/wp-content/themes/fractiv/img/feature-glow.png');
		margin-top: 0;
		background-size: 100% auto;
		background-position: center top;
		margin-top: -25px;
	}

	.fractiv-5-shift .fractiv-5-columns {
		column-gap: 0;
	}

	.fractiv-5-shift .fractiv-5-column-left {
		max-width: 100%;
	}

	.fractiv-5-shift .fractiv-5-column-right {
		max-width: 100%;
		padding: 0 25px;
		text-align: center;
		margin-top: -40px;
	}

	.fractiv-5-shift .fractiv-5-column-left {
		padding: 0 25px;
		text-align: center;
		margin-top: -30px;		
	}

	.fractiv-5-shift .fractiv-5-column-left h1,
	.fractiv-5-shift .fractiv-5-column-left h3,
	.fractiv-5-shift .fractiv-5-column-left p	 {
		text-align: center;
		width: 100%;
		}

	.fractiv-6-slice {
		background-image:url('/wp-content/themes/fractiv/img/feature-glow.png');
		padding-right: 0;
		background-size: 100% auto;
		background-position: center top;	
		margin-top: -85px;
		margin-bottom: -205px;
	}	

	.fractiv-6-slice .fractiv-6-columns {
		column-gap: 0;
	}

	.fractiv-6-slice .fractiv-6-column-left {
		max-width: 100%;
	}

	.fractiv-6-slice .fractiv-6-column-right {
		max-width: 100%;
		padding: 0 25px;
		text-align: center;
		margin-top: -40px;
	}

	.fractiv-6-slice .fractiv-6-column-right h1 {
		width: 100%;
	}	

	.fractiv-8-audio {
		margin-top: 0;
	}
	
	.fractiv-8-columns {
		max-width: 500px;
		margin: 20px auto 0;
	}

	.fractiv-9-features-requirements h4,
	.fractiv-9-features-requirements p {
		text-align: left;
	}

	.fractiv-9-features-requirements .fractiv-feature {
		margin: 40px 0 0 0;
		padding-right: 10px;
		width: 50%;
	}	

	.fractiv-9-features .fractiv-feature:nth-child(3n) {
		clear: none;
	}

	.fractiv-9-features .fractiv-feature:nth-child(2n+1) {
		clear:both;
	}		

}

@media screen and (max-width: 620px) { 

	header.site-header .try-fractiv a {
		/*
		width: 100px;
		line-height:20px;
		padding: 5px;
		*/
	}

	#download-buy a,
	#download-buy button	{
		width: 100%;
	}

	body.page:not(.home) #fractiv-main .wp-block-group {
		padding-left: 20px;
		padding-right: 20px;
	}	

	.fractiv-2-granular {
		margin-bottom: -10px;
	}
	
	.fractiv-2-granular .fractiv-2-text {
		top: -20px;
	}		

    .fractiv-4-modulate,
	.fractiv-5-shift,
	.fractiv-6-slice {
		background-position: center top;
		background-size: 150% auto;
	}

	.fractiv-6-slice {
		background-position: center 40px;
	}	

	.fractiv-9-features-requirements {
		padding: 0 25px;
	}

	.fractiv-9-features-requirements .fractiv-feature {
		width: 100%;
		padding: 0;
	}

}


@media screen and (max-width: 475px) {

	header.site-header .fractiv-menu {
		margin-left: 0;
		margin-right: 20px;
	}

	#main-menu li, 
	#main-menu li a {
		height: 40px;
		line-height: 40px;
	}

	#main-menu li a {
		font-size: 18px;
	}
	#main-menu li a .menu-arrow	{
		width: 10px;
		height: 20px;
		margin: 10px 0;
		background-size: 20px 10px;
	}

	#download-buy a,
	#download-buy button	{
		font-size: 16px;
	}

	.fractiv-2-granular .fractiv-2-text {
		display: block;
	} 

	.fractiv-2-granular-pricing-buy {
		display: block;
	}

	.fractiv-2-intro-sale {
		font-size: 20px;
	}

	.fractiv-2-pricing {
		font-size: 35px;
	}

	.fractiv-2-button button	{
		width: 115px;
		font-size: 14px;
		padding:0;
	}

	.fractiv-2a-testimonials {
		margin-bottom: 20px;
	}
	.fractiv-3-twist {
		margin-top: 50px;
	}

	.fractiv-4-modulate .fractiv-4-column-left img {
		max-width: 100%;
	}	

}

@media screen and (max-width: 425px) {
	header.site-header .try-fractiv a {
		width: auto;	
		font-size: 13px;
		padding: 0 5px;
	}
	
}


/* --- REMOVE THIS ONCE LIVE --- */

/*

.fractiv-2-button button {
    font-size: 16px;
}

@media screen and (max-width: 475px) {
    .fractiv-2-button button {
        width: 150px;
        font-size: 11px;
    }
}
.only-live {
	display: none !important;
}
*/

[hidden] { display: none !important; }