/* CSS Document */

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}ins{background-color:#ff9;color:#000;text-decoration:none}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input[type=text],input[type=button],input[type=submit],input[type=password],select{vertical-align:middle}

:root {
  --body-font-family: "Roboto Condensed", sans-serif;
  --body-font-size: 19px;
  --body-font-weight: 300;
  --body-color: #5e1e39;
  --headers-font-family: "Bai Jamjuree", sans-serif;
  --primary-color:#eb5c41;
  --second-color: #a81916;
  --third-color: #5e1e39;
  --bg-color: #f7edd8;
}

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

img:not([src]):not([srcset]) {
  visibility: hidden;
}

html.mx_logged_in {
margin-top:0 !important;
}

.mx_logged_in #topwrapper, .mx_logged_in #menu{
top:52px;
}

.mx_logged_in #menu .container-bar {
top: 69px;
}

body {
margin:0;
padding:0;
color:var(--body-color);
line-height: 1.450;
}

body, p, td, td p {
font-family: var(--body-font-family);
font-size: var(--body-font-size);
font-weight: var(--body-font-weight);
}

h1, h2, h3, h4, h5, h6, p, ul {
margin:0;
padding-bottom:35px;
}

h1 {
color:var(--body-color);
font-weight:400;
font-size:36px;
font-family: var(--headers-font-family);
}

h2 {
color:var(--body-color);
font-weight:bold;
font-size:26px;
letter-spacing:-0.5px;
font-family: var(--headers-font-family);
}

h3 {
color:var(--body-color);
font-weight:bold;
font-size:22px;
}

h1::before {
content: "";
display: block;
width: 100px;
height: 5px;
margin: 0 0 30px 0;
/*background: rgb(31,24,58);
background:linear-gradient(90deg,rgba(0,85,160) 25%,rgba(0,157,224) 50%,rgba(120,190,32));*/
background-color:#a38629;
}

h1[style*="center"]:before {
margin: 0 auto 30px auto;
}

h1[style*="right"]:before {
margin: 0 0 30px auto;
}

*:active, *:focus { 
outline: 0; 
} 

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

a:hover {
text-decoration: underline
}

::selection {
  background: var(--primary-color); /* WebKit/Blink Browsers */
  color: #FFFFFF;
}
::-moz-selection {
  background: var(--primary-color); /* Gecko Browsers */
  color: #FFFFFF;
}

input[type=text], input[type=email],input[type=button],input[type=submit],input[type=password], textarea {
-webkit-appearance: none;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-khtml-border-radius: 25px;
border-radius: 25px;
line-height:36px;
padding:0 10px;
border: solid 1px var(--body-color);
font-family: var(--body-font-family);
font-size: var(--body-font-size);
width: 100%;
max-width: 450px;
filter: none;
}

input[type="file"] {
font-family: var(--body-font-family);
font-size: var(--body-font-size);
border: solid 1px #DDDDDD;
border-radius: 25px;
width: 100%;
max-width: 450px;
padding: 5px;
}

input[type=file]::-ms-browse {
line-height:30px;
padding: 0 25px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-khtml-border-radius: 25px;
border-radius: 25px;
background: #2ca5d9;
color:#FFFFFF;
text-transform:uppercase;
font-family: var(--body-font-family);
font-size:15px;
border:none;
cursor: pointer;
}

input[type=file]::-webkit-file-upload-button {
line-height:30px;
padding: 0 25px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-khtml-border-radius: 25px;
border-radius: 25px;
background: #2ca5d9;
color:#FFFFFF;
text-transform:uppercase;
font-family: var(--body-font-family);
font-size:15px;
border:none;
cursor: pointer;
}

input[type=file]::file-selector-button {
line-height:30px;
padding: 0 25px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-khtml-border-radius: 25px;
border-radius: 25px;
background: #2ca5d9;
color:#FFFFFF;
text-transform:uppercase;
font-family: var(--body-font-family);
font-size:15px;
border:none;
cursor: pointer;
}

input:focus::placeholder { 
    opacity: 0; /* Firefox */
}

input:focus::-ms-input-placeholder { /* Microsoft Edge */
     opacity: 0;
}

select {
background-color: transparent;
height:36px;
padding:0 10px;
-webkit-border-radius: 35px;
-moz-border-radius: 35px;
-khtml-border-radius: 35px;
border-radius: 35px;
border: solid 1px #DDDDDD;
cursor: pointer;
}

textarea {
line-height:20px;
padding: 10px;
resize: none;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-khtml-border-radius: 20px;
border-radius: 20px;
}

.button, input[type=submit], button {
display:inline-block;
color:#FFFFFF;
background-color:var(--primary-color);
padding:10px 17px;
-webkit-border-radius: 35px;
-moz-border-radius: 35px;
-khtml-border-radius: 35px;
border-radius: 35px;
text-transform:uppercase;
font-size:17px;
font-family: var(--body-font-family);
font-weight:700;
transition: all 0.8s ease;
}

input[type=submit], button {
cursor:pointer;
border:none;
line-height:20px;
width: auto;
}

input[type=button] {
cursor:pointer;
}

.button.outline {
background-color: #FFFFFF;
color:var(--body-color);
padding:8px 15px;
border:solid 2px var(--third-color);
}

.button:after {
content:"\f061";
font-family:'Line Awesome Free';
font-weight:bold;
padding-left:6px;
position:relative;
top:0;
}

a.button:hover, input[type=submit]:hover {
color:var(--body-color)!important;
background-color:var(--bg-color);
text-decoration: none;
}

.button.outline:hover {
color:#FFFFFF!important;
background-color:var(--third-color);
}

#content img[style*="left"], #content img[align="left"] { margin: 0 20px 10px 0; }
#content img[style*="right"], #content img[align="right"] { margin: 0 0 10px 20px; }

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

td {
vertical-align:top;
}

ul.tick {
list-style-type:none;
padding-left:0;
}

ul.tick li:before {
content:"\f058";
font-family:'Line Awesome Free';
font-size: 24px;
padding-right:8px;
background: linear-gradient(to right, var(--body-color) 5%, var(--third-color) 50%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
position:relative;
top:2px;
}

ul.tags {
list-style-type: none;
text-align: center;
max-width: 600px;
margin: 0 auto;
padding-left: 0;
}

ul.tags li {
display: inline-block;
margin: 8px 5px;
}

ul.tags li a, .button-small {
border: solid 1px var(--third-color);
color: var(--third-color);
text-transform: uppercase;
font-size: 14px;
font-family: var(--headers-font-family);
padding: 2px 8px;
border-radius: 20px;
}

#footer .button-small {
border: solid 1px #FFFFFF;
}

.button-small {
display: inline-block;
padding: 2px 8px;
  margin-bottom: 5px;
  line-height: 27px;
}

.button-small i {
float: left;
padding-right: 5px;
}

ul.tags li a:hover, .button-small:hover {
border-color: var(--third-color);
color: var(--third-color);
text-decoration: none;
}

p[style*="left"] {
font-family: "Times New Roman", Times,  "serif";
font-style: italic;
font-size:18px;
}

blockquote {
  width: 100%;
  margin: auto;
  margin-bottom:35px;
  position: relative;
  padding: 30px;
  padding-bottom:0;
  background: #FFFFFF;
  background-clip: padding-box; /* !importanté */
  border: solid 2px transparent; /* !importanté */
  border-radius: 1em;
}
blockquote:before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    margin: -2px; /* !importanté */
    border-radius: inherit; /* !importanté */
    /*background: linear-gradient(to right, #1f183a, #5FB748 90%);*/
	background-color: #212121;
}

#mx_search_form {
width: 100%;
max-width: 550px;
margin-left: auto;
  margin-right: auto;
padding-bottom: 35px;
margin-top: 20px;
position: relative;
}

#menu #mx_search_form, #menu #mx_search_form input[type="text"] {
max-width: 700px!important;
}

#mx_search_form input[type="text"] {
width: 100%;
line-height: 42px;
max-width: 100%!important;
}

#menu input::placeholder { 
color: #FFFFFF; /* Firefox */
}

#menu input::-ms-input-placeholder { /* Microsoft Edge */
color: #FFFFFF;
}

#menu #mx_search_form input {
border:solid 1px #FFFFFF;
}

#mx_search_form button {
position: absolute;
top: 0;
right: -1px;
font-size: 28px;
line-height: 42px;
padding: 1px 8px;
}

#menu #mx_search_form button, #menu #mx_search_form input {
background-color: transparent;
color: #FFFFFF;
}

#headerwrapper {
background-image:url(../images/bg-header.jpg);
background-repeat:no-repeat;
background-size:100% 100%;
background-position:center center;
position:relative;
}

#header {
/*background: rgb(31,24,58);
background:linear-gradient(90deg,rgba(204,221,209,.79) 20%,rgba(253,234,212,.79) 35%,rgba(209,221,205,.79));*/
height:auto;
padding:0 40px; 
}
#topwrapper {
position:fixed;
top:0;
left:0;
width:100%;
height:125px;
transition: all 0.7s ease;
padding:0 20px;
z-index:88;
pointer-events:none;
background-color: #FFFFFF;
}

#topwrapper.stick {height: 95px;
}

.progress-container {
  width: 100%;
  height: 4px;
  background: #ccc;
  display:none;
  position:absolute;
  bottom:0;
  left:0;
}

/* The progress bar (scroll indicator) */
.progress-bar {
  height: 4px;
  background: var(--third-color);
  width: 0%;
}

#topwrapper.stick .progress-container {
display:block;
}

#payoffwrapper {
max-width:1300px;
margin:0 auto;
min-height:250px;
padding: 80px 30px;
padding-top:150px;
text-align:center;
color:#FFFFFF;
position: relative;
}

#payoffwrapper p {
font-size: 36px;
}

#payoffwrapper  {
font-size:36px;
font-weight: 500;
font-style:italic;
padding-bottom:5px;
font-family: var(--headers-font-family);
}

#breadcrumbs {
width: auto;
margin: 0 auto;
}

#payoffwrapper ul {
padding: 0;
margin: 0;
display: inline-block;
font-size:14px;
}

#payoffwrapper ul li { display: inline; }

#payoffwrapper ul li a {
width:auto;
color:#FFFFFF;
text-decoration: none;
float: left;
}

#payoffwrapper ul li a:after {
content:"›";
padding-left:10px;
padding-right:10px;
}

#payoffwrapper ul li a:hover span {
text-decoration:underline;
}

#logo {
/*background-image:url(../images/blob-shape-white.svg);
background-position:center bottom;
background-repeat:no-repeat;
background-size:100% auto;*/
float:left;
width:220px;
padding:20px 20px 60px 0;
pointer-events: initial;
transition: all 0.7s ease;
}

#logo img {
width:100%;
max-width:220px;
height:auto;
display:block;
transition: all 0.7s ease;
}

#logo img.white {
display:block;
}

#logo img.color {
display:none;
}

#nav {
float:left;
width: calc(100% - 440px);
text-align:center;
pointer-events: initial;
}

#icons {
text-align:right;
float:right;
pointer-events: initial;
}

.icon {
float:left;
width : 42px;
height : 42px;
margin-top : 25px;
margin-right: 7px;
margin-left:7px;
border-radius: 46px;
border: var(--body-color) solid 2px;
color:#FFFFFF;
background-color: var(--body-color);
text-align:center;
position:relative;
}

.icon a {
color:#FFFFFF;
text-decoration:none;
}

.icon i {
font-size:24px;
line-height:42px;
position:absolute;
top:-2px;
left:6px;
}

.icon i.la-envelope {
top:-3px;
left:7px;
}

.icon i.la-user-check {
left:8px;
}

#mx_search_form.show {
position: fixed;
top: 57px;
  right: 25px;
  z-index: 9999999;
  display: block;
  width: 369px;
}

#mx_search_form.show input {
border: solid 1px var(--body-color)!important;
color:var(--body-color)!important;
background-color:var(--bg-color)!important;
}

#mx_search_form.show button, #mx_search_form.show input::placeholder  {
color:var(--body-color)!important;
}


#mx_webshop_summary_button span {
background-color:var(--body-color)!important;
}

.icon-menu {
float:right;
width : 65px;
height : 65px;
margin-top : 15px;
border-radius : 46px;
border: #FF7746 solid 2px;
}

.icon-menu-hide {display:none;}

.container-bar {
display : inline-block;
cursor : pointer;
padding-top : 8px;
padding-right : 11px;
}

.bar1, .bar2, .bar3 {
width : 34px;
height : 3px;
background-color : #212121;
margin : 9px 2px;
transition : 0.4s;
}

.change .bar1 {
transform : rotate(-45deg) translate(-10px,7px);
width : 35px;
background-color : #fff !important;
}

.change .bar2 {
opacity : 0;
background-color : #fff !important;
}

.change .bar3 {
transform : rotate(45deg) translate(-9px,-7px);
width : 35px;
background-color : #fff !important;
}

@media screen and (min-width: 641px) {

#topwrapper.stick #logo img.white {
display: none;
}

#topwrapper.stick #logo img.color {
display: block;
}

#topwrapper.stick #logo {
padding:12px 20px 60px 0;
}

#topwrapper.stick #logo img {
max-width: 175px;
}

#topwrapper.stick .icon, #topwrapper.stick .icon-menu {
border-color:var(--third-color);
background-color: transparent;
}

#topwrapper.stick .icon, #topwrapper.stick .icon a{
color:var(--body-color);
}

#topwrapper.stick .bar1, #topwrapper.stick .bar2, #topwrapper.stick .bar3,
#menu.stick .bar1, #menu.stick .bar2, #menu.stick .bar3 {
background-color:#FF7746;
}

} /* end mediaquery */

#contentwrapper {
width:100%;
height:auto;
position: relative;
/*background-image:url(../images/blob-shape-grey.svg);
background-position: right -300px top -200px;
background-repeat:no-repeat;
background-size: 800px 100%;*/
}

#content {
width:100%;
max-width:1300px;
margin:0 auto;
padding: 60px 30px;
}

#column {
    float: left;
    width: 72%;
}

#aside {
    display: block;
    float: left;
    width: 28%;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 130px;
    left: 0;
    padding-left: 35px;
}

#review {
  background:url(../images/blob-shape-eko.svg)no-repeat 0 0;
  background-size: 100% 100%;
  padding:30px;
  padding-right:40px;
  text-align:center;
  position:relative;
  margin-bottom:180px;
}
.review p{
	color: #FFFFFF;
}

.reviewlist {
}

.reviewlist p {
background-color: var(--bg-color);
padding: 20px;
border-radius: 10px;
margin-bottom: 45px;
position: relative;
}

.reviewlist p:after {
content: "";
display: block;
  width: 0; 
  height: 0; 
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;  
  border-top: 10px solid var(--bg-color);
  bottom: -10px;
  left: 47.5px;
  position: absolute;
  }

.reviewlist img {
float: left;
margin-right: 30px;
margin-top: -30px;
}

.review p:first-of-type {
    font-family: "Times New Roman", Times, "serif";
    font-style: italic;
    font-size: 18px;
}

.review p:first-of-type:before {
content:"“";
font-family: var(--headers-font-family);
font-size:42px;
line-height:22px;
padding-left:42px;
padding-right:15px;
position:relative;
top:10px;

}

.review p:first-of-type:after {
content:"”";
font-family: var(--headers-font-family);
font-size:42px;
line-height:0;
position:relative;
top:25px;
padding-left:15px;
}

.review h3 {
padding-bottom:0;
color:#FFFFFF;
}

img.portrait {
display:block;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
-khtml-border-radius: 100%;
border-radius:100%;
border: solid 3px var(--primary-color);
/*background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(90deg,rgba(0,85,160,.79) 50%,rgba(42,169,156,.79));*/
background-origin: border-box;
background-clip: content-box, border-box;
}

#review img.portrait {
left:20px;
position:absolute;
bottom:-155px;
width:175px;
height:auto;
}


#sidemenu {
background-color:#FFFFFF;
padding:20px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-khtml-border-radius: 20px;
border-radius: 20px;
-webkit-box-shadow: 0px 0px 6px 0px rgba(153,153,153,0.4);
-moz-box-shadow: 0px 0px 6px 0px rgba(153,153,153,0.4);
box-shadow: 0px 0px 6px 0px rgba(153,153,153,0.4);
margin-bottom:30px;
text-align:center;
}

#sidemenu i {
padding-bottom:15px;
}

#sidemenu i.la-filter, #aside i.la-filter {
font-size:60px;
background: linear-gradient(to bottom, var(--third-color) 5%, #049EDA 95%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
padding-top:20px;
}

#sidemenu i.la-folder-open {
font-size:60px;
-ms-transform: rotate(-90deg); /* IE 9 */
-webkit-transform: rotate(-90deg); /* Safari 3-8 */
transform: rotate(-90deg);
background: linear-gradient(to right, #049EDA 5%, var(--third-color) 95%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

#sidemenu p {
font-size:24px;
font-weight:bold;
letter-spacing:-0.5px;
}

#sidemenu ul {
text-align:left;
list-style-type:none;
padding:0;
margin:0;
}

#sidemenu ul li a, .mx_webshop_filter strong {
display:block;
text-transform:uppercase;
color:#000000;
font-weight:bold;
font-size:15px;
}

.mx_webshop_filter strong {
display:inline;
}

#sidemenu ul li a:hover {
color:var(--third-color);
}

#sidemenu ul li a:before, .mx_webshop_filter strong:before {
content:"\f061";
font-family:'Line Awesome Free';
font-weight:bold;
padding-right:5px;
}

#bottomcontentwrapper {
width:100%;
height:auto;
background:url("../images/bg-header.jpg");
background-size: 100% 100%;
position:relative;
overflow:hidden;
min-height: 400px;
}

.bg-bottom {
position:absolute;
width:53%;
height:110%;
top:-20px;
right:0;
background: url("../images/bg-bottom.jpg");
background-size:cover !important;
background-position:center center !important;
border-bottom-left-radius:10% 100% ;
border-top-left-radius: 20% 100%;
z-index:1;
}

#bottomcontent {
width:100%;
max-width:1300px;
margin:0 auto;
padding: 60px 30px 60px 30px;
position:relative;
z-index:2;
}

#bottomcontent-inner {
width:75%;
color:var(--body-color);
}

#bottomcontent-inner > p {
max-width:45%;
color: #FFFFFF;
font-size: 30px;
  font-weight: 500;
  font-style: italic;
font-family: var(--headers-font-family);
padding-bottom: 0;
}

.video-wrapper {
display: flex;
flex-wrap: wrap;
gap:30px;
padding-bottom: 60px;
}

.video-item {
width: calc(50% - 15px);
border-radius: 25px;
overflow: hidden;
background-color:var(--bg-color);
position: relative;
}

.owl-carousel .owl-stage {
display: flex;
}

#video-scroller {
padding-bottom: 35px;
}

#video-scroller .video-item {
width: 430px;
height: 100%;
}

.video-item::before {
  display: block;
  content: "\f04b";
  width: 50px;
  height: 50px;
  border-radius:100px;
  position: absolute;
  top: calc(45% - 25px);
  left: calc(50% - 25px);
  background:rgba(0, 0, 0, 0.8);
  z-index: 3;
  pointer-events: none;
  font-family: "Line Awesome Free";
  font-weight: bold;
  color: #FFF;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
}

.video-item a:hover {
text-decoration: none;
}

.video-item:hover::before {
  background:
#ff3a26;
}

.video-item img {
display: block;
aspect-ratio:16/9;
height: auto;
}

.video-title {
padding: 10px 20px;
}

#prices {
display: flex;
flex-wrap: wrap;
}

.price {
float:left;
width:31.33%;
margin-right:3%;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-khtml-border-radius: 25px;
border-radius: 25px;
border: solid 2px #212121;
/*background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #1f183a,
#B10265);
background-origin: border-box;
background-clip: content-box, border-box;*/
margin-bottom:35px;
}

.price:nth-of-type(3) {
margin-right:0;
}

.price .inner {
height:100%;
background-color:#FFFFFF;
-webkit-border-radius: 24px;
-moz-border-radius: 24px;
-khtml-border-radius: 24px;
border-radius: 24px;
padding:20px;
padding-bottom:40px;
text-align:center;
position:relative;
}

.price h3, .price h4 {
padding-bottom:0;
}

.price h4 {
position:absolute;
bottom:10px;
left:0;
width:100%;
font-size:36px;
color:var(--third-color);
font-family: var(--headers-font-family);
}

.member {
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-khtml-border-radius: 25px;
border-radius: 25px;
border: solid 2px transparent;
background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(90deg,rgba(0,85,160,.79) 50%,rgba(42,169,156,.79));
background-origin: border-box;
background-clip: content-box, border-box;
margin-bottom:35px;
}

.member .inner {
height:100%;
background-color:#FFFFFF;
-webkit-border-radius: 24px;
-moz-border-radius: 24px;
-khtml-border-radius: 24px;
border-radius: 24px;
padding:20px;
padding-bottom:0;
text-align:center;
position:relative;
}

.member img {
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
-khtml-border-radius: 100%;
border-radius: 100%;
margin-bottom:10px;
}

.member h3 {
padding-bottom:0;
}

.member i {
font-size:28px;
line-height:40px;

/*background: linear-gradient(to bottom, #049EDA 5%, #5FB748 95%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;*/
padding:0 10px;
}

#counter {
padding-top:15px;
display: flex;
flex-wrap: wrap;
}

.counter {
float:left;
width:31.33%;
margin-right:3%;
margin-bottom:35px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-khtml-border-radius: 25px;
border-radius: 25px;
border: solid 2px var(--body-color);
/*background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(90deg,rgba(0,85,160,.79) 50%,rgba(42,169,156,.79));
background-origin: border-box;
background-clip: content-box, border-box;*/
text-align:center;
font-weight:700;
text-transform:uppercase;
font-family: var(--headers-font-family);
}

.counter:nth-of-type(3) {
margin-right:0;
}

.counter .inner {
color: var(--body-color);
background-color:#FFFFFF;
-webkit-border-radius: 24px;
-moz-border-radius: 24px;
-khtml-border-radius: 24px;
border-radius: 24px;
padding:40px 20px;
text-align:center;
height:100%;
}

.counter span {
font-size:52px;
color:var(--third-color);
}

#ctawrapper {
width:100%;
height:auto;
}

#cta {
width:100%;
max-width:820px;
margin:0 auto;
padding: 60px 30px;
}

#footerwrapper {
width:100%;
height:auto;
/*background: linear-gradient(90deg,rgba(204,221,209,.79) 25%,rgba(253,234,212,.79) 50%,rgba(209,221,205,.79));*/
background-color:var(--third-color);
background-image: url("../images/SED-header.svg");
  background-position: bottom 0 right 30px;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

#footer {
width:100%;
max-width:1300px;
margin:0 auto;
padding: 60px 30px 0 30px;
color:#FFFFFF;
display: flex;
flex-wrap: wrap;
}

#footer ul {
list-style-type:none;
padding-left:0;
}

#footer h3 {
color: var(--bg-color);
}

#footer a {
color:#FFFFFF;
}

#column-1 a {
text-decoration: none;
}

#column-1 a::before {
    content: "\f061";
    font-family: 'Line Awesome Free';
    font-weight: bold;
    padding-right: 6px;
    position: relative;
    top: 0px;
	transition: all 0.3s ease;
}

#column-1 a:hover::before {
    padding-right: 2px;
	padding-left:4px;
}
#column-1, #column-2, #column-3 {
float:left;
width:30%;
}

#column-1 {
width:20%;
}

#column-3  i {
font-size:23px;
position:relative;
top:2px;
}

#google-reviews {
background-color:#FFFFFF;
width:272px;
display:inline-block;
padding:15px;
padding-top:20px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
-khtml-border-radius: 15px;
-webkit-box-shadow: 0px 0px 6px 0px rgba(153,153,153,0.4);
-moz-box-shadow: 0px 0px 6px 0px rgba(153,153,153,0.4);
box-shadow: 0px 0px 6px 0px rgba(153,153,153,0.4);
}

#google-reviews a {
display:block;
color:#000000;
text-decoration: none;
}

#google-reviews img {
display:block;
width:60px;
height:auto;
float:left;
margin-right:10px;
margin-top:-5px;
} 

#google-reviews i, #google-reviews span {
color: #FF9900;
font-size:24px;
}

#google-reviews span {
font-size:18px;
}

#copy {
font-size:14px;
padding:20px;
color: #ffffffa3;
}

#bottomwrapper {
width:100%;
height:auto;
background-color:#FFFFFF;
}

#bottom {
width:100%;
max-width:1300px;
margin:0 auto;
padding: 15px 30px;
text-align:center;
}

#bottom a {
display:inline-block;
width:40px;
height:40px;
background-color: var(--second-color);
margin:0 10px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-khtml-border-radius: 25px;
border-radius: 25px;
text-align:center;
}

#bottom i {
font-size:24px;
line-height:40px;
/*background: linear-gradient(to bottom, #049EDA 5%, #5FB748 95%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;*/
color:#FFFFFF;
}

#bottom a:hover  {
/*background: linear-gradient(to bottom, #0055A0 5%, #0055A0 95%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;*/
background-color:var(--primary-color);
}

#mobile-contact {
text-align: center;
padding-top: 30px;
}

#mobile-contact a {
display: inline-block;
  width: 42px;
  height: 42px;
  background-color: #FFFFFF;
  margin: 0 10px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -khtml-border-radius: 25px;
  border-radius: 25px;
  background-color:#FF7746;
  position: relative;
  color: #FFFFFF;
}

#mobile-contact i {
font-size:24px;
line-height:42px;
}

.mx_pagination ul, .mx_pagination li {
border:none !important;
float:none !important;
text-align:center;
}

.mx_pagination li {
display:inline-block;
-webkit-border-radius: 20px !important;
-moz-border-radius: 20px !important;
-khtml-border-radius: 20px !important;
border-radius: 20px !important;
}

.mx_pagination li a{
background-color:#F2F2F2;
-webkit-border-radius: 20px !important;
-moz-border-radius: 20px !important;
-khtml-border-radius: 20px !important;
border-radius: 20px !important;
width:34px;
height:34px;
line-height:34px;
color:#000000;
padding:0 !important;
}

.mx_pagination li.mx_current a {
    background-color:#049EDA !important;
	color:#FFFFFF;
}

.clear {
clear:both;
}

.business .mx_news_block_item .mx_news_block_content .button.outline,
.mx_news_category_content .button.outline {
color:var(--body-color)!important;
border-color:var(--third-color)!important;
}

.business .mx_news_block_item .mx_news_block_content .button.outline:hover,
.mx_news_category_content .button.outline:hover {
color:#FFFFFF!important;
background-color:var(--third-color)!important;
}

.business .mx_news_block_item .overlay, .mx_news_category_image a {
background-color: transparent!important;
transition: all 0.7s ease;
}

.business .mx_news_block_item:hover .overlay, .mx_news_category_item:hover .mx_news_category_image a {
background: rgba(0, 0, 0, 0.27);
box-shadow: 23.9px -23.9px 23.9px 0px rgba(149, 149, 149, 0.12) inset;
backdrop-filter: blur(7.88700008392334px);
}

h2#show-filters {
display:none;
}

@media screen and (max-width: 1240px) {
#bottomcontent-inner {
width:90%;
}

} /* end mediaquery */

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



} /* end mediaquery */

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

#content {
    padding: 60px 20px;
}

} /* end mediaquery */

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

.search {
display: none;
}

#column {
width:100%;
}

#aside {
display:none;
}

#aside.category {
display:block;
padding-right: 0 !important;
width:100%;
position:relative;
top:inherit;
background-color: #FFFFFF;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-khtml-border-radius: 20px;
border-radius: 20px;
-webkit-box-shadow: 0px 0px 6px 0px rgba(153,153,153,0.4);
-moz-box-shadow: 0px 0px 6px 0px rgba(153,153,153,0.4);
box-shadow: 0px 0px 6px 0px rgba(153,153,153,0.4);
margin-bottom:35px;
padding:10px 20px !important;
}

#sidemenu {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
margin-bottom:0;
padding:0;
display:none;
}

#sidemenu i {
display:none;
}

h2#show-filters {
display:block;
padding:0;
position:relative;
cursor:pointer;
}

h2#show-filters i{
font-size:40px !important;
top:0;
right:0;
padding-top:0 !important;
position:absolute;
}

#sidemenu ul {
padding-bottom:20px;
padding-top:20px;
}

#topwrapper, #header, #cta, #bottomcontent {
padding-left: 20px;
padding-right: 20px;
}

#topwrapper {
height: 95px;
}

#logo {
width:195px;
padding:12px 20px 60px 0;
}

#contentwrapper {
background-position: right -300px top -200px;
background-repeat:no-repeat;
background-size: 600px 600px;
}


#payoffwrapper {
padding-left:0;
padding-right:0;
}

#footerwrapper {
background-image: none;
}

#footer {
padding:0;
}

#column-1, #column-2 {
background-color:#F8F9FB;
color: #676767;
}

#column-1 h3, #column-2 h3 {
color: var(--third-color);
}

#column-1 p, #column-1 a, #column-2 p, #column-2 a{
color: #676767;
}

#column-1, #column-2, #column-3 {
width:50%;
padding: 40px 20px 0 20px;
}

#column-3 {
width:100%;
background-image: url(../images/bg-footer-health.png);
  background-position: bottom right;
  background-size: auto 100%;
  background-repeat: no-repeat;
  padding-bottom: 50px;
}

#copy {
position:absolute;
}

#bottom {
text-align: right;
}

} /* end mediaquery */

@media screen and (max-width: 860px) {
.price p:nth-of-type(2) {
display:none;
}

} /* end mediaquery */

@media screen and (max-width: 750px) {
.bg-bottom {
    width: 38%;
}

#bottomcontent-inner {
    width: 100%;
}

#bottomcontent-inner > p {
font-size: 20px;
}

.counter {
font-size:14px;
}

.counter span {
font-size:34px;
}

} /* end mediaquery */

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

#topwrapper.stick {
position: absolute;
background-color: transparent;
}

#topwrapper.stick .progress-container {
  display: none;
}
/*#header {
background: linear-gradient(90deg,rgba(204,221,209,.79) 20%,rgba(253,234,212,.79));
}*/

#topwrapper {
padding:0 10px;
}

.price {
width:100%;
}

} /* end mediaquery */

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

#icons {
    width: 125px;
}

#mx_webshop_logged_in_status {
display:none;
}

#payoffwrapper p {
    font-size: 26px;
	}
	
h1, h2 {
font-size:24px;
}

.counter {
width:100%;
}

.counter .inner {
padding:5px 20px 15px 20px;
}

#column-1, #column-2, #column-3 {
width:100%;
}

#google-reviews {
width:223px;
padding:10px;
padding-top:13px;
}

#google-reviews img {
width:50px;
margin-top:-2px;
} 

#google-reviews i {
font-size:20px;
}

#google-reviews span {
font-size:14px;
}

#column-3 {
background-image: none;
padding-bottom: 10px;
}

#copy {
position: relative;
}

#bottom {
text-align: center;
}

.video-item {
width: 100%;
}



#mx_webshop_summary {
display:none;
}

} /* end mediaquery */