.highlight-blue/* === HTML === */

*{
	box-sizing: border-box;
	-webkit-tap-highlight-color:  rgba(255, 255, 255, 0); 
}

html {
	overflow-x:hidden;
	color:#1b1b1b;
}

/* === Body === */

body {
	font-family: 'Poppins', sans-serif;
	font-size:13px;
	line-height:20px;
	margin:0px;
	color:#1b1b1b;
	overflow-x:hidden;
}

p {
	font-size: 15px;
	line-height: 1.8;
	letter-spacing: .01em;
    word-spacing: .02em;
	color:#252323;
	margin: 10px 0 15px 0;
}

p strong, b {
	font-weight:600;
}

.user .avatar {
	float: left;
    margin: 0 20px 10px 0;
}

/* === Links === */

a {
	text-decoration:none;
	outline:none;
	color:#195093;
	transition: all 250ms ease-in-out;
}

a:hover {
	color:#0361bd;
}

/* === Headers === */

h1 {
	font-size: 32px;
	line-height: 38px;
	letter-spacing: 0.03em;
	color:#161616;
	margin:10px 0;
	font-weight:400;
}


h2 {
    font-size: 24px;
    line-height: 36px;
    padding: 15px 0;
    font-weight: 700;
    letter-spacing: 2px;
    color: #141414;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.content-title h2 {
    font-size: 26px;
    line-height: 40px;
    padding: 15px 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #141414;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display:inline-block;
}

.content-title h2::after {
    position: absolute;
    content: "";
    bottom: 16px;
    left: 0;
    height: 13px;
    width: 100%;
    z-index: -1;
    background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#195093), to(#20a049));
    background-image: -webkit-linear-gradient(left, #195093, #20a049);
    background-image: -moz-linear-gradient(left, #195093, #20a049);
    background-image: -o-linear-gradient(left, #195093, #20a049);
    opacity: 0.3;
}


.h2-title-center {
    text-align:center;
    padding:25px 0;
}

.page-template-landing h2 {
	font-family: 'Poppins', sans-serif;
}

.page-template-landing .title-center h2 {
	text-align: center;
	font-weight: 900;
	display: block;
	font-size: 32px;
	line-height: 50px;
	margin-bottom: 60px;
}

h3 {
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0.03em;
	margin:10px 0;
	font-weight:600;
	color:#0a0a0a;
}

.singular-post h3 {
	margin:15px 0 20px 0;
}

h4,h5,h6 {
	font-size:14px;
	line-height:20px;
	margin:10px 0;
	font-weight:600;
	color:#0a0a0a;
}

hr {
	margin: 10px 0;
}

pre {
	overflow: scroll;
	padding: 0 20px 20px 20px;
}


ul {
	margin:0;
}

#main ul {
	margin-bottom:15px;
}

#main li {
	font-size:14px;
	line-height:26px;
	margin:10px 0;
	color:#5d5959;
}

.singular-post #main article li {
	color:#0a0a0a;
	padding-left:10px;
}

.singular-post #main article ol,
.singular-post #main article ul {
	padding-left:20px;
}

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

.singular-post #main article li p {
	font-size:14px;
	font-weight:400;
}

.singular-post blockquote {
	margin-top:25px;
}

.singular-post blockquote p {
	margin-bottom:0;
	font-style: italic;
	font-size:13px
}

/**
 * Images
 * --------------------------------------------------------------------------- */
figure {
	display: block;
	text-align: center;
	margin: 0 auto 15px auto;
	max-width:100%;
}

figure img {
	text-align: center;
	margin: 0 auto;
}

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

/**
 * Header
 * --------------------------------------------------------------------------- */

 #header {
	 background-color: #144179;
	 color: #B0B0B1;
	 /* box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1); */
	 width:100%;
	 min-height:60px;
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
 	}

#logo-container {
	z-index: 99;
	padding: 10px 10px;
	width: 200px;

}

#logo-container .mobile {
	display:none;
}

/**
 * Menus
 * --------------------------------------------------------------------------- */
 
/* ====== Primary Menu ====== */

#menu-primary {
	float: right;
	z-index: 99997;
	font-family: 'Poppins', sans-serif;
	margin-right: 60px;
}

#menu-primary li {
	float:left;
	list-style-type: none;
	padding:0 6px;
}

#menu-primary #menu-primary-items>li {
	position:relative;
}

#menu-primary li.current-menu-item a {
	color: #fefefe;
}

#menu-primary li a {
	color: #eaeaea;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 60px;
	letter-spacing: 1px;
	padding: 0 10px !important;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out; /* IE10 is actually unprefixed */
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	display:inline-block;
}

#menu-primary li a:hover {
	color: #fefefe;
}

#menu-primary li a::before {
	content: '';
	position: absolute;
	background: #20a049;
	top: 0;
	left: 0;
	width: 0;
	height: 2px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

#menu-primary li.current-menu-item>a::before, #menu-primary li a:hover::before {
  width: 100%;
}

#menu-primary ul ul {
	/*sub menu */
	width: 260px;
	background-color: #195093;
	position:absolute;
	padding:0;
	opacity:0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	z-index: -1;
	visibility: hidden;
}

#menu-primary ul li:last-child ul {
	right:0;
}

#menu-primary #menu-primary-items li:hover ul {
	opacity:1;
	z-index:9997;
	visibility:visible;
}

#menu-primary ul ul li {
	/*sub menu */
	width:100%;
	position:relative;
}

#menu-primary ul ul li a {
	/*sub menu */
	width:100%;
	line-height: 20px;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	padding: 12px !important;
	font-size: 12px;
	background-color: #195093;
}

/* ====== PAGES ====== */

.three-col-info-box-row .fl-module-content {
	padding:0 15px;
}


.section-title {
    margin: 0px 0 15px 0;
    text-align: center;
}

.section-title h2 {
    margin: 10px 0 5px 0;
    font-weight: 700;
}

.section-title p {
    max-width:700px;
    margin: 0 auto 15px auto;
    font-size: 15px;
}

.three-col-info-box-row .fl-col-group-equal-height .fl-col-content{
    border: 6px solid #f6f6f6;
    padding: 30px 10px 20px;
    margin: 0 15px 10px;
}

.content-info-box h3 {
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.content-info-box p, .content-info-box-img p {
    font-size: 13px !important;
    line-height: 22px !important;
    letter-spacing: 0.04em;
}

.content-info-box a:hover, .content-info-box a:focus {
    color: #20a049;
}

.content-info-box-img .uabb-image-content img {
    box-shadow: 2px 2px 5px rgba(0,0,0,0.35) !important;
}

.content-info-box-img h3 {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 24px;
    font-size: 13px;
    margin-bottom: 5px !important;
}

.content-info-box-img .uabb-infobox-text-wrap {
    border-bottom: 1px solid rgba(51, 51, 51, 0.11);
    border-top: 1px solid #333;
    padding: 6px 0;
    margin-bottom: 20px;
}

.content-info-box-img span.highlight-green {
    margin-bottom: 15px;
}

.faqs-acc p {
    color: #555 !important;
    font-size: 13px !important;
    line-height: 24px !important;
}

.fl-module-info-banner img {
    height: 100% !important;
	width: auto !important;
}


/* ====== POSTS ====== */

.singular-post main, .archive main, .blog main, .page-template-sidebar main  {
	width: 72.5%;
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
	background: #fefefe;
	border-radius:2px;
	text-align:left;
}

.singular-post article .entry-content {
	padding: 0 25px 0px;
}

main {
	background:#ffffff;
}

.page-template-fullwidth main, .error-404 main {
	vertical-align:top;
	padding: 15px;
	margin: 0 5px;
	border-radius:1px;
}

.singular-post aside, .archive aside, .blog aside, .page-template-sidebar aside {
	width:24%;
	display:inline-block;
	margin: 0 5px;
}

.singular-post .entry-header, .error-404 .entry-header {
	padding: 15px 25px;
	height:auto;
	color:#161616;
}

.singular-post .entry-title {
	text-align:left;
	color: #161616;
	font-size:36px;
	padding-left: 0;
	letter-spacing: 0.04em;
	font-weight:700;
}

.singular-post h2::after {
	background: transparent;
}

.singular-post h2 {
	padding: 15px 0 0;
	display: block;
	text-align: left;
	text-transform: capitalize;
	letter-spacing: 1px;
	font-size: 24px;
	line-height: 1.4;
	font-weight: 700;
	margin-bottom: 20px;
}

.error-404 .entry-title {
	color: #20a049;
    font-size: 100px;
    text-align: center;
	font-weight: bold;
	margin-top: 50px;
	margin-bottom: 50px;
}
.error-content{
	text-align: center;
	font-size: 50px;
}

.error-content-2{
	font-size: 18px;
    text-align: center;
    max-width: 500px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}
.container-bu{
	margin: auto;
	text-align: center;
}

.container-bu a{
	color: #ffffff;
}
.container-bu a:hover{
	color: #20a049;
}

.bu-error{
	padding: 8px 40px;
    background: #20a049;
	display: inline-block;
	border: 2px solid #20a049;
} 

.bu-error:hover{
	background: unset;

}

.error-404 .entry-content{
	margin-bottom: 50px;
}
.logo-tn{
	text-align: center;
}

/*.singular-post #container, .archive #container, .blog #container, .page-template-sidebar #container, .page-template-fullwidth #container, .page-template-home #container,
.error-404 #container {
	background:url('/wp-content/uploads/2017/03/grunge_wall.png');
	background-repeat:repeat;
}*/

.singular-post #main {
	max-width:1100px;
	margin: 20px auto 25px;
}

.singular-post #main article figcaption {
	font-size: 13px;
	font-weight: 400;
}

.singular-post footer.entry-footer, .singular-post div.loop-nav {
	padding: 5px 25px;
	font-size: 14px;
    line-height: 20px;
}

.singular-post div.loop-nav {
	padding-bottom: 20px;
}

.singular-post footer.entry-footer span.entry-terms.category,
.singular-post footer.entry-footer span.entry-terms.post_tag,
.singular-post div.loop-nav .prev,
.singular-post div.loop-nav .next {
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 0.05em;
	color: #222;
}

.singular-post footer.entry-footer a,
.singular-post footer.entry-footer span.entry-terms.post_tag a,
.singular-post div.loop-nav .prev a,
.singular-post div.loop-nav .next a {
	font-size: 13px;
	text-transform: capitalize;
}

.singular-post .abh_tab_content {
	border-top: 2px solid #dedede !important;
	border-bottom: 1px solid #dedede !important;
}

.singular-post .abh_tab_content .abh_image img {
	border-image: linear-gradient(to left,#20a049 0,#195093 100%) 1 1 1 1 !important;
}

.singular-post .abh_tab_content .abh_text .abh_job span {
	text-transform: uppercase;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: 0.05em;
	color: #0a0a0a;
	font-size: 11px!important;
}

.singular-post .abh_tab_content .abh_text .abh_description {
	padding-top: 8px !important;
	line-height: 20px;
	letter-spacing: 0.02em;
}

.archive #main, .blog #main, .page-template-sidebar #main {
	max-width:1400px;
	margin:10px auto 15px;
	text-align:center;
}

.page-template-fullwidth #main {
	max-width:1400px;
	margin:10px auto;
}

#sidebar-page-home {
	padding:0;
	position:absolute;
}

.error-404 #main {
	max-width:1100px;
	margin:10px auto;
}

.singular-post .entry-byline {
	margin: 5px 0;
	text-align:left;
	font-size: 13px;
	color: #6f6f6f;
	letter-spacing: 0.03em;
}

.singular-post main time {
	color:#161616;
}

.singular-post div#ez-toc-container ul li {
	font-size:15px;
}

/* === Single post navigation (between different posts) === */

.loop-nav {
	margin:5px 0;
}

.loop-nav div {
	width:49.5%;
	display:inline-block;
	vertical-align:top;
}

.loop-nav .next {
	text-align:right;
}

/* === Archive-type pages === */

.post-wrapper {
	margin:0 auto;
	/*width:90%;
	position:relative;
	top:-30px;
	min-height:325px;
	*/
	padding:15px 25px;
	text-align:center;
}

.blog-category {
	text-align:center;
	margin:15px 0 0 0;
	display:block;
	font-size:12px;
	line-height:18px;
	color: #808080;
	letter-spacing: 0.05em;
}

.blog-category a {
	color: #808080;
}

.blog-category a:hover, .blog-category a:focus {
	color: #195093;
}

.posts-btn {
	border:1px solid #195093;
	padding:6px 15px;
	border-radius:1px;
	font-weight: 400;
    color: #111;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    margin-top: 10px;
}

.posts-btn:before {
    left: -100px;
}

.posts-btn:after {
    right: -100px;
}

.posts-btn:before, .posts-btn:after {
    position: absolute;
    content: '';
    width: 100px;
    top: 50%;
    border-top: 1px solid #195093;
}

.posts-btn:hover {
	background: #195093;
	color: white;
}

.archive-header  {
	margin-bottom:15px;
	background-size: cover;
}

.entry-summary p {
	font-size:13px;
	line-height: 23px;
	text-align:center;
}

.archive-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.archive #content article, .blog #content article {
	width:49%;
	/*display: inline-flex;
    flex-wrap: wrap;
	position:relative;
	*/
	background:#f7f7f7;
	padding: 0;
	vertical-align: top;
	margin: 0 auto 20px auto;
}

.archive #content article img, .blog #content article img {
	max-width:100%;
	height: 310px;
	object-fit:cover;
	transition: all 200ms ease-in-out;
}

.archive #content article img:hover, .blog #content article img:hover {
	opacity: .8;
}

.archive #content article header, .blog #content article header {
	height:auto;
}

.archive #content article .entry-title, .blog #content article .entry-title{
	text-align:center;
	margin:5px 0 10px;
	padding:0 15px;
	font-size: 20px;	
	line-height: 1.4;
}

.archive #content article .entry-title::after, .blog #content article .entry-title::after {
	background: transparent;
}

.archive #content article .entry-title a, .blog #content article .entry-title a {
	color:#111;
	font-weight: 700;
	text-transform: uppercase;
    letter-spacing: 1px;
}

.archive #content article .entry-title a:hover, .blog #content article .entry-title a:hover {
	color:#195093;
}

.archive #content article .entry-byline, .blog #content article .entry-byline, .archive #content article .entry-byline a, .blog #content article .entry-byline a {
	text-align:center;
	color: #888;
	margin-bottom: 20px;
}

.archive #content article .entry-byline a:hover, .blog #content article .entry-byline a:hover {
	color: #195093;
}

.archive #content article .entry-header, .blog #content article .entry-header {
	padding:0;
	text-align:center;
}

/**
 * Sidebars and widgets
 * --------------------------------------------------------------------------- */

/* ====== General ====== */

.sidebar {
	background: #f7f7f7;
	vertical-align:top;
	padding: 15px 18px;
	margin-bottom:25px;
	border-radius:2px;
	text-align:left;
}

.sidebar ul {
	padding:0;
}

iframe {
	max-width:100%;
}

#main h3.widget-title {
	font-weight: 700;
	border-image: linear-gradient(to left,#20a049 0,#195093 100%) 1 1 1 1;
    border-image-slice: 1;
    padding-bottom: 10px;
    border-bottom: 1px solid transparent;
    margin-top: 25px;
    padding-bottom: 5px;
	font-size: 15px;
    text-transform: uppercase;
	letter-spacing:0.02em;
}

#main .sidebar ul li {
	list-style-type: none;
	margin: 8px 0 10px;
	font-size:13px;
	line-height:20px;
	padding: 0 6px;
}

#main .sidebar .textwidget {
	padding: 0 6px;
}

#main .sidebar ul li a {
    color: #0a0a0a;
    display: table;
}

#main .sidebar ul li a::before {
    content: "\f0da";
    font: normal normal normal 16px/1 FontAwesome;
    font-size: 16px;
    font-size: inherit;
    text-rendering: auto;
    -moz-osx-font-smoothing: grayscale;
    padding-right: 10px;
    display: table-cell;
    font-size: 14px;
    position: relative;
    top: 1px;
    color: #20a049;
}

#main .sidebar ul li a:hover {
	color: #195093;
}

/**
 * CTA Footer
 * --------------------------------------------------------------------------- */
 
 .cta-row {
	 background:#195093;
	 border-top: 6px solid #50a7ff;
	 width:100%;
	 display:block;
	 padding: 50px 2.5% 65px;
	 letter-spacing: 0.08em;
	 text-align: center;
 }
 
 .cta-row h3 {
	 color:#ffffff;
	 font-size:28px;
	 line-height:36px;
 }
 
 .cta-row p {
	 color:#ececec;
	 font-size:16px;
	 line-height:24px;
	 margin-bottom: 45px;
 }
 
 /*.cta-row .cta-btn {
	color:#ffffff;
	border:1px solid #ffffff;
	border-radius:1px;
	padding:5px 10px;
	font-size:15px;
	display:inline-block;
	width: 224px;
	padding-top: 30px;
	height: 100px;
}*/

 .cta-row .cta-btn {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    display: inline;
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 15px 20px;
    box-shadow: 4px 4px 0px 0px rgba(255, 255, 255, 1);
    transition: all 0.1s cubic-bezier(0, 0, 0.25, 1);
    letter-spacing: 1px;
    height: 55px;
	margin: 0 auto;
	width: 240px;
}
 
 .cta-row .cta-btn:hover {
	border: 1px solid rgba(255, 255, 255, .5);
	margin: 4px 0 0 4px;
	box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, .5);
	color: rgba(255, 255, 255, .5);
 }
/**
 * Footer
 * --------------------------------------------------------------------------- */

#footer {
	background-color: #0b1623;
	color: #7b7b7b;
	padding: 0px 2.5%;
}

#footer .main-footer {
	padding:20px 0;
}

#footer .main-footer-col {
	width:24.5%;
	display:inline-block;
	vertical-align:top;
}

#footer #site-links {
	width:49.5%;
}

#footer .main-footer-col h3 {
	font-size: 18px;
	letter-spacing: 0.07em;
	font-weight: 400;
	margin: 10px 0 18px;
	color: #fefefe;
}

#footer .main-footer-col h4 {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.05em;
	border-bottom: 1px solid #7b7b7b;
	color: #bfbfbf;
	width: 90%;
	margin:10px 0 15px 0;
	padding-bottom: 10px;
}

#footer .main-footer-col a {
	font-family: 'Poppins', sans-serif;
	color: #888888;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
	font-size: 11px;
	line-height: 16px;
	display: block;
}

#footer .main-footer-col a:hover {
	color: #ccc;
}

#footer #local span, #footer #local time {
	font-size:12px;
	line-height:24px;
}

#footer #local small {
	display:block;
	font-size:11px;
	line-height:20px;
}

#footer .super-footer {
	text-align:center;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding:15px 0;
}

#footer .super-footer .social-media-icons {
	color: #bfbfbf;
	font-size: 16px;
	margin: 10px 15px;
	display: inline-block;
	transition: all 200ms ease-in-out;
}

#footer .super-footer .fa, #footer .super-footer .far, #footer .super-footer .fas {
	font-family: "FontAwesome";
}

#footer .super-footer .social-media-icons.fb:hover {
	color: #3b5998;
}

#footer .super-footer .social-media-icons.t:hover {
	color: #1dcaff;
}

#footer .super-footer .social-media-icons.gplus:hover {
	color: #d34836;
}

#footer .super-footer .social-media-icons.pin:hover {
	color: #C92228;
}

#footer .super-footer .social-media-icons.linkin:hover {
	color: #0077B5;
}

#footer .tagline {
	letter-spacing: 0.08em;
	font-size:12px;
	margin:0;
	word-spacing: 1px;
	color: #ddd;
}

#footer .copyrights {
	margin:0;
	font-size: 10px;
	letter-spacing: 0.2em;
	color: #999;
	font-weight: 300;
	text-transform: uppercase;
}

	#footer a {}
	#footer a:hover {}

nav.pagination {
	margin:5px 0 15px 0;
	text-align: center;
	font-size: 16px;
	width:100%;
}

nav.pagination .page-numbers {
	margin:0 5px;
}

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


/**
 * Beaver Builder Elements
 * --------------------------------------------------------------------------- */
h4.uabb-adv-accordion-button-label {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.uabb-adv-accordion-content p {
	line-height: 24px !important;
}

/**
 * Clearing Floats
 * --------------------------------------------------------------------------- */

.clearfix::after {
	content:    ".";
	display:    block;
	height:     0;
	clear:      both;
	visibility: hidden;
}

/**
 * Special Class
 * --------------------------------------------------------------------------- */
 
 .certificate {
	 margin:5px 0;
 }

 body .sfm-navicon-button {
	 display:none !important;
 }

 .sfm-title h3 {
    font-size: 22px !important;
    line-height: 30px !important;
}

.half {
	width:49.5%;
	display:inline-block;
	margin:0;
	vertical-align:top;
}

.four-row div.fl-col.fl-col-has-cols {
	width: 100% !important;
	margin-top: 0;
}

.highlight-blue {
	background: #195093;
	padding: 2px 5px;
	color: #ffffff;
	border-radius: 1px;
	float:left;
	/*line-height:12px;*/
}

.highlight-green {
	background: #20a049;
	padding: 3px 10px;
	color: #111;
	border-radius: 1px;
	line-height:12px;
}

.screen-reader-text {
	display:none;
}

/*.home main {
	background: transparent;
}

.home .entry-content, .page-template-landing article .entry-content {
	padding: 0 !important;
	background:#f7f7f7;
}

.home header.entry-header {
	text-align: center;
	color: #fefefe;
	background-size: cover !important;
	background-position: center center !important;
}*/

header.entry-header, .archive-header {
	text-align: left;
	color: #fefefe;
	padding: 100px 20px 20px;
	background-size: cover !important;
	background-position: center center !important;
	border-radius: 2px 2px 0 0;
}

header.entry-header h1, .archive-title {
	color:#ffffff;
	font-size: 26px;
	line-height: 36px;
	letter-spacing: 1px;
	word-spacing: 1px;
	font-weight: 500;
	padding: 0 5px;
}

.user .archive-header, .taxonomy-post_tag .archive-header {
	height:auto;
	padding:20px;
}

.user .archive-header {
	border-bottom: 1px dashed #dedede;
	margin-bottom: 30px;
}

.page-template-home header.entry-header h1, .user .archive-title, .taxonomy-post_tag .archive-title {
  color: #161616;
}

.user .archive-description p, .taxonomy-post_tag .archive-description p {
 	color: #161616;
}

.page-template-home header.entry-header {
	height:auto;
}

/*.home .sh-tagline {
	text-align: center;
}

.home .sh-tagline p {
	text-transform: none;
	font-size: 16px;
    line-height: 40px;

}*/

.sh-tagline, .archive-description {
	border-image: linear-gradient(to left, #20a049 0%, #195093 100%) 1 1 1 1;
	border-image-slice: 1;
	padding-top: 10px;
	font-weight: 300;
	border-top: 1px solid transparent;
	border-bottom: 0px;
	border-left: 0px;
	border-right: 0px;
	letter-spacing: 4px;
	word-spacing: 1px;
	width: 100%;
	margin: 10px auto;
}

.sh-tagline p {
	color: #f6f6f6;
	margin: 0;
	font-size: 13px;
	padding: 0 5px;
	line-height: 30px;
    letter-spacing: 3px;
    font-weight: 400;
}

 .archive-description p {
	color: #f6f6f6;
	margin: 0;
	font-size: 14px;
	line-height:22px;
	padding: 0 5px;
	line-height: 30px;
    letter-spacing: 0.03em;
    font-weight: 400;
}

.author-recommended-posts.horizontal .related-thumbnail {
	height:60px !important;
}

.author-recommended-posts.horizontal li.has-thumbnail .related-title {
	padding:0px;
	color:#444;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height:18px;
}

.author-recommended-posts.horizontal li.has-thumbnail .related-title:hover {
	color:#161616;
}

#footer .main-footer-col .highlight-blue {
	margin-right:5px;
	font-size:11px;
	line-height:14px;
}

#footer .highlight-green {
	margin-bottom:5px;
	line-height:16px;
	font-weight: 600;
	display:inline-block;
}
/*Xiao Ken css for new Homepage*/
/*******************************************************************************/

input.e-mail.valid {
    padding: 12px;
    width: 100%;
    max-width: 510px;
    text-align: left;
    outline: unset;
	border: 2px solid #ffffff;
	vertical-align: middle;
	border-radius: 0!important;
}
input#gform_submit_button_13{margin-right: 0;}
span.submit-icon.vertical-align {
	background: #195093;
    color: white;
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    margin-left: 0;
    vertical-align: middle;
    transition: all ease-in-out 0.3s;
    display: inline-block;
    align-items: center;

    border: 2px solid #ffffff;
    padding-top: 9px;
    font-size: 14px;
}

span.submit-icon.vertical-align:hover{
	background-color: #20a049;
}


@media screen and (max-width:700px){
	input.e-mail.valid{
		width: 100%;
    	display: block;
    	margin: auto;
	}
	span.submit-icon.vertical-align{
		width: 100%;
    margin: auto;
    max-width: 510px;
	}

	.singular-post input.e-mail.valid {
		width: 100%;
		display: block;
		margin: auto;
		margin-right: 0;
		margin-left: 0;
		margin: auto;
		max-width: 316px;
	}
	.singular-post span.submit-icon.vertical-align {
		width: 100%;
		margin: auto;
		max-width: 300px;
	}
	
}
@media screen and (max-width:320px){

	.singular-post input.e-mail.valid {
		max-width: 274px;
	}
	.singular-post span.submit-icon.vertical-align{
		max-width: 258px;
	}
}


body.page-template-thinking{
	font-family: 'Open Sans', sans-serif;
}

.page-template-thinking #header{
	background: unset;
	max-width: 1200px;
	margin: auto;
	box-shadow: unset;
}
body.page-template-thinking{
	background: #ffffff!important;
}

.page-template-thinking #menu-primary li a{
	font-size: 14px;
	color: #2a2a2a;
	text-transform: unset;
}
.page-template-thinking #menu-primary li a:hover{
	color: #34437e;
}
.page-template-thinking #menu-primary li a::before{
	height: 4px;
	background: #34437e;
    top: -29px;
}
.page-template-thinking #menu-primary .sub-menu li a::before{
	display: none;
}

.page-template-thinking #logo-container {
    padding: 30px 20px;
}
.page-template-thinking #menu-primary ul ul li a {
    background: rgba(255,255,255,0.95);
}
.page-template-thinking #menu-primary ul ul{
	background-color: unset;
}
.page-template-thinking #menu-primary ul ul li a{
	padding: 12px 15px!important;
}
.page-template-thinking h2{
	text-transform: unset;
}
.thinking-bu{
	display: inline-block;
}

.page-template-thinking .sub-menu a{
	box-shadow: 0px 2px 5px 0.2px rgba(0, 0, 0, 0.1);
}
.page-template-thinking article .entry-content{
	padding: 0;
}

.page-template-thinking .seo-bu{
	transition: all ease-in-out 0.2s;
}
.page-template-thinking .seo-bu .uabb-infobox-title{
	transition: all ease-in-out 0.3s;
	border-bottom: 3px solid #ffffff;
}
.page-template-thinking .seo-bu:hover .uabb-infobox-title{
	color: #34437e;
	border-bottom: 3px solid #34437e;
}
.page-template-thinking a.uabb-button.ast-button.uabb-creative-button.uabb-creative-default-btn {
	padding: 10px 30px;
	border: 2px #ffffff solid;
}
.page-template-thinking a.uabb-button.ast-button.uabb-creative-button.uabb-creative-default-btn:hover{
	border: 2px #ffffff solid;
	background-color: #2a2a2a;
	color: #ffffff;
}

.clients-say .fl-slide-content-wrap{
	box-shadow: 0px 2px 5px 0.2px rgba(0, 0, 0, 0.2);
}

.page-template-thinking .ginput_container input, .ginput_container textarea, .ginput_container select{
	border: 1px solid #ccc;
	padding: 8px 12px;
}
#main .custom-form li{
	color: #2a2a2a!important;
}
.page-template-thinking .ginput_container input, .ginput_container textarea, .ginput_container select{
	width: 100%;
}
.page-template-thinking .name_first, .name_last{width: calc(50% - 3px);}

.name_last {
    width: calc(50% - -9px);
    margin-right: 0!important;
}

.singular-page-8015 .name_last{width: calc(50% - -7px);}

.page-template-thinking .name_last{margin-right: 0;}
.page-template-thinking .gform_button.button, .gform_next_button.button, .gform_previous_button.button{
	width: 100%;
	background-color: #2a2a2a;
	margin-right: 0;
	border: 2px solid #2a2a2a;
	transition: all ease-in-out 0.3s;
}
.page-template-thinking #footer .main-footer {
    max-width: 1200px;
    margin: auto;
}
.page-template-thinking .gform_button.button:hover{
	background-color: #ffffff;
	border: 2px solid #2a2a2a;
	color: #2a2a2a;
}
.clients-slider .slider-container{
	-webkit-box-shadow: -6px 7px 18px 1px rgba(0,0,0,0.31);
	-moz-box-shadow: -6px 7px 18px 1px rgba(0,0,0,0.31);
	box-shadow: -6px 7px 18px 1px rgba(0,0,0,0.31);
	padding: 50px 20px!important;
	min-height: 350px;
}
.testi-icon-2{
	display: block;
	text-align: right;
}

.testimonials-name{
	font-size: 20px;
}
.testimonials-company{
	font-size: 12px;
}


.page-template-thinking .sa_owl_theme .owl-dots .owl-dot span {
	border: 1px #2a2a2a solid!important;
	background-color: unset!important;
}
.page-template-thinking .sa_owl_theme .owl-dots .active span{
	background-color: #2a2a2a!important;
}
.page-template-thinking .sa_owl_theme .owl-dots .owl-dot span:hover{
	background-color: #2a2a2a!important;
}
.page-template-thinking .white{
	padding: 0!important;
	border: 0!important;
}

.page-template-thinking h2 span span{
	font-size: 30px;
}
/* .clients-slider p::before {
    content: "";
    background-image: url(/wp-content/uploads/2020/01/testi-icon.png);
    position: absolute;
    top: 50px;
    width: 72px;
    height: -webkit-fill-available;
    background-repeat: no-repeat;
}
.clients-slider p::after {
    content: "";
    background-image: url(/wp-content/uploads/2020/01/testi-icon-2.png);
    position: absolute;
    bottom: -239px;
    width: 72px;
    height: -webkit-fill-available;
    background-repeat: no-repeat;
    right: 48px;
} */
/* .clients-say .uabb-testimonial{
	box-shadow: 0px 2px 5px 0.2px rgba(0, 0, 0, 0.2);
} */



.fl-node-5c516d6e59ac5 .uabb-blog-posts .uabb-post-thumbnail img {
    display: inline-block;
    height: 230px;
    object-position: top;
    object-fit: cover;
}

.singular-page-6815 .cta-row{
	width:unset;
}


.error-404 main#content {
    min-height: 500px;
    margin-top: 150px;
}




.gf_right_half {
    width: calc(50% - -9px);
}


.list-numbered {
	list-style: none;
	margin-left: 1em;
	counter-reset: line;
  }
  
  .list-numbered > li {
	position: relative;
	margin-bottom: 1.5em;
  }
  
  .list-numbered > li:before {
	position: absolute;
    left: -2.25em;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 0.5em;
    background-color: #20a049;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 2em;
    counter-increment: line;
    content: counter(line);
    top: -2px;
  }
  .list-numbered{
	  padding-left: 20px;
  }
  .list-numbered li{
	  padding-left: 10px;
  }

/*******************************************************************************/
/* NEW HOMEPAGE 2
/*******************************************************************************/

div#popular {
    display: block;
}

div#popular article:not(:nth-child(3)) {
    margin-right: 2%;
}

div#popular article {
    width: 30.33%;
	margin-bottom: 30px;
	display: inline-block;
	vertical-align: top;
}

#popular .owl-item article {
    width: 92%;
    display: inline-block;
	vertical-align: top;
	margin-right: 0;
}

#popular .featured-post-img {
    overflow: hidden;
    width: 100%;
	height: 254px;
	background-size: cover !important;
}

#popular .entry-title {
    padding-bottom: 0;
	text-align: left;
	font-size: 18px;
	color: #fff;
	line-height: 24px;
}

#popular .entry-summary .excerpt p {
    color: #fff !important;
    text-align: left;
    font-size: 15px;
}


#popular .author {
    text-align: left;
}

#popular .author-info *, #popular .author-info {
    color: #fff;
}

#popular .author-info a {
    color: #20a049;
    font-weight: bold;
}

#popular .author > div {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1%;
}

#popular .author > div:first-child {
    /*width: 20%;*/
}

#popular .author > div:first-child a {
    display: block;
	width: 50px;
    overflow: hidden;
    border-radius: 100%;
    height: 50px;
}

#popular  .owl-dots {
	display:none !important;
}

#popular .owl-nav {
    position: absolute;
    top: 42%;
    right: 0;
    width: 100%;
}

#popular .owl-item {
	text-align:center;
}

#popular .owl-prev, #popular .owl-next {
    position: absolute;
	color: #fff !important;
	font-size: 100px !important;
	height: 45px;
}
#popular .owl-prev span, #popular .owl-next span {
	user-select: none; /* supported by Chrome and Opera */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
}

#popular .owl-prev:hover, 
#popular .owl-next:hover {
	background:transparent !important;
}

#popular .owl-prev:focus, 
#popular .owl-next:focus {
	outline:none;
}

#popular .owl-prev {
    left: -70px;
}

#popular .owl-next {
	right: -70px;
}

.singular-page-7486 h2.post-cat{
	margin-left: 10px;
}
/**POST**/

#post-items article {
	width: calc(25% - 3px);
    display: inline-block;
    vertical-align: top;
    padding: 0 10px;
}



/***********************new-xiao ken**************************/

.singular-page-7486 #post-items .author > div:first-child a {
    display: block;
    width: 50px;
    overflow: hidden;
    border-radius: 100%;
    height: 50px;
}
input#gform_submit_button_11:hover{
	background-color: #ffffff!important;
	color: #195093;
	border-color: #ffffff;
}
.fl-node-5eb3bd9f1eed2 > .fl-row-content-wrap{
	padding-bottom: 80px!important;
}
.fl-node-5eb3cd55992e9 > .fl-row-content-wrap{
	padding-bottom: 80px!important;
}

.fl-col.fl-node-5eb5069993d92{
	padding-left: 20px;
	padding-right: 20px;
}

.blog #content article img {
    height: 355px!important;
}
/*************************************************/
/* #post-items article:not(:last-child) {
    margin-right: 2%;
} */


#post-items .featured-post-img {
	overflow: hidden;
    width: 100%;
    height: 200px;
    background-size: cover !important;
    background-position: center!important;
}

#post-items .entry-title {
    padding-bottom: 0;
    text-align: left;
    font-size: 16px;
	line-height: 19px;
	color: #195093;
	text-transform: none;

}

#post-items .entry-summary .excerpt p {
    color: #000 !important;
    text-align: left;
    font-size: 13px;
}


#post-items .author {
    text-align: left;
}

#post-items .author-info *, #post-items .author-info {
    color: #000;
}

#post-items .author-info a {
    color: #195093;
    font-weight: bold;
}

#post-items .author > div {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1%;
}

#post-items .author > div:first-child {
    width: 20%;
}

#post-items .author > div:first-child a {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 100%;
    height: 40px;
}

.post-cat {
	text-transform: none;
	color: #195093;
}

.post-footer {
	text-align: center;
	padding: 60px 0 0;
}

.post-footer a {
    border: 2px solid #195093;
    padding: 10px 60px;
	font-size: 14px;
	font-weight: bold;
	color: #195093;
	transition: all ease-in-out 0.3s;
}

.post-footer a:hover{
	background-color: #195093;
	color: #ffffff;
}



.post-wrap.light #post-items .entry-title, 
.post-wrap.light #post-items .entry-summary .excerpt p, 
.post-wrap.light #post-items .author-info *, 
.post-wrap.light #post-items .author-info,
.post-wrap.light #post-items .author-info a,
.post-wrap.light .post-cat {
	color:#fff !important;
}
.post-wrap.light .post-footer a {
	color:#fff !important;
	border-color: #fff !important;
}

.post-wrap.light .post-footer a:hover{
	background-color: #ffffff;
	color: #20a049!important;
}

div#video-items {
    display: flex;
}

.video-large {
    width: 70%;
    margin-right: 1%;
}

.video-side {
    width: 30%;
}

.video-large > div,
.video-side > div {
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: 0 !important;
	width: 100%;
	position: relative;
}

.video-large > div {
    height: 400px;    
}

.video-side > div {
    height: 193px;
    margin-bottom: 4%;
}

.video-play {
    position: absolute;
    left: 47%;
    top: 43%;
    width: 10%;
}
#newsletter{text-align: center;}

div#newsletter p {
    color: #fff;
    font-weight: bold;
    font-size: 17px;
}

#gform_11 > div {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block;
    vertical-align: middle;
}

#gform_11 > div:nth-child(1) {
    width: 50%;
}

#gform_11 .gfield_label {
    display: none;
}

#gform_11 ul, #gform_11 li {
	padding:0 !important;
	margin:0 !important;
}

#gform_11 input[type="text"] {
    background: #fff;
    text-align: left;
    padding: 8px 15px;
	width: 100%;
	border: 0;
}

#gform_11 .gform_footer > input {
    margin: 0;
    width: 100%;
    background: #195093;
	border: 2px solid #ffffff;
	transition: all ease-in-out 0.3s ;
}

#our-service h3 {
	margin:0;
	text-transform: none;
	color: #195093;
	padding:0;
}

#our-service .our-service-heading h2 {
    font-size: 35px;
	margin-bottom:0;
	padding-bottom:0;
}

#our-service .our-service-heading p {
	margin-top:0;
	padding-top:0
}

.our-service-container > div {
    display: inline-block;
    vertical-align: top;
}

.our-service-container > div:nth-child(1) {
    width: 14%;
    margin-right: 4%;
}

.our-service-container > div:nth-child(2) {
    width: 81%;
}

.our-service-container {
    margin-bottom: 20px;
}

.our-service-container .btn-service {
	background: #195093;
	border: 2px solid #195093;
    color: #fff !important;
    padding: 10px 40px;
	display:inline-block;
}

.our-service-container .btn-service:hover{
	background-color: unset;
	color: #195093!important;

}



@media(max-width:991px){
	#post-items article{
		width: calc(50% - 2px);
	}
}
@media(min-width:768px) and (max-width:769px){
	/* #post-items article {
		width: 47%;
		margin-bottom: 30px;
	} */
	#post-items .featured-post-img {
		width: 100%;
	}
	#post-items .author > div:first-child a {
		height: 60px;
	}
}

@media(max-width:722px){
	#popular .entry-title { 
		min-height: inherit;
	}

	#popular .featured-post-img {
		width: 100%;
	}

	#popular  .owl-nav {
		display:none !important;
	}

	#popular  .owl-dots {
		display:block !important;
	}

	#post-items article {
		width: 90% !important;
		display: block !important;
		margin: auto !important;
		margin-bottom: 50px !important;
	}

	#post-items .featured-post-img {
		width:100%;
	}

	#post-items .author > div:first-child a {
		height: 65px;
	}

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

	div#video-items {
		display:block;
	}

	.video-large {
		width: 95%;
		margin: auto !important;
	}

	.video-large > div {
		height: 300px;
	}

	.video-side {
		width: 95%;
		margin: auto;
	}

	.video-side > div {
		width: 49.5%;
		display: inline-block;
		margin-top: 1%;
	}

}
div#allcategories {
    margin-top: 10px;
}

.container-num{
	margin-left: 15px;
    text-align: center;
    font-size: 16px;
}
.container-num a{
	padding-right: 5px;
}
.container-num span{
	padding-right: 5px;
}

.related-posts article {
    width: calc(33.33% - 3px);
	display: inline-block;
	vertical-align: top;
}

.related-posts .entry-title {
    text-align: left;
    color: #161616;
    font-size: 15px;
    padding-left: 0;
    letter-spacing: 0.04em;
    font-weight: 700;
	line-height: 1.3em;
	padding: 0;
}

.related-posts article img{
	height: 200px;
	object-fit: cover;
	object-position: center;
}

.related-posts a.btn-readmore{
	display: block;
}


.related-posts-row h3 {
    padding-top: 20px;
    padding-bottom: 20px;
	text-align: center;
}
.related-posts{
	margin-bottom: 30px;
}


/*******************************************************************************/
/* END NEW HOMEPAGE 2
/*******************************************************************************/


/*******************************************************************************/
/* VIDEO PAGE
/*******************************************************************************/
.video-frame iframe {
    width: 100% !important;
    height: 350px;
}

@media screen and (max-width: 991px){
	.related-posts{
		padding-left: 20px;
		padding-right: 20px;
	}
	.related-posts article {
		width: calc(50% - 3px);
	}

	.name_last{
		width: 100%;
	}
	.gf_right_half{
		width: 100%;
	}
	li.gf_right_half{
		margin-left: 0!important;
	}

	
	.page-template-thinking main.content .entry-content {
		padding: 0!important;
	}
	.seo-bu{display: none;}

	.singular-page-66 div#gform_wrapper_2{
		margin-left: 20px;
		margin-right: 20px;
	}

	.singular-page-3120 .fl-row.fl-row-full-width.fl-row-bg-none.fl-node-58ea1908cd4e3{
		margin-left: 20px;
		margin-right: 20px;
	}
	.site-header .search-form{
		right: 44px!important;
	}
}

.singular-post .subscription-box {
    background: #1c5eac;
    padding: 40px 10px;
    margin: 15px 0;
    background-size: cover;
}

.subscription-box h4{
	color: #ffffff;
	text-align: center;
	font-size: 18px;
}
.subscription-box p{
	color: #ffffff;
	text-align: center;
}

.emoji {
	width:20px;
	height: auto;
}

.singular-post .gform_footer.top_label {
    display: inline-block;
}
.singular-post .gform_footer.top_label {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0;
}

.singular-post li#field_12_1 {
    max-width: 300px;
    display: inline-block;
    vertical-align: middle;
}

.singular-post .gform_body{
	display: inline-block;
}
form#gform_12{
	text-align: center;
}
input#gform_submit_button_12 {
    background: #ffffff;
    color: #1c5eac;
    height: 35px;
}
input#input_12_1 {
    padding-left: 15px;
    padding-right: 15px;
	margin-right: 50px;
	color: #ffffff;
}
input#input_12_1:focus{
	border: #ffffff 1px solid;
}

input#input_12_1::placeholder{
	color: #ffffff;
} 

.site-header .search-form {
    position: absolute;
    top: 8px;
    right: 17px;
    line-height: 0px;
    z-index: 9999999999999999;
}

.admin-bar .site-header .search-field {
	top:30px;
}

.site-header .search-field {
	background-color: transparent;
	background-image: url('https://www.thinkingnotes.com/wp-content/uploads/2020/05/search.png');
	background-position: 5px center;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	border: none;
	cursor: pointer;
	height: 37px;
	margin: 3px 0;
	line-height: 60px;
	padding: 0 0 0 34px;
	position: relative;
	-webkit-transition: width 400ms ease, background 400ms ease;
	transition:         width 400ms ease, background 400ms ease;
	width: 0;
}

.site-header .search-field:focus {
	background-color: #fff;
	cursor: text;
	outline: 0;
	width: 230px;
	padding: 0 0 0 14px;
}
.search-form
.search-submit { 
	display:none;
}


.search #main{
	max-width: 1100px;
	margin: auto;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 40px;
}


.search article {
	width: calc(50% - 22px);
    padding: 0;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding-bottom: 50px;
    background: #f7f7f7;
	margin: 0 10px;
	margin-bottom: 30px;
}
.search-name {
	padding: 50px 10px;
	text-align: center;
	padding-bottom: 60px;
}
.search-name h1{
	font-weight: bold;
}

.search article img{
	height: 380px;
    object-fit: cover;
    object-position: center;
}

.search article .entry-summary a{
	border: 1px solid #195093;
    padding: 6px 15px;
    border-radius: 1px;
    font-weight: 400;
    color: #111;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    margin-top: 10px;
}
.search article .entry-summary a:before{
	position: absolute;
	content: '';
	width: 100px;
	top: 50%;
	border-top: 1px solid #195093;
	left: -100px;
}
.search article .entry-summary a:after{
	position: absolute;
    content: '';
    width: 100px;
    top: 50%;
	border-top: 1px solid #195093;
	right: -100px;
}

.search article .entry-summary a:hover{
	background: #195093;
    color: white;
}

.search article .entry-title a {
    color: #111;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.search .article-info-content {
    padding: 20px;
    padding-bottom: 0;
}

.search .article-info-content {
    height: 240px;
}
.singular-post label.gfield_label {
    display: none;
}
.singular-post #ez-toc-container{
	padding: 30px!important;
	border: 1px solid #144179!important;
	background-color: #144179!important;
}
.singular-post #ez-toc-container ul ul{
	padding-left: 0;
}
.singular-post #ez-toc-container a{
	color: #ffffff;
}
.singular-post #ez-toc-container a:visited {
    color: #2ac15a;
}

.singular-post p.ez-toc-title {
    color: #ffffff;
}

.singular-post div#ez-toc-container p.ez-toc-title {
    font-weight: 700;
}

.singular-post ul.ez-toc-list {
	padding-left: 0!important;
	padding-top: 15px!important;
}
.singular-post ul.ez-toc-list li{
    padding-left: 0!important;
}

/**********************************END***************************************/
/**
 * Mobile
 * --------------------------------------------------------------------------- */
 
 @media screen and (max-width:1620px) {
	 
	.archive #content article, .blog #content article {
		width:48.5%;
	}
		
 }
 
@media screen and (max-width:1199px) {

	 #logo-container {
 		position:relative;
 	}

 	#logo-container .desktop {
 		display:none;
 	}

 	#logo-container .mobile {
 		display:inline-block;
		width: 250px;
		vertical-align:middle;
 	}
	
	.archive #content article, .blog #content article {
		width:47.5%;
	}
	

}


@media screen and (max-width:1034px){
	span#input_13_3_3_container {
		width: 100%;
	}
	span#input_13_3_6_container {
		width: 100%;
	}
}

@media screen and (max-width:1000px){
	div#popular article:not(:nth-child(3)){margin-right: 0;}
}


@media screen and (max-width:991px) {
	.singular-post #main{margin-top:0;}

	#header{
		position: fixed;
		z-index: 999;
	}

	#main{padding-top: 60px;}
	.sfm-navicon-button.sf_label_default{position: fixed;}

	#footer .main-footer, #menu-primary {
		display:none;
	}

	.archive #main, .blog #main, .page-template-sidebar #main {
		margin: 0;
		width:100%;
	}

	.singular-post main, .blog main, .archive main, .page-template-sidebar main {
		width:100%;
		margin:0;
		padding:0;
	}

	.singular-post aside, .blog aside, .archive aside, .page-template-sidebar aside, .home aside {
		display:none;
	}

	body .sfm-navicon-button {
		display:block !important;
	}
	
	.singular-page-6815 main.content .entry-content {
		padding: 0px;
	}

	.singular-page-6815 .fl-rich-text {
		padding-left: 10px;
		padding-right: 10px;
	}

	main.content .entry-content

	#main .entry-content div.fl-row-content-wrap {
	    padding: 15px 15px;
	}

	/*.home h2 {
		font-size: 28px;
	}

	.home h2::after {
		bottom: 0px;
	}*/
	
	.archive #content article .entry-byline, .blog #content article .entry-byline {
		font-size: 14px;
		line-height: 26px;
	}
	
	.singular-post .entry-header, .error-404 .entry-header {
		/* padding:0 10px; */
		padding: 15px 25px;
		padding-top: 10px;
	}
	
	.singular-post .entry-byline {
		font-size:14px;
		line-height:26px;
	}
	
	.three-row .fl-col, .half-row .fl-col {
		width:100% !important;
		display:block;
		margin-bottom: 20px;
	}
	
	.four-row .fl-col {
		width:50% !important;
	}

	.four-row .undo-mobile-for-section-title {
        width: 100% !important;
        margin-top: 0px;
    }

    .fl-module-info-banner img {
	    width: 100% !important;
		height: auto !important;
	}
	span#input_4_17_6_container {
		width: 100%;
	}
	li#field_4_33{
		width: 100%;
		margin-left: 0!important;
	}
	li#field_4_3{
		width: 100%;
		margin-left: 0!important;
	}
	li#field_4_43{
		width: 100%;
		margin-left: 0!important;
	}
	li#field_4_23{
		width: 100%;
		margin-left: 0!important;
	}
	.singular-page-3121 .fl-rich-text{
		margin-left: 20px;
		margin-right: 20px;
	}
	#post-items .featured-post-img {
		height: 330px;
	}
}

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

	#footer .tagline {
		display:none;
	}

	#footer .copyrights {
		line-height:14px;
	}

	.archive #content article, .blog #content article {
		width:100%;
		margin:0 0 20px 0;
		padding: 0 10px;
	}

	.author-recommended-posts.horizontal ol li {
		width:100% !important;
	}

	.author-recommended-posts.horizontal .related-thumbnail {
		width:20% !important;
	}

	.author-recommended-posts.horizontal li.has-thumbnail .related-title {
		width:75% !important;
	}

	.sh-tagline p, .archive-description p {
		font-size: 14px;
	    line-height: 20px;
	}

	header.entry-header h1, .archive-title {
		font-size: 32px;
	    line-height: 34px;
	}
	
	.abh_description {
		display:none;
	}
	
	.loop-nav,.entry-footer .category,.entry-footer .post_tag {
		display:none;
	}
	
	.essb_links  {
		display:none;
	}

	/* .singular-page-6815 .fl-col-group.fl-col-group-equal-height {
		padding-left: 10px;
		padding-right: 10px;
	} */
	.search article{
		width: calc(100% - 20px);
	}
}

.singular-page-6898 .fl-rich-text {
    padding-left: 20px;
    padding-right: 20px;
}

.fl-node-5a92ab2d31baf li{
	width: 100%!important;
}

.singular-page .cta-row{
	width: unset;
}

@media screen and (max-width:747px) {
	.fl-module-info-banner img {
	    height: 100% !important;
		width: auto !important;
	}
	.singular-page-6898 .h1-header h1{
		font-size: 35px!important;
	}

	.fl-node-5b52f315eb253 li{
		width: 100%!important;
	}
}
@media screen and (max-width: 722px){
	/* #post-items .featured-post-img {
		height: 438px;
	} */
}

@media screen and (max-width:500px){
	.related-posts article {
		width: calc(100% - 0px);
		margin-bottom: 30px;
	}
	.related-posts article img {
		height: 315px;
	}
	.related-posts .entry-title{
		padding: 0;
	}
}


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

	.sh-tagline p, .archive-description p {
		font-size: 12px;
	    line-height: 16px;
	}

	header.entry-header h1, .archive-title {
		font-size: 30px;
	    line-height: 32px;
	}
	
	.blog-category {
		position:static;
	}
	
	.four-row .fl-col {
		width:100% !important;
		display:block;
	}
	.singular-page-6898 #main .uabb-module-content.uabb-imgicon-wrap {
		display: block!important;
		text-align: center!important;
		margin-right: 0!important;
	}
	.singular-page-6898 .uabb-infobox-content{
		width: 100%!important;
		text-align: center;
	}
}

@media screen and (max-width:360px){
    input#input_12_1{
        margin-right: 0!important;
    }
}