@charset "UTF-8";
/**
 * Font Scale
 *
 *

1 
1.2
1.44
1.728
2.074 
2.488
2.986

*/
/**
 * Font Scale
 *
 *

1 
1.2
1.44
1.728
2.074 
2.488
2.986

*/
/**
 * CSS Reset
 *
 */
* {
  outline: 0;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  color: rgb(0, 0, 0);
}

article,
aside,
dd,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
  box-sizing: border-box;
}

a {
  color: rgb(210, 70, 145);
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:visited {
  color: rgb(210, 70, 145);
}
a:hover, a:active {
  color: rgb(255, 170, 0);
  outline-width: 0;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  display: block;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  line-height: 1.125;
  margin: 0.666em 0;
  color: rgb(210, 70, 145);
}

.reader {
  display: none;
}

/**
 * Site Header
 *
 */
.site-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1vh 0;
}

.icon {
  height: 3.6rem;
  width: 3.6rem;
  margin: auto;
  fill: currentColor;
  cursor: pointer;
}

.menu-label {
  order: 1;
  line-height: 0;
}

.search-label {
  order: 3;
  line-height: 0;
  transition: 0.2s ease-in-out;
}

.logo {
  order: 2;
  width: 40%;
  max-width: 40rem;
  margin: 0.7rem 0 1.5rem 0;
}

.header-menu {
  order: 4;
  width: 100%;
  border-bottom: 1px solid #fff;
  position: relative;
  padding-bottom: 2rem;
}
.header-menu ul {
  display: flex;
  flex-direction: column;
  width: 50%;
  list-style: none;
}
.header-menu ul a {
  color: rgb(210, 70, 145);
  font-size: 1.4rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  display: block;
  padding: 0.8em 0 0.6em 1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 0.1rem solid rgb(170, 170, 170);
}
.header-menu .current-menu-item a,
.header-menu .current-menu-parent a {
  color: rgb(255, 170, 0);
}

.social-box {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 2.3rem;
  right: 5%;
  left: 50%;
}
.social-box a {
  display: flex;
  padding: 0;
  border-bottom: 0;
}
.social-box a:not(:first-child) {
  margin-left: 0.8rem;
}

/**
 * Main Menu Show/Hide Control
 *
 */
#menu-ctrl ~ .header-menu {
  display: none;
}

#menu-ctrl:checked ~ .header-menu {
  display: block;
}

#menu-ctrl {
  display: none;
}

/**
 * Search Form Show/Hide Control
 *
 */
#search-ctrl ~ .search-form {
  display: none;
}

#search-ctrl:checked ~ .search-form {
  display: flex;
}

#search-ctrl {
  display: none;
}

#search-ctrl:checked ~ .search-label {
  transform: rotate(-180deg);
}

.search-form {
  order: 4;
  width: 100%;
  justify-content: space-between;
}
.search-form .search-input {
  width: calc(100% - 9rem);
  padding: 0;
  line-height: 3.6rem;
  height: 3.6rem;
  border: 1px solid rgb(220, 220, 220);
}
.search-form .search-button {
  line-height: 0;
  border: 0;
  background-color: rgb(210, 70, 145);
  color: #fff;
}

@media screen and (min-width: 960px) {
  .site-header {
    margin: 0 auto 5rem auto;
    position: relative;
    padding: 0;
  }
  .logo {
    margin: 4rem auto;
  }
  /**
   * Main Menu Show/Hide Control
   *
   */
  .menu-label {
    display: none;
  }
  #menu-ctrl ~ .header-menu {
    display: block;
    position: static;
    border-top: 0;
  }
  .header-menu {
    padding: 0;
  }
  .header-menu ul {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    background-color: #fff;
    border-top: 0.3rem double rgb(0, 0, 0);
    border-bottom: 0.3rem double rgb(0, 0, 0);
  }
  .header-menu ul a {
    padding: 0.7em 2em 0.5em 2em;
    background-color: #fff;
    border-top: 0.3rem double rgb(0, 0, 0);
    border-bottom: 0.3rem double rgb(0, 0, 0);
    margin: -0.3rem 0;
    color: rgb(0, 0, 0);
  }
  .header-menu ul a:hover {
    color: rgb(210, 70, 145);
    border-top: 0.3rem double rgb(210, 70, 145);
    border-bottom: 0.3rem double rgb(210, 70, 145);
  }
  .header-menu ul .current-menu-item a,
  .header-menu ul .current-menu-parent a {
    background-color: transparent;
    color: rgb(210, 70, 145);
    border-top: 0.3rem double rgb(210, 70, 145);
    border-bottom: 0.3rem double rgb(210, 70, 145);
  }
  /**
   * Search Form Show/Hide Control
   *
   */
  #search-ctrl ~ .search-form {
    position: absolute;
    bottom: 8.5rem;
    right: 0;
    width: 25%;
  }
  .search-form input,
  .search-form button {
    margin-bottom: 0;
  }
  .search-label {
    position: absolute;
    bottom: 8.5rem;
    right: 0;
  }
  .social-box {
    bottom: 8.5rem;
    left: 0;
    right: auto;
    width: auto;
  }
}
/**
 * Single
 *
 */
.post-header {
  text-align: left;
  color: #4d4d4d;
  margin-bottom: 3rem;
}
.post-header h1 {
  margin: 0 0 0.333em 0;
  color: rgb(0, 0, 0);
  line-height: 1;
}
.post-header figure {
  margin-bottom: 1.5rem;
}

nav > ul,
nav > ol,
.post-categories,
.post-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.post-categories {
  margin-bottom: 0.5em;
}
.post-categories li:not(:last-child):after {
  content: "·";
  margin: 0 0.5em;
}
.post-categories a {
  font-size: 1.4rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  padding-bottom: 0.333em;
  text-transform: uppercase;
  border-bottom: 0.1rem solid rgb(210, 70, 145);
}

.post-meta {
  font-size: 1.4rem;
  margin-bottom: 1em;
}

.post-author {
  margin: 0.5em 0 0 0;
}

.entry-date {
  font-size: 1.2rem;
  display: inline;
  text-transform: lowercase;
}
.entry-date:before {
  content: "•";
  margin: 0 0.5em;
}

.updated {
  color: rgb(210, 70, 145);
}

.sponsored {
  color: rgb(255, 170, 0);
}
.sponsored:before {
  content: "•";
  margin: 0 0.5em;
}

.intro {
  margin: 1.5rem 0 3rem 0;
  font-size: 1.4rem;
  font-style: italic;
}

.banner {
  padding: 1.5rem 0;
  margin: 1.5rem 0;
  border: 1px solid rgb(220, 220, 220);
  border-left: 0;
  border-right: 0;
  position: relative;
}
.banner:before {
  content: "ADV";
  font-size: 1rem;
  position: absolute;
  top: -0.6em;
  right: 10%;
  background-color: #fff;
  padding: 0 0.5em;
  line-height: 1em;
  color: rgb(0, 0, 0);
}
.banner div {
  width: 30rem;
  margin: 0 auto;
}
.banner.deskAd {
  display: none;
}

.post-content p {
  margin-bottom: 0.666em;
}

@media screen and (min-width: 750px) {
  .post-categories a {
    font-size: 1.6rem;
  }
  .post-meta {
    font-size: 1.4rem;
  }
  .entry-date {
    font-size: 1.4rem;
  }
  .intro {
    font-size: 1.6rem;
  }
  .banner.mobAd {
    display: none;
  }
  .banner.deskAd {
    display: block;
  }
}
/**
 * Sidebar
 *
 */
.widget {
  margin-bottom: 3rem;
}
.widget h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-top: 0;
  color: rgb(210, 70, 145);
}

.container {
  margin: 0 auto;
  width: 90%;
  position: relative;
  background-color: #fff;
}

@media screen and (min-width: 750px) {
  .container {
    width: 80%;
    max-width: 86rem;
  }
  .sidebar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
  }
  .widget {
    width: 47.5%;
    min-width: 30rem;
    margin-bottom: 5%;
  }
}
@media screen and (min-width: 960px) {
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 110rem;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  .old-post .container {
    max-width: 96rem;
  }
  main {
    width: calc(100% - 35rem);
    max-width: 86rem;
  }
  main.full-width {
    width: 100%;
    max-width: 100%;
  }
  .sidebar {
    width: 30rem;
    flex-direction: column;
    justify-content: flex-start;
  }
  .site-header,
  .site-footer {
    width: 100%;
  }
  .widget {
    width: 100%;
  }
}
/**
 * Cookie
 *
 */
#cbox-notice {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgb(210, 70, 145);
  color: #fff;
  padding: 2em;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.4rem;
  transition: transform 0.3s ease-in-out;
}

.cbox-message {
  margin: 0 0 2em 0;
}

.cbox-button {
  padding: 0.5em 1em;
  background-color: rgb(120, 120, 120);
  border-radius: 0.3em;
  line-height: 0;
  text-decoration: none;
  color: #fff;
  margin: 0 0.3em 0 0.3em;
}

.cbox-button:hover,
.cbox-button:active,
.cbox-button:visited {
  color: #fff;
}

/**
 * Single
 *
 */
.post-header h1 {
  font-size: 2.76rem;
}

.post-content {
  margin-bottom: 7vh;
}
.post-content a {
  border-bottom: 1px rgb(210, 70, 145);
}
.post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  margin-top: 2em;
}
.post-content h2 {
  font-size: 2.3rem;
}
.post-content h3 {
  font-size: 1.92rem;
}
.post-content h4,
.post-content h5,
.post-content h6 {
  font-size: 1.6rem;
  text-transform: uppercase;
}
.post-content blockquote, .post-content ol, .post-content ul {
  margin: 1.333em;
}
.post-content li {
  margin-bottom: 0.333em;
  list-style-position: inside;
}
.post-content dl {
  margin: 1.333em 0;
}
.post-content dt {
  font-weight: 700;
  color: rgb(255, 170, 0);
}
.post-content dd {
  margin-bottom: 1em;
}
.post-content blockquote {
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  border-left: 0.5rem double rgb(210, 70, 145);
  color: rgb(210, 70, 145);
  padding-left: 1em;
}
.post-content blockquote p {
  margin: 0;
}
.post-content blockquote.fancy {
  background-color: #faeaf3;
  border-left: none;
  margin: 1em 0;
  padding: 2em;
}
.post-content quote {
  background-color: #f5d6e6;
  padding: 0 0.3em;
}

.flex-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 2rem 0;
}
.flex-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-info {
  text-align: right;
  padding: 0.5em 0;
  margin: 2em 0;
}

.inline-related {
  border-top: 1px solid rgb(170, 170, 170);
  border-bottom: 1px solid rgb(170, 170, 170);
  padding-top: 0.5em;
  margin: 2em 0;
}
.inline-related:before {
  content: "Leggi anche » ";
  line-height: 2;
  color: rgb(0, 0, 0);
  font-weight: 700;
  display: block;
}
.inline-related a {
  color: rgb(210, 70, 145);
}

@media screen and (min-width: 750px) {
  .post-header h1 {
    font-size: 3.97rem;
  }
  .post-content h2 {
    font-size: 2.76rem;
  }
  .post-content h3 {
    font-size: 2.3rem;
  }
  .post-content h4 {
    font-size: 1.92rem;
  }
  .post-content h5 {
    font-size: 1.6rem;
    text-transform: uppercase;
  }
  .post-content h6 {
    font-size: 1.6rem;
    text-transform: uppercase;
  }
}
/**
 * Content Image with/without Caption
 *
 */
.post-content img,
.post-content figure {
  margin: 2em auto;
}
.post-content figure img {
  margin: 0;
}

.wp-caption-text {
  font-size: 1.4rem;
  padding: 0.7em 0;
  margin-top: 0.1em;
  border-bottom: 1px solid rgb(0, 0, 0);
}

@media screen and (min-width: 750px) {
  .alignleft,
  .alignright {
    max-width: calc((100% - 2em) / 2);
    margin-bottom: 2em;
  }
  .alignleft {
    float: left;
    margin-right: 2em;
  }
  .alignright {
    float: right;
    margin-left: 2em;
  }
}
/**
 * Wordpress Gallery HTML5
 *
 */
.gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgb(0, 0, 0);
  border-bottom: 1px solid rgb(0, 0, 0);
  padding-top: 1em;
  margin: 2rem 0;
}
.gallery img,
.gallery figure {
  margin: 0;
}
.gallery .gallery-item {
  width: calc((100% - 1em) / 2);
  margin: 0 0 1em 0;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
}

@media screen and (min-width: 550px) {
  .gallery-columns-3 .gallery-item {
    width: calc((100% - 2em) / 3);
  }
  .gallery-columns-4 .gallery-item {
    width: calc((100% - 2em) / 3);
  }
  .gallery-columns-5 .gallery-item {
    width: calc((100% - 1em) / 2);
  }
}
@media screen and (min-width: 750px) {
  .gallery-columns-4 .gallery-item {
    width: calc((100% - 3em) / 4);
  }
  .gallery-columns-5 .gallery-item {
    width: calc((100% - 4em) / 5);
  }
}
.post-footer h2 {
  font-size: 2.3rem;
  border-bottom: 1px solid rgb(0, 0, 0);
  margin: 0 0 1em 0;
  padding-bottom: 0.5em;
  text-align: center;
  text-transform: uppercase;
}
.post-footer > aside, .post-footer > nav, .post-footer > section {
  margin-bottom: 5vh;
}

.author-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.author-card h2 {
  width: 100%;
  font-size: 1.6rem;
  text-align: left;
}
.author-card p {
  width: 80%;
}

.author-avatar {
  width: 15%;
}
.author-avatar img {
  border-radius: 50%;
}

.post-tags,
.category-children {
  justify-content: center;
  flex-wrap: wrap;
}
.post-tags li:not(:last-child),
.category-children li:not(:last-child) {
  margin: 0 1rem 1rem 0;
}
.post-tags a,
.category-children a {
  background-color: rgb(210, 70, 145);
  color: #fff;
  border-radius: 0.5rem;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 0.666em 1em;
  display: block;
  font-size: 1.4rem;
  transition: background-color 0.3s ease;
}
.post-tags a:hover,
.category-children a:hover {
  background-color: rgb(255, 170, 0);
}

.related article {
  margin-bottom: 2em;
  display: flex;
  justify-content: space-between;
}
.related h3 {
  font-size: 1.92rem;
  width: 60%;
}
.related figure {
  width: 35%;
}
.related a {
  color: rgb(0, 0, 0);
}

@media screen and (min-width: 750px) {
  .related {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .related h2, .related h3 {
    flex-basis: 100%;
    text-align: center;
  }
  .related h3 {
    font-size: 2.3rem;
  }
  .related article {
    width: 47.5%;
    margin-bottom: 0;
    flex-wrap: wrap;
  }
  .related figure {
    width: 100%;
  }
}
/**
 * Form
 *
 */
button,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1;
  margin: 0 0 1em 0;
  padding: 1em 1em 0.666em 1em;
  display: block;
  color: rgb(0, 0, 0);
  border: 1px solid rgb(220, 220, 220);
  border-radius: 0.3rem;
  box-shadow: none;
  box-sizing: border-box;
  width: 100%;
}
button:focus,
input:focus,
textarea:focus {
  box-shadow: inset 0px 0px 5px 1px rgb(170, 170, 170);
  outline: 0;
}

button,
input[type=submit],
input[type=reset] {
  background-color: rgb(210, 70, 145);
  color: #fff;
  border: 0;
  cursor: pointer;
  padding: 1em 1.4em;
  width: auto;
}
button:hover,
input[type=submit]:hover,
input[type=reset]:hover {
  background: #b82d77;
}

textarea {
  height: 15vh;
  min-height: 10rem;
}

.commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.commentlist header:after {
  content: " ";
  display: table;
  clear: both;
}
.commentlist .vcard {
  float: left;
  margin: 0 1rem 0 0;
  vertical-align: top;
}
.commentlist .avatar {
  border-radius: 50%;
}
.commentlist section {
  margin: 0;
}
.commentlist li {
  padding-bottom: 0;
  margin-bottom: 1rem;
}
.commentlist li:last-child {
  border-bottom: none;
}
.commentlist .children {
  margin: 0 0 3rem 0;
  list-style: none;
}
.commentlist .children li {
  padding: 0 0 0 2rem;
  border-left: 1px dotted #999;
  margin-top: 2rem;
}

.authorname,
.authorname a,
.comment-meta {
  line-height: 1.6rem;
  color: rgb(210, 70, 145);
}

.authorname {
  padding-top: 1rem;
  font-weight: 700;
}

.comment-meta {
  font-size: 1.4rem;
}

.comment-content p {
  font-size: 1.4rem;
  margin: 0.5rem 0 0 0;
  color: rgb(170, 170, 170);
}

.comment-reply-link {
  color: rgb(255, 170, 0);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.comment-respond {
  display: inline-table;
  padding: 1.5rem 0;
  width: 100%;
}

.comment-reply-title {
  margin: 0;
}

.input-notes {
  margin: 0 0 1rem 0;
  color: rgb(170, 170, 170);
  font-size: 1.4rem;
}

.comment-notes {
  color: rgb(170, 170, 170);
  padding: 1em 0;
}

.comment-form .req {
  color: rgb(210, 70, 145);
}
.comment-form label {
  display: none;
}

/**
 * Index
 *
 */
.index-header {
  text-align: center;
}

.post-list h1, .post-list h2, .post-list h3 {
  color: rgb(0, 0, 0);
}
.post-list h2 {
  font-size: 2.3rem;
  text-align: center;
  margin-top: 0;
}
.post-list h2 a {
  color: rgb(0, 0, 0);
}
.post-list.specials h2 a {
  background-color: rgb(255, 170, 0);
  display: block;
  padding: 1em;
  color: #fff;
}
.post-list article {
  margin-bottom: 3rem;
}
.post-list p {
  text-align: center;
}
.post-list .post-categories {
  position: relative;
  display: flex;
  justify-content: center;
  top: -1em;
}
.post-list .post-categories a {
  color: #fff;
  font-size: 1.2rem;
  background-color: rgb(210, 70, 145);
  padding: 0.5em 1em;
  border: 0.1rem solid #fff;
}

.home h1 {
  width: 100%;
  margin-bottom: 2rem;
  line-height: 1.5;
  text-transform: uppercase;
  font-size: 2.3rem;
  border-bottom: 0.1rem solid rgb(0, 0, 0);
  color: rgb(0, 0, 0);
  text-align: center;
}

.category-children {
  justify-content: flex-start;
}
.category-children li:not(:last-child) {
  margin: 0 1rem 1rem 0;
}
.category-children a {
  padding: 1em;
}

.category-nav h2 {
  text-align: left;
}

.index-footer {
  width: 100%;
}

.page-navigation {
  display: flex;
  justify-content: space-around;
  margin: 2vh 0 5vh 0;
}
.page-navigation div {
  width: 47.5%;
  background-color: rgb(220, 220, 220);
  display: flex;
  align-items: center;
}
.page-navigation a {
  color: #fff;
  background-color: rgb(210, 70, 145);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vh 0;
  text-align: center;
  width: 100%;
}
.page-navigation .icon {
  display: inline-block;
  margin: 0;
}
.page-navigation .nav-prev {
  border-right: 1px solid #fff;
}

@media screen and (min-width: 750px) {
  .index-header {
    text-align: left;
    margin-bottom: 5rem;
    width: 100%;
  }
  .index-header h1 {
    width: 100%;
    font-size: 3.31rem;
    text-align: left;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
    display: block;
  }
  .post-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .post-list p {
    text-align: left;
  }
  .post-list article {
    justify-content: space-between;
    margin-bottom: 5rem;
  }
  .post-list .cover h2 {
    font-size: 3.31rem;
    margin-bottom: 1rem;
  }
  .half {
    width: 47.5%;
  }
}
/**
 * Categories, Services and Specials
 *
 */
.aside {
  margin-bottom: 5rem;
  padding: 2rem 0;
  border-bottom: 0.1rem solid rgb(0, 0, 0);
}
.aside h2 {
  text-align: center;
  line-height: 0.8;
  margin: 0.333 0;
  color: rgb(0, 0, 0);
}

.calcs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.calcs a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 700;
  width: calc(50% - 1rem);
  height: 16rem;
  padding: 0 1rem;
  box-sizing: border-box;
  background-color: rgb(210, 70, 145);
  transition: background-color 0.5s ease-in-out;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
}
.calcs a:hover {
  background-color: rgb(255, 170, 0);
}
.calcs svg {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  fill: currentColor;
}

.featured {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.featured article {
  width: calc(50% - 1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.featured h2 {
  margin: 1rem 0;
  font-size: 1.92rem;
}

.children-list {
  flex-direction: column;
}
.children-list a {
  display: block;
  padding: 0.5em 0;
  border-bottom: 1px dotted #000;
}
.children-list .current_page_item {
  list-style: circle;
  list-style-position: outside;
}
.children-list .current_page_item a {
  color: rgb(0, 0, 0);
}

@media screen and (min-width: 750px) {
  .calcs svg {
    width: 6rem;
    height: 6rem;
    margin: auto;
  }
  .in-page .calcs a {
    font-size: 1.4rem;
    width: 22.5%;
    margin-bottom: 0;
    padding: 2rem;
  }
  .featured article {
    flex-basis: 22.5%;
    margin-bottom: 0;
  }
}
/**
 * Focus
 *
 */
.single-focus_type .site-header {
  margin-bottom: 0;
}
.single-focus_type .post-header figure {
  margin-bottom: 0;
}

.focus-header {
  margin-bottom: 2em;
}

.focus-parent-intro {
  padding: 1em;
  text-align: center;
}
.focus-parent-intro h1 {
  font-size: 3.31rem;
  line-height: 1;
}
.focus-parent-intro p {
  font-family: "Nunito", sans-serif;
  line-height: 1.2;
}

.post-content .article-focus h2 {
  margin: 0.7em 0 0.3em 0;
}
.post-content .article-focus .intro {
  margin: 0;
}

@media screen and (min-width: 750px) {
  .focus-header {
    margin-top: 2em;
  }
  .focus-parent {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .focus-parent .article-focus {
    width: 100%;
    margin-bottom: 3em;
  }
  .focus-parent .article-focus.half {
    width: 47.5%;
  }
  .focus-parent-intro {
    padding: 2em;
  }
}
/**
 * Custom Social Share Kit
 *
 */
.ssk-group {
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  bottom: 0;
  right: 0;
  left: 0;
}
.ssk-group .ssk {
  flex: 1 0 0;
  display: inline-flex;
  width: 3.6rem;
  height: 3.6rem;
  color: #fff;
  transition: background-color 0.3s ease;
  -webkit-transform: translate3d(0, 0, 0);
}
.ssk-group .ssk:hover {
  color: #fff;
}
.ssk-group .ssk .icon {
  width: 2rem;
  height: 2rem;
}

@media screen and (min-width: 750px) {
  .ssk-group {
    flex-direction: column;
    top: 40%;
    right: auto;
    bottom: auto;
  }
  .ssk-group a.ssk {
    flex: none;
    margin: 0 0 0.1rem 0;
    transition: padding-left 0.3s ease;
  }
  .ssk-group a.ssk:hover {
    padding-left: 1.2rem;
  }
}
.ssk-facebook {
  background-color: #3B5998;
}
.ssk-facebook:hover {
  background-color: #2d4373;
}

.ssk-twitter {
  background-color: #1DA1F2;
}
.ssk-twitter:hover {
  background-color: #0c85d0;
}

.ssk-google-plus {
  background-color: #EA4335;
}
.ssk-google-plus:hover {
  background-color: #d62516;
}

.ssk-pinterest {
  background-color: #BD081C;
}
.ssk-pinterest:hover {
  background-color: #8c0615;
}

.ssk-whatsapp {
  background-color: #34AF23;
}
.ssk-whatsapp:hover {
  background-color: #27851b;
}

/**
 * Sidebar
 *
 */
.sidebar h2 {
  text-align: center;
  color: rgb(210, 70, 145);
}
.sidebar .banner:first-child {
  margin-top: 0;
}
.sidebar .calcs a {
  width: calc(50% - 0.5rem);
  height: 16rem;
  padding: 0 1rem;
  margin-bottom: 1rem;
  height: 14rem;
}
.sidebar .calcs svg {
  margin: 1rem;
}

.widget_about p {
  text-align: center;
}

.aboutNav {
  text-align: center;
}
.aboutNav li {
  margin: 0.2rem 0 0 0;
  display: inline;
}
.aboutNav li:not(:last-child):after {
  content: "·";
  margin: 0 0.5rem;
}
.aboutNav a {
  color: rgb(255, 170, 0);
}

.specials_widget {
  padding: 5%;
  background-color: rgb(245, 245, 245);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.specials_widget h2 {
  width: 100%;
}
.specials_widget article {
  flex-basis: 47.5%;
}
.specials_widget article:not(:last-child) {
  margin-bottom: 2rem;
}
.specials_widget h3 {
  text-align: center;
  font-size: 1.4rem;
}

/**
 * Custom Sidebar Menu Widget
 *
 */
.widget_menu h2 {
  color: #fff;
  margin: 0;
  padding: 0.5em 0;
  border-bottom: 0.1rem solid #fff;
}
.widget_menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.widget_menu li {
  padding: 0;
  margin: 0;
  border-bottom: 0.1rem dotted rgb(255, 255, 255);
}
.widget_menu li a {
  display: block;
  padding: 0.5em 1em;
  transition: background-color ease-in-out 0.3s;
  color: #fff;
}
.widget_menu li a:hover {
  background-color: rgba(50, 50, 50, 0.2);
  color: #fff;
}
.widget_menu li:last-child {
  border-bottom: none;
}

/**
 * Wordpress Sidebar Menu Widget
 *
 */
.widget_nav_menu ul {
  padding: 0;
  margin: 0;
}
.widget_nav_menu li {
  display: block;
  margin: 0 0 0.1rem 0;
}
.widget_nav_menu li a {
  padding: 1rem 2rem;
  background: white;
  display: block;
  color: rgb(210, 70, 145);
}

/**
 * Single
 *
 */
.site-footer {
  font-size: 1.2rem;
  margin: 0;
}

.footer-menu {
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 0.3rem double rgb(0, 0, 0);
}
.footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 5%;
}
.footer-menu li {
  margin: 1em 0;
  padding: 0 1.333em;
  text-align: center;
}

.imprint {
  text-align: center;
  padding: 0 5%;
}

@media screen and (min-width: 550px) {
  .site-footer {
    padding: 2em;
  }
  .footer-menu {
    margin-bottom: 2rem;
    font-size: 1.2rem;
  }
  .footer-menu ul {
    justify-content: flex-end;
    padding: 0;
  }
  .footer-menu li {
    margin: 0;
  }
  .footer-menu li:last-child {
    padding-right: 0;
  }
  .footer-menu a {
    text-transform: uppercase;
  }
  .imprint {
    text-align: left;
    padding: 0;
  }
}
@media screen and (min-width: 960px) {
  .site-footer {
    padding: 0;
  }
}