/*!
Theme Name: MindVest
Theme URI: https://underscores.me/
Author: StartWeb
Author URI: https://startweb.ro/
Description: Custom theme for MindVest
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: mindvest
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.

MindVest is based on Underscores https://underscores.me/, (C) 2012-2020 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:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

:root{

	--primary-color: #1B3A6F;
	--secondary-color: #8DC63F;
	--green-color : #0B7A75;
	--sky-color : #B4C5E4;
	--gray-color : #4F5257;
	--ivory-color:#F2ECE4;
	
	--text-color:#2c3e50;
	--title-color:#fff;
	--link-color: #3d7bb6;
	--link-hover-color: #255f94;
	--light-text-color: #F2ECE4;

	--primary-font: "acumin-pro", sans-serif;
	--text-font:"Montserrat", sans-serif;
	
}


@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	color: var(--title-color);
	font-family: var(--primary-font);
	font-weight: 600;
}

p {
	margin-bottom: 1em;
}

span,p,ul,li,a,button,
.text-font {
	font-family: var(--text-font);
	font-weight: 400;
	color: var(--gray-color);
}

.dark-color{
	color: var(--gray-color);
}

.white-color{
	color: #fff;
}

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;

}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: var(--secundary-font);
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: var(--secundary-font);
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: var(--secundary-font);
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: var(--text-color);
	
	font-size: 1rem;
	line-height: 1.5;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: var(--secundary-font);
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family:var(--secundary-font);
}

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

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

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #ffffff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

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

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

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

figure {
	margin: 1em 0;
}

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

/* Links
--------------------------------------------- */

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

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

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

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

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	/* display: block;
	padding: 20px; */
	display: flex;
	align-items: center;
	height: 60px;
	width: auto;
}

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

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	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 {
	display: block;
	left: auto;
}

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

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

.main-navigation li {
	position: relative;

	&:after {
		content: '';
		bottom: -15px;
		opacity: 0;
		transition: all .3s ease-in-out;
	}

	&:hover::after {
		content: '';
		height: 2px;
		width: 100%;
		position: absolute;
		background: #fff;
		bottom: -5px;
		transition: all .3s ease-in-out;
		opacity: 1;
	}

}

body:not(.home) .main-navigation li {
	&:hover::after {
		background: var(--primary-color);
	}
}

.main-navigation a {
	display: block;
	text-decoration: none;
}
.main-navigation a:hover{
	color:var(--link-hover-color);
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	/* margin: 0 0 1.5em; */
}

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

.page-content,
.entry-content,
.entry-summary {
	/* margin: 1.5em 0 0; */
}

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

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

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

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

/* Make sure logo link wraps around logo image. */
.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;
}
.wp-block-group {
	padding: 4rem 0;
}
/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

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

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

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

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.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;
}

.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: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/*start sws*/
/*--------------------------------------------------------------*/
.site-footer {
	background-color: var(--primary-color);
	color: var(--light-text-color);
	padding-top: 40px;
	font-family: var(--primary-font);
}


.footer-columns {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	column-gap: 4em;
}
.footer-column:first-child {
	max-width:300px;
}

/* .footer-column {
	flex: 1 1 30%;
	min-width: 250px;
} */

.footer-column .wp-block-heading{
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 600;
	color: var(--light-text-color);
	margin-top: 1.5em;
}

.footer-column .widget {
	p{
		color: #fff
	}
}

.footer-bottom {
	border-top: 1px solid #2c3440;
	margin-top: 40px;
	padding: 20px 0;
	text-align: center;
	font-size: 14px;
	background-color: var(--secondary-color);
}
.site-footer a{
	color: var(--light-text-color);
}
.site-footer a:hover{
	color: var(--light-text-color);
}

a {
	color: var(--link-color);
	text-decoration: none;
}

a:hover {
	color: var(--link-hover-color);
}


/* Reset extra spacing and box model */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Full width, background split */
.hero-section {
	display: flex;
	align-items: center;
	min-height: 100vh;
	width: 100%;
	background: var(--primary-color);
	background-size: cover;
	position: relative;
	color: var(--light-text-color);
	padding-top:120px;
	margin-top:-120px;
}

/* Centers inner content */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Text only in left half */
.hero-content {
	width: 50%;
	padding: 60px 0;
}

.hero-section h1 {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 20px;
}

.hero-section p {
	font-size: 18px;
	margin-bottom: 50px;
	color: var(--light-text-color);
}

.hero-btn {
	background-color: #d0dee9;
	color: #2c3e50;
	padding: 14px 24px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: bold;
}.site-header.overlay-header
.hero-btn:hover{
	background-color:#b0c3d8;
}

body:not(.home) .site-header{
	background-color: #fff;
	border-bottom: 2px solid #f4f2f2ab;
}

body.sticky-header .site-header {
	position: sticky;
	top: -50px;
	z-index: 100;
}
.site-header{
	overflow: hidden;
}
/* Header full width overlay */
.site-header.overlay-header {
	position: relative;
	z-index: 99;
    background: #fff;
	overflow: hidden;
    border-bottom: 2px solid #f4f2f2ab;
}

/* Flex for logo/menu */
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.main-navigation ul {
	display: flex;
	gap: 30px;
	list-style: none;
}

.main-navigation a {
	color: var(--text-color);
	font-family: var(--primary-font);
	font-size: 14px;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	
}
.overlay-header .main-navigation a{
	color: var(--text-color);
}

.sticky-header .site-branding{
    scale: .75;
    transform: translateY(30px);
	transition: all 0.3s ease-in-out;
}
.site-branding{
	transition: all 0.3s ease-in-out;
}
.site-branding .custom-logo {
	max-width: 200px;
	margin-right: 30px;
}











/* CRISTI */


/* Style for the dashboard menu item */
.mindvest-dashboard-link a {
    background-color: #2d5b88;
    color: white !important;
    border-radius: 4px;
    padding: 5px 15px;
    margin-left: 10px;
    transition: background-color 0.3s;
}

.mindvest-dashboard-link a:hover {
    background-color: #1e4266;
}

/* Style for the dashboard shortcode */
.mindvest-dashboard-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.mindvest-dashboard-button {
    display: inline-block;
    background-color: #2d5b88;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px 0;
}

.mindvest-dashboard-button:hover {
    background-color: #1e4266;
}

.mindvest-security-notice {
    color: #666;
    font-size: 0.9em;
}

.mindvest-notice {
    padding: 15px;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 4px;
}

.back-to-top{
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #2d5b88;
	padding: 12px 15px;
	border-radius: 50%;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease-in-out;

	svg{
		width: 20px;
		height: 20px;
		fill: #fff;
	}

	&:hover {
		transform: translateY(-5px);
		transition: all 0.3s ease-in-out;
	}
}

/*--------------------------------------------------------------
# WooCommerce My Account Styling - Mindvest Theme
--------------------------------------------------------------*/

/* Main gradient background for My Account pages */
.main-bg-gradient {
    background: var(--primary-color);
    background: linear-gradient(45deg, rgba(27, 58, 111, 1) 0%, rgba(27, 58, 111, 1) 65%, rgba(141, 198, 63, 1) 100%);
}

/* My Account Page Container */
.woocommerce-account {
    
}

.woocommerce-account .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* My Account Navigation */
.woocommerce-MyAccount-navigation {
	padding: 2rem;
    margin-bottom: 2rem;


}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.woocommerce-MyAccount-navigation li {
    margin: 0;
}

.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 1rem 1.5rem;
    /* background: rgba(255, 255, 255, 0.1); */
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 10px;
    font-family: var(--primary-font);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid #fff;
    text-align: center;
}


.woocommerce-MyAccount-navigation li.is-active a {
    background: var(--primary-color);
    color: #fff;
    /* box-shadow: 0 5px 15px rgba(141, 198, 63, 0.3); */
	
}
.woocommerce-MyAccount-navigation a:hover{
	box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px 0px;
	    border: 1px solid rgb(246, 246, 246);
}
.woocommerce-MyAccount-navigation li.is-active a:hover {
	border-color:var(--primary-color);
}

/* My Account Content */
.woocommerce-MyAccount-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem 1rem; 
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    border: 1px solid #ccc;
}

/* Page Titles */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.woocommerce-MyAccount-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Welcome Message */
.woocommerce-MyAccount-content p {
    color: var(--text-color);
    font-family: var(--text-font);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Tables */
.woocommerce-MyAccount-content table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    width: 100%;
}

.woocommerce-MyAccount-content table th {
    background: var(--primary-color);
    color: var(--light-text-color);
    font-family: var(--primary-font);
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border: none;
}

.woocommerce-MyAccount-content table td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-color);
    font-family: var(--text-font);
}

.woocommerce-MyAccount-content table tr:last-child td {
    border-bottom: none;
}



/* Buttons */
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content button,
.woocommerce-MyAccount-content input[type="submit"] {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--primary-font);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content button:hover,
.woocommerce-MyAccount-content input[type="submit"]:hover {
    background: var(--primary-color);
    color: var(--light-text-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 58, 111, 0.3);
}

/* Forms */
.woocommerce-MyAccount-content form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    margin-bottom: 2rem;
}

.woocommerce-MyAccount-content .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce-MyAccount-content label {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="tel"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content textarea {
    /* width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--text-font);
    color: var(--text-color);
    transition: all 0.3s ease; */
	height: 50px!important;
	border: unset!important;
	border-bottom: 1px solid var(--primary-color)!important;
	border-radius: 0!important;
	width: 100%!important;
}

.woocommerce-MyAccount-content input[type="text"]:focus,
.woocommerce-MyAccount-content input[type="email"]:focus,
.woocommerce-MyAccount-content input[type="password"]:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus {
    /* border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.2); */
	height: 50px!important;
	border: unset!important;
	border-bottom: 1px solid var(--primary-color)!important;
	border-radius: 0!important;
	width: 100%!important;
}

/* Address Cards */
.woocommerce-Address {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.woocommerce-Address-title h3 {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.woocommerce-Address-title .edit {
    font-size: 14px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.woocommerce-Address-title .edit:hover {
    color: var(--primary-color);
}

/* Order Status */
.woocommerce-order-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce-order-status.status-completed {
    background: #d4edda;
    color: #155724;
}

.woocommerce-order-status.status-processing {
    background: #d1ecf1;
    color: #0c5460;
}

.woocommerce-order-status.status-pending {
    background: #fff3cd;
    color: #856404;
}

.woocommerce-order-status.status-cancelled,
.woocommerce-order-status.status-refunded {
    background: #f8d7da;
    color: #721c24;
}

/* Downloads */
.woocommerce-MyAccount-downloads table th,
.woocommerce-MyAccount-orders table th {
    background: var(--primary-color);
    color: var(--light-text-color);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .woocommerce-MyAccount-navigation ul {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .woocommerce-account {
        padding: 1rem 0;
    }
    
    .woocommerce-MyAccount-navigation ul {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .woocommerce-MyAccount-navigation,
    .woocommerce-MyAccount-content {
        padding: 1.5rem;
        margin-bottom: 1rem;
        border-radius: 10px;
    }
    
    .woocommerce-MyAccount-content h2 {
        font-size: 1.5rem;
    }
    
    .woocommerce-MyAccount-content table {
        font-size: 14px;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
    
    .woocommerce-MyAccount-content table th,
    .woocommerce-MyAccount-content table td {
        padding: 0.75rem 0.5rem;
        min-width: 120px;
    }
    
    .woocommerce-MyAccount-content form {
        padding: 0;
    }

}

@media screen and (max-width: 480px) {
    .woocommerce-account .container {
        padding: 0 15px;
    }
    
    .woocommerce-MyAccount-navigation,
    .woocommerce-MyAccount-content {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .woocommerce-MyAccount-navigation a {
        padding: 0.75rem 1rem;
        font-size: 13px;
    }
    
    .woocommerce-MyAccount-content h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .woocommerce-MyAccount-content table th,
    .woocommerce-MyAccount-content table td {
        padding: 0.5rem 0.25rem;
        font-size: 12px;
    }
    
    .woocommerce-MyAccount-content .button,
    .woocommerce-MyAccount-content button,
    .woocommerce-MyAccount-content input[type="submit"] {
        padding: 10px 16px;
        font-size: 13px;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .woocommerce-Address {
        padding: 1rem;
    }
}
.woocommerce-MyAccount-content .woocommerce-message::before {
	display: none;
}
.u-column1.col-1.woocommerce-Address{
	width:100%;
}
/* Dashboard Welcome Section */
.woocommerce-MyAccount-content .woocommerce-message {
    /* background: var(--secondary-color); */
    color: var(--primary-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: none;
    font-family: var(--text-font);
    font-weight: 500;
}

/* Navigation Icons (if you want to add icons) */
.woocommerce-MyAccount-navigation a:before {
    margin-right: 8px;
    font-size: 16px;
}

/* Enhanced Welcome Dashboard Section */
.woocommerce-MyAccount-content .woocommerce-MyAccount-content--dashboard {
    background: transparent;
    padding: 0;
}

.woocommerce-MyAccount-content--dashboard .woocommerce-message {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--light-text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.woocommerce-MyAccount-content--dashboard p {
    color: var(--light-text-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Dashboard Quick Stats Cards */
.mindvest-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.mindvest-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mindvest-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mindvest-stat-card h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--primary-font);
}

.mindvest-stat-card p {
    color: var(--light-text-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Order Actions Enhancement */
.woocommerce-orders-table__row .woocommerce-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.woocommerce-orders-table__row .woocommerce-button:hover {
    background: var(--primary-color);
    color: var(--light-text-color);
}

/* Order Details Enhancement */
.woocommerce-order-details {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Edit Account Form Enhancement */
/*.woocommerce-EditAccountForm {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.woocommerce-EditAccountForm .form-row-wide {
    grid-column: 1 / -1;
}
*/
/* Address Book Enhancement */
.u-columns.woocommerce-columns-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Payment Methods Enhancement */
.woocommerce-SavedPaymentMethods {
    display: grid;
    gap: 1rem;
}

.woocommerce-SavedPaymentMethods-token {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.woocommerce-SavedPaymentMethods-token:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(141, 198, 63, 0.2);
}

/* Custom Logout Link Styling */
.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout a {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: #dc3545;
    color: #fff;
}

/* MindVest Dashboard Link Integration */
.woocommerce-MyAccount-navigation .mindvest-dashboard-nav-item a {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(141, 198, 63, 0.3);
}

.woocommerce-MyAccount-navigation .mindvest-dashboard-nav-item a:hover {
    background: var(--primary-color);
    color: var(--light-text-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 58, 111, 0.4);
}

/* Loading Animation */
.woocommerce-MyAccount-content.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 999;
}

.woocommerce-account{
	h1.entry-title{
		color: var(--primary-color);
	}
}

/* Print Styles */
@media print {
    .woocommerce-account,
    .woocommerce-MyAccount-navigation,
    .woocommerce-MyAccount-content {
        background: #fff !important;
        color: #000 !important;
        box-shadow: none !important;
    }
}

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

	body:not(.home) .mobile-menu-toggle svg{
		fill: var(--primary-coloropac);
	}

	.info-box {
		padding: 25px;

		img.info-box-icon{
			width: 70px;
			height: 70px;
			top: -35px;
		}
		p.info-box-title {
			font-size: 1.6rem;
			margin: 20px auto;
		}

	}

	.woocommerce-account{
		.subscription_activity_logs td{
			white-space: normal;

			.sumo_alert_box{
				padding: 10px;
				margin: 10px 0;
			}
		}
	}

	.woocommerce .woocommerce-accountx .container {
		padding: 0;
	}

	section div.section-packs-description p {
		font-size: 1.4rem;
	}

	p.section-title {
		font-size: 1.7rem;
	}

	.gap-4.mobile-flex-column{
		gap: 3.5rem !important;
	}

	.price-card{
		& .price-card-header{
			min-height: auto;
		}
	}

	img.section-4-image.img-fluid {
		margin-bottom: 30px;
	}

	.home form{
		padding: 20px;
		margin-top: 50px;
		box-shadow: 2px 2px 10px 5px #0002;
		border-radius: 30px;

		input{
			font-size: .9rem;
		}

		.wpcf7-not-valid-tip {
			font-size: .7rem;
		}

		.wpcf7-response-output {
			border-radius: 30px;
			padding: 5px 20px;
			font-size: .9rem;
		}

	}

	.hero-section{
	
		&:after {
			content: '';
			width: 100%;
			height: 100%;
			position: absolute;
			left: 0;
			top: 0;
			background: #00000026;
		}

		.hero-content{
			width: 100%;
			padding: 0;
		}

		h1 {
			font-size: 32px;
		}

		p {
			font-size: 16px;
			margin-bottom: 0;
		}

		a.view-more, a.link {
			width: 100%;
			display: block;
			text-align: center;
		}

		a.link {
			margin-top: 20px;
		}
		
	}

	.mobile-menu-toggle svg{
		/* fill: #fff; */
		width: 30px;
		height: 30px;
	}
	
	.site-branding .custom-logo {
		max-width: 150px;
		margin-right: 30px;
		padding: 10px 0;
	}

	.mobile-flex-column{
		flex-direction: column;
	}

	.mobile-menu{
		display: block;
		margin-top: 30px;
		border-bottom: 1px solid var(--ivory-color);
		padding-bottom: 20px;
		margin-bottom: 20px;
		height: unset;

		#primary-menu{
			flex-direction: column;

			a{
				color: var(--ivory-color);
				font-size: 16px;
			}
		}

	}

}


/* Andr */

.animate-slide-left { 
	
  animation-duration: 0.75s;
  animation-delay: 0.5s;
  animation-name: animate-fade;
  animation-timing-function: cubic-bezier(.26, .53, .74, 1.48);
  animation-fill-mode: backwards;
  animation-name: animate-slide; 
}

@keyframes animate-slide {
  0% {
    opacity: 0;
    transform: translate(-20px , 0px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.animate-slide-right {  
  animation-duration: 0.75s;
  animation-delay: 0.5s;
  animation-name: animate-fade;
  animation-timing-function: cubic-bezier(.26, .53, .74, 1.48);
  animation-fill-mode: backwards;
  animation-name: animate-slide-r; 
}

@keyframes animate-slide-r {
  0% {
    opacity: 0;
    transform: translate(20px , 0px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.delay-1 {
  animation-delay: 0.6s;
}
.delay-2 {
  animation-delay: 0.9s;
}
.delay-3 {
  animation-delay: 1.2s;
}
.delay-4 {
  animation-delay: 1.5s;
}
.delay-5 {
  animation-delay: 1.8s;
}
.delay-6 {
  animation-delay: 2.1s;
}



.woocommerce-MyAccount-content {
    border: none;
}

.woocommerce-MyAccount-navigation li a {
    background: linear-gradient(90deg, rgb(246, 246, 246) 0%, rgb(246, 246, 246) 100%);
    color: var(--primary-color);
    display: inline-block;
    padding: 15px;
    border-radius: 0px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
	text-align: left;
}

.woocommerce-MyAccount-navigation li.is-active a {
	background: var(--primary-color);
	color: #fff;
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout a
 {
	background: #fff;
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}


/* Valuation */

.steps-intro hr{
	background: #ccc;
    margin: 0 auto;
}

.steps-flow {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px 40px;

    .step-icon::before , .step-icon::after {
        content: '';
        display: block;
        position: absolute;
        width: 6px;
        background: #8DC63F;
        height: 0;
        transition: all .5s ease;
        left: 24px;
    }
    .step-card:hover .step-icon:after, .step-card:hover .step-icon:before {
        height: 15px;
    }
    .step-icon:after {
        bottom: -16px;
    }
    .step-icon:before {
        top: -16px;
    }
}
.step-card{
    display: flex;
    gap: 20px;
    padding:15px 25px;
}
.step-card:hover .step-icon.hex-border {
	margin-top: 22px;
}
.step-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.step-description{
    font-size: 14px;
    line-height: 1.5rem;
}

.step-icon.hex-border{
    background-image: url('/wp-content/uploads/2025/11/hexagon-1.svg');
    padding: 10px;
	background-repeat: no-repeat;
    height: fit-content;
	position:relative;
	transition: all .5s ease;

	svg{
		padding: 4px;
	}

}

/* About us */
.hero-about {
    padding-top:40px;
    padding-bottom:40px;
}
.grid-template-columns-3{
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 10px;
}

.about-cards{

	.step-card{
		display: inline-flex;
		gap: 20px;
		padding: 15px 25px;
		img {
			width:70px;
			height: 70px;
			object-fit:cover;
		}
	}

	.step-card > div:last-child{
		flex:1;
	}
}
.main-bg-overlay .about-cards{
	background-color:#fff;
    border-radius: 15px;
    margin: 2rem auto;
}

.btn-primary {
background-color: var(--primary-color);
        color: #fff;
        padding: 15px 30px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: 2px solid var(--primary-color);
}
.btn-primary:hover{
	 color:var(--primary-color);
	 /* border-color:#fff; */
	 background-color: #fff;

}
 .btn-transparent:hover {
	color:var(--primary-color);
	background-color: #fff;
}
.btn-transparent {
    background-color: transparent;
    color: #fff;
    padding: 15px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid #fff;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
	.grid-template-columns-3, .grid-template-blog{
			grid-template-columns: repeat(2, auto);
		}
}
@media screen and (max-width: 767px) {
	.steps-flow, .grid-template-columns-3,.grid-template-blog{
		grid-template-columns: repeat(1, auto);
	}
	.steps-flow .step-card {
			
		padding-left:0;
		padding-top:0;
	}
	
	.about-cards {
		margin-top:2.5rem;
		
		& .step-card {
			padding:10px;
			gap:12px;
			img {
				width: 55px;
				height: 55px;
			}
		} 
	}

}

/* My account */

.woocommerce .woocommerce-accountx {
	.woocommerce-button,.button {
		background : rgb(246, 246, 246);
		color: var (--primary-color);
		text-align: center;
		font-size: 14px;
		display: block;
		padding: 12px;
		margin-top: 5px;
		margin-bottom: 5px;;
	}
	.woocommerce-button:hover,.button:hover {
		box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px 0px;
		background-color: rgb(246, 246, 246);
	}
	table{
		th {
			padding: 9px 12px;

			span{
				color: #fff;
				font-size: 16px;
			}
		}
		td {
			padding: 9px 12px;
			font-size: 16px;
			line-height: 1rem;
			
		}
	}
	.sumo-view-subscription {
		table {
			/* .button {
				background : rgb(246, 246, 246);
				text-align: center;
				font-size: 14px;
				display: block;
				padding: 12px;
			} */
			tr > td:last-child, tr > td:last-child mark, tr > td:last-child a, tr > td:last-child span {
				font-size: 15px;
				color: var(--primary-color);
			}
		}
	}
	.addresses {
		.col-2 , .col-1{
			width:100%;
			float:none;
		}
		.woocommerce-column {
			background: #fff;
			border-radius: 10px;
			overflow: hidden;
			box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
			margin-bottom: 2rem;
			width: 100%;

			h2 {
				font-size: 1rem;
				padding: 1rem;
				margin-bottom:0;
				border-bottom: 1px solid #f0f0f0;
				color: var(--primary-color);
				font-family: var(--text-font);
			}
			address {
				border:0;
				padding: 1rem;
			}
		}
	} 

	.woocommerce-Address {
			width:100%;
			padding:0;

			.woocommerce-Address-title {
				
				padding: 1rem;
				margin-bottom:0;
				border-bottom: 1px solid #f0f0f0;

				h2{
					color: var(--primary-color);
					font-family: var(--text-font);
					font-size: 1rem;
				}
				.edit{
					background: rgb(246, 246, 246);
    				font-size: 14px;
					padding: 10px;
					color: var(--primary-color);
				}
			}
			address {
				border:0;
				padding: 1rem;
			}
		
	}

}
.woocommerce-EditAccountForm fieldset{
	padding: 0;
    margin-top: 1rem;
}
body .select2-container .select2-dropdown, body .select2-container .select2-selection {
  	border: 0;
    border-bottom: 1px solid #444;
    border-radius: 0;
}


.section-packs-description p{
	font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
    line-height: 1;
}

/* Blog */


.archive-blog .pagination {
	justify-content: center;
	margin-top: 1.5rem;
    gap: 10px;
}
.grid-template-blog{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

	.post-thumbnail {
		aspect-ratio: 4 / 3;
		overflow: hidden;
	}
	.post-thumbnail img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
	article .entry-header{
 		margin-top: 10px;
		margin-bottom: 20px;

		h3 {
			font-size:18px;
			margin-bottom:5px;
		}
	}
	   
}

