/*!
Theme Name: WP Atomix - Product
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wp-atomix-product
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

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

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

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

/***************************************************************
>>> TABLE OF CONTENTS:
****************************************************************

# Root / Reusable Styles
# Development Styles
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
	## Mobile Menu
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
# Responsive Design

***************************************************************/


/***************************************************************
# Root / Reusable Styles
***************************************************************/

:root {
	/* Font families */
	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Nunito', sans-serif;

	/* Font Colours */
	--color-primary: #FFB84C;
	--color-secondary: #FFC857;
	--color-accent: #F582AE;
	--color-bg: #FFFDF7;
	--color-text: #333333;
	--color-muted: #888888;
	--color-button: #3D3D3D;

	/* Font sizes */
	--fs-h1: 2.25rem;  /* 36px */
	--fs-h2: 1.75rem;  /* 28px */
	--fs-h3: 1.375rem; /* 22px */
	--fs-h4: 1.125rem; /* 18px */
	--fs-body: 1rem;   /* 16px */
	--fs-small: 0.875rem; /* 14px */
	--fs-label: 0.75rem;  /* 12px */

	/* Line heights */
	--lh-body: 1.6;
	--lh-heading: 1.25;
}


/***************************************************************
# Development Styles
***************************************************************/

/*
* {
	border:1px solid black;
}
*/


/***************************************************************
# Normalize
***************************************************************/

abbr[title] {
	border-bottom: none; /* 1 */
	/*text-decoration: underline; /* 2 */
	/*text-decoration: underline dotted; /* 2 */
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

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;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

button,
input { /* 1 */
	overflow: visible;
}

button,
select { /* 1 */
	text-transform: none;
}

button,
[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 {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}


/***************************************************************
# Typography
***************************************************************/

body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: 'Open Sans', sans-serif;
	-webkit-font-smoothing: subpixel-antialiased;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

body {
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
	/*background-color: var(--color-bg);*/
	color: var(--color-text);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-family: var(--font-heading);
	line-height: var(--lh-heading);
	margin-top: 2rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

h1, h2, h3, h4, h5, h6 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}


h1.site-title {
	font-size: 35px;
	color: black;
	margin: 0;
}

h1.site-title a {
	color: black;
}

h1.login-title {
   margin-top: 15px;
}

h2.entry-title {
	font-weight: 300;
}

p {
	margin-bottom: 1.5em;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}


/***************************************************************
# Elements
***************************************************************/

html {
	box-sizing: border-box;
	background: linear-gradient(170deg, #FFFDF7 0%, #f7edce 100%);
	background: linear-gradient(170deg, #FFFDF7 0%, #FFFDF7 100%);
	min-height: 100%;
	background-size: cover;
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
	scroll-behavior: smooth;
}

body.custom-background {
    background: none !important;
	margin: 0;
	padding: 0;
	background: #fcfcfc;
	overflow-x: hidden;  
}

pre {
	background: #eee;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

hr {
	background-color: #ccc;
	border: 0;
	margin-bottom: 1.5em;
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
}

ul, ol {
	/*margin: 0 0 1.5em 3em;*/
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

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

img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
	max-width: 100%;
	object-fit: cover;
	border: 0px solid #eeeeee;
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

main {
	margin: 0 auto;
	border: 0px solid;
	overflow: visible;
}

article {
    border: 0px solid;
    width: 100%;
    display: block;
    /*float: left;*/
}

/* Need to add options for scroll up buttons and icon! */

button.scroll_up_button {
	float: right;
    margin-right: 20px;
    margin-bottom: 0px;
    display: block;
    margin-top: -85px;
    padding: 10px 11px;
    background-color: unset;
    border-radius: 30px;
    border: 0px;
}

button.scroll_up_button:hover {
	background-color: #ff9a00;
}

#footer-column {
	width: 24%;
	display: inline-block;
	padding: 10px;
}

.footer_menu_class {
    padding-bottom: 10px;
}

ul .footer-column  {
	list-style: none;
}

li.menu-item.menu-item-type-post_type.menu-item-object-page {
	list-style: none;
	text-align: left;
}

label {
	color: #000;
}

img.custom-logo {
    max-height: 45px;
    padding-right: 15px;
    width: auto;
}

#content {
    margin: 0 auto;
    border: 0px solid;
}

.site-header {
    margin: auto;
    border: 0px solid;
    display: flex;
    align-items: center;
}

.site-footer {
    margin: 0 auto;
    max-width: 1280px;
    text-align: center;
    padding-top: 0px;
    padding-bottom: 40px;
    width: 90%;
}

.site-footer .mainfooter .column {
	width: 25%;
	padding: 2%;
    padding-left: 4%;
	float: left;
	text-align: left;
}

.site-footer .mainfooter .column:first-child
{
    padding-left: 0%;
    padding-top: 1%;
}

.site-footer a {
	color: #444;
}

.column-inner {
	float: right;
}

.site-footer .mainfooter {
	display: flex;
	justify-content: space-between;
}

.site-footer .mainfooter .column:not(:first-child) {
	margin-left: 0;
}

.site-footer .mainfooter .column:nth-child(2) {
	margin-left: auto;
}

.site-footer ul {
	margin: 0px;
	list-style: none;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    unicode-bidi: isolate;
}

.site-footer li {
	margin-top: 10px;
}

.site-footer .mainfooter .column:nth-child(1) { left: 50%; }
.site-footer .mainfooter .column:nth-child(2) { right: 50%; }
.site-footer .mainfooter:before .mainfooter:after{
    content: " ";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: 20%;
    height: 100%;
    background: #ccc;    
}

.site-footer .mainfooter:after{
    left: 50%;
    background: #eee;       
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

.site-header {
	/*text-align: center;*/
	width: 90%;
	padding-top: 25px;
	max-width: 1280px;
	padding-bottom: 25px;
}

#header_wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #ebe9e9;
    border-color: #ebe9e9;
}

.site-branding {
    float: left;
}

#footer_top_wrapper {
	padding-top: 30px;
	background: #F9F4F2;
	z-index: 1;
	position: relative;
}

#footer_bottom_wrapper
{
	padding-top: 20px;
	padding-bottom: 20px;
	background: #302f2f;
    min-height: 100px;
    padding-top: 50px;

}

.footer-copyright {
    font-size: 14px;
    color: #9d9d9d;
    margin-bottom: 0px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.callout-banner {
	background: #fff;
	margin-left: calc( -100vw / 2 + 100% / 2 );
	margin-right: calc( -100vw / 2 + 100% / 2 );
	width: 100vw;
	display: flex;
	margin-top: -30px;
	margin-bottom: 30px;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid #eee;
}

.callout-banner p {
	margin-bottom: 1em;
}

.footer_menu_class ul, .footer_menu_class li {
	display: block;
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-top: 10px;
	/*margin: 5px 15px 0px 15px;*/
}

.bottom_footer_menu_class ul, .bottom_footer_menu_class li {
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-top: 10px;
	margin: 5px 15px 0px 15px;
}

.site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation {
	margin: 0 auto;
	overflow: hidden;
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 80px;
}

.site-info a {
    color: #b9b9b9;
}

.site-info a:hover {
    color: white;
}

.site-info {
	color: #b9b9b9;
	font-size: 14px;
	text-align: center;
	padding: 20px;
	margin-top: 0px;
}

/* Style the active link (or home/logo) */
.active {
	background-color: #4CAF50;
	color: white;
}

.login-form-wrapper {
    max-width: 550px;
    margin: 0 auto;
    margin-top: 50px;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
	border: 1px solid #f0eaea;
}

.signup-form-wrapper {
    max-width: 550px;
    margin: 0 auto;
    margin-top: 50px;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
	border: 1px solid #f0eaea;
}

.small {
	font-size: var(--fs-small);
}

.label {
	font-size: var(--fs-label);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 1rem;
	display: block;
	color: #666;
}

.demo-section {
	padding: 1rem 0;
	border-bottom: 1px solid #eee;
}

.callout {
    padding: 4rem 1.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

.btn-primary {
    background: var(--color-button);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--color-primary);
    color: white;
}

.stop-scrolling {
	height: 100%;
	overflow: hidden;
}

.site-description {
	text-align: left;
	font-size: 1.2rem;
	margin: 0px;
}

.hide_this{
	display: none !important;
}

.wp-block-button__link {
    font-size: 1em;
}

.entry-meta {
	margin-bottom: 20px;
}

.welcome_message {
    background: #fff;
}

.footer-column-title {
	font-family: var(--font-heading);
	line-height: var(--lh-heading);
	font-weight: 600;
	font-size: 1.25em;
	color: #4f4f4f;
}

.footer-description {
	font-size: 0.85rem;
	color: var(--color-text);
	margin-top: 0px;
	max-width: 210px;
}


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

button, input[type="button"], input[type="reset"], input[type="submit"] {
    border: 1px solid;
    border-color: black;
    border-radius: 3px;
    background: black;
    color: #eee;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1;
    padding: 15px 30px;
    cursor: pointer;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	/*border-color: #ccc #bbb #aaa;
  border-width: 0px;*/
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
	width: 100%;
	padding-left: 10px;
	height: 50px;
	margin-top: 10px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

form {
	padding: 0%;
	margin: 0 auto;
}


/***************************************************************
# Navigation
***************************************************************/

/***************************************************************
## Links
***************************************************************/

a {
	color: black;
	background-color: transparent;
	text-decoration: none;
}

a:visited {
	/*color: purple;*/
}

a:hover, a:focus, a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/***************************************************************
## Menus
***************************************************************/

.main-navigation {
    float: right;
    max-width: 75%;
    margin-left: auto;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	min-width: 100px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
    position: relative;
    display: inline-block;
}

.main-navigation a {
    display: block;
    text-decoration: none;
    color: #555;
    outline: none;
    /* font-weight: bold; */
}

ul .sub-menu {
	display: block !important;
}

.sub-menu {
    padding: 10px 0px 0px 0px !important;
}

.sub-menu .menu-item {
	width: 100%;
    background: white;
    padding: 10px;
    margin: 0px 0px 0px 0px;
    margin-top: 0px !important;
    border: 1px solid #e5e5e5;
    padding: 15px !important;
    /*right: 0px;*/
}

.sub-menu a {
    margin-left: 0px;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

.menu-toggle, .main-navigation.toggled ul {
    display: block;
    margin-top: 25px;
}

.menu-icon {
	margin: 0 auto !important;
}

.site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation {
    margin: o auto;
    overflow: hidden;
    display: block;
    width: 100%;
    text-align: center;
}

.comment-navigation .nav-previous, .post-navigation .nav-previous {
	float: left;
	width: 35%;
	background: #ddd;
	padding: 20px;
	border: 1px solid #eee;
	color: #fff;
}

.comment-navigation .nav-next, .post-navigation .nav-next {
	float: right;
    width: 35%;
    background: #ddd;
    padding: 20px;
    border: 1px solid #eee;
    color: #fff;
}

.posts-navigation .nav-previous {
	float: right;
	width: 35%;
	/*background: #ddd;*/
	padding: 20px;
	border: 2px solid #afafaf;
	color: #fff;
}

.posts-navigation .nav-next {
	float: left;
    width: 35%;
    /*background: #ddd;*/
    padding: 20px;
    border: 2px solid #afafaf;
    color: #fff;
}

/***************************************************************
## Mobile Menu
***************************************************************/

.nav-icon::after, .nav-icon::before, .nav-icon div {
    height: 3px !important;
    margin: 5px 0 !important;
}

.nav-icon {
    margin: 0em !important;
    width: 30px !important;
}

.overlay .closebtn {
    top: 3px !important;
    right: 8px !important;
    font-size: 50px !important;
}


.nav-icon {
	margin: 1em;
	width: 40px;
	float: right;
	display: inline-block;
}

.nav-icon:after, 
.nav-icon:before, 
.nav-icon div {
	background-color: #000;
	border-radius: 3px;
	content: '';
	display: block;
	height: 5px;
	margin: 7px 0;
	transition: all .2s ease-in-out;
}

.open .nav-icon:after {
	transform: translate(0, -3px) rotate(-45deg);
}

.open .nav-icon:before {
	transform: translate(0, 5px) rotate(45deg);
}

.overlay {
	height: 100%;
	width: 0%;
	position: fixed;
	z-index: 10;
	left: 0;
	background-color: rgba(0,0,0, 0.9);
	overflow-x: hidden;
	transition: 0.2s;
}

.overlay-content {
	position: relative;
	width: 100%;
	text-align: center;
	/*margin-top: 85px;*/
}

.overlay a {
	padding: 8px;
	text-decoration: none;
	font-size: 16px;
	color: #818181;
	display: block;
	transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
	color: #f1f1f1;
}

.overlay .closebtn {
	position: absolute;
	top: 10px;
	right: 34px;
	font-size: 70px;
}

.overlay .sub-menu a {
	text-align: center;
}

.overlay-content a {
	color: #fff;
	margin: 20px 0px 20px 0px !important;
}

.overlay-content li.menu-item.menu-item-type-post_type.menu-item-object-page {
	list-style: none;
	text-align: left;
	width: 100%;
	text-align: center;
}

.overlay-content primary-menu {
	display: block;
}

.overlay-content ul {
	display: block;
	list-style-type: none;
	margin-block-start: 0em;
	margin-block-end: 0em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	padding-inline-start: 0px;
	white-space: nowrap;
}

.overlay-content .sub-menu {
    /*margin-top: 10px !important;*/
    padding: 0px 0px 0px 0px !important;
    /*right: 0px;*/
    background: grey;
    text-align: left;
}

.overlay-content .sub-menu .menu-item {
	width: 100%;
    background: grey;
    padding: 0px;
    margin-top: 0px !important;
    padding: 0px !important;
    /*right: 0px;*/
}


/***************************************************************
# Accessibility
***************************************************************/

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

#content[tabindex="-1"]:focus {
	outline: 0;
}


/***************************************************************
# Alignments
***************************************************************/

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
}


/***************************************************************
# Clearings
***************************************************************/

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}


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

.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

.widget-area {
	display: block;
    /*width: 35%;*/
    float: right;
    margin-top: 40px;
    background: lightgrey;
}


/***************************************************************
# Content
***************************************************************/

/***************************************************************
## Posts and pages
***************************************************************/

section {
  padding: 4rem 1.5rem;
  max-width: 1080px;
  margin: auto;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

.blog-column {
    width: 44% !important;
    display: inline-block;
    float: left;
    border: 1px solid #dadada;
    padding: 0px;
    margin: 3%;
    margin-bottom: 40px;
    border-radius: 10px 10px 10px 10px;
    overflow: hidden;
    /*box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.2), 0 10px 35px 0 rgba(0, 0, 0, 0.2);*/
    background: white;
}

.blog-image {
	width: 100%;
	/*max-width: 720px;*/
	height: 300px;
	background: #eeeeee;
	overflow: hidden;
}

.blog-intro {
	padding: 20px 20px 40px 20px;
}

.intro-category {
	font-size: 14px;
	text-align: right;
}

.intro-title {
	font-size: 18px;
	line-height: 2;
}

.grid_container .post {
	width: 48%;
	display: inline-block;
	float: left;
	padding: 4%;
	border: 0px solid;
	overflow: hidden;
	border: 0px solid #eee;
	margin: 1% !important;
	background: #272525;
	text-align: center;
	border: 0px solid #eee;
}

.post:hover {

}

.category-filter-section {
	background: #faf9f8;
	padding: 30px 0;
	border-bottom: 1px solid #e9ecef;
	max-width: none;
	position: sticky;
	top: 102px;
	z-index: 1;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.filter-btn {
    background: #ffffff;
    color: #333333;
    border: 2px solid #e9ecef;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    outline: none;
}

.filter-btn:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #ff9a00;
    color: #ffffff;
    border-color: #ff9a00;
}

.filter-btn.active:hover {
    background: #ff9a00;
    border-color: #ff9a00;
}


.page-section {
    padding: 3rem 0;
    background-color: white;
    max-width: none;
    border-bottom: 1px solid #f1f1f1;
    border-top: 1px solid #f1f1f1;
}

.page-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.entry-header .post-thumbnail {
    margin-top: 40px;
}

.grid_container article a {
	color: #eee;
}

.entry-excerpt {
	font-size: 1.75rem;
	text-align: center;
	max-width: 50vw;
	margin: 0 auto;
	max-width: 740px;
	padding-top: 25px;
	padding-bottom: 75px;
}

.dashboard-page-wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.dashboard-page-wrapper {
	/*width: 90%;*/
    max-width: 1080px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.dashboard-page-wrapper {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
}

.blog-content, .archive-content, .entry-summary, .entry-footer, .posts-navigation {
	width: 100%;
	max-width: 1250px;
	margin-left: auto;
	margin-right: auto;
	margin: 0 auto;
	margin-bottom: 80px;
}

.post-content {
	width: 100%;
	max-width: 1250px;
	margin-left: auto;
	margin-right: auto;
	margin: 0 auto;
	font-size: 18px;
	color: #3e3e3e;
}

.post-content strong {
	font-weight: bolder;
	color: #000;
}

.post-wrapper {
	background: white;
	border: 1px solid #f1f1f1;
	margin-top: 20px;
	padding: 0px 40px 0px 40px;
	margin-bottom: 70px;
}

.entry-content > :not(.alignfull) {
   max-width: 1250px;
}

.entry-content > *:not(.alignfull) {
	width: 100%;
	max-width: 1250px;
	margin-left: auto;
	margin-right: auto;
}

.entry-content > *:not(.alignfull).alignwide {
	max-width: 1250px;
}

.entry-title {
	padding: 40px 0px 20px 0px;
	max-width: 1250px;
	margin: 0 auto;
}

.entry-footer {
    padding-bottom: 20px
}


.entry-content .alignwide {
	max-width: 1250px;
	margin:	0 auto;
	/*margin-bottom: 80px;*/
}


.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background: #fff7ea;
    color: #ff9a00;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    float: right;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: inline-block;
    width: 100%;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #ff9a00;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff9a00;
}

.read-more::after {
    content: "→";
    margin-left: 0.5rem;
    transition: margin-left 0.3s ease;
}

.read-more:hover::after {
    margin-left: 0.75rem;
}


.sticky {
	display: block;
}

.post,
.page {
	margin: 0px;
}


.updated:not(.published) {
	display: none;
}


.intro-content {
    height: 50px;
    /* display: block; */
    overflow: hidden;
}


.page-links {
	clear: both;
	margin: 0 0 1.5em;
}


/***************************************************************
## Contact Form
***************************************************************/


.form-container {
    margin-top: 50px;
}

.form-group {
    margin-bottom: 15px;
}

.name-row {
    display: flex;
    gap: 15px;
}

.name-field {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

textarea {
    height: 100px;
}

.success_message {
  background: aliceblue;
  padding: 30px;
  margin-bottom: 30px;
}

#contact_form_submit {
  float: right;
  margin-bottom: 40px;
  background: #f35a4a;
  border-color: #f35a4a;
  font-size: 1rem;
}

#contact_form_submit:hover {
	background: #f35a4a;
	border-color: #f35a4a;
}


select {
  border: 1px solid #ccc;
  width: 100%;
  background: #fff;
  height: 50px;
  padding: 11px;
  color: #666;
}


#nav-third-line {
    display: none;
}


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

#comments {
	/*padding: 20px;*/
}
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}


/***************************************************************
# Infinite scroll
***************************************************************/

/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}


/***************************************************************
# Media
***************************************************************/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

embed,
iframe,
object {
	max-width: 100%;
}

.custom-logo-link {
	display: inline-block;
}


/***************************************************************
## Captions
***************************************************************/

.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}


/***************************************************************
## Galleries
***************************************************************/

.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

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

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

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

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

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

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

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

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

.gallery-caption {
	display: block;
}


/***************************************************************
## Responsive Design
***************************************************************/

@media (max-height: 450px) {

	.overlay a {font-size: 20px}
	.overlay .closebtn {
		font-size: 40px;
		top: 15px;
		right: 35px;
	}

}

@media (max-width: 640px) {

    .close-button {
        top: -50px;
        font-size: 1.5rem;
    }

	.entry-content > *:not(.alignfull) {
		width: 100%;
		max-width: 420px;
		max-width: 95%;
		margin-left: auto;
		margin-right: auto;
	}

	.entry-content > *:not(.alignfull).alignwide {
		max-width: 420px;
		max-width: 95%;
	}

	.entry-title, .post-content, .archive-content,.entry-footer {
		max-width: 95%;
	}

	.entry-header .post-thumbnail {
	    margin-top: 20px;
	}

    .post-wrapper {
        padding: 0px 15px 0px 15px;
    }

    .video-container {
        max-width: 95vw;
        margin: 0 10px;
    }

    .video-title {
        bottom: -60px;
        font-size: 1rem;
    }

}

@media (max-width: 728px) {

	.site-footer .mainfooter .column {
		width: 100%;
	}

}

@media (max-width: 768px) {

	.entry-content > *:not(.alignfull) {
		width: 100%;
		max-width: 610px;
		max-width: 95%;
		margin-left: auto;
		margin-right: auto;
	}

	.entry-content > *:not(.alignfull).alignwide {
		max-width: 610px;
	}

	.entry-title, .post-content, .archive-content,.entry-footer {
		max-width: 95%;
	}

	.blog-column {
    	width: 94% !important;
	}

}

@media (max-width: 880px) {

	.grid_container .post {
		width: 98%;
	}

}

@media (max-width: 980px) {

	.footer-copyright {
	    width: 70%;
	}

}

@media (min-width: 1024px) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
		gap: 40px;
	}

	.overlay {
		display: none;
	}
/*
	.stop-scrolling {
		overflow: unset;
	}
*/

}

@media (max-width: 1024px) {

	.site-footer .mainfooter {
		display: block;
		justify-content: space-between;
	}

	.site-footer .mainfooter .column {
		width: 100%;
		padding-left: 0%;
	}

	.site-footer .mainfooter .column:first-child
	{
	    padding-left: 0%;
	    padding-right: 4%;
	    padding-top: 1%;
	}

	.column-inner {
		float: left;
	}

	.entry-content > *:not(.alignfull) {
		width: 100%;
		max-width: 750px;
		max-width: 95%;
		margin-left: auto;
		margin-right: auto;
	}

	.entry-content > *:not(.alignfull).alignwide {
		max-width: 750px;
		max-width: 95%;
	}

	.entry-title, .post-content, .archive-content,.entry-footer {
		max-width: 95%;
	}

}

@media (max-width: 1280px) {

	.entry-content > *:not(.alignfull) {
		width: 100%;
		max-width: 1000px;
		max-width: 95%;
		margin-left: auto;
		margin-right: auto;
	}

	.entry-content > *:not(.alignfull).alignwide {
		max-width: 1000px;
		max-width: 95%;
	}

	.entry-title, .post-content, .archive-content,.entry-footer {
		max-width: 95%;
	}

}

@media (max-width: 1536px) {

	.entry-content > *:not(.alignfull) {
		width: 100%;
		max-width: 1250px;
		max-width: 95%;
		margin-left: auto;
		margin-right: auto;
	}

	.entry-content > *:not(.alignfull).alignwide {
		max-width: 95%;
	}

	.entry-title, .post-content, .archive-content,.entry-footer, .navigation.posts-navigation {
		max-width: 95%;
	}

	.comments-area {
		max-width: 95%;
		margin: 0 auto;
	}

}

.show_this_1300 {
	display: none !important;
}

@media (max-width: 1300px) {

	.hide_this_1300 {
		display: none !important;
	}

	.show_this_1300 {
		display: block !important;
	}

}


.show_this_mobile {
	display: none !important;
}

@media (max-width: 781px) {

	.hide_this_mobile {
		display: none !important;
	}

	.show_this_mobile {
		display: block !important;
	}

}


/***************************************************************
## Animations
***************************************************************/

@keyframes fadeInUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUpWithGrow {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container approach - just add class to parent div */
.animate-children p {
    opacity: 0;
    animation: fadeInUp 1.5s ease-out forwards;
}

.animate-children p:nth-child(1) { animation-delay: 0.3s; }
.animate-children p:nth-child(2) { animation-delay: 1s; }
.animate-children p:nth-child(3) { animation-delay: 1.7s; }
.animate-children p:nth-child(4) { animation-delay: 2.5s; }
.animate-children p:nth-child(5) { animation-delay: 3.2s; }
.animate-children p:nth-child(6) { animation-delay: 3.7s; }
.animate-children p:nth-child(7) { animation-delay: 4.1s; }
.animate-children p:nth-child(8) { animation-delay: 4.6s; }

/* Override for elements with .grow class */
.animate-children p.grow {
    transform: translateY(30px);
    animation-name: fadeInUpWithGrow;
}

