/*
	Theme Name: Genius Network
	Theme URI: #!
	Description: Elegant theme created for Genius Network
	Author: Influex
	Author URI: #!

	Version: 1.0
	Tags: genius network, genesis child theme

	Template: genesis
	Template Version: 2.9.1

	License: GPL-2.0+
	License URI: http://www.gnu.org/licenses/gpl-2.0.html

	Text Domain: pc-child-theme
*/


/* # Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
	- Screen Reader Text
- Structure and Layout
	- Site Containers
	- Column Widths and Positions
	- Column Classes
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Jetpack
- Skip Links
- Site Header
	- Title Area
	- Widget Area
- Site Navigation
	- Accessible Menu
	- Site Header Navigation
	- After Header Navigation
	- Footer Navigation
- Content Area
	- Entries
	- Entry Meta
	- Pagination
	- Comments
- Sidebars
- Footer Widgets
- Site Footer
- Media Queries
	- Max-width: 1340px
	- Max-width: 1200px
	- Max-width: 1023px
	- Max-width: 860px
- Print Styles
*/


/* # HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* ## Baseline Normalize
--------------------------------------------- */
/* normalize.css v4.1.1 | MIT License | http://necolas.github.io/normalize.css/ */

html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}progress{vertical-align:baseline}template,[hidden]{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}button,input,optgroup,select,textarea{font:inherit;margin:0}optgroup{font-weight:bold}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:0.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}

/* ## Box Sizing
--------------------------------------------- */

html,
input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}


/* ## Float Clearing
--------------------------------------------- */

.author-box::before,
.clearfix::before,
.entry::before,
.entry-content::before,
.footer-widgets::before,
.nav-primary::before,
.nav-secondary::before,
.pagination::before,
.site-container::before,
.site-footer::before,
.site-header::before,
.site-inner::before,
.widget::before,
.wrap::before {
	content: " ";
	display: table;
}

.author-box::after,
.clearfix::after,
.entry::after,
.entry-content::after,
.footer-widgets::after,
.nav-primary::after,
.nav-secondary::after,
.pagination::after,
.site-container::after,
.site-footer::after,
.site-header::after,
.site-inner::after,
.widget::after,
.wrap::after,
.clearfix::after {
	clear: both;
	content: " ";
	display: table;
}


/* # Loader
---------------------------------------------------------------------------------------------------- */

@keyframes loaderPulse {
	0% {
		-webkit-transform: scale(0.1);
		-moz-transform: scale(0.1);
		-ms-transform: scale(0.1);
		transform: scale(0.1);
		opacity: 0;
	}
	50% { 
		opacity: .4;
	}
	100% {
		-webkit-transform: scale(1.6); 
		-moz-transform: scale(1.6);
		-ms-transform: scale(1.6);
		transform: scale(1.6); 
		opacity: 0;
	}
}

.loader,
.loader > span {
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
} 
.loader > span {
	width: 100px;
	height: 100px;
	background-color: #fff;
	margin: auto;
	border-radius: 50%;
}
.loader > span:nth-child(1) {
	-webkit-animation: loaderPulse 2s infinite;
	-moz-animation: loaderPulse 2s infinite;
	-ms-animation: loaderPulse 2s infinite;
	animation: loaderPulse 2s infinite;
}
.loader > span:nth-child(2) {
	-webkit-animation: loaderPulse 2s infinite 0.3s;
	-moz-animation: loaderPulse 2s infinite 0.3s;
	-ms-animation: loaderPulse 2s infinite 0.3s;
	animation: loaderPulse 2s infinite 0.3s;
}
.loader > span:nth-child(3) {
	-webkit-animation: loaderPulse 2s infinite 0.6s;
	-moz-animation: loaderPulse 2s infinite 0.6s;
	-ms-animation: loaderPulse 2s infinite 0.6s;
	animation: loaderPulse 2s infinite 0.6s;
}
.loader > span:nth-child(4) {
	width: 40px;
	height: 40px;
}


/* # Defaults
---------------------------------------------------------------------------------------------------- */

/* ## Typographical Elements
--------------------------------------------- */

html {
	font-size: 62.5%; /* 10px browser default */
}
.post-edit-link {
	display: none;
}
/* Chrome fix */
body > div {
	font-size: 20px;
	font-size: 2rem;
}

body {
	background-color: #ffffff;
	color: #333;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-size: 2rem;
	-webkit-font-smoothing: antialiased;
	font-weight: 400;
	line-height: 1.625;
	margin: 0;
	overflow-x: hidden;
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

a {
	color: #c3251d;
	text-decoration: underline;
}

a:focus,
a:hover {
	color: #333;
	text-decoration: none;
}

p {
	margin: 0 0 25px;
	padding: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

hr {
	border: 0;
	border-collapse: collapse;
	border-top: 1px solid #eee;
	clear: both;
	margin: 1em 0;
}

b,
strong {
	font-weight: 700;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

mark {
	background: #ddd;
	color: #000;
}

blockquote {
	margin: 40px;
}

blockquote::before {
	content: "\201C";
	display: block;
	font-size: 30px;
	font-size: 3rem;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}


/* ## Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 10px;
}

h1 {
	font-size: 36px;
	font-size: 3.6rem;
}

h2 {
	font-size: 30px;
	font-size: 3rem;
}

h3 {
	font-size: 24px;
	font-size: 2.4rem;
}

h4 {
	font-size: 20px;
	font-size: 2rem;
}

h5 {
	font-size: 18px;
	font-size: 1.8rem;
}

h6 {
	font-size: 16px;
	font-size: 1.6rem;
}

/* ## Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
}

figure {
	margin: 0;
}

/* ## Gallery
--------------------------------------------- */

.gallery {
	overflow: hidden;
}

.gallery-item {
	float: left;
	margin: 0 0 28px;
	text-align: center;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
	clear: left;
}

.gallery img {
	border: 0;
	height: auto;
	padding: 0;
}

.gallery img:focus,
.gallery img:hover {
	border:0;
}

/* ## Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	color: #333;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 400;
	padding: 16px;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

::-moz-placeholder {
	color: #333;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #333;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
	background-color: #333;
	border: 0;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	padding: 16px 24px;
	text-decoration: none;
	white-space: normal;
	width: auto;
}

button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.button:focus,
.button:hover {
	background-color: #c3251d;
	color: #fff;
}

.entry-content .button:focus,
.entry-content .button:hover {
	color: #fff;
}

.button {
	display: inline-block;
}

a.button.small,
button.small,
input[type="button"].small,
input[type="reset"].small,
input[type="submit"].small {
	padding: 8px 16px;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type="button"]:disabled,
.site-container input[type="button"]:disabled:hover,
.site-container input[type="reset"]:disabled,
.site-container input[type="reset"]:disabled:hover,
.site-container input[type="submit"]:disabled,
.site-container input[type="submit"]:disabled:hover {
	background-color: #eee;
	border-width: 0;
	color: #777;
	cursor: not-allowed;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* ## Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 2;
	margin-bottom: 40px;
	width: 100%;
	word-break: break-all;
}

tbody {
	border-bottom: 1px solid #eee;
}

td,
th {
	text-align: left;
}

td {
	border-top: 1px solid #eee;
	padding: 6px;
}

th {
	font-weight: 400;
	padding: 0 6px;
}

td:first-child,
th:first-child {
	padding-left: 0;
}

/* ## Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.genesis-nav-menu .search input[type="submit"]:focus,
.widget_search input[type="submit"]:focus {
	background: #fff;
	box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
	clip: auto !important;
	color: #333;
	display: block;
	font-size: 1em;
	font-weight: bold;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

.more-link {
	position: relative;
}


/* # Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* ## Site Containers
--------------------------------------------- */

.site-inner,
.wrap {
	margin: 0 auto;
	max-width: 1280px;
}


.single .site-inner {
	margin: 0 auto;
	max-width: 1170px;
}

.site-inner {
	clear: both;
	padding-top: 40px;
	word-wrap: break-word;
}

.landing-page .site-inner {
	max-width: 800px;
}

/* # Make the Page Full Width no Paddings and Margins when choosing the full width template
---------------------------------------------------------------------------------------------------- */

.full-width-content .site-inner {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
}

.full-width-content .site-inner .entry {
	margin: 0;
	padding: 0;
}

/* ## Column Widths and Positions
--------------------------------------------- */

/* ### Wrapping div for .content and .sidebar-primary */

.content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	width: 1060px;
}

.content-sidebar-sidebar .content-sidebar-wrap {
	float: left;
}

.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	float: right;
}

/* ### Content */

.content {
	float: right;
	width: 880px;
}

.single .content {
	width: 740px;
}

.content-sidebar .content,
.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content {
	float: left;
}

.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content,
.sidebar-sidebar-content .content {
	width: 660px;
}

.full-width-content .content {
	width: 100%;
}

/* ### Primary Sidebar */

.sidebar-primary {
	float: right;
	width: 400px;
}

.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
	float: left;
}

/* ### Secondary Sidebar */

.sidebar-secondary {
	float: left;
	width: 180px;
}

.content-sidebar-sidebar .sidebar-secondary {
	float: right;
}

/* ## Column Classes
--------------------------------------------- */
/* Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css */

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 2.564102564102564%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}


/* # Common Classes
---------------------------------------------------------------------------------------------------- */

/* ## Avatar
--------------------------------------------- */

.avatar {
	border-radius: 50%;
	float: left;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 24px;
}

.alignright .avatar {
	margin-left: 24px;
}

.comment .avatar {
	margin: 0 16px 24px 0;
}

/* ## Genesis
--------------------------------------------- */

.breadcrumb {
	background-color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 1px;
	padding: 12px 30px;
}

.after-entry,
.archive-description,
.author-box {
	background-color: #fff;
	font-size: 18px;
	font-size: 1.8rem;
	margin-bottom: 40px;
	padding: 60px;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

/* ## Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.entry-content .search-form,
.site-header .search-form {
	margin-bottom: 40px;
	width: 50%;
}

.site-header .search-form {
	float: right;
	margin: 12px auto 0;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
	margin-top: 10px;
}

.genesis-nav-menu .search input[type="submit"],
.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* ## Titles
--------------------------------------------- */

.archive-description .entry-title,
.archive-title,
.author-box-title {
	font-size: 20px;
	font-size: 2rem;
}

.entry-title {
	font-size: 36px;
	font-size: 3.6rem;
}

.entry-title a,
.sidebar .widget-title a {
	color: #333;
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	color: #c3251d;
}

.widget-title {
	font-size: 18px;
	font-size: 1.8rem;
	margin-bottom: 20px;
}

/* ## WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

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

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
}

img.alignnone,
.alignnone {
	margin-bottom: 12px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 24px 24px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 24px 24px;
}

.gallery-caption,
.wp-caption-text {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 600;
	margin: 0;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 28px;
}


/* # Widgets
---------------------------------------------------------------------------------------------------- */

.widget {
	margin-bottom: 40px;
	word-wrap: break-word;
}

.widget p:last-child,
.widget ul > li:last-of-type,
.widget-area .widget:last-of-type {
	margin-bottom: 0;
}
.widget ul > li:last-of-type a {
    border-right: none;
}
.widget ul > li {
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.widget ul > li:last-of-type {
	padding-bottom: 0;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* ## Featured Content
--------------------------------------------- */

.featured-content .entry {
	background: none;
	padding: 0;
}

.featured-content .entry:last-of-type {
	margin-bottom: 0;
}

.featured-content .entry-title {
	font-size: 20px;
	font-size: 2rem;
}


/* # Plugins
---------------------------------------------------------------------------------------------------- */

/* ## Genesis eNews Extended
--------------------------------------------- */

.sidebar .enews-widget,
.sidebar .enews-widget .widget-title {
	color: #fff;
}

.sidebar .widget.enews-widget {
	background-color: #333;
}

.sidebar .enews-widget input,
.sidebar .enews-widget input:focus {
	border: 1px solid #333;
}

.sidebar .enews-widget input[type="submit"] {
	background-color: #c3251d;
	color: #fff;
}

.sidebar .enews-widget input[type="submit"]:focus,
.sidebar .enews-widget input[type="submit"]:hover  {
	background-color: #fff;
	color: #333;
}

.enews-widget input {
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 16px;
}

.enews-widget input[type="submit"] {
	margin: 0;
	width: 100%;
}

.enews form + p {
	margin-top: 24px;
}

/* ## Jetpack
--------------------------------------------- */

#wpstats {
	display: none;
}


/* # Skip Links
---------------------------------------------------------------------------------------------------- */

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link li {
	height: 0;
	list-style: none;
	width: 0;
}

/* # Site Header
---------------------------------------------------------------------------------------------------- */

.site-header {
	position: fixed;
	width: 100%;
	z-index: 99;
	-webkit-transition: background-color 300ms ease-out 100ms;
	-moz-transition: background-color 300ms ease-out 100ms;
	-o-transition: background-color 300ms ease-out 100ms;
	transition: background-color 300ms ease-out 100ms;	
}

.site-header > .wrap {
	padding: 23px 0 0;
	text-align: center;
}

.site-header.sticky {
	background-color: rgba(0,0,0,0.5);
	border-bottom: 2px solid #ffb525;
}

/* ## Title Area
--------------------------------------------- */

.title-area {
	padding: 10px 0;
	width: 100%;
}

.header-image .title-area {
	margin: 0 auto;
	padding: 0;
}

.header-full-width .title-area {
	float: none;
	width: 100%;
}

.site-title {
	font-size: 30px;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
}

.site-title a,
.site-title a:focus,
.site-title a:hover {
	color: #333;
	text-decoration: none;
}

.header-image .site-title > a {
	background-position: center !important;
	background-size: contain !important;
	min-height: 54px;
	float: left;
	width: 100%;
}

.site-description {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
}

.site-description,
.site-title {
	margin-bottom: 0;
}

.header-image .site-description,
.header-image .site-title {
	text-indent: -9999px;
}

/* ## Widget Area
--------------------------------------------- */

.site-header .widget-area {
	float: right;
	text-align: right;
	width: 800px;
	display: none;
}


/* # Site Navigation
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: inline-block;
	margin-bottom: 0;
	padding-bottom: 0;
	text-align: left;
}

.genesis-nav-menu a {
	color: #333;
	display: block;
	padding: 32px 20px;
	text-decoration: none;
}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:focus,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover  {
	color: #c3251d;
	text-decoration: underline;
}

.genesis-nav-menu .sub-menu {
	border-top: 1px solid #eee;
	left: -9999px;
	opacity: 0;
	position: absolute;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition:    opacity .4s ease-in-out;
	-ms-transition:     opacity .4s ease-in-out;
	-o-transition:      opacity .4s ease-in-out;
	transition:         opacity .4s ease-in-out;
	width: 200px;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	border: 1px solid #eee;
	border-top: 0;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 20px;
	position: relative;
	width: 200px;
	word-wrap: break-word;
}

.genesis-nav-menu .sub-menu .sub-menu {
	margin: -56px 0 0 199px;
}

.genesis-nav-menu .menu-item:hover {
	position: static;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}

.genesis-nav-menu > .first > a {
	padding-left: 0;
}

.genesis-nav-menu > .last > a {
	padding-right: 0;
}

.genesis-nav-menu > .right {
	float: right;
}

/* ## Accessible Menu
--------------------------------------------- */

.menu .menu-item:focus {
	position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
	left: auto;
	opacity: 1;
}

.menu-toggle,
.sub-menu-toggle {
	display: none;
	visibility: hidden;
}

/* ## Site Header Navigation
--------------------------------------------- */

.site-header .genesis-nav-menu li li {
	margin-left: 0;
}

/* ## After Header Navigation
--------------------------------------------- */

.nav-primary {
	background-color: #fff;
	border-top: 1px solid #eee;
}

/* ## Footer Navigation
--------------------------------------------- */

.site-footer .genesis-nav-menu {
	padding-bottom: 20px;
}

.site-footer .genesis-nav-menu a {
	padding: 0 20px 10px;
}


/* # Content Area
---------------------------------------------------------------------------------------------------- */

/* ## Entries
--------------------------------------------- */

.entry {
	background-color: #fff;
	margin-bottom: 40px;
	padding: 70px 80px;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 28px;
	margin-left: 40px;
}

.entry-content ol > li {
	list-style-type: decimal;
}

.entry-content ul > li {
	list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: #333;
	color: #eee;
}

/* ## Entry Meta
--------------------------------------------- */

p.entry-meta {
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 0;
}

.entry-header .entry-meta {
	margin-bottom: 24px;
}

.entry-footer .entry-meta {
	border-top: 1px solid #eee;
	padding-top: 24px;
}

.entry-categories,
.entry-tags {
	display: block;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
}

/* ## Pagination
--------------------------------------------- */

.pagination {
	clear: both;
	margin: 40px 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination a {
	background-color: #fff;
	color: #333;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 600;
	padding: 8px 12px;
	text-decoration: none;
}

.archive-pagination a:focus,
.archive-pagination a:hover,
.archive-pagination .active a {
	background-color: #c3251d;
	color: #fff;
}

/* ## Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	background-color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 40px;
}

.comment-respond,
.entry-pings {
	padding: 60px 60px 32px;
}

.entry-comments {
	padding: 60px;
}

.comment-list li {
	padding: 40px 0 0 30px;
}

.comment-list .depth-1 {
	padding-left: 0;
}

.comment-header {
	margin-bottom: 30px;
}

.comment-content {
	clear: both;
}

.comment-content ul > li {
	list-style-type: disc;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%;
}

.comment-respond label {
	display: block;
	margin-right: 12px;
}

.comment-header p {
	margin-bottom: 0;
}

.entry-pings .reply {
	display: none;
}


/* # Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar {
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 40px;
}

.sidebar .widget {
	background-color: #fff;
	padding: 40px;
}


/* # Footer Widgets
---------------------------------------------------------------------------------------------------- */

.footer-widgets {
	background-image: url(/wp-content/uploads/2019/07/footer-bg_opttimized.jpg);
	background-size: cover;
	background-position: center top;
	background-color: #fff;
	clear: both;
	font-size: 18px;
	font-size: 1.8rem;
	padding: 60px 0;
}

.footer-widgets .wrap {
	max-width: 100%;	
}

.footer-widgets-1 {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.footer-widgets-1 h3 {
	display: none;
}

.before-footer:after {
	display: block;
	content: "";
	clear: both;
}

.before-footer, .before-footer img {
	width: 100%;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;	
}

.before-footer img:hover {
	cursor: pointer;
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);		
}

.before-footer section {
	margin: 0;
	line-height: 1;
	width: 100%; 
	line-height: 0;
	display: inline-block;
	/*margin-left: -6px;*/
	vertical-align: top;
}
#sb_instagram .sbi_item:hover {
    transform: scale(1.05);
    z-index: 1;
    position: relative;
    opacity: 1 !important;
}
#sb_instagram .sbi_item:hover a {
    opacity: 1 !important;
}
.footer-widgets-5 {
	margin-top: 30px;
	border-top: 1px solid #4a4d56;
	text-align: center;
	clear: both;
	width: 100%;
}

.footer-widgets-5::before {
	margin-bottom: 45px;
	content: "";
	display: block;
	height: 1px;
	background-color: #bdbec1;
	width: 100%;
	position: relative;
	top: 1px;
}

.footer-widgets-5 section {
	margin-bottom: 20px;
}

.footer-widgets .menu a {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	font-weight: 300;
	color: #fff;
	text-decoration: none;
	padding: 0 5px;
	border-right: 2px solid #ffffff;
}

.footer-widgets .menu a:hover {
	color: #ffb525;
}

.menu-right-container li.apply a:hover {
	color: #ffffff;	
}

.footer-widgets .menu li {
	margin-bottom: 0;	
	margin-left: -4px;
	line-height: 1;
	display: inline-block;
	padding: 0;	
}

#footer-form h4 {
	max-width: 600px;
	float: right;
	font-family: "Montserrat", Sans-serif;
	position: relative;
}

.pen {
	font-family: "Nanum Pen Script", Sans-serif !important;
	font-size: 30px;
}
#footer-form h4 strong {
	font-size: 30px;	
}
#footer-form h4::before {
	content: "";
	display: block;
	background-image: url(/wp-content/uploads/2019/03/elf-logo.png);
	background-size: cover;	
	width: 137px;
	height: 61px;
	position: absolute;
	left: -142px;
	top: 11px;
}
#footer-form h4 span:nth-last-of-type(1) {
	display: block;
	margin-top: 5px;
}
#footer-form .elementor-element-9dc9084 {
	margin: 0;
}
#footer-form .gform_body li:nth-of-type(1) {
	margin-top: 0;
}
#footer-form .gform_wrapper {
	margin: 10px 0;
}
#footer-form .gform_wrapper li {
	padding: 0;	
}	
#footer-form #gform_submit_button_1 {
	font-size: 0;
	padding: 0;
	background-image: url(/wp-content/uploads/2019/03/form-btn-bg.png);
	float: right;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	z-index: 1;
	width: 100%;
	padding-bottom: 11.6%;
	background-size: cover;
	background-color: transparent;
	margin: 0;
}
#footer-form #gform_submit_button_1:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
#footer-form .elementor-element-5ac6caf .elementor-column-wrap {
	max-width: 798px;
	margin-left: 30px;
}
#footer-form .gform_footer.top_label::before {
	content: "";
	display: block;
	background-image: url(/wp-content/uploads/2019/03/elf-character.png);
	background-size: cover;	
	width: 318px;
	height: 262px;
	position: absolute;
	top: -25px;
	left: -60px;
	z-index: 2;
}
#footer-form .elementor-element-a1b37b5 .elementor-column-wrap {
	padding: 5px;
}
.sm-btn {
	margin-top: 22px;
}
.sm-btn a:nth-of-type(1) {
	float: left;
}
.sm-btn a:nth-of-type(2) {
	float: right;
}
.before-footer-2 section {
	margin: 0;
}

/* # Gravity Forms Css Override 
---------------------------------------------------------------------------------------------------- */


.gform_wrapper label {
	display: none !important;
}

.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
	font-size: inherit;
	padding: 9px 20px !important;
	letter-spacing: normal;
	border: none;
	border-radius: 5px;
	font-family: "Montserrat", Sans-serif;
	font-weight: 300;
	font-size: 16px;
	color: #000000;
}

.gform_wrapper input::-webkit-input-placeholder {
   color: #a2a8b2;
}
.gform_wrapper :-moz-placeholder { /* Firefox 18- */
   color: #a2a8b2; 
}
.gform_wrapper ::-moz-placeholder {  /* Firefox 19+ */
   color: #a2a8b2;
}
.gform_wrapper :-ms-input-placeholder {  
   color: #a2a8b2;
}

#footer-form .gform_body {
	max-width: 485px;
	float: right;
}


/* # Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer {
	background-color: #fff;
	border-top: 1px solid #eee;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1;
	padding: 60px 0;
	text-align: center;
}

.site-footer p {
	margin-bottom: 0;
}

/* # Main Header
---------------------------------------------------------------------------------------------------- */

.menu-left-container, .menu-right-container, .site-title {
	display: inline-block;
	width: 100%;
	vertical-align: top;
}
.menu-left-container {
	text-align: right;
	max-width: 42%;
	padding-right: 45px;
}
.site-title {
	max-width: 137px;
}	
.menu-right-container {
	text-align: left;
	max-width: 42%;
	padding-left: 35px;	
}
.menu-left-container li, .menu-right-container li {
	display: inline-block;
}
.menu-left-container li a, .menu-right-container li a {
	padding: 0 10px;
	height: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	color: #ffffff;
	font-size: 18px;
}
.menu-left-container li a:hover, .menu-right-container li a:hover {
	color: #ffb525;
}
.apply {
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;	
	background-color: #ffb525;
	border-radius: 5px;
	margin-left: 20px;
}
.apply:hover {
	cursor: pointer;
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);	
}
.menu-right-container li.apply a {
	height: 40px;
	width: 115px;
	font-weight: 700;
}
.btn a,
.sizzle-reel-hover .elementor-custom-embed-image-overlay{
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;	
}
.sizzle-reel-hover .elementor-widget-container {
    overflow: visible !important;
}
.btn a:hover, 
.elementor-button:hover,
.sizzle-reel-hover .elementor-custom-embed-image-overlay:hover{
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);	
}

/* # Home
---------------------------------------------------------------------------------------------------- */
.yellow {
	color: #ffb525;
}
.blue {
	color: #3b73fe;
}
#home-sec-1 {
	width: 100% !important;
}	
#home-vid-btn .elementor-widget-container {
	overflow: visible;
}
#home-vid-btn .elementor-widget-container .elementor-image{
	max-width: 126px;
	margin: 0 auto;
	position: relative;
}
#home-vid-btn .elementor-widget-container .elementor-image::before{
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/03/video-btn-before.png);
	background-size: cover;	
	position: absolute;
	width: 183px;
	height: 138px;
	left: -185px;
	top: -50px;
}
/* #home-vid-btn .elementor-custom-embed-image-overlay {
	max-width: 126px;
	margin: 0 auto;
	position: relative;
}
#home-vid-btn .elementor-custom-embed-image-overlay::before {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/03/video-btn-before.png);
	background-size: cover;	
	position: absolute;
	width: 183px;
	height: 138px;
	left: -185px;
	top: -50px;
} */
/* Floating Effect */
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }

  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }

  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

#home-vid-btn .elementor-custom-embed-image-overlay, #genius-community .btn, #footer-form .gform_footer.top_label::before, .bob {
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
#home-vid-btn .elementor-custom-embed-image-overlay, #genius-community .btn, #footer-form .gform_footer.top_label::before, .bob {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}
#genius-community .elementor-col-16::before, #genius-community .elementor-col-33:nth-of-type(1):before, #genius-community .elementor-col-33:nth-of-type(3):before  {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 97%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.6);
	z-index: 1;
	opacity: 0;
 	transition: opacity .5s ease-out;
	-moz-transition: opacity .5s ease-out;
	-webkit-transition: opacity .5s ease-out;
	-o-transition: opacity .5s ease-out;
	pointer-events: none;
}
#genius-community .elementor-col-16:hover::before, #genius-community .elementor-col-33:nth-of-type(1):hover:before, #genius-community .elementor-col-33:nth-of-type(3):hover:before  {
	opacity: 1;	
	cursor: pointer;
}
.elementor-element.elementor-element-adfea5b.elementor-widget__width-initial.elementor-absolute.btn.elementor-cta--skin-classic.elementor-animated-content.elementor-bg-transform.elementor-bg-transform-zoom-in.elementor-widget.elementor-widget-call-to-action {
	z-index: 2;
}
#bks-list ul {
	max-width: 700px;
	margin-left: 55px;
}
#bks-list li {
	margin: 0 0 19px;
	list-style-type: none;
}
#bks-list li:nth-last-of-type(1), #bks-list {
	margin: 0;	
}
#bks-list ul::before {
	content: "";
	display: block;
	position: absolute;
	top: -10px;
	left: 0;
	background-image: url(/wp-content/uploads/2019/03/bk-list-img_03.png);
	width: 44px;
	height: 235px;
}
.elementor-element.elementor-element-73e8e26 {
	margin: 0 0 10px;
}
.elementor-element.elementor-element-4d389d6 > .elementor-widget-container {
	z-index: 1;
	position: relative;
}
.elementor-12 .elementor-element.elementor-element-865041e {
	z-index: 6;
}
#fmn-btn a {
	display: inline-block;
	position: relative;
}
#fmn-btn a::after {
	content: "";
	display: block;
	background-image: url(https://gn.influexdev.com/wp-content/uploads/2019/03/fmn-arrow.png);
	width: 57px;
	height: 83px;
	position: absolute;
	right: -62px;
	top: -50px;
}
#testimonial-box {
	max-width: 928px;
	margin-left: 90px;
}
#testimonial-box .elementor-column-wrap {
	min-height: 317px;
	padding: 50px 85px 0 115px;
	box-sizing: border-box;
	z-index: 5;
}
#testimonial-box p, #testimonial-box .elementor-text-editor p {
	max-width: 690px;
	margin: 0 !important;
}
#testimonial-box .elementor-text-editor p::before {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/07/tq-before_optimized.jpg);
	background-size: cover;	
	width: 46px;
	height: 39px;
	position: absolute;
	left: -55px;
	top: -23px;
}

#testimonial-box .elementor-text-editor p::after {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/07/tq-after_optimized.jpg);
	background-size: cover;
	width: 44px;
	height: 36px;
	position: absolute;
	right: -20px;
	bottom: -23px;
}
.elementor-element-b324297 h2 span {
	font-size: 36px;
	font-weight: 400;
}

.elementor-element-1f88be2 p:nth-of-type(1) {
	max-width: 768px;
	z-index: 1;
	position: relative;
}

.elementor-element-1f88be2 p:nth-of-type(2) {
	max-width: 840px;
	z-index: 1;	
	position: relative;	
}
#jp-sec .elementor-image img {
	max-width: 600px;
}
#jp-sec .elementor-image a {
    position: relative;
    display: block;
}
#jp-sec .elementor-image a::after {
	content: "";
	display: block;
	background-image: url(/wp-content/uploads/2019/03/jd-video-btn-after.png);
	background-size: cover;
	width: 485px;
	height: 332px;
	position: absolute;
	right: 90px;
	top: -250px;
}
#jp-sec  .elementor-widget-video .elementor-widget-container {
	overflow: visible;
}
#genius-community .elementor-col-16{
	width: calc(100% / 6);
	margin-bottom: -.5%;
}
#genius-community .elementor-col-33:nth-of-type(1), #genius-community .elementor-col-33:nth-of-type(3) {
	width: 16.66%;
	margin-bottom: -0.5%;
}
#genius-community img {
	width: 100%;
}

#genius-community .widget-image-caption {
	position: absolute;
	bottom: 15px;
	padding: 0 10px;
	font-size: 18px;
	color: #fff;
	font-family: "Montserrat", Sans-serif;
	font-weight: 700;
  text-shadow: 0px 0px 5px #000;
}
#genius-community .elementor-element-a458866 {
	margin: 0;
}
#genius-community .elementor-element-f0e39d0 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
#genius-community .elementor-element-f0e39d0 h3 {
	font-family: "Montserrat", Sans-serif;
	font-size: 3vw;
	font-weight: 700;
	line-height: 1em;
	color: #ffffff;
	margin: 0 0 35px	
}	

#genius-community .elementor-element-f0e39d0 a {
	color: #ffffff;
	font-family: "Montserrat", Sans-serif;
	font-size: 3vw;
	font-weight: 700;
	text-transform: uppercase;
	width: 100%;
	max-width: 606px;
	position: relative;
	padding: 20px 40px 40px;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;		
}
#genius-community .elementor-element-f0e39d0 a::before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(/wp-content/uploads/2019/03/button-art.png);
	background-repeat: no-repeat;
	background-position: top center;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
}
#why-tgn-sec h2 span {
	font-size: 36px;
}
#why-tgn-sec p {
	margin: 0 0 25px;
}
#why-tgn-sec .elementor-button-link {
	width: 17.76vw;
	height: 4.11vw;
	font-size: 1.81vw;
	background-image: url(/wp-content/uploads/2019/03/expand-story.png);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
#why-tgn-sec .elementor-button-content-wrapper {
	position: relative;
	top: -6%;
}
#why-tgn-sec #testimonial-box {
	margin: 50px auto -150px;
}
#why-tgn-sec #expand-container {
	display: none;
}
#any-problem-section .elementor-col-33:nth-of-type(1), #any-problem-section .elementor-col-33:nth-of-type(2) {
	width: 362px;
	min-height: 230px;
	margin-right: 26px;
}
#any-problem-section .elementor-col-33:nth-of-type(1)::after, #any-problem-section .elementor-col-33:nth-of-type(2)::after {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/04/arrow-right.png);
	width: 28px;
	height: 38px;
	background-size: cover;
	position: absolute;
	right: -28px;
	top: 95px;
}
#any-problem-section .elementor-col-33:nth-of-type(3) {
	width: 386px;
	min-height: 229px;	 
}
#any-problem-section .elementor-col-33 p {
	margin: 0;
}

#any-problem-section::before {
	display: block;
	content: "";
	position: absolute;
	background-image: url(/wp-content/uploads/2019/03/ap-left.png);
	background-size: cover;	
	left: 0; 
	bottom: 0;
	width: 390px;
	height: 855px;
	z-index: 1;
}

#any-problem-section::after {
	display: block;
	content: "";
	position: absolute;
	background-image: url(/wp-content/uploads/2019/03/ap-right.png);
	background-size: cover;
	right: 0; 
	bottom: 0;
	width: 400px;
	height: 856px;
	z-index: 1;	
}

/* Podcast */
#podcast-section {
	z-index: 1;
	text-align: center;
}
#podcast-section .grid-item {
	width: calc(33.3% - 32px);
	min-height: 560px;
	margin: 0 14px 28px;
	display: inline-block;
	vertical-align: top;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	z-index: 2;	
	position: relative;
	text-align: left;
	background-color: #fff;
}
#podcast-section .button-group.filter-button-group {
	text-align: center;
}

#podcast-section .filter-button-group button {
	background-color: transparent;
	background-size: cover;
	color: #51596d;
	font-size: 24px;
	padding: 5px 20px;	
}
#podcast-section .filter-button-group button.selected {
	color: #ffffff;
}
#podcast-section .filter-button-group button.selected {
	background-image: url(/wp-content/uploads/2019/04/pbtn-1.png);
	background-size: 100% 100%;
}
#podcast-section .filter-button-group button:nth-of-type(2).selected {
	background-image: url(/wp-content/uploads/2019/04/pbtn-2.png);
}
#podcast-section .filter-button-group button:nth-of-type(3).selected {
	background-image: url(/wp-content/uploads/2019/04/pbtn-3.png);
}
#podcast-section .filter-button-group button:nth-of-type(4).selected {
	background-image: url(/wp-content/uploads/2019/04/pbtn-4.png);
}
#podcast-section .filter-button-group button:nth-of-type(5).selected {
	background-image: url(/wp-content/uploads/2019/04/pbtn-5.png);
}

#podcast-section .filter-button-group button:active, #podcast-section .filter-button-group button:focus, #podcast-section .filter-button-group button:hover {
	color: #fff;	
}
#podcast-section #portfolio-loader--container,
#podcast-section .portfolio-loader--container {
	width: 100%;
	background-color: #fff;
	margin-bottom: -150px;
	text-align: center;
	position: relative;
	top: -120px;
	z-index: 3;
	-webkit-box-shadow: rgba(255, 255, 255, 0.9) 0 -90px 60px 50px;
	-moz-box-shadow: rgba(255, 255, 255, 0.9) 0 -90px 60px 50px;
	box-shadow: rgba(255, 255, 255, 0.9) 0 -90px 60px 50px;
	padding: 0 0 50px;
}
#podcast-section #portfolio-loader--container button,
#podcast-section .portfolio-loader--container button {
	color: #ff9625;
	background-color: transparent;
	background-image: url(/wp-content/uploads/2019/04/button-art-yellow.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	padding: 25px 30px 35px;
	font-size: 25px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	outline: none;
}
.pgw-content {
	background-color: #fff;
	padding: 30px;
	min-height: 300px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.pgw-content p {
	color: #2d2d2d;
	margin: 0 0 20px;
}
.grid {
	position: relative;
}
.grid.processing .grid-item,
.grid .loader {
	opacity: 0.5;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.grid .loader {
	opacity: 0;
	z-index: 1;
}
.grid.processing .loader {
	opacity: 1;
	z-index: 4;
}
.grid-title {
	line-height: 1.2;
	font-weight: 700;
}
.grid-meta {
	font-size: 18px;
	line-height: 1;
	font-weight: 300;
}
.pgw-content .lm-link {
	display: inline-block;
	position: relative;
	color: #ff9625;
	font-size: 18px;
	font-weight: 700;	
	line-height: 1;
	margin: 0;
}
.pgw-content .lm-link::after {
	display: block;
	content: url(/wp-content/uploads/2019/03/lm-arrow.jpg);
	position: absolute;
	right: -25px;
	top: -1px;
}
.feat-image {
	padding-bottom: 68.3%;
	background-size: cover;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background-color: #579BEF;
}
.feat-image.no-img {
	background-image: url(/wp-content/uploads/2019/03/genius-network-logo.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
}

.scale {
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;	
}
.scale:hover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);		
}

#podcast-section .portfolio-grid .portfolio-loader--container {
	width: 100%;
	background-color: #fff;
	margin-bottom: -150px;
	text-align: center;
	position: relative;
	top: -120px;
	z-index: 3;
	-webkit-box-shadow: rgba(255, 255, 255, 0.9) 0 -90px 60px 50px;
	-moz-box-shadow: rgba(255, 255, 255, 0.9) 0 -90px 60px 50px;
	box-shadow: rgba(255, 255, 255, 0.9) 0 -90px 60px 50px;
	padding: 0 0 50px;
}
#podcast-section .portfolio-grid .portfolio-loader--container button {
	color: #ff9625;
	background-color: transparent;
	background-image: url(/wp-content/uploads/2019/04/button-art-yellow.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	padding: 25px 30px 35px;
	font-size: 25px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

@media (min-width: 769px) {
	#podcast-section #portfolio-grid,
	#podcast-section .portfolio-grid {
		display: -ms-flexbox;
		display: -webkit-box;    
		display: flex;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
		margin: 0 15px;
	}
	#podcast-section #portfolio-grid .grid-item,
	#podcast-section .portfolio-grid .grid-item {
    	-webkit-box-flex: 0;
        -ms-flex: 0 1 calc(33.33% - 32px);
            flex: 0 1 calc(33.33% - 32px);
	}
	#podcast-section #portfolio-grid .grid-item .pgw-content .lm-link,
	#podcast-section .portfolio-grid .grid-item .pgw-content .lm-link {
		position: absolute;
		left: 30px;
		bottom: 30px;
	}
	#podcast-section #portfolio-grid .grid-item .pgw-content .grid-meta,
	#podcast-section .portfolio-grid .grid-item .pgw-content .grid-meta {
		padding-bottom: 35px;
	}	
}


/* # Experience
---------------------------------------------------------------------------------------------------- */

#exp-sec-2 .elementor-col-33 .elementor-column-wrap {
	background-size: 100% 100%;
	min-height: 507px;
}
#exp-sec-2 .elementor-col-33 {
	width: 100%;
	max-width: 362px !important;
	display: inline-block;
	margin-right: 35px;
}

#exp-sec-2 .elementor-col-33:nth-last-of-type() {
	margin-right: 0;	
}
#exp-sec-4:before {
	content: "";
	display: block;
	position: absolute;
	background-image: url(/wp-content/uploads/2019/04/exp-sec-4-left.png);
	left: 0;
	bottom: 0;
	width: 14.374vw;
	height: 34.84vw;	
}
#exp-sec-4:after {
	content: "";
	display: block;
	position: absolute;
	background-image: url(/wp-content/uploads/2019/04/exp-sec-4-right.png);
	right: 0;
	bottom: 0;
	width: 26.25vw;
	height: 49.89vw;
}
#exp-sec-5 .elementor-col-25 {
	width: 100%;
	max-width: 396px;
	margin: 0 30px;
}
#exp-sec-5 .elementor-col-25:nth-of-type(1) {
	margin-left: 0;
}
#exp-sec-5 .elementor-col-25:nth-of-type(4) {
	margin-right: 0;
}
#exp-sec-5 .elementor-col-25 .elementor-column-wrap {
	background-size: 100% 100%;
	min-height: 464px;
	padding: 60px 40px;
}

/* # FAQ
---------------------------------------------------------------------------------------------------- */
#faq-sec-2::after {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/04/faq-sec-2-after_03.png);
	background-size: cover;
	width: 254px;
	height: 491px;
	position: absolute;
	top: 0;
	right: 0;
}
#faq-sec-2 .elementor-element-1db763f {
	text-align: left;
	max-width: 54%;
	float: left;
	clear: none !important;
}
#faq-sec-2 .elementor-element-d936fed,
#faq-sec-3 .elementor-element-9608ffb,
#faq-sec-4 .elementor-element-9b80906,
#faq-sec-5 .elementor-element-3bc043c,
#faq-sec-6 .elementor-element-3cb0d1d,
#faq-sec-7 .elementor-element-a3d4694 {
	max-width: 45%;
	float: right !important;
	position: relative;
	top: -7px;
	right: -30px;
}
#faq-sec-3::before {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/04/faq-sec-3-before.png);
	background-size: cover;
	width: 100vw;
	height: 9.21875vw;
	position: absolute;
	top: -9.21875vw;
}
#faq-sec-3::after {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/04/faq-sec-3-after.png);
	background-size: cover;
	width: 737px;
	height: 672px;
	position: absolute;
	right: 0;
	bottom: 0;
}
#faq-sec-3 {
	border-bottom: 4px solid #000000;
}
#faq-sec-3 .elementor-element-1abf466, #btn-left {
	text-align: left;
	max-width: 54%;
	float: left;
	clear: none !important;
}
#faq-sec-3 .elementor-element-95a8661, #btn-right {
	max-width: 45%;
	float: right !important;
	position: relative;
	top: -7px;
	right: -30px;
}
#faq-sec-4::before {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/04/sec-4-before.png);
	background-size: cover;
	width: 749px;
	height: 681px;
	position: absolute;
	left: 0;
	bottom: 0;
}
#faq-sec-4::after {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/04/sec-4-after.png);
	background-size: cover;
	width: 190px;
	height: 436px;
	position: absolute;
	right: 0;
	bottom: 0;
}
#faq-sec-5 {
	border-bottom: 4px solid #000000;
}
#faq-sec-6::before {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/04/faq-sec-6-before.png);
	background-size: cover;
	width: 282px;
	height: 366px;
	position: absolute;
	left: 0;
	bottom: 0;
}
.page-id-23 .before-footer-2 .elementor-element-04c33c7 {
	background-image: url(/wp-content/uploads/2019/04/faq-pipes-bg.png) !important;
}
.page-id-23 .before-footer-2 .elementor-438 {
	margin-top: -85px;
}

/* # Contact
---------------------------------------------------------------------------------------------------- */
.light {
	font-weight: 300 !important;
}
#contact-sec-1 h3 a {
	color: #ff9625;
}
.elementor-element-dd10af2 {
	z-index: 3;
}
#contact-sec-4::after {
	content: "";
	display: block;
	background-image: url(/wp-content/uploads/2019/04/sec-4-after-1.png);
	background-size: cover;
	width: 462px;
	height: 323px;
	right: 0;
	position: absolute;
	bottom: 0;
}
.elementor-element-9595de7 strong {
	display: block;
}
#apply-now-container {
	max-width: 634px;
}
#apply-now-container > .elementor-element-populated {
	min-height: 780px;
}
#apply-now-container .elementor-element-1143ca9 {
	margin: 0;
}
#apply-now-btn {
	max-width: 168px;
	margin: 0 auto;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;	
}
#apply-now-btn:hover {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
#apply-now-btn:before, #apply-now-btn:after {
	background-size: cover;
	content: "";
	display: block;
	position: absolute;
}
#apply-now-btn::before {
	background-image: url(/wp-content/uploads/2019/04/apply-now-left.png);
	width: 126px;
	height: 58px;
	left: -140px;
	top: -5px;
}
#apply-now-btn::after {
	background-image: url(/wp-content/uploads/2019/04/apply-now-right.png);
	width: 71px;
	height: 46px;
	right: -80px;
	top: 15px;
}
#contact-sec-5 .elementor-col-25 {
	max-width: 270px;
	margin: 0 15px;
	border-radius: 10px;
}
#contact-sec-5 .elementor-col-25 p {
	margin: 0;	
}

/* # Community
---------------------------------------------------------------------------------------------------- */
#com-sec-2 .pen {
	font-size: 60px;
}
#com-sec-3 .elementor-col-50 {
	max-width: 589px;
	margin: 0 10px;
}
#com-sec-3 .eicon-play {
	background-image: url(/wp-content/uploads/2019/04/video-slider-btn.png);
	background-size: cover;
	width: 108px;
	height: 105px;
}
#com-sec-3 .eicon-play:before, #com-sec-3-vids .eicon-play:before {
	display: none;	
}
/* #com-sec-3-vids .elementor-col-33 {
	width: 100%;
	max-width: 405px;
	margin: 0 10px;
} */
#com-sec-3-vids .elementor-custom-embed-image-overlay::before, #com-sec-3 .elementor-custom-embed-image-overlay::before {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
}
#com-sec-3-vids .eicon-play {
	background-image: url(/wp-content/uploads/2019/04/video-slider-btn.png);
	background-size: cover;	
	width: 72px;
	height: 70px;
}
#com-sec-3-vids .elementor-col-33 > .elementor-column-wrap {
    /* min-height: 655px;
 */    z-index: 2;
    background-size: 100% 100%;
}
#com-sec-3-vids::before {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/04/cs3-before.jpg);
	width: 378px;
	height: 635px;
	position: absolute;
	background-size: cover;
	left: 0;
	top: 240px;
	z-index: 1;
}
#com-sec-3-vids::after {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/04/cs3-after.jpg);
	width: 676px;
	height: 526px;
	position: absolute;
	background-size: cover;
	right: 0;
	top: 390px;
	z-index: 1;	
}
#com-sec-3 .slick-prev.slick-arrow {
	background-image: url(/wp-content/uploads/2019/04/video-slider-prev.png);
	background-size: cover;
	background-color: transparent;
	width: 39px;
	height: 64px;
	padding: 0;	
	position: absolute;
	left: -15%;
	top: 33%;
	font-size: 0;
}
#com-sec-3 .slick-next.slick-arrow {
	background-image: url(/wp-content/uploads/2019/04/video-slider-next.png);
	background-size: cover;	
	background-color: transparent;
	width: 39px;
	height: 64px;
	padding: 0;	
	position: absolute;
	right: -15%;
	top: 33%;	
	font-size: 0;
}
#com-sec-3 .swiper-slide {
	background-image: url(/wp-content/uploads/2019/04/video-slider-bg.png);
	background-size: 100% 100%;
}
#com-sec-3 .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #6e93fe;
}
#com-sec-3  .swiper-pagination-bullets {
	bottom: -20px !important;
}
#com-sec-3 .elementor-swiper-button.elementor-swiper-button-prev {
	left: -7.8125vw;
}
#com-sec-3 .elementor-swiper-button.elementor-swiper-button-next {
	right: -7.8125vw;
}
#com-sec-4 {
	border-bottom: 6px solid #000000;
}
#com-sec-4 li {
	padding-left: 30px;
	position: relative;
}
#com-sec-4 li::before {
	content: "";
	display: block;
	background-image: url(/wp-content/uploads/2019/04/com-list-img.png);
	background-size: cover;
	width: 26px;
	height: 27px;
	position: absolute;
	left: -15px;
	top: 10px;
}
#com-sec-4 .elementor-element.elementor-element-7a81763 > .elementor-widget-container {
	min-height: 608px;
}
#com-sec-4::before {
	content: "";
	display: block;
	background-image: url(/wp-content/uploads/2019/07/tq-before_opttimized.jpg);
	width: 564px;
	height: 507px;
	position: absolute;
	bottom: -3px;
	left: 0;
	z-index: 5;
}
#com-sec-4::after {
	content: "";
	display: block;
	background-image: url(/wp-content/uploads/2019/07/tq-after_opttimized.jpg);
	width: 596px;
	height: 562px;
	position: absolute;
	top: 115px;	
	right: 0;
	z-index: 1;
}
#com-testimonial .elementor-column-wrap.elementor-element-populated {
	min-height: 463px;
}
#com-testimonial .elementor-widget-text-editor p::before  {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/03/tq-before.jpg);
	background-size: cover;	
	width: 46px;
	height: 39px;
	position: absolute;
	left: -18px;
	top: -50px;
}
#com-testimonial .elementor-widget-text-editor p::after {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/03/tq-after.jpg);
	background-size: cover;
	width: 44px;
	height: 36px;
	position: absolute;
	right: 30px;
	bottom: -15px;
}
.com-testimonial > .elementor-column-wrap {
	background-size: 100% 100% !important;
}

/* # 404
---------------------------------------------------------------------------------------------------- */
.error404 .footer-widgets-1 {
	display: none;
}
.error404 #genesis-footer-widgets {
	padding: 0 0 30px;
}
.error404 .footer-widgets-5 {
	margin: 0;
	border: 0;
}
.error404 .footer-widgets-5:before {
	background-color: transparent;
	margin-bottom: 30px;
}
.error404 .footer-widgets-5 section {
	margin-bottom: 5px;
}


/* # Application
---------------------------------------------------------------------------------------------------- */
.page-id-976 .menu-left-container, .page-id-976 .menu-right-container, .page-id-976 .footer-widgets-1, .page-id-1005 .footer-widgets-1, .page-id-976.page-2 #application-form:before, .page-id-976.page-2 #application-form:after {
	display: none !important;
}
.page-id-976 .footer-widgets-5 {
	border-top: none;	
}
.footer-widgets-5::before {
	height: 0;
}
.page-id-976 .footer-widgets {
	padding-top: 0;
}

#application-form .gf_progressbar_title {
	text-align: center;
	font-family: 'Nanum Pen Script', sans-serif;
	font-size: 36px;
	color: #ffffff;
	opacity: 1;
	margin-left: 0 !important;
}
#application-form .gform_wrapper label {
	display: block !important;
}
#application-form input[type="text"], #application-form select {
	border: 1px solid #989898;
	font-size: 16px;
	font-weight: 300;
	padding: 9px 20px !important;
	height: 60px;
	border-radius: 3px;
}
#application-form .gform_wrapper label {
	display: block !important;
	font-family: montserrat, sans-serif;
	font-size: 17px;
	font-weight: 400;
	color: #000;
	margin: 0 0 5px;
}

#application-form .gform_wrapper .ginput_container label {
	font-family: montserrat, sans-serif;
	font-size: 16px;
	font-weight: 300;
}
#application-form .gform_wrapper .reffered-group.below label {
	font-family: source sans pro, sans-serif;
	font-weight: 300;
	color: #313131;
	font-size: 18px;
}
#application-form input[type="text"]::-webkit-input-placeholder {
   	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
	font-size: 18px;
	color: #313131;
}
#application-form input[type="text"]:-moz-placeholder { /* Firefox 18- */
   	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
	font-size: 18px;
	color: #313131;
}
#application-form input[type="text"]::-moz-placeholder {  /* Firefox 19+ */
   	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
	font-size: 18px;
	color: #313131;
}
#application-form input[type="text"]:-ms-input-placeholder {  
   	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
	font-size: 18px;
	color: #313131;
}
#application-form input[type="button"] {
	font-family: 'Source Sans Pro', sans-serif;
	clear: both;
	background-color: #ffb525;
	border-left: 10px solid #ff9625;
	border-radius: 5px;
	font-size: 29px;
	line-height: 1;
	width: 100%;
}
#application-form .gform_page_footer {
	max-width: 216px;
	float: right;
	border: 0;
	padding: 0;
	margin-top: 20px;
	margin-right: 17px;
	position: relative;
}
#application-form .gform_page_footer:before, .page-2 #application-form .gform_page_footer:after {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/04/btn-arrow.png);
	background-size: cover;
	width: 78px;
	height: 22px;
	position: absolute;
	left: -100px;
	top: 22px;
}
.page-2 #application-form .gform_page_footer:after {
	left: unset;
	background-image: url(/wp-content/uploads/2019/04/btn-arrow-right.png);	
	right: -100px;
}
#application-form .reffered-group {
	background-color: #fff4e6;
	box-shadow: 0.5px 0.866px 27px 0px rgba(0, 0, 0, 0.08);
	padding: 30px;
	border-radius: 10px;
}
#application-form .reffered-group ul {
	margin: 0;
	padding: 0;
}
#application-form .reffered-group ul li {
	padding-right: 0;	
}
#application-form .reffered-group ul li.gf_left_half {
	padding-right: 8px;
}
#application-form .reffered-group ul li.gf_right_half {
	padding-left: 8px;	
}
#application-form .reffered-group ul li:nth-of-type(1), #application-form .reffered-group ul li:nth-of-type(2), .page-2 #application-form .reffered-group ul li:nth-of-type(3) {
	margin-top: 0 !important;	
}	
#application-form .reffered-group.below, #application-form .reffered-group {
	position: relative;
	z-index: 2;
}
#application-form .reffered-group.below {
	background-color: #ffffff;
	margin-top: 30px;
}
#application-form .reffered-group.below:after {
	display: block;
	content: "";
	clear: both;
}
#application-form .gform_previous_button {
	display: none;
}
#application-form h1, #application-form h3 {
	font-size: 28px;
	font-family: montserrat, sans-serif;
	font-weight: 700;
	text-align: center;
	color: #ffffff;
	margin: 0 0 45px;
}
#application-form .gform_wrapper .gf_progressbar_wrapper {
	padding: 0;
	margin: 0 0 40px;
}

#application-form .gform_wrapper .gf_progressbar {
	background-color: #fff4e6;
	border: 2px solid #ffffff;
	padding: 0;
}
#application-form  .gform_wrapper .gf_progressbar::after {
	background-color: transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	height: 30px;
	margin-top: -30px;
}
#application-form .gf_progressbar_percentage > span {
	display: none !important;
}
#application-form .gform_wrapper .gf_progressbar_percentage {
	height: 30px;
	background-image: url(/wp-content/uploads/2019/04/progress-bg.jpg);
	background-size: contain;	
}
#application-form:before, #application-form:after, .page-2 #application-form::after  {
	display: block;
	content: "";
	position: absolute;
	bottom: 0;
	background-size: cover;
	z-index: 1;
}

#application-form:before {
	background-image: url(/wp-content/uploads/2019/04/application-left.png);
	width: 515px;
	height: 292px;
	left: 0;
}
#application-form:after {
	background-image: url(/wp-content/uploads/2019/04/application-right.png);	
	width: 519px;
	height: 490px;	
	right: 0;
}
.page-id-976.page-2 #application-form::after {
	display: block !important;
	background-image: url('/wp-content/uploads/2019/04/application-page-2-after.png');
	width: 82.135vw;
	height: 20.36vw;
	right: unset;
	left: 7.8125vw;
}
.page-2 #application-form .gform_page_footer {
	max-width: 368px;
	float: none;
	display: block;
	margin: 0 auto 30px;
}
.page-2 #application-form input[type="submit"] {
	font-family: 'Source Sans Pro', sans-serif;
	clear: both;
	background-color: #ffb525;
	border-left: 10px solid #ff9625;
	border-radius: 5px;
	font-size: 29px;
	line-height: 1;
	width: 100%;
}
#application-form .gfield_radio {
	display: flex;
	align-items: center;
}
#application-form .gfield_radio label, #application-form .gfield_radio input[type='radio']{
	display: inline !important;
	margin-left: 5px;
	height: 60px;		
}
#application-form .gf_list_5col .gfield_radio input[type='radio'] {
	height: 30px
}
#application-form .gf_list_5col {
	margin: 0 0 25px;
}
#application-form .gform_wrapper .gfield_checkbox label {
	display: inline-block !important;
	vertical-align: top;
}
#application-form #field_2_36 > label {
	color: #313131;
	font-weight: 600;
	font-family: source sans pro;	
}
#application-form #field_2_36 .ginput_container {
	margin-top: 0;
}
#application-form #field_2_37 {
	font-size: 18px;
	font-weight: 300;
	font-family: source sans pro;
}
#application-form .four-rows > ul li {
	width: calc(100% / 4 - 15px);
	float: left;
	clear: none;
	margin: 0 20px 20px 0;
}
#application-form .four-rows > ul li#field_2_51, #application-form .four-rows > ul li#field_2_55  {
	margin-right: 0;
}
#label_2_36_1 {
	max-width: 95%;
}

#application-form p, .gfield_html ol li,#application-form .gfield_html {
	font-family: source sans pro, sans-serif;
	font-weight: 300;
	color: #313131;
	font-size: 18px;
	line-height: 1.3;
}

/* # Thank you 
---------------------------------------------------------------------------------------------------- */
.footer-widgets-2 {
	display: none;
}
.page-id-1005 .footer-widgets-2 {
	display: block;
}
.page-id-1005 .footer-widgets {
	background-image: url(/wp-content/uploads/2019/04/thank-you-bg.jpg);
}
.page-id-1005 #genesis-footer-widgets {
	position: relative;
}
.page-id-1005 #genesis-footer-widgets::after {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/04/thankyou-after.png);
	width: 889px;
	height: 649px;
	position: absolute;
	bottom: 0;
	right: 0;
}

/* # Podcast
---------------------------------------------------------------------------------------------------- */
.podcast-top {
	width: 100%;
	background-image: url(/wp-content/uploads/2019/04/blog-top.jpg);
	min-height: 859px;
	background-size: cover;
	background-position: bottom center;
}
.single-podcast .content h2 {
	font-size: 48px;
	font-family: montserrat, sans-serif;
	color: #000000;
	margin: 0 0 20px;
}
.single-podcast .podcast-content, .single-podcast .content h3 {
	font-size: 28px;
	font-family: source sans pro, sans-serif;
	font-weight: 400;
	line-height: 1.4;
	color: #000;
}
.single-podcast .content h3 {
	margin: 0 0 25px;
}
.single-podcast .content ul {
	margin-left: 30px;
	margin-bottom: 50px;
}
.single-podcast .content ul li {
	position: relative;
	padding-left: 45px;
	margin: 0 0 25px;
}
.single-podcast .content ul li:before {
	display: block;
	content: "";
	position: absolute;
	background-image: url('/wp-content/uploads/2019/04/podcast-list-img.png');
	background-size: cover;
	background-repeat: no-repeat;
	width: 30px;
	height: 25px;
	left: 0;
	top: 7px;
}
.single-podcast .content ul li:nth-last-of-type(1) {
	margin-bottom: 0;
}
.podcast-bottom {
	padding: 150px 0 0;
	background-image: url(/wp-content/uploads/2019/04/podcast-bottom-bg.png);
	background-size: cover;
	background-position: center bottom;
	min-height: 680px;
	text-align: center;
	-webkit-clip-path: polygon(50% 15%, 100% 0, 100% 100%, 50% 100%, 0 100%, 0 0);
	clip-path: polygon(50% 15%, 100% 0, 100% 100%, 50% 100%, 0 100%, 0 0);
	margin-top: -50px;
	margin-bottom: -90px;
	z-index: 3;
	position: relative;	
}
.save-the-date h2 {
	font-size: 48px;
	color: #3b73fe;
	font-family: montserrat;
	font-weight: 700;
}
.save-the-date li {
	width: calc(100% / 2 - 20px);
	display: inline-block;
	vertical-align: top;
}
.save-the-date li:nth-of-type(1) h3, .save-the-date li:nth-of-type(1) h4 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	color: #fff;
	margin: 0;
}
.save-the-date li:nth-of-type(1) h3 {
	font-size: 58px;
}
.save-the-date li:nth-of-type(1) h3 sub {
	font-size: 20px;
	bottom: -3px;
}
.save-the-date li:nth-of-type(1) h4 {
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 18px;
}
.save-the-date li:nth-of-type(1) h2 {
	text-transform: uppercase;	
	margin: 30px 0 5px;
}
.save-the-date li:nth-of-type(2) {
	text-align: left;
}
.save-the-date li:nth-of-type(2) p {
	font-size: 24px;
	color: #fff;
	font-family: source sans pro, sans-serif;
	line-height: 1.5;
}
.pb-cta h3 {
	font-size: 47.6px;
	font-family: 'Nanum Pen Script', cursive;
	color: #fff;
	font-weight: 400;
}
.mbutton {
	background-color: #ffb525;
	border-left: 9px solid #ff9625;
	color: #ffffff;
	font-family: "Montserrat", Sans-serif;
	font-weight: 700;
	border-radius: 5px;
	padding: 20px 28px 20px 19px;	
	text-decoration: none;
	line-height: 1;
	position: relative;
}
.mbutton:hover {
	color: #ffffff;
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);	
}
.pb-cta::before {
	display: block;
	content: "";
	height: 2px;
	background-color: rgba(255,255,255,0.2);
	margin: 15px 0 30px;
}
.pb-cta a {
	font-size: 31.6px;
	text-transform: uppercase;
	width: 100%;
	max-width: 370px;
	margin: 0 auto 25px;
	display: block;		
}
#podcast-sidebar .quotes .elementor-text-editor::before, #sb-quotes.quotes ul li:before {
	display: block;
	content: "";
	background-image: url(/wp-content/uploads/2019/04/sb-quote-bg.png);
	width: 47px;
	height: 39px;
	position: absolute;
	top: -13px;
	left: -20px;
}
#sb-quotes {
	background-size: 100% 100%;
}
#sb-quotes.quotes ul li:nth-last-of-type(1){
	border: 0;
	margin: 0;
}
#sb-quotes ul li {
	color: #2d2d2d;
	font-family: "Source Sans Pro", Sans-serif;
	font-size: 20px;
	line-height: 1.5;
	padding-bottom: 13px;
	margin: 0 0 20px;
	border-bottom: 2px dashed #c6c6c6;
	position: relative;
}
#sb-quotes ul li span {
	font-family: "Montserrat", Sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #3b73fe;
	display: block;
	margin-top: 8px;
}
#sb-quotes.exercise ul li {
	margin: 0;
	border: 0;
	padding: 0;
}


.single-podcast .site-inner {
	margin-top: -750px;
}
.single-podcast .content .podcast-player h2 {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
}
.pp-title-wrap {
	min-height: 260px;
}
.pw {
	margin: 0 0 15px;
}

/* Player */
.podcast-player .powerpress_links.powerpress_links_mp3, .pw ul li:before {
	display: none !important;
}
.podcast-player .mejs-container, .podcast-player .mejs-container .mejs-controls, .podcast-player .mejs-embed, .mejs-embed body, .pw ul li:nth-of-type(2) a, .pw ul li:nth-of-type(3) a {
	background: #153675;
	border-radius: 5px;
}
.pw > ul:after {
	display: block;
	content: "";
	clear: both;
}
.pw > ul, .pw > ul li {
	margin: 0 !important;
	padding: 0 !important;
}
.pw ul li {
	float: left;
	margin-right: 5px !important;
}
.pw ul li:nth-last-of-type(1) {
	margin-right: 0 !important;	
}
.pw ul li:nth-of-type(1) {
	width: 58%;
}
.pw ul li:nth-of-type(2) {
	width: 24%;
}
.pw ul li:nth-of-type(3) {
	width: 16.5%;
}
.pw ul li:nth-of-type(2) a, .pw ul li:nth-of-type(3) a {
	text-decoration: none;
	color: #ffffff;
	text-align: center;
	height: 43px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	text-transform: uppercase;
}
.pw ul li:nth-of-type(2) a {
	padding-left: 35px;
} 
.pw ul li:nth-of-type(3) a {
	padding-left: 32px;
}
.pw ul li:nth-of-type(2) a::before, .pw ul li:nth-of-type(3) a::before {
	display: block;
	content: "";
	position: absolute;
	left: 10px;
	top: 8px;
}
.pw ul li:nth-of-type(3) a::before {
	top: 10px;
	left: 12px;
}
.pw ul li:nth-of-type(2) a::before {
	background-image: url(/wp-content/uploads/2019/04/download_audio.jpg);
	width: 29px;
	height: 25px;
}
.pw ul li:nth-of-type(3) a::before {
	background-image: url(/wp-content/uploads/2019/04/comment_audio.jpg);
	width: 21px;
	height: 21px;
}
.podcast-player .powerpress_player, .pw ul li:nth-of-type(2) a, .pw ul li:nth-of-type(3) a {
	border-bottom: 3px solid #0c1b38;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}
.pb-cta .mbutton::after {
	display: block;
	content: "";
	position: absolute;
	right: -80px;
	background-image: url(/wp-content/uploads/2019/04/sp-cta-arrow.png);
	width: 52px;
	height: 75px;
	top: -15px;
}
.video-container {
    position: relative;
    padding-bottom: 50%;
    padding-top: 30px; height: 0; overflow: hidden;
	margin: 0 0 18px;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sb-title {
	background-image: url(/wp-content/uploads/2019/04/sb-title-bg.jpg);
	background-size: cover;
	min-height: 237px;
	padding: 30px;
	margin: 0 0 7px;
}

.sb-title h3 {
	color: #ffffff;
	font-size: 22px;
	font-family: montserrat;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
}
.sb-title p {
	font-weight: 300;
	color: #fff;
	font-family: 'Source Sans Pro', sans-serif;
	margin: 0;
	opacity: .8;
}
.previous, .next {
	width: calc(50%);
	display: inline-block;
}
.prev_next a {
	display: flex;
	color: #fff;
	font-family: montserrat;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	height: 45px;
	border: 1px solid #fff;
	border-radius: 3px;
	align-items: center;
	justify-content: center;
	margin: 0 0 10px;
}
.previous a::before, .next a::before  {
	display: block;
	content: "";
	width: 33px;
	height: 9px;
	position: absolute;
	top: 16px;
}
.previous a::before {
	background-image: url(/wp-content/uploads/2019/04/prev-arrow.png);
	left: 13px;
}
.next a::before  {
	background-image: url(/wp-content/uploads/2019/04/next-arrow.png);
	right: 13px;	
}
.previous a {
	padding-left: 40px;
	margin-right: 2.5px;
}
.next a {
	padding-right: 40px;
	margin-left: 2.5px;
}

#erw-widget, #sb-quotes {
	background-image: url("/wp-content/uploads/2019/04/sidebar-quote-bg.png");
	background-size: 100% 100%;
	padding: 20px 35px 10px 35px;
	margin: 0 0 15px;
}
#erw-widget h3, #sb-quotes h3 {
	font-family: "Nanum Pen Script", Sans-serif;
	font-size: 46px;
	font-weight: 400;
	line-height: .8;
}
#sb-quotes ul li:nth-last-of-type(1) {
	margin: 0 0 10px;
	border: none;
}

#erw-widget .mbutton {
	display: block;
	max-width: 250px;
	margin: 0 auto 10px;
	text-align: center;
	text-transform: uppercase;
	line-height: 1.3
}

#erw-widget p {
	margin: 0 0 10px;
}
#erw-widget ul {
	margin: 0 0 15px;
}

#erw-widget {
	padding-bottom: 25px;
}

/* # Marketing book Footer Form
---------------------------------------------------------------------------------------------------- */
#mb-footer .elementor-element-75ad4b6 p {
	margin: 0;
}
#mb-footer input[type="text"] {
	font-family: "Source Sans Pro", Sans-serif;
	font-size: 18px;
	height: 50px;
}
#mb-footer .gfield_checkbox label {
	font-family: "Source Sans Pro", Sans-serif;
	display: inline-block !important;
	vertical-align: top;
	color: #fff;
	font-size: 16px;
}
#mb-footer .gform_button {
	border-radius: 3px;
}
#mb-footer .gform_wrapper .gform_footer, body #mb-footer .gform_wrapper ul li.gfield {
	padding: 0;
	margin: 10px 0 0;
	clear: both;
	width: 100%;
}

#mb-footer .gform_footer input[type="image"] {
	margin: 0 0 -5px !important;
}

.gchoice_select_all, .gform_wrapper ul.gfield_checkbox li input[type="checkbox"]:checked + label, .gform_wrapper ul.gfield_radio li input[type="radio"]:checked + label {
	font-weight: 400 !important;
}

body #gform_wrapper_3 .gfield_checkbox li input[type=checkbox] {
    opacity: 0;
    position: absolute;   
}
body #gform_wrapper_3 .gfield_checkbox li input[type=checkbox] + label{
    position: relative;
    overflow: hidden;
    padding-left: 30px;
    cursor: pointer;
    display: inline-block;
}

body #gform_wrapper_3 .gfield_checkbox li input[type=checkbox] + label:before,
body #gform_wrapper_3 .gfield_checkbox li input[type=checkbox] + label:after{
    content: '';
    position: absolute;
    left: 0;
    z-index: 1;
    -webkit-transition: .2s;
    transition: .2s;
}
/* after */
body #gform_wrapper_3 .gfield_checkbox li input[type="checkbox"]:not(:checked) + label::after {
	width: 19px;
	height: 19px;
	border: 2px solid #c0c0c0;
	top: 0;
	background-color: #fff;
	border-radius: 3px;	
	margin-top: 3px;	
}
body #gform_wrapper_3 .gfield_checkbox li input[type=checkbox]:checked + label:after{
    top: 0;
    width: 19px;
    height: 19px;
    border: 2px solid #c0c0c0;
    background-color: #fff;
    z-index: 0;
	border-radius: 3px;
	margin-top: 3px;
}
/* before */
body #gform_wrapper_3 .gfield_checkbox li input[type=checkbox]:not(:checked) + label:before{
	    width: 0;
    height: 0;
    border: 3px solid transparent;
    left: 6px;
    top: 10px;
    -webkit-transform: rotateZ(37deg);
    transform: rotateZ(37deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}
body #gform_wrapper_3 .gfield_checkbox li input[type=checkbox]:checked + label:before{
	top: 2px;
    left: 1px;
    width: 8px;
    height: 13px;
	margin-top:3px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #c0c0c0;
    border-bottom: 2px solid #c0c0c0;
    -webkit-transform: rotateZ(37deg);
    transform: rotateZ(37deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}
#gform_confirmation_message_3 {
	color: #ffb525;
	margin-top: 20px;
	line-height: 1.5;
	font-size: 20px;
	max-width: 360px;
}

#mb-footer .gform_wrapper li.gfield.gfield_error,#mb-footer .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	background-color: transparent !important;
	margin-bottom: 0 !important;
	border-top: 0;
	border-bottom: 0;
}

#mb-footer .validation_message {
	display: none !important;
}

#mb-footer .gform_wrapper div.validation_error {
	color: #ffb525;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	border-top: 1px solid #ffb525;
	border-bottom: 1px solid #ffb525;
	padding: 5px;
	clear: both;
	width: 100%;
	text-align: center;
}

#mb-footer .gform_wrapper li.gfield_error input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), .gform_wrapper li.gfield_error textarea {
	border: 2px solid #ffb525;
}
.grow {
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;	
}
.grow:hover {
	cursor: pointer;
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);	
}

/* Popup - Bio */
.bio-popup-hover a {
    display: block !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bio-popup-hover a img {
    opacity: 0;
}
.bio-popup-hover a:hover {
    transform: scale(1.05);
}
.bio-popup .dialog-widget-content {
    background-size: 100% 100% !important;
    padding: 5rem;
    height: 90%;
}
.bio-popup-hover:hover {
    z-index: 1;
}
.bio-popup img {
    max-width: 25vw !important;
}
.bio-popup p {
    margin: 0 0 3%;
}
.bio-popup .elementor-location-popup {
    overflow-y: auto;
    overflow-x: hidden;
}
.bio-popup.elementor-popup-modal .dialog-message {
    overflow: hidden;
    height: 100% !important;
}
.bio-popup.elementor-popup-modal .dialog-message .elementor-section {
    overflow: auto!important;
}
.bio-popup .dialog-close-button {
    background-image: url(/wp-content/uploads/2019/06/pop-close-img.png);
    width: 2.4vw;
    height: 2.19vw;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    right: -50px !important;
    top: 0 !important;
}
.bio-popup .dialog-close-button i {
    display: none;
}

.influex-search-box {
	margin: 15px auto 30px;
	max-width: 680px;
}
.influex-search-box input[type="text"] {
	display: inline-block;
    vertical-align: top;
    width: 79%;
    line-height: 1;
    padding: 13px;
    border-radius: 5px;
}
.influex-search-box button {
    display: inline-block;
    vertical-align: top;
    padding: 17px;
    width: 20%;
    line-height: 1;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    background-color: #ffb525;
    color: #fff;
    border-radius: 5px;
}
.influex-search-box button:hover,
.influex-search-box button:active {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.influex-search-box button > .fa {
	display: none;
}

.influex-search-box-sidebar .influex-search-box button > .fa {
	display: inline-block;
}
.influex-search-box-sidebar .influex-search-box button > .btn-text {
	display: none;
}
.influex-search-box-sidebar .influex-search-box input[type="text"] {
	float: left;
	width: 79%;
	margin-right: 1%;
}
.influex-search-box-sidebar .influex-search-box button {
	float: left;
	width: 20%;
}

@media (max-width: 767px) {
	.influex-search-box {
		padding: 0 15px;
	}
	.influex-search-box-sidebar .influex-search-box {
		padding: 0;
	}
	.influex-search-box button > .fa {
		display: inline-block;
	}
	.influex-search-box button > .btn-text {
		display: none;
	}
	.influex-search-box input[type="text"] {
		float: left;
		width: 79%;
		margin-right: 1%;
	}
	.influex-search-box button {
		float: left;
		width: 20%;
	}
}

/* # Media Queries
---------------------------------------------------------------------------------------------------- */

@media screen and ( max-width: 2560px ) and ( min-width: 1921px ) {

}

@media screen and (max-width: 1920px) and ( min-width: 1601px ) {
	#home-sec-2 .elementor-column-gap-default {
		max-width: 59.375vw;
	}		
	#testimonial-box {
		max-width: 48.33vw;
		margin-left: 4.687vw;
	}
	#testimonial-box .elementor-column-wrap {
		min-height: 16.51vw;
		padding: 2.60vw 4.42vw 0 5.98vw;
	}
	#testimonial-box .elementor-author-box__avatar img {
		width: 5.20vw;
	}
	#testimonial-box p, #testimonial-box .elementor-text-editor p {
		max-width: 35.93vw;
		font-size: 1.25vw;
		line-height: 1.625vw;
	}
	#testimonial-box .elementor-author-box__name {
		font-size: 1.25vw;
	}
	#testimonial-box .elementor-author-box__text {
		font-size: 0.93vw;
		line-height: 1.380vw;
	}	
	#any-problem-section::before {
		width: 20.3125vw;
		height: 44.53125vw;
	}

	#any-problem-section::after {
		width: 20.83vw;
		height: 44.58vw;
	}	
	#any-problem-section > .elementor-column-gap-no {
		max-width: 60.93vw;
	}	
	#any-problem-section .elementor-col-33 h4 {
		font-size: 1.66vw;
	}
	#any-problem-section .elementor-col-33 p {	
		font-size: 1.56vw;
		line-height: 2.03vw;
	}
	#any-problem-section .elementor-col-33:nth-of-type(1), #any-problem-section .elementor-col-33:nth-of-type(2){
		width: 18.85vw;
		min-height: 11.97vw;
		margin-right: 1.35vw;		
	}
	#any-problem-section .elementor-col-33:nth-of-type(3) {
		width: 20.10vw;
		min-height: 11.92vw;
	}	
	#any-problem-section {
		padding: 7.81vw 0 3.64vw;
	}
}

@media screen and (max-width: 1920px) and ( min-width: 1367px ) {
	.page-id-23 .elementor-widget-text-editor p {
		font-size: 1.45vw;
	}
}

@media screen and (max-width: 1920px) and ( min-width: 1024px ) {
	#home-sec-2 .elementor-element-4d389d6 > .elementor-widget-container {
		margin: -1.76vw -19.08vw -5.28vw -0.437vw;
	}	
	#home-sec-2 .elementor-col-50:nth-of-type(1) {
		width: 42.55vw;
	}
	#home-sec-2 .elementor-col-50:nth-of-type(1) p, .elementor-element-6c1c509 p {
		font-size: 1.458vw;
		line-height: 1.89vw;
		margin-bottom: 1.30vw;
	}
	#home-sec-2 .elementor-col-50:nth-of-type(1) li {	
		font-size: 1.25vw;
		line-height: 1.75vw;
	}	
	#home-sec-2 .elementor-col-50:nth-of-type(2) {
		width: 15.729vw;
	}		
	#bks-list ul::before {
		top: -0.52vw;
		width: 2.29vw;
		height: 12.23vw;
		background-size: cover;
	}	
	#fmn-btn a {
		max-width: 19.53vw;
	}	
	#fmn-btn a::after {
		width: 2.968vw;
		height: 4.32vw;
		right: -3.229vw;
		top: -2.60vw;
		background-size: cover;
	}	
	#testimonial-box {
		max-width: 48.33vw;
		margin-left: 4.687vw;
	}
	#testimonial-box .elementor-column-wrap {
		min-height: 16.51vw;
		padding: 2.60vw 4.42vw 0 5.98vw;
	}
	#testimonial-box .elementor-author-box__avatar img {
		width: 5.20vw;
	}
	#testimonial-box p, #testimonial-box .elementor-text-editor p {
		max-width: 35.93vw;
		font-size: 1.25vw;
		line-height: 1.625vw;
	}
	#testimonial-box .elementor-author-box__name {
		font-size: 1.25vw;
	}
	#testimonial-box .elementor-author-box__text {
		font-size: 0.93vw;
		line-height: 1.380vw;
	}	
	#any-problem-section .elementor-col-33:nth-of-type(1)::after, #any-problem-section .elementor-col-33:nth-of-type(2)::after {
		width: 1.48vw;
		height: 1.97vw;
		right: -1.45vw;
		top: 4.9vw;
	}	
	#faq-sec-1 h1 {
		font-size: 2.5vw;
	}	

	#faq-sec-2 h3, #faq-sec-3 h3, #faq-sec-4 h3, #faq-sec-5 h3, #faq-sec-6 h3, #faq-sec-7 h3  {
		font-size: 2.08vw;
	}
	#application-form::before {
		width: 26.82vw;
		height: 15.20vw;
	}	
	#application-form::after {
		width: 27.03vw;
		height: 25.52vw;
	}	
	#com-sec-2 > .elementor-container {
		width: 59.375vw;
	}
	#com-top > .elementor-container {
		width: 52.60vw;
	}
	#com-top{
		padding: 0 0 4.16vw;
	}
	#com-top .elementor-element-92d9b76 h2 {
		font-size: 2.5vw;
	}	
	#com-top p {
		font-size: 1.45vw;
		line-height: 1.97vw;
	}
	#com-top .elementor-element-c2a2e8a > .elementor-container {
		max-width: 63.125vw;
	}	
	#com-top .elementor-element-92d9b76 > .elementor-widget-container {
		padding: 9.89vw 0px 0px 0px;
	}	
	#com-sec-2 .elementor-element-173df29 p {
		font-size: 1.82vw;
		line-height: 2.34vw;
	}	
	#com-sec-3-vids p, #com-sec-2 p {
		font-size: 1.45vw;
		line-height: 2.03vw;
		margin: 0 0 1.30vw;
	}
	#com-sec-2 h3 {
		font-size: 1.97vw;
	}	
	#com-sec-2 .pen {
		font-size: 3.125vw;
		position: relative;
		top: 0.52vw;
	}	
	#com-sec-2 .elementor-element-e95d5fa {
		margin-bottom: 2.08vw;
	}	
	#com-sec-3 > .elementor-container {
		width: 63.54vw;
	}
	#com-sec-3 .elementor-element-5cc8f24 .elementor-main-swiper {
		height: 20.83vw;
	}
	#com-sec-3 .swiper-slide {
		width: 31.35vw !important;
		margin-right: 1.04vw !important;
	}	
}

@media screen and (max-width: 1920px) and ( min-width: 768px ) {
	#faq-sec-1 .elementor-element-033868f img, #arrow-img img {
		max-width: 1.61vw;
	}
	#faq-sec-2 .elementor-element-ec07ba4 > .elementor-widget-container {
		margin: -3.64vw 0 0 -10.41vw
	}
	#faq-sec-2 .elementor-element-ec07ba4 img {
		width: 31vw;
		height: 28.48vw;
	}	
	#faq-sec-2::after {
		width: 13.22vw;
		height: 25.57vw;
	}	
	#faq-sec-2 > .elementor-container , #faq-sec-4 > .elementor-container , #faq-sec-6 > .elementor-container {
		max-width: 59.375vw;
	}
	#faq-sec-7 > .elementor-container {
		max-width: 60.9375vw;
	}
	#faq-sec-3::after{
		width: 38.38vw;
		height: 35vw;
	}
	#faq-sec-3 .elementor-element-e9b672f {
		width: 42.875vw;
	}
	#faq-sec-3 > .elementor-container {
		width: 71.25vw;
	}	
	.page-id-23 .elementor-widget:not(:last-child) {
		margin-bottom: 1.041vw;
	}	
	#faq-sec-4::before {
		width: 39.01vw;
		height: 35.46vw;
	}
	#faq-sec-4::after {
		width: 9.89vw;
		height: 22.70vw;
	}	
	#faq-sec-5 > .elementor-container {
		max-width: 69.79vw;
	}
	#faq-sec-5 .elementor-element-c2699e6 > .elementor-widget-container {
		margin: 0 -8.33vw -4.68vw 0;
	}	
	#faq-sec-5 .elementor-element-c2699e6 img {
		max-width: 31.66vw;
	}
	#faq-sec-6::before {
		width: 14.68vw;
		height: 19.06vw
	}
	#faq-sec-6 .elementor-element-03b7195 img {
		max-width: 14.21875vw;
	}	
	#faq-sec-6 .elementor-element-0a7a877 > .elementor-element-populated {
		margin: 3.64vw 0px 0px 0px;
	}
	#com-sec-3 .elementor-element-5cc8f24 .elementor-main-swiper {
		
	}
	#com-sec-3 .swiper-slide {
		
	}
		
}

@media screen and (max-width: 1600px) and ( min-width: 1201px ) {
	#podcast-section #portfolio-loader--container button {
		padding: 1.5625vw 1.875vw 2.1875vw;
		font-size: 1.5625vw;
	}	
	#podcast-section .portfolio-loader--container button {
		padding: 1.5625vw 1.875vw 2.1875vw;
		font-size: 1.5625vw;
	}	
	
	#main-404 {
		padding: 70px 0 200px;
	}
	#main-404 .elementor-element-67dc572 {
		width: 55%;
	}
	#main-404 .elementor-element-67dc572 > .elementor-element-populated {
		padding: 65px 65px 100px 50px;
	}
	#main-404 .elementor-element-d65da9b a.elementor-button, 
	#main-404 .elementor-element-d65da9b .elementor-button {
		font-size: 30px;
		line-height: 75px;
		padding: 0px 30px 0px 20px;
	}
	#main-404 .elementor-element-2ba4091 > .elementor-widget-container {
		margin: 70px 0 0 0;
	}
	#main-404 .elementor-element-d65da9b > .elementor-widget-container {
		margin: 35px 25px 0px 0px;
	}	
	#com-sec-3-vids .elementor-element-7583b2d p {
		font-size: 2.1875vw;
	}
}

@media screen and (max-width: 1600px) and ( min-width: 1024px ) {
	#home-sec-2 .elementor-column-gap-default, #jp-sec .elementor-column-gap-default {
		max-width: 80vw;
	}		
	/* #genesis-content h2, #genius-community .elementor-element-f0e39d0 h3, #genius-community .elementor-element-f0e39d0 a {
		font-size: 3vw;
		line-height: 3vw;;
	} */	
	#why-tgn-sec h2 {
		font-size: 2.5vw;
	}	
	#why-tgn-sec h2 span {
		font-size: 2vw;
	}		
	#home-sec-1 h3 {
		font-size: 1.75vw;
	}
	#home-vid-btn .elementor-custom-embed-image-overlay	{
		width: 7.875vw;
	}
	#home-vid-btn .elementor-custom-embed-image-overlay::before {
		width: 11.43vw;
		height: 8.62vw;
		left: -11.8vw;
		background-size: cover;
	}	
	#home-sec-1 .elementor-element-721cef1 > .elementor-widget-container {
		padding: 11.875vw 0 0 0;
	}	
	#home-sec-1 .elementor-element-382c78e > .elementor-widget-container {
		padding: 4.68vw 0 3.75vw 0;
	}
	#home-sec-2 {
		padding: 2.5vw 0px 0px 0px;
	}	
	#genius-community .widget-image-caption {
		bottom: 0.93vw;
		padding: 0 0.625vw;
		font-size: 1.125vw;
	}
	#genius-community .elementor-element-f0e39d0 a {
		max-width: 37.87vw;
		padding: 1.25vw 2.5vw 3.31vw;
		line-height: 4.875vw;
	}
	#genius-community .elementor-element-f0e39d0 a::before {
		width: 38.125vw;
		height: 7.56vw;
		background-size: cover;
	}	
	#jp-sec	{
		padding: 3.75vw 0px 6vw 0px;
	}
	#jp-sec h2 {
		font-size: 2.625vw;
	}	
	#jp-sec h2 span {
		font-size: 2.25vw;
	}
	#jp-sec .elementor-image a img {
		max-width: 37.5vw;
	}
	#jp-sec .elementor-image a::after {
		width: 30.31vw;
		height: 20.75vw;
		right: 10vw;
		top: -15.625vw;
	}	
	#jp-sec .elementor-element-a65ae10 {
		margin-top: 4.375vw;
		margin-bottom: -5.625vw;
	}	
	.elementor-element-1f88be2 p:nth-of-type(1), .elementor-element-1f88be2 p:nth-of-type(2) {
		font-size: 1.75vw;
		line-height: 2.15vw;
	}
	.elementor-element-1f88be2 p:nth-of-type(1) {
		max-width: 48vw;
	}
	.elementor-element-1f88be2 p:nth-of-type(2) {
		max-width: 52.5vw;
	}	
	.elementor .line-separator img {
		max-width: 7.31vw;
	}		
	#why-tgn-sec > .elementor-column-gap-no {
		max-width: 81.25vw;
	}
	#why-tgn-sec .elementor-element-e8da954 > .elementor-column-wrap  {
		margin-right: 1.875vw;
	}
	#why-tgn-sec h2 span {
		font-size: 2.25vw;
	}	
	#why-tgn-sec p {
		margin: 0 0 1.56vw;
		font-size: 1.75vw;
		line-height: 2.275vw;
	}	
	#podcast-section {
		padding: 12.5vw 0 6.25vw;		
	}
	.elementor-element-13ffd5e .elementor-col-33:nth-of-type(1) img, .elementor-element-162528fd .elementor-col-33:nth-of-type(1) img {
		width: 7.93vw;
	}	
	.elementor-element-13ffd5e .elementor-col-33:nth-of-type(2) img, .elementor-element-13ffd5e .elementor-col-33:nth-of-type(3) img, .elementor-element-162528fd .elementor-col-33:nth-of-type(2) img, .elementor-element-162528fd .elementor-col-33:nth-of-type(3) img {
		width: 8.18vw;
	}
	#podcast-section .elementor-element-13ffd5e > .elementor-container, #podcast-archive .elementor-element-162528fd > .elementor-container {
		max-width: 28.125vw;
	}	
	#podcast-section .filter-button-group button {
		font-size: 1.5vw;
		padding: 0.3125vw 1.25vw;
	}
	#podcast-section.elementor-element-812ccc2 > .elementor-container {
		max-width: 76.125vw;
	}
	.pgw-content {
		padding: 1.8vw;
		min-height: 20vw;
	}	
	.pgw-content p {
		font-size: 1.25vw;
		margin: 0 0 1.125vw;
	}
	.pgw-content p:nth-last-of-type(1) {
		margin: 0;
	}
	.pgw-content .lm-link {
		font-size: 1.125vw;
		margin: 0;	
	}	
	.pgw-content .lm-link::after {
		right: -1.5625vw;
		top: 0.0625vw;
		width: 0.9375vw;
	}	
	#podcast-section .grid-item {
		min-height: 35vw;
		margin: 0 0.875vw 1.75vw;
		z-index: 2;
		position: relative;
	}
	.elementor-section.elementor-section-boxed.elementor-element-04c33c7 > .elementor-container {
		max-width: 71.25vw;
	}
}

@media screen and (max-width: 1600px) and ( min-width: 861px ) {
	#any-problem-section::before {
		width: 20.3125vw;
		height: 44.53125vw;
	}
	#any-problem-section::after {
		width: 20.83vw;
		height: 44.58vw;
	}	
	#any-problem-section > .elementor-column-gap-no {
		max-width: 60.93vw;
	}	
	#any-problem-section .elementor-col-33 h4 {
		font-size: 2vw;
	}
	#any-problem-section .elementor-col-33 p {	
		font-size: 1.56vw;
		line-height: 2.03vw;
	}
	#any-problem-section .elementor-col-33:nth-of-type(1), #any-problem-section .elementor-col-33:nth-of-type(2){
		width: 18.85vw;
		min-height: 11.97vw;
		margin-right: 1.35vw;		
	}
	#any-problem-section .elementor-col-33:nth-of-type(3) {
		width: 20.10vw;
		min-height: 11.92vw;
	}	
	#any-problem-section {
		padding: 9.37vw 0 4.37vw;
	}	
	.elementor-element-6c1c509 p {
		font-size: 23px;
		line-height: 1.3;
		padding-right: 25px;
	}
	
	#footer-form .pen {
		font-size: 1.875vw;
	}
	.before-footer-2 .elementor-col-50 img {
		max-width: 28.249vw;
	}
	.footer-widgets-1 {
		max-width: 80vw;
	}
	.footer-widgets-1 .elementor-element-a1b37b5 {
		width: 28vw;
	}
	.footer-widgets-1 .sm-btn a {
		max-width: 13.31vw;
	}
	.footer-widgets-1 .sm-btn {
		margin-top: 1.375vw;
	}
	#footer-form .elementor-element-5ac6caf .elementor-column-wrap {
		max-width: 49.875vw;
		margin-left: 1.875vw;
		padding: 1.56vw 1.875vw 1.25vw 1.875vw;
	}	
	#footer-form h4 {
		max-width: 37.5vw;
		font-size: 1.181vw;
		line-height: 1.53vw;
	}
	#footer-form h4 strong {
		font-size: 1.875vw;
	}	
	#footer-form .gform_body {
		max-width: 28.625vw;
	}	
	#footer-form .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
		padding: 0.56vw 1.25vw !important;
		font-size: 1vw;
	}
	#footer-form h4::before {
		width: 8.56vw;
		height: 3.81vw;
		left: -8.875vw;
		top: 0.68vw;
	}	
	#footer-form .gform_footer.top_label::before {
		width: 19.875vw;
		height: 16.375vw;
		top: -1.5vw;
		left: -3.75vw;
	}
	#footer-form .top_label div.ginput_container {
		margin-top: 0;
	}	
	#footer-form .gform_body li:nth-of-type(1) {
		margin-top: 0.93vw;
	}
	#footer-form .gform_wrapper .gform_footer {
		padding: 0.97vw 0 10px;
		margin: 0.97vw 0 0;
	}
	#footer-form .gform_wrapper {
		margin: 0.625vw 0;
	}
	.fb_iframe_widget > span {
		height: 16.875vw !important;
		overflow: hidden !important;
	}	
	.footer-widgets {
		padding: 3.75vw 0;
		font-size: 1.125vw;
	}	
	.footer-widgets-1 .widget ul > li {
		margin-bottom: 0;
	}
	.footer-widgets-5 {
		margin-top: 4.68vw;
	}
	.footer-widgets-5 section {
		margin-bottom: 0.625vw;
	}
	.footer-widgets-5::before {
		margin-bottom: 2.812vw;
	}
	#faq-sec-3 {
		padding: 2.6875vw 0;
	}		
}

@media screen and (max-width: 1366px) and ( min-width: 1024px ) {
	.menu-left-container {
		padding-right: 25px;
	}
	.menu-right-container {
		padding-left: 25px;
	}		
	.menu-left-container li a, .menu-right-container li a {
		padding: 0 0.73vw;
		font-size: 1.317vw;
	}
	.site-title {
		width: 10.029vw;
	}
	.header-image .site-title > a {
		min-height: 3.953vw;
	}
	.menu-right-container li.apply a {
		height: 2.92vw;
		width: 8.418vw;
	}
	
	.menu-left-container li a,
	.menu-right-container li a {
		font-size: 1vw;
	}
}

@media screen and (max-width: 1366px) and ( min-width: 1025px ) {
	#faq-sec-2 {
		padding: 120px 20px 30px;
	}
}

@media screen and (max-width: 1366px) {
	#mb-footer .elementor-element-d8576e4 h2 {
		font-size: 16px;
	}	
	#mb-footer .elementor-element-75ad4b6 br {
		display: none;
	}
	#mb-footer input[type="text"] {
		height: 45px;
	}
	#mb-footer .elementor-element-75ad4b6 {
		font-size: 16px;
		line-height: 1.3;
	}
	.page-id-23 .elementor-widget-text-editor p {
		font-size: 19.8px;
		line-height: 1.4;
	}
	#faq-sec-4 {
		padding: 35px 0px 85px 0px;
	}	
	#faq-sec-5 {
		padding: 8.78vw 0px 0px 0px;
	}
}

@media only screen and (max-width: 1600px) {
	#testimonial-box .elementor-text-editor p::before {
		width: 2.875vw;
		height: 2.25vw;
		left: -3.43vw;
		top: -1.43vw;
	}
	#testimonial-box .elementor-text-editor p::after {
		width: 2.75vw;
		height: 2.25vw;
		right: -1.25vw;
		bottom: -1.43vw;
	}	
	.elementor .line-separator .elementor-image {
		line-height: 1;
	}
	.page .elementor .line-separator {
		margin-bottom: 1.25vw;			
	}
	#why-tgn-sec #testimonial-box {
		margin: 3.125vw auto -9.375vw;
	}
	.before-footer-2 section {
		margin: 0;
	}
	#footer-form h4 span:nth-last-of-type(1) {
		margin-top: 0;
	}	
	
	#main-404 .elementor-inner-section {
		margin-left: 50px;
	}
	#main-404 .elementor-element-7dc98e5 > .elementor-container {
		max-width: 1040px;
	}
	#main-404 .elementor-element-d8340cd > .elementor-container {
		max-width: 835px;
	}
	#main-404 .elementor-element-2ba4091 .elementor-image img {
		max-width: 255px;
	}
	#main-404 .elementor-element-d65da9b a.elementor-button, 
	#main-404 .elementor-element-d65da9b .elementor-button {
		border-width: 0 0 0 12px;
	}
	#main-404 .elementor-element-f19cfa2 .elementor-heading-title {
		font-size: 34px;
		line-height: 1;
	}
	#main-404 .elementor-element-5ed0daa .elementor-heading-title {
		font-size: 23px;
		line-height: 1.1;
	}
}

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

	.site-inner,
	.wrap {
		max-width: 1140px;
	}
	
	.site-header .wrap {
		max-width: 100%;
	}

	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-sidebar-content .content-sidebar-wrap {
		width: 920px;
	}

	.content,
	.site-header .widget-area {
		width: 800px;
	}

	.sidebar-content-sidebar .content,
	.sidebar-sidebar-content .content,
	.content-sidebar-sidebar .content {
		width: 580px;
	}

	.sidebar-primary {
		width: 300px;
	}
	
	.elementor-element-968b3af .elementor-col-20:nth-of-type(1) img {
		width: 4.97vw;
	}
	.elementor-element-968b3af .elementor-col-20:nth-of-type(2) img {
		width: 13.689vw;
	}
	.elementor-element-968b3af .elementor-col-20:nth-of-type(3) img {
		width: 10.98vw;
	}
	.elementor-element-968b3af .elementor-col-20:nth-of-type(4) img {
		width: 14.86vw;
	}
	.elementor-element-968b3af .elementor-col-20:nth-of-type(5) img {
		width: 7.68vw;
	}
	
}


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

	.site-inner,
	.wrap {
		max-width: 1024px;
	}

	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-sidebar-content .content-sidebar-wrap {
		width: 740px;
	}

	.content,
	.site-header .widget-area {
		width: 620px;
	}

	.sidebar-content-sidebar .content,
	.sidebar-sidebar-content .content,
	.content-sidebar-sidebar .content {
		width: 400px;
	}

	#home-sec-1 .elementor-element-968b3af .elementor-row {
		text-align: center;
		display: block;
	}	
	#home-sec-1 .elementor-col-20 {
		width: unset;
		display: inline-block;
		margin: 0 15px;
	}
	#jp-sec .elementor-element-a65ae10 {
		margin-top: 3vw;
		margin-bottom: -6.625vw;
	}	
	.footer-widgets .menu a {
		font-size: 16px;
	}
	#media_image-2 {
		max-width: 220px;
		margin: 0 auto;
	}
	#podcast-section #portfolio-loader--container button {
		padding: 18.75px 22.5px 26.25px;
		font-size: 18.75px;
	}	
	#podcast-section .portfolio-loader--container button {
		padding: 18.75px 22.5px 26.25px;
		font-size: 18.75px;
	}	
	#faq-sec-5 {
		padding: 8.78vw 0px 5vw 0px;
	}	
	
	#main-404 .elementor-inner-section {
		margin-left: 110px;
	}
	#main-404 .elementor-element-d8340cd > .elementor-container {
		max-width: 80%;
	}
	#main-404 .elementor-element-2ba4091 .elementor-image img {
		max-width: 220px;
	}
	#main-404 .elementor-element-d65da9b a.elementor-button, 
	#main-404 .elementor-element-d65da9b .elementor-button {
		border-width: 0 0 0 8px;
	}
	#main-404 .elementor-element-f19cfa2 .elementor-heading-title {
		font-size: 28px;
	}
	#main-404 .elementor-element-5ed0daa .elementor-heading-title {
		font-size: 21px;
	}
	#com-top p {
		font-size: 20px;
		max-width: 700px;
		margin: 0 auto 20px;
	}
	#com-sec-2 {
		padding: 20px 0px 170px 0px;
	}	
}

@media screen and (max-width: 1200px) and (min-width: 1024px) {
	#main-404 {
		padding: 70px 0 150px;
		background-size: 110%;
	}
	#main-404 .elementor-element-67dc572 {
		width: 55%;
	}
	#main-404 .elementor-element-67dc572 > .elementor-element-populated {
		padding: 65px 65px 100px 50px;
	}
	#main-404 .elementor-element-d65da9b a.elementor-button, 
	#main-404 .elementor-element-d65da9b .elementor-button {
		font-size: 25px;
		line-height: 65px;
		padding: 0px 20px 0px 15px;
	}
	#main-404 .elementor-element-2ba4091 > .elementor-widget-container {
		margin: 70px 0 0 0;
	}
	#main-404 .elementor-element-d65da9b > .elementor-widget-container {
		margin: 15px 25px 0px 0px;
	}
	.elementor-16 .elementor-element.elementor-element-5cc8f24 .elementor-main-swiper {
		width: unset !important;
	}
}

@media only screen and (max-width: 1023px) and (min-width: 861px ) {
	#any-problem-section .elementor-col-33:nth-of-type(1)::after, #any-problem-section .elementor-col-33:nth-of-type(2)::after {
		width: 1.48vw;
		height: 1.97vw;
		right: -1.45vw;
		top: 4.9vw;
	}
	.elementor-element-6c1c509 p {
		font-size: 20px;
	}
	#genius-community .widget-image-caption {
		font-size: 13px;
		line-height: 1;
	}		
}

@media only screen and (max-width: 1024px) {
	#mb-footer .elementor-element-d8576e4 {
		width: 100%;
		text-align: center;
	}
	#mb-footer  .elementor-element-d8576e4 > .elementor-element-populated {
		padding: 0;
	}	
	#mb-footer .elementor-container > .elementor-row {
		align-items: center;
	}
	#mb-footer .elementor-container > .elementor-row {
		justify-content: center;
		align-items: flex-start;
	}	
	#mb-footer .gform_footer.top_label {
		max-width: 300px;
		margin: 10px auto 0;
	}	
	#mb-footer .elementor-col-33:nth-of-type(1) {
		max-width: 286px;
		width: 100%;
	}
	#mb-footer .elementor-col-33:nth-of-type(2) {
		max-width: 213px;
		width: 100%;
	}
	.page-id-23 .elementor-widget-text-editor p {
		font-size: 16px;
		line-height: 1.6;
	}	
	#application-form h1, #application-form h3 {
		font-size: 24px;
		margin: 0 0 35px;
	}
	#application-form .gform_wrapper .gf_progressbar_wrapper {
		margin: 0 0 35px;
	}
	#application-form .gf_progressbar_title {
		font-size: 32px;
	}
	#application-form input[type="text"], #application-form select, #application-form .gfield_radio label, #application-form .gfield_radio input[type="radio"]  {
		height: 50px;
	}	
	#application-form.elementor-element-45a199d > .elementor-container {
		max-width: 700px;
	}
	#application-form h1 {
		max-width: 500px;
		margin: 0 auto 30px;
	}
	#application-form .gform_wrapper label {
		font-size: 16px;
	}	
}

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

	.site-inner,
	.wrap {
		max-width: 800px;
	}

	.content,
	.content-sidebar-sidebar .content,
	.content-sidebar-sidebar .content-sidebar-wrap,
	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3,
	.genesis-responsive-menu .genesis-nav-menu .sub-menu,
	.genesis-responsive-menu .genesis-nav-menu .sub-menu a,
	.sidebar-content-sidebar .content,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-primary,
	.sidebar-secondary,
	.sidebar-sidebar-content .content,
	.sidebar-sidebar-content .content-sidebar-wrap,
	.site-header .widget-area,
	.title-area {
		width: 100%;
	}

	.site-header .wrap {
		padding: 10px 25px;
	}

	.genesis-nav-menu li,
	.header-image .title-area,
	.site-header ul.genesis-nav-menu,
	.site-header .search-form {
		float: none;
	}

	.genesis-nav-menu,
	.site-description,
	.site-header .title-area,
	.site-header .widget-area,
	.site-title {
		text-align: center;
	}

	.site-header .search-form {
		margin: 16px auto;
	}

	/* ### Genesis Responsive Menus */

	.genesis-responsive-menu .wrap {
		padding: 0;
	}

	.genesis-responsive-menu {
		display: none;
		position: relative;
		clear: both;
		top: 15px;
		padding: 0 25px;
	}

	.genesis-skip-link .skip-link-hidden {
		display: none;
		visibility: hidden;
	}
	
	#genesis-mobile-nav-header {
		background-color: transparent;
		padding: 5px 0;
	}
	#genesis-mobile-nav-header:before {
		width: 40px;
		height: 40px;
	}

	.menu-toggle,
	.sub-menu-toggle {
		border-width: 0;
		color: #fff;
		display: block;
		margin: 0 auto;
		overflow: hidden;
		text-align: center;
		visibility: visible;
	}

	.menu-toggle:focus,
	.menu-toggle:hover,
	.sub-menu-toggle:focus,
	.sub-menu-toggle:hover {
		background-color: transparent;
	}

	.menu-toggle {
		line-height: 22px;
		position: relative;
		width: 100%;
		z-index: 1000;
		max-width: 70px;
		float: right;
		font-size: 0;
	}
	
	.menu-toggle::before {
		font-size: 40px !important;
		margin-right: 10px;
		text-rendering: auto;
	}

	.sub-menu-toggle {
		float: right;
		padding: 13px 10px;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 100;
	}

	.sub-menu .sub-menu-toggle {
		padding: 12px 10px;
	}

	.sub-menu-toggle::before {
		display: inline-block;
		text-rendering: auto;
		-webkit-transform: rotate( 0 );
		-ms-transform:     rotate( 0 );
		transform:         rotate( 0 );
		-webkit-transition: transform .25s ease-in-out;
		-ms-transition:     transform .25s ease-in-out;
		transition:         transform .25s ease-in-out;
	}

	.sub-menu-toggle.activated::before {
		-webkit-transform: rotate( 180deg );
		-ms-transform:     rotate( 180deg );
		transform:         rotate( 180deg );
	}

	.genesis-responsive-menu .genesis-nav-menu .menu-item {
		display: block;
		float: none;
		position: relative;
		text-align: left;
	}

	.genesis-responsive-menu .genesis-nav-menu .menu-item:focus,
	.genesis-responsive-menu .genesis-nav-menu .menu-item:hover {
		position: relative;
	}

	.genesis-responsive-menu .genesis-nav-menu .menu-item a {
		border: none;
		margin-bottom: 1px;
		padding: 8px 20px;
		width: 100%;
	}

	.genesis-responsive-menu .genesis-nav-menu .sub-menu {
		border: none;
	}

	.genesis-responsive-menu .genesis-nav-menu .menu-item > a:focus ul.sub-menu,
	.genesis-responsive-menu .genesis-nav-menu .menu-item > a:focus ul.sub-menu .sub-menu {
		left: 0;
		margin-left: 0;
	}

	.genesis-responsive-menu .genesis-nav-menu > .menu-item-has-children > a::after {
		content: none;
	}

	.genesis-responsive-menu .genesis-nav-menu .sub-menu {
		clear: both;
		display: none;
		margin: 0;
		opacity: 1;
		padding-left: 15px;
		position: static;
		width: 100%;
	}

	.genesis-responsive-menu .genesis-nav-menu .sub-menu .sub-menu {
		margin: 0;
	}
	.menu-left-container, .menu-right-container {
		display: none;
	}
	.site-inner, .wrap {
		max-width: 100%;
	}	
	.site-header .title-area {
		position: relative;
		float: left;
		max-width: 120px;
		z-index: 10;
	}
	.site-description {
		display: none;
	}
	.widget-area.header-widget-area {
		display: block;
		position: absolute;
		left: 0;
		z-index: 9;
	}	
	#menu-mobile {
		background-color: #ffffff;
		padding: 20px 0;
	}
	.nav-header {
		display: none;
	}
	
	/* Home Section 1 */
	#home-sec-1 .elementor-element-721cef1 > .elementor-widget-container {
		padding: 11vw 0px 0px 0px;
	}
	#genesis-content h2, #genius-community .elementor-element-f0e39d0 h3, #genius-community .elementor-element-f0e39d0 a {
		font-size: 25px;
		line-height: 1.1;
	}
	#home-sec-1 h3 {
		font-size: 18px;
	}
	#home-vid-btn .elementor-custom-embed-image-overlay::before {
		width: 110.6px;
		height: 81.9px;
		left: -120px;
		top: -35px;
	}
	#home-vid-btn .elementor-custom-embed-image-overlay {
		width: 8.28vw;
	}	
	#home-sec-1 .elementor-element-382c78e > .elementor-widget-container {
		padding: 50px 0 10px;
	}		
	
	/* Home Section 2 */
	#home-sec-2 {
		padding: 30px 25px 0;
	}
	#home-sec-2 .elementor-col-50 {
		width: 50%;
	}	
	#home-sec-2 p, #home-sec-2 li {
		font-size: 18px;
		line-height: 1.6;
	}	
	#bks-list ul::before {
		width: 40px;
		height: 215px;
		background-size: cover;
	}
	#home-sec-2 .elementor-element-4d389d6 > .elementor-widget-container {
		margin: 0;
	}
	#testimonial-box .elementor-widget:not(:last-child) {
		margin-bottom: 10px;
	}	
	#testimonial-box {
		max-width: 700px;
		margin: 0 auto;
	}
	#testimonial-box .elementor-column-wrap {
		min-height: 238px;
		padding: 35px 45px 0 70px;
	}
	#testimonial-box p {
		font-size: 16px;
		line-height: 1.5;
		margin: 0 0 15px;
	}
	#home-sec-2 #testimonial-box .elementor-author-box {
		margin-top: 10px;
	}	
	#testimonial-box .elementor-author-box__name {
		font-size: 18px;
	}
	
	#podcast-section .elementor-element-13ffd5e > .elementor-container,  #podcast-archive .elementor-element-162528fd > .elementor-container {
		max-width: 288px;
	}	
	.elementor-element-13ffd5e .elementor-col-33:nth-of-type(1) img, .elementor-element-162528fd .elementor-col-33:nth-of-type(1) img{
		width: 81px;
	}
	.elementor-element-13ffd5e .elementor-col-33:nth-of-type(2) img, .elementor-element-13ffd5e .elementor-col-33:nth-of-type(3) img, .elementor-element-162528fd .elementor-col-33:nth-of-type(2) img, .elementor-element-162528fd .elementor-col-33:nth-of-type(3) img  {
		width: 83px;
	}
	#podcast-section .filter-button-group button {
		font-size: 15.3px;
		line-height: 1.7;
		padding: 3.2px 12.8px;
	}	
	.elementor .line-separator img {
		max-width: 77px;
	}
	#podcast-section.elementor-element-812ccc2 > .elementor-container {
		max-width: 780px;
	}
	.pgw-content p {
		font-size: 12.8px;
		margin: 0 0 11.5px;
	}
	.pgw-content .lm-link {
		font-size: 11.5px;
	}
	#podcast-section .grid-item {
		min-height: 358px;
		margin: 0 8.9px 17.9px;
	}	
	.pgw-content {
		min-height: 204.8px;
		padding: 18.4px;		
	}	
	#why-tgn-sec > .elementor-column-gap-no {
		max-width: 832px;
	}
	#why-tgn-sec p {
		font-size: 17.9px;
		margin-bottom: 15.9px;
		line-height: 1.4;
	}
	#why-tgn-sec h2 {
		font-size: 25.6px;
	}	
	#why-tgn-sec h2 span {
		font-size: 20.4px;
	}	
	#why-tgn-sec .elementor-button-link {
		width: 182px;
		height: 42px;
		font-size: 18.5px;
	}	
	.elementor-section.elementor-section-boxed.elementor-element-04c33c7 > .elementor-container {
		max-width: 732px;
	}
	.before-footer-2 .elementor-col-50 img {
		max-width: 289px;
	}
	#jp-sec {
		padding: 70px 25px 0px;	
	}
	.elementor-element-b324297 h2 span {
		font-size: 22px;
		font-weight: 400;
	}
	#jp-sec .elementor-text-editor p {
		font-size: 20px;
		line-height: 1.4;
	}
	.elementor-element-1f88be2 p:nth-of-type(1) {
		max-width: 56vw;
	}
	.elementor-element-1f88be2 p:nth-of-type(2) {
		max-width: 58vw;
	}
	#jp-sec .elementor-image a img {
		max-width: 42vw;
	}
	#jp-sec .elementor-image a::after {
		width: 34vw;
		height: 22vw;
		right: 19vw;
		top: -18vw;
	}
	#genius-community .elementor-element-f0e39d0 a {
		max-width: 37.87vw;
		padding: 1.25vw 3vw 2vw;
		line-height: 4.875vw;
	}	
	#genius-community .elementor-element-f0e39d0 h3 {
		margin: 0 0 20px;
	}
	#genesis-content #genius-community .elementor-element-f0e39d0 a {
		font-size: 2.44vw;	
	}	
	#faq-sec-1 .elementor-element-033868f img , #arrow-img img  {
		max-width: 16px;
	}
	#faq-sec-1 h1 {
		font-size: 25.75px;
	}	
	#faq-sec-1 {
		padding: 160px 0px 25px 0px;
	}
	#faq-sec-2 h3, #faq-sec-3 h3, #faq-sec-4 h3, #faq-sec-5 h3, #faq-sec-6 h3, #faq-sec-7 h3 {
		font-size: 20px;
	}		
	
	#main-404 .elementor-element-2ba4091 .elementor-image img {
		max-width: 185px;
	}
	#main-404 .elementor-element-f19cfa2 .elementor-heading-title {
		font-size: 25px;
	}
	#main-404 .elementor-element-5ed0daa .elementor-heading-title {
		font-size: 19px;
	}
	#application-form::before {
		width: 20.82vw;
		height: 10.2vw;
	}
	#application-form::after {
		width: 20.03vw;
		height: 16.52vw;
	}	
}

@media only screen and (max-width: 960px) {
	#faq-sec-2 > .elementor-container, #faq-sec-4 > .elementor-container, #faq-sec-6 > .elementor-container, #faq-sec-5 > .elementor-container {
		max-width: 700px;
		width: 100%;
	}
	#faq-sec-3 .elementor-element-e9b672f {
		max-width: 430px;
		width: 100%;
	}
	#faq-sec-3 > .elementor-container {
		max-width: 760px;
		width: 100%;
	}	
	#faq-sec-7 > .elementor-container {
		max-width: 700px;
		width: 100%;		
	}
	#faq-sec-7 > .elementor-element-9a36e4d {
		max-width: 310px;
		width: 100%;		
	}
}

@media only screen and (max-width: 900px) {
	#main-404 .elementor-inner-section {
		margin-left: 55px;
	}
}

@media screen and (max-width: 900px) and (min-width: 768px) {
	#main-404 .elementor-element-ea500f9 {
		width: 185px;
	}
	#main-404 .elementor-element-67dc572 {
		width: 450px;
		margin-left: auto;
		margin-right: 20px;
	}
	#main-404 .elementor-element-2ba4091 > .elementor-widget-container {
		margin: 45px 0 0 0;
	}
	#main-404 .elementor-element-d65da9b > .elementor-widget-container {
		margin: 15px 25px 0 0;
	}
}

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

	body,
	body > div {
		font-size: 18px;
		font-size: 1.8rem;
	}

	.site-inner {
		padding: 5% 5% 0;
	}

	.wrap {
		padding-left: 5%;
		padding-right: 5%;
	}

	.after-entry,
	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings,
	.sidebar .widget {
		padding: 30px;
		margin-bottom: 5%;
	}

	.sidebar {
		margin-bottom: 5%;
	}

	.pagination {
		margin: 5% auto;
	}

	.archive-pagination li a {
		margin-bottom: 4px;
	}

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0;
		width: 100%;
	}
	#genesis-content h2, #genius-community .elementor-element-f0e39d0 h3, #genius-community .elementor-element-f0e39d0 a {
		font-size: 26px;
	}
	
	/* Home Section 2 */
	#home-sec-2 .elementor-col-50 {
		width: 100%;
		max-width: 700px;
		margin: 0 auto;
	}	
	.elementor-element-4993714 .elementor-col-50:nth-of-type(2)  {
		display: none;
	}
	/* .elementor-element-4993714 .elementor-col-50:nth-of-type(1) {
		-webkit-box-ordinal-group: 11;
		-webkit-order: 10;
		-ms-flex-order: 10;
		order: 10;
	}	
	.elementor-element-4993714 .elementor-col-50:nth-of-type(2) {
		-webkit-box-ordinal-group: 10;
		-webkit-order: 9;
		-ms-flex-order: 9;
		order: 9;
	}	*/
	#fmn-btn a {
		display: block;
		max-width: 300px;
		margin: 0 auto 30px;
	}	
	#fmn-btn a::after {
		display: none;
	}
	#home-sec-2.elementor-element-5c9eb90 {
		margin-bottom: -40px;
	}		
	#any-problem-section {
		padding: 150px 25px 40px;	
	}
	#any-problem-section > .elementor-column-gap-no {
		max-width: 700px;
		margin: 0 auto;
	}
	#any-problem-section .elementor-element-1b98b9c .elementor-container > .elementor-row {
		justify-content: center;
	}
	#any-problem-section p, #jp-sec .elementor-text-editor p {
		font-size: 18px;
		line-height: 1.4;
	}
	#any-problem-section .elementor-col-33:nth-of-type(1), #any-problem-section .elementor-col-33:nth-of-type(2), #any-problem-section .elementor-col-33:nth-of-type(3) {
		width: calc(50% - 40px);
		min-height: 200px;
		z-index: 2;
		margin: 0 10px 25px;
	}
	#any-problem-section .elementor-col-33:nth-of-type(1)::after, #any-problem-section .elementor-col-33:nth-of-type(2)::after	{
		display: none;
	}
	#any-problem-section::before {
		width: 20.3125vw;
		height: 44.53125vw;
	}
	#any-problem-section::after {
		width: 20.83vw;
		height: 44.58vw;
	}		
	#any-problem-section .elementor-col-33 > .elementor-column-wrap {
		background-size: 100% 100%;
	}	
	#any-problem-section .elementor-col-33:nth-of-type(3) {	
		float: none;
		margin: 0 auto;
	}
	#any-problem-section .elementor-element-1ba7820 h2 {
		max-width: 390px;
		display: inline-block;
	}
	#any-problem-section h4 {
		font-size: 24px;
	}	
	#genius-community .widget-image-caption {
		font-size: 14px;
		line-height: 1;
	}
	#footer-form .elementor-col-50:nth-of-type(1) {
		width: 40%;
	}
	#footer-form .elementor-col-50:nth-of-type(2) {
		width: 58%;
	}	
	#footer-form h4::before, #footer-form .gform_footer.top_label::before, #footer-form h4 br {
		display: none;
	}
	.sm-btn a {
		max-width: 48%;
	}
	.footer-widgets-5 {
		margin-top: 35px;
	}
	.footer-widgets {
		padding: 40px 0 30px;
	}
	.footer-widgets-5 section {
		margin-bottom: 10px;
	}
	.footer-widgets-5::before {
		margin-bottom: 35px;
	}
	#footer-form h4	{
		font-size: 16px;
		margin: 0 0 10px;
	}
	#footer-form h4	span:nth-last-of-type(1){
		display: block;
		margin-top: 10px;
	}
	#footer-form h4 strong, #footer-form .pen {
		font-size: 24px;
	}
	#footer-form .elementor-element-5ac6caf > .elementor-element-populated {
		padding: 20px 20px 10px;
		background-image: none;
		background-color: #579BEF;
	}	
	.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
		padding: 7px 10px !important;
		font-size: 16px !important;
	}
	#footer-form #gform_submit_button_1 {
		background-image: url(/wp-content/uploads/2019/04/form-btn-img.png);
		background-color: #ffb525;
		background-size: unset;
		background-position: center center;
		background-repeat: no-repeat;
		border-radius: 5px;
		padding: 0;
		height: 45px;
		margin: 0 0 10px;
	}
	.sm-btn {
		margin-top: 10px;
	}	
	#mb-footer .elementor-col-33:nth-of-type(1) {
		margin: 0 0 10px;
	}
	#faq-sec-3 {
		padding: 20px 0px;
	}
	#faq-sec-6 .elementor-element-0a7a877 > .elementor-element-populated {
		margin: 0;
	}	
	#apply-now-container > .elementor-column-wrap {
		background-size: 100% 100%;
	}	
	.elementor-element-8106582 p {
		margin: 0 0 10px;
	}
	#com-top p {
		font-size: 18px;
	}	
}

@media only screen and (max-width: 768px) {
	.site-header .title-area {
		max-width: 100px;
	}
	#home-sec-1.elementor-element.elementor-element-204f2d3 > .elementor-background-overlay {
		display: none;
	}
	#home-sec-1 .elementor-element-721cef1 > .elementor-widget-container {
		padding: 100px 0px 0px 0px;	
	}
	#home-sec-1 .elementor-col-20 {
		margin: 0 5px;
	}
	#testimonial-box .elementor-col-100 > .elementor-column-wrap {
		background-size: 100% 100%;
	}
	#testimonial-box  .elementor-author-box__avatar img {
		width: 80px;
	}
	#testimonial-box p {
		line-height: 1.3;
		font-family: "Source Sans Pro", Sans-serif;
	}	
	#podcast-section .grid-item {
		width: calc(50% - 28px);
	}
	#portfolio-grid {
		max-width: 640px;
		margin: 0 auto;
	}	
	.elementor-element-13ffd5e .elementor-col-33, .elementor-element-162528fd .elementor-col-33 { 
		width: calc(33.3%);
	}
	#podcast-section.elementor-element-812ccc2 {
		padding: 120px 20px 50px 20px;
	}
	#podcast-archive {
		padding: 0;
	}
	.page-id-25 #podcast-section {
		padding: 120px 20px 30px;
	}
	#why-tgn-sec {
		max-width: 640px;
		margin: 0 auto 50px;
	}	
	#why-tgn-sec .elementor-col-50 {
		width: 100%;
	}	
	#why-tgn-sec .elementor-col-50:nth-of-type(1) img {
		display: none;	
	}
	#why-tgn-sec .elementor-element-e8da954 > .elementor-element-populated {
		margin: 0;
	}	
	#exp-trigger {
		max-width: 182px;
		margin: 10px auto 0;
	}
	.before-footer-2 .elementor-col-50 {
		max-width: 50%;
	}	
	#jp-sec .elementor-col-100 > .elementor-element-populated {
		max-width: 640px;
		margin: 0 auto;
	}	
	#jp-sec {
		background-image: none;
		background-color: #ECECEC;
	}
	#jp-sec {
		padding: 30px 25px;
		margin: 0 0 40px;
	}	
	#jp-sec .elementor-element-a65ae10 {
		margin-top: 25px;
		margin-bottom: 0;
	}	
	#jp-sec #testimonial-box .elementor-column-wrap {
		padding: 35px 45px 40px 70px;
	}	
	#jp-sec h2, #jp-sec .line-separator .elementor-image {
		text-align: center;	
	}
	#jp-sec .elementor-element-b324297 {
		margin: 0 0 5px;
	}
	.elementor-element-1f88be2 p:nth-of-type(1), .elementor-element-1f88be2 p:nth-of-type(2) {
		max-width: 100%;
	}
	#jp-sec .elementor-image a img, .elementor-element-a505b2f {
		max-width: 320px;
	}	
	#jp-sec .elementor-image a::after {
		width: 100px;
		height: 70px;
		right: -80px;
		top: -30px;
		background-position: top right;
	}
	#footer-form h4 strong, #footer-form .pen {
		font-size: 20px;
	}
	#faq-sec-2 .elementor-element-a310aed {
		width: 100%;
	}
	#faq-sec-2 .elementor-element-ec07ba4 > .elementor-widget-container {
		margin: 0;
	}
	#faq-sec-2 .elementor-element-ec07ba4 img {
		width: 100%;
		height: unset;
		max-width: 300px;
	}
	#faq-sec-2 .elementor-col-50:nth-of-type(2) {
		width: 100%;
		margin: 0 0 30px;
		text-align: center;
	}
	#faq-sec-4::before {
		width: 26.01vw;
		height: 23.46vw;
	}	
	#faq-sec-4::after {
		width: 9.89vw;
		height: 22.70vw;
	}	
	#faq-sec-3 .elementor-col-50, #faq-sec-4 .elementor-col-50, #faq-sec-5 .elementor-col-50, #faq-sec-6 .elementor-col-50, #faq-sec-7 .elementor-col-50 {
		width: 100%;
		text-align: center;
	}
	#faq-sec-4 .elementor-col-50:nth-of-type(2) {
		margin: 0 0 10.41vw;
	}
	#btn-left, #btn-right {
		float: none !important;
	}	
	#btn-left {
		max-width: 250px !important;
	}
	#btn-right {
		max-width: 200px !important;
	}	
	#faq-sec-2 .elementor-widget-wrap, #faq-sec-3 .elementor-widget-wrap, #faq-sec-4 .elementor-widget-wrap, #faq-sec-5 .elementor-widget-wrap, #faq-sec-6 .elementor-widget-wrap, #faq-sec-7 .elementor-widget-wrap     {
		align-items: center;
		justify-content: center;		
	}
	#faq-sec-3::after {
		right: unset;
		left: 30.59vw;
	}	
	#faq-sec-3 .elementor-col-50:nth-of-type(1) {
		margin: 0 0 32.5vw;
	}	
	#faq-sec-3 .elementor-element-e9b672f {
		max-width: 100%;
	}	
	#faq-sec-5 .elementor-col-50:nth-of-type(1) {
		-webkit-box-ordinal-group: 11;
		-webkit-order: 10;
		-ms-flex-order: 10;
		order: 10;
	}
	#faq-sec-5 .elementor-col-50:nth-of-type(2) {
		-webkit-box-ordinal-group: 10;
		-webkit-order: 9;
		-ms-flex-order: 9;
		order: 9;
	}
	#faq-sec-5 .elementor-element-c2699e6 > .elementor-widget-container {
		margin: 30px auto;
	}
	#faq-sec-7 .elementor-element-9a36e4d > .elementor-widget-container {
		margin: 25px 0 0 -3%;
	}	
	#faq-sec-7 .elementor-element-9a36e4d img {
		max-width: 300px;
	}
}

@media only screen and (max-width: 768px) and (min-width: 641px) {
	#home-sec-1 h3 {
		font-size: 16px;
	}	
	#genesis-content h2, #genius-community .elementor-element-f0e39d0 h3, #genius-community .elementor-element-f0e39d0 a {
		font-size: 24px;
	}
	#genius-community .elementor-col-33:nth-of-type(2) {
		width: 66.68% !important;
	}
}


@media only screen and (max-width: 767px) {
	#faq-sec-2::after {
		width: 13.22vw;
		height: 25.57vw;
	}	
	#faq-sec-3::after {
		width: 38.38vw;
		height: 35vw;
	}
	#faq-sec-6::before {
		width: 14.68vw;
		height: 19.06vw;
	}	
	#faq-sec-6 .elementor-element-03b7195 img {
		max-width: 109px;
	}
	#faq-sec-5 .elementor-element-c2699e6 img {
		max-width: 243px;
	}	
	#faq-sec-5 {
		padding: 70px 0px 20px 0px;
	}
	#faq-sec-6 .elementor-element-cbffd88 {
		margin: 0;
	}	
	
	#main-404 .elementor-inner-section {
		margin-left: 0;
	}
	#main-404 .elementor-element-67dc572 {
		max-width: 485px;
		margin: auto;
	}
	#application-form.elementor-element-45a199d > .elementor-container {
		max-width: 85%;
	}
	.page-2 #application-form .gform_page_footer::before, .page-2 #application-form .gform_page_footer::after {
		display: none;
	}
	#application-form .four-rows > ul li {
    	width: calc(100% / 2 - 20px);	
	}
	.page-2 #application-form input[type="submit"], #application-form input[type="button"] {
		font-size: 24px;
	}
	#jp-sec .elementor-image a::after{
		display: none !important;
	}	
	.bio-popup .dialog-widget-content {		
		padding: 2rem;		
	}
}


@media only screen and (max-width: 640px) {
	#home-sec-1 br {
		display: none;
	}
	#home-sec-1 .elementor-element-150b801 {
		max-width: 80%;
		margin: 0 auto;
	}
	#home-sec-1 .elementor-element-721cef1 > .elementor-widget-container {
		max-width: 80%;
		margin: 0 auto;		
	}
	#home-sec-1.elementor-element-204f2d3 > .elementor-shape-bottom svg {
		height: 30px;
	}	
	#home-sec-1 .elementor-element.elementor-element-968b3af {
		padding: 0px 0px 40px 0px;
	}
	#genesis-content h2, #genius-community .elementor-element-f0e39d0 h3, #genius-community .elementor-element-f0e39d0 a {
		font-size: 20px;
		line-height: 1.2;
	}
	#any-problem-section .elementor-element-1ba7820 h2	{
		max-width: 250px;
	}
	.elementor-element-b324297 h2 span {
		font-size: 20px;
	}	
	#home-sec-2 {
		padding: 30px 10px 0;
	}	
	#jp-sec {
		padding: 30px 10px;
	}
	#genius-community.hide .elementor-col-33 {
		display: none;
	}
	#genius-community .elementor-col-16 {
		width: calc(100% / 3);
	}	
	.gc-title-mobile {
		display: block !important;
	}
	.gc-title-mobile h2 {
		max-width: 200px;
		margin: 0 auto !important;
	}
	#footer-form .elementor-element-5ac6caf .elementor-column-wrap {
		margin-left: 0;
	}	
	#footer-form .elementor-col-50:nth-of-type(1), #footer-form .elementor-col-50:nth-of-type(2) {
		width: 100%;
		max-width: 420px;
		margin: 0 auto;
	}	
	#footer-form .gform_body {
		float: none;
	}
	#footer-form .gform_wrapper .gform_footer {
		margin: 0;
	}
	#faq-sec-4 {
		padding: 15px 0px 50px 0px;
	}
	#faq-sec-6, #faq-sec-7 {
		padding: 30px 0px 0px 0px;
	}	
	
	#main-404 {
		background-image: url(/wp-content/uploads/2019/05/gn-404-bg-sm.jpg);
		padding: 40px 0 38%;
	}
	#main-404 .elementor-element-67dc572 > .elementor-element-populated {
		background-image: url(/wp-content/uploads/2019/05/gn-404-cloud-no-tail.png);
		padding: 40px 40px 60px;
	}
	#main-404 .elementor-element-2ba4091 .elementor-image img {
		max-width: 150px;
	}
	#main-404 .elementor-element-f19cfa2 {
		margin-bottom: 10px;
	}
	#main-404 .elementor-element-f19cfa2 .elementor-heading-title {
		font-size: 22px;
	}
	#main-404 .elementor-element-5ed0daa .elementor-heading-title {
		font-size: 18px;
	}
	#main-404 .elementor-element-67dc572 {
		max-width: 420px;
	}
	#main-404 .elementor-element-d65da9b > .elementor-widget-container {
		margin: 30px 0 0 0;
	}
	#main-404 .elementor-element-d8340cd > .elementor-container {
		max-width: 95%;
		padding: 0 15px;
	}
	#main-404 .elementor-element-d65da9b > .elementor-widget-container {
		margin: 0;
		text-align: center;
	}
	#main-404 .elementor-element-d65da9b a.elementor-button, 
	#main-404 .elementor-element-d65da9b .elementor-button {
		border-left-width: 5px !important;
		font-size: 20px;
		line-height: 50px;
	}
	#application-form .gf_list_5col li, #application-form .gf_list_2col .gfield_radio li {
		width: calc(100% / 5 );
	}	
	.fb-page {
	    width: 100%;
	    overflow: hidden;
	}
}

@media only screen and (max-width: 640px) and (min-width: 581px) {
	#genesis-content h2, #genius-community .elementor-element-f0e39d0 h3, #genius-community .elementor-element-f0e39d0 a {
		font-size: 20px;
	}		
	#home-sec-1 .elementor-element-721cef1 > .elementor-widget-container {
		padding: 90px 0px 0px 0px;
	}
	#home-sec-1 .elementor-col-20 {
		margin: 0;
	}
	#home-vid-btn .elementor-custom-embed-image-overlay {
		width: 50px;
	}	
	.before-footer-2 .elementor-col-50 img {
		max-width: 250px;
	}	
}

@media only screen and (max-width: 580px) {
	#home-sec-1 .elementor-element-150b801 {
		max-width: 90%;
		margin: 0 auto;
	}
	#home-sec-1 .elementor-element-721cef1 > .elementor-widget-container {
		max-width: 90%;
		margin: 0 auto;		
	}
	#home-sec-1 .elementor-col-20 > .elementor-element-populated {
		padding: 0;
	}	
	.elementor-element-968b3af .elementor-col-20:nth-of-type(1) img {
		width: 28.8px;
	}
	.elementor-element-968b3af .elementor-col-20:nth-of-type(2) img {
		width: 79.3px;
	}
	.elementor-element-968b3af .elementor-col-20:nth-of-type(3) img {
		width: 63.6px;
	}
	.elementor-element-968b3af .elementor-col-20:nth-of-type(4) img {
		width: 86.1px;
	}
	.elementor-element-968b3af .elementor-col-20:nth-of-type(5) img {
		width: 44.6px;
	}
	#home-sec-1 .elementor-element-721cef1 > .elementor-widget-container {
		padding: 80px 0px 0px 0px;
	}	
	#home-vid-btn .elementor-custom-embed-image-overlay {
		width: 40px;
	}
	#bks-list ul {
		margin-left: 0;
	}	
	#bks-list ul::before {
		display: none;
	}
	#bks-list li {
		position: relative;
		padding-left: 25px;
	}	
	#bks-list li::before {
		content: "";
		display: block;
		background-image: url(/wp-content/uploads/2019/04/com-list-img.png);
		background-size: cover;
		width: 15px;
		height: 16px;
		position: absolute;
		left: 0;
		top: 8px;
	}	
	#testimonial-box .elementor-author-box__name {
		font-size: 16px;
	}
	#testimonial-box .elementor-author-box {
		display: block;
		text-align: center;
		width: 200px;
		margin: 0 auto 25px;
	}
	#testimonial-box .elementor-author-box__avatar {
		margin: 0;
	}
	#testimonial-box .elementor-col-100 > .elementor-column-wrap {
		background-size: 100% 100%;
		min-height: 100%;
		padding: 45px 45px 25px;
		background-image: url(/wp-content/uploads/2019/04/community-testimonial-bg1.png);
	}
	#podcast-section .grid-item {
		width: calc(100% - 28px);
	}
	#portfolio-grid {
		max-width: 360px;
		margin: 0 auto;
	}
	#portfolio-grid .grid-item:nth-of-type(4), #portfolio-grid .grid-item:nth-of-type(5), #portfolio-grid .grid-item:nth-of-type(6) {	
		display: none;
	}
	.page #podcast-section .line-separator {
		margin-bottom: 15px;
	}
	.before-footer-2 .elementor-col-50 img {
		max-width: 220px;
	}
	#any-problem-section .elementor-col-33:nth-of-type(1), #any-problem-section .elementor-col-33:nth-of-type(2), #any-problem-section .elementor-col-33:nth-of-type(3) {
		min-height: 150px;
	}	
	#any-problem-section .elementor-col-33 p {
		font-size: 16px;
	}
	#any-problem-section .elementor-col-33:nth-of-type(1), #any-problem-section .elementor-col-33:nth-of-type(2), #any-problem-section .elementor-col-33:nth-of-type(3) {
		width: 100%;
		max-width: 250px;
	}	
	#any-problem-section .elementor-col-33:nth-of-type(1)::after, #any-problem-section .elementor-col-33:nth-of-type(2)::after {
		display: block;
		content: "";
		width: 20px;
		height: 17px;
		background-image: url(/wp-content/uploads/2019/04/arrow-bottom1.png);
		background-size: cover;
		position: absolute;
		left: 46%;
		top: unset;
		bottom: -14px;
		right: unset;
	}
	#podcast-section #portfolio-loader--container button {
		font-size: 16px;
	}	
	#podcast-section br {
		display: none;
	}	
	#mb-footer .elementor-col-33:nth-of-type(2) {
		max-width: 291px;
	}
	#mb-footer .elementor-col-33:nth-of-type(2) {
		max-width: 300px;
	}
	#mb-footer .elementor-element-20896fd > .elementor-widget-container {
		margin: 0px 0px 0px 0px;
		padding: 0;
	}
	#mb-footer .gform_wrapper .gfield_checkbox li label, #mb-footer .gform_wrapper .gfield_radio li label, #mb-footer .gform_wrapper ul.gfield_checkbox li label,#mb-footer .gform_wrapper ul.gfield_radio li label {
	 max-width: 100%;
		width: 100%;
	}	
	#faq-sec-1 h1 {
		font-size: 24px;
		max-width: 300px;
		margin: 0 auto;
		line-height: 1.2;
	}
	#faq-sec-1 {
		padding: 130px 0px 25px 0px;
	}	
	#faq-sec-1 .elementor-element-033868f img , #arrow-img img  {
		max-width: 12px;
	}	
	#faq-sec-1 .elementor-element-3ef91ca.elementor-widget-heading {
		margin: 0;
	}	
}

@media only screen and (max-width: 580px) and (min-width: 421px) {
	#genesis-content h2, #genius-community .elementor-element-f0e39d0 h3, #genius-community .elementor-element-f0e39d0 a {
		font-size: 20px;
	}
	#mb-footer .elementor-col-33:nth-of-type(1) {
		max-width: 286px;
	}
}
@media only screen and (max-width: 555px) {
	#btn-right {
		max-width: 180px !important;
		right: 0 !important;
		top: 0 !important;
	}
	#btn-right, #btn-left {
		margin: 0 10px 15px;
	}
}
@media only screen and (max-width: 480px) {
	.before-footer-2 .elementor-col-50 img {
		max-width: 200px;
	}
	#jp-sec .elementor-image a img, .elementor-element-a505b2f {
		max-width: 300px;
	}	
	#jp-sec h2 br {
		display: none;
	}
	#jp-sec {
		padding: 30px 10px;
	}
	#contact-sec-4.elementor-element.elementor-element-3b2f70b {
		margin-top: -20px;
		padding: 30px 5px 50px 5px;
		background-image: none !important;
		background-color: #579BEF;
		border-top: 1px solid #000;
	}	
	#contact-sec-5.elementor-element.elementor-element-ef39d05 {
		margin-top: 0;
		margin-bottom: -60px;
		padding: 10px 10px 40px;
		background-image: none !important;
		background-color: #fff;
	}
	#application-form .gform_page_footer::before, .page-2 #application-form .gform_page_footer::after{
		display: none;
	}
	#application-form .gform_page_footer {
		max-width: 216px;
		float: none;
		margin: 0 auto;
	}
	#application-form h1, #application-form h3 {
		font-size: 20px;
	}	
	#application-form .four-rows > ul li {
    	width: 100% !important;	
	}	
	#application-form.elementor-element-45a199d > .elementor-container {
		max-width: 90%;
	}	
	#com-top h2 {
		max-width: 250px;
		margin: 0 auto;
	}
	#com-top p {
		padding: 0 15px;
	}	
	#sb_instagram .sbi_item:last-child {
	    display: none !important;
	}
	#sb_instagram .sbi_item {
	    width: 50% !important;
	    display: -webkit-box !important;
	    display: -webkit-flex !important;
	    display: -moz-box !important;
	    display: -ms-flexbox !important;
	    display: flex !important;
	    -webkit-box-align: center;
	    -webkit-align-items: center;
	       -moz-box-align: center;
	        -ms-flex-align: center;
	            align-items: center;
	    -webkit-box-pack: center;
	    -webkit-justify-content: center;
	       -moz-box-pack: center;
	        -ms-flex-pack: center;
	            justify-content: center;
	}
	#sb_instagram .sbi_photo {
	    height: initial !important;
	}
	#sb_instagram .sbi_photo img {
	    display: block !important;
	}
	#sb_instagram .sbi_photo_wrap {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
	    display: flex;
	}
	#sb_instagram #sbi_images {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
	    display: flex;
	    -webkit-flex-wrap: wrap;
	        -ms-flex-wrap: wrap;
	            flex-wrap: wrap;
	}
}
@media only screen and (max-width: 420px) {
	#genesis-content h2, #genius-community .elementor-element-f0e39d0 h3, #genius-community .elementor-element-f0e39d0 a {
		font-size: 20px;
	}
	#home-sec-1 .elementor-col-20 {
		margin: 0 1px;
	}
	.before-footer-2 .elementor-col-50 {
		max-width: 100%;
	}
	.before-footer-2 .elementor-col-50 img {
		max-width: 250px;
	}
	#any-problem-section .elementor-col-33:nth-of-type(1), #any-problem-section .elementor-col-33:nth-of-type(2), #any-problem-section .elementor-col-33:nth-of-type(3) {
		min-height: 120px;
	}
	#any-problem-section::before, #any-problem-section::after {
		width: 17vw;
		height: 40vw;
	}	
	#jp-sec .elementor-image a img, .elementor-element-a505b2f {
		max-width: 280px;
	}
	#jp-sec .elementor-image a::after {
		width: 80px;
		height: 60px;
		right: -55px;
		top: -28px;
		background-position: top right;
	}
	#footer-form h4 strong {
		font-size: 16px !important;
	}
	#footer-form h4 {
		font-size: 15px;
	}	
	#footer-form .elementor-element-5ac6caf > .elementor-element-populated {
		padding: 20px 15px 10px;
	}
	#faq-sec-7 {
		margin-bottom: -50px;
	}	
	.page-id-23 .elementor-element.elementor-element-04c33c7 {
		padding: 150px 0px 0px 0px !important;
	}	
	#faq-sec-5 {
		padding: 80px 0px 0 0px;
	}	
	
	#main-404 .elementor-element-67dc572 > .elementor-element-populated {
		background-image: none;
		padding: 10px 15px 25px;
		text-align: center;
	}
	.page-id-671 .elementor-section-boxed.elementor-top-section {
		padding-left: 25px !important;
		padding-right: 25px !important;
	}
}

/* # Print Styles
---------------------------------------------------------------------------------------------------- */

@media print {

	*,
	*::before,
	*::after {
		background: transparent !important;
		box-shadow: none !important;
		color: #000 !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]::after {
		content: " (" attr(href) ")";
	}

	abbr[title]::after {
		content: " (" attr(title) ")";
	}

	a[href^="javascript:"]::after,
	a[href^="#"]::after,
	.site-title > a::after {
		content: "";
	}

	thead {
		display: table-header-group;
	}

	img,
	tr {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 2cm 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	blockquote,
	pre {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	.content,
	.content-sidebar {
		width: 100%;
	}

	button,
	input,
	select,
	textarea,
	.breadcrumb,
	.comment-edit-link,
	.comment-form,
	.comment-list .reply a,
	.comment-reply-title,
	.edit-link,
	.entry-comments-link,
	.entry-footer,
	.genesis-box,
	.header-widget-area,
	.hidden-print,
	.home-top,
	.nav-primary,
	.nav-secondary,
	.post-edit-link,
	.sidebar {
		display: none !important;
	}

	.title-area {
		text-align: center;
		width: 100%;
	}

	.site-title > a {
		margin: 0;
		text-decoration: none;
		text-indent: 0;
	}

	.site-inner {
		padding-top: 0;
		position: relative;
		top: -100px;
	}

	.author-box {
		margin-bottom: 0;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		orphans: 3;
		page-break-after: avoid;
		page-break-inside: avoid;
		widows: 3;
	}


	img {
		page-break-after: avoid;
		page-break-inside: avoid;
	}

	blockquote,
	pre,
	table {
		page-break-inside: avoid;
	}

	dl,
	ol,
	ul {
		page-break-before: avoid;
	}

}