/*
Theme Name: Quality Island
Author: coolbrand
Author URI: http://coolbrand.pl/
Description: Quality Island theme
Text Domain: quality-island
Version: 1.0
*/


:root {
	--app-height: 100%;

    --white: #fff;
    --black: #000;

    --body-text: #484C52;
	


	--gold-default: #D8A86A;
	--gold-hover: #CB8E3D;

    --dark: #0C0A2B;
	--dark-bg:#24223D;

	--light-bg:#F2F2F2;

	
    --title: #080C15;

    --gray-50: #E9E9E9;
    --gray-100: #CBCDD3;
    --gray-200: #AEB4BE;
    --gray-400: #2E323A;
    --gray-500: #1A1C21;


    --placeholder: #8B9099;
	
	
    --stroke: #BEC1C7;
	
    --system-black: #1F2227;
    --system-white: #fff;
    --system-error: #AC0808;
    --system-success: #008000;
    --system-validation: #DBD50C;


}




html {
	scroll-behavior:smooth;
	overflow-x: hidden;
}

body {
    font-family: 'Inter 18pt',sans-serif;
	/* font-size:16px; */
	font-size:18px;
	font-weight:300;
	color:var(--system-black);
	line-height: 1.4em;
	margin:0;
	padding:0;
	position: relative;
    word-break: normal;
	word-wrap: break-word;
/* overflow-x: hidden;  */
}
/* @media (min-width:768px) {
	body {
		font-size:18px;
	}
}
 */

a {
	color:var(--gold-default);
	font-weight: 300;
	text-decoration: underline;
	transition:.2s all;
}

a:hover {
	color:var(--gold-hover);
	text-decoration: underline;
}


p {
/* 	font-size:16px; */
		font-size:18px;
	font-weight:300;
	color:var(--system-black);
	line-height: 1.4em;
	margin:0;
	margin: 0 0 16px 0;
	padding:0;
}
/* @media (min-width:768px) {
	p {
		font-size:18px;
	}
} */



strong {
	font-weight: 700;
}





/* .container-fluid {
	padding-left: 20px;
	padding-right: 20px;
}
@media (min-width:576px) {
	.container-fluid {
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media (min-width:1280px) {
	.container-fluid {
		padding-left: 180px;
		padding-right: 20px;
	}
}
 */

.container, .container-fluid {
	max-width: 100%;
	padding-left: 24px;
	padding-right: 24px;
}
@media (min-width:640px) {
	.container {
		padding-left: 32px;
		padding-right: 32px;
	}
}
@media (min-width:1240px) { 
	.container {
		padding-left: 80px;
		padding-right: 80px;
	}
}
/* @media (min-width:1280px) { */
@media (min-width:1580px) {
	.container {
		padding-left: 180px;
		padding-right: 180px;
	}
}
@media (min-width:1920px) {
	.container {
		max-width: 1920px;
	}
}

@media (min-width:640px) {
	.container-fluid {
		padding-left: 30px;
		padding-right: 30px;
	}
}



.row-20 {
    height: 100%;
    margin-left: -10px;
    margin-right: -10px;
}

.row-20 > [class*="col-"] {
    padding-left:10px;
    padding-right:10px;
}

.row-30 {
    height: 100%;
    margin-left: -15px;
    margin-right: -15px;
}

.row-30 > [class*="col-"] {
    padding-left:15px;
    padding-right:15px;
}





h1,h2,h3,h4,h5,h6 {
    font-family: 'Times New Roman',serif;
	font-weight: 700;
	color: var(--system-black);
	padding: 0;
	margin: 0 0 12px 0;
	line-height: 1.2em;
	position: relative;
}
@media (min-width:768px) {
	h1,h2,h3,h4,h5,h6 {
		margin: 0 0 20px 0;
	}
}


h1 {
	font-size: 32px;
}
@media (min-width:768px) {
	h1 {
		font-size: 48px;
	}
}


h2 {
	font-size: 28px;
}
@media (min-width:768px) {
	h2 {
		font-size: 34px;
	}
}


h3 {
	font-size: 22px;
}
@media (min-width:768px) {
	h3 {
		font-size: 24px;
	}
}


h4 {
	font-size: 20px;
}


h5 {
	font-size:18px;
}


h6 {
	font-size:16px;
}


.heading-border {
	border-bottom: 1px solid var(--stroke);
	padding: 0 0 24px 0;
	margin: 0 0 24px 0;
}



.heading-title {
    font-family: 'Times New Roman',serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--title);
	padding: 0;
	margin: 0 0 12px 0;
	line-height: 1.4em;
	position: relative;
}



.btn-primary, .button {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
	text-align:center;
	line-height:24px;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
    width: auto;
    margin: 0;
	background:var(--gold-default);
    border:none;
	border-radius:8px;
    outline: 0;
	padding:16px 39px;
	gap:8px;
    cursor: pointer;
	transition: .6s all;
	overflow: hidden;
}

.btn-primary:hover, .button:hover {
	color: var(--white);
	background: var(--gold-hover);
	text-decoration: none;
}

.btn-primary:disabled, .button:disabled {
	color: var(--white);
	background: var(--gold-hover);
	text-decoration: none;
	opacity: .5;
}

.btn-primary:focus, .btn-primary:active, .button:focus, .button:active {
	color: var(--white);
	background: var(--gold-hover);
	text-decoration: none;
	outline: 2px solid var(--dark);
  	outline-offset: 3px;
}

.btn-primary img {
	max-width: 20px;
	max-height: 20px;
	transition: .6s all;
}




.btn-ghost {
	font-size: 16px;
	font-weight: 700;
	color: var(--dark);
	text-decoration: none;
	text-align:center;
	line-height:24px;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
    width: auto;
    margin: 0;
	background:var(--white);
    border:1px solid var(--dark);
	border-radius:8px;
    outline: 0;
	padding:15px 38px;
	gap:8px;
    cursor: pointer;
	transition: .6s all;
	overflow: hidden;
}

.btn-ghost:hover {
	color: var(--white);
	background: var(--dark);
	text-decoration: none;
}

.btn-ghost:disabled {
	color: var(--dark);
	background:var(--white);
	text-decoration: none;
	opacity: .5;
}

.btn-ghost:focus, .btn-ghost:active {
	color: var(--white);
	background: var(--dark);
	text-decoration: none;
	outline: 2px solid var(--dark);
  	outline-offset: 3px;
}




.btn-light {
	font-size: 16px;
	font-weight: 700;
	color: var(--title);
	text-decoration: none;
	text-align:center;
	line-height:24px;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
    width: auto;
    margin: 0;
	background:var(--light-bg);
    border:none;
	border-radius:8px;
    outline: 0;
	padding:10px 16px;
	gap:8px;
    cursor: pointer;
	transition: .6s all;
	overflow: hidden;
}

.btn-light:hover, .btn-light.active {
	color: var(--white);
	background: var(--dark);
	text-decoration: none;
}

.btn-light:disabled {
	color: var(--title);
	background:var(--light-bg);
	text-decoration: none;
	opacity: .5;
}

.btn-light:focus, .btn-light:active {
	color: var(--white);
	background: var(--dark);
	text-decoration: none;
}

.btn-light img {
	max-width: 20px;
	max-height: 20px;
	transition: .6s all;
}



/* topbar */

.topbar {
	width: 100%;
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	line-height: 1.4;
	padding: 16px 0;
	background: var(--gold-default);
}
@media (min-width:768px) {
	.topbar {
		font-size: 16px;
	}
}

.topbar a {
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
}

.topbar a:hover {
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
	opacity: .8;
}



/* header */

.header {
	width: 100%;
	background: var(--white);
	z-index: 980;
	position: fixed; 
	z-index: 996;
	transition: .4s all;
	border-bottom: 1px solid var(--stroke);
}
@media (min-width:768px) {
	.header {
		border-bottom:none;
		position: sticky;
		position: -webkit-sticky; 
	}
}

.site-scrolled .header {
	top:0;
	-webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width:768px) {
	.site-scrolled .header {
		top: -80px;
	}
}
@media (min-width:1200px) {
	.site-scrolled .header {
		top: -99px;
	}
}

@media (min-width:768px) {
	.header-top {
		height:80px;
		border-bottom: 1px solid var(--stroke);
		gap:24px;
	} 
}
@media (min-width:1200px) {
	.header-top {
		height:99px;
	}
}

.header-top form {
	position: relative;
}

.header-top form input, .header-top form select {
	margin: 0;
}

.header-top-search-icon {
	top:17px;
	left:13px;
	position: absolute;
}

.header-top form input {
	padding: 0 60px 0 40px;
}

.header-top form button {
	width: 44px;
	height: 48px;
	border: none;
	background: none;
	right:0;
	top:0;
	position: absolute;
}

.switcher-lang {
	margin: 0 8px 0 0;
	padding: 0;
	gap:10px;
}

.topnav .switcher-lang {
	padding: 8px 20px;
}

.switcher-lang li {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap:10px;
}

.switcher-lang li a, .switcher-lang li a:hover {
	font-size: 16px;
	font-weight: 700;
	color: var(--dark);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap:6px;
}

.switcher-lang li a img {
	display: none;
}

.switcher-lang li.lang-item-en a::after {
	content: '';
	width: 25px;
	height: 25px;
	background: url('images/flag-en.png') no-repeat center;
	background-size: 25px 25px;
	border-radius: 50%;
	border: 1px solid var(--title);
	display: inline-block;
}

.switcher-lang li.lang-item-pl a::after {
	content: '';
	width: 25px;
	height: 25px;
	background: url('images/flag-pl.svg') no-repeat center;
	background-size: 25px 25px;
	border-radius: 50%;
	border: 1px solid var(--title);
	display: inline-block;
}

.switcher-lang li a span {
	margin: 0 !important;
}

.submenu-open.responsive .switcher-lang, .submenu-open-2.responsive .switcher-lang {
	display: none !important;
}


.top-menu {
	width: 100%;
	margin:auto 0 0 0;
	padding:30px 20px 0 20px;
	gap:26px;
}
@media (min-width:768px) {
	.top-menu { 
		width: unset;
		margin: 0;
		padding: 0;
	}
}



.submenu-open.responsive .top-menu , .submenu-open-2.responsive .top-menu  {
	display: none !important;
}

.top-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.top-menu li a {
	width: 100%;
	min-width: 18px;
	font-size: 16px;
	font-weight: 700;
	color: var(--dark);
	text-decoration: none;
}
@media (min-width:768px) {
	.top-menu li a {
		width: unset;
	}
}

.top-menu li a:hover {
	color: var(--gold-hover);
	text-decoration: none;
}

.top-menu li.menu-btn-primary a {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
	text-align:center;
	line-height:24px;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
    width: 100%;
    margin: 0;
	background:var(--gold-default);
    border:none;
	border-radius:8px;
    outline: 0;
	padding:12px 25px;
	gap:8px;
    cursor: pointer;
	transition: .6s all;
	overflow: hidden;
}
@media (min-width:768px) {
	.top-menu li.menu-btn-primary a {
		width: auto;
	}
}

@media (min-width:768px) {
	.top-menu li.menu-btn-primary {
		display: none;
	}
}
@media (min-width:1200px) {
	.top-menu li.menu-btn-primary {
		display: list-item;
	}
}

.top-menu li.menu-btn-primary a:hover {
	color: var(--white);
	background: var(--gold-hover);
	text-decoration: none;
}

.top-menu li.menu-btn-ghost a {
	font-size: 16px;
	font-weight: 700;
	color: var(--dark);
	text-decoration: none;
	text-align:center;
	line-height:24px;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
    width: 100%;
    margin: 0;
	background:var(--white);
    border:1px solid var(--dark);
	border-radius:8px;
    outline: 0;
	padding:11px 24px;
	gap:8px;
    cursor: pointer;
	transition: .6s all;
	overflow: hidden;
}
@media (min-width:768px) {
	.top-menu li.menu-btn-ghost a {
		width: auto;
	}
}

@media (min-width:768px) {
	.top-menu li.menu-btn-ghost {
		display: none;
	}
}
@media (min-width:1200px) {
	.top-menu li.menu-btn-ghost {
		display: list-item;
	}
}

.top-menu li.menu-btn-ghost a:hover {
	color: var(--white);
	background: var(--dark);
	text-decoration: none;
}

.top-user-menu {
	margin: 0;
	padding: 0;
	gap:20px;
}

.top-user-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.top-user-menu li a {
	height: 44px;
	font-size: 16px;
	font-weight: 700;
	color: var(--dark);
	text-decoration: none;
	background: var(--light-bg);
	border-radius: 8px;
	padding: 13px;
	gap:8px;
	display: flex;
	align-items: center;
}

.top-user-menu li a:hover {
	color: var(--dark);
	text-decoration: none;
	background: var(--stroke);
}

.top-user-menu li a.cart-button {
	padding: 13px 24px;
}






.top-brand {
	width: auto;
	max-width: 80px;
	height: 51px;
}
@media (min-width:768px) {
	.top-brand {
		max-width: 100px;
		height: 64px;
		margin: 12px 0;
	}
}
@media (min-width:1200px) {
	.top-brand {
		max-width: 110px;
		height: 70px;
		margin: 22px 0;
	}
}


@media (min-width:768px) {
	.site-scrolled .top-brand {
		height: 45px;
	}
}
@media (min-width:1200px) {
	.site-scrolled .top-brand {
		height: 60px;
	}
}

.top-brand img {
	width: auto;
	max-width: 100%;
	height: 100%;
	transition: .2s all;
}


.menu-mobile {
	margin: 0;
	padding: 0;
}

.menu-mobile li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu-mobile li a {
	width: 44px;
	min-width: 44px;
	height:44px;
	display: flex;
	align-items: center;
	justify-content: center;
}




.main-menu {
	max-width: 100vw;
	width: 100vw;
	margin: 0;
	transition: .2s all;
	padding:0;
}

.submenu-open .main-menu {
  transform: translateX(-100%)
}

.submenu-open-2 .main-menu {
  transform: translateX(-200%)
}

@media (min-width:768px) {
	.main-menu {
		max-width: unset;
		width: auto;
		height: 100%;
		padding:0;
		display: flex;
		align-items: center;
		gap:12px;
	}
}
@media (min-width:1200px) {
	.main-menu {
		gap:30px;
	}
}

.main-menu > li {
	padding: 0px;
	margin: 0;
	list-style: none;
	border-bottom: 1px solid var(--white-900);
	display: flex;
	justify-content: space-between;
}
@media (min-width:768px) {
	.main-menu > li {
		height: 100%;
		border-bottom: none;
	}
}

.main-menu > li > a {
	font-size:16px;
	font-weight:700;
	color:var(--dark);
	text-decoration: none;
	margin: 0;
	padding:16px 20px 16px 20px;
	position: relative;
	transition: .2s all;
	display: flex;
	align-items: center;
	gap:8px;
}
@media (min-width:768px) {
	.main-menu > li > a {
		font-size:12px;
		line-height: 1.2em;
		height: 100%;
		text-align: center;
		padding:12px 0;
	}
}
@media (min-width:992px) {
	.main-menu > li > a {
		font-size:14px;
	}
}
@media (min-width:1400px) {
	.main-menu > li > a {
		font-size:16px;
	}
}

.main-menu > li:hover > a {
	color:var(--gold-hover);
	text-decoration: none;
}


/* sub menu */

.main-submenu-back {
	width: 100%;
	height: auto;
	font-size: 16px;
	font-weight: 700;
	color: var(--dark);
	padding: 35px 20px;
	margin: -30px 0 33px 0;
	background: var(--light-bg);
	display: flex;
	align-items: center;
	gap:8px;
	z-index: 9999;
	position: relative;
}
@media (min-width:768px) {
	.main-submenu-back {
		display: none;
	}
}

.main-menu li .sub-menu {
  	flex: 0 0 100%;
}

@media (min-width:768px) {
	.main-menu > li.menu-item-has-children > a::after {
		content: '';
		width:8px;
		height: 6px;
		padding-right: 10px;
		background: url('images/icon-chev-down.svg') center no-repeat;
		transition: .2s all;
	}
}
@media (min-width:1200px) {
	.main-menu > li.menu-item-has-children > a::after {
		padding-right: 19px;
	}
}

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

.main-menu  li > .sub-menu {
	width: 100vw;
  	min-height: 100vh;
  	padding: 0;
	top:0;
  	left: 100%;
	position: absolute;
	margin: 0;
	display: none !important;
	transition: transform 0.3s ease;
	z-index: 999;
}
@media (min-width:768px) {
	.main-menu > li > .sub-menu {
		width: 100%;
		height: auto;
		min-height: unset;
		left:50%;
		transform: translateX(-50%);
		top:100%;
		padding-top: 30px;
		padding-bottom: 30px;
	}
}


@media (min-width:768px) {
	.main-menu > li > .sub-menu {
		padding-left: 32px;
		padding-right: 32px;
	}
}
@media (min-width:1240px) { 
	.main-menu > li > .sub-menu {
		padding-left: 80px;
		padding-right: 80px;
	}
}
@media (min-width: 1580px) {
	.main-menu > li > .sub-menu {
		padding-left: 180px;
		padding-right: 180px;
	}
}
@media (min-width:1920px) {
	.main-menu > li > .sub-menu {
		max-width: 1920px;
	}
}


@media (min-width:768px) {
	.main-menu > li > .sub-menu::before {
		content: '';
		width: 200vw;
		height: 100%;
		background: var(--white);
		-webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
		-moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
		box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
		left: -50vw;
		top:0;
		position: absolute;
	}
}
        

.main-menu  li.toggled > .sub-menu {
	display: block !important;
}

@media (min-width:768px) {
	.main-menu > li:hover > .sub-menu {
		display: flex !important;
		/* justify-content: space-between; */
		
		align-items: flex-start;
		flex-wrap: wrap;
		gap:12px;
		margin: 0 auto;
	}
}

.main-menu > li > .sub-menu > li {
	padding:0;
	margin: 0;
	list-style: none;

	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (min-width:768px) {
	.main-menu > li > .sub-menu > li {
		width: 24%;
		max-width: 23%;
		margin:12px 0;
		position: relative;
		display: block;
	}
}

.main-menu > li > .sub-menu > li > a {
	font-size: 16px;
	font-weight: 700;
	/* color: var(--body-text); */
	color: var(--gold-default);
	line-height: 1.2em;
	text-decoration: none;
	padding:16px 20px;
	display: block;
}
@media (min-width:768px) {
	.main-menu > li > .sub-menu > li > a {
		font-size: 12px;
		padding:0;
	}
}
@media (min-width:992px) {
	.main-menu > li > .sub-menu > li > a {
		font-size: 14px;
	}
}
@media (min-width:1400px) {
	.main-menu > li > .sub-menu > li > a {
		font-size: 16px;
	}
}


.main-menu  .sub-menu li > a:hover {
	color:var(--gold-hover);
	text-decoration: none;
}



/* sub menu sub menu */

@media (min-width:768px) {
	.main-menu > li > .sub-menu > li > .sub-menu {
		width: 100%;
		min-width: 100%;
		min-height: unset;
		padding: 10px 0;
		display: block !important;
		left:unset;
		position: relative;
	}
}

.main-menu > li > .sub-menu > li > .sub-menu > li {
	margin:0;
	padding: 0;
	list-style: none;
}
@media (min-width:768px) {
	.main-menu > li > .sub-menu > li > .sub-menu > li {
		margin:12px 0;
	}
}

.main-menu > li > .sub-menu > li > .sub-menu > li  > a {
	font-size: 16px;
	font-weight: 700;
	color: var(--body-text);
	line-height: 1.2em;
	text-decoration: none;
	padding:16px 30px 16px 20px;
	display: flex;
	justify-content: space-between;
}
@media (min-width:768px) {
	.main-menu > li > .sub-menu > li > .sub-menu > li > a {
		font-size: 12px;
		padding:3px 0 0 0;
		color: var(--title);
	}
}
@media (min-width:992px) {
	.main-menu > li > .sub-menu > li > .sub-menu > li > a {
		font-size: 14px;
	}
}
@media (min-width:1400px) {
	.main-menu > li > .sub-menu > li > .sub-menu > li > a {
		font-size: 16px;
	}
}

.main-menu > li > .sub-menu > li > .sub-menu > li > a:hover {
	color:var(--gold-hover);
	text-decoration: none;
}

@media (max-width:767.98px) {
	.main-menu > li.menu-item-has-children > a {
		padding-right: 40px;
	}
}

.main-menu li .main-submenu-toggle {
	width: 40px;
	height: 40px;
	border-radius: 0;
	border:none;
	background: none;
	padding: 0;
/* 	right:10px;
	top:12px;
	position: absolute; */
	position: relative;

	transition: .2s all;
}

.main-menu li .main-submenu-toggle::before {
	content: '';
	width: 12px;
	height: 12px;
	background:url('images/icon-chev-down.svg') center no-repeat;
	background-size: 10px 8px;
	right:8px;
	top:calc(50% - 10px);
	position: absolute;
	transition: .2s all;
	transform: rotate(-90deg);
}

/* .main-menu li.toggled > .main-submenu-toggle::before {
	transform: rotate(180deg);
}
 */
@media (min-width:768px) {
	.main-submenu-toggle {
		display: none;
	}
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.main-menu li.toggled > .sub-menu {
/* 	transform: translateX(-100%); */
	transition: .3s all;
}


.unclickable > a {
	pointer-events: none;
}

@media (min-width:768px) {
	.only-mobile > a {
		display: none !important;
	}
}


.burger {
	width: 76px;
	height: 75px;
	background:var(--light-bg);
	border:none;
	border-radius:0px;
	margin:0 -24px 0 0;
	padding:0px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap:7px;
	z-index: 9999;
}
@media (min-width:576px) {
	.burger {
		margin:0 -32px 0 0;
	}
}
@media (min-width:768px) {
	.burger {
		display: none;
	}
}

.burger:after,
.burger:before,
.burger div {
	background-color:var(--black);
	border-radius: 0;
	content: '';
	display: block;
	width: 24px;
	max-width: 24px;
	height: 1px;
	margin:  0;
	transition: all .2s ease-in-out;
	border-radius: 50em;
}

.burger div {
	max-width: 16px;
	margin-left: -8px;
}

.burger:after {
	max-width: 8px;
	margin-left: -16px;
}

.responsive .burger {
	background: transparent;
}

.responsive .burger:before {
	max-width: 24px;
	margin-left: 0;
	background-color:var(--black);
	transform: translateY(7px) rotate(135deg);
}

.responsive .burger:after {
	max-width: 24px;
	margin-left: 0;
	width: 100%;
	background-color:var(--black);
	transform: translateY(-10px) rotate(-135deg);
}

.responsive .burger div {
	max-width: 24px;
	margin-left: 0;
	background-color:var(--black);
	transform: scale(0);
}


.submenu-open.responsive .burger, .submenu-open-2.responsive .burger {
	display: none;
}




.header-mobile-menu, .header-mobile-menu:hover {
	width: 100%;
	font-size: 24px;
	font-weight: 700;
	color: var(--white-100);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .05em;
	background:var(--black-900);
	padding:13px 20px;
	gap:16px;
	position: relative;
}
@media (min-width:768px) {
	.header-mobile-menu {
		display: none !important;
	}
}

.header-mobile-menu svg {
	margin: 0 0 0 auto;
}



@media (max-width:767.98px) {
	.topnav {
		display: none !important;
	}

	.responsive .topnav {
		width:100%;
		height: 100vh;
		padding:30px 0 40px 0;
		top:0px;
		left:0px;
		right:0px;
		position: fixed;
		display: flex !important;
		flex-direction: column;
		/* align-items: center; */
		align-items: flex-start;
/* 		justify-content: space-between; */
justify-content: flex-start;
		z-index: 998;
		background: var(--white);
		overflow-y: auto;
		animation:top .5s;
		scrollbar-width: none;
	}
	.responsive .topnav::-webkit-scrollbar {
		display: none;
	} 


	@keyframes top {
		0% {
			top: -100vh;
			opacity: 0;
		}
		100% {
			top: 0;
			opacity: 1;
		}	
	}
}

.topnav {
	/* width: 300vw !important; */
	display: flex;
	align-items: center;
	justify-content: space-between;
	
}
@media (min-width: 768px) {
	.topnav {
		height: auto;
		gap:20px;
	}
}

/* 
 .submenu-open .topnav {
  transform: translateX(-100%);
	border: 3px solid darkblue;
}
 */



/* search page */

.search-header-not-found {
	margin: 0;
}

@media (min-width: 768px) {
    .search-header-not-found .container {
        width: 80%;
        max-width: 1620px;
        margin: 0 auto;
    }
}
@media (min-width: 1200px) {
    .search-header-not-found .container {
        width: 69%;
    }
}

.search-header-not-found form {
	margin-top: 25px;
	position: relative;
}

.search-header-not-found form input, .search-header-not-found form select {
	margin: 0;
}

.search-header-not-found form input {
	padding: 0 60px 0 40px;
}

.search-header-not-found form button {
	width: 44px;
	height: 48px;
	border: none;
	background: none;
	right:0;
	top:0;
	position: absolute;
}


.search-results ul li a {
	font-size: 18px;
	font-weight: 700;
	color: var(--title);
	text-decoration: none;
}
@media (min-width: 768px) {
	.search-results ul li a {
		font-size: 20px;
	}
}

.search-results ul li a:hover {
	color: var(--gold-hover);
}


 
/* 404 */

.page-404 {
	min-height: 60vh;
	padding-top: 40px;
	padding-bottom: 40px;
	margin-bottom: 0;
}
@media (min-width: 768px) {
	.page-404 {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.page-404 .page-404-img {
	max-width: 844px;
	width: 100%;
	height: auto;
	margin: 0 0 34px 0;
}

.page-404 h1 {
	margin: 0 0 24px 0;
}

.page-404 p {
	margin: 0 0 22px 0;
}

.page-404 p a {
	color: var(--body-text);
	font-weight: 700;
	text-decoration: underline;
}

.page-404 p a:hover {
	color: var(--gold-hover);
	text-decoration: underline;
}

.page-404 .search-form {
	max-width: 845px;
	width: 100%;
	position: relative;
}

.page-404 .search-form input {
    margin: 0;
}

.search-form-404-search {
	top:17px;
	left:13px;
	position: absolute;
}

.page-404 .search-form input {
	padding: 0 60px 0 40px;
}

.page-404 .search-form button {
	width: 44px;
	height: 48px;
	border: none;
	background: none;
	right:0;
	top:0;
	position: absolute;
}







/* page / blog all */

article h1, article h2, article h3, article h4, article h5, article h6 {
	margin-top:1.2em;
	margin-bottom: .6em;
}

article h1:first-child, article h2:first-child, article h3:first-child, article h4:first-child, article h5:first-child, article h6:first-child {
	padding-top: 0;
}


article *:last-child {
	margin-bottom: 0;
}

article hr {
	border-color: var(--stroke);
	opacity: 1;
	margin: 36px 0;
}

article img {
	max-width: 100%;
	height: auto;
	margin:10px 0 1em 0;
	border-radius: 8px;
}

@media (min-width: 576px) {
	article img.alignleft {
		max-width: 50%;
		float: left;
		margin:0px 20px 20px 0px;
	}
}

@media (min-width: 576px) {
	article img.alignright {
		max-width: 50%;
		float: right;
		margin:0px 0px 20px 20px;
	}
}

article img.aligncenter {
	margin:2em 0;
	margin-left: 50%;
	transform: translateX(-50%);
}

article em {
	font-size: 20px;
	line-height: 1.2em;
}

article ul {
	padding:8px 0 0 0;
	margin:0 0 1.8em 0;
}

/* article p + ul {
	margin-top: -1.4em;
} */

article ul > li {
	font-size: 16px;
	margin:0px 0px 14px 0px;
	padding:0px 0px 0px 24px;
	list-style: none;
	position: relative; 
}

article ul > li:last-child {
	margin: 0;
}

article ul > li::before {
	content: '';
	width: 15px;
	height: 15px;
	background:url('images/icon-list.svg') no-repeat;
	background-size: 15px 15px;
	border-radius: 0%;
	left:0;
	top:4px;
	position: absolute;
}

article ul > li:last-child {
	margin-bottom: 0;
}



article ol {
	list-style: none;        /* usuwa domyślne numerki */
	counter-reset: my-counter;
	padding: 0;
	margin:0 0 2em 0px;
}

article ol li {
    font-family: 'Times New Roman',serif;
	font-size: 20px;
	font-weight: 400;
	color: var(--title);
	counter-increment: my-counter;
	/* display: flex;
	align-items: center; */
	padding: 6px 0 0 50px;
	margin-bottom: 24px;
	position: relative;
}

article ol li::before {
	content: counter(my-counter, decimal-leading-zero);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;             /* rozmiar badge */
	height: 36px;
	min-width: 36px;
	margin-right: 15px;
	border-radius: 8px;      /* lekko zaokrąglone */
	background: var(--dark);     /* ciemne tło */
	color: var(--white);             /* biały tekst */
	font-weight: 700;
	font-size: 20px;
	left:0;
	top:0;
	position: absolute;
}


/* article ol {
	margin:0 0 2em 0px;
	padding:0px 0px 0px 20px;
}

article ol > li {
	font-size: 14px;
	margin:0px 0px 10px 0px;
	padding:0px;
}
 */




article blockquote {
	font-family: 'Times New Roman',serif;
	font-size:18px;
	font-weight:400;
	color: var(--black);
	line-height: 28px;
	margin:2.5em 0;
	padding: 0 0 0 22px;
	position: relative;
}

article blockquote::before {
	content: '"';
	font-size: 120px;
	font-weight: 700;
	color: var(--gold-default);
	margin:0 0 10px -40px;
	padding-top: 10px;
	display: block;
}

article blockquote::after {
	content: '';
	width: 2px;
	height:calc(100% - 36px);
	background:var(--gold-default);
	border-radius: 0;
	left:0;
	top:42px;
	position: absolute;
}

article blockquote p {
	font-size:18px;
	font-weight:400;
	color: var(--black);
	line-height: 28px;
}



article > *:first-child {
	margin-top: 0;
}

article > p:last-child, article > ul:last-child, article > img:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}


article table {
	margin: 22px 0;
}

article table td, article table th, article table tr {
	border-width: 1px;
	padding: 5px;
}


/* youtube responsive */
.embed-responsive {
	position: relative;
	display: block;
  width: 100%;
	height: 0;
	padding: 0;
	 padding-top: 56.25%; 
	margin-bottom:40px;
	overflow: hidden;
	border-radius:0;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.embed-responsive-16by9 {
	/* padding-bottom: 56.25%; */
    aspect-ratio: 1 / .5625;
}





/* sections */

section {
	margin:0 0 80px 0;
	position: relative;
}
@media (min-width:768px) {
	section {
		margin:0 0 120px 0;
	}
}





/* hero */

.section-hero {
	padding: 100px 0 0 0;
	margin:0 0 60px 0;
}
@media (min-width:768px) {
	.section-hero {
		padding: 20px 0;
		background: var(--light-bg);
	}
}

@media (min-width:768px) {
	.section-hero-content-wrapper {
		flex:0 0 48%;
		max-width: 48%;
		padding: 32px 0;
	}
}
@media (min-width:1200px) {
	.section-hero-content-wrapper {
		flex:0 0 50%;
		max-width: 50%;
	}
}

.section-hero-content-wrapper .btn-primary {
	width: 100%;
	margin-top: 12px;
}
@media (min-width:576px) {
	.section-hero-content-wrapper .btn-primary {
		width: auto;
	}
}

.section-hero-content-logos-wrapper {
	margin: 30px 0 0 0;
	padding: 30px 0 0 0;
	border-top: 1px solid var(--stroke);
}

.section-hero-content-logos-inner {
	width: 100%;
	background: var(--white);
	border-radius: 8px;
	overflow: hidden;
	padding: 15px;
}

.section-hero-content-logos-inner-track {
	display: flex;
	gap:24px;
	align-items: center;
	width: max-content;
	animation: scroll 20s linear infinite; /* linear = zero zwalniania */
}
@media (min-width:992px) {
	.section-hero-content-logos-inner-track {
		gap:42px;
	}
}
@media (min-width:1200px) {
	.section-hero-content-logos-inner-track {
		gap:82px;
	}
}

.section-hero-content-logos-inner-item {
	width: auto;
	height: auto;
	max-width: 180px;
	max-height: 29px;
	/* max-height: 40px; */
}

.section-hero-content-logos-inner-item img {
	width: auto;
	height: auto;
	max-width: 150px;
	/* max-height: 40px; */
 	max-height: 29px; 

	-webkit-filter:grayscale(100%);
    filter: grayscale(100%);

}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); } /* przesuwa o połowę, bo duplikujemy slajdy */
}

.section-hero-image-wrapper {
	padding: 11px 6px 8px 8px;
	margin-top: 46px;
	position: relative;
	z-index: 900;
}
@media (min-width:768px) {
	.section-hero-image-wrapper {
		flex:0 0 48%;
		max-width: 48%;
		margin-top: 0;
	}
}
@media (min-width:1200px) {
	.section-hero-image-wrapper {
		padding: 15px 8px 10px 11px;
		flex:0 0 41%;
		max-width: 41%;
	}
}

.section-hero-image-wrapper img, .section-hero-image-wrapper iframe {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: cover;
}

.section-hero-image-wrapper .embed-responsive {
	margin: 0 !important;
}

.section-hero-image-wrapper::before {
	content: '';
	width: 265px;
	height: 31px;
	background: url('images/hero-before.svg') no-repeat;
	background-size: 265px 31px;
	top:0;
	right: 0;
	position: absolute;
	z-index: 920;
}
@media (min-width:1200px) {
	.section-hero-image-wrapper::before {
		width: 370px;
		height: 42px;
		background-size: 370px 42px;
	}
}

.section-hero-image-wrapper::after {
	content: '';
	width: 265px;
	height: 31px;
	background: url('images/hero-after.svg') no-repeat;
	background-size: 265px 31px;
	bottom:0;
	left: 0;
	position: absolute;
	z-index: 920;
}
@media (min-width:1200px) {
	.section-hero-image-wrapper::after {
		width: 370px;
		height: 42px;
		background-size: 370px 42px;
	}
}














/* page-header */

.page-header {
	margin-top: 0;
	margin-bottom: 30px;
	padding-top:100px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--stroke);
}
@media (min-width:768px) {
	.page-header {
		min-height: 371px;
		background: url('images/page-header.avif') center no-repeat var(--dark);
		background-size: cover;
		padding-top: 30px;
		padding-bottom: 30px;
		border-bottom:none;
	}
}

.breadcrumbs {
	margin:0;
	padding:0 0 28px 0;
	display: flex;
	flex-wrap: wrap;
	gap:0 18px;
}

.breadcrumbs li {
	font-size: 16px;
	font-weight: 700;
	color: var(--body-text) !important;
	line-height: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}
@media (min-width:768px) {
	.breadcrumbs li {
		color: var(--stroke) !important;
	}
}

.breadcrumbs li a {
	font-size: 16px;
	font-weight: 700;
	color: var(--title) !important;
	line-height: 24px;
	text-decoration: none;
}
@media (min-width:768px) {
	.breadcrumbs li a {
		color: var(--white) !important;
	}
}

.breadcrumbs li a:hover {
	color: var(--black-900);
	text-decoration: none;
}
@media (min-width:768px) {
	.breadcrumbs li a:hover {
		color: var(--stroke);
	}
}

.bread-home {
	padding: 0 0 0 30px;
	position: relative;
}

.bread-home::before {
	content: '';
	width: 20px;
	height: 18px;
	background:url('images/icon-home.svg') no-repeat;
	top:0;
	left: 0;
	position: absolute;
}
@media (min-width:768px) {
	.bread-home::before {
		-webkit-filter: brightness(0) invert(1);
		filter: brightness(0) invert(1);
	}
}

.breadcrumbs li.separator svg {
	margin-top: -3px;
}
@media (min-width:768px) {
	.breadcrumbs li.separator svg {
		-webkit-filter: brightness(0) invert(1);
		filter: brightness(0) invert(1);
	}
}



@media (min-width:768px) {
	.page-header h1 {
		color: var(--white);
	}
}

.page-header p {
	color: var(--body-text);
	margin: 0;
}
@media (min-width:768px) {
	.page-header p {
		color: var(--stroke);
	}
}








.section-padding-anch {
	width: 10px;
	height:calc(100% + 40px);
	margin-top: -80px;
	opacity: 0;
	position: absolute;
}
@media (min-width:768px) {
	.section-padding-anch {
		margin-top: -120px;
		height:calc(100% + 60px);
	}
}



/* section-content */

@media (min-width:768px) {
	.section-content.container {
		width: 80%;
		max-width: 1620px;
	}
}
@media (min-width:1200px) {
	.section-content.container {
		width: 69%;
	}
}

.section-content.section-content-wide.container {
	width: 100%;
	max-width: 1920px;
}

.section-content .btn-primary {
	width: 100%;
	margin-top: 1.8em;
}
@media (min-width:576px) {
	.section-content .btn-primary {
		width:auto;
	}
}


/* section-imagecontent */

.section-imagecontent-wrapper {
	gap:50px 11%;
}

@media (min-width:768px) {
	.section-imagecontent-image {
		flex:0 0 46%;
		max-width: 46%;
	}
}
@media (min-width:1200px) {
	.section-imagecontent-image {
		flex:0 0 40%;
	}
}

.section-imagecontent-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

@media (min-width:768px) {
	.section-imagecontent-content {
		flex:1 1 48%;
	}
}

.section-imagecontent-content .btn-primary {
	width: 100%;
	margin-top: 28px;
}
@media (min-width:576px) {
	.section-imagecontent-content .btn-primary {
		width:auto;
	}
}


/* section-imageiconlist */

.section-imageiconlist-wrapper {
	gap:50px 9%;
	border-radius:8px;
	border: 1px solid var(--stroke);
}
@media (min-width:768px) {
	.section-imageiconlist-image {
		flex:0 0 46%;
		max-width: 46%;
	}
}
@media (min-width:1200px) {
	.section-imageiconlist-image {
		flex:1 1 40%;
	}
}

.section-imageiconlist-image img {
	width: 100%;
	height: 100%;
	border-radius: 8px 8px 0 0;
	object-fit: cover;
}
@media (min-width:768px) {
	.section-imageiconlist-image img {
		border-radius: 8px 0 0 8px;
	}
}
@media (min-width:768px) {
	.section-imageiconlist-content {
		padding: 24px 0;
		flex:1 1 45%;
	}
}
@media (min-width:1200px) {
	.section-imageiconlist-content {
		flex:1 1 51%;
	}
}

.section-imageiconlist-content article {
	width: 100%;
	padding: 15px;
}
@media (min-width:768px) {
	.section-imageiconlist-content article {
		padding: 0;
	}
}

.section-imageiconlist-list {
	margin: 0;
	padding: 0 20px 0 0;
}

.section-imageiconlist-list li {
    font-family: 'Times New Roman',serif;
	font-size: 20px;
	/* font-weight: 700; */
	color: var(--title);
	line-height: 1.4em;
	margin: 0 0 32px 0;
	padding: 0 0 0 52px;
	list-style: none;
}

.section-imageiconlist-list li:last-child {
	margin: 0;
}

.section-imageiconlist-list li::before {
	display: none;
}

.section-imageiconlist-list-icon {
	width: 36px;
	height: 36px;
	background: var(--dark);
	border-radius: 8px;
	left:0;
	top:-4px;
	position: absolute;
}

.section-imageiconlist-list-icon img {
	width: auto;
	height: auto;
	max-width: 24px;
	max-height: 24px;
	padding: 0;
	margin: 0;
}

.section-imageiconlist-info {
	margin-top: 30px;
}


/* section-quote */

.section-quote-wrapper {
	font-weight: 700;
	/* font-size: 20px; */
	font-size:18px;
	color: var(--white);
	line-height: 1.4em;
	text-align: center;
	background: var(--dark);
	border-radius: 8px;
	padding: 50px 10px;
}
@media (min-width:768px) {
	.section-quote-wrapper {
		/* font-size: 28px; */
		padding: 50px 10%;
	}
}
@media (min-width:1200px) {
	.section-quote-wrapper {
		padding: 50px 16%;
	}
}

.section-quote-inner {
    font-family: 'Times New Roman',serif;
	padding: 0 0 10px 0;
}

.section-quote-inner strong {
	color: var(--gold-default);
}

.section-quote-inner p {
	font-weight:400;
	/* font-size: 20px; */
	font-size: 18px;
	color: var(--white);
	line-height: 1.4em;
}
/* @media (min-width:768px) {
	.section-quote-inner p {
		font-size: 28px;
	}
} */

.section-quote .btn-primary {
	width: calc(100% - 20px);
	margin: 0 10px;
}
@media (min-width:576px) {
	.section-quote .btn-primary {
		width:auto;
		margin: 0;
	}
}


/* section-offerlist */

.section-offerlist .heading-border {
    margin: 0 0 6px 0;
}

.section-offerlist-list {
	margin: 0;
	padding:0 0 10px 0;
}

.section-offerlist-list.collapse {
	margin-top: -10px;
}

.section-offerlist-list li {
	margin: 0;
	padding:14px 0;
	list-style: none;
	border-bottom:1px solid var(--stroke);
}

.section-offerlist-list.collapse li:first-child {
	border-top:1px solid var(--stroke);
}

.section-offerlist-list li:last-child {
	border-bottom: 0;
}

.section-offerlist-list-item {
	text-decoration: none;
	border-radius: 8px;
	padding: 20px;
	gap:0 40px;
}

.section-offerlist-list-icon {
	width: 44px;
	min-width: 44px;
	height: 44px;
}

.section-offerlist-list-item:hover .section-offerlist-list-icon img {
	transition: .2s all;
}

.section-offerlist-list-item:hover .section-offerlist-list-icon img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

.section-offerlist-list-item:hover {
	text-decoration: none;
	background: var(--dark);
}

.section-offerlist-list-item h3 {
		font-size: 24px;
		flex:1 1 50%;
		margin: 0 0 24px 0;
}
@media (min-width:768px) {
	.section-offerlist-list-item h3 {
		margin: 0;
	}
}

.section-offerlist-list-item p {
		font-size: 18px;
		flex:1 1 44%;
		margin: 0;
}

.section-offerlist-list-item > * {
	transition: .2s all;
}

.section-offerlist-list-item:hover > * {
	color: var(--white);
}

.section-offerlist .btn-primary[aria-expanded="true"] .collapseOffer-show {
	display:none;
}

.section-offerlist .btn-primary[aria-expanded="false"] .collapseOffer-hide {
	display:none;
}

.section-offerlist .btn-primary[aria-expanded="true"] .collapseOffer-hide {
	display:block;
}


/* section-process */

.section-process-list {
	gap:72px;
}
@media (min-width:768px) {
	.section-process-list {
		gap:24px 72px;
		/* overflow: hidden; */
	}
}
@media (min-width:1200px) {
	.section-process-list {
		gap:24px 72px;
	}
}

.section-process-list a, .section-process-list div {
    font-family: 'Times New Roman',serif;
	/* font-size: 20px; */
	font-weight: 300;
	color: var(--title);
	line-height: 1.4em;
	text-decoration: none;
	background: var(--light-bg);
	border-radius: 8px;
	padding: 12px;
	min-width:100%;
	position: relative;
	transition: .2s all;
}
@media (min-width:768px) {
	.section-process-list a, .section-process-list div {
		flex: 0 0 calc(33.3333% - 48px);
		min-width:calc(33.3333% - 48px);
	}
}
/* @media (min-width:1200px) {
	.section-process-list a, .section-process-list div {
		flex: 0 0 calc(20% - 57.6px);
		min-width:calc(20% - 57.6px);
	}
} */


.section-process-list a:hover, .section-process-list > div:hover {
	background: var(--dark);
	color: var(--white);
	text-decoration: none;
}


.section-process-list h4 {
	margin: 0 0 10px 0;
	transition: .2s all;
}

.section-process-list a:hover h4, .section-process-list > div:hover h4 {
	color: var(--white);
}
/* 
.section-process-list a:hover {
	color: var(--white);
	text-decoration: none;
	background: var(--dark);
}

.section-process-list a:hover * {
	color: var(--white);
	transition: .2s all;
} */

.section-process-list a::after, .section-process-list div::after {
	content: '';
	width: 16px;
	height: 16px;
	background: url('images/icon-arrow-right.svg') no-repeat;
	top:calc(100% + 28px);
	left:calc(50% - 8px);
	position: absolute;
	transform: rotate(90deg);
}
@media (min-width:768px) {
	.section-process-list a::after, .section-process-list div::after {
		top:calc(50% - 8px);
		left:-44px;
		transform: none;
	}
}
@media (min-width:768px) and (max-width:1239.98px) {
	.section-process-list a:nth-child(3n+1)::after, .section-process-list div:nth-child(3n+1)::after {
		left:-24px;
	}
}

@media (max-width:767.98px) {
	.section-process-list a:last-child:after, .section-process-list div:last-child::after {
		display: none;
	}
}

@media (min-width:768px) {
	.section-process-list a:first-child:after, .section-process-list div:first-child::after {
		display: none;
	}
}


/* section-contactperson */

.section-contactperson-list {
	gap:24px;
}

.section-contactperson-list-item {
	width: 100%;
	height: auto;
	border: 1px solid var(--stroke);
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
/* 	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column; */
	margin: 0;
	padding: 0;
	background: transparent;
}
@media (min-width:576px) {
	.section-contactperson-list-item {
		flex: 0 0 calc(50% - 12px);
		min-width:calc(50% - 12px);
	}
}
@media (min-width:992px) {
	.section-contactperson-list-item {
		flex: 0 0 calc(25% - 18px);
		min-width:calc(25% - 18px);
	}
}

.section-contactperson-list-item:hover {
	background:var(--dark);
	text-decoration: none;
	border-color: var(--dark);
}

.section-contactperson-list-item-image {
	background:url('images/logo-w.png') center no-repeat var(--dark);
	background-size: 30%;
	aspect-ratio: 1 / 1.1;
}

.section-contactperson-list-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-contactperson-list-item-details {
	padding: 20px 56px 20px 20px;
	position: relative;
}

.section-contactperson-list-item-name {
	font-family: 'Times New Roman',serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--gold-default);
	line-height: 1.4em;
	transition: .2s all;
}

.section-contactperson-list-item:hover .section-contactperson-list-item-name {
	color: var(--white);
}

.section-contactperson-list-item-details p {
	margin: 0;
	transition: .2s all;
}

.section-contactperson-list-item:hover .section-contactperson-list-item-details p {
	color: var(--stroke);
}

.section-contactperson-list-item-details a, .section-contactperson-list-item-details a:hover {
	color: var(--system-black);
	display: block;
	text-decoration: none;
}

.section-contactperson-list-item:hover .section-contactperson-list-item-details a {
	color: var(--stroke);
}

.section-contactperson-list-item:hover .section-contactperson-list-item-details a:hover {
	color: var(--white);
}


.section-contactperson-list-item-mail {
	font-size: 14px;
	line-height: 1.2em;
}

.section-contactperson-list-item-details-icon {
	width: 12px;
	height: 12px;
	top:calc(50% - 6px);
	right:35px;
	position: absolute;
	transition: .2s all;
}

.section-contactperson-list-item:hover .section-contactperson-list-item-details-icon {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);	
}

.section-contactperson-modal, .section-contactperson-modal p {
	font-size: 16px;
}

.section-contactperson-modal-contact {
	margin: 30px 0 0 0;
	padding: 0;
}

.section-contactperson-modal-contact li {
	margin:0 0 2px 0;
	padding: 0;
	list-style: none;
}

.section-contactperson-modal-contact li a {
	font-size: 16px;
	font-weight: 600;
	color: var(--gold-default);
	text-decoration: none;
}
.section-contactperson-modal-contact li a:hover {
	font-size: 16px;
	color: var(--gold-hover);
	text-decoration: none;
}

.section-contactperson-modal .btn-close {
	padding: 20px 20px 0 20px !important;
}

/* section-casestudy */

.section-casestudy-list {
	gap:24px;
}

.section-casestudy-list-item {
	border-radius: 8px;
}

.section-casestudy-list-item-content {
	width: 100%;
	border: 1px solid var(--stroke);
	padding: 15px 15px 58px 15px;
	border-radius: 8px 8px 0 0;
}
@media (min-width:768px) {
	.section-casestudy-list-item-content {
		flex: 1 1 64%;
		padding: 30px 6% 30px 30px;
		border-radius: 8px 0 0 8px;
	}
}
@media (min-width:992px) {
	.section-casestudy-list-item-content {
		padding: 30px 10% 30px 30px;
	}
}
@media (min-width:1200px) {
	.section-casestudy-list-item-content {
		flex: 1 1 76%;
	}
}

.section-casestudy-list-item-content h3 {
	font-size: 24px;
}

.section-casestudy-list-item-content p {
	line-height: 1.2em;
}

.section-casestudy-list-item-content .btn-ghost {
	margin-top: 24px;
}

.section-casestudy-list-item-image {
   	font-family: 'Times New Roman',serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.4em;
	flex: 1 49%;
	overflow: hidden;
	border-radius: 0 0 8px 8px;
	border: 1px solid var(--stroke);
	border-top: none;
	/* background:url('images/logo-w.png') center no-repeat var(--dark); */
	background-size: 84px 73px;
	position: relative;
}
@media (min-width:768px) {
	.section-casestudy-list-item-image {
		border-radius:0 8px 8px 0;
		flex: 1 36%;
		border-left: none;
	border-top: 1px solid var(--stroke);
	}
}
@media (min-width:1200px) {
	.section-casestudy-list-item-image {
		flex: 1 25%;
	}
}


.section-casestudy-list-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-casestudy-list-item-image-content {
	color: var(--white);
	top:14px;
	left: 14px;
	position: absolute;
}
@media (min-width:1200px) {
	.section-casestudy-list-item-image-content {
		top:22px;
		left: 22px;
	}
}

.section-casestudy-list-item-image-content-2 {
	color: var(--title);
	padding: 11px;
	background: var(--white);
	border-radius:8px;
	right:14px;
	bottom: 14px;
	position: absolute;
}
@media (min-width:1200px) {
	.section-casestudy-list-item-image-content-2 {
		right:22px;
		bottom: 22pxpx;
	}
}


/* section-casestudylist */

.section-casestudylist-list {
	gap:24px;
}

.section-casestudylist-list-item {
	text-decoration: none;
	width: 100%;
	border: 1px solid var(--stroke);
	border-radius: 8px;
}
@media (min-width:576px) {
	.section-casestudylist-list-item {
		flex: 0 0 calc(50% - 24px);
		max-width: calc(50% - 24px);
	}
}
@media (min-width:768px) {
	.section-casestudylist-list-item {
		flex: 0 0 calc(33.3333% - 16px);
		max-width: calc(33.3333% - 16px);
	}
}

.section-casestudylist-list-item:hover {
	text-decoration: none;
}

.section-casestudylist-list-image {
	width:calc(100% + 2px);
	height: auto;
	aspect-ratio: 1.3 / 1;
	border-radius: 8px;
	background:url('images/logo-w.png') center no-repeat var(--dark);
	position: relative;
	margin: -1px 0 0 -1px;
}

.section-casestudylist-list-image img {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: cover;
}

.section-casestudylist-list-content {
	padding: 15px;
}

.section-casestudylist-list-title {
	font-family: 'Times New Roman',serif;
	font-weight: 700;
	font-size: 20px;
	color: var(--title);
	line-height: 1.4em;
	margin: 0 0 8px 0;
}

.section-casestudylist-list-content p {
	color: var(--body-text);
	line-height: 1.2em;
	margin: 0;
}


/* section-video */

.section-video-wrapper {
	color:var(--white);
	padding: 20px;
	background: url('images/section-video-bg.avif') center var(--dark);
	background-size: cover;
	border-radius: 8px;
}
@media (min-width:768px) {
	.section-video-wrapper {
		padding: 50px 12%;
	}
}
@media (min-width:1200px) {
	.section-video-wrapper {
		padding: 50px 17%;
	}
}

.section-video-wrapper h2 {
	color: var(--white);
	margin:0 0 12px 0;
}

.section-video-wrapper p, .section-video-wrapper * {
	color: var(--white);
}
/* 
.section-video-inner  {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

.section-video-inner iframe {
    width: 100%;
    height: auto;
	border-radius: 8px;
    min-height: 100%;
    object-fit: cover;
    left: 0px;
    top: 0px;
    position: absolute;
} */


/* section-logos */

.section-logos-wrapper {
	border: 1px solid var(--stroke);
	border-radius: 8px;
	overflow: hidden;
}

.section-logos-inner {
	aspect-ratio: 1.2 / 1;
/* 	flex:0 1 calc(50% + 1px); */
		flex:0 1 calc(33.3333% + 1px);
	padding:20px 16px;
	border-bottom: 1px solid var(--stroke);
	border-right: 1px solid var(--stroke);
	margin: 0 -1px -1px 0;
}
@media (min-width:576px) {
	.section-logos-inner {
		aspect-ratio: 1.4 / 1;
		flex:0 1 calc(33.3333% + 1px);
	padding:40px 26px;
	}
}
@media (min-width:768px) {
	.section-logos-inner {
		aspect-ratio: 1.6 / 1;
		flex:0 1 calc(25% + 1px);
	}
}
@media (min-width:1200px) {
	.section-logos-inner {
		aspect-ratio: 1.7 / 1;
		flex:0 1 calc(20% + 1px);
		padding:40px 26px;
	}
}

.section-logos-inner img {
	width:auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	-webkit-filter:grayscale(100%);
    filter: grayscale(100%);
}


/* section-logostext */

.swiper.logostextSwiper {
	/* width: calc(100% + 24px); */
		width: 100%;
}
@media (min-width:576px) {
	.swiper.logostextSwiper {
		width: 100%;
	}
}

.swiper.logostextSwiper .swiper-slide {
	height: auto;
	border: 1px solid var(--stroke);
	border-radius: 8px;
	padding: 60px 20px;
}
@media (min-width:576px) {
	.swiper.logostextSwiper .swiper-slide {
		padding: 50px 30px;
	}
}

.section-logostext-item-image {
	width: 100%;
	height: 100px;
	margin: 0 0 10px 0;
}

.swiper.logostextSwiper .swiper-slide img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100px;
}

.swiper.logostextSwiper .swiper-slide p {
	margin: 0;
}

.logostextSwiper-pagination {
	margin: 20px 0 0 0;
	padding: 0;
}

.logostextSwiper-pagination .swiper-pagination-bullet {
	background: var(--gray-200);
	opacity: 1;
}

.logostextSwiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--gold-hover);
}


/* section-contentlogos */

@media (min-width:768px) {
	.section-contentlogos-content {
		flex:0 0 46%;
		max-width: 46%;
	}
}
@media (min-width:992px) {
	.section-contentlogos-content {
		flex:0 0 36%;
		max-width: 36%;
	}
}

.section-contentlogos-content .btn-primary {
	width: 100%;
	margin-top: 10px;
}
@media (min-width:576px) {
	.section-contentlogos-content .btn-primary {
		width: auto;
	}
}

.section-contentlogos-wrapper {
	border: 1px solid var(--stroke);
	border-radius: 8px;
	overflow: hidden;
	margin-top: 50px;
}
@media (min-width:768px) {
	.section-contentlogos-wrapper {
		flex:0 0 50%;
		max-width: 50%;
		margin-top: 0;
	}
}
@media (min-width:992px) {
	.section-contentlogos-wrapper {
		flex:0 0 58%;
		max-width: 58%;
	}
}


.section-contentlogos-inner {
	aspect-ratio: 1.2 / 1;
	flex:0 1 calc(50% + 1px);
	padding:20px 16px;
	border-bottom: 1px solid var(--stroke);
	border-right: 1px solid var(--stroke);
	margin: 0 -1px -1px 0;
}
@media (min-width:576px) {
	.section-contentlogos-inner {
		aspect-ratio: 1.6 / 1;
		flex:0 1 calc(33.3333% + 1px);
	}
}
@media (min-width:768px) {
	.section-contentlogos-inner {
	aspect-ratio: 1.2 / 1;
	flex:0 1 calc(50% + 1px);
	}
}
@media (min-width:992px) {
	.section-contentlogos-inner {
		aspect-ratio: 1.6 / 1;
		flex:0 1 calc(33.3333% + 1px);
	}
}

.section-contentlogos-inner img {
	width:auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


/* section-numbers */

.section-numbers-list {
	background: var(--gold-default);
	border-radius: 8px;
	gap:25px 0;
	overflow: hidden;
}
@media (min-width:768px) {
	.section-numbers-list {
		gap:0;
	}
}

.section-numbers-list-item {
	flex:0 1 50%;
	max-width: 50%;
	padding: 16px 12px 32px 12px;
}
@media (min-width:768px) {
	.section-numbers-list-item {
		flex:0 1 calc(25% + 1px);
		max-width:calc(25% + 1px);
		padding: 32px 24px 30px 24px;
		border-bottom: 1px solid var(--gold-hover);
		border-right: 1px solid var(--gold-hover);
		margin: 0 -1px -1px 0;
	}
}

.section-numbers-list-item-number {
    font-family: 'Times New Roman',serif;
	font-size: 34px;
	font-weight: 700;
	color: var(--white);
	line-height: 1.2em;
	margin: 0 0 16px 0;
}
@media (min-width:992px) {
	.section-numbers-list-item-number {
		font-size: 44px;
	}
}
@media (min-width:1200px) {
	.section-numbers-list-item-number {
		font-size: 55px;
	}
}

.section-numbers-list-item p {
	color: var(--white);
	margin: 0;
}


/* section-boxes */

.section-boxes-list {
	gap:24px;
}

.section-boxes-list-item {
	width: 100%;
	background: var(--dark);
	border-radius: 8px;
	padding: 30px 30px 106px 30px;
	position: relative;
}

@media (min-width:768px) {
	.section-boxes-list-item {
		flex:0 1 calc(50% - 12px);
		max-width: calc(50% - 12px);
	}
}

.section-boxes-list-item h2 {
	color: var(--white);
}

.section-boxes-list-item p {
	color: var(--light-bg);
}

.section-boxes-list-item .btn-primary {
	left:30px;
	bottom: 30px;
	position: absolute;
}

.section-boxes-list-image {
	min-width: 100%;
	display: none;
	border-radius: 8px;
	overflow: hidden;
}
@media (min-width:768px) {
	.section-boxes-list-image {
		display: block;
	}
}

.section-boxes-list-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* section-points */

.section-points-list {
	gap:24px;
}

.section-points-list-item {
	width:100%;
	padding: 30px;
	border-radius: 8px;
	transition: .2s all;
}
@media (min-width:768px) {
	.section-points-list-item {
		flex: 1 0 calc(50% - 12px);
		max-width: calc(50% - 12px);
		padding: 30px 5% 30px 30px;
	}
}
@media (min-width:1200px) {
	.section-points-list-item {
		padding: 30px 15% 30px 30px;
	}
}

.section-points-list-item:hover {
	background: var(--dark);
}

.section-points-list-item-number {
    font-family: 'Times New Roman',serif;
	font-size: 36px;
	font-weight: 700;
	color: var(--title);
	line-height: 1.4em;
	margin: 0 0 8px 0;
}

.section-points-list-item:hover .section-points-list-item-number {
	color:var(--white);
}

.section-points-list-item h3 {
	font-size: 24px;
	color: var(--title);
	margin: 0 0 12px 0;
}

.section-points-list-item:hover h3 {
	color:var(--white);
}

.section-points-list-item p {
	color: var(--body-text);
	margin: 0;
}
.section-points-list-item:hover p {
	color: var(--light-bg);
}


/* section-pointscenterdbg */

.section-pointscenterdbg-list {
	gap:24px;
}

.section-pointscenterdbg-list-item {
	width:100%;
	padding: 30px 15px;
	border-radius: 8px;
	transition: .2s all;
}
@media (min-width:768px) {
	.section-pointscenterdbg-list-item {
		flex: 1 0 calc(50% - 12px);
		max-width: calc(50% - 12px);
	}
}
@media (min-width:992px) {
	.section-pointscenterdbg-list-item {
		padding: 30px;
	}
}

.section-pointscenterdbg-list-number {
	min-width: 48px;
	max-width: 48px;
	height: 48px;
	font-family: 'Times New Roman',serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--white);
	line-height: 1.4em;
	background: var(--dark);
	margin:0 auto 12px auto;
	border-radius: 8px;
}

.section-pointscenterdbg-list h3 {
	font-size: 22px;
}
@media (min-width:768px) {
	.section-pointscenterdbg-list h3 {
		font-size: 24px;
	}
}


/* section-faq */

@media (min-width:768px) {
	.section-faq.container {
		width: 80%;
		max-width: 1620px;
	}
}
@media (min-width:1200px) {
	.section-faq.container {
		width: 69%;
	}
}

.section-faq .heading-border {
    margin: 0 0 12px 0;
}

.section-faq .accordion-item {
	margin: 0 0 0 0;
	border: none;
	border-bottom: 1px solid var(--stroke);
}

.section-faq .accordion-item:last-child {
	border-bottom: none;
}

.section-faq .accordion-item button {
	width: 100%;
    font-family: 'Times New Roman',serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--title);
	line-height: 1.4em;
	text-align: left;
	margin:0;
	padding:22px 40px 21px 14px;
	background:transparent;
	border: none;
	border-radius:0;
	position: relative;
	outline: none;
}

.section-faq-btn-icon {
	width: 12px;
	height: 12px;
	top:calc(50% - 6px);
	right: 20px;
	position: absolute;
	transition: .2s all;
}

.section-faq .accordion-item button[aria-expanded="true"] .section-faq-btn-icon {
	transform: rotate(-180deg);
}

.section-faq .faq-a {
	padding:0 14px 20px 14px;
}

.section-faq .accordion-item p:last-child {
	margin: 0;
}


/* section-pricelist */

.section-pricelist h2 {
	margin: 0;
}

.section-pricelist p {
	margin:20px 0 0 0;
}

.section-pricelist-list-item {
	padding: 40px 0;
	gap:24px;
	border-bottom: 1px solid var(--stroke);
}

.section-pricelist-list-inner-tnr {
	font-family: 'Times New Roman',serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--title);
	line-height: 1.2em;
}
@media (min-width:768px) {
	.section-pricelist-list-inner-tnr {
		font-size: 24px;
	}
}

@media (min-width:768px) {
	.section-pricelist-list-inner {
		flex:0 0 calc(33.3333% - 16px);
		max-width: calc(33.3333% - 16px);
	}
}

.section-pricelist-list-inner ul {
	margin: 0;
	padding: 0;

}

.section-pricelist-list-inner ul > li {
	font-size: 16px;
	margin:0px 0px 10px 0px;
	padding:0px 0px 0px 24px;
	list-style: none;
	position: relative; 
}

.section-pricelist-list-inner ul> li:last-child {
	margin: 0;
}

.section-pricelist-list-inner ul > li::before {
	content: '';
	width: 15px;
	height: 15px;
	background:url('images/icon-list.svg') no-repeat;
	background-size: 15px 15px;
	border-radius: 0%;
	left:0;
	top:4px;
	position: absolute;
}

.section-pricelist-list-inner ul > li:last-child {
	margin-bottom: 0;
}


/* section-ctasimple */

.section-ctasimple-wrapper {
	background: var(--dark);
	border-radius: 8px;
	padding: 30px;
	gap:34px;
}

.section-ctasimple h3 {
	font-size: 20px;
	color: var(--white);
	line-height: 1.4em;
	margin: 0;
}
@media (min-width:768px) {
	.section-ctasimple h3 {
		font-size: 24px;
		max-width: 54%;
	}
}

@media (min-width:1200px) {
	.section-ctasimple h3 {
		font-size: 28px;
	}
}

.section-ctasimple .btn-primary {
	width: 100%;
}
@media (min-width:576px) {
	.section-ctasimple .btn-primary {
		width: auto;
	}
}


/* section-cta */

.section-cta-wrapper {
	background: url('images/section-cta-bg.avif') no-repeat var(--dark);
	background-size: cover;
	border-radius: 8px;
	padding: 20px;
	gap:48px 24px;
}
@media (min-width:992px) {
	.section-cta-wrapper {
		padding:50px;
	}
}

.section-cta-inner {
	width: 100%;
}
@media (min-width:768px) {
	.section-cta-inner {
		flex:1 0 45%;
		max-width: 45%;
	}
}

.section-cta-inner h2 {
	color: var(--white);
	margin: 0 0 24px 0;
}

.section-cta-inner p {
	color: var(--light-bg);
	line-height: 1.2em;
}


.section-cta-inner li {
	color: var(--gray-100);
	font-size: 16px;
}

.section-cta-inner .btn-primary {
	width: 100%;
	margin: 24px 0 0 0;
}
@media (min-width:576px) {
	.section-cta-inner .btn-primary {
		width: auto;
	}
}

.section-cta-image {
		width: 100%;
}
@media (min-width:768px) {
	.section-cta-image {
		flex:1 0 40%;
		max-width: 40%;
	}
}

.section-cta-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}


/* section-google */


/* section-videoreviews */

.section-videoreviews {
	overflow: hidden;
}

.swiper.videoreviewsSwiper {
	width: calc(100% + 24px);
	overflow: visible;
}
@media (min-width:576px) {
	.swiper.videoreviewsSwiper {
		width:auto;
		overflow: hidden;
	}
}

.section-videoreviews-list-item-video {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

.section-videoreviews-list-item-video iframe {
    width: 100%;
    height: auto;
	border-radius: 8px;
    min-height: 100%;
    object-fit: cover;
    left: 0px;
    top: 0px;
    position: absolute;
}


/* section-references */

.section-references {
	overflow: hidden;
}

.referencesSwiper-container {
	position: relative;
}

.referencesSwiper.swiper {
	position: static;
	overflow: visible;
}
@media (min-width:576px) {
	.referencesSwiper.swiper {
		overflow: hidden;
	}
}

.referencesSwiper .swiper-slide {
	height: auto;
	position: relative;
}

.referencesSwiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.referencesSwiper .swiper-slide::after {
	content: '';
	width: 100%;
	height: 100%;
	transition: .2s all;
	background:url('images/icon-zoom.svg') center no-repeat rgba(31, 34, 39, 0.68);
	background-size: 19px 19px;
	top:0;
	left:0;
	position: absolute;
	opacity: 0;
	transition: .2s all;
}

.referencesSwiper .swiper-slide:hover::after {
	opacity: 1;
}

.swiper-nav-btns {
	display: none;
}
@media (min-width:576px) {
	.swiper-nav-btns {
		width: 44px;
		height: 44px;
		background: var(--white);
		border-radius: 8px;
		border: none;
		display: flex;
		align-items: center;
		justify-content: center;
		top:50%;
		position: absolute;
		-webkit-box-shadow: 0px 16px 16px -8px rgba(0, 0, 0, 0.25);
		-moz-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
		box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
		z-index: 990;
	}
}

.swiper-nav-btns.swiper-prev {
	left: -22px;
}

.swiper-nav-btns.swiper-next {
	right: -22px;
}


/* section-courses */

.productsSwiper.swiper {
	width: calc(100% + 20px);
	position: static;
}
@media (min-width:576px) {
	.productsSwiper.swiper {
		width:100%;
	}
}

.productsSwiper-wrapper {
	margin: 45px 0 0 0;
	position: relative;
}
@media (min-width:768px) {
	.productsSwiper-wrapper {
		margin: 0;
	}
}

.woocommerce ul.products.swiper-wrapper {
	margin:0;
	padding: 0;
	flex-wrap: nowrap;
	gap:0;
	overflow: visible;
}

.woocommerce ul.products li.product.swiper-slide, .woocommerce ul.products[class*=columns-] li.product.swiper-slide {
	width: unset;
	height: auto;
	max-width: unset;
	min-width: unset;
	margin: 0;
	padding: 0 0 90px 0;
}

.productsSwiper-btns {
	display: none;
}
@media (min-width:576px) {
	.productsSwiper-btns {
		width: 44px;
		height: 44px;
		background: var(--white);
		border-radius: 8px;
		border: none;
		display: flex;
		align-items: center;
		justify-content: center;
		top:50%;
		position: absolute;
		-webkit-box-shadow: 0px 16px 16px -8px rgba(0, 0, 0, 0.25);
		-moz-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
		box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
		z-index: 990;
	}
}

.productsSwiper-prev {
	left: -22px;
}

.productsSwiper-next {
	right: -22px;
}


/* section-contact  */

@media (min-width:768px) {
	.section-contact {
		background: #FFFFFF;
		background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(241, 241, 241, 1) 50%, rgba(241, 241, 241, 1) 100%);
	}
}

.section-contact-inner {
	width: 100%;
	padding:0 0 34px 0;
}
@media (min-width:768px) {
	.section-contact-inner {
		flex:0 0 40%;
		padding: 24px 0;
	}
}
@media (min-width:1200px) {
	.section-contact-inner {
		flex:0 0 32%;
	}
}

.section-contact-details {
	margin: 0 0 24px 0;
	padding: 0;
	border-bottom: 1px solid var(--stroke);
}

.section-contact-details li {
	font-size: 18px;
	color: var(--body-text);
	margin: 0 0 24px 0;
	padding: 0;
	list-style: none;
	gap:20px;
}

.section-contact-icon {
	width: 36px;
	height: 36px;
	background:var(--dark);
	border-radius: 8px;
	margin-top: 8px;
}

.section-contact-heading {
	font-family: 'Times New Roman',serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--title);
	line-height: 1.4em;
}

.section-contact-details li a, .section-contact-details li p {
	font-size: 18px;
	color: var(--body-text);
	text-decoration: none;
	margin: 0;
}

.section-contact-details li a:hover {
	color: var(--black-900);
	text-decoration: none;
}

.section-contact-sm {
	margin: 0;
	padding:16px 0 0 0;
	gap:12px;
}

.section-contact-sm li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.section-contact-sm li a {
	width: 36px;
	height: 36px;
	text-decoration: none;
	background: var(--dark);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-contact-sm li a:hover {
	background:var(--black);
}

.section-contact-form {
	width: 100%;
	padding: 30px 0 40px 0;
	position: relative;
}
@media (min-width:768px) {
	.section-contact-form {
		flex:1 0 50%;
		max-width: 50%;
		padding: 60px 0 60px 5%;
	}
}
@media (min-width:1200px) {
	.section-contact-form {
		padding: 60px 0 60px 10%;
	}
}

.section-contact-form::after {
	content: '';
	width: calc(100% + 48px);
	height: 100%;
	background:#F1F1F1;
	left:-24px;
	top:0;
	position: absolute;
	z-index: -1;
}
@media (min-width:576px) {
	.section-contact-form::after {
		width: calc(100% + 64px);
		left:-32px;
	}
}
@media (min-width:768px) {
	.section-contact-form::after {
		display: none;
	}
}

.section-contact-form p {
	font-size: 14px;
	margin: 20px 0 0 0;
}











/* form */

form label:not(.checkbox),form label:not(.woocommerce-form__label-for-checkbox) {
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	color: var(--body-text);
	line-height: 24px;
	margin:0 0 24px 0;
	padding: 0;
}

.woocommerce form .form-row label {
	line-height: 24px;
	margin: 0;
}

.required {
	font-weight: 400;
	color: var(--gold-default);
}

form p {
	font-size: 16px;
	font-weight: 400;
	color: var(--body-text);
	/* margin: -10px 0 -10px 0; */
	margin: 0;
}



::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	font-size:16px;
	font-weight: 400;
	color:var(--placeholder);
}
::-moz-placeholder { /* Firefox 19+ */
	font-size:16px;
	font-weight: 400;
	color:var(--placeholder);
}
:-ms-input-placeholder { /* IE 10+ */
	font-size:16px;
	font-weight: 400;
	color:var(--placeholder);
}
:-moz-placeholder { /* Firefox 18- */
	font-size:16px;
	font-weight: 400;
	color:var(--placeholder);
}


form .row-30 > [class*="col-"] {
	margin-bottom: 32px;
}

form .row-30 > [class*="col-"].col-form-mb-small {
	margin-bottom: 12px;
}

.cf-req-span {
	padding-bottom: 6px;
}

input:not([type=submit], [type=checkbox], [type=radio]), select,
.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
	width:100%;
	height:48px;
	font-size:16px;
	font-weight: 400;
	color:var(--gray-500);
	line-height:48px;
	background:var(--white);
	border:1px solid var(--stroke);
	border-radius:8px;
	padding:0 12px;
	margin:8px 0 0 0;
	appearance: none;	
	outline: none;
}

.woocommerce form .form-row textarea.input-text {
	padding:12px;
    line-height: 1.4em;
}


select {
	background-image: url('images/icon-select.svg');
	background-position: right 14px top 50%;
	background-repeat: no-repeat;
	padding-right: 40px;
}

input[disabled=disabled] {
	opacity: .4;
}


textarea, textarea:active, textarea:focus  {
	width: 100%;
	height: 100px;
	font-size:16px;
	color:var(--gray-500);
	line-height:24px;
	background:var(--white);
	border:1px solid var(--stroke);
	border-radius:8px;
	padding:12px;
	margin:8px 0 0 0;
	outline: none;
	overflow: hidden;
}

.wpcf7-list-item {
	margin: 0 !important;
}

.form-message {
	padding-top: 22px;
}





.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	font-size: 14px;
	font-weight: 400;
	color:#ED8C05;
	line-height: 24px;
	border:none;
	background: none;
	margin: 22px 0 0 0;
	padding: 0;
	position: relative;
	display: flex;
	gap:7px;
}

.wpcf7 form.invalid .wpcf7-response-output::before, .wpcf7 form.unaccepted .wpcf7-response-output::before, .wpcf7 form.payment-required .wpcf7-response-output::before {
	content: '';
	width: 11px;
	min-width: 11px;
	height: 12px;
	background: #ED8C05;
	margin: 6px 0 0 0;
	display: block;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}



.wpcf7 form.sent .wpcf7-response-output {
	margin: 22px 0 0 0;
	padding: 0;
    border:none;
}

.wpcf7 form .wpcf7-response-output {
    font-size: 14px;
	font-weight: 400;
	color:#279F52;
	line-height: 24px;
	border:none;
	background: none;
	margin: 22px 0 0 0;
	padding: 0;
	position: relative;
	display: flex;
	gap:7px;
}

.wpcf7 form .wpcf7-response-output::before {
	content: '';
	width: 11px;
	min-width: 11px;
	height: 12px;
	background: #279F52;
	margin: 6px 0 0 0;
	display: block;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}




/* .wpcf7-not-valid-tip {
	font-size: 14px !important;
	margin-top: 4px;
} */
 
/* .wpcf7-not-valid .wpcf7-list-item-label:before {
	border-bottom: 2px solid #f00 !important;
}
 
.wpcf7-form input.wpcf7-not-valid, .wpcf7-form textarea.wpcf7-not-valid, .wpcf7-form select.wpcf7-not-valid {
	border-bottom:2px solid #f00;
}
 */

/* .wpcf7-not-valid .wpcf7-list-item-label:before {
	border: 1px solid #f00 !important;
}
  */
.wpcf7-form input.wpcf7-not-valid, .wpcf7-form textarea.wpcf7-not-valid, .wpcf7-form select.wpcf7-not-valid, .wpcf7-acceptance.wpcf7-not-valid input {
/* 	border:1px solid #f00; */
	border-color:#f00 !important;
}
/* 
.wpcf7-acceptance.wpcf7-not-valid .wpcf7-list-item-label:before {
	border: 1px solid #f00 !important;
}
 */
.wpcf7-not-valid-tip {
    font-size: 12px !important;
    font-weight: 400 !important;
	color: #f00 !important;
    line-height: 14px;
    margin: 6px 0px 0px 0px !important;
    padding:0;
    position: relative;
    z-index: 974;
	display: block !important;
}

.wpcf7-spinner {
	display:none !important;
}

.wpcf7-response-output {
	color: var(--black);
}




form.wpcf7-form input[type=submit] {
	min-width: 100%;
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
	text-align:center;
	line-height:24px;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
    width: auto;
    margin: 0;
	background:var(--gold-default);
    border:none;
	border-radius:8px;
    outline: 0;
	padding:16px 39px;
	gap:8px;
    cursor: pointer;
	transition: .6s all;
	overflow: hidden;
}

form.wpcf7-form input[type=submit]:hover {
	color: var(--white);
	background: var(--gold-hover);
	text-decoration: none;
}









/* agree */

.agree {
	font-size: 13px;
	font-weight:400;
	color: var(--body-text);
	line-height:16px;
	padding: 0 0 0 40px;
	margin: 0 0 24px 0;
	position: relative;
	display: flex;
	align-items: center;
}

.agree label {
	font-size: 13px !important;
	font-weight:400 !important;
	color:var(--body-text);
	line-height: 16px !important;
	margin: 0 !important;
	position: relative !important;
}

.agree strong {
	font-weight: 700;
}

.agree a {
	font-weight: 400;
	color: var(--gold-default);
	text-decoration: none;
	text-decoration-thickness: 1px;
	text-underline-offset:4px; 
}

.agree a:hover {
	color: var(--gold-hover);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset:4px; 
}

form .agree input[type=checkbox] {
	top:2px;
	left: -30px;
	position: absolute;
}




/* checkbox */
form input[type=checkbox] {
	appearance: none;
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	background: var(--white);
	border: 1px solid var(--stroke);
	border-radius: 3px;
	padding: 0;

	cursor: pointer;
	position: relative;
}

form input[type=checkbox]:checked {
  background-color: var(--dark);
}

form input[type=checkbox]:checked::after {
	content:'';
	width: 12px;
	height: 9.6px;
	background: url('images/icon-checked.svg') center no-repeat;
	background-size: 12px 9.6px;
	top:3px;
	left:1px;
	position: absolute;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
 
.woocommerce form .form-row .input-checkbox {
	display: inline-block;
}


/* blog - listing */

.section-blog-search-sort {
	margin: 0 0 44px 0;
}
@media (min-width:992px) {
	.section-blog-search-sort {
		margin: 0 0 120px 0;
	}
}

.blog-filters {
	gap:24px;
}

.blog-filters > * {
	width: 100%;
}
@media (min-width:576px) {
	.blog-filters > * {
		width: calc(50% - 12px);
	}
}
@media (min-width:992px) {
	.blog-filters > * {
		width: calc(33.3333% - 16px);
	}
}

.blog-filters input, .blog-filters select {
	margin: 0;
}

.blog-filters-filter {
	position: relative;
}

.blog-filters-filter-search {
	top:17px;
	left:13px;
	position: absolute;
}

.blog-filters-filter input {
	padding: 0 60px 0 40px;
}

.blog-filters-filter button {
	width: 44px;
	height: 48px;
	border: none;
	background: none;
	right:0;
	top:0;
	position: absolute;
}


@media (max-width:1199.99px) {
	.section-blog-categories {
		padding-right: 0;
	}
}

.horizontal-scroll {
	/* width: calc(100% + 24px); */
/* 	display: flex;
	gap:20px; */

	overflow-x: auto;
	overflow-y: hidden;       /* blokujemy pionowy scroll wewnątrz kontenera */
	white-space: nowrap;      /* elementy w jednej linii */
	-webkit-overflow-scrolling: touch; /* płynny scroll na iOS */
	cursor: grab;
	user-select: none;        /* zapobiega zaznaczaniu tekstu podczas drag */
  overflow-x: clip; 
}

.horizontal-scroll.is-dragging {
  	cursor: grabbing;
}

.horizontal-scroll a {
  display: inline-block;
  margin: 0 16px 0 0;
}
@media (min-width:768px) {
	.horizontal-scroll a {
		margin: 0 26px 0 0;
	}
}

 



/* .scroll-buttons {
	width: calc(100% + 24px);
	display: flex;
	gap:20px;
	overflow-x: auto;
	cursor: grab;
	-webkit-overflow-scrolling: touch;
	padding: 0 24px 0 0;
	scrollbar-width: none; 
} */
@media (min-width:576px) {
	.scroll-buttons {
		width: calc(100% + 32px);
	}
}
@media (min-width:768px) {
	.scroll-buttons {
		width: 100%;
		padding: 0;
		gap:30px; 
	}
}


.scroll-buttons::-webkit-scrollbar { display: none; } /* Chrome/Safari */
.scroll-buttons:active { cursor: grabbing; }

/* 

.scroll-buttons.active {
  cursor: grabbing;
}
 */

.scroll-buttons::-webkit-scrollbar {
  	display: none;
}

.scroll-buttons a {
  	flex: 0 0 auto;
}




.blog-listing-wrapper {
	width: 100%;
	gap:12px 24px;
}
@media (min-width:576px) {
	.blog-listing-wrapper {
		gap:20px 24px;
	}
}

.blog-listing-item {
	width: 100%;
	text-decoration: none;
}
@media (min-width:576px) {
	.blog-listing-item {
		flex:0 1 calc(50% - 12px);
		max-width: calc(50% - 12px);
	}
}
@media (min-width:992px) {
	.blog-listing-item {
		flex:0 1 calc(33.3333% - 16px);
		max-width: calc(33.3333% - 16px);
	}
}

.blog-listing-image-wrapper {
	width: 100%;
	height: auto;
	background:url('images/logo-w.png') center no-repeat var(--dark);
	background-size: 84px 73px;
	margin: 0 0 24px 0;
	aspect-ratio: 1.5 / 1;
	border-radius: 24px;
	overflow: hidden;
	display: block;
}

.blog-listing-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.blog-listing-image-date-author {
	font-size: 13px;
	line-height: 16px;
	color: var(--title);
	gap:12px 24px;
	margin: 0 0 12px 0;
}

.blog-listing-image-date, .blog-listing-image-author {
	gap:4px;
}

.tags {
	gap:8px;
	margin: 0 0 24px 0;
}

.tags a {
	font-size: 16px;
	font-weight:400;
	color:var(--title);
	line-height: 20px;
	text-decoration: none;
	background: var(--light-bg);
	border-radius: 4px;
	padding: 6px 12px;
	display: block;
}

.tags a:hover {
	text-decoration: none;
	background: var(--stroke);
}

.categories {
	gap:8px;
	margin: 0 0 12px 0;
}

.categories a {
	font-size: 16px;
	font-weight:400;
	color:var(--white);
	line-height: 20px;
	text-decoration: none;
	background: var(--dark);
	border-radius: 4px;
	padding: 6px 12px;
	display: block;
}

.categories a:hover {
	text-decoration: none;
	background: var(--black);
}


.blog-listing-item a, .blog-listing-item a:hover {
	text-decoration: none;
}

.blog-listing-item a h4 {
	text-decoration: none;
	margin: 0 0 28px 0;
	transition: .2s all;
}

.blog-listing-item a h4:hover {
	color: var(--gold-hover);
	text-decoration: none;
}




.pagination {
	margin: 0 auto;
	padding:60px 0 0 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap:5px;
}
@media (min-width:768px) {
	.pagination {
		gap:10px;
	}
}

.pagination li {
	min-width:30px;
	height: 30px;
	font-size: 14px;
	font-weight: 700;
	color:var(--title);
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
}
@media (min-width:768px) {
	.pagination li {
		min-width:40px;
		height: 40px;
		font-size: 16px;
	}
}

.pagination li a.inactive {
	background:var(--light-bg)
}

.pagination li.current {
	color: var(--white);
	background: var(--gold-default);
}

.pagination li a {
	min-width:30px;
	height: 30px;
	color: var(--title);
	font-weight: 700;
	text-decoration: none;
	background: var(--light-bg);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
}
@media (min-width:768px) {
	.pagination li a {
		min-width:40px;
		height: 40px;
	}
}

.pagination li a:hover {
	color: var(--white);
	background: var(--stroke);
}

.pagination li a.special {
	background: var(--light-bg);
}

.pagination li.special-d1 a.special {
	background: url('images/icon-pagination-out.svg') no-repeat center var(--light-bg);
	transform: rotate(180deg);
}

.pagination li.special-d2 a.special {
	background: url('images/icon-pagination-out.svg') no-repeat center var(--light-bg);
}

.pagination li.special-c1 a.special {
	background: url('images/icon-pagination.svg') no-repeat center var(--light-bg);
	transform: rotate(180deg);
}
@media (min-width:768px) {
	.pagination li.special-c1 a.special {
		margin-right: 10px;
	}
}

.pagination li.special-c2 a.special {
	background: url('images/icon-pagination.svg') no-repeat center var(--light-bg);
}
@media (min-width:768px) {
	.pagination li.special-c2 a.special {
		margin-left: 10px;
	}
}




/* blog - single */


.single-date-author {
	width: fit-content;   /* szerokość wg dzieci */
	max-width: 100%;   
	background: var(--light-bg);
	border-radius: 8px;
	padding:12px 30px 12px 10px;
	font-size: 13px;
	line-height: 16px;
	color: var(--title);
	gap:12px 24px;
	margin:2px 0 0 0;
}
@media (min-width:768px) {
	.single-date-author {
		background: var(--white);
		margin:-4px 0 0 0;
	}
}

.single-date, .single-author {
	gap:4px;
}

.single-content {
	width: 100%;
}
@media (min-width:768px) {
	.single-content {
		flex: 0 1 58%;
		max-width: 58%;
	}
}

.single-featured-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 0 0 36px 0;
}

.single article {
	padding: 0 0 36px 0;
}



/* górne podsumowanie */
.reactions-summary {
	font-family: 'Times New Roman',serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--title);
	line-height: 1.4em;
	text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--light-bg);
    padding: 8px 11px;
    border-radius:8px;
    margin-bottom:48px;
}
@media (min-width:576px) {
	.reactions-summary {
		gap: 16px;
	}
}

.reactions-summary .emoji {
    font-size: 24px;
    margin-right: 2px;
}

/* dolne przyciski */
.reactions-buttons {
    display: flex;
    justify-content: space-between;
    gap: 2px;
    flex-wrap: wrap;
	margin:0 0 30px 0;
	padding: 14px 0 0 0;
}
@media (min-width:576px) {
	.reactions-buttons {
    justify-content: center;
		gap: 38px;
	}
}

.reactions-buttons .reaction {
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    transition: transform 0.2s;
}

.reactions-buttons .reaction .emoji {
    font-size: 48px;
	line-height: 1em;
    display: block;
}

.reactions-buttons .reaction .label {
	font-size: 13px;
	color: var(--title);
	line-height: 16px;
}




.share-buttons {
	gap:16px;
	padding: 12px 0 38px 0;
}

.share-buttons .share-btn {
	height: 47px;
	background: var(--dark);
	border-radius: 8px;
	padding: 5px;
	flex: 1 1 auto; 
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .2s all;
}
@media (min-width:320px) {
	.share-buttons .share-btn {
		flex: 1; 
	}
}

.share-buttons .share-btn.facebook {
	background: #1977F3;
}

.share-buttons .share-btn.whatsapp {
	background: #25D366;
}

.share-buttons .share-btn.twitter {
	background:var(--dark);
}

.share-buttons .share-btn.linkedin {
	background: #0A66C2;
}

.share-buttons .share-btn.email {
	background:var(--dark);
}

.share-buttons .share-btn:hover {
	opacity: .8;
}








/* Formularz komentarzy */

.comment-form-cookies-consent {
	display: none;
}




.comment-form-wrapper {
    margin-bottom: 40px;
}



/* Lista komentarzy */
.comment-list {
    list-style: none;
    padding: 0;
}
.comment-body {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.comment-avatar img {
	width: 30px;
	height: 30px;
    border-radius: 50%;
}
@media (min-width:768px) {
	.comment-avatar img {
		width: 73px;
		height:73px;
	}
}

.comment-author {
	font-family: 'Times New Roman',serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--title);
	line-height: 1.4em;
	margin: 0 0 4px 0;
	display: block;
}

.comment-meta {
    font-size: 13px;
	line-height: 16px;
	color: var(--body-text);
    margin-bottom: 10px;
}

.comment-text {
	color: var(--body-text);
    margin-bottom: 10px;
}

.comment-text p {
	color: var(--body-text);
}


.comment-reply {
	padding: 0 0 0 10px;
}

.comment-reply a {
    font-size: 16px;
    font-weight: 700;
    color:var(--dark);
    text-decoration: none;
	margin-right: 15px;
	white-space: nowrap;
}

.comment-reply a:hover {
    color:var(--black);
    text-decoration: none;
}

.comment-reply a svg {
	margin-right: 7px;
}


/* Odpowiedzi (wcięcie) */

.comment-list  > .children {
	display: none;
}

.comment-list .children {
    margin-left:88px;
}
@media (min-width:768px) {
.comment-list .children {
    margin-left:98px;
}
}

.comment-list .children li {
	list-style: none;
}


.toggle-replies {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    margin-right: 8px;
}

.toggle-replies::before {
	content:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTAnIGhlaWdodD0nNicgdmlld0JveD0nMCAwIDEwIDYnIGZpbGw9J25vbmUnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggZD0nTTEuNjk3MjcgMS4yNTA3M0w1LjAzMDYgNC41ODQwN0w4LjM2MzkzIDEuMjUwNzMnIHN0cm9rZT0nIzBDMEEyQicgc3Ryb2tlLXdpZHRoPScyJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1saW5lam9pbj0ncm91bmQnLz48L3N2Zz4=");
	margin: -3px 10px 0 0;
}

.toggle-replies:hover {
    text-decoration: underline;
}

.comment-children-wrapper {
 
    margin-top: 10px;

}
.comment-children-wrapper ul {
	margin: 0;
	padding: 0;
}
.comment-children-wrapper ul li {
	margin: 0;
	padding: 0;
	list-style: none;
}


.comment-form {
	display: flex;
	flex-direction: column;
	gap:8px;
	margin-bottom: 24px;
}

.comment-form input[name=author] {
	order:1;
}

.comment-form input[name=email] {
	order:2;
}

.comment-form textarea {
	order:3;
}

.comment-form .comment-form-cookies-consent {
	order: 4;
}

.comment-form .form-submit {
	margin-top: 8px;
	order: 5;
}



.post-author-wrapper {
	border-top: 1px solid var(--stroke);
	margin: 36px 0 0 0;
	padding: 36px 0 0 0;
}

.post-author-title {
	font-family: 'Times New Roman',serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--title);
	line-height: 1.4em;
	margin: 0 0 34px 0;
}

.post-author-inner {
	gap:24px;
}

.post-author__avatar img {
	width: 50px;
	height:50px;
	border-radius: 50%;
}
@media (min-width:768px) {
	.post-author__avatar img {
		width: 137px;
		height:137px;
	}
}

.post-author-name {
	font-family: 'Times New Roman',serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--title);
	line-height: 1.4em;
	margin: 0 0 4px 0;
}

.post-author-role {
	font-size: 13px;
	font-weight:400;
	color: var(--body-text);
	line-height: 16px;
	margin: 0;
}

.post-author-desc {
	color: var(--body-text);
	margin: 12px 0 0 0;
}




.single-column {
	width: 100%;
	margin-top: 120px;
}
@media (min-width:768px) {
	.single-column {
		flex: 0 1 32%;
		max-width: 32%;
		margin-top: 0;
	}
}

.post-sm {
	margin: 0 0 36px 0;
}

.post-sm-title {
	font-family: 'Times New Roman',serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--title);
	line-height: 1.4em;
	margin: 0 0 24px 0;
}

.post-sm ul {
	margin: 0;
	padding:0;
	gap:16px;
}

.post-sm ul li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.post-sm ul li a {
	width: 36px;
	height: 36px;
	text-decoration: none;
	background: var(--dark);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.post-sm ul li a:hover {
	background:var(--black);
}

.post-advert {
	gap:24px;
	margin: 0 0 36px 0;
}

.post-advert img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.post-products {
	margin: 0 0 36px 0;
}



.post-single-courses .product-label {
    font-family: 'Inter 18pt',sans-serif;
	margin: 0 0 20px 0;
}

.post-single-courses .product-price {
	margin: 10px 0 18px 0;
}

.post-single-courses .archive-addons {
    font-family: 'Inter 18pt',sans-serif;
	margin: 0;
	padding: 0;
}

.post-single-courses .archive-addons > div {
	gap:5px;
}


.post-products .btn-primary {
	width: 100%;
	margin-top: 27px;
}


.post-tags .tags {
	margin: 0 0 36px 0;
}

.post-tags-title {
	font-family: 'Times New Roman',serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--title);
	line-height: 1.4em;
	margin: 0 0 24px 0;
}



.post-posts-list-wrapper {
	margin: 0 0 36px 0;
}

.post-posts-title {
	font-family: 'Times New Roman',serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--title);
	line-height: 1.4em;
	margin: 0 0 24px 0;
}

.post-posts-list {
	gap:24px;
}

.post-posts-list a {
	min-height: 162px;
	border: 1px solid var(--stroke);
	border-radius: 8px;
	gap:16px;
	overflow: hidden;
	text-decoration: none;
}

.post-posts-list a:hover {
	text-decoration: none;
}

.post-posts-list-image {
	width: 48%;
	max-width: 48%;
	min-width: 48%;
	background:url('images/logo-w.png') center no-repeat var(--dark);
	background-size: 84px 73px;
}
@media (min-width:768px) {
	.post-posts-list-image {
		width: 44%;
		max-width: 44%;
		min-width: 44%;
	}
}

.post-posts-list-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-posts-list-title {
	font-family: 'Times New Roman',serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--title);
	line-height: 1.4em;
	padding: 12px 6px 12px 0;
	transition: .2s all;
}

.post-posts-list a:hover .post-posts-list-title {
	color: var(--gold-hover);
}


.post-categories-wrapper {
	margin: 0 0 36px 0;
}

.post-categories-title {
	font-family: 'Times New Roman',serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--title);
	line-height: 1.4em;
	margin: 0 0 30px 0;
}

.post-categories-inner {
	margin: 0 0 0 12px;
	padding: 0;
}

.post-categories-inner li {
	margin: 15px 0 12px 0;
	padding: 0;
	list-style: none;
}

.post-categories-inner li a {
	font-size: 16px;
	font-weight: 700;
	color: var(--dark);
	text-decoration: none;
	display: flex;
	align-items: center;
}

.post-categories-inner li a:hover {
	color: var(--gold-hover);
}

.post-categories-inner li a svg {
	margin-right: 8px;
}


/* single-related carousel */

.postsSwiper-container {
	position: relative;
}

.postsSwiper-btns {
	display: none;
}
@media (min-width:576px) {
	.postsSwiper-btns {
		width: 44px;
		height: 44px;
		background: var(--white);
		border-radius: 8px;
		border: none;
		display: flex;
		align-items: center;
		justify-content: center;
		top:50%;
		position: absolute;
		-webkit-box-shadow: 0px 16px 16px -8px rgba(0, 0, 0, 0.25);
		-moz-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
		box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
		z-index: 990;
	}
}

.postsSwiper-btns.postsSwiper-prev {
	left: -22px;
}

.postsSwiper-btns.postsSwiper-next {
	right: -22px;
}




/* footer */

footer {
	color:var(--white);
	background: var(--dark);
	padding: 40px 0;
	position: relative;
}
@media (min-width:768px) {
	footer {
		padding:60px 0;
	}
}

.footer-newsletter {
	gap:36px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--white);
}

@media (min-width:768px) {
	.footer-newsletter-heading {
		max-width: 34%;
	}
}
@media (min-width:992px) {
	.footer-newsletter-heading {
		max-width: 44%;
	}
}

.footer-newsletter-heading h2 {
	font-size: 34px;
	color: var(--white);
	margin:0 0 8px 0;
}

.footer-newsletter-heading p {
	font-size: 18px;
	color: var(--white);
	margin: 0;
}

.footer-newsletter .wpcf7 {
	margin: 0;
	padding: 0;
}
@media (min-width:768px) {
	.footer-newsletter .wpcf7 {
		max-width: 64%;
	}
}
@media (min-width:992px) {
	.footer-newsletter .wpcf7 {
		max-width: 44%;
	}
}

.footer-nl-form {
	gap:3px;
	display:flex;
	flex-direction: column;
}
@media (min-width:768px) {
	.footer-nl-form {
		flex-direction: row;
	}
}

.footer-nl-form .wpcf7-form-control-wrap {
	width: 100%;
}

.footer-newsletter input:not([type=submit], [type=checkbox], [type=radio]) {
	height: 48px;
	font-size: 16px;
	color: var(--gray-50);
	padding: 0 12px;
	margin: 0;
	border: none;
	border-radius: 8px;
	background:var(--dark-bg);
}

.footer-newsletter form.wpcf7-form input[type=submit] {
	min-width: unset;
	height: 48px;
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
	text-align:center;
	line-height:48px;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
    width: auto;
    margin: 0;
	background:var(--gold-default);
    border:none;
	border-radius:8px;
    outline: 0;
	padding:0 39px;
	gap:8px;
    cursor: pointer;
	transition: .6s all;
	overflow: hidden;
}

.footer-newsletter form.wpcf7-form input[type=submit]:hover {
	color: var(--white);
	background: var(--gold-hover);
	text-decoration: none;
}

.footer-newsletter .agree {
	font-size: 13px;
	font-weight:400;
	color: var(--light-bg);
	line-height: 16px;
	padding: 0 0 0 30px;
	margin: 12px 0 0 10px;
	position: relative;
}

.footer-newsletter .agree label {
	font-size: 13px !important;
	font-weight:400 !important;
	color: var(--light-bg);
	line-height: 16px !important;
	margin: 0 !important;
	padding: 0 !important;
	position: relative !important;
}

.footer-newsletter .agree a {
	font-weight: 400;
	color: var(--gold-default);
	text-decoration: none;
	text-decoration-thickness: 1px;
	text-underline-offset:4px; 
}

.footer-newsletter .agree a:hover {
	color: var(--gold-hover);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset:4px; 
}

.footer-newsletter .agree input[type=checkbox] {
	top:calc(50% - 8px);
	left: -30px;
	position: absolute;
}

.footer-newsletter input[type=checkbox] {
	appearance: none;
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	background: var(--white);
	border: none;
	border-radius: 3px;
	padding: 0;
	cursor: pointer;
	position: relative;
}

.footer-newsletter input[type=checkbox]:checked::after {
	content:'';
	width: 12px;
	height: 9.6px;
	background: url('images/icon-checked.svg') center no-repeat;
	background-size: 12px 9.6px;
	top:4px;
	left:2px;
	position: absolute;
}
 
.footer-newsletter .wpcf7-not-valid-tip {
	margin-bottom: 10px !important;
}

.footer-menus-logos {
	width: 100%;
	padding: 4px 10px;
	margin: 0 0 24px 0;
	gap:28px 18px;
}
@media (min-width:1200px) {
	.footer-menus-logos {
		max-width: 283px;
		gap:48px 28px;
		padding: 14px 24px;
	}
}
@media (min-width:1200px) {
	.footer-menus-logos {
		max-width: 380px;
	}
}

.footer-menus-logos img {
	width: auto;
	height: auto;
	max-width: 84px;
	max-height: 84px;
}
@media (min-width:1200px) {
.footer-menus-logos img {
	max-width: 140px;
	max-height: 140px;
}
}

.footer-menu {
	width: 100%;
	padding: 5px 10px;
}
@media (min-width:576px) {
	.footer-menu {
		max-width: 30%;
	}
}
@media (min-width:1200px) {
	.footer-menu {
		max-width: 200px;
	}
}

@media (min-width:1400px) {
	.footer-menu {
		max-width: 283px;
	}
}

.footer-menu .footer-collapse, .footer-menu .footer-collapse:hover {
	font-size: 16px;
	font-weight:700;
	color: var(--placeholder);
	text-decoration: none;
	margin: 0 0 20px 0;
	position: relative;
	display: block;
}
@media (min-width:576px) {
	.footer-menu .footer-collapse {
		pointer-events: none;
	}
}

.footer-menu .footer-collapse svg {
	right: 0;
	top:calc(50% - 5px);
	position: absolute;
	transition: .2s all;
}
@media (min-width:576px) {
	.footer-menu .footer-collapse svg {
		display: none;
	}
}

.footer-menu .footer-collapse[aria-expanded=true] svg {
	transform: rotate(180deg);
}

@media (max-width:575.98px) {
	.footer-menus-collapsing .footer-menu {
		border-bottom: 1px solid var(--placeholder);
		margin-bottom: 25px;
	}
}

@media (max-width:575.98px) {
	.footer-menus-collapsing .footer-menu:last-child {
		border-bottom: none;
		margin-bottom: 0;
	}
}

.footer-menu ul {
	margin: 0 0 24px 0;
	padding:0;
}
@media (min-width:576px) {
	.footer-menu ul {
		display: block !important;
	}
}
@media (min-width:768px) {
	.footer-menu ul {
		padding: 0;
	}
}

.footer-menu ul li {
	margin: 0 0 10px 0;
	padding: 0;
	list-style: none;
}
@media (min-width:768px) {
	.footer-menu ul li {
		margin: 0 0 8px 0;
	}
}

.footer-menu ul li:last-child {
	margin:0;
}

.footer-menu ul li a {
	font-size: 16px;
	font-weight: 700;
	color:var(--white);
	line-height: 24px;
	text-decoration: none;
	text-decoration-thickness: 1px;
 	text-underline-offset:7px;
}

.footer-menu ul li a:hover {
	color:var(--white);
	text-decoration: underline;
}

.copyrights {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	line-height: 24px;
	padding:26px 10px 0 10px;
	gap:20px;
	border-top: 1px solid var(--white);
}

.copyrights a, .copyrights a:hover {
	color:var(--gold-default);
	font-weight: 700;
	text-decoration: none;
} 



 
 




.msg-success-message {
	font-size: 14px;
	font-weight: 400;
	color:#279F52;
	line-height: 20px;
	border:none;
	background: none;
	margin: 22px 0 0 0;
	padding: 0 0 0 18px;
	position: relative;
	display: block;
}

.msg-success-message::before {
	content: '';
	width: 11px;
	min-width: 11px;
	height: 12px;
	background: #279F52;
	display: block;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	left:0;
	top:4px;
	position: absolute;
}


.msg-error-message, .stock.available-on-backorder, .stock.out-of-stock,
#add_payment_method table.cart td.actions .coupon .coupon-error-notice, .woocommerce-cart table.cart td.actions .coupon .coupon-error-notice, .woocommerce-checkout table.cart td.actions .coupon .coupon-error-notice {
	font-size: 14px;
	font-weight: 400;
	color:#EA0101;
	line-height: 20px;
	border:none;
	background: none;
	margin: 22px 0 0 0;
	padding: 0 0 0 18px;
	position: relative;
	display: block;
}

.msg-error-message::before, .stock.available-on-backorder::before, .stock.out-of-stock::before,
#add_payment_method table.cart td.actions .coupon .coupon-error-notice::before, .woocommerce-cart table.cart td.actions .coupon .coupon-error-notice::before, .woocommerce-checkout table.cart td.actions .coupon .coupon-error-notice::before {
	content: '';
	width: 11px;
	min-width: 11px;
	height: 12px;
	background: #EA0101;
	display: block;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	left:0;
	top:4px;
	position: absolute;
}





/* 
.goup {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--black-900);
	bottom: 20px;
	right: 20px;
	position: fixed;
	z-index: 992;
	visibility: hidden;
	opacity: 0;
	transition: .4s all;
}
@media (min-width:1200px) {
	.goup {
		bottom: 32px;
		right: 25px;
	}
}

.site-scrolled .goup {
    visibility: visible;
    opacity: 1;
}
 */









@media (max-width:767.98px) {
	.margin-bottom--200 { margin-bottom: -200px !important; }
	.margin-bottom--199 { margin-bottom: -199px !important; }
	.margin-bottom--198 { margin-bottom: -198px !important; }
	.margin-bottom--197 { margin-bottom: -197px !important; }
	.margin-bottom--196 { margin-bottom: -196px !important; }
	.margin-bottom--195 { margin-bottom: -195px !important; }
	.margin-bottom--194 { margin-bottom: -194px !important; }
	.margin-bottom--193 { margin-bottom: -193px !important; }
	.margin-bottom--192 { margin-bottom: -192px !important; }
	.margin-bottom--191 { margin-bottom: -191px !important; }
	.margin-bottom--190 { margin-bottom: -190px !important; }
	.margin-bottom--189 { margin-bottom: -189px !important; }
	.margin-bottom--188 { margin-bottom: -188px !important; }
	.margin-bottom--187 { margin-bottom: -187px !important; }
	.margin-bottom--186 { margin-bottom: -186px !important; }
	.margin-bottom--185 { margin-bottom: -185px !important; }
	.margin-bottom--184 { margin-bottom: -184px !important; }
	.margin-bottom--183 { margin-bottom: -183px !important; }
	.margin-bottom--182 { margin-bottom: -182px !important; }
	.margin-bottom--181 { margin-bottom: -181px !important; }
	.margin-bottom--180 { margin-bottom: -180px !important; }
	.margin-bottom--179 { margin-bottom: -179px !important; }
	.margin-bottom--178 { margin-bottom: -178px !important; }
	.margin-bottom--177 { margin-bottom: -177px !important; }
	.margin-bottom--176 { margin-bottom: -176px !important; }
	.margin-bottom--175 { margin-bottom: -175px !important; }
	.margin-bottom--174 { margin-bottom: -174px !important; }
	.margin-bottom--173 { margin-bottom: -173px !important; }
	.margin-bottom--172 { margin-bottom: -172px !important; }
	.margin-bottom--171 { margin-bottom: -171px !important; }
	.margin-bottom--170 { margin-bottom: -170px !important; }
	.margin-bottom--169 { margin-bottom: -169px !important; }
	.margin-bottom--168 { margin-bottom: -168px !important; }
	.margin-bottom--167 { margin-bottom: -167px !important; }
	.margin-bottom--166 { margin-bottom: -166px !important; }
	.margin-bottom--165 { margin-bottom: -165px !important; }
	.margin-bottom--164 { margin-bottom: -164px !important; }
	.margin-bottom--163 { margin-bottom: -163px !important; }
	.margin-bottom--162 { margin-bottom: -162px !important; }
	.margin-bottom--161 { margin-bottom: -161px !important; }
	.margin-bottom--160 { margin-bottom: -160px !important; }
	.margin-bottom--159 { margin-bottom: -159px !important; }
	.margin-bottom--158 { margin-bottom: -158px !important; }
	.margin-bottom--157 { margin-bottom: -157px !important; }
	.margin-bottom--156 { margin-bottom: -156px !important; }
	.margin-bottom--155 { margin-bottom: -155px !important; }
	.margin-bottom--154 { margin-bottom: -154px !important; }
	.margin-bottom--153 { margin-bottom: -153px !important; }
	.margin-bottom--152 { margin-bottom: -152px !important; }
	.margin-bottom--151 { margin-bottom: -151px !important; }
	.margin-bottom--150 { margin-bottom: -150px !important; }
	.margin-bottom--149 { margin-bottom: -149px !important; }
	.margin-bottom--148 { margin-bottom: -148px !important; }
	.margin-bottom--147 { margin-bottom: -147px !important; }
	.margin-bottom--146 { margin-bottom: -146px !important; }
	.margin-bottom--145 { margin-bottom: -145px !important; }
	.margin-bottom--144 { margin-bottom: -144px !important; }
	.margin-bottom--143 { margin-bottom: -143px !important; }
	.margin-bottom--142 { margin-bottom: -142px !important; }
	.margin-bottom--141 { margin-bottom: -141px !important; }
	.margin-bottom--140 { margin-bottom: -140px !important; }
	.margin-bottom--139 { margin-bottom: -139px !important; }
	.margin-bottom--138 { margin-bottom: -138px !important; }
	.margin-bottom--137 { margin-bottom: -137px !important; }
	.margin-bottom--136 { margin-bottom: -136px !important; }
	.margin-bottom--135 { margin-bottom: -135px !important; }
	.margin-bottom--134 { margin-bottom: -134px !important; }
	.margin-bottom--133 { margin-bottom: -133px !important; }
	.margin-bottom--132 { margin-bottom: -132px !important; }
	.margin-bottom--131 { margin-bottom: -131px !important; }
	.margin-bottom--130 { margin-bottom: -130px !important; }
	.margin-bottom--129 { margin-bottom: -129px !important; }
	.margin-bottom--128 { margin-bottom: -128px !important; }
	.margin-bottom--127 { margin-bottom: -127px !important; }
	.margin-bottom--126 { margin-bottom: -126px !important; }
	.margin-bottom--125 { margin-bottom: -125px !important; }
	.margin-bottom--124 { margin-bottom: -124px !important; }
	.margin-bottom--123 { margin-bottom: -123px !important; }
	.margin-bottom--122 { margin-bottom: -122px !important; }
	.margin-bottom--121 { margin-bottom: -121px !important; }
	.margin-bottom--120 { margin-bottom: -120px !important; }
	.margin-bottom--119 { margin-bottom: -119px !important; }
	.margin-bottom--118 { margin-bottom: -118px !important; }
	.margin-bottom--117 { margin-bottom: -117px !important; }
	.margin-bottom--116 { margin-bottom: -116px !important; }
	.margin-bottom--115 { margin-bottom: -115px !important; }
	.margin-bottom--114 { margin-bottom: -114px !important; }
	.margin-bottom--113 { margin-bottom: -113px !important; }
	.margin-bottom--112 { margin-bottom: -112px !important; }
	.margin-bottom--111 { margin-bottom: -111px !important; }
	.margin-bottom--110 { margin-bottom: -110px !important; }
	.margin-bottom--109 { margin-bottom: -109px !important; }
	.margin-bottom--108 { margin-bottom: -108px !important; }
	.margin-bottom--107 { margin-bottom: -107px !important; }
	.margin-bottom--106 { margin-bottom: -106px !important; }
	.margin-bottom--105 { margin-bottom: -105px !important; }
	.margin-bottom--104 { margin-bottom: -104px !important; }
	.margin-bottom--103 { margin-bottom: -103px !important; }
	.margin-bottom--102 { margin-bottom: -102px !important; }
	.margin-bottom--101 { margin-bottom: -101px !important; }
	.margin-bottom--100 { margin-bottom: -100px !important; }
	.margin-bottom--99 { margin-bottom: -99px !important; }
	.margin-bottom--98 { margin-bottom: -98px !important; }
	.margin-bottom--97 { margin-bottom: -97px !important; }
	.margin-bottom--96 { margin-bottom: -96px !important; }
	.margin-bottom--95 { margin-bottom: -95px !important; }
	.margin-bottom--94 { margin-bottom: -94px !important; }
	.margin-bottom--93 { margin-bottom: -93px !important; }
	.margin-bottom--92 { margin-bottom: -92px !important; }
	.margin-bottom--91 { margin-bottom: -91px !important; }
	.margin-bottom--90 { margin-bottom: -90px !important; }
	.margin-bottom--89 { margin-bottom: -89px !important; }
	.margin-bottom--88 { margin-bottom: -88px !important; }
	.margin-bottom--87 { margin-bottom: -87px !important; }
	.margin-bottom--86 { margin-bottom: -86px !important; }
	.margin-bottom--85 { margin-bottom: -85px !important; }
	.margin-bottom--84 { margin-bottom: -84px !important; }
	.margin-bottom--83 { margin-bottom: -83px !important; }
	.margin-bottom--82 { margin-bottom: -82px !important; }
	.margin-bottom--81 { margin-bottom: -81px !important; }
	.margin-bottom--80 { margin-bottom: -80px !important; }
	.margin-bottom--79 { margin-bottom: -79px !important; }
	.margin-bottom--78 { margin-bottom: -78px !important; }
	.margin-bottom--77 { margin-bottom: -77px !important; }
	.margin-bottom--76 { margin-bottom: -76px !important; }
	.margin-bottom--75 { margin-bottom: -75px !important; }
	.margin-bottom--74 { margin-bottom: -74px !important; }
	.margin-bottom--73 { margin-bottom: -73px !important; }
	.margin-bottom--72 { margin-bottom: -72px !important; }
	.margin-bottom--71 { margin-bottom: -71px !important; }
	.margin-bottom--70 { margin-bottom: -70px !important; }
	.margin-bottom--69 { margin-bottom: -69px !important; }
	.margin-bottom--68 { margin-bottom: -68px !important; }
	.margin-bottom--67 { margin-bottom: -67px !important; }
	.margin-bottom--66 { margin-bottom: -66px !important; }
	.margin-bottom--65 { margin-bottom: -65px !important; }
	.margin-bottom--64 { margin-bottom: -64px !important; }
	.margin-bottom--63 { margin-bottom: -63px !important; }
	.margin-bottom--62 { margin-bottom: -62px !important; }
	.margin-bottom--61 { margin-bottom: -61px !important; }
	.margin-bottom--60 { margin-bottom: -60px !important; }
	.margin-bottom--59 { margin-bottom: -59px !important; }
	.margin-bottom--58 { margin-bottom: -58px !important; }
	.margin-bottom--57 { margin-bottom: -57px !important; }
	.margin-bottom--56 { margin-bottom: -56px !important; }
	.margin-bottom--55 { margin-bottom: -55px !important; }
	.margin-bottom--54 { margin-bottom: -54px !important; }
	.margin-bottom--53 { margin-bottom: -53px !important; }
	.margin-bottom--52 { margin-bottom: -52px !important; }
	.margin-bottom--51 { margin-bottom: -51px !important; }
	.margin-bottom--50 { margin-bottom: -50px !important; }
	.margin-bottom--49 { margin-bottom: -49px !important; }
	.margin-bottom--48 { margin-bottom: -48px !important; }
	.margin-bottom--47 { margin-bottom: -47px !important; }
	.margin-bottom--46 { margin-bottom: -46px !important; }
	.margin-bottom--45 { margin-bottom: -45px !important; }
	.margin-bottom--44 { margin-bottom: -44px !important; }
	.margin-bottom--43 { margin-bottom: -43px !important; }
	.margin-bottom--42 { margin-bottom: -42px !important; }
	.margin-bottom--41 { margin-bottom: -41px !important; }
	.margin-bottom--40 { margin-bottom: -40px !important; }
	.margin-bottom--39 { margin-bottom: -39px !important; }
	.margin-bottom--38 { margin-bottom: -38px !important; }
	.margin-bottom--37 { margin-bottom: -37px !important; }
	.margin-bottom--36 { margin-bottom: -36px !important; }
	.margin-bottom--35 { margin-bottom: -35px !important; }
	.margin-bottom--34 { margin-bottom: -34px !important; }
	.margin-bottom--33 { margin-bottom: -33px !important; }
	.margin-bottom--32 { margin-bottom: -32px !important; }
	.margin-bottom--31 { margin-bottom: -31px !important; }
	.margin-bottom--30 { margin-bottom: -30px !important; }
	.margin-bottom--29 { margin-bottom: -29px !important; }
	.margin-bottom--28 { margin-bottom: -28px !important; }
	.margin-bottom--27 { margin-bottom: -27px !important; }
	.margin-bottom--26 { margin-bottom: -26px !important; }
	.margin-bottom--25 { margin-bottom: -25px !important; }
	.margin-bottom--24 { margin-bottom: -24px !important; }
	.margin-bottom--23 { margin-bottom: -23px !important; }
	.margin-bottom--22 { margin-bottom: -22px !important; }
	.margin-bottom--21 { margin-bottom: -21px !important; }
	.margin-bottom--20 { margin-bottom: -20px !important; }
	.margin-bottom--19 { margin-bottom: -19px !important; }
	.margin-bottom--18 { margin-bottom: -18px !important; }
	.margin-bottom--17 { margin-bottom: -17px !important; }
	.margin-bottom--16 { margin-bottom: -16px !important; }
	.margin-bottom--15 { margin-bottom: -15px !important; }
	.margin-bottom--14 { margin-bottom: -14px !important; }
	.margin-bottom--13 { margin-bottom: -13px !important; }
	.margin-bottom--12 { margin-bottom: -12px !important; }
	.margin-bottom--11 { margin-bottom: -11px !important; }
	.margin-bottom--10 { margin-bottom: -10px !important; }
	.margin-bottom--9 { margin-bottom: -9px !important; }
	.margin-bottom--8 { margin-bottom: -8px !important; }
	.margin-bottom--7 { margin-bottom: -7px !important; }
	.margin-bottom--6 { margin-bottom: -6px !important; }
	.margin-bottom--5 { margin-bottom: -5px !important; }
	.margin-bottom--4 { margin-bottom: -4px !important; }
	.margin-bottom--3 { margin-bottom: -3px !important; }
	.margin-bottom--2 { margin-bottom: -2px !important; }
	.margin-bottom--1 { margin-bottom: -1px !important; }
	.margin-bottom-0 { margin-bottom: 0px !important; }
	.margin-bottom-1 { margin-bottom: 1px !important; }
	.margin-bottom-2 { margin-bottom: 2px !important; }
	.margin-bottom-3 { margin-bottom: 3px !important; }
	.margin-bottom-4 { margin-bottom: 4px !important; }
	.margin-bottom-5 { margin-bottom: 5px !important; }
	.margin-bottom-6 { margin-bottom: 6px !important; }
	.margin-bottom-7 { margin-bottom: 7px !important; }
	.margin-bottom-8 { margin-bottom: 8px !important; }
	.margin-bottom-9 { margin-bottom: 9px !important; }
	.margin-bottom-10 { margin-bottom: 10px !important; }
	.margin-bottom-11 { margin-bottom: 11px !important; }
	.margin-bottom-12 { margin-bottom: 12px !important; }
	.margin-bottom-13 { margin-bottom: 13px !important; }
	.margin-bottom-14 { margin-bottom: 14px !important; }
	.margin-bottom-15 { margin-bottom: 15px !important; }
	.margin-bottom-16 { margin-bottom: 16px !important; }
	.margin-bottom-17 { margin-bottom: 17px !important; }
	.margin-bottom-18 { margin-bottom: 18px !important; }
	.margin-bottom-19 { margin-bottom: 19px !important; }
	.margin-bottom-20 { margin-bottom: 20px !important; }
	.margin-bottom-21 { margin-bottom: 21px !important; }
	.margin-bottom-22 { margin-bottom: 22px !important; }
	.margin-bottom-23 { margin-bottom: 23px !important; }
	.margin-bottom-24 { margin-bottom: 24px !important; }
	.margin-bottom-25 { margin-bottom: 25px !important; }
	.margin-bottom-26 { margin-bottom: 26px !important; }
	.margin-bottom-27 { margin-bottom: 27px !important; }
	.margin-bottom-28 { margin-bottom: 28px !important; }
	.margin-bottom-29 { margin-bottom: 29px !important; }
	.margin-bottom-30 { margin-bottom: 30px !important; }
	.margin-bottom-31 { margin-bottom: 31px !important; }
	.margin-bottom-32 { margin-bottom: 32px !important; }
	.margin-bottom-33 { margin-bottom: 33px !important; }
	.margin-bottom-34 { margin-bottom: 34px !important; }
	.margin-bottom-35 { margin-bottom: 35px !important; }
	.margin-bottom-36 { margin-bottom: 36px !important; }
	.margin-bottom-37 { margin-bottom: 37px !important; }
	.margin-bottom-38 { margin-bottom: 38px !important; }
	.margin-bottom-39 { margin-bottom: 39px !important; }
	.margin-bottom-40 { margin-bottom: 40px !important; }
	.margin-bottom-41 { margin-bottom: 41px !important; }
	.margin-bottom-42 { margin-bottom: 42px !important; }
	.margin-bottom-43 { margin-bottom: 43px !important; }
	.margin-bottom-44 { margin-bottom: 44px !important; }
	.margin-bottom-45 { margin-bottom: 45px !important; }
	.margin-bottom-46 { margin-bottom: 46px !important; }
	.margin-bottom-47 { margin-bottom: 47px !important; }
	.margin-bottom-48 { margin-bottom: 48px !important; }
	.margin-bottom-49 { margin-bottom: 49px !important; }
	.margin-bottom-50 { margin-bottom: 50px !important; }
	.margin-bottom-51 { margin-bottom: 51px !important; }
	.margin-bottom-52 { margin-bottom: 52px !important; }
	.margin-bottom-53 { margin-bottom: 53px !important; }
	.margin-bottom-54 { margin-bottom: 54px !important; }
	.margin-bottom-55 { margin-bottom: 55px !important; }
	.margin-bottom-56 { margin-bottom: 56px !important; }
	.margin-bottom-57 { margin-bottom: 57px !important; }
	.margin-bottom-58 { margin-bottom: 58px !important; }
	.margin-bottom-59 { margin-bottom: 59px !important; }
	.margin-bottom-60 { margin-bottom: 60px !important; }
	.margin-bottom-61 { margin-bottom: 61px !important; }
	.margin-bottom-62 { margin-bottom: 62px !important; }
	.margin-bottom-63 { margin-bottom: 63px !important; }
	.margin-bottom-64 { margin-bottom: 64px !important; }
	.margin-bottom-65 { margin-bottom: 65px !important; }
	.margin-bottom-66 { margin-bottom: 66px !important; }
	.margin-bottom-67 { margin-bottom: 67px !important; }
	.margin-bottom-68 { margin-bottom: 68px !important; }
	.margin-bottom-69 { margin-bottom: 69px !important; }
	.margin-bottom-70 { margin-bottom: 70px !important; }
	.margin-bottom-71 { margin-bottom: 71px !important; }
	.margin-bottom-72 { margin-bottom: 72px !important; }
	.margin-bottom-73 { margin-bottom: 73px !important; }
	.margin-bottom-74 { margin-bottom: 74px !important; }
	.margin-bottom-75 { margin-bottom: 75px !important; }
	.margin-bottom-76 { margin-bottom: 76px !important; }
	.margin-bottom-77 { margin-bottom: 77px !important; }
	.margin-bottom-78 { margin-bottom: 78px !important; }
	.margin-bottom-79 { margin-bottom: 79px !important; }
	.margin-bottom-80 { margin-bottom: 80px !important; }
	.margin-bottom-81 { margin-bottom: 81px !important; }
	.margin-bottom-82 { margin-bottom: 82px !important; }
	.margin-bottom-83 { margin-bottom: 83px !important; }
	.margin-bottom-84 { margin-bottom: 84px !important; }
	.margin-bottom-85 { margin-bottom: 85px !important; }
	.margin-bottom-86 { margin-bottom: 86px !important; }
	.margin-bottom-87 { margin-bottom: 87px !important; }
	.margin-bottom-88 { margin-bottom: 88px !important; }
	.margin-bottom-89 { margin-bottom: 89px !important; }
	.margin-bottom-90 { margin-bottom: 90px !important; }
	.margin-bottom-91 { margin-bottom: 91px !important; }
	.margin-bottom-92 { margin-bottom: 92px !important; }
	.margin-bottom-93 { margin-bottom: 93px !important; }
	.margin-bottom-94 { margin-bottom: 94px !important; }
	.margin-bottom-95 { margin-bottom: 95px !important; }
	.margin-bottom-96 { margin-bottom: 96px !important; }
	.margin-bottom-97 { margin-bottom: 97px !important; }
	.margin-bottom-98 { margin-bottom: 98px !important; }
	.margin-bottom-99 { margin-bottom: 99px !important; }
	.margin-bottom-100 { margin-bottom: 100px !important; }
	.margin-bottom-101 { margin-bottom: 101px !important; }
	.margin-bottom-102 { margin-bottom: 102px !important; }
	.margin-bottom-103 { margin-bottom: 103px !important; }
	.margin-bottom-104 { margin-bottom: 104px !important; }
	.margin-bottom-105 { margin-bottom: 105px !important; }
	.margin-bottom-106 { margin-bottom: 106px !important; }
	.margin-bottom-107 { margin-bottom: 107px !important; }
	.margin-bottom-108 { margin-bottom: 108px !important; }
	.margin-bottom-109 { margin-bottom: 109px !important; }
	.margin-bottom-110 { margin-bottom: 110px !important; }
	.margin-bottom-111 { margin-bottom: 111px !important; }
	.margin-bottom-112 { margin-bottom: 112px !important; }
	.margin-bottom-113 { margin-bottom: 113px !important; }
	.margin-bottom-114 { margin-bottom: 114px !important; }
	.margin-bottom-115 { margin-bottom: 115px !important; }
	.margin-bottom-116 { margin-bottom: 116px !important; }
	.margin-bottom-117 { margin-bottom: 117px !important; }
	.margin-bottom-118 { margin-bottom: 118px !important; }
	.margin-bottom-119 { margin-bottom: 119px !important; }
	.margin-bottom-120 { margin-bottom: 120px !important; }
	.margin-bottom-121 { margin-bottom: 121px !important; }
	.margin-bottom-122 { margin-bottom: 122px !important; }
	.margin-bottom-123 { margin-bottom: 123px !important; }
	.margin-bottom-124 { margin-bottom: 124px !important; }
	.margin-bottom-125 { margin-bottom: 125px !important; }
	.margin-bottom-126 { margin-bottom: 126px !important; }
	.margin-bottom-127 { margin-bottom: 127px !important; }
	.margin-bottom-128 { margin-bottom: 128px !important; }
	.margin-bottom-129 { margin-bottom: 129px !important; }
	.margin-bottom-130 { margin-bottom: 130px !important; }
	.margin-bottom-131 { margin-bottom: 131px !important; }
	.margin-bottom-132 { margin-bottom: 132px !important; }
	.margin-bottom-133 { margin-bottom: 133px !important; }
	.margin-bottom-134 { margin-bottom: 134px !important; }
	.margin-bottom-135 { margin-bottom: 135px !important; }
	.margin-bottom-136 { margin-bottom: 136px !important; }
	.margin-bottom-137 { margin-bottom: 137px !important; }
	.margin-bottom-138 { margin-bottom: 138px !important; }
	.margin-bottom-139 { margin-bottom: 139px !important; }
	.margin-bottom-140 { margin-bottom: 140px !important; }
	.margin-bottom-141 { margin-bottom: 141px !important; }
	.margin-bottom-142 { margin-bottom: 142px !important; }
	.margin-bottom-143 { margin-bottom: 143px !important; }
	.margin-bottom-144 { margin-bottom: 144px !important; }
	.margin-bottom-145 { margin-bottom: 145px !important; }
	.margin-bottom-146 { margin-bottom: 146px !important; }
	.margin-bottom-147 { margin-bottom: 147px !important; }
	.margin-bottom-148 { margin-bottom: 148px !important; }
	.margin-bottom-149 { margin-bottom: 149px !important; }
	.margin-bottom-150 { margin-bottom: 150px !important; }
	.margin-bottom-151 { margin-bottom: 151px !important; }
	.margin-bottom-152 { margin-bottom: 152px !important; }
	.margin-bottom-153 { margin-bottom: 153px !important; }
	.margin-bottom-154 { margin-bottom: 154px !important; }
	.margin-bottom-155 { margin-bottom: 155px !important; }
	.margin-bottom-156 { margin-bottom: 156px !important; }
	.margin-bottom-157 { margin-bottom: 157px !important; }
	.margin-bottom-158 { margin-bottom: 158px !important; }
	.margin-bottom-159 { margin-bottom: 159px !important; }
	.margin-bottom-160 { margin-bottom: 160px !important; }
	.margin-bottom-161 { margin-bottom: 161px !important; }
	.margin-bottom-162 { margin-bottom: 162px !important; }
	.margin-bottom-163 { margin-bottom: 163px !important; }
	.margin-bottom-164 { margin-bottom: 164px !important; }
	.margin-bottom-165 { margin-bottom: 165px !important; }
	.margin-bottom-166 { margin-bottom: 166px !important; }
	.margin-bottom-167 { margin-bottom: 167px !important; }
	.margin-bottom-168 { margin-bottom: 168px !important; }
	.margin-bottom-169 { margin-bottom: 169px !important; }
	.margin-bottom-170 { margin-bottom: 170px !important; }
	.margin-bottom-171 { margin-bottom: 171px !important; }
	.margin-bottom-172 { margin-bottom: 172px !important; }
	.margin-bottom-173 { margin-bottom: 173px !important; }
	.margin-bottom-174 { margin-bottom: 174px !important; }
	.margin-bottom-175 { margin-bottom: 175px !important; }
	.margin-bottom-176 { margin-bottom: 176px !important; }
	.margin-bottom-177 { margin-bottom: 177px !important; }
	.margin-bottom-178 { margin-bottom: 178px !important; }
	.margin-bottom-179 { margin-bottom: 179px !important; }
	.margin-bottom-180 { margin-bottom: 180px !important; }
	.margin-bottom-181 { margin-bottom: 181px !important; }
	.margin-bottom-182 { margin-bottom: 182px !important; }
	.margin-bottom-183 { margin-bottom: 183px !important; }
	.margin-bottom-184 { margin-bottom: 184px !important; }
	.margin-bottom-185 { margin-bottom: 185px !important; }
	.margin-bottom-186 { margin-bottom: 186px !important; }
	.margin-bottom-187 { margin-bottom: 187px !important; }
	.margin-bottom-188 { margin-bottom: 188px !important; }
	.margin-bottom-189 { margin-bottom: 189px !important; }
	.margin-bottom-190 { margin-bottom: 190px !important; }
	.margin-bottom-191 { margin-bottom: 191px !important; }
	.margin-bottom-192 { margin-bottom: 192px !important; }
	.margin-bottom-193 { margin-bottom: 193px !important; }
	.margin-bottom-194 { margin-bottom: 194px !important; }
	.margin-bottom-195 { margin-bottom: 195px !important; }
	.margin-bottom-196 { margin-bottom: 196px !important; }
	.margin-bottom-197 { margin-bottom: 197px !important; }
	.margin-bottom-198 { margin-bottom: 198px !important; }
	.margin-bottom-199 { margin-bottom: 199px !important; }
	.margin-bottom-200 { margin-bottom: 200px !important; }
}

@media (min-width:768px) {
	.margin-bottom-large--200 { margin-bottom: -200px !important; }
	.margin-bottom-large--199 { margin-bottom: -199px !important; }
	.margin-bottom-large--198 { margin-bottom: -198px !important; }
	.margin-bottom-large--197 { margin-bottom: -197px !important; }
	.margin-bottom-large--196 { margin-bottom: -196px !important; }
	.margin-bottom-large--195 { margin-bottom: -195px !important; }
	.margin-bottom-large--194 { margin-bottom: -194px !important; }
	.margin-bottom-large--193 { margin-bottom: -193px !important; }
	.margin-bottom-large--192 { margin-bottom: -192px !important; }
	.margin-bottom-large--191 { margin-bottom: -191px !important; }
	.margin-bottom-large--190 { margin-bottom: -190px !important; }
	.margin-bottom-large--189 { margin-bottom: -189px !important; }
	.margin-bottom-large--188 { margin-bottom: -188px !important; }
	.margin-bottom-large--187 { margin-bottom: -187px !important; }
	.margin-bottom-large--186 { margin-bottom: -186px !important; }
	.margin-bottom-large--185 { margin-bottom: -185px !important; }
	.margin-bottom-large--184 { margin-bottom: -184px !important; }
	.margin-bottom-large--183 { margin-bottom: -183px !important; }
	.margin-bottom-large--182 { margin-bottom: -182px !important; }
	.margin-bottom-large--181 { margin-bottom: -181px !important; }
	.margin-bottom-large--180 { margin-bottom: -180px !important; }
	.margin-bottom-large--179 { margin-bottom: -179px !important; }
	.margin-bottom-large--178 { margin-bottom: -178px !important; }
	.margin-bottom-large--177 { margin-bottom: -177px !important; }
	.margin-bottom-large--176 { margin-bottom: -176px !important; }
	.margin-bottom-large--175 { margin-bottom: -175px !important; }
	.margin-bottom-large--174 { margin-bottom: -174px !important; }
	.margin-bottom-large--173 { margin-bottom: -173px !important; }
	.margin-bottom-large--172 { margin-bottom: -172px !important; }
	.margin-bottom-large--171 { margin-bottom: -171px !important; }
	.margin-bottom-large--170 { margin-bottom: -170px !important; }
	.margin-bottom-large--169 { margin-bottom: -169px !important; }
	.margin-bottom-large--168 { margin-bottom: -168px !important; }
	.margin-bottom-large--167 { margin-bottom: -167px !important; }
	.margin-bottom-large--166 { margin-bottom: -166px !important; }
	.margin-bottom-large--165 { margin-bottom: -165px !important; }
	.margin-bottom-large--164 { margin-bottom: -164px !important; }
	.margin-bottom-large--163 { margin-bottom: -163px !important; }
	.margin-bottom-large--162 { margin-bottom: -162px !important; }
	.margin-bottom-large--161 { margin-bottom: -161px !important; }
	.margin-bottom-large--160 { margin-bottom: -160px !important; }
	.margin-bottom-large--159 { margin-bottom: -159px !important; }
	.margin-bottom-large--158 { margin-bottom: -158px !important; }
	.margin-bottom-large--157 { margin-bottom: -157px !important; }
	.margin-bottom-large--156 { margin-bottom: -156px !important; }
	.margin-bottom-large--155 { margin-bottom: -155px !important; }
	.margin-bottom-large--154 { margin-bottom: -154px !important; }
	.margin-bottom-large--153 { margin-bottom: -153px !important; }
	.margin-bottom-large--152 { margin-bottom: -152px !important; }
	.margin-bottom-large--151 { margin-bottom: -151px !important; }
	.margin-bottom-large--150 { margin-bottom: -150px !important; }
	.margin-bottom-large--149 { margin-bottom: -149px !important; }
	.margin-bottom-large--148 { margin-bottom: -148px !important; }
	.margin-bottom-large--147 { margin-bottom: -147px !important; }
	.margin-bottom-large--146 { margin-bottom: -146px !important; }
	.margin-bottom-large--145 { margin-bottom: -145px !important; }
	.margin-bottom-large--144 { margin-bottom: -144px !important; }
	.margin-bottom-large--143 { margin-bottom: -143px !important; }
	.margin-bottom-large--142 { margin-bottom: -142px !important; }
	.margin-bottom-large--141 { margin-bottom: -141px !important; }
	.margin-bottom-large--140 { margin-bottom: -140px !important; }
	.margin-bottom-large--139 { margin-bottom: -139px !important; }
	.margin-bottom-large--138 { margin-bottom: -138px !important; }
	.margin-bottom-large--137 { margin-bottom: -137px !important; }
	.margin-bottom-large--136 { margin-bottom: -136px !important; }
	.margin-bottom-large--135 { margin-bottom: -135px !important; }
	.margin-bottom-large--134 { margin-bottom: -134px !important; }
	.margin-bottom-large--133 { margin-bottom: -133px !important; }
	.margin-bottom-large--132 { margin-bottom: -132px !important; }
	.margin-bottom-large--131 { margin-bottom: -131px !important; }
	.margin-bottom-large--130 { margin-bottom: -130px !important; }
	.margin-bottom-large--129 { margin-bottom: -129px !important; }
	.margin-bottom-large--128 { margin-bottom: -128px !important; }
	.margin-bottom-large--127 { margin-bottom: -127px !important; }
	.margin-bottom-large--126 { margin-bottom: -126px !important; }
	.margin-bottom-large--125 { margin-bottom: -125px !important; }
	.margin-bottom-large--124 { margin-bottom: -124px !important; }
	.margin-bottom-large--123 { margin-bottom: -123px !important; }
	.margin-bottom-large--122 { margin-bottom: -122px !important; }
	.margin-bottom-large--121 { margin-bottom: -121px !important; }
	.margin-bottom-large--120 { margin-bottom: -120px !important; }
	.margin-bottom-large--119 { margin-bottom: -119px !important; }
	.margin-bottom-large--118 { margin-bottom: -118px !important; }
	.margin-bottom-large--117 { margin-bottom: -117px !important; }
	.margin-bottom-large--116 { margin-bottom: -116px !important; }
	.margin-bottom-large--115 { margin-bottom: -115px !important; }
	.margin-bottom-large--114 { margin-bottom: -114px !important; }
	.margin-bottom-large--113 { margin-bottom: -113px !important; }
	.margin-bottom-large--112 { margin-bottom: -112px !important; }
	.margin-bottom-large--111 { margin-bottom: -111px !important; }
	.margin-bottom-large--110 { margin-bottom: -110px !important; }
	.margin-bottom-large--109 { margin-bottom: -109px !important; }
	.margin-bottom-large--108 { margin-bottom: -108px !important; }
	.margin-bottom-large--107 { margin-bottom: -107px !important; }
	.margin-bottom-large--106 { margin-bottom: -106px !important; }
	.margin-bottom-large--105 { margin-bottom: -105px !important; }
	.margin-bottom-large--104 { margin-bottom: -104px !important; }
	.margin-bottom-large--103 { margin-bottom: -103px !important; }
	.margin-bottom-large--102 { margin-bottom: -102px !important; }
	.margin-bottom-large--101 { margin-bottom: -101px !important; }
	.margin-bottom-large--100 { margin-bottom: -100px !important; }
	.margin-bottom-large--99 { margin-bottom: -99px !important; }
	.margin-bottom-large--98 { margin-bottom: -98px !important; }
	.margin-bottom-large--97 { margin-bottom: -97px !important; }
	.margin-bottom-large--96 { margin-bottom: -96px !important; }
	.margin-bottom-large--95 { margin-bottom: -95px !important; }
	.margin-bottom-large--94 { margin-bottom: -94px !important; }
	.margin-bottom-large--93 { margin-bottom: -93px !important; }
	.margin-bottom-large--92 { margin-bottom: -92px !important; }
	.margin-bottom-large--91 { margin-bottom: -91px !important; }
	.margin-bottom-large--90 { margin-bottom: -90px !important; }
	.margin-bottom-large--89 { margin-bottom: -89px !important; }
	.margin-bottom-large--88 { margin-bottom: -88px !important; }
	.margin-bottom-large--87 { margin-bottom: -87px !important; }
	.margin-bottom-large--86 { margin-bottom: -86px !important; }
	.margin-bottom-large--85 { margin-bottom: -85px !important; }
	.margin-bottom-large--84 { margin-bottom: -84px !important; }
	.margin-bottom-large--83 { margin-bottom: -83px !important; }
	.margin-bottom-large--82 { margin-bottom: -82px !important; }
	.margin-bottom-large--81 { margin-bottom: -81px !important; }
	.margin-bottom-large--80 { margin-bottom: -80px !important; }
	.margin-bottom-large--79 { margin-bottom: -79px !important; }
	.margin-bottom-large--78 { margin-bottom: -78px !important; }
	.margin-bottom-large--77 { margin-bottom: -77px !important; }
	.margin-bottom-large--76 { margin-bottom: -76px !important; }
	.margin-bottom-large--75 { margin-bottom: -75px !important; }
	.margin-bottom-large--74 { margin-bottom: -74px !important; }
	.margin-bottom-large--73 { margin-bottom: -73px !important; }
	.margin-bottom-large--72 { margin-bottom: -72px !important; }
	.margin-bottom-large--71 { margin-bottom: -71px !important; }
	.margin-bottom-large--70 { margin-bottom: -70px !important; }
	.margin-bottom-large--69 { margin-bottom: -69px !important; }
	.margin-bottom-large--68 { margin-bottom: -68px !important; }
	.margin-bottom-large--67 { margin-bottom: -67px !important; }
	.margin-bottom-large--66 { margin-bottom: -66px !important; }
	.margin-bottom-large--65 { margin-bottom: -65px !important; }
	.margin-bottom-large--64 { margin-bottom: -64px !important; }
	.margin-bottom-large--63 { margin-bottom: -63px !important; }
	.margin-bottom-large--62 { margin-bottom: -62px !important; }
	.margin-bottom-large--61 { margin-bottom: -61px !important; }
	.margin-bottom-large--60 { margin-bottom: -60px !important; }
	.margin-bottom-large--59 { margin-bottom: -59px !important; }
	.margin-bottom-large--58 { margin-bottom: -58px !important; }
	.margin-bottom-large--57 { margin-bottom: -57px !important; }
	.margin-bottom-large--56 { margin-bottom: -56px !important; }
	.margin-bottom-large--55 { margin-bottom: -55px !important; }
	.margin-bottom-large--54 { margin-bottom: -54px !important; }
	.margin-bottom-large--53 { margin-bottom: -53px !important; }
	.margin-bottom-large--52 { margin-bottom: -52px !important; }
	.margin-bottom-large--51 { margin-bottom: -51px !important; }
	.margin-bottom-large--50 { margin-bottom: -50px !important; }
	.margin-bottom-large--49 { margin-bottom: -49px !important; }
	.margin-bottom-large--48 { margin-bottom: -48px !important; }
	.margin-bottom-large--47 { margin-bottom: -47px !important; }
	.margin-bottom-large--46 { margin-bottom: -46px !important; }
	.margin-bottom-large--45 { margin-bottom: -45px !important; }
	.margin-bottom-large--44 { margin-bottom: -44px !important; }
	.margin-bottom-large--43 { margin-bottom: -43px !important; }
	.margin-bottom-large--42 { margin-bottom: -42px !important; }
	.margin-bottom-large--41 { margin-bottom: -41px !important; }
	.margin-bottom-large--40 { margin-bottom: -40px !important; }
	.margin-bottom-large--39 { margin-bottom: -39px !important; }
	.margin-bottom-large--38 { margin-bottom: -38px !important; }
	.margin-bottom-large--37 { margin-bottom: -37px !important; }
	.margin-bottom-large--36 { margin-bottom: -36px !important; }
	.margin-bottom-large--35 { margin-bottom: -35px !important; }
	.margin-bottom-large--34 { margin-bottom: -34px !important; }
	.margin-bottom-large--33 { margin-bottom: -33px !important; }
	.margin-bottom-large--32 { margin-bottom: -32px !important; }
	.margin-bottom-large--31 { margin-bottom: -31px !important; }
	.margin-bottom-large--30 { margin-bottom: -30px !important; }
	.margin-bottom-large--29 { margin-bottom: -29px !important; }
	.margin-bottom-large--28 { margin-bottom: -28px !important; }
	.margin-bottom-large--27 { margin-bottom: -27px !important; }
	.margin-bottom-large--26 { margin-bottom: -26px !important; }
	.margin-bottom-large--25 { margin-bottom: -25px !important; }
	.margin-bottom-large--24 { margin-bottom: -24px !important; }
	.margin-bottom-large--23 { margin-bottom: -23px !important; }
	.margin-bottom-large--22 { margin-bottom: -22px !important; }
	.margin-bottom-large--21 { margin-bottom: -21px !important; }
	.margin-bottom-large--20 { margin-bottom: -20px !important; }
	.margin-bottom-large--19 { margin-bottom: -19px !important; }
	.margin-bottom-large--18 { margin-bottom: -18px !important; }
	.margin-bottom-large--17 { margin-bottom: -17px !important; }
	.margin-bottom-large--16 { margin-bottom: -16px !important; }
	.margin-bottom-large--15 { margin-bottom: -15px !important; }
	.margin-bottom-large--14 { margin-bottom: -14px !important; }
	.margin-bottom-large--13 { margin-bottom: -13px !important; }
	.margin-bottom-large--12 { margin-bottom: -12px !important; }
	.margin-bottom-large--11 { margin-bottom: -11px !important; }
	.margin-bottom-large--10 { margin-bottom: -10px !important; }
	.margin-bottom-large--9 { margin-bottom: -9px !important; }
	.margin-bottom-large--8 { margin-bottom: -8px !important; }
	.margin-bottom-large--7 { margin-bottom: -7px !important; }
	.margin-bottom-large--6 { margin-bottom: -6px !important; }
	.margin-bottom-large--5 { margin-bottom: -5px !important; }
	.margin-bottom-large--4 { margin-bottom: -4px !important; }
	.margin-bottom-large--3 { margin-bottom: -3px !important; }
	.margin-bottom-large--2 { margin-bottom: -2px !important; }
	.margin-bottom-large--1 { margin-bottom: -1px !important; }
	.margin-bottom-large-0 { margin-bottom: 0px !important; }
	.margin-bottom-large-1 { margin-bottom: 1px !important; }
	.margin-bottom-large-2 { margin-bottom: 2px !important; }
	.margin-bottom-large-3 { margin-bottom: 3px !important; }
	.margin-bottom-large-4 { margin-bottom: 4px !important; }
	.margin-bottom-large-5 { margin-bottom: 5px !important; }
	.margin-bottom-large-6 { margin-bottom: 6px !important; }
	.margin-bottom-large-7 { margin-bottom: 7px !important; }
	.margin-bottom-large-8 { margin-bottom: 8px !important; }
	.margin-bottom-large-9 { margin-bottom: 9px !important; }
	.margin-bottom-large-10 { margin-bottom: 10px !important; }
	.margin-bottom-large-11 { margin-bottom: 11px !important; }
	.margin-bottom-large-12 { margin-bottom: 12px !important; }
	.margin-bottom-large-13 { margin-bottom: 13px !important; }
	.margin-bottom-large-14 { margin-bottom: 14px !important; }
	.margin-bottom-large-15 { margin-bottom: 15px !important; }
	.margin-bottom-large-16 { margin-bottom: 16px !important; }
	.margin-bottom-large-17 { margin-bottom: 17px !important; }
	.margin-bottom-large-18 { margin-bottom: 18px !important; }
	.margin-bottom-large-19 { margin-bottom: 19px !important; }
	.margin-bottom-large-20 { margin-bottom: 20px !important; }
	.margin-bottom-large-21 { margin-bottom: 21px !important; }
	.margin-bottom-large-22 { margin-bottom: 22px !important; }
	.margin-bottom-large-23 { margin-bottom: 23px !important; }
	.margin-bottom-large-24 { margin-bottom: 24px !important; }
	.margin-bottom-large-25 { margin-bottom: 25px !important; }
	.margin-bottom-large-26 { margin-bottom: 26px !important; }
	.margin-bottom-large-27 { margin-bottom: 27px !important; }
	.margin-bottom-large-28 { margin-bottom: 28px !important; }
	.margin-bottom-large-29 { margin-bottom: 29px !important; }
	.margin-bottom-large-30 { margin-bottom: 30px !important; }
	.margin-bottom-large-31 { margin-bottom: 31px !important; }
	.margin-bottom-large-32 { margin-bottom: 32px !important; }
	.margin-bottom-large-33 { margin-bottom: 33px !important; }
	.margin-bottom-large-34 { margin-bottom: 34px !important; }
	.margin-bottom-large-35 { margin-bottom: 35px !important; }
	.margin-bottom-large-36 { margin-bottom: 36px !important; }
	.margin-bottom-large-37 { margin-bottom: 37px !important; }
	.margin-bottom-large-38 { margin-bottom: 38px !important; }
	.margin-bottom-large-39 { margin-bottom: 39px !important; }
	.margin-bottom-large-40 { margin-bottom: 40px !important; }
	.margin-bottom-large-41 { margin-bottom: 41px !important; }
	.margin-bottom-large-42 { margin-bottom: 42px !important; }
	.margin-bottom-large-43 { margin-bottom: 43px !important; }
	.margin-bottom-large-44 { margin-bottom: 44px !important; }
	.margin-bottom-large-45 { margin-bottom: 45px !important; }
	.margin-bottom-large-46 { margin-bottom: 46px !important; }
	.margin-bottom-large-47 { margin-bottom: 47px !important; }
	.margin-bottom-large-48 { margin-bottom: 48px !important; }
	.margin-bottom-large-49 { margin-bottom: 49px !important; }
	.margin-bottom-large-50 { margin-bottom: 50px !important; }
	.margin-bottom-large-51 { margin-bottom: 51px !important; }
	.margin-bottom-large-52 { margin-bottom: 52px !important; }
	.margin-bottom-large-53 { margin-bottom: 53px !important; }
	.margin-bottom-large-54 { margin-bottom: 54px !important; }
	.margin-bottom-large-55 { margin-bottom: 55px !important; }
	.margin-bottom-large-56 { margin-bottom: 56px !important; }
	.margin-bottom-large-57 { margin-bottom: 57px !important; }
	.margin-bottom-large-58 { margin-bottom: 58px !important; }
	.margin-bottom-large-59 { margin-bottom: 59px !important; }
	.margin-bottom-large-60 { margin-bottom: 60px !important; }
	.margin-bottom-large-61 { margin-bottom: 61px !important; }
	.margin-bottom-large-62 { margin-bottom: 62px !important; }
	.margin-bottom-large-63 { margin-bottom: 63px !important; }
	.margin-bottom-large-64 { margin-bottom: 64px !important; }
	.margin-bottom-large-65 { margin-bottom: 65px !important; }
	.margin-bottom-large-66 { margin-bottom: 66px !important; }
	.margin-bottom-large-67 { margin-bottom: 67px !important; }
	.margin-bottom-large-68 { margin-bottom: 68px !important; }
	.margin-bottom-large-69 { margin-bottom: 69px !important; }
	.margin-bottom-large-70 { margin-bottom: 70px !important; }
	.margin-bottom-large-71 { margin-bottom: 71px !important; }
	.margin-bottom-large-72 { margin-bottom: 72px !important; }
	.margin-bottom-large-73 { margin-bottom: 73px !important; }
	.margin-bottom-large-74 { margin-bottom: 74px !important; }
	.margin-bottom-large-75 { margin-bottom: 75px !important; }
	.margin-bottom-large-76 { margin-bottom: 76px !important; }
	.margin-bottom-large-77 { margin-bottom: 77px !important; }
	.margin-bottom-large-78 { margin-bottom: 78px !important; }
	.margin-bottom-large-79 { margin-bottom: 79px !important; }
	.margin-bottom-large-80 { margin-bottom: 80px !important; }
	.margin-bottom-large-81 { margin-bottom: 81px !important; }
	.margin-bottom-large-82 { margin-bottom: 82px !important; }
	.margin-bottom-large-83 { margin-bottom: 83px !important; }
	.margin-bottom-large-84 { margin-bottom: 84px !important; }
	.margin-bottom-large-85 { margin-bottom: 85px !important; }
	.margin-bottom-large-86 { margin-bottom: 86px !important; }
	.margin-bottom-large-87 { margin-bottom: 87px !important; }
	.margin-bottom-large-88 { margin-bottom: 88px !important; }
	.margin-bottom-large-89 { margin-bottom: 89px !important; }
	.margin-bottom-large-90 { margin-bottom: 90px !important; }
	.margin-bottom-large-91 { margin-bottom: 91px !important; }
	.margin-bottom-large-92 { margin-bottom: 92px !important; }
	.margin-bottom-large-93 { margin-bottom: 93px !important; }
	.margin-bottom-large-94 { margin-bottom: 94px !important; }
	.margin-bottom-large-95 { margin-bottom: 95px !important; }
	.margin-bottom-large-96 { margin-bottom: 96px !important; }
	.margin-bottom-large-97 { margin-bottom: 97px !important; }
	.margin-bottom-large-98 { margin-bottom: 98px !important; }
	.margin-bottom-large-99 { margin-bottom: 99px !important; }
	.margin-bottom-large-100 { margin-bottom: 100px !important; }
	.margin-bottom-large-101 { margin-bottom: 101px !important; }
	.margin-bottom-large-102 { margin-bottom: 102px !important; }
	.margin-bottom-large-103 { margin-bottom: 103px !important; }
	.margin-bottom-large-104 { margin-bottom: 104px !important; }
	.margin-bottom-large-105 { margin-bottom: 105px !important; }
	.margin-bottom-large-106 { margin-bottom: 106px !important; }
	.margin-bottom-large-107 { margin-bottom: 107px !important; }
	.margin-bottom-large-108 { margin-bottom: 108px !important; }
	.margin-bottom-large-109 { margin-bottom: 109px !important; }
	.margin-bottom-large-110 { margin-bottom: 110px !important; }
	.margin-bottom-large-111 { margin-bottom: 111px !important; }
	.margin-bottom-large-112 { margin-bottom: 112px !important; }
	.margin-bottom-large-113 { margin-bottom: 113px !important; }
	.margin-bottom-large-114 { margin-bottom: 114px !important; }
	.margin-bottom-large-115 { margin-bottom: 115px !important; }
	.margin-bottom-large-116 { margin-bottom: 116px !important; }
	.margin-bottom-large-117 { margin-bottom: 117px !important; }
	.margin-bottom-large-118 { margin-bottom: 118px !important; }
	.margin-bottom-large-119 { margin-bottom: 119px !important; }
	.margin-bottom-large-120 { margin-bottom: 120px !important; }
	.margin-bottom-large-121 { margin-bottom: 121px !important; }
	.margin-bottom-large-122 { margin-bottom: 122px !important; }
	.margin-bottom-large-123 { margin-bottom: 123px !important; }
	.margin-bottom-large-124 { margin-bottom: 124px !important; }
	.margin-bottom-large-125 { margin-bottom: 125px !important; }
	.margin-bottom-large-126 { margin-bottom: 126px !important; }
	.margin-bottom-large-127 { margin-bottom: 127px !important; }
	.margin-bottom-large-128 { margin-bottom: 128px !important; }
	.margin-bottom-large-129 { margin-bottom: 129px !important; }
	.margin-bottom-large-130 { margin-bottom: 130px !important; }
	.margin-bottom-large-131 { margin-bottom: 131px !important; }
	.margin-bottom-large-132 { margin-bottom: 132px !important; }
	.margin-bottom-large-133 { margin-bottom: 133px !important; }
	.margin-bottom-large-134 { margin-bottom: 134px !important; }
	.margin-bottom-large-135 { margin-bottom: 135px !important; }
	.margin-bottom-large-136 { margin-bottom: 136px !important; }
	.margin-bottom-large-137 { margin-bottom: 137px !important; }
	.margin-bottom-large-138 { margin-bottom: 138px !important; }
	.margin-bottom-large-139 { margin-bottom: 139px !important; }
	.margin-bottom-large-140 { margin-bottom: 140px !important; }
	.margin-bottom-large-141 { margin-bottom: 141px !important; }
	.margin-bottom-large-142 { margin-bottom: 142px !important; }
	.margin-bottom-large-143 { margin-bottom: 143px !important; }
	.margin-bottom-large-144 { margin-bottom: 144px !important; }
	.margin-bottom-large-145 { margin-bottom: 145px !important; }
	.margin-bottom-large-146 { margin-bottom: 146px !important; }
	.margin-bottom-large-147 { margin-bottom: 147px !important; }
	.margin-bottom-large-148 { margin-bottom: 148px !important; }
	.margin-bottom-large-149 { margin-bottom: 149px !important; }
	.margin-bottom-large-150 { margin-bottom: 150px !important; }
	.margin-bottom-large-151 { margin-bottom: 151px !important; }
	.margin-bottom-large-152 { margin-bottom: 152px !important; }
	.margin-bottom-large-153 { margin-bottom: 153px !important; }
	.margin-bottom-large-154 { margin-bottom: 154px !important; }
	.margin-bottom-large-155 { margin-bottom: 155px !important; }
	.margin-bottom-large-156 { margin-bottom: 156px !important; }
	.margin-bottom-large-157 { margin-bottom: 157px !important; }
	.margin-bottom-large-158 { margin-bottom: 158px !important; }
	.margin-bottom-large-159 { margin-bottom: 159px !important; }
	.margin-bottom-large-160 { margin-bottom: 160px !important; }
	.margin-bottom-large-161 { margin-bottom: 161px !important; }
	.margin-bottom-large-162 { margin-bottom: 162px !important; }
	.margin-bottom-large-163 { margin-bottom: 163px !important; }
	.margin-bottom-large-164 { margin-bottom: 164px !important; }
	.margin-bottom-large-165 { margin-bottom: 165px !important; }
	.margin-bottom-large-166 { margin-bottom: 166px !important; }
	.margin-bottom-large-167 { margin-bottom: 167px !important; }
	.margin-bottom-large-168 { margin-bottom: 168px !important; }
	.margin-bottom-large-169 { margin-bottom: 169px !important; }
	.margin-bottom-large-170 { margin-bottom: 170px !important; }
	.margin-bottom-large-171 { margin-bottom: 171px !important; }
	.margin-bottom-large-172 { margin-bottom: 172px !important; }
	.margin-bottom-large-173 { margin-bottom: 173px !important; }
	.margin-bottom-large-174 { margin-bottom: 174px !important; }
	.margin-bottom-large-175 { margin-bottom: 175px !important; }
	.margin-bottom-large-176 { margin-bottom: 176px !important; }
	.margin-bottom-large-177 { margin-bottom: 177px !important; }
	.margin-bottom-large-178 { margin-bottom: 178px !important; }
	.margin-bottom-large-179 { margin-bottom: 179px !important; }
	.margin-bottom-large-180 { margin-bottom: 180px !important; }
	.margin-bottom-large-181 { margin-bottom: 181px !important; }
	.margin-bottom-large-182 { margin-bottom: 182px !important; }
	.margin-bottom-large-183 { margin-bottom: 183px !important; }
	.margin-bottom-large-184 { margin-bottom: 184px !important; }
	.margin-bottom-large-185 { margin-bottom: 185px !important; }
	.margin-bottom-large-186 { margin-bottom: 186px !important; }
	.margin-bottom-large-187 { margin-bottom: 187px !important; }
	.margin-bottom-large-188 { margin-bottom: 188px !important; }
	.margin-bottom-large-189 { margin-bottom: 189px !important; }
	.margin-bottom-large-190 { margin-bottom: 190px !important; }
	.margin-bottom-large-191 { margin-bottom: 191px !important; }
	.margin-bottom-large-192 { margin-bottom: 192px !important; }
	.margin-bottom-large-193 { margin-bottom: 193px !important; }
	.margin-bottom-large-194 { margin-bottom: 194px !important; }
	.margin-bottom-large-195 { margin-bottom: 195px !important; }
	.margin-bottom-large-196 { margin-bottom: 196px !important; }
	.margin-bottom-large-197 { margin-bottom: 197px !important; }
	.margin-bottom-large-198 { margin-bottom: 198px !important; }
	.margin-bottom-large-199 { margin-bottom: 199px !important; }
	.margin-bottom-large-200 { margin-bottom: 200px !important; }
}





::-moz-selection {
	color:var(--dark);
	background:var(--gold-hover) !important;
}

::selection {
	color:var(--dark);
	background:var(--gold-hover) !important;
}

::-moz-selection {
	color:var(--dark);
	background:var(--gold-hover) !important;
}



:root {
	scrollbar-color: var(--gold-hover) var(--stroke) !important;
	scrollbar-width: thin !important;
}

::-webkit-scrollbar {
   width:7px;
}

::-webkit-scrollbar-track {
   background:var(--stroke);
}

::-webkit-scrollbar-thumb {
   background:var(--gold-hover); 
}

::-webkit-scrollbar-thumb:hover {
	background:var(--gold-default);
}

@media (max-width: 991.98px) {
	::-webkit-scrollbar {
		display: none;
	}
}







/* .grecaptcha-badge {
	display: none !important;
	visibility: hidden !important;
	content-visibility: hidden !important;
}
 */




.load-delay {
	content-visibility: hidden;
	display: none;
	transition: .2s;  
}

.load-delay-active {
	content-visibility: visible;
	display: block;
	transition: .2s; 
}




@font-face {
    font-family: 'Times New Roman';
    src: url('fonts/TimesNewRomanPSMT.woff2') format('woff2'),
        url('fonts/TimesNewRomanPSMT.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Times New Roman';
    src: url('fonts/TimesNewRomanPS-ItalicMT.woff2') format('woff2'),
        url('fonts/TimesNewRomanPS-ItalicMT.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Times New Roman';
    src: url('fonts/TimesNewRomanPS-BoldItalicMT.woff2') format('woff2'),
        url('fonts/TimesNewRomanPS-BoldItalicMT.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Times New Roman';
    src: url('fonts/TimesNewRomanPS-BoldMT.woff2') format('woff2'),
        url('fonts/TimesNewRomanPS-BoldMT.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}




@font-face {
    font-family: 'Inter 18pt';
    src: url('fonts/Inter18pt-Light.woff2') format('woff2'),
        url('fonts/Inter18pt-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('fonts/Inter18pt-LightItalic.woff2') format('woff2'),
        url('fonts/Inter18pt-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}




@font-face {
    font-family: 'Inter 18pt';
    src: url('fonts/Inter18pt-Regular.woff2') format('woff2'),
        url('fonts/Inter18pt-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('fonts/Inter18pt-Italic.woff2') format('woff2'),
        url('fonts/Inter18pt-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: 'Inter 18pt';
    src: url('fonts/Inter18pt-Medium.woff2') format('woff2'),
        url('fonts/Inter18pt-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('fonts/Inter18pt-MediumItalic.woff2') format('woff2'),
        url('fonts/Inter18pt-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: 'Inter 18pt';
    src: url('fonts/Inter18pt-SemiBold.woff2') format('woff2'),
        url('fonts/Inter18pt-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('fonts/Inter18pt-SemiBoldItalic.woff2') format('woff2'),
        url('fonts/Inter18pt-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: 'Inter 18pt';
    src: url('fonts/Inter18pt-Bold.woff2') format('woff2'),
        url('fonts/Inter18pt-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('fonts/Inter18pt-BoldItalic.woff2') format('woff2'),
        url('fonts/Inter18pt-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: 'Inter 18pt';
    src: url('fonts/Inter18pt-ExtraBold.woff2') format('woff2'),
        url('fonts/Inter18pt-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('fonts/Inter18pt-ExtraBoldItalic.woff2') format('woff2'),
        url('fonts/Inter18pt-ExtraBoldItalic.woff') format('woff');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}




/* end */

