/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
    font-family: 'Barlow', sans-serif;
}

body {
    margin: 0;
    overflow-x: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
    margin: 0;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

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

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: 600;
}

dfn {
    font-style: italic;
}

mark {
    background: #ff0;
    color: #444;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {

}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
    resize: none;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: not-allowed;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
    margin-right: 10px;
}

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

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: 600;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
    color: #444;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.2;
}

h1, h2, h3 {
    font-size: 23px;
}

h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

h5 {
    font-size: 20px;
    margin-bottom: 10px;
}

h6 {
    font-size: 18px;
    margin-bottom: 10px;
}

p {
    margin: 0 0 15px;
}

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

blockquote {
    margin: 0 15px;
}

address {
    margin: 0 0 15px;
}

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

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

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

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

big {
    font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
    box-sizing: border-box;
}

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

body {
    background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: "" "";
}

hr {
    background-color: #444;
    border: 0;
    height: 1px;
    margin-bottom: 15px;
}

ul,
ol {
    margin: 0 0 15px 20px;
    padding: 0;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 15px;
}

dt {
    font-weight: 600;
}

dd {
    margin: 0 15px 15px;
}

img {
    height: auto; /* Make sure images are scaled correctly. */
    max-width: 100%; /* Adhere to container width. */
    vertical-align: middle;
}

table {
    margin: 0 0 15px;
    width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background: #ee731e;
    padding: 0 20px;
    height: 40px;
    color: #FFF;
    border: 0;
    transition: all 0.3s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background: #333;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    outline: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #444;
    border: 1px solid #EEE;
    transition: all 0.3s ease-in-out;
    vertical-align: top;
}

select {
    border: 1px solid #EEE;
    height: 40px;
    padding: 3px 40px 3px 8px;
    background-color: transparent;
    line-height: 100%;
    outline: 0;
    background-image: url("images/arrow.png");
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

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

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
    padding: 3px 8px;
    height: 40px;
}

textarea {
    padding: 8px;
    width: 100%;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
    color: #ee731e;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:visited {

}

a:hover {
    color: #ee731e;
}

a:focus {
    outline: 0;
}

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


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

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

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 15px;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 15px;
}

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

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.ht-clearfix:before,
.ht-clearfix:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-footer:before,
.site-footer:after,
.ht-container:before,
.ht-container:after {
    content: "";
    display: table;
}

.ht-clearfix:after,
.entry-content:after,
.comment-content:after,
.site-footer:after,
.ht-container:after {
    clear: both;
}

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

.hentry {
    margin: 0 0 30px;
}

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

.page-content,
.entry-content {
    margin-bottom: 30px;
    background-color: white;
}

.page-template-page-builder-template .page-content {
    margin-bottom: 0;
}

.page-links {
    clear: both;
    margin: 0 0 15px;
}

#secondary {
    width: 27%;
    float: right;
}

.ht-post-info {
    float: left;
    width: 80px;
    text-align: right;
}

.ht-blog-categories {
    height: 35px;
    margin-top: 10px;
}

.ht-blog-label {
    position: absolute;
    background: #ee731e;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 20px;
    height: 35px;
    line-height: 35px;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
}

.ht-blog-label.new {
    width: 65px;
    top: 20px;
}

.ht-blog-label.top5 {
    width: 90px;
    margin-top: 8px;
}

.blog-top-five-container {
    background: #f6f6f6;
    margin-top: 18px;
}

.blog-top-five-container .ht-blog-post-headline {
    margin-top: 25px;
}

.blog-top-five-post .ht-blog-excerpt h5 {
    font-size: 16px;
}

.blog-top-five-post .ht-blog-excerpt {
    height: 175px;
}

.blog-top-five-post {
    background-color: white;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: -1px 1px 8px 1px rgba(156, 156, 156, 1), 1px -1px 8px 1px rgba(156, 156, 156, 1);
}

.blog-top-five-slider .owl-dot {
    background-color: #ee731e;
}

.blog-top-five-slider.owl-carousel {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 11px;
}

.blog-top-five-slider .owl-item {
    margin: 25px 0;
}

.blog-top-five-thumbnail {
    padding: 10px;
}

.blog-top-five-post .post-categories, .blog-top-five-post h5, .blog-top-five-post .ht-blog-excerpt, .blog-top-five-post .ht-blog-read-more {
    text-align: center;
}

.post-categories {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.post-categories > li:not(:last-child)::after {
    content: "|";
    margin: 0 3px 0 8px;
    top: -1px;
    position: relative;
}

.post-categories li {
    display: inline;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.single .ht-post-info {
    margin-right: 30px;
    margin-bottom: 20px;
}

.ht-blog-excerpt .entry-date {
    font-size: 0.9em;
}

.ht-post-info a {
    display: block;
    text-decoration: none;
    line-height: 1.4;
    padding: 20px 0 0;
    text-transform: uppercase;
    border-top: 1px solid #EEE;
    font-size: 12px;
    color: #444;
    font-weight: 300;
}

.ht-post-wrapper {
    padding-left: 105px;
}

.entry-figure {
    background: #f9f9f9;
    text-align: center;
    margin-bottom: 15px;
}

.entry-header .entry-title {
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.entry-figure + .entry-header {
    background: #FFF;
    position: relative;
    margin-top: -65px;
    width: 90%;
    padding: 15px 0 1px;
}

.entry-header .entry-title a {
    text-decoration: none;
    color: #333;
}

.entry-categories {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.entry-categories .fa {
    color: #ee731e;
    margin-right: 8px;
}

.entry-categories a {
    color: #666;
    text-decoration: none;
}

.entry-readmore {
    margin-top: 20px;
}

.entry-readmore a {
    background: #ee731e;
    padding: 0 20px;
    line-height: 40px;
    color: #FFF;
    border: 0;
    transition: all 0.3s ease;
    display: inline-block;
}

.entry-readmore a:hover {
    background: #333;
    color: #FFF;
}

.nav-previous a,
.nav-next a {
    background: #ee731e;
    color: #FFF;
    display: inline-block;
    padding: 0 10px;
    font-size: 12px;
    line-height: 22px;
    position: relative;
}

.nav-next a {
    margin-right: 13px;
}

.nav-next a:after {
    content: "";
    position: absolute;
    border-left: 11px solid #ee731e;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    top: 0;
    right: -11px;
}

.nav-previous a {
    margin-left: 11px;
}

.nav-previous a:after {
    content: "";
    position: absolute;
    border-right: 11px solid #ee731e;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    top: 0;
    left: -11px;
}

.no-comments {
    color: #ee731e;
}

.pagination,
.woocommerce nav.woocommerce-pagination {
    text-align: center;
    padding-bottom: 30px;
}

.home.blog .pagination {
    margin-bottom: 40px;
}

.pagination .page-numbers {
    display: inline-block;
    margin: 0 2px;
    background: #ee731e;
    color: #FFF !important;
    padding: 10px 15px;
    line-height: 1;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #333;
    color: #FFF;
}

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

/*--------------------------------------------------------------
## General
--------------------------------------------------------------*/
.ht-container {
    width: 1170px;
    margin: 0 auto;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
#ht-masthead {
    background: transparent;
    z-index: 99;
    transition: background-color 0.3s ease;
    height: 70px;
}

.ht-sticky-header #ht-masthead {
    position: fixed;
    left: 0;
    right: 0;
}

.ht-sticky#ht-masthead {
    background: white;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, .2);
}

#ht-content {
    clear: both;
}

.ht-sticky-header #ht-content {
    position: relative;
    z-index: 9;
    padding-top: 94px;
}

#ht-site-branding {
    float: left;
    width: 200px;
    position: absolute;
    top: 12px;
    transition: padding 0.3s ease;
}

.ht-sticky #ht-site-branding .postando-logo.white {
    display: none;
}

.ht-sticky #ht-site-branding .postando-logo.color {
    display: block;
}

#ht-site-branding .postando-logo.white {
    display: block;
}

#ht-site-branding .postando-logo.color {
    display: none;
}

.postando-logo {
    height: 40px;
    width: auto;
}

.ht-main-header {
    background: url("images/orange-background-waves.jpg") no-repeat center 91%;
    padding: 100px 0 45px;
    margin-bottom: 30px;
    background-size: cover;
}

.webp .ht-main-header {
    background-image: url("images/orange-background-waves.webp");
}

.ht-main-title {
    margin: 0 0 15px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 45px;
    text-align: center;
    color: white;
}

.ht-main-title:last-child {
    margin-bottom: 0;
}

.ht-site-title {
    font-weight: 400;
    margin: 0 0 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 32px;
    line-height: 1;
}

.ht-site-title a {
    text-decoration: none;
    color: #ee731e;
}

.ht-site-description {
    color: #EEE;
    margin: 0;
    font-size: 15px;
    font-style: italic;
    line-height: 1;
}

.ht-site-description a {
    color: #333;
}

/*--------------------------------------------------------------
## General
--------------------------------------------------------------*/
.ht-section {
    padding: 60px 0;
    background: #FFF;
}

.ht-section-title-tagline {
    margin-bottom: 60px;
    text-align: center;
}

.ht-section-title {
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 36px;
    width: 60%;
    margin: 0 auto 15px;
}

.ht-section-title:last-child {
    margin-bottom: 0;
}

.ht-section-tagline {
    font-size: 20px;
    width: 70%;
    margin: 0 auto;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
#ht-site-navigation {
    float: right;
    padding: 15px 0;
    transition: padding 0.3s ease;
    width: 100%;
}

.ht-main-navigation .ht-menu li a:hover {
    background: none;
}

.ht-main-navigation .ht-menu li.active a {
    color: #ee731e;
}

.ht-main-navigation .ht-menu {
    background: white !important;
    display: none;
    z-index: 99;
    max-width: 500px;
    float: right;
    width: 100%;
    top: -15px;
    right: -60px;
    position: relative;
    padding-top: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, .2), -3px 3px 6px 0 rgba(0, 0, 0, .2);
}

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

.ht-main-navigation li {
    float: left;
    position: relative;
    margin-left: 10px;
}

.ht-main-navigation a, .ht-main-navigation .menu-item-no-link {
    position: relative;
    display: block;
    text-decoration: none;
    color: #464646;
    font-size: 15px;
    line-height: 33px;
    padding: 0 15px;
    transition: none;
    margin-left: 15%;
}

.ht-main-navigation .menu-item-no-link a{
    margin-left: 0;
    padding:0;
}

/* styling for both css and generated arrows */
.navigation-language-item .sub-menu {
    display: none;
}

.menu-item-has-children a {
    padding-left: 40px;
}

.menu-item-has-children .ht-dropdown:after, .ht-footer.navigation-language-item .ht-dropdown:after {
    background-image: url("images/down-arrow-black.svg");
    width: 15px;
    height: 15px;
    content: '';
    margin-left: 10px;
    display: inline-block;
    position: absolute;
    top: 8px;
    transition: transform .3s ease-in-out;
}

.ht-footer.navigation-language-item .ht-dropdown:after {
    top: inherit;
    background-image: url("images/down-arrow-white.svg");
    margin-top:4px;
}

.ht-opened.ht-dropdown:after {
    transform: rotate(180deg);
}

/* styling for right-facing arrows */

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 15px;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

/*--------------------------------------------------------------
## Logo Section
--------------------------------------------------------------*/
.ht_client_logo_slider img {
    padding: 0 26px;
}

/*--------------------------------------------------------------
## Blog Section
--------------------------------------------------------------*/
#ht-blog-section {
    background: #f6f6f6;
}

.ht-blog-overview-pagination a {
    margin: 0 10px;
}

.ht-blog-overview-pagination {
    text-align: center;
    padding: 20px 0;
    text-decoration: underline;
}

#ht-blog-section article.post {
    width: 768px;
    margin: 0 auto;
}

.ht-blog-wrap {
    width: 1170px;
    margin: 0 auto;
    background-color: #efefef;
}

.light-grey-bg {
    background-color: #efefef;
}

.ht-blog-overview-container {
    background-color: white;
    width: 100%;
}

.ht-blog-wrap.blog-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: white;
}

.post .ht-blog-excerpt {
    padding: 10px 20px 15px 20px;
}

.post .ht-blog-categories {
    height: 30px;
}

.post .ht-blog-excerpt h5, .post .ht-blog-excerpt h1 {
    margin-bottom: 5px;
}

.ht-blog-post {
    flex-basis: 30%;
    background: #FFF;
    margin-bottom: 30px;
}

.ht-blog-post:last-of-type {
    margin-bottom: 0;
}

.ht-blog-wrap.new-post {
    width: 100%;
    background-color: white;
}

.ht-blog-wrap.new-post .item {
    flex: 50%;
}

.ht-blog-post.new-post {
    margin: 0 auto 30px;
    width: 1170px;
    display: flex;
}

.ht-blog-post-share-section {
    background-color: white;
    margin: 20px auto;
    padding: 10px 0;
    width: 768px;
}

.ht-blog-post-share-section .ht-blog-post-social-icons div {
    max-width: 57px;
}

.ht-blog-post-share-section .ht-blog-post-social-icons {
    justify-content: center;
}

.ht-blog-post-headline {
    font-weight: 600;
    font-size: 22px;
}

.ht-blog-post-social-icons {
    display: flex;
    padding: 10px 10px 20px;
}

.ht-blog-post-social-icons div {
    flex-basis: 20%;
    padding: 0 10px;
}

.ht-blog-post-image {
    margin: 0 auto;
    text-align: center;
}

.ht-blog-post-back-button a {
    color: #444;
    text-decoration: underline;
    font-weight: 600;
}

.ht-blog-post-back-button {
    margin-bottom: 10px;
    margin-top: 60px;
}

.ht-blog-post-content {
    padding: 10px 20px 15px 20px;
}

.ht-blog-post-content h2 {
    color: #ee731e;
}

.ht-blog-post-content h2 {
    font-size: 15px;
    font-weight: 600;
}

.ht-blog-post img {
    width: 100%;
    box-shadow: -1px 1px 8px 1px rgba(156, 156, 156, 1), 1px -1px 8px 1px rgba(156, 156, 156, 1);
    border: 3px solid white;
    margin-top: 40px;
}

.ht-blog-post:nth-child(3n+1) {
    clear: both;
}

.ht-blog-thumbnail {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
}

.ht-blog-thumbnail a {
    display: block;
    position: relative;
}

.ht-blog-thumbnail a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.ht-blog-thumbnail:hover a:after {
    width: 100%;
}

.ht-blog-excerpt {
    padding: 20px 20px 15px 20px;
}

.ht-blog-excerpt h5, .ht-blog-excerpt h1 {
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 20px;
}

.ht-blog-excerpt h5 a, .ht-blog-excerpt h1 a {
    color: #444;
}

.ht-blog-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.ht-blog-date .fa {
    margin-right: 10px;
}

.ht-blog-read-more {
    padding: 0 20px 20px;
}

.ht-blog-read-more a {
    font-size: 16px;
    text-decoration: underline;
    letter-spacing: 1px;
}

.ht-blog-read-more a:hover {
    color: #8d8b8c;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
#ht-colophon {
    background: #8D8B8C;
    font-size: 15px;
    color: white;
}

.page-template-home-template #ht-colophon,
.home.blog #ht-colophon {
    margin-top: 0;
}

#ht-top-footer a {
    text-decoration: none;
    margin-bottom: 15px;
    color: white;
    line-height: 1;
    font-weight: normal;
    display: block;
}

#ht-top-footer .ht-container {
    width: 1000px;
    margin: 0 auto;
}

#ht-colophon .widget-title {
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #BBB;
    margin-bottom: 15px;
}

#ht-top-footer {
    padding: 40px 0;
}

.ht-top-footer {
    display: flex;
    justify-content: space-between;
}

.ht-top-footer.bottom {
    margin-top:20px;
}

.ht-footer-social-icons img{
    max-width: 42px;
}

.ht-footer-social-icons {
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.ht-footer-social-icons div {
    flex-basis: 20%;
    padding-right: 15px;
    max-width: 60px;
}

.ht-footer.size-m {
    flex-basis: 33.33%;
}

.ht-footer .btn-cta {
    background-color: white;
    color:#8d8b8c;
    font-size: 17px;
    max-height: 42px;
}

.ht-footer.navigation-language-item {
    text-transform: uppercase;
    margin-bottom: 15px;
}

.ht-footer.navigation-language-item .navigation-language-icon:after {
    color: white;
}

.ht-footer.size-s {
    flex-basis: 25%;
}

.ht-footer .size-half-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ht-footer .size-half {
    flex-basis: 45%;
}

.ht-footer {
    padding: 0 15px;
}

.app-store-buttons-group{
    text-align: center;
}

.ht-footer .app-store-buttons {
    display: flex;
}

.ht-footer .app-store-buttons img {
    padding-right: 10px;
    max-height: 42px;
}

.ht-footer .widget {
    margin-bottom: 30px;
}

.ht-footer .widget:last-child {
    margin-bottom: 0;
}

.ht-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ht-footer-headline {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.ht-footer ul li {
    padding: 2px 0 2px 0;
}

#ht-bottom-footer {
    background: #535353;
    padding: 20px 0;
    line-height: 1.2;
    text-align: center;
}

.ht-site-info a {
    text-decoration: none;
    color: white;
    padding: 0 5px;
}

.ht-site-info {
    font-size: 14px;
    line-height: 1.5;
    color: #d2d2d2;
}

#ht-back-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    background: #444;
    height: 60px;
    width: 40px;
    text-align: center;
    color: #FFF !important;
    line-height: 60px;
    z-index: 99;
    cursor: pointer;
    transition: all 0.3s ease;
}

#ht-back-top:after {
    content: '';
    background-image: url("images/down-arrow-white.svg");
    width: 16px;
    height: 16px;
    display: inline-block;
    transform: rotate(180deg);
}

#ht-back-top:hover {
    background: #ee731e;
}

#ht-back-top.ht-hide {
    bottom: -100px;
}

.b2b-button-nav-wrapper, .cart-icon-nav-wrapper {
    position: relative;
}

.b2b-button-nav-mobile {
    display: none;
}

#raffle-sticky-button{
    display: none;
}

.b2b-button-nav {
    cursor: pointer;
    float: right;
    display: block;
    color: #ee731e;
    background: #fff;
    border-radius: 15px;
    font-weight: 700;
    text-align: center;
    position: absolute;
    right: 55px;
    padding: 5px 15px;
    top: 21px;
}

.b2b-button-nav a {
    text-decoration: none;
}

.b2b-button-nav.inverted {
    background: #ee731e;
}

.b2b-button-nav.inverted a {
    color: white;
}

.toggle-bar {
    background: none !important;
    display: block;
    position: relative;
    height: 40px;
    width: 40px;
    cursor: pointer;
    float: right;
    z-index: 100;
    top:2px;
}

.toggle-bar span {
    backface-visibility: hidden;
    position: absolute;
    right: 0;
    border-top: 2px solid white;
    width: 32px;
    transition: 0.55s;
    border-radius: 5px;
}

.ht-sticky-header #ht-content {
    padding-top: 0;
}

.ht-sticky .toggle-bar span {
    border-color: #444;
}

.ht-main-navigation li {
    float: none;
    margin-left: 0;
}

/*--------------------------------------------------------------
## Custom Styles
--------------------------------------------------------------*/
.responsive-image {
    width: 100%;
    height: auto;
}

.header-image {
    margin-bottom: 20px;
    height: 80vh;
    width: 100%;
}

.header-image {
    background: #ee731e no-repeat bottom center / cover;
}

.header-image.kundenmailing {
    height: 80vh;
    width: 100%;
    background: linear-gradient(180deg, #eee 90%, #FFF 10%) no-repeat center bottom / cover;
}

.header-image.kundenmailing .ht-main-title {
    padding-top: 100px;
    font-size: 45px;
    color: #ee731e;
}

.menu-top {
    top: 11px;
}

.menu-middle {
    top: 19px;
}

.menu-bottom {
    top: 27px;
}

.menu-top-click {
    backface-visibility: hidden;
    top: 18px;
    transform: rotate(50deg);
    transition: 0.55s 0.5s;
    border-top: 2px solid #444;
}

.menu-middle-click {
    opacity: 0;
}

.menu-bottom-click {
    backface-visibility: hidden;
    top: 18px;
    transform: rotate(-410deg);
    transition: 0.55s 0.5s;
    border-top: 2px solid #444;
}

.bold-text {
    font-weight: 600;
}

.text-uppercase {
    text-transform: uppercase;
}

.navigation-line {
    border-top: 1px solid #8C8C8C;
    width: 80%;
    background: none;
}

.navigation-language-icon:after {
    content: '';
    background-image: url("images/earth.svg");
    width: 13px;
    height: 13px;
    display: inline-block;
    margin-left: -25px;
    color: #444;
    position: absolute;
    margin-top: 9px;
}

.ht-footer .navigation-language-icon:after {
    background-image: url("images/earth-white.svg");
    margin-top: 4px;
}

.navigation-language-item a {
    text-transform: uppercase;
}

.navigation-download-app a, .navigation-business-portal a, .navigation-shop a {
    color: #ee731e !important;
    text-decoration: underline;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    margin-top: 5px;
}

.navigation-download-app span:before, .navigation-business-portal span:before, .navigation-shop span:before {
    content: '';
    margin-right: 8px;
    color: #ee731e;
    font-size: 20px;
    padding-top: 1px;
    top: 5px;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    background-repeat: no-repeat;
}

.navigation-download-app span:before {
    background-image: url("images/menu-icon-download-app.svg");
}

.navigation-shop span:before {
    background-image: url("images/cart-icon.svg");
}

.navigation-business-portal span:before {
    background-image: url("images/menu-icon-business-portal.svg");
}

.four-steps-slider .owl-item img {
    max-height: 400px;
    margin: 0 auto 20px;
}

.four-steps-section {
    width: 1170px;
    margin: -10px auto 0;
}

.four-steps-container {
    background-color: #EFEFEF;
}

.four-steps-background {
    padding-bottom: 100px;
}

.four-steps-header-image {
    text-align: center;
    margin-top: 10px;
    background: linear-gradient(180deg, white 50%, #efefef 50%);
}

.four-steps-header-image img {
    max-height: 108px;
    width: auto;
    margin: 29px auto 30px;
}

.external-link-icon{
    width: 13px;
    height: auto;
    margin-bottom: 4px;
    margin-left: 2px;
}

.four-steps-header-text {
    color: #5A5A5A;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
}

.four-steps-sub-header-text {
    color: #5A5A5A;
    text-align: center;
    font-size: 15px;
    width: 80%;
    margin: 5px auto 13px;
    height: 88px;
}

.four-steps-sub-header-text strong{
    font-weight: 100;
}

.benefits-section {
    background-color: white;
    margin-bottom: 50px;
}

.benefit-container {
    display: flex;
    flex-wrap: wrap;
    width: 850px;
    margin: 0 auto;
    justify-content: center;
}

.benefits-section .item {
    flex-basis: 50%;
    margin-top: 10px;
}

.postando-bird {
    border-radius: 50%;
    height: 120px;
    width: 120px;
    position: relative;
    top: -53px;
    margin: 0 auto -88px;
    background: white url("images/postando-bird.svg") no-repeat center 30%;
    background-size: 55%;
}

.section-headline {
    text-transform: uppercase;
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    position: relative; /*for bird */
}

h1.section-headline{
    padding: 0 30px;
}

.benefit-image {
    margin-right: 15px;
    flex: 0 0 60px;
}

.more-info-button {
    text-align: center;
    text-decoration: underline;
    font-size: 15px;
    color: #444;
    cursor: pointer;
}

.more-info-button-text.hide, .less-info-button-text.hide {
    display: none;
}

.benefits-section .less-info-button-text {
    position: fixed;
    bottom: -7px;
    color: #fff;
    background: #ee731e;
    border-radius: 10px;
    padding: 3px 12px 10px;
    cursor: pointer;
    z-index: 9999;
    margin: 0 auto;
    width: 170px;
    left: 0;
    right: 0;
}

.more-info-text {
    display: none;
    margin-bottom: 20px;
}

.benefit {
    margin: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-section.business .benefit .benefit-text {
    text-align: left;
}

.benefit-header-text {
    text-transform: uppercase;
    color: #ee731e;
    font-weight: 600;
    font-size: 17px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.newsletter-section-container {
    background: #ee731e;
    text-align: center;
    color: white;
    width: 100%;
    padding: 15px;
    margin-bottom: 50px;
}

.mc4wp-response {
    margin-top: 10px;
}

.newsletter-section-container h2 {
    text-transform: uppercase;
    font-size: 23px;
    font-weight: 600;
}

.newsletter-form-fields {
    display: flex;
    justify-content: center;
}

.newsletter-form-fields input {
    height: 32px;
}

.newsletter-form-fields #submit {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    background: #a4a4a4;
}

.newsletter-form-fields #email {
    flex-grow: 1;
    max-width: 250px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.ratings-section {
    background: url("images/ratings-background.jpg") no-repeat 60% 35% / cover;
    width: 1170px;
    margin: 100px auto 0;
}

.webp .ratings-section {
    background-image: url("images/ratings-background.webp");
}

.ratings-section .postando-bird {
    background-color: #EFEFEF;
}

.ratings-stars {
    margin: 5px 0;
    position: relative;
}

.ratings-stars img {
    max-width: 170px;
}

.ratings-text {
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
}

.ratings-stars .fa-star:before {
    color: #F9C718;
}

.ratings-slider {
    width: 95%;
    margin: 0 auto;
    padding: 10px 0;
}

.ratings-quote {
    width: 95%;
    background-color: rgba(255, 255, 255, .6);
    padding: 15px 25px;
    font-weight: 600;
    margin: 15px auto;
    text-align: center;
}

.ratings-quote span {
    font-weight: normal;
    display: block;
    font-style: italic;
}

.seen-on-section {
    width: 1170px;
    margin: 40px auto 0;
}

.seen-on-slider .owl-item img {
    max-height: 120px;
    margin: 0 auto;
    opacity: .5;
}

.btn-cta {
    background-color: #ee731e;
    border-radius: 5px;
    color: white;
    height: 55px;
    max-width: 310px;
    width: 80%;
    font-size: 19px;
    font-weight: 600;
}

.btn-cta.outline {
    background-color: white;
    color: #ee731e;
    border: 2px solid #ee731e;
    margin-top: 10px;
}

.btn-cta.outline-two {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    margin-top: 10px;
}

.btn-cta.outline-two:hover {
    background: transparent;
}

.btn-cta.outline:hover, .btn-cta:hover {
    text-decoration: underline;
    background: white;
}

.btn-cta:hover {
    background: #ee731e;
}

.pt-big {
    padding-top: 50px;
}

.pt-small {
    padding-top: 20px;
}

.pb-big {
    padding-bottom: 50px;
}

.pb-small {
    padding-bottom: 20px;
}

.mt-small {
    margin-top: 20px;
}

.mt-big {
    margin-top: 40px;
}

.mb-small {
    margin-bottom: 20px;
}

.mb-big {
    margin-bottom: 40px;
}

.fa-chevron-down {
    width: 50px;
    margin: 0 auto;
}

.owl-dots {
    text-align: center;
}

.owl-dot {
    display: inline-block;
    width: 15px;
    height: 10px;
    margin: 0 4px;
    background-color: #444;
    opacity: .3;
}

.owl-dot.active {
    opacity: 1;
}

.imprint-page-footer-image {
    width: 768px;
    margin: 0 auto;
}

.imprint-page-footer-image img {
    max-width: 60%;
}

.imprint-page-footer-image.impressum {
    text-align: center;
}

.accordion-section .accordion {
    cursor: pointer;
    padding: 18px 30px 18px 0;
    width: 100%;
    transition: 0.5s;
    margin-bottom: 10px;
    color: #ee731e;
    font-weight: 600;
    border-bottom: 1px solid #444;
    font-size: 14px;
    position: relative;
}

.accordion-section figure.wp-block-image{
    text-align: center;
}

.accordion-section img[class|='wp-image']{
    width: 100%;
    max-width: 500px;
}

/* Add a background color to the accordion if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion-section .accordion.active {
    border-bottom: none;
}

.accordion-section .accordion:after {
    content: "＋";
    font-size: 21px;
    color: #ee731e;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
    transition: all ease .5s;
    width: 22px;
    height: 30px;
    text-align: right;
}

/* Unicode character for "minus" sign (-) */
.accordion-section .accordion.active:after {
    transform: translateY(-50%) rotate(135deg);
    margin-top: 2px;
    margin-right: -2px;
}

/* Style the element that is used for the panel class */

.accordion-section .panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s;
}

.accordion-section .panel strong{
    font-weight: 100;
}

.accordion-section .panel.show {
    max-height: 5000px; /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
    transition: max-height 5s linear;
    border-bottom: 1px solid #444;
    padding-bottom: 30px;
}

.accordion-section h2 {
    font-size: 16px;
    font-weight: 600;
}

.hand-shake-icon, .sun-icon {
    height: 55px;
    margin-top: 30px;
}

#contact-form .form-control {
    width: 100%;
    margin: 5px auto;
    border: 2px solid #444;
    border-radius: 5px;
}

#contact-form .btn {
    background-color: #ee731e;
    border-radius: 5px;
    color: white;
    height: 35px;
    letter-spacing: 1px;
    margin: 20px 0;
}

#contact-form .btn:disabled {
    cursor: not-allowed;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
    background-color: #999;
}

.contact-form-section h3, .contact-form-section h2 {
    font-size: 23px; /* when changing this make sure the headline size of the three contact pages matches */
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 10px;
}

.contact-form-section #success-message {
    float: right;
    width: 200px;
    transform: rotate(-15deg);
    margin-top: -210px;
    display: none;
    z-index: 9999;
}

.contact-form-section .contact-form-loading {
    display: none;
    width: 32px;
    height: 32px;
    background-image: url('css/images/AjaxLoader.gif');
    float: right;
    margin-right: 10px;
    margin-top: 2px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #444;
    font-size: 14px;
    font-weight: 600;
    opacity: 1; /* Firefox */
    letter-spacing: 1px;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #444;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #444;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.mobile-show {
    display: none;
}

/* Smartphone Portrait and Landscape */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px){
    .mobile-show {
        display: inline;
    }
}

.press-download-section {
    margin-top: 40px;
}

.press-download-section .press-background-container {
    position: relative;
    padding: 20px 155px;
    background-color: #EFEFEF;
    justify-content: center;
}

.press-download-section .press-background {
    background-color: #EFEFEF;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    left: calc(-100vw / 2 + 1170px / 2);
    width: 100vw;
}

.press-download-section .press-background-container .item {
    flex-basis: 30%;
}

.press-download-section .sep {
    width: 100px;
    margin: 25px auto;
}

.press-download-section img {
    height: 55px;
}

.press-download-section .press-headline {
    text-align: center;
    color: #ee731e;
    font-weight: 600;
}

.press-download-section .press-text {
    text-align: center;
}

/* custom main title font sizes */
.page-id-20 .ht-main-title { /* faq site */
    font-size: 60px;
}

.page-id-38 .ht-main-title { /* agb site */
    font-size: 60px;
}

.page-id-1464 .ht-main-title { /* privacy site */
    font-size: 42px;
}

.blog-header-image {
    background: #ee731e no-repeat center bottom;
    height: 25vw;
    background-size: cover;
}

.blog-header-filter-wrapper{
    width: 100%;
    overflow-x: auto;
}

.blog-header-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.blog-header-filter a {
    color: #3E3E3E;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 10px;
    letter-spacing: 1px;
}

.page-template-blog-template {
    background-color: #f6f6f6;
}

.page-template-blog-template .page-content {
    margin-bottom: 0;
}

.pull-right {
    float: right;
}

.wpulike-default .wp_ulike_btn {
    color: #616161;
    background: none;
    min-height: 30px;
    min-width: 50px;
}

.wpulike-default .wp_ulike_put_image:after {
    width: 60px;
    height: 60px;
    transform: translateX(-50%) translateY(-50%) rotate(-10deg);
}

.wpulike {
    text-align: right;
    float: right;
    margin-bottom: 0;
}

.wpulike-default .count-box {
    position: absolute;
    font-size: 12px;
    text-decoration: none;
    color: white;
    vertical-align: middle;
    text-align: center;
    background-color: transparent;
    margin-left: 0;
    line-height: 0;
    padding: 0;
    box-shadow: none;
    right: 9px;
    top: 42px;
    width: 20px;
}

.wpulike-default .count-box:before {
    display: none;
}

.wpulike-default .wp_ulike_put_image.image-unlike:after {
    filter: invert(56%) sepia(43%) saturate(3951%) hue-rotate(351deg) brightness(97%) contrast(92%);
}

.youtube-video-section .ht-container {
    width: 60%;
    max-width: 1000px;
}

.grecaptcha-badge {
    display: none;
}

#cookie_action_close_header {
    margin-top: 20px;
    float: right;
    margin-right: 12px;
    padding: 10px 25px;
    border-radius: 5px;
}

.cli_settings_button {
    float: left;
    margin: 33px 0 0 10px;
    font-size: 12px;
}

/* set page width for subpages smaller */
.contact-form-section, .accordion-section, .impressum-section {
    width: 768px;
    margin: 0 auto;
}

.impressum-section {
    text-align: center;
}

.kundenmailing-headline {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 23px;
    text-align: center;
}

.b2b-areas-section .container{
    width: 642px;
    margin: 20px auto 20px;
    justify-content: center;
}

.b2b-areas-section .postando-bird{
    background-position-y: 50%;
    height:110px;
}

.b2b-areas-section .item{
    flex-basis: 50%;
    padding: 10px 20px;
}

.b2b-areas-section h3{
    font-size: 17px;
}

.text-container {
    width: 700px;
    margin: 0 auto;
}

.flexbox {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.benefits-section.business {
    margin-bottom: 0;
    padding: 30px 0;
}

.benefits-section.business .item {
    flex-basis: 50%;
}

.benefits-section.business .max-width-s {
    max-width: 25px;
}

.benefits-section.business .benefit-container {
    width: 700px;
    margin-top: 10px;
}

.sample-cards-section {
    padding-bottom: 30px;
    background-color: #EFEFEF;
}

.sample-cards-section .four-steps-header-image {
    background: linear-gradient(180deg, #fff 50%, #EFEFEF 50%);
    margin-bottom: -54px;
}

.sample-cards-section .sample-cards-slider .item {
    display: flex;
    flex-wrap: wrap;
}

.sample-cards-image {
    flex: 55%;
}

.sample-cards-quote img {
    margin-bottom: 15px;
}

.sample-cards-quote-text {
    max-width: 300px;
}

.sample-cards-quote {
    flex: 45%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin-top: 62px;
}

.sample-cards-quote-headline {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sample-cards-quote-headline-job {
    font-size: 14px;
    font-weight: normal;
    font-style: italic;
    margin-top: -5px;
}

.sample-cards-section .sample-cards-slider {
    width: 800px;
    margin: 0 auto;
}

.sample-cards-section.two {
    padding: 30px;
    margin-bottom: 30px;
}

.sample-cards-section.two .sample-cards-background {
    width: 1170px;
    margin: 0 auto;
}

.sample-cards-section.two .owl-carousel .owl-item img {
    padding: 0 10px;
}

.sample-cards-section.two .owl-carousel .owl-stage-outer {
    margin-bottom: 15px;
}

.sample-cards-section .sample-cards-slider .owl-stage-outer {
    margin: 20px 0;
}

.sample-cards-section .sample-cards-slider .owl-item .sample-cards-image img {
    padding: 0 10px;
    width: 95%;
    max-width: 470px;
    margin: 0 auto;
}

.kundenmailing-b2b-image {
    width: 800px;
    margin: 0 auto;
}

.blur-grayscale-filter {
    filter: blur(4px) grayscale(.2);
}

.blur-grayscale-brightness-filter {
    filter: blur(4px) grayscale(.2) brightness(0.55);
}

.image-width-300 {
    width: 300px;
}

.cookie-notice-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
}

#cookie-law-info-bar strong{
    font-weight: normal !important;
}

.cookie-notice {
    background: url("images/cookie-de.png") no-repeat right bottom / contain;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 518px;
    width: 700px;
    animation: cookie-slide-in .5s linear;
}

.webp .cookie-notice {
    background-image: url("images/cookie-de.webp");
}

.cookie-notice.en {
    background-image: url("images/cookie-en.png");
}

.webp .cookie-notice.en {
    background-image: url("images/cookie-en.webp");
}

@keyframes cookie-slide-in {
    0% {
        margin-right: -700px;
        margin-top: 400px;
        transform: rotate(-45deg);
    }
    100% {
        margin-right: 0;
        margin-top: 0;
        transform: rotate(0deg);
    }
}

/*--------------------------------------------------------------
## Media Queries
--------------------------------------------------------------*/
@media screen and (min-width: 769px) {
    .contact-form-section div {
        text-align: center;
    }

    .press-download-section .press-background-container .sep {
        display: none;
    }

    .press-download-section .press-background-container {
        display: flex;
    }
}

@media screen and (min-width: 621px) {
    .ht-site-header:not(.ht-sticky) .menu-top-click, .ht-site-header:not(.ht-sticky) .menu-bottom-click {
        border-color: black !important;
    }
}

@media screen and (min-width: 1400px) {
    .header-image.kundenmailing {
        background-size: 105% !important;
    }
}

@media screen and (max-width: 1200px) {
    .cookie-notice {
        right: -150px;
    }

    .kundenmailing-b2b-image {
        width: 75%;
    }

    .sample-cards-section.two .sample-cards-slider-two {
        margin: 0 auto;
        max-width: 600px;
        width: 100%;
    }

    .sample-cards-section.two .sample-cards-background {
        width: 95%;
    }

    .press-download-section .press-background-container .item {
        flex-basis: 40%;
    }

    .press-download-section .press-background {
        left: inherit;
    }

    #ht-top-footer .ht-container {
        width: 100%;
        margin: 0 auto;
    }

    .sample-cards-section .sample-cards-slider {
        width: 90%;
        margin: 0 auto;
    }

    .four-steps-section.kundenmailing .four-steps-slider {
        width: 90%;
    }

    .text-container {
        padding-left: 9%;
        padding-right: 9%;
        width: 100%;
    }

    .ht-blog-post.new-post, .blog-top-five-slider {
        width: 80%;
    }

    .ht-site-footer .ht-container {
        padding: 0 15px;
    }

    .ht-footer-headline {
        font-size: 15px;
    }

    #ht-blog-section article.post, .ht-blog-post-share-section {
        width: 80%;
    }

    .ht-blog-wrap {
        width: 100%;
    }

    .four-steps-section {
        width: 100% !important;
    }

    .ratings-section {
        width: 100% !important;
    }

    .seen-on-section {
        width: 100% !important;
        padding: 0 20px;
    }

    .youtube-video-section .ht-container {
        width: 80%;
        max-width: 700px;
    }

    .benefits-section .benefit-container {
        width: 80%;
    }

    .ht-container {
        width: auto;
        padding: 0 30px;
    }

    .ht-slide-caption {
        width: 80%;
        margin-left: -40%;
    }
}

@media screen and (max-width: 850px) {
    .sample-cards-section .sample-cards-slider {
        padding-top: 20px;
    }

    .press-download-section .press-background-container .item {
        flex-basis: 50%;
    }

    .benefits-section .item {
        flex-basis: 50%;
    }

    .kundenmailing-b2b-image {
        width: 100%;
    }

    .benefit-container {
        width: 100%;
    }

    .kundenmailing-why-postcards .benefit-container .benefit-image {
        font-size: 32px;
        flex: 0 0 87px;
    }

    .ht-blog-wrap.blog-flex .ht-blog-post {
        flex-basis: 50%;
    }

    .ht-blog-wrap.new-post .item {
        flex: 100%;
    }

    .ht-blog-post.new-post {
        width: 60%;
    }

    .ht-blog-post.new-post {
        flex-wrap: wrap;
    }

    .ht-footer.hide-small {
        display: none;
    }

    .ht-footer-social-icons {
        padding: 0 10px 0 0;
    }

    .ht-footer.size-m {
        flex: 100%;
    }

    .contact-form-section, .accordion-section, .impressum-section {
        width: 100% !important;
    }
}

@media screen and (max-width: 768px) {
    .b2b-button-nav-mobile {
        display: block;
    }

    .hide-desktop{
        display: block !important;
    }

    .hide-mobile{
        display: none !important;
    }

    .b2b-areas-section .item{
        flex-basis: 100% !important;
        text-align: center !important;
        margin: 5px auto;
    }

    .b2b-areas-section .padding-right, .b2b-areas-section .align-right{
        padding:0 10% !important;
    }

    .b2b-areas-section .item.one-third img{
        max-width: 200px;
    }

    .b2b-areas-section .mobile-show{
        display: block;
    }

    .b2b-areas-section .hide-small{
        display: none;
    }

    .b2b-areas-section .flexbox{
        padding-top:40px;
    }

    .b2b-areas-section .container{
        width:100%;
    }

    .b2b-button-nav-desktop {
        display: none;
    }

    .b2b-button-nav {
        right: 45px;
    }

    .cookie-notice {
        right: -250px;
    }

    .text-container .aligncenter, .contact-form-text {
        text-align: left;
    }

    .ht-main-navigation a, .ht-main-navigation .menu-item-no-link {
        line-height: 30px;
    }

    .press-download-section .press-background {
        left: -30px;
    }

    .ht-blog-wrap.blog-flex {
        background-color: #EFEFEF;
    }

    .ht-blog-post {
        margin-bottom: 3px;
    }

    .ht-blog-post img {
        margin-top: 28px;
    }

    .press-download-section .press-background-container .item {
        flex-basis: 100%;
    }

    .press-download-section .press-background-container {
        padding: 20px 0;
    }

    .impressum-section {
        text-align: left;
    }

    .imprint-page-footer-image {
        width: 768px;
        margin-left: -10%;
    }

    .imprint-page-footer-image img {
        max-width: 80%;
    }

    .benefits-section.business .benefit-container {
        width: 95%;
        margin: 10px auto 0;
    }

    .sample-cards-quote {
        margin-top: 0;
    }

    .sample-cards-image {
        flex: 100%;
    }

    .sample-cards-quote {
        flex: 100%;
        padding-top: 30px;
    }

    .sample-cards-quote img {
        width: 100%;
        margin: 0 auto;
    }

    .sample-cards-quote-headline {
        text-align: center;
        padding-top: 10px;
    }

    .sample-cards-quote-text {
        text-align: center;
        margin: 0 auto;
    }

    .sample-cards-section .sample-cards-slider {
        width: 80%;
    }

    .imprint-page-footer-image {
        width: 100%;
    }

    .ht-blog-wrap.blog-flex .ht-blog-post {
        flex-basis: 100%;
    }

    .blog-header-image {
        height: 250px;
    }

    .header-image {
        height: 500px !important;
    }

    #ht-blog-section article.post, .ht-blog-post-share-section {
        width: 90%;
    }

    .ht-blog-post {
        flex-basis: 100%;
    }

    .ht-blog-post.new-post {
        width: 80%;
    }

    .ht-blog-wrap.blog-flex {
        width: 80%;
        margin: 0 auto;
    }

    .youtube-video-section .ht-container {
        width: 100% !important;
    }

    .benefits-section .item .benefit.right {
        flex-direction: row;
        text-align: left;
    }

    .benefits-section .benefit-container {
        width: 100%;
    }

    .four-steps-header-image img {
        max-width: 250px !important;
    }

    .ht-section-title,
    .ht-section-tagline {
        width: auto;
    }

    #ht-about-us-section .ht-container {
        display: block;
    }

    .ht-about-sec {
        width: auto;
        float: none;
        padding: 0;
        margin-bottom: 30px;
    }

    .ht-about-image {
        width: auto;
        float: none;
        padding: 0;
        text-align: center;
    }

    .ht-featured-post-wrap {
        margin-left: 0;
    }

    .ht-featured-post {
        float: none;
        margin: 0 auto 80px;
        width: 75%;
    }

    .ht-featured-post:last-child {
        margin-bottom: 0;
    }

    .ht-portfolio-cat-name-list {
        text-align: center;
    }

    .ht-service-left-bg {
        display: none;
    }

    .ht-service-posts {
        float: none;
        width: auto;
        padding: 0;
    }

    #ht-service-post-section {
        padding: 60px 0;
    }

    #ht-counter-section {
        background-size: cover;
        background-position: center !important;
    }

    .ht-counter {
        width: 45%;
        margin-bottom: 60px;
    }

    #ht-counter-section {
        padding-bottom: 0;
    }

    .ht-blog-wrap {
        margin: 0;
    }

    .ht-blog-read-more.extra-padding {
        padding: 0 20px 40px;
    }

    #ht-cta-section {
        background-size: cover;
        background-position: center !important;
    }

    .ht-top-footer {
        margin-left: 0;
    }

    .ht-slide-cap-title {
        font-size: 24px;
        font-size: 4vw;
        margin-bottom: 10px;
    }

    .ht-slide-cap-desc {
        font-size: 14px;
        font-size: 3vw;
    }

    #primary {
        width: auto !important;
        float: none !important;
        margin-bottom: 30px;
    }

    #secondary {
        width: auto !important;
        float: none !important;
        margin-bottom: 30px;
    }

}

@media screen and (max-width: 620px) {
    .ht-main-navigation .ht-menu {
        border-radius: 0;
        box-shadow: none;
        left: 0;
        right: 0;
        max-width: 100%;
        position: absolute;
        top: 69px;
    }

    #ht-masthead.menu-opened{
        overflow: scroll;
        height: 100%;
    }

    #navigation-modal {
        top: 70px !important;
    }

    .menu-top-click, .menu-bottom-click {
        border-color: white;
    }

    .sample-cards-section.two .owl-carousel .owl-item img {
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 580px) {
    /* overwrite float left and right images on mobile */
    #ht-blog-section article.post .entry-content .ht-blog-post-content img {
        float: none;
        width: 100%;
        margin: 0;
    }

    .blog-header-filter {
        justify-content: flex-start;
        width: 400px;
    }

    .kundenmailing-why-postcards .benefit-container {
        width: 90% !important;
        margin: 0 auto;
    }

    .ht-blog-post {
        margin-bottom: 30px;
    }

    .ht-blog-post img {
        margin-top: 40px;
    }

    .benefits-section .item, .benefits-section.business .item {
        flex-basis: 100%;
    }

    .benefits-section.business {
        padding: 30px 20px;
    }

    .ht-footer-social-icons div{
        padding-right: 10px;
    }

    .ht-top-footer {
        flex-wrap: wrap;
    }

    .ht-footer.size-s {
        flex: 49%; /* because of iphone x not 50% */
    }

    .ht-footer .size-half{
        flex: 100%;
    }

    .ht-top-footer.bottom, .ht-footer.size-m{
        margin-top: 0;
    }

    .ht-footer-headline{
        margin-top: 10px;
    }

    #ht-blog-section article.post, .ht-blog-post-share-section {
        width: 100%;
    }

    .ht-blog-post {
        flex-basis: 100%;
    }

    .ht-blog-wrap.blog-flex {
        width: 100%;
    }

    .ht-blog-label.top5 {
        margin-top: -36px;
    }

    .ht-blog-post.new-post {
        width: 100%;
    }

    #ht-home-slider-section .bx-wrapper .bx-controls-direction a,
    .ht-testimonial-wrap .bx-wrapper .bx-controls-direction a {
        display: none;
    }

    .ht-team-member-wrap {
        margin-left: 0;
    }

    .ht-team-member {
        width: 75%;
        float: none;
        margin: 0 auto 30px;
    }

    .ht-team-counter-wrap {
        margin-left: 0;
    }

    .ht-counter {
        width: 75%;
        float: none;
        margin: 0 auto 60px;
    }

    .ht-portfolio {
        width: 50%;
        padding: 4px;
    }

    .ht-portfolio-caption {
        background: none !important;
        opacity: 1;
    }

    .ht-portfolio-caption h5,
    .ht-portfolio-caption a.ht-portfolio-link,
    .ht-portfolio-caption a.ht-portfolio-image {
        transform: translate(0, 0);
    }

    .ht-portfolio-caption h5 {
        background: rgba(0, 0, 0, 0.2);
        padding: 10px;
        left: 0;
        right: 0;
        top: 0;
        text-align: center;
    }

    .ht-portfolio-caption a {
        right: 0;
        bottom: 0;
        margin: 0 5px;
    }

    .ht-portfolio-caption a.ht-portfolio-image {
        right: 46px;
    }
}

@media screen and (max-width: 480px) {
    .cookie-notice {
        right: -340px;
    }

    .seen-on-section {
        margin: 30px auto 0;
    }

    .start-section .text-container .section-headline {
        width: 211px;
        margin: 0 auto;
    }

    .kundenmailing-headline {
        width: 90%;
        margin: 0 auto;
    }

    .benefits-section.business .benefit-container {
        width: 100%;
    }

    .ht-blog-post,
    .ht-featured-post {
        width: auto;
    }

    .ht-team-member-wrap {
        margin-left: 0;
    }

    .ht-team-member,
    .ht-counter {
        width: auto;
        float: none;
    }

    .ht-testimonial-excerpt {
        width: auto;
    }

    .ht-testimonial-excerpt .fa-quote-left {
        left: 0;
    }

    .ht-cta-buttons a {
        display: block;
        margin: 0 0 15px;
    }

    .ht-post-info {
        float: none;
        width: auto;
        margin-bottom: 20px;
    }

    .ht-post-wrapper {
        padding-left: 0;
    }
}

@media screen and (max-width: 380px) {
    .cookie-notice {
        right: 0;
        width: 100%;
        background-position: 20px center;
        background-size: 180%;
    }

    .ht-footer{
        flex:100% !important;
    }

    .ht-container{
        padding:0 10px;
    }
}

.postcard-occasions {
    margin-top: 30px;
    padding: 0 30px;
}

.postcard-occasions h1, .postcard-occasions h2 {
    font-size: 22px;
    word-break: break-word;
    width: 90%;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 90; /* Sit on top */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

#navigation-modal.offset {
    top: 70px;
}

.modal.show {
    display: block;
}

.secondary-header h2 {
    text-transform: uppercase;
    color: #ee731e;
    font-weight: 600;
    font-size: 17px;
    text-align: left;
}

.full-width-grey-bg {
    background: #efefef;
}

.voucher-form-price-div div {
    display: inline-block;
}

.voucher-form-price-div {
    float: left;
    margin-top: 10px;
    text-align: left !important;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
}

.voucher-form-price-value {
    margin: 0 7px;
    font-weight: bold;
    font-size: 30px;
    color: #ee731e;
}

.hide-mobile{
    display: block;
}

.hide-desktop{
    display: none;
}

.post-password-required .page-content{
    text-align: center;
}

.woocommerce .woocommerce-breadcrumb, .woocommerce .woocommerce-breadcrumb a{
    color:white;
}
.below-footer span {
    color: var(--c-white);
    font-size: 12px;
    display: inline-block;
    position: relative;
    padding: 10px 0;
    width: 100%;
    text-align: center;
}
.below-footer_powered_by a {
    background-image: url(http://www.postando.de/wp-content/uploads/2025/06/logo-scriptics.png);
    background-size: auto;
    color: var(--c-white);
    background-repeat: no-repeat;
    text-decoration: none;
    text-align: right;
    font-weight: 400;
    display: inline-block;
    height: 33px;
    line-height: 33px;
    padding-left: 35px;
    width: auto;
    transition: all .15s linear;
    background-position: 0 0;
}
.below-footer_powered_by a:hover {
    color: #0380fe;
    background-repeat: no-repeat;
    background-position: 0 -33px;
}