@charset "utf-8";
/*------------------------------------------------------------------------- RESET 
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 				0;
	padding: 				0;
	border: 				0;
	font-size: 				100%;
	font: 					inherit;
	vertical-align: 		baseline;
	outline: 				0;
	
}
/*------------------------------------------------------------------------- HTML 5 DISPLAY ROLE RESET FOR OLDER BROWSERS
*/
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: 				block;
}
body {
	line-height: 			1;
}
ol, ul {
	list-style: 			none;
}
blockquote, q {
	quotes: 				none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: 				'';
	content: 				none;
}
table {
	border-collapse: 		collapse;
	border-spacing: 		0;
}
:focus {
	outline: 				0 !important;
}
*,
*::before,
*::after {
	box-sizing: 			border-box;
}

/*------------------------------------------------------------------------- FONTS 
*/
@font-face {
    font-family: 'proxima-nova-thin';
    src: url('font/proxima-nova-thin.woff') format('woff');
    font-weight: 			normal;
    font-style: 			normal;
}
@font-face {
    font-family: 'proxima-nova-regular';
    src: url('font/proxima-nova-regular.woff') format('woff');
    font-weight: 			normal;
    font-style: 			normal;
}
@font-face {
    font-family: 'proxima-nova-bold';
    src: url('font/proxima-nova-bold.woff') format('woff');
    font-weight: 			normal;
    font-style: 			normal;
}

/*------------------------------------------------------------------------- CORE 
*/
body {
	font-family: 			'proxima-nova-regular', sans-serif;
	text-align:				left;
	background:				#fff;
	margin:					0;
	color:					#000;
	overflow-x:				hidden;
}
a {
	font-family: 			'proxima-nova-bold', sans-serif;	
	text-decoration:		none;
	color:					#333;
	position:				relative;
	transition:				0.2s linear;
} 
strong, b {
	font-family: 			'proxima-nova-bold', sans-serif;
    font-weight: 			normal;
    font-style: 			normal;	
}
em, i {
	font-family: 			'proxima-nova-thin', sans-serif;
    font-weight: 			normal;
    font-style: 			normal;	
}
sup {
	vertical-align: 		super;
	font-size:				70%;
}
div#page {
	width:					100%;
	height:					100%;
	position:				relative;
	min-width:				320px;
	overflow:				hidden;
	margin:					0 auto;
}

.page-anchor {
	display:				block;
	height:					2px;
	width:					100%;
}

@media screen and (max-width: 320px)
{
	body {
		overflow-x:			hidden;
	}
	div#page {
		width:				320px;	
		left: 				50%;
		margin-left: 		-160px;
	}
}
.xdebug-error, .xe-warning {
	font-size:				16px;
	color:					#000;
}
.wow {
    visibility: hidden;
}

/*------------------------------------------------------------------------- LAYOUT 
*/
.container {
	max-width:				1440px;
	width:					100%;
	margin:					0 auto;
	position:				relative;
}
.column {
	flex:					0 1 auto;
	position:				relative;
}
.row {
	width:					100%;
	position:				relative;
}
.wrapper {
	position:				relative;
	width:					100%;
}

.with-border::before {
	content:				'';
	display:				block;
	width:					100%;
	height:					200px;
	position:				absolute;
	left:					0;
	right:					0;
	top:					-200px;
	background:				transparent url(../images/borders/contact-border.png) no-repeat center bottom  / 100% 200px;	
}
.multi-column {
	column-count:			3;
	display:				block !important;
	column-gap: 			40px;
}
.multi-column h2 {
	column-span: 			all;
	font-family:			'proxima-nova-bold';
	font-size:				24px;
	letter-spacing:			4px;
	color:					#988a9b;
	margin-bottom:			30px;	
	text-transform:			uppercase;
}
.multi-column h2::after {
	content:				'';
	display:				block;
	height:					20px;
	width:					50px;
	border-bottom:			1px solid rgba(0,0,0,0.4);
}

@media (max-width: 1280px)
{
	.with-border::before {
		background-size: 	auto 200px;
	}
}
@media (max-width: 920px)
{
	.multi-column {
		column-count:		2;
	}
}
@media (max-width: 640px)
{
	.multi-column {
		column-count:		1;
	}	
}

/*------------------------------------------------------------------------- HEADER SECTION 
*/
#header {
	background:				#afafaf url(../images/header-bg.jpg)  center top / 100% auto no-repeat fixed;
	height:					640px;
	transition:				height 0.4s ease-out;
}
#header .container {
	padding:				0 20px;
	max-width:				1280px;
}
#header h2 {
	color:					#555;
	text-transform:			uppercase;
	letter-spacing:			2px;
	margin:					0 0 30px 30px;
	font-size:				11px;
	font-family:			'proxima-nova-bold';
}
#header h2::after {
	content:				'';
	display:				block;
	height:					15px;
	width:					50px;
	border-bottom:			1px solid rgba(0,0,0,0.3);
}
#logo {
	width:					300px;
	height:					275px;
	z-index:				1000;
	transition:				width 0.2s linear, height 0.2s linear, opacity 1s ease-in;
	opacity:				1;
}
#logo a {
	display:				block;
	width:					100%;
	height:					100%;
	text-indent:			-9999px;
	background:				url(../images/my-treasured-memories-logo.svg) center center / 100% no-repeat;
}

#page.fixed #logo {
	opacity:				0;
	transition:				opacity 0.5s ease-out;		
}

@media(max-width: 1280px)
{
	#header {
		background-size:	auto;
	}
}
@media (max-width: 640px)
{
	#header {
		height:				540px;
	}
	#logo {
		width:				240px;
		height:				220px;
	}
}
@media (max-width: 560px)
{
	#logo {
		width:				200px;
		height:				183px;
	}	
}
@media (max-width: 400px) {
	#logo {
		width:				153px;
		height:				140px;
	}
}

/*------------------------------------------------------------------------- HEADER NAVIGATION 
*/
#navigation {
	padding:				40px;
	text-align:				center;
	transition:				background 0.4s linear, text-shadow 0.4s linear;
}
#navigation ul {
	margin:					0 auto;

}
#navigation li {
	display:				inline-block;
	font-size:				14px;	
	text-transform:			uppercase;
	letter-spacing:			4px;
}
#navigation li::after {
	content:				'|';
	margin:					0 5px 0 10px;
}
#navigation li:last-of-type::after {
	display:				none;
}
#navigation li a {
	color:					#00383c;
	transition:				0.2s linear;
	padding:				10px;
}
#navigation li a:hover {
	color:					#fff;
	text-shadow:			0 0 4px rgba(255,255,255,0.5);
	background:				rgba(0,0,0,0.03);
}

/*------------------------------------------------------------------------- HEADER NAVIGATION (FIXED)
*/
#page.fixed #navigation {
	position:				fixed;
	top:					0;
	left:					0;
	right:					0;
	background:				rgba(255,255,255,0.25);
	box-shadow:				0 2px 16px rgba(0,0,0,0.15);
	width:					100%;
	z-index:				999;
	padding:				20px;
}
#page.fixed #navigation:hover {
	background:				rgba(255,255,255,0.95);
}

#page.fixed #navigation li a:hover {
	color:					#988a9b;
	background:				transparent;
	text-shadow:			none;
}

#page.fixed #navigation ul {
	opacity:				0.4;
	transition:				opacity 0.2s linear;
}
#page.fixed #navigation:hover ul {
	opacity:				1;
}
/*------------------------------------------------------------------------- HEADER NAVIGATION (MOBILE)
*/
#navigation a.mobile-menu {
	display:				none;
	position:				absolute;
	right:					20px;
	top:					20px;
	text-transform:			uppercase;
	letter-spacing:			2px;
	font-size:				14px;
	color:					#00383c;
	padding:				10px 10px 10px 26px;
	background:				url(../images/icons/menu.svg) left center / 16px auto no-repeat; 
}
#navigation.show-mobile a.mobile-menu {
	background-image:		url(../images/icons/menu-close.svg);
	background-size:		14px;
}
#page.fixed #navigation a.mobile-menu {
	top:					3px;
}
#page.fixed #navigation ul {
	top:					40px;
	border-top-color:		rgba(0,56,60,0.5);
}

@media (max-width: 780px)
{
	#navigation {
		padding:			15px;
	}
	#navigation a.mobile-menu {
		display:			block;
	}
	#navigation a.mobile-menu:hover {
		color:				#000;
		cursor:				pointer;
	}
	#navigation ul {
		display:			block;
		opacity:			0;
		position:			absolute;
		right:				20px;
		top:				60px;
		background:			rgba(255,255,255,0.95);
		padding:			10px 0;
		width:				calc(100% - 40px);
		z-index:			999;
		border-top:			1px solid #00383c;
		box-shadow:			0 4px 8px rgba(0,0,0,0.4);
		clip-path: 			polygon(0 0, 100% 0, 100% 0, 0 0);
		transition:			clip-path 0.25s ease-out, opacity 0.25s ease-out;
	}
	#navigation.show-mobile ul {
		clip-path: 			polygon(0 0, 100% 0, 100% 100%, 0% 100%);
		opacity:			1;
	}
	#navigation li {
		display:			block;
		text-align:			left;
		width:				100%;
	}
	#navigation li a {
		padding: 			5px 10px;
		display:			block;
		letter-spacing:		3px;
	}
	#page.fixed #navigation li a:hover,
	#navigation li a:hover {
		background:			#988a9b;
		color: 				#fff;
	}
	#navigation li::after {
		display:			none;
	}
}

/*------------------------------------------------------------------------- HEADER BANNER CHARACTERS
*/
#banner {
	position:				fixed;
	top:					0;
	width:					640px;
	height:					420px;
	left:					0;
	right:					0;
	margin:					0 auto;
}
#banner img {
	display:				block;
	width:					100%;
	margin:					80px 0 0 35%;
}
div.slide {
	transition:				3s ease-out opacity;
	position:				absolute;
	width:					100%;
	height:					100%;
	opacity:				0;
	z-index:				1;
}
div.slide.active {
	z-index:				9;
	opacity:				1;	
}
div.slide div.caption {
	position: 				absolute;
    left: 					-300px;
    right: 					0;
	bottom:					-9999px;
    color: 					#fff;
    text-align: 			center;
    font-size: 				16px;
    margin: 				auto;
    text-transform: 		uppercase;
    letter-spacing:			0;
    text-shadow: 			0 1px 1px rgba(0,0,0,0.4);
    font-family: 			'proxima-nova-bold';
    line-height: 			1.0em;
	word-spacing: 			9999px;
	background: 			transparent url(../images/caption-bg.png) center center / 60% 60% no-repeat;
	padding: 				0;
	height:					204px;
	width:					190px;
	display:				flex;
	justify-content: 		center;
	align-items: 			center;
	transition: 			bottom 0s ease-in-out 2s, opacity 2s linear;
	opacity:				0;
}
div.slide div.caption p {
	flex: 					0 1 auto;
	transform: 				rotate(0);
	opacity:				0;
	transition:				1s ease-in-out;
}
div.slide.active div.caption p  {
	opacity: 				1;
	transform: 				rotate(-5deg);
}

div.slide.active div.caption {
	opacity: 1;
	bottom: 				-60px;	
	transition:	 			bottom 2s cubic-bezier(0,1.1,0.7,1), opacity 2s linear;

}

@media (max-width: 640px)
{
	#banner {
		width:				480px;
		height:				315px;
	}	
	#banner img {
		margin:				100px 0 0 25%;
	}
	div.slide.active div.caption {
		bottom: 			-100px;
	}
	div.slide div.caption {
		left:				-240px;
	}	
}
@media (max-width: 400px)
{
	#banner {
		width:				400px;
		height:				263px;
	}
	#banner img {
		margin:				140px auto 0;
	}	
	div.slide div.caption {
		display:			none;
	}
}

/*------------------------------------------------------------------------- FEATURE BLOB
*/
.feature-blob {
	color:					#d9ebe7;
	background:				transparent url(../images/blob.svg) center center / 100% no-repeat;
	display:				flex;
	align-items:			center;
	justify-content:		center;
	width:					210px;
	height:					200px;
	position:				absolute;
	left:					auto;
	top:					-200px;
	transition:				0.3s linear;

}
.feature-blob p {
	color:					#d9ebe7;
	font-family:			'proxima-nova-bold';
	letter-spacing:			2px;
	line-height:			1.1em;
	font-size:				12px;
	text-transform:			uppercase;
	width:					140px;
	text-align:				center;
}
#page.fixed #media-types .feature-blob {
	top: 					-800px;
	opacity:				0;
}

@media (max-width: 640px)
{
	.feature-blob {
		width:				180px;
		height:				171px;
		top:				-220px;	
	}
	.feature-blob p {
		width: 				110px;
		font-size: 			11px;
		letter-spacing: 	1px;
	}
}
@media (max-width: 640px)
{
	.feature-blob {
		right: 				20px;
		top: 				-200px;
	}
}
@media (min-width: 1280px)
{
	.feature-blob {
		left:				calc( ( 100vw - 1280px ) / 2 );
	}
}

/*------------------------------------------------------------------------- MEDIA TYPES SECTION 
*/
#media-types {
	background:				#daebe8;
	color:					#554b58;
	padding:				40px 40px 160px;
}
#media-types::before {
	background-image:		url(../images/borders/feature-border.png);
}
#media-types .container {
	display:				flex;
	flex-flow:				row wrap;
	justify-content:		center;
}
#media-types p.introduction {
	width:					100%;
	max-width:				480px;
	font-family: 			'proxima-nova-bold';
	font-size:				16px;
	text-align:				center;
	color:					#18484c;
	line-height:			1.2em;
	margin:					-60px auto 40px;
	position:				relative;
}
.media-type {
	flex:					0 1 120px;
	margin:					0 1.5% 40px;
}
.media-type img {
	margin:					0 auto 15px;
	width:					100%;
	height:					120px;
}
.media-type h5 {
	font-family:			'proxima-nova-bold';
	font-size:				10px;
	text-align:				center;
	padding:				0;
	margin:					-20px 0 0;
	text-transform:			uppercase;
	letter-spacing:			2px;
}

@media (max-width: 960px)
{
	#media-types p.introduction {
		margin: 			0 auto 40px;
	}
}
@media (max-width: 640px)
{
	#media-types {
		padding: 			0 40px 160px;
	}
}

/*------------------------------------------------------------------------- GENERAL CONTENT SECTION 
*/
#content {
	background:				#ddd;
	color:					#111;
	padding:				0 40px 240px;	
}
#content::before {
	background-image:		url(../images/borders/content-border.png);
}
#content .row {
	display:				flex;
	align-items:			stretch;
	flex-flow:				row wrap;
}
#content .row .column {
	flex:					1 0 50%;
}
#content .column:first-of-type {
	padding:				0 5% 0 2.5%;
}
#content h3 {
	font-family:			'proxima-nova-bold';
	font-size:				16px;
	text-transform:			uppercase;
	letter-spacing:			3px;
	color:					#605363;
	margin-bottom:			30px;
	line-height:			1.1em;
}
#content h3::after {
	content:				'';
	display:				block;
	width:					50px;
	height:					20px;
	border-bottom:			1px solid rgba(0,0,0,0.3);
}
#content p {
	font-size:				15px;
	color:					#111;
	margin:					0 0 20px;
	line-height:			1.2em;
}
#content h4 {
	text-transform: 		uppercase;
	font-weight:			800;
	letter-spacing:			3px;
	margin:					0 0 5px;
	font-size:				14px;
	font-family:			'proxima-nova-bold';
}
#content h5 {
	text-transform: 		uppercase;
	font-weight:			800;
	letter-spacing:			2px;
	margin:					0 0 5px;
	font-size:				13px;
	color:					#7d6d81;
}
#content ul {
	margin:					10px 0 20px;
	font-size:				15px;
}
#content ul li {
	background:				url(../images/icons/tick.svg) left top / 14px auto no-repeat;
	padding:				0 0 0 30px;
	margin:					0 0 5px;
	line-height:			1.2em;
}
#content ol {
	margin:					10px 0 20px 10px;
	list-style:				decimal;
	font-size:				15px;
}
#content ol li {
	padding:				0 0 0 20px;
	margin:					0 0 5px;
	line-height:			1.2em;
}
#content a:hover::after {
	content:				'';
	display:				block;
	position:				absolute;
	border-top:				1px dotted #111;
	bottom: 				-1px;
	width:					100%;
	left:					0;
	color:					#000;
}

.photo-circle {
	display:				block;
	width:					100%;
	max-width:				400px;
	margin:					20px auto;
}
.photo-caption {
	text-align:				center;
	text-transform:			uppercase;
	letter-spacing:			3px;
	font-size:				11px !important;
	color:					#333;
	margin:					10px auto 30px;
	line-height:			1;
}
.photo-wrapper {
	break-inside: 			avoid-column;
}



@media (max-width: 720px)
{
	#content .row .column {
		flex:				1 0 100%;	
	}
	#content .column:first-of-type {
		padding:			0 5% 40px 2.5%;
	}
}

@media (max-width: 480px)
{
	#content {
		padding:			0 20px 160px;	
	}
}

/*------------------------------------------------------------------------- CONTENT KEY FEATURES LIST
*/
#content .key-features  {
	display:				flex;
	flex-flow:				row wrap;
	align-items:			center;
	margin:					0 0 60px;
}
#content .key-features li {
	color:					#605363;
	font-family:			'proxima-nova-bold';
	font-size:				16px;
	margin:					0 0 20px;
	padding:				0 2.5%;
	flex: 					0 1 50%;
	background:				none;
}
#content .key-features li {
	position:				relative;	
	display:				flex;
	align-items:			center;
}
#content .key-features li::before {
	content:				'';
	background:				transparent url(../images/icons/tick.svg) no-repeat center center / 100%;
	height:					30px;
	width:					30px;
	margin-right:			20px;
	flex: 					0 0 30px;
	display: 				inline-block;
}

@media (max-width: 640px)
{
	#content .key-features li {
		flex: 				1 0 100%;
	}
}


/*------------------------------------------------------------------------- PERSONAL ARCHIVE OPTIONS SECTION 
*/
#archive-options {
	background:				#bfb7c1;
	color:					#111;
	padding:				0 40px 200px;
}
#archive-options::before {
	background-image:		url(../images/borders/contact-border.png);
}
#archive-options .container {

}
#archive-options .row {
	display:				flex;
	flex-flow:				row wrap;
	align-items:			flex-start;
	justify-content:		center;
}
#archive-options h3 {
	font-family:			'proxima-nova-bold';
	font-size:				16px;
	text-transform:			uppercase;
	letter-spacing:			3px;
	color:					#605363;
	margin-bottom:			30px;
	line-height:			1.1em;
	text-align:				left;
	width:					100%;
}
#archive-options h3::after {
	content:				'';
	display:				block;
	width:					50px;
	height:					20px;
	border-bottom:			1px solid rgba(0,0,0,0.3);
}
#archive-options p {
	margin-bottom:			50px;
	font-size:				15px;
    line-height: 			1.2em;
	
}
.add-on {
	display:				block;
	flex:					0 1 auto;
	margin:					0 1.25% 30px;
	width:					301px;
	max-width:				22.5%;
	position:				relative;	
}
.add-on img {
	width:					100%;
	display:				block;
	margin:					0 auto 20px;
	position:				relative;
}

.add-on h5 {
    font-family: 			'proxima-nova-bold';
    font-size: 				13px;
    text-align: 			center;
    padding: 				0;
    margin: 				0;
    text-transform: 		uppercase;
    letter-spacing: 		3px;
}
.add-on h5::after {
    content: 				'';
    display: 				block;
    width: 					50px;
    height: 				20px;
    border-bottom: 			1px solid rgba(0,0,0,0.3);
	margin: 				0 auto 20px;
}
.add-on p {
	margin:					10px 0;
	text-align:				center;
	font-size: 				13px;
    color: 					#333;
	padding:				0 20px;
}

@media (max-width: 720px)
{
	.add-on {
		max-width: 			45%;
	}
}

@media (max-width: 480px)
{
	.add-on {
		max-width: 			100%;
		margin: 			0 auto 40px;
	}	
}


/*----------------------------------------------------------- PROFESSIONAL ARCHIVE TYPES 
*/
#professional-archive-types {
	background: 			#daebe8;
    color: 					#554b58;
    padding: 				0 40px 200px;
}
#professional-archive-types::before {
	background-image:		url(../images/borders/feature-border.png);
}


#professional-archive-types .row {
	display:				flex;
	flex-flow:				row wrap;
	align-items:			flex-start;
	justify-content:		center;
}

.mtm-pro-logo {
	width:					240px;
	height:					133px;
	background:				transparent url(../images/my-treasured-memories-pro-logo.svg) center center / 100% no-repeat;
	text-indent:			-9999px;
	margin: 				0 auto 40px;
}

#professional-archive-types h3 {
	font-family:			'proxima-nova-bold';
	font-size:				16px;
	text-transform:			uppercase;
	letter-spacing:			3px;
	color:					#605363;
	margin-bottom:			30px;
	line-height:			1.1em;
	text-align:				left;
	width:					100%;
}
#professional-archive-types h3::after {
	content:				'';
	display:				block;
	width:					50px;
	height:					20px;
	border-bottom:			1px solid rgba(0,0,0,0.3);
	margin-bottom:			30px;
}

.pro-archive-type {
	display:				block;
	flex:					0 1 20%;
	margin:					0 2.5% 40px;
	max-width:				320px;
	min-width:				180px;
}

.pro-archive-type img {
	width:					100%;
	max-width:				240px;
	margin:					0 auto;
	display:				block;
}

.pro-archive-type h5 {
	text-align:				center;
	text-transform:			uppercase;
	letter-spacing:			2px;
	color:					#988a9b;
	font-family:			'proxima-nova-bold';
	margin:					20px auto 15px;
}
.pro-archive-type h5::after {
    content: 				'';
    display: 				block;
    width: 					50px;
    height: 				20px;
    border-bottom: 			1px solid rgba(0,0,0,0.3);
    margin: 				0 auto 20px;
}

.pro-archive-type p {
	text-align:				center;
	padding:				0 12.5%;
	font-family:			'proxima-nova-bold';
	font-size:				14px;
	line-height:			1.2em;
	margin:					0 auto;
	color:					#555;
}

@media (max-width: 1040px)
{
	.pro-archive-type {
		flex-basis: 		50%;
		margin: 			0 auto 40px;
	}
}
@media (max-width: 496px)
{
	.pro-archive-type {
		flex:				1;
		margin:				0 auto 40px;
	}
}



/*---------------------------------------------------- PROFESSIONAL ARCHIVES DESCRIPTION SECTION 
*/
#professional-archives {
	background: 			#ddd;
    color: 					#111;
    padding: 				0 40px 100px;
}
#professional-archives::before {
	background-image:		url(../images/borders/content-border.png);
}

#professional-archives p {
	margin: 				0 0 20px;
}
/*---------------------------------------------------- PROFESSIONAL ARCHIVES TARGET CONSUMER LIST 
*/
#professional-archives h4 {
	text-transform:			uppercase;
	letter-spacing:			3px;
	margin:					40px 0 20px;
	font-size:				16px;
	font-family:			'proxima-nova-bold';
}

#professional-archives .key-people  {
	display:				flex;
	flex-flow:				row wrap;
	align-items:			center;
	margin:					30px 0;
}
#professional-archives .key-people li {
	color:					#605363;
	font-family:			'proxima-nova-regular';
	font-size:				15px;
	margin:					0 0 15px;
	padding:				0 2.5%;
	flex: 					0 1 50%;
	background:				none;
}
#professional-archives .key-people li {
	position:				relative;	
	display:				flex;
	align-items:			flex-start;
}
#professional-archives .key-people li::before {
	content:				'';
	background:				transparent url(../images/icons/tick.svg) no-repeat center center / 100%;
	height:					20px;
	width:					20px;
	margin-right:			15px;
	flex: 					0 0 20px;
	display: 				inline-block;
}

@media (min-width: 961px)
{
	#professional-archives .key-people li {
		flex: 				0 1 33%;	
	}
}

@media (max-width: 640px)
{
	#professional-archives .key-people li {
		flex: 				1 0 100%;
	}
}

/*------------------------------------------------------------------------- CALL TO ACTION BLOB 
*/
#professional-archives .cta-blob {
	color:					#d9ebe7;
	background:				transparent url(../images/blob.svg) center center / 100% no-repeat;

	position:				relative;
	width:					100%;
	max-width:				300px;
	height:					286px;
	transition:				0.2s linear;	
	margin:					0 auto;
	z-index:99;
	
}
#professional-archives .cta-blob h6 {
	width:					120%;
	height:					46px;
	background:				url(../images/want-to-know-more.svg) center center / 100% auto no-repeat;
	text-indent:			-9999px;
	margin:					-20px -10% 20px;
	transform:				rotate(-5deg);
	transition:				0.2s linear;	
	
}

#professional-archives .cta-blob p {
	width:					70%;
	margin:					0 auto;
	color:					#d9ebe7;
	font-family:			'proxima-nova-bold';
	letter-spacing:			2px;
	line-height:			1.2em;
	font-size:				12px;
	text-transform:			uppercase;
	text-align:				center;	
	transition:				0.2s linear;	
	
}
#professional-archives .cta-blob a {
	width:					100%;
	height:					100%;
	display:				flex;
	align-items:			center;
	justify-content:		center;
	position:				relative;
	flex-flow:				column nowrap;
}
#professional-archives .cta-blob:hover {
	background-size:		90%;
	filter:					brightness(120%);
}
#professional-archives .cta-blob:hover h6 {
	transform:				rotate(0);
}
/*------------------------------------------------------------------------- CLIENTS IN ABOUT PAGE 
*/
.clients {
	width:					100%;
	margin:					0 auto;
	padding:				40px 10px 0;
	position:				relative;
	display:				flex;
	justify-content:		space-around;
	flex-flow:				row wrap;
}
.clients div.client {
	flex:					1 1 auto;
	margin:					0 1%;
	position:				static;
	max-width:				100px;
}
.clients div.client img {
	width:					100%;
	transition:				0.2s linear;
	padding:				5px;
}

.clients div.client span.client-caption strong {
	text-transform:			uppercase;
}
.clients div.client span.client-caption {
	display:			none;	
}

/*------------------------------------------------------------------------- CONTACT FORM SECTION 
*/
#contact-form {
	background:				#bfb7c1;
	color:					#111;
	padding:				0 40px 200px;
}
#contact-form::before {
	background-image:		url(../images/borders/contact-border.png);
}
#contact-form .container {
	display:				flex;
	flex-flow:				row wrap;
}
#contact-form .column {
	width:					50%;
}
#contact-form .column:first-of-type {
	padding:				0 5% 0 2.5%;
}

#contact-form a {
	white-space: 			nowrap;
}
#contact-form a:hover::after {
	content:				'';
	display:				block;
	position:				absolute;
	border-top:				1px dotted #111;
	bottom: 				-1px;
	width:					100%;
	left:					0;
	color:					#000;
}
#contact-form p {
	font-size:				15px;
	color:					#111;
	margin:					0 0 20px;
	line-height:			1.2em;	
}
#contact-form h2 {
    font-family: 			'proxima-nova-bold';
    font-size: 				24px;
    letter-spacing: 		4px;
    margin-bottom: 			30px;
    text-transform:			uppercase;
	color:					#555;
}
#contact-form h2::after {
    content: 				'';
    display: 				block;
    height: 				20px;
    width: 					50px;
    border-bottom: 			1px solid rgba(255,255,255,0.7);
}


@media (max-width: 720px)
{
	#contact-form .column {
		width:				100%;
	}
}

/*------------------------------------------------------------------------- CONTACT FORM ELEMENTS
*/
form {
	width:					100%;

}
fieldset {
	padding:				0 0 5px;
	max-width:				480px;
	margin:					0 auto;	
}
input,
textarea,
select {
	border:					1px solid rgba(0,0,0,0.3);
	background:				rgba(255,255,255,0.8);
	width:					100%;
	height:					32px;
	box-sizing:				border-box;
	padding:				5px 10px;
	font-family:			'proxima-nova-regular';
	border-radius:			5px;
	transition:				0.2s linear;
}
textarea {
	min-height:				140px;
	padding:				10px;
}
input:focus,
textarea:focus {
	font-family:			'proxima-nova-bold';
	border-color:			#00383c;
	background:				#fff;
}
label {
	display:				none;
}
form#contact_form select {
	font-family:			'proxima-nova-regular';
	color:					#777;
	text-transform:			uppercase;
	letter-spacing:			3px;
	font-size:				14px;
}
form#contact_form textarea::placeholder,
form#contact_form input::placeholder {
	font-family:			'proxima-nova-regular';
	color:					#bababa;
	text-transform:			uppercase;
	letter-spacing:			3px;
	font-size:				14px;
}
label[for=confirm] {
	display: 				inline-block;
	width: 					calc(100% - 40px);
	padding-left: 			10px;
	font-size: 				12px;
	font-family: 			'proxima-nova-regular';
	color:					#444;
	text-transform:			uppercase;
	letter-spacing:			2px;
	line-height:			1.1em;
	margin: 				10px 0;
}
input[type=checkbox] {
	padding:				0;
	width:					16px;
	height:					16px;
	display:				inline-block;
	vertical-align:			top;	
	margin: 				10px 0;
}

button {
	background:				#000 url(../images/send-button.png) center center no-repeat;
	text-indent:			-9999px;
	width:					100%;
	max-width:				240px;
	height:					40px;
	box-sizing:				border-box;
	border:					0;
	transition:				0.2s linear;
	border-radius:			5px;
}
button:hover {
	cursor:					pointer;
	background:				#000 url(../images/send-button-hover.png) center center no-repeat;
	box-shadow:				0 0 8px -2px rgba(0,0,0,0.2);
}
div.g-recaptcha {
	margin: 				0 0 10px;
}

@media (max-width: 767px)
{
	form {
		padding: 			20px 0;
	}
}
@media (max-width: 440px)
{
	form {
		width: 				calc(100% + 40px);
		margin: 			0 -20px;
	}
}

/*------------------------------------------------------------------------- GENERIC ALERT BOX
*/
div.alert {
	background:				#7d6d81;
	padding:				15px 20px;
	margin:					0 auto 30px;
	color:					#fff !important;
	border-radius:			5px;
	max-width:				480px;
}
div.alert h4 {
	font-size:				14px;
	vertical-align:			top;
	letter-spacing:			3px;
	text-transform:			uppercase;	
}
div.alert h4::before {
	border:					1px solid #fff;
	border-radius:			50%;
	content:				'!';
	display:				inline-block;
	width:					24px;
	height:					24px;
	line-height:			24px;
	font-size:				20px;
	letter-spacing:			0;
	font-family:			'proxima-nova-bold';

	margin-right:			10px;
	text-align:				center;
}
div.alert p {
	margin:					10px 0 0;
	font-size:				15px;
	padding: 				5px 0 0 30px;
}
div.alert ul {
	margin:					10px 0 10px 20px;
	list-style-type:		square;
}
div.alert ul li {
	font-size:				14px;
	margin:					0 0 2px;
}

/*------------------------------------------------------------------------- FOOTER 
*/
#footer {
	background:				#7d6d81;
	color:					#fff;
	padding:				20px;
}
#footer::before {
	background-image:		url(../images/borders/footer-border.png);
}
#footer a {
	color:					#eee;
	transition:				0.2s linear;
}
#footer a:hover {
	text-shadow:			0 0 3px rgba(255,255,255,0.6);
	color:					#fff;
}
#footer .row {
	display:				flex;
	justify-content:		flex-start;
	flex-flow:				row wrap;
	padding:				0 0 20px;
}
#footer .row.centre-aligned {
	text-align:				center;
}
.footer-logo {
	text-indent:			-9999px;
	width:					200px;
	height:					184px;
	margin:					0 40px -20px 0;
	background:				url(../images/my-treasured-memories-footer-logo.svg) no-repeat center center / 100%; 
	display:				inline-block;
	transition:				0.1s linear;
}
#footer p {
	font-size:				14px;
	margin:					10px 0 0;
}

#footer p.copyright {
	text-transform:			uppercase;
	text-align:				center;
	color:					#fff;
	letter-spacing:			3px;
	font-size:				12px;
	padding:				0 20px;
	margin:					0 auto;
}
#footer-links {
	margin:					0 auto;
}
#footer-links li {
	display:				inline-block;
	font-size:				14px;
}
#footer-links li::after {
	content:				'|';
	margin:					0 20px;
	vertical-align: 		sub;
	font-size:				24px;
}
#footer-links li:last-of-type::after {
	display:				none;	
}

@media (max-width: 640px)
{
	#footer .row {
		display:			flex;
		justify-content:	center;
	}
	.footer-logo {
		width:				120px;
		height:				110px;
		margin:				0 20px 0 0;
	}
}
@media (max-width: 540px)
{
	
	#footer-links li {
		display:			block;
		margin:				0 0 10px;
	}
	#footer-links li:last-of-type {
		margin:				0;
	}
	#footer-links li::after {
		display:			none;
	}
}
@media (max-width: 420px)
{
	#footer .column {
		flex-flow:			column wrap;
		margin:				0 0 20px;
	}
	#footer p {
		text-align:			center;
	}
	.footer-logo {
		width:				160px;
		height:				147px;
		margin:				0 auto -20px;
	}
}

/*------------------------------------------------------------------------- BACK TO TOP BUTTON 
*/
a#top {
	position:				fixed;
	bottom:					-60px;
	right:					20px;
	width:					32px;
	height:					32px;
	z-index:				99;
	opacity:				0;
	text-indent:			-9999px;
	transition:				0.2s linear;
	background:				url(../images/up-button.png) no-repeat center center / auto;
    border-radius: 			5px;	
	box-shadow:				0 0 4px rgba(0,0,0,0.5);
}
a#top.show {
	opacity:				0.8;
	bottom:					20px;
}
a#top:hover {
	background:				url(../images/up-button-hover.png) no-repeat center center / auto;
	opacity:				1;
	box-shadow:				0 0 2px rgba(0,0,0,0.75);	
}

/*------------------------------------------------------------------------- CSS ANIMATIONS
*/
.step__animate:nth-child(n+1) {
	animation-delay: 		0;
}
.step__animate:nth-child(n+2) {
	animation-delay: 		0.05s;
}
.step__animate:nth-child(n+3) {
	animation-delay: 		0.1s;
}
.step__animate:nth-child(n+4) {
	animation-delay: 		0.15s;
}
.step__animate:nth-child(n+5) {
	animation-delay: 		0.2s;
}
.step__animate:nth-child(n+6) {
	animation-delay: 		0.25s;
}
.step__animate:nth-child(n+7) {
	animation-delay: 		0.3s;
}
.step__animate:nth-child(n+8) {
	animation-delay: 		0.35s;
}
.step__animate:nth-child(n+9) {
	animation-delay: 		0.4s;
}
.step__animate:nth-child(n+10) {
	animation-delay: 		0.45s;
}
.step__animate:nth-child(n+11) {
	animation-delay: 		0.5s;
}
.step__animate:nth-child(n+12) {
	animation-delay: 		0.55s;
}
.step__animate:nth-child(n+13) {
	animation-delay: 		0.6s;
}
.step__animate:nth-child(n+14) {
	animation-delay: 		0.65s;
}
.step__animate:nth-child(n+15) {
	animation-delay: 		0.7s;
}
.step__animate:nth-child(n+16) {
	animation-delay: 		0.75s;
}
.step__animate:nth-child(n+17) {
	animation-delay: 		0.8s;
}
.step__animate:nth-child(n+18) {
	animation-delay: 		0.85s;
}
.step__animate:nth-child(n+19) {
	animation-delay: 		0.9s;
}
.step__animate:nth-child(n+20) {
	animation-delay: 		0.95s;
}
.step__animate {
	animation-duration: 	1s;
}
