/*
Theme Name: HYGTG
Theme URI: http://www.idealtechnology.com.au/
Author: HYGTG
Author URI: http://www.idealtechnology.com.au/
Version: 1

*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* = Custom Fonts
--------------------------------------------------------------*/

/* Generated by Font Squirrel (http://www.fontsquirrel.com) on March 25, 2016 */



@font-face {
    font-family: 'Interface';
    src: url('fonts/if_std_bd-webfont.eot');
    src: url('fonts/if_std_bd-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/if_std_bd-webfont.woff2') format('woff2'),
         url('fonts/if_std_bd-webfont.woff') format('woff'),
         url('fonts/if_std_bd-webfont.ttf') format('truetype'),
         url('fonts/if_std_bd-webfont.svg#interfacebold') format('svg');
    font-weight: 700;
    font-style: normal;

}




@font-face {
    font-family: 'Interface';
    src: url('fonts/if_std_lt-webfont.eot');
    src: url('fonts/if_std_lt-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/if_std_lt-webfont.woff2') format('woff2'),
         url('fonts/if_std_lt-webfont.woff') format('woff'),
         url('fonts/if_std_lt-webfont.ttf') format('truetype'),
         url('fonts/if_std_lt-webfont.svg#interfacelight') format('svg');
    font-weight: 300;
    font-style: normal;

}




@font-face {
    font-family: 'Interface';
    src: url('fonts/if_std_rg-webfont.eot');
    src: url('fonts/if_std_rg-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/if_std_rg-webfont.woff2') format('woff2'),
         url('fonts/if_std_rg-webfont.woff') format('woff'),
         url('fonts/if_std_rg-webfont.ttf') format('truetype'),
         url('fonts/if_std_rg-webfont.svg#interfaceregular') format('svg');
    font-weight: 400;
    font-style: normal;
}




/* @font-face {
    font-family: 'Headlined';
    src: url('fonts/thinkdust_-_headlined-webfont.eot');
    src: url('fonts/thinkdust_-_headlined-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/thinkdust_-_headlined-webfont.woff2') format('woff2'),
         url('fonts/thinkdust_-_headlined-webfont.woff') format('woff'),
         url('fonts/thinkdust_-_headlined-webfont.ttf') format('truetype'),
         url('fonts/thinkdust_-_headlined-webfont.svg#headlinedregular') format('svg');
    font-weight: normal;
    font-style: normal;

} */


html, body {
	font-family: 'Interface', Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Headlined W00 Regular', sans-serif;
	font-weight: normal;
	text-rendering: optimizelegibility;
	font-style: normal;
	font-smoothing: antialiased;
}



/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	text-transform: uppercase;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}


/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
	border-radius: 3px;
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}



/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 36px;
	margin: 0 0 0 2.571428571rem;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 24px;
	padding: 1.714285714rem;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
article {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft,
.wp-caption.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright,
.wp-caption.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter,
.wp-caption.aligncenter {
	clear: both;
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
footer.entry-meta {
	font-size: 0.75rem;
	margin-top: 12px;
	margin-top: 0.857142857rem;
}
.single-author .entry-meta .by-author {
	display: none;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area cite b {
	font-weight: normal;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area .bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
.comments-area .bypostauthor cite b {
	font-weight: bold;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* CUSTOM STYLES */

#section1, #section5 {
	background: url('images/section1-bg.jpg') scroll no-repeat center center;
	color: #000;
	background-size: cover;
}

#section1 #intro-text {
	height: auto;
	margin-top: 60px;
	margin-bottom: 70px;
}

#section1 #intro-text h3 {
	margin-bottom: 20px;
}

#book-text h3 {
	font-size: 75px;
	color: #fff;
	line-height: 1.3em;
}

#section2 #book-text {
	margin-top: 0 !important;
	padding: 40px 0 60px !important;
}

#book-text h3 .bigger {
	font-size: 130px;
}

.colorgreen {
	color: #89d27a !important;
}

span, p, ul, ol {
	font-size: 1em;
}

#section5 h2 {
	font-size: 60px;
	margin-bottom: 0.5em;
}

#section5 h3 {
	font-size: 22px;
	font-weight: bold;
	color: #000;
	font-family: 'Interface', Arial, sans-serif;
}

#section5 .tx-div {
	background: #000;
}

#section6 .tx-div {
	margin-bottom: 40px;
}

#section7 {
	border-top: 0 none !important;
	border-bottom: 0 none !important;
}

#section7 h3 {
	color: #000;
	font-style: normal;
	font-size: 60px;
}

#section3 {
	text-align: center;
	border-top: 0 none;
	font-size: 17px;
}

#section3 h2 {
	color: #000;
	font-size: 60px;
	margin-bottom: 0.5em;
}

#section3 img {
	margin-bottom: 20px;
}

#section4 {
	text-align: center;
	height: auto;
	background-color: #5ea64e;
	border-top: 0 none !important;
	border-bottom: 0 none !important;
	padding-bottom: 65px;
	background-size: cover;
}

#section4 h3 {
	color: #fff;
	font-size: 48px;
	line-height: 1em;
	max-width: 760px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: -80px;
	margin-bottom: 40px;
}

#footer {
	text-align: center;
	padding: 30px 0;
}

p.leftdoublequotes {
	font-size: 200px !important;
	line-height: 1em;
	margin-bottom: 0;
	color:#000;
	font-family: 'Headlined W00 Regular', sans-serif;
}

#section6 .quote .fontB p.leftdoublequotes {
	font-size: 200px !important;
	color: #89d27a !important;
	line-height: 1em !important;
	margin-bottom: 0 !important;
	margin-top: 0;
}

#section6 .quote {
	padding: 0;
}

#social-icons:after {
	content: '';
	display: block;
	clear: both;
}

#social-icons ul:after {
	content: '';
	display: block;
	clear: both;
}

#section5 p, #section7 p, body.page-id-10 p {
	font-family: 'Interface', Arial, sans-serif;
}

.bx-pager {
	border: 0 none !important;
}

.quote.green {
	background: none transparent !important;
}

.quote.green blockquote {
	background: none transparent !important;
	padding-bottom: 0 !important;
}

#section6 .quote .fontB p {
	font-family: 'Headlined W00 Regular', sans-serif;
	margin-top: -80px;
}

.button1 a, .button2 a, .button3 a {
	text-transform: uppercase;
	display: inline-block;
	line-height: 40px;
	padding: 0 63px;
	margin: 0 12px 12px;
	font-weight: bold;
}

.button1 a {
	background: transparent;
	color: #000;
	border: 2px solid #000;
}

.button2 a {
	background: #89d27a;
	color: #fff;
	border: 2px solid #89d27a;
}

.button3 a {
	background: #000;
	color: #fff;
	border: 2px solid #000;
	width: 200px;
	padding: 0 10px;
	box-sizing: border-box;
}

body {
	border-top: 0 none !important;
}

#footer {
	border-top: 0 none !important;
}

#footer h3 {
	font-size: 60px;
	color: #fff;
}

#footer h3 span {
	color: #89d27a;
}

#footer p {
	color: #fff;
}

#social-icons {
	position: static;
	left: 0;
	float: none;
	width: 100%;
	text-align: center;
}

#social-icons ul {
	left: 0;
	position: static;
	width: 100%;
	text-align: center;
	margin-left: 0;
	padding-left: 0;
}

#social-icons ul li {
	display: inline-block;
	float: none;
}

p.copyright {
	font-size: 12px !important;
	margin-top: -10px;
}

.bx-pager .bx-pager-item a {
	width: 12px;
	height: 12px;
	box-sizing: border-box;
	background: none transparent;
	border: 2px solid #89d27a;
	margin: 0 13px;
	border-radius: 6px;
}

.bx-pager .bx-pager-item a.active {
	background: #89d27a !important;
}

#section6 .quote .fontA p {
	font-size: 20px;
	font-style: normal;
	text-transform: uppercase;
	line-height: 0.85em;
}

#section6 .quote .fontA p span {
	font-size: 15px;
}

.entry-content h2 {
	font-size: 36px;
}

.entry-content h3 {
	font-size: 30px;
}