/*
Theme Name: GeneratePress Child Theme
URI: https://my-blog-shop.de
Description: Ein GeneratePress Child Theme
Author: myblogshop
Author URI: https://my-blog-shop.de
Template: generatepress
Version: 1.0
*/

/*--------------------------------------------------------------
    Variablen
--------------------------------------------------------------*/

:root {
  --main-text-color: #222222;
  --font-family-bodytext: "Libre Caslon Text";
  --font-family-notbodytext: Arial, Helvetica, sans-serif;
  --base-font-size: 1.1rem;
  --body-text-font-size: 1.3rem;
  --small-font-size: 0.8rem;
  --smallest-font-size: 0.8rem;
  --large-font-size: 1.6rem;
  --mid-font-size: 0.9rem;
  --h1-font-size: 1.3rem;
  --h2-font-size: 1.3rem;
  --h3-font-size: 1.3rem;
  --bold-font: 700;
  --standard-line-height: 1.6em;
  --max-width-boxed-content: 900px;
  --max-width-centered-large-box: 800px;
  --max-width-centered-box: 625px;
  --border-radius5: 5px;
  --border-radius10: 10px;
  --checkmark-symbol: "\2714";
  --star-symbol: "\2605";
  --star5-symbol: "\2605\2605\2605\2605\2605";
  --right-angle-symbol: "\203A";
  --frowning-face-symbol: "\2639";
  --error-color: #ff0000;
  --success-color: #6dc22e;
  --grey-lines: #e6e6e6;
  --star-color: #ffc000;
  --transition-all: all 500ms ease;
  --button-color: #575757;
  --link-color: #c02026;
  --button-hover-color: #00a5e8;
  --woo-grey-background: #bcbcbc;
  --fullwidth-banner-headline: clamp(1.6rem, 1.3rem + 1vw, 2.5rem);
  --fullwidth-banner-background: #e6e6e6;
  --just-white: #ffffff;
  --site-info-background: #727272;
  --grey-font: #727272;
  --light-grey-background: rgb(0 0 0 / 4%);
}

/*--------------------------------------------------------------
    Allgemein
--------------------------------------------------------------*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-bodytext);
  font-size: var(--base-font-size);
  overflow-x: hidden;
  color: var(--main-text-color);
  background-color: var(--just-white);
  line-height: var(--standard-line-height);
}

.boxed {
  max-width: var(--max-width-boxed-content);
  margin: auto;
  margin-top: 2.5em;
  padding: 0 1em;
}

.fullwidth-banner {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 2em;
  text-align: center;
  padding: 1em 0.5em;
}

.boxed-page {
  max-width: var(--max-width-boxed-content);
  margin: auto;
}

.grecaptcha-badge {
  opacity: 0;
}

.youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 1.6em;
}

.page-hero {
  background-color: hsl(0deg 0% 32% / 60%);
  background-blend-mode: multiply;
  position: relative;
  max-height: 600px;
}

.page-hero-bw {
  background-color: hsl(0deg 0% 32% / 80%);
  filter: grayscale();
}

.single .grid-container {
  max-width: var(--max-width-boxed-content);
}

.page-hero-start {
  background-color: transparent;
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fullwidth-banner-bg {
  background-color: var(--fullwidth-banner-background);
}

.icons {
  max-width: 1600px;
  margin: auto;
  overflow: auto;
  margin-top: 3em;
}

.icons ul {
  list-style-type: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.icons img {
  max-width: 100px;
  margin: 1em;
}

.main-navigation .main-nav ul li a {
  font-family: var(--font-family-notbodytext);
}

.centered-text-small {
  max-width: var(--max-width-centered-box);
  text-align: center;
  margin: auto;
  margin-top: 2em;
  margin-bottom: 2em;
}

.is-right-sidebar .widget-title {
  font-weight: bold;
  font-size: var(--h2-font-size);
  line-height: 1.2em;
}

.centered-text-small .aligncenter {
  margin-bottom: 2em;
}

.main-navigation {
  background-color: var(--just-white);
  border-bottom: 1px solid var(--grey-lines);
}

.centered-text-small p {
  font-style: italic;
  line-height: 2.5em;
}

.centered-text-small h2 {
  text-transform: uppercase;
  line-height: 1.25em;
  letter-spacing: 5px;
}

.section-title {
  text-align: center;
  font-weight: var(--bold-font);
  text-transform: uppercase;
  margin: 3em 0 2em 0;
  font-size: 1.3rem;
  display: flex;
  flex-direction: row;
}

.section-title:before,
.section-title:after {
  content: "";
  flex: 1 1;
  border-bottom: 1px solid var(--grey-lines);
  margin: auto;
}

.section-title:before {
  margin-right: 2em;
}

.section-title:after {
  margin-left: 2em;
}

.section-title-content:after {
  margin-left: 0.5em;
}

.section-title-content {
  position: relative;
}

.footer-widgets {
  background-color: var(--fullwidth-banner-background);
}

.site-info {
  background-color: var(--site-info-background);
}

.cart-contents > span.number-of-items {
  background-color: var(--error-color);
  color: var(--just-white);
}

.navigation-branding img,
.site-logo.mobile-header-logo img {
  max-height: 60px;
}

.icon-home::before {
  content: url("img/home-icon.svg");
  position: absolute;
  top: -59px;
  left: -5px;
  width: 15px;
  height: 15px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid div {
  margin: 1em;
}

.name {
  font-weight: var(--bold-font);
}

.partner {
  margin-top: 2em;
}

.partner .grid {
  font-size: var(--small-font-size);
  line-height: 1.5em;
  margin-bottom: 2em;
}

.partner h3 {
  text-align: center;
  border-top: 1px solid var(--grey-lines);
  border-bottom: 1px solid var(--grey-lines);
  padding: 1em 0;
}

.partner .button {
  letter-spacing: normal;
  text-transform: none;
  margin: 0.2em;
  border: 1px solid var(--button-color);
  color: var(--main-text-color);
  background-color: var(--just-white);
  font-size: 0.8rem;
  padding: 0.5em 1em;
}

.partner p:first-of-type {
  text-align: center;
  max-width: 600px;
  margin: auto;
  margin-bottom: 2em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.partner p:first-of-type > * {
  flex: 1;
}

.top-bar {
  font-size: var(--small-font-size);
  font-family: var(--font-family-notbodytext);
  background-color: var(--fullwidth-banner-background);
  color: var(--main-text-color);
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
}

.top-bar .widget {
  width: 100%;
}

.nav-previous {
  margin-top: 1em;
}

.shipping-header:before {
  content: url("img/dpd-sm.svg");
  filter: grayscale(100%);
  margin-right: 0.5em;
  position: relative;
  vertical-align: inherit;
  top: 2px;
}

.TableShipping {
  font-size: var(--small-font-size);
  font-family: var(--font-family-notbodytext);
}

.main-navigation.toggled .menu-item-has-children .dropdown-menu-toggle {
  float: none;
}

/*--------------------------------------------------------------
    Social Media
--------------------------------------------------------------*/

.sociallinks {
  display: flex;
  justify-content: space-between;
}

.sociallinks li {
  margin: 0 0.5em;
}

.sociallinks li a {
  display: block;
  padding: 0;
  margin: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 20px;
  height: 20px;
  filter: grayscale(1);
}

.sociallinks li a.twitter {
  background: transparent url("img/twitter-rd.svg") 0 0 no-repeat;
}

.sociallinks li a.facebook {
  background: transparent url("img/facebook-rd.svg") 0 0 no-repeat;
}

.sociallinks li a.youtube {
  background: transparent url("img/youtube-rd.svg") 0 0 no-repeat;
}

.sociallinks li a.vimeo {
  background: transparent url("img/vimeo-rd.svg") 0 0 no-repeat;
}

.sociallinks li a.xing {
  background: transparent url("img/xing-rd.svg") 0 0 no-repeat;
}

.sociallinks li a.rss {
  background: transparent url("img/feed-rd.svg") 0 0 no-repeat;
}

.img-grid {
  margin-bottom: 1.5em;
  background: rgb(230 230 230 / 39%);
  padding: 5%;
}

.img-grid-inside {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}

.column {
  flex: 50%;
  max-width: 50%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/*--------------------------------------------------------------
    Typographie
--------------------------------------------------------------*/

.inside-page-hero {
  padding: 0 0.5em;
}

.inside-page-hero h1,
.inside-page-hero p {
  color: var(--just-white);
}

.inside-page-hero h1 {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: normal;
}

.inside-page-hero p {
  font-size: 2.5rem;
  font-style: italic;
  line-height: 1.2em;
}

.page-hero-start .inside-page-hero h1 {
  letter-spacing: 0.1em;
}

h1,
.h1 {
  font-size: var(--h1-font-size);
  color: var(--main-text-color);
  font-weight: var(--bold-font);
}

h2,
.h2 {
  font-size: var(--h2-font-size);
  color: var(--main-text-color);
  font-weight: var(--bold-font);
}

h3,
.h3 {
  font-size: var(--h3-font-size);
  color: var(--main-text-color);
  font-weight: var(--bold-font);
}

/*--------------------------------------------------------------
    Links
--------------------------------------------------------------*/

a {
  transition: var(--transition-all);
  color: var(--link-color);
}

a:hover {
  color: var(--link-color);
  text-decoration: underline;
}

.main-navigation .main-nav ul li:not([class*="current-menu-"]):hover > a {
  color: var(--link-color);
  text-decoration: none;
}

.main-navigation .main-nav ul ul li a {
  color: var(--main-text-color);
}

.main-navigation .main-nav ul ul li:not([class*="current-menu-"]):hover > a {
  color: var(--link-color);
}

a.button,
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  color: var(--just-white);
  background-color: #575757;
  text-decoration: none;
  font-style: normal;
  font-family: var(--font-family-notbodytext);
  line-height: 1.4em;
}

a.button:hover,
button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  opacity: 0.9;
  background-color: var(--button-color);
  color: #ffffff;
  text-decoration: none;
}

a.button {
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-info a,
.site-info a:hover {
  color: var(--just-white);
  text-decoration: none;
  letter-spacing: 0.1em;
}

.footer-widgets .widget {
  font-family: var(--font-family-notbodytext);
  font-size: 0.8rem;
}

.footer-widgets .widget-title {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: var(--bold-font);
  color: var(--button-color);
  margin-bottom: 1em;
}

.privacy-hint {
  font-size: 0.8rem;
}

.inside-footer-widgets .widget ul li {
  margin-bottom: 0;
}

.privacy-hint a,
.privacy-hint a:hover {
  color: var(--button-color);
  text-decoration: none;
  font-family: var(--font-family-notbodytext);
}

.inside-site-info {
  font-size: 0.8rem;
}

.entry-title a {
  color: var(--link-color);
}

.entry-title a:hover {
  text-decoration: none;
  opacity: 0.9;
}

.paging-navigation .nav-links a,
.post-navigation a {
  border: 1px solid var(--link-color);
  padding: 0.5em 0.8em;
  color: var(--link-color);
}

.paging-navigation .nav-links a:hover,
.post-navigation a:hover {
  text-decoration: none;
  background-color: var(--link-color);
  color: var(--just-white);
}

.next a {
  float: right;
}

.prev a {
  float: left;
}

a[href^="tel:"],
a[href^="tel:"]:hover,
.header-content a,
.header-content a:hover {
  text-decoration: none;
}

.inside-top-bar a,
.inside-top-bar a:hover {
  color: var(--main-text-color);
  text-decoration: none;
}

.my-account a {
  border: 1px solid var(--main-text-color);
  padding: 0.3em 0.7em;
  background-color: var(--just-white);
}

a[href^="tel:"]:before {
  content: "\260E";
  margin-right: 0.5em;
}

.main-navigation .main-nav ul li[class*="current-menu-"] > a {
  color: var(--main-text-color);
}

.main-navigation .main-nav ul li[class*="current-menu-"] > a:hover {
  text-decoration: none;
  color: var(--link-color);
}

.main-navigation .main-nav ul ul li[class*="current-menu-"] > a {
  color: var(--link-color);
}

/*--------------------------------------------------------------
    Events List / Termine
--------------------------------------------------------------*/

.termine {
  margin-top: 2em;
  margin-bottom: 2em;
}

.termine p {
  margin: 0;
}

.vsel-content h3.vsel-meta-title {
  font-size: var(--small-font-size);
  line-height: 1.5em;
}

.vsel-meta > div {
  margin: 0;
}

#vsel .vsel-content {
  border-bottom: 1px dashed var(--grey-lines);
  font-size: var(--small-font-size);
}

/*--------------------------------------------------------------
    Woocommerce
--------------------------------------------------------------*/

.dashboard-links {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: var(--h1-font-size);
  margin: 0;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  font-family: var(--font-family-notbodytext);
}

.dashboard-links a {
  display: block;
  border-radius: var(--border-radius);
  padding: 0.5em 1em;
  background-color: var(--button-color);
  text-align: center;
  margin-right: 1em;
  text-decoration: none;
  margin-bottom: 0.5em;
  color: var(--just-white);
}

.dashboard-links a:hover {
  opacity: 0.9;
}

.dashboard-links li {
  width: 100%;
}

.woocommerce .woocommerce-breadcrumb {
  font-size: var(--small-font-size);
  font-family: var(--font-family-notbodytext);
}

.woocommerce div.product .woocommerce-tabs .panel {
  border: 1px solid var(--grey-lines);
  padding: 1em;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin-bottom: -1px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-top: 2px solid var(--link-color);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child {
  margin-left: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--link-color);
}

.woocommerce div.product .product_title {
  font-weight: var(--bold-font);
  margin-bottom: 1em;
  line-height: 1.5em;
}

.woocommerce div.product p.price {
  color: var(--main-text-color);
  font-size: var(--h1-font-size);
}

.woocommerce div.product p.wc-gzd-additional-info {
  font-size: var(--small-font-size);
  color: var(--grey-font);
  margin-bottom: 1em;
  font-weight: 400;
}

.product_meta {
  padding-top: 0.5em;
}

.woocommerce div.product.do-quantity-buttons form.cart {
  margin: 2em 0;
}

.woocommerce div.product .stock {
  color: #5bb02c;
  margin-bottom: 0.5em;
}

.price,
.stock {
  margin-bottom: 0;
}

.product p.wc-gzd-additional-info {
  margin-bottom: 0;
}

.product_meta {
  font-size: var(--small-font-size);
}

.woocommerce .woocommerce-result-count {
  display: none;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background-color: var(--link-color);
  transition: var(--transition-all);
  letter-spacing: normal;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: var(--link-color);
}

.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
  padding: 12px 15px;
}

.wc-gzd-order-submit button.button.alt {
  width: 100%;
  margin-bottom: 1em;
  padding: 1em;
}

.wc-gzd-checkbox-placeholder-legal {
  background-color: var(--light-grey-background);
  margin-bottom: 15px;
  padding: 1em;
  position: relative;
}

.woocommerce-billing-fields h3,
#order_payment_heading,
#order_review_heading {
  background-color: var(--woo-grey-background);
  padding: 1em;
  font-weight: var(--bold-font);
  font-family: var(--font-family-notbodytext);
}

#order_review_heading {
  width: 100%;
  float: left;
}

#order_review .wc-gzd-checkbox-placeholder p.form-row {
  text-align: center;
  padding: 0;
}

#order_review .wc-gzd-checkbox-placeholder p.form-row label {
  display: inherit;
  line-height: 1.4em;
}

.payment_box p,
.woocommerce-gzd-legal-checkbox-text,
.woocommerce form .form-row label .woocommerce-gzd-legal-checkbox-text {
  font-size: var(--small-font-size);
  line-height: var(--standard-line-height);
}

.woocommerce form .form-row label.woocommerce-form__label-for-checkbox {
  line-height: var(--standard-line-height);
  font-size: var(--smallest-font-size);
}

#ship-to-different-address {
  font-size: var(--smallest-font-size);
}

#ship-to-different-address span {
  padding-left: 10px;
}

.woocommerce ul.products li.product {
  box-shadow: 0 3px 6px -4px rgb(160 186 221 / 16%), 0 3px 6px rgb(52 69 141 / 23%);
  background-color: #ffffff;
  padding: 2em 0.5em;
}

.wc-gzd-checkbox-placeholder abbr {
  margin-left: -0.5em;
}

.woocommerce form .form-row textarea {
  height: 8em;
}

ul.products li.product,
.button,
button {
  transition: var(--transition-all);
}

.woocommerce ul.products li.product a.button {
  color: var(--just-white);
}

.woocommerce ul.products li.product:hover {
  box-shadow: 0 14px 28px rgb(49 102 175 / 25%), 0 10px 10px rgb(113 119 157 / 10%);
  filter: brightness(1.1);
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link h2 {
  color: var(--link-color);
  font-size: var(--base-font-size);
}

.products .wc-gzd-additional-info {
  margin: 0;
}

.product p.wc-gzd-additional-info,
.woocommerce ul.products li.product .price.wc-gzd-additional-info {
  font-size: var(--small-font-size);
  color: var(--woo-grey-background);
  font-weight: 100;
  line-height: 1.7em;
}

.zoll {
  text-align: center;
  font-size: 0.6em;
  color: var(--grey-font);
  line-height: 1.8em;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-top: 8px;
}

.select2-container--default .select2-selection--single {
  border-radius: 0px;
}

.select2-container .select2-selection--single {
  height: 45px;
}

.woocommerce-checkout-review-order-table {
  font-size: var(--smallest-font-size);
}

.wc-tab thead {
  text-align: left;
}

.wc-tab tr td:first-of-type {
  font-weight: var(--bold-font);
}

.wc-tab table {
  font-size: var(--smallest-font-size);
  margin: 0;
  font-family: var(--font-family-notbodytext);
}

.wc-tab table,
.wc-tab th,
.wc-tab td {
  border-width: 0;
}

.wc-tab th {
  padding: 5px;
}

.wc-tab td {
  padding: 5px;
  vertical-align: baseline;
  line-height: var(--standard-line-height);
}

#payment .payment_methods li.wc_payment_method > input[type="radio"]:first-child:checked + label:before {
  color: var(--success-color);
}

#pay_with_amazon_product {
  max-width: 333px;
  margin: 0;
}

.woocommerce div.product form.cart {
  margin-bottom: 1em;
}

.gpay-card-info-container-fill {
  margin-bottom: 1em;
}

/*--------------------------------------------------------------
    Contact Form 7
--------------------------------------------------------------*/

span.wpcf7-list-item {
  margin: 0;
}

div.wpcf7-response-output {
  margin: 20px 0;
  padding: 10px;
  text-align: center;
  font-weight: var(--bold-font);
}

#acceptance-wrapper {
  margin: 10px 0 10px 0;
}

div.wpcf7 input[type="text"],
div.wpcf7 input[type="email"],
div.wpcf7 input[type="submit"],
div.wpcf7 textarea {
  margin-bottom: 20px;
}

.wpcf7 .wpcf7-not-valid-tip {
  position: relative;
  padding: 5px 8px;
  line-height: 1.2em;
  border-radius: var(--border-radius);
  background-color: var(--error-color);
  color: #ffffff;
  max-width: 400px;
  font-size: var(--small-font-size);
}

.wpcf7 .wpcf7-not-valid-tip:after {
  bottom: 100%;
  left: 30px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: var(--error-color);
  border-width: 10px;
  margin-left: -10px;
}

.wpcf7 p {
  font-family: var(--font-family-notbodytext);
  font-size: var(--small-font-size);
  line-height: 1.5em;
}

.wpcf7-radio {
  margin-bottom: 1em;
  display: inline-block;
  padding: 0.5em;
}

.wpcf7-radio .wpcf7-list-item {
  margin-left: 5px;
}

.wpcf7-not-valid {
  border: 1px solid var(--error-color);
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  border: 2px solid var(--error-color);
  background: rgba(232, 5, 5, 0.08);
  color: var(--error-color);
}

div.wpcf7-mail-sent-ok {
  border: 2px solid var(--success-color);
  color: var(--success-color);
  background: rgba(57, 143, 20, 0.1);
}

.site-content div.wpcf7 {
  overflow: inherit;
}

input[type="text"].wpcf7-not-valid,
input[type="email"].wpcf7-not-valid,
textarea.wpcf7-not-valid {
  border-color: var(--error-color);
  border-left: 5px solid var(--error-color);
}

.wpcf7-form input[type="email"],
.wpcf7-form input[type="text"],
.wpcf7-form textarea {
  width: 100%;
  max-width: 400px;
}

input[type="text"].wpcf7-quiz {
  max-width: 3em;
  text-align: center;
  font-weight: var(--bold-font);
}

.quiz-label {
  display: block;
}

/*--------------------------------------------------------------
    Media Queries
--------------------------------------------------------------*/

@media (max-width: 300px) {
  .woocommerce-checkout #payment ul.payment_methods li img {
    display: none;
  }
}

@media (max-width: 450px) {
  .wpsp-read-more {
    text-align: center;
  }
  .read-more {
    float: none;
  }
  .section-title {
    font-size: 1rem;
  }
  a.button {
    font-size: 1rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  #payment .payment_methods > .wc_payment_method > label {
    font-size: var(--small-font-size);
  }
  .woocommerce-checkout #payment ul.payment_methods li img {
    max-width: 80px;
  }
  .woocommerce-billing-fields h3,
  #order_payment_heading,
  #order_review_heading {
    font-size: var(--small-font-size);
  }
  .woocommerce table.shop_table.woocommerce-checkout-review-order-table {
    font-size: 10px;
  }
  .woocommerce table.shop_table.woocommerce-checkout-review-order-table th,
  .woocommerce table.shop_table.woocommerce-checkout-review-order-table td {
    padding: 5px;
  }
}

@media (max-width: 850px) {
  .inside-page-hero h1 {
    font-size: 1.8rem;
  }
  .inside-page-hero p {
    font-size: 1.5rem;
  }
  .icon-home::before {
    top: -50px;
    left: 7px;
  }
  .main-navigation .main-nav ul li a {
    line-height: 50px;
  }
  .main-navigation.toggled .main-nav {
    margin-top: 2em;
  }
}

@media (min-width: 1280px) {
  .dashboard-links li {
    width: 33.333%;
  }
}

@media screen and (min-width: 768px) {
  .dashboard-links li {
    width: 45%;
  }
}

@media (max-width: 850px) {
  .top-bar .flex {
    display: block;
    text-align: center;
    font-size: var(--small-font-size);
  }
  .centered-text-small p {
    line-height: 2em;
  }
}

@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
    Fonts
--------------------------------------------------------------*/

@font-face {
  font-family: "Libre Caslon Text";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("fonts/libre-caslon-text-v3-latin-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Libre Caslon Text";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("fonts/libre-caslon-text-v3-latin-700.woff2") format("woff2");
}

@font-face {
  font-family: "Libre Caslon Text";
  font-style: italic;
  font-weight: 400;
  src: local(""), url("fonts/libre-caslon-text-v3-latin-italic.woff2") format("woff2");
}
