/*!
Theme Name: PRO-FUTURE
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
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: pro-future
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.

PRO-FUTURE 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
	 ========================================================================== */

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

:root {
	--main: #CDA274;
	--darker-main: #b68c60;
	--padding: 50px;
	--text-size: 16px; 
	--mini-text-size: 14px; 
	--h1-size: 48px; 
	--h2-size: 32px; 
	--h3-size: 24px; 
	--h4-size: 20px; 
}

@media screen and (max-width: 1600px){
	:root {
		--main: #CDA274;
		--darker-main: #b68c60;
		--padding: 30px;
		--text-size: 14px; 
		--mini-text-size: 12px; 
		--h1-size: 42px; 
		--h2-size: 28px; 
		--h3-size: 20px; 
		--h4-size: 18px; 
	}
}

@media screen and (max-width: 1200px){
	:root {
		--padding: 25px;
		--text-size: 13px; 
		--mini-text-size: 11px; 
		--h1-size: 36px; 
		--h2-size: 24px; 
		--h3-size: 18px; 
		--h4-size: 16px; 
	}
}

@media screen and (max-width: 768px){
	:root {
		--padding: 20px;
		--text-size: 12px; 
		--mini-text-size: 10px; 
		--h1-size: 32px; 
		--h2-size: 22px; 
		--h3-size: 16px; 
		--h4-size: 14px; 
	}
}

@media screen and (max-width: 480px){
	:root {
		--padding: 15px;
		--text-size: 12px; 
		--h1-size: 28px; 
		--mini-text-size: 8px; 
		--h2-size: 20px; 
		--h3-size: 14px; 
		--h4-size: 13px; 
	}
}
/**
 * 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: var(--h1-size);
}

/* 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: monospace, monospace;
	font-size: var(--text-size);
}

/* 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: monospace, monospace;
	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: inherit;
	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: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 0;
	margin-top: 0;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

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

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

big {
	font-size: 125%;
}

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

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


ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}


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
--------------------------------------------- */



a:hover,
a:focus,
a:active {
	color: var(--main);
}

a:focus {
	outline: thin dotted;
}

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

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

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

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;
	width: 100%;
}

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

.main-navigation a {
	display: block;
	text-decoration: none;
}

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

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

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

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

.header-topbar {
	background-color: var(--main);
	padding: 6px max(var(--padding), calc((100% - 1920px) / 2));
	display: flex;
	gap: 20px;
	align-items: center;
}

footer#colophon {
    padding: 50px max(var(--padding), calc((100% - 1920px) / 2));
    background: var(--main);
}
.copyright {
	padding: 10px max(var(--padding), calc((100% - 1920px) / 2));
	background-color: #835839;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: space-between;
	color: white;
}
.header-botbar {
		padding: 0 max(var(--padding), calc((100% - 1920px) / 2));
		padding-right: calc((100% - 1920px) / 2);
		height: 80px;
}
.header-topbar--contacts {
    display: flex;
    gap: 20px;
}

.header-botbar--logo img {
	height: 30px;
	width: auto;
}


#page {
  font-family: "Roboto Slab", serif;
  letter-spacing:1px;
}
.header-topbar--contacts a {
	color: white;
	text-decoration: none;
	display: flex;
    align-items: center;
    gap: 10px;
	font-size: var(--mini-text-size);
	font-weight: 400;
}

.header-topbar--cta-text {
	color: white;
	font-weight: 400;
	font-size: var(--mini-text-size);
}
.header-topbar--cta-text a {
	color: white;
}
.header-topbar--divider {
    width: 1px;
    height: 20px;
    background: white;
}

.header-botbar---site-wrapper {
    display: flex
;
    align-items: center;
    gap: 50px;
	height: 100%;
}
ul.menu {
    margin: 0;
    padding: 0;
	display: flex;
	list-style-type: none;
	gap: 0;
	flex-wrap: wrap;
	row-gap: 5px;
}
ul.menu ul {
	list-style-type: none;
}

/* Main navigation styles */
.header-navigation--wrapper {
    width: 100%;
    position: relative;
}

.menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.menu-item {
    position: relative;
}

.menu-item a {
    display: block;
    padding: 15px;
    color: #333;
    text-decoration: none;
    font-size: var(--text-size);
    transition: all 0.3s ease;
}

.menu-item a:hover {
    color: var(--main);
}

.menu-item-has-children > a::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Submenu styles */
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border: 1px solid var(--main);
    z-index: 1000;
    padding: 10px 0;
    border-radius: 0;
	margin: 0;
}

.sub-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--main);
}

.menu-item-has-children:hover > .sub-menu {
    display: block;
}

.sub-menu .menu-item {
    width: 100%;
}

.sub-menu .menu-item a {
    padding: 10px 20px;
}

/* Current menu item styles */
.current-menu-item > a,
.current_page_item > a {
    color: var(--main);
    font-weight: 500;
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        width: 100%;
    }

    .menu-item {
        width: 100%;
    }

    .sub-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        padding-left: 20px;
    }

    .sub-menu::before {
        display: none;
    }

    .menu-item-has-children.active > .sub-menu {
        display: block;
    }

    .menu-item-has-children > a::after {
        float: right;
        transform: rotate(0);
    }

    .menu-item-has-children.active > a::after {
        transform: rotate(180deg);
    }

    /* Mobile menu toggle */
    .menu-toggle {
        display: block;
        padding: 15px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--main);
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}
.header-botbar {
    display: flex
;
    justify-content: space-between;
    align-items: center;
}
a.header-botbar--cta-button {
    height: 100%;
    background: var(--main);
    padding: 0 25px;
	position: relative;
    display: flex
;
    align-items: center;
    color: white;
    text-decoration: none;
	transition-duration: 0.2s;
	font-size: var(--text-size);
}

a.header-botbar--cta-button::after {
    content: '';
    position: absolute;
    bottom: -0.5px;
    left: -0.5px;
    width: 15px;
    height: 15px;
    background: white;
	transition-duration: 0.2s;
}
a.header-botbar--cta-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -15px;
    width: 15px;
    height: 15px;
	border-radius: 100%;
    background: var(--main);
	transition-duration: 0.2s;
}

a.header-botbar--cta-button:hover {
    background: var(--darker-main);
}

a.header-botbar--cta-button:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -15px;
    width: 15px;
    height: 15px;
    background: var(--darker-main);
}
a.header-botbar--cta-button:hover::before {
    content: '';
    position: absolute;
    bottom: -0.5px;
    left: -0.5px;
    width: 15px;
    height: 15px;
	border-radius: 100%;
    background: white;
}
.header-botbar--header-actions {
    height: 100%;
    display: flex
;
    align-items: center;
    gap: 30px;
	flex: none;
}

a.header-action-btn {
    transition-duration: 0.2s;
}

a.header-action-btn:hover svg path {
    fill: var(--darker-main);
}
.header-botbar--logo {
    flex: none;
}

button.mobile-view.open-menu-button {
    padding: 0;
    border: none;
    background: transparent;
	display: flex;
	gap: 10px;
	align-items: center;
}

@media screen and (max-width: 1600px){
	.header-botbar---site-wrapper {
		gap: 25px;
	}
	.menu-item a {
		padding: 0 13px;
	}
	a.header-botbar--cta-button {
		padding: 0 20px;
		font-size: var(--text-size);
		flex: none;
	}
	.header-botbar {
		height: 70px;
	}
	
}


.open-menu-button--text {
	font-size: var(--h3-size);
	text-transform: uppercase;
	font-weight: 700;
	color: var(--main);
}


.open-menu-button--icon > span {
    display: block;
    height: 3px;
    width: 20px;
    background: var(--main);
}
.open-menu-button--icon {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: end;
}
.open-menu-button--icon > span:nth-child(1) {
	width: 15px;
}
.open-menu-button--icon > span:nth-child(3) {
	width: 12px;
}


@media screen and (max-width: 1100px){
		.header-botbar {
		height: 60px;
	}
	.header-botbar--header-actions {
		gap: 20px;
	}
	.header-botbar--logo img {
		height: 25px;
	}
	.header-botbar--menu {
		display: none;
	}
	.header-botbar--menu.open {
		position: fixed;
		display: block;
		top: 0;
		left: 0;
		background: white;
		height: 100%;
		width: 100%;
		z-index: 20;
	}
	.header-topbar {
		flex-direction: row-reverse;
		justify-content: start;
	}
	.mobile-view.header-topbar--cta-text {
		flex: 1;
	}
	.menu-item a {
		padding: 0px;
	}
	nav.header-navigation--wrapper {
		margin-top: 20px;
	}
	.mobile-header-between {
		display: flex;
		justify-content: space-between;
	}
	.header-botbar--menu-wrapper {
		height: 100%;
		width: 100%;
		padding: var(--padding);
		padding-top: 100px;
	}
	.header-botbar--menu.open ul {
		flex-direction: column;
	}
}





@media screen and (max-width: 500px){
	.mobile-view.header-topbar--cta-text, .header-topbar--divider {
		display: none;
	}
	a.header-botbar--cta-button {
		display: none;
	}
	.header-botbar {
		padding: 0 max(var(--padding), calc((100% - 1920px) / 2));
		padding-right: max(var(--padding), calc((100% - 1920px) / 2));
	}
}

@media screen and (max-width: 400px){
	.header-topbar--contacts a:not(:nth-child(1)):not(:nth-child(2)) {
		display: none;
	}
	.header-botbar--logo img {
		height: 22px;
	}
}


.home header.entry-header {
    display: none;
}


span.cart-count {
    display: flex
;
    height: 20px;
    width: 20px;
    justify-content: center;
    align-items: center;
    background: var(--main);
    color: white;
    text-decoration: none;
	position: absolute;
	bottom: -10px;
	right: -10px;
}

.link-cart {
	position: relative;
}

.entry-content, div#primary {
	padding: 0 max(var(--padding), calc((100% - 1920px) / 2));
	overflow:	hidden ;
}
.comments-area {
	padding: 0 max(var(--padding), calc((100% - 1920px) / 2));

}

body:not(.home) .entry-content {
	padding-top: 30px;
}


.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
    font-size: 100%;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 10px 0 10px 0;
    left: auto;
    color: white;
    background-color: var(--main);
    border: 0;
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
}


.woocommerce-error, .woocommerce-info, .woocommerce-message {
        background-color: #cda27414;
}
.custom-product-wrapper {
    display: grid
;
gap: 50px;
    grid-template-columns: 30fr 70fr;
}

.product-title-wrapper h1.entry-title {
	color: black;
}
.product-title-wrapper .custom-breadcrumbs {
	color: var(--main);
}
.product-title-wrapper .custom-breadcrumbs a {
	color: var(--main);
}

.course-info-item {
    display: grid
;
    grid-template-columns: 35px 1fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--main);
}
.course-info-item a {
	color: var(--main);
}
.product-image-section img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.course-info-item span.course-form-name {
    font-size: var(--text-size);
    color: var(--main);
    font-weight: 600;
}

.product-info-wrapper-infos {
    padding: 20px;
	padding-bottom: 0;
    border: 1px solid var(--main);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.cart-button-wrapper {
	margin-top: 20px;
		margin-left: -20px;
	margin-right: -20px;
}

.cart-button-wrapper .quantity {
    display: none;
}

button.single_add_to_cart_button {
    width: 100%;
    border-radius: 0 !important;
    background: var(--main) !important;
	font-family: var(--text-font);
	height: 55px;

}


.woocommerce div.product form.cart {
	margin: 0;
}



.product-info-wrapper {
    display: grid
;
    grid-template-columns: 60fr 40fr;
    gap: 20px;
	margin-top: 20px;
}

.product-info-wrapper-trener {
    border: 1px solid var(--main);
	padding: 20px;
}
.trener-image img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 20px 0 20px 0;
}
.trener-image {
    display: flex
;
}
.trener-info {
    display: grid
;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
	margin-bottom: 20px;
}
.trener-label {
    font-size: var(--text-font);
    opacity: 0.7;
}
.trener-name {
    font-size: var(--h4-size);
	color: var(--main);
}
.trener-short-desc {
    font-size: var(--text-size);
    width: 100%;
}
.trener-cechy {
    margin-top: 20px;
	display: grid;
	grid-gap: 10px;
}
.cecha-item-label {
    font-size: var(--mini-text-size);
	opacity: 0.7;
}
.cecha-item-value {
    color: var(--main);
    font-weight: 600;
}
a.trener-link-button {
    margin-top: 20px;
    display: block;
    padding: 10px;
    text-align: center;
    border-top: 1px solid var(--main);
    color: var(--main);
    text-decoration: none;
}

  .tabs-wrapper {
      margin-top: 50px;
  }
  
  .tabs-navigation {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      margin-bottom: 20px;
	  	  border-bottom: 2px solid var(--main);
  }
  
  .tab-button {
      padding: 13px 25px;
      border: none;
      background: white;
	  border-radius: 0;
	  color: var(--main);
	  font-weight: 400;
	  font-size: var(--text-size);
      cursor: pointer;
	  font-family: var(--text-font);

      transition: all 0.3s ease;
  }
  .harmonogram-title {
    font-size: var(--text-size);
    font-weight: 600;
    color: var(--main);
    border-bottom: 1px solid;
    padding-bottom: 10px;
}
.harmonogram-desc table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.harmonogram-desc table td,
.harmonogram-desc table th {
    border: 1px solid var(--main);
    padding: 8px;
    text-align: left;
}

.harmonogram-desc table th {
    background-color: var(--main);
    color: white;
}

.harmonogram-desc table tr:nth-child(even) {
    background-color: #f6f6f6ab;
}
  .tab-button.active {
      background: var(--main);
      color: white;
	  font-weight: 600;
  }
  
  .tab-content {
      display: none;
  }
  
  .tab-content.active {
      display: block;
  }
  
  .harmonogram-wrapper {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  
  .harmonogram-item {
      border-bottom: 1px solid #eee;
      padding-bottom: 15px;
  }
  
  .harmonogram-title {
      font-weight: bold;
      margin-bottom: 10px;
  }
.tab-content {
	font-size: var(--text-size);
	overflow-x: auto;
}

nav.navigation.post-navigation {
    display: none;
}


.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover {
    background-color: var(--darker-main);
    text-decoration: none;
    background-image: none;
    color: white;
}
.woocommerce-Reviews {
	margin-top: 50px;
}
div#comments {
    display: none !important;
}

.product-tabs {
    margin-top: 50px;
}

@media screen and (max-width: 1100px){
	.custom-product-wrapper {
    display: flex
;
    gap: 20px;
	flex-direction: column-reverse;
}
.product-image-section img {
	max-height: 300px;
	display: grid;
}
}
@media screen and (max-width: 786px){
.product-info-wrapper {
    display: grid
;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}
.tabs-navigation {
	flex-wrap: nowrap;
	flex-direction: column;
}
.trener-image img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 20px 0 20px 0;
}
}
.product-filters--courses-wrapper {
    padding: var(--padding);
    background: var(--main);
    border-radius: 50px 50px 0 0;
}

  .woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before {
	display: none;
  }
p.woocommerce-result-count, select.orderby {
    height: 49px;
    display: flex
;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid var(--main);
}
nav.woocommerce-breadcrumb {
    display: none;
}
.product-entry-header {
	margin-bottom: 50px;
}


header.entry-header.product-entry-header {
    margin-left: calc(-1 * (100vw - 100%) / 2);
    margin-right: calc(-1 * (100vw - 100%) / 2);

}




@media screen and (min-width: 1101px){
	.mobile-view {
		display: none !important;
	}
}
@media screen and (max-width: 1100px){
	.desktop-view {
		display: none !important;
	}
}

h1.entry-title {
	font-size: var(--h2-size);
	margin: 0;
	color: white;
	font-weight: 500;
}

header.entry-header {
    position: relative;
	padding: 50px max(var(--padding), calc((100vw - 1920px) / 2));
}
header.entry-header .video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	z-index: -1;
	background-color: var(--darker-main);
}
header.entry-header .video-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
}
.custom-breadcrumbs *, .custom-breadcrumbs {
    color: white;
    text-decoration: none;
	
}
.custom-breadcrumbs {
opacity: 0.7;
}


.price-style {
	color: black !important;
	font-weight: 600;
}

.mini-header-text {
    color: #CDA274;
    font-family: "Roboto Slab";
	font-size: var(--text-size);
    font-weight: 400;
    line-height: normal;
	line-height: 110%;
}


.main-header {
    font-size: var(--h2-size);
    font-weight: 500;
	margin: 0;
	line-height: 110%;
}

.grid-2-wrapper-inner {
    display: grid
;
    grid-template-columns: 2fr 4fr;
}

@media screen and (max-width: 1200px){
	.grid-2-wrapper-inner {
    display: grid
;
    grid-template-columns: 1fr;
	gap: 50px;
}
}



.product-info-wrapper-trener.single-trener-wrapper {
    margin-top: 50px;
	    display: grid
;
    grid-template-columns: 300px 1fr;
    gap: 50px;
}

.trener-image-single img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 30px 0 30px 0;
}

@media screen and (max-width: 1200px){
	.product-info-wrapper-trener.single-trener-wrapper {
    margin-top: 50px;
	    display: grid
;
    grid-template-columns: 220px 1fr;
    gap: 50px;
}
}
@media screen and (max-width: 786px){
	.product-info-wrapper-trener.single-trener-wrapper {
    margin-top: 40px;
	    display: grid
;
    grid-template-columns: 1fr;
    gap: 30px;
}
.product-info-wrapper-trener.single-trener-wrapper {
	padding: 0;
	border: none;
}
}

a.button-link {
    padding: 12px 30px;
    display: block;
	font-size: var(--text-size);
    border: 1px solid var(--main);
    border-radius: 20px 0 20px 0;
    color: var(--main);
    text-decoration: none;
    width: fit-content;
}
.buttons-wrapper {
    margin-top: 30px;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
	float: unset;
	width: 100%;
}
.course-item.woocommerce-cart-form__cart-item.cart_item {
    padding-bottom: 20px;
}
.course-item.woocommerce-cart-form__cart-item.cart_item .quantity {
    display: none;
}
.woocommerce a.remove {
	display: block;
	width: fit-content;
	color: var(--main);
	font-size: var(--text-size);
	padding: 10px 20px;
	border-radius: 0;
	height: fit-content;
	float: unset;
	border: 1px solid var(--main);
	margin-top: 20px;
	font-weight: 400;
}

.woocommerce-cart-form {
	float: left;
	width: calc(40% - 25px);
}

.cart-collaterals {
	float: right !important;
	width: calc(60% - 25px) !important;
}
.coupon {
    display: flex
;
    gap: 10px;
	margin-top: 20px;
	margin-bottom: 10px;
}
.coupon input {
    width: 100%;
	border: 1px solid var(--main);
	border-radius: 0;
}
.coupon button {
	flex: none;
}
.checkout-wrapper {
    display: grid
;
    grid-template-columns: 3fr 4fr;
	gap: 50px;
}
@media screen and (max-width: 1400px){
	.checkout-wrapper {
		display: grid
	;
		grid-template-columns: 1fr 1fr;
		gap: 50px;
	}
}
@media screen and (max-width: 1000px){
	.checkout-wrapper {
		display: grid
	;
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    float: unset;
    width: 100%;
}
.checkout-wrapper h3 {
	font-size: var(--h3-size);
	font-weight: 500;
	color: var(--main);
}

tr.cart-subtotal, .order-total {
    font-size: var(--text-size);
}

.checkout-wrapper input, .checkout-wrapper textarea {
	border-radius: 1px !important;
	border: none !important;
	border-bottom: 1px solid var(--main) !important;
	font-size: var(--text-size);
}
.woocommerce-input-wrapper * {
	font-size: var(--text-size);
}
.wc_payment_method, .woocommerce-terms-and-conditions-wrapper {
	font-size: var(--text-size);
}
button#place_order {
	margin-top: 20px;
}
.select2-selection__rendered {
	font-size: var(--text-size);
}
.checkout-wrapper .select2-container .select2-dropdown, .select2-container .select2-selection {
		border-radius: 1px !important;
	border: none !important;
	border-bottom: 1px solid var(--main) !important;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: rgb(249 249 249);
    border-radius: 5px;
}
.select2-container {
	width: calc(100% - (2 * var(--padding))) !important;
}
 .select2-container > * {
	width: 100% !important;
}
button#place_order {
	background-color: var(--main);
}
.custom-radio input + span {
    display: inline-block;
    height: 25px;
    width: 25px;
    border: 2px solid var(--main);
    border-radius: 100%;
	
}
.custom-radio input {
	display: none;
}
.custom-radio input:checked + span {
	background-color: var(--main);
}

li.wc_payment_method {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

li.wc_payment_method label {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
	line-height: 110%;

}

li.wc_payment_method {
		margin-bottom: 20px;
}

li.wc_payment_method .payment_box {
    flex-basis: 100%;
    margin-left: 35px;
}

li.wc_payment_method img {
    max-height: 24px;
    width: auto;
}
.custom-radio {
	display: flex;
}

#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after, #add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::before, .woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after, .woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::before, .woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after, .woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before {
	content: none;
}
.woocommerce form .form-row {
	padding: 0;
	margin: 0 0 20px;
}

#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
	background-color: var(--main);
	color: white;
}
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
    border-bottom: 1em solid var(--main);
}
.widget-mini {
    padding: 0 15px;
}
.shop_table h3 {
	font-size: var(--text-size) !important;
}


.table-footer {
    width: 100%;
    border-collapse: collapse;
	margin-top: 20px;
}

.table-footer th,
.table-footer td {
    text-align: left;
    padding: 8px;
    border: 1px solid var(--main);
}

.table-footer .total-label {
    font-weight: normal;
}

.table-footer .total-value {
    text-align: left;
}

.table-footer .order-total .total-value {
    font-weight: bold;
}

.table-footer .woocommerce-Price-amount {
    white-space: nowrap;
}

a {
    background-color: transparent;
    color: var(--main);
}
.woocommerce-info {
	font-size: var(--text-size);
}
div.table-body {
    display: grid
;
    gap: 20px;
}
.wc_payment_methods {
    display: flex
;
    flex-direction: column;
    gap: 10px;
}
.gallery-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

button#copy_billing_data {
    margin-bottom: 20px;
    border: 1px solid var(--main);
    background: transparent;
    font-weight: 400;
    color: var(--main);
    font-size: 12px;
    padding: 6px 12px;
	width: 100%;
}
.woocommerce form .form-row label {
    line-height: 2;
	font-weight: 300;
	line-height: 110%;
	color: var(--main);
	font-size: var(--mini-text-size);
}
.payment-choice-radio input[type="radio"] + label {
	font-size: var(--text-size);
}
body {
	    overflow-x: hidden;
}

form#woocommerce-checkout-form-coupon .form-row-first, form#woocommerce-checkout-form-coupon .form-row-first, form#woocommerce-checkout-form-coupon .form-row-last, form#woocommerce-checkout-form-coupon .form-row-last {
	float: unset;
	margin: 0;
	width: 100%;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
	font-size: var(--text-size);
}

form#woocommerce-checkout-form-coupon button {
	margin-top: 10px;
}

input#coupon_code {
	border-radius: 1px !important;
    border: none !important;
    border-bottom: 2px solid var(--main) !important;
    font-size: var(--text-size);
}
input#coupon_code:focus {
		border-radius: 1px !important;
    border: 2px solid var(--main) !important;
	outline: none;
    font-size: var(--text-size);
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: 2px solid var(--main);
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    border-radius: 0;
}

.woocommerce form .form-row .input-text::placeholder, .woocommerce form .form-row select::placeholder {
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3);
	font-size: var(--text-size);
}
li.wc_payment_method label {
    font-size: var(--text-size);
}
.archive .woocommerce-no-products-found {
	display: none;
}

.training-selection select {
    padding: 10px 20px;
    width: 100%;
    border: 1px solid var(--main);
    border-width: 1px 0 1px 0;
    color: var(--main);
    font-weight: 500;
}

a.remove {
	font-size: var(--mini-text-size) !important; 
	padding: 10px 10px;
}
.cart-item-meta .meta-item {
	font-size: var(--text-size)
}
.forminator-radio .forminator-radio-bullet {
	background-color: white !important;
}
.forminator-radio .forminator-radio-bullet:before {
    background-color: var(--main) !important;
	border-color: var(--main) !important;
}
.forminator-radio input:checked + .forminator-radio-bullet {
	border-color: var(--main) !important;
}

button.forminator-button.forminator-button-submit {
    padding: 10px 30px !important;
    background: var(--main);
    color: white;
    display: block;
    border-radius: 20px 0 20px 0 !important;
    width: 100% !important;
}

.forminator-checkbox .forminator-checkbox-box:before {
	color: var(--main) !important;
}

.forminator-ui.forminator-design--default .forminator-consent input:checked + .forminator-checkbox-box {
	border-color: var(--main) !important;
	background-color: white !important;
}

.forminator-ui.forminator-design--default .forminator-consent .forminator-checkbox-box {
	background-color: white !important;
}
.footer-wrapper {
    display: grid
;
    grid-template-columns: 200px 1fr;
    gap: 100px;
}
.menu-group h3 {
    margin: 0;
    color: white;
	font-size: var(--h4-size);
}
.menu-group .menu-links {
    padding: 0;
    margin: 0;
    margin-top: 20px;
    margin-left: 20px;
    list-style-type: none;
}
.menu-group .menu-links a {
	color: white;
	font-weight: 400;
	font-size: var(--text-size);
	text-decoration: none;
}


.menu-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
	gap: 50px;
}

@media screen and (max-width: 990px){
	.menu-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.footer-wrapper {
    display: grid
;
    grid-template-columns: 200px 1fr;
    gap: 50px;
}
}
@media screen and (max-width: 786px){
	.menu-wrapper {
    display: grid;
    grid-template-columns: 1fr;
}
}
@media screen and (max-width: 600px){
	    .footer-wrapper {
        display: grid
;
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
.weblance-copy a, .company-copy {
    color: white;
    font-weight: 400;
    text-decoration: none;
	font-size: var(--mini-text-size);
}

.forminator-field-consent * {
	font-size: var(--mini-text-size) !important;
	line-height: 110%;
}
.forminator-radio-label {
	font-size: var(--text-size) !important;
	line-height: 110%;
	word-wrap: break-word;
	flex: 1 !important;
}


.forminator-radio {
	display: grid !important;
	grid-template-columns: 20px 1fr;
}

nav.woocommerce-MyAccount-navigation ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

nav.woocommerce-MyAccount-navigation ul a {
	text-decoration: none;
	border-bottom: 2px solid var(--main);
	display: block;
	padding: 10px 20px;
}
nav.woocommerce-MyAccount-navigation ul li.is-active a {
	color: white;
	background: var(--main);
}

nav.woocommerce-MyAccount-navigation {
	margin-bottom: 20px;
}

div#customer_login {
    display: grid
;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
@media screen and (max-width: 786px){
	div#customer_login {
    display: grid
;
    grid-template-columns: 1fr;
    gap: 20px;
}
}
.woocommerce .col2-set::after, .woocommerce .col2-set::before, .woocommerce-page .col2-set::after, .woocommerce-page .col2-set::before {
    content: none;
    display: table;
}

div#customer_login h2 {
	font-size: var(--h3-size);
	font-weight: 500;
	color: var(--main);
}

div#customer_login input {
	border-radius: 0px !important;
	border: none !important;
	border-bottom: 1px solid var(--main) !important;
}
.woocommerce-privacy-policy-text {
    margin: 20px 0;
}
div#customer_login p {
	font-size: var(--text-size);
}