.card, .hero--home .form__input--btn input {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

@font-face {
  font-family: "Montserrat";
  src: local("Montserrat"), url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-display: fallback;
}
@font-face {
  font-family: "Sanchez";
  src: local("Sanchez"), url("../fonts/Sanchez-Regular.ttf") format("truetype");
  font-display: fallback;
}
.card, .hero--home .form__input--btn input {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

@font-face {
  font-family: "Montserrat";
  src: local("Montserrat"), url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-display: fallback;
}
@font-face {
  font-family: "Sanchez";
  src: local("Sanchez"), url("../fonts/Sanchez-Regular.ttf") format("truetype");
  font-display: fallback;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  background-color: #f6f2ee;
  font-family: "Sanchez", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #3d3d3d;
}

p {
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

a {
  color: #3d3d3d;
  text-decoration: none;
  transition: all 0.2s;
}
a.text-alt {
  font-family: "Montserrat", sans-serif;
}
a:focus-visible {
  outline: 2px dotted #3d3d3d;
  border-radius: 6px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #3d3d3d;
}

h1 {
  margin-bottom: 2.4rem;
  font-size: 2.2rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

h5 {
  font-size: 0.9rem;
}

ul,
ol {
  margin-top: 0.8rem;
  margin-bottom: 1rem;
  padding-left: 16px;
}
ul li:not(:last-of-type),
ol li:not(:last-of-type) {
  margin-bottom: 0.8rem;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

blockquote {
  margin: 1.5rem 0;
  padding: 0.8rem 1rem 0.1rem 1rem;
  background-color: #ddcdbf;
  border-left: 4px solid #cc2441;
}

.alert {
  margin-bottom: 2rem;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  border: 1px solid transparent;
}
.alert--error {
  padding-bottom: 1px;
  background-color: rgba(204, 36, 65, 0.3);
  border-color: rgba(204, 36, 65, 0.6);
}
.alert--sucess {
  background-color: rgba(1, 130, 116, 0.3);
  border-color: rgba(1, 130, 116, 0.6);
}

.sr-only {
  visibility: hidden;
  width: 0;
  height: 0;
  font-size: 0;
}

.is-closed {
  display: none;
}

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

.red {
  color: #cc2441;
}

.green {
  color: #018274;
}

.blue {
  color: #2653a2;
}

.yellow {
  color: #e29b1d;
}

.cherry {
  color: #790646;
}

.grey {
  color: #cccccc;
}

.bkg-red {
  background-color: #cc2441;
}

.bkg-green {
  background-color: #018274;
}

.bkg-blue {
  background-color: #2653a2;
}

.bkg-yello {
  background-color: #e29b1d;
}

.bkg-cherry {
  background-color: #790646;
}

.card, .hero--home .form__input--btn input {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

.grid {
  width: 100%;
  display: grid;
}
.grid--main-layout {
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "header" "main";
  height: 100vh;
}
.grid__header {
  grid-area: header;
}
.grid__main {
  grid-area: main;
  overflow: auto;
}
.grid--footer-top {
  grid-template-columns: 16.6667% 33.3333% 50%;
  grid-template-rows: auto;
  grid-template-areas: "logo sitemap sitemap" "sep sep sep" "social-links social-links newsletter";
}
.grid--footer-bottom {
  grid-template-columns: 16.6667% 33.3333% 50%;
  grid-template-rows: auto;
  grid-template-areas: "legal-address legal-tax-nr legal-privacy";
}
.grid--tab-layout {
  grid-template-columns: 1fr;
  grid-template-rows: auto 10rem;
  grid-template-areas: ". . . . ." "details details details details details";
}

.content {
  width: 730px;
  margin: 0 auto;
}
.content--large {
  width: 1110px;
}

.sp-y-20 {
  margin-bottom: 20px;
}

.sp-y-80 {
  margin-bottom: 80px;
}

.sp-xr-20 {
  margin-right: 20px;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--pos-y-top {
  align-items: flex-start;
}
.flex--pos-x-start {
  justify-content: flex-start;
}
.flex--pos-x-center {
  justify-content: center;
}

.row.col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}

.card, .hero--home .form__input--btn input {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

#header {
  z-index: 50;
  padding: 19px 0;
  background-color: #f6f2ee;
  box-shadow: 2px 3px 6px rgba(61, 61, 61, 0.16);
}
#header #logo svg {
  display: block;
}
#header #logo svg path {
  fill: #cc2441;
}
#header #search-field .popup {
  top: 50px;
  left: 0;
  width: 100%;
}
#header #menu-profile {
  position: relative;
}
#header #menu-profile .popup {
  top: 50px;
  left: 0;
  width: 230px;
}

.card, .hero--home .form__input--btn input {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

.hero {
  position: relative;
}
.hero .content:first-of-type {
  height: 380px;
}
.hero .flex {
  height: 100%;
}
.hero h1 {
  margin-bottom: 2rem;
  color: #ffffff;
}
.hero p {
  display: inline-block;
  padding: 6px 12px;
  background-color: #018274;
  color: #ffffff;
}
.hero__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__img--overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(204, 36, 65, 0.7);
  clip-path: polygon(0 0, 50% 0, 35% 100%, 0 100%);
}
.hero--home .content:first-of-type {
  height: calc(100vh - 82px);
}
.hero--home .hero__text {
  width: 100%;
}
.hero--home .form {
  margin: 200px 10% 120px 10%;
  padding: 20px;
  background-color: rgba(246, 246, 246, 0.6);
  border: 2px solid #cccccc;
  border-radius: 10px;
}
.hero--home h1 {
  margin-top: 30px;
}
.hero--home h1 span {
  padding: 1px 10px;
}

.card, .hero--home .form__input--btn input {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

.nav--main ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.nav--main ul li {
  display: inline-block;
  margin: 0 30px 0 0;
}
.nav--main ul li:last-of-type {
  margin-right: 0;
}
.nav--main ul li a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}
.nav--main ul li:hover a, .nav--main ul li.active a, .nav--main ul li.current-menu-item a, .nav--main ul li.current_page_parent a {
  border-bottom-color: #3d3d3d;
}
.nav--secondary {
  position: relative;
}
.nav--secondary div button,
.nav--secondary div a {
  margin-right: 20px;
}
.nav--secondary div:last-of-type button, .nav--secondary div:last-of-type a {
  margin-right: 0;
}
.nav--profile ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.nav--profile li {
  margin-bottom: 10px;
}
.nav--profile li:last-of-type {
  margin-bottom: 0;
}
.nav--profile li::after {
  content: "";
  display: table;
  clear: both;
}
.nav--profile li:hover a {
  color: #cc2441;
}
.nav--profile li:hover svg path {
  stroke: #cc2441;
}
.nav--profile a {
  display: flex;
  align-items: center;
}
.nav--profile svg {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.nav--profile svg path {
  stroke: #3d3d3d;
}
.nav--profile p {
  display: inline-block;
  margin-bottom: 0;
  padding-left: 10px;
}
.nav--breadcrumbs {
  padding-top: 8px;
  font: 400 1rem "Montserrat", sans-serif;
}
.nav--breadcrumbs a {
  font-weight: 700;
}
.nav--breadcrumbs a:hover {
  opacity: 0.8;
}

.card, .hero--home .form__input--btn input {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

.article__header .content {
  position: relative;
  border-bottom: 8px solid #cc2441;
}
.article__header .wrapper-img {
  width: 100%;
  height: 360px;
}
.article__header .wrapper-img img {
  height: 100%;
  object-fit: cover;
}
.article__header .tag {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.article__header--green .content {
  border-color: #018274;
}
.article__header--blue .content {
  border-color: #2653a2;
}
.article__breadcrumbs .content {
  padding: 8px 0 8px 0;
}
.article__breadcrumbs .nav--breadcrumbs {
  padding: 0;
}
.article__title {
  margin-bottom: 40px;
}
.article__title h1 {
  margin-bottom: 20px;
}
.article__title .meta {
  font: 400 1rem "Montserrat", sans-serif;
}
.article__title .meta svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.article__title .meta svg path {
  stroke: #cccccc;
}
.article__title .meta__item {
  margin-right: 20px;
}

.woocommerce div.product div.images,
.woocommerce-page div.product div.images {
  width: 100%;
  height: 100%;
  float: none;
  margin-bottom: 0;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
.woocommerce div.product div.images .woocommerce-product-gallery__image,
.woocommerce div.product div.images .woocommerce-product-gallery__image a img,
.woocommerce-page div.product div.images .woocommerce-product-gallery__wrapper,
.woocommerce-page div.product div.images .woocommerce-product-gallery__image,
.woocommerce-page div.product div.images .woocommerce-product-gallery__image a img {
  height: 100%;
}

.card, .hero--home .form__input--btn input {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

.footer {
  margin-top: 120px;
  border-top: 20px solid #ddcdbf;
}
.footer__top {
  background-color: #f6f2ee;
  color: #3d3d3d;
}
.footer__top .content {
  padding: 50px 0;
}
.footer__logo {
  grid-area: logo;
  display: block;
}
.footer__logo svg {
  width: 120px;
  height: 120px;
}
.footer__sitemap {
  grid-area: sitemap;
  justify-self: center;
  width: 100%;
  padding-top: 20px;
  text-align: center;
}
.footer__sitemap ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer__sitemap li {
  display: inline-block;
  margin: 0 20px;
  text-align: left;
  vertical-align: top;
  font: 700 1rem "Montserrat", sans-serif;
}
.footer__sitemap li ul > li {
  display: block;
  margin: 0.5rem 0 0 0;
  font-weight: 400;
}
.footer__sitemap li a:hover {
  opacity: 0.8;
}
.footer__sep {
  grid-area: sep;
  display: block;
  width: 100%;
  height: 1px;
  margin: 20px 0;
  padding: 0;
  border: none;
  border-bottom: 1px solid #3d3d3d;
}
.footer__social-links {
  grid-area: social-links;
  margin-right: auto;
}
.footer__social-links svg {
  width: 34px;
  height: 34px;
  margin-right: 10px;
}
.footer__social-links svg path {
  fill: #3d3d3d;
}
.footer__social-links > a:hover {
  color: #cc2441;
}
.footer__social-links > a:hover svg path {
  fill: #cc2441;
}
.footer__newsletter {
  grid-area: newsletter;
}
.footer__bottom {
  padding: 20px 0 12px 0;
  background-color: #5c5c5c;
  color: #ffffff;
}
.footer__bottom p {
  font-size: 0.8rem;
}
.footer__bottom a {
  color: #ffffff;
}
.footer__legal-address {
  grid-area: legal-address;
}
.footer__legal-tax-nr {
  grid-area: legal-tax-nr;
}
.footer__legal-privacy {
  grid-area: legal-privacy;
  justify-self: right;
  align-self: center;
}
.footer__legal-privacy a:first-of-type {
  margin-right: 20px;
}

.btn,
.button-primary,
button,
input[type=submit],
input[type=button],
.wp-block-button > a {
  position: relative;
  display: inline-block;
  width: max-content;
  height: 36px;
  padding: 6px 9px;
  background-color: #cc2441;
  border: 2px solid #3d3d3d;
  border-radius: 3px;
  outline: none;
  box-shadow: 1px 1px 0 #3d3d3d;
  font: 400 1rem "Sanchez", serif;
  line-height: 20px;
  color: #ffffff;
  cursor: pointer;
}
.btn:hover,
.button-primary:hover,
button:hover,
input[type=submit]:hover,
input[type=button]:hover,
.wp-block-button > a:hover {
  background-color: #de455f;
}
.btn:active, .btn.is-active,
.button-primary:active,
.button-primary.is-active,
button:active,
button.is-active,
input[type=submit]:active,
input[type=submit].is-active,
input[type=button]:active,
input[type=button].is-active,
.wp-block-button > a:active,
.wp-block-button > a.is-active {
  box-shadow: none;
}
.btn:focus,
.button-primary:focus,
button:focus,
input[type=submit]:focus,
input[type=button]:focus,
.wp-block-button > a:focus {
  outline: none;
}
.btn:focus-visible,
.button-primary:focus-visible,
button:focus-visible,
input[type=submit]:focus-visible,
input[type=button]:focus-visible,
.wp-block-button > a:focus-visible {
  box-shadow: 1px 1px 0 #3d3d3d;
}
.btn:focus-visible::after,
.button-primary:focus-visible::after,
button:focus-visible::after,
input[type=submit]:focus-visible::after,
input[type=button]:focus-visible::after,
.wp-block-button > a:focus-visible::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 9px);
  height: calc(100% + 9px);
  outline: 2px dotted #3d3d3d;
  border-radius: 6px;
}
.btn.is-opened,
.button-primary.is-opened,
button.is-opened,
input[type=submit].is-opened,
input[type=button].is-opened,
.wp-block-button > a.is-opened {
  background-color: #5c5c5c;
}
.btn.btn--icon-text,
.button-primary.btn--icon-text,
button.btn--icon-text,
input[type=submit].btn--icon-text,
input[type=button].btn--icon-text,
.wp-block-button > a.btn--icon-text {
  display: flex;
  align-items: center;
  padding-left: 7px;
}
.btn.btn--icon-text svg,
.button-primary.btn--icon-text svg,
button.btn--icon-text svg,
input[type=submit].btn--icon-text svg,
input[type=button].btn--icon-text svg,
.wp-block-button > a.btn--icon-text svg {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.btn.btn--icon-text svg path,
.button-primary.btn--icon-text svg path,
button.btn--icon-text svg path,
input[type=submit].btn--icon-text svg path,
input[type=button].btn--icon-text svg path,
.wp-block-button > a.btn--icon-text svg path {
  stroke: #ffffff;
  transition: all 0.2s;
}
.btn.btn--icon-text span,
.button-primary.btn--icon-text span,
button.btn--icon-text span,
input[type=submit].btn--icon-text span,
input[type=button].btn--icon-text span,
.wp-block-button > a.btn--icon-text span {
  display: inline-block;
  margin: 0;
  padding-left: 4px;
  line-height: 20px;
}
.btn.btn--big.btn--icon-text,
.button-primary.btn--big.btn--icon-text,
button.btn--big.btn--icon-text,
input[type=submit].btn--big.btn--icon-text,
input[type=button].btn--big.btn--icon-text,
.wp-block-button > a.btn--big.btn--icon-text {
  padding: 13px 18px 13px 13px;
}
.btn.btn--big.btn--icon-text svg,
.button-primary.btn--big.btn--icon-text svg,
button.btn--big.btn--icon-text svg,
input[type=submit].btn--big.btn--icon-text svg,
input[type=button].btn--big.btn--icon-text svg,
.wp-block-button > a.btn--big.btn--icon-text svg {
  width: 24px;
  height: 24px;
}
.btn.btn--big.btn--icon-text span,
.button-primary.btn--big.btn--icon-text span,
button.btn--big.btn--icon-text span,
input[type=submit].btn--big.btn--icon-text span,
input[type=button].btn--big.btn--icon-text span,
.wp-block-button > a.btn--big.btn--icon-text span {
  padding-left: 10px;
}
.btn.btn--icon-only,
.button-primary.btn--icon-only,
button.btn--icon-only,
input[type=submit].btn--icon-only,
input[type=button].btn--icon-only,
.wp-block-button > a.btn--icon-only {
  padding: 6px;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  box-shadow: none;
}
.btn.btn--icon-only:hover,
.button-primary.btn--icon-only:hover,
button.btn--icon-only:hover,
input[type=submit].btn--icon-only:hover,
input[type=button].btn--icon-only:hover,
.wp-block-button > a.btn--icon-only:hover {
  background-color: #efe7e0;
}
.btn.btn--icon-only:focus,
.button-primary.btn--icon-only:focus,
button.btn--icon-only:focus,
input[type=submit].btn--icon-only:focus,
input[type=button].btn--icon-only:focus,
.wp-block-button > a.btn--icon-only:focus {
  outline: 2px dotted #3d3d3d;
}
.btn.btn--icon-only:focus::after,
.button-primary.btn--icon-only:focus::after,
button.btn--icon-only:focus::after,
input[type=submit].btn--icon-only:focus::after,
input[type=button].btn--icon-only:focus::after,
.wp-block-button > a.btn--icon-only:focus::after {
  display: none;
}
.btn.btn--icon-only svg,
.button-primary.btn--icon-only svg,
button.btn--icon-only svg,
input[type=submit].btn--icon-only svg,
input[type=button].btn--icon-only svg,
.wp-block-button > a.btn--icon-only svg {
  width: 24px;
  height: 24px;
}
.btn.btn--icon-only svg path,
.button-primary.btn--icon-only svg path,
button.btn--icon-only svg path,
input[type=submit].btn--icon-only svg path,
input[type=button].btn--icon-only svg path,
.wp-block-button > a.btn--icon-only svg path {
  stroke: #3d3d3d;
}
.btn.btn--toggle svg:first-of-type,
.button-primary.btn--toggle svg:first-of-type,
button.btn--toggle svg:first-of-type,
input[type=submit].btn--toggle svg:first-of-type,
input[type=button].btn--toggle svg:first-of-type,
.wp-block-button > a.btn--toggle svg:first-of-type {
  display: block;
}
.btn.btn--toggle svg:last-of-type,
.button-primary.btn--toggle svg:last-of-type,
button.btn--toggle svg:last-of-type,
input[type=submit].btn--toggle svg:last-of-type,
input[type=button].btn--toggle svg:last-of-type,
.wp-block-button > a.btn--toggle svg:last-of-type {
  display: none;
}
.btn.btn--toggle.is-opened svg:first-of-type,
.button-primary.btn--toggle.is-opened svg:first-of-type,
button.btn--toggle.is-opened svg:first-of-type,
input[type=submit].btn--toggle.is-opened svg:first-of-type,
input[type=button].btn--toggle.is-opened svg:first-of-type,
.wp-block-button > a.btn--toggle.is-opened svg:first-of-type {
  display: none;
}
.btn.btn--toggle.is-opened svg:last-of-type,
.button-primary.btn--toggle.is-opened svg:last-of-type,
button.btn--toggle.is-opened svg:last-of-type,
input[type=submit].btn--toggle.is-opened svg:last-of-type,
input[type=button].btn--toggle.is-opened svg:last-of-type,
.wp-block-button > a.btn--toggle.is-opened svg:last-of-type {
  display: block;
}
.btn.btn--beige, .btn.btn--secondary, .btn.button-secondary, .btn.has-red-background-color,
.button-primary.btn--beige,
.button-primary.btn--secondary,
.button-primary.button-secondary,
.button-primary.has-red-background-color,
button.btn--beige,
button.btn--secondary,
button.button-secondary,
button.has-red-background-color,
input[type=submit].btn--beige,
input[type=submit].btn--secondary,
input[type=submit].button-secondary,
input[type=submit].has-red-background-color,
input[type=button].btn--beige,
input[type=button].btn--secondary,
input[type=button].button-secondary,
input[type=button].has-red-background-color,
.wp-block-button > a.btn--beige,
.wp-block-button > a.btn--secondary,
.wp-block-button > a.button-secondary,
.wp-block-button > a.has-red-background-color {
  background-color: #f6f2ee;
  color: #3d3d3d;
}
.btn.btn--beige:hover, .btn.btn--secondary:hover, .btn.button-secondary:hover, .btn.has-red-background-color:hover,
.button-primary.btn--beige:hover,
.button-primary.btn--secondary:hover,
.button-primary.button-secondary:hover,
.button-primary.has-red-background-color:hover,
button.btn--beige:hover,
button.btn--secondary:hover,
button.button-secondary:hover,
button.has-red-background-color:hover,
input[type=submit].btn--beige:hover,
input[type=submit].btn--secondary:hover,
input[type=submit].button-secondary:hover,
input[type=submit].has-red-background-color:hover,
input[type=button].btn--beige:hover,
input[type=button].btn--secondary:hover,
input[type=button].button-secondary:hover,
input[type=button].has-red-background-color:hover,
.wp-block-button > a.btn--beige:hover,
.wp-block-button > a.btn--secondary:hover,
.wp-block-button > a.button-secondary:hover,
.wp-block-button > a.has-red-background-color:hover {
  background-color: #efe7e0;
}
.btn.btn--beige.is-opened, .btn.btn--secondary.is-opened, .btn.button-secondary.is-opened, .btn.has-red-background-color.is-opened,
.button-primary.btn--beige.is-opened,
.button-primary.btn--secondary.is-opened,
.button-primary.button-secondary.is-opened,
.button-primary.has-red-background-color.is-opened,
button.btn--beige.is-opened,
button.btn--secondary.is-opened,
button.button-secondary.is-opened,
button.has-red-background-color.is-opened,
input[type=submit].btn--beige.is-opened,
input[type=submit].btn--secondary.is-opened,
input[type=submit].button-secondary.is-opened,
input[type=submit].has-red-background-color.is-opened,
input[type=button].btn--beige.is-opened,
input[type=button].btn--secondary.is-opened,
input[type=button].button-secondary.is-opened,
input[type=button].has-red-background-color.is-opened,
.wp-block-button > a.btn--beige.is-opened,
.wp-block-button > a.btn--secondary.is-opened,
.wp-block-button > a.button-secondary.is-opened,
.wp-block-button > a.has-red-background-color.is-opened {
  background-color: #5c5c5c;
  color: #ffffff;
}
.btn.btn--beige.is-opened svg path, .btn.btn--secondary.is-opened svg path, .btn.button-secondary.is-opened svg path, .btn.has-red-background-color.is-opened svg path,
.button-primary.btn--beige.is-opened svg path,
.button-primary.btn--secondary.is-opened svg path,
.button-primary.button-secondary.is-opened svg path,
.button-primary.has-red-background-color.is-opened svg path,
button.btn--beige.is-opened svg path,
button.btn--secondary.is-opened svg path,
button.button-secondary.is-opened svg path,
button.has-red-background-color.is-opened svg path,
input[type=submit].btn--beige.is-opened svg path,
input[type=submit].btn--secondary.is-opened svg path,
input[type=submit].button-secondary.is-opened svg path,
input[type=submit].has-red-background-color.is-opened svg path,
input[type=button].btn--beige.is-opened svg path,
input[type=button].btn--secondary.is-opened svg path,
input[type=button].button-secondary.is-opened svg path,
input[type=button].has-red-background-color.is-opened svg path,
.wp-block-button > a.btn--beige.is-opened svg path,
.wp-block-button > a.btn--secondary.is-opened svg path,
.wp-block-button > a.button-secondary.is-opened svg path,
.wp-block-button > a.has-red-background-color.is-opened svg path {
  stroke: #ffffff;
}
.btn.btn--beige svg path, .btn.btn--secondary svg path, .btn.button-secondary svg path, .btn.has-red-background-color svg path,
.button-primary.btn--beige svg path,
.button-primary.btn--secondary svg path,
.button-primary.button-secondary svg path,
.button-primary.has-red-background-color svg path,
button.btn--beige svg path,
button.btn--secondary svg path,
button.button-secondary svg path,
button.has-red-background-color svg path,
input[type=submit].btn--beige svg path,
input[type=submit].btn--secondary svg path,
input[type=submit].button-secondary svg path,
input[type=submit].has-red-background-color svg path,
input[type=button].btn--beige svg path,
input[type=button].btn--secondary svg path,
input[type=button].button-secondary svg path,
input[type=button].has-red-background-color svg path,
.wp-block-button > a.btn--beige svg path,
.wp-block-button > a.btn--secondary svg path,
.wp-block-button > a.button-secondary svg path,
.wp-block-button > a.has-red-background-color svg path {
  stroke: #3d3d3d;
}

.wp-block-button__link {
  display: block;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  font-size: inherit;
  text-align: inherit;
}

.card, .hero--home .form__input--btn input {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

.popup {
  position: absolute;
  z-index: 90;
  padding: 18px 20px;
  background-color: #f6f2ee;
  border: 2px solid #3d3d3d;
  border-radius: 6px;
  box-shadow: 2px 3px 6px rgba(61, 61, 61, 0.16);
  color: #3d3d3d;
  font: 400 1rem #3d3d3d;
}
.popup.is-closed {
  display: none;
}
.popup.is-opened {
  display: block;
}
.popup::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 8px solid #3d3d3d;
}

label {
  display: block;
  margin-bottom: 0.2rem;
}

.wrapper-input {
  margin-bottom: 1rem;
}

input:not([type=checkbox], [type=submit]),
textarea {
  width: 100%;
  padding: 6px 10px;
  background-color: #ffffff;
  border: 2px solid #3d3d3d;
  outline: none;
  border-radius: 3px;
  font: 400 1rem "Sanchez", serif;
  line-height: 20px;
  color: #3d3d3d;
  transition: all 0.2s;
}
input:not([type=checkbox], [type=submit]):focus,
textarea:focus {
  box-shadow: 1px 1px 0 #3d3d3d;
}
input:not([type=checkbox], [type=submit])[disabled],
textarea[disabled] {
  border-color: #cccccc;
  color: #b5b5b5;
}

.form__input {
  margin-bottom: 1rem;
}
.form__input:last-of-type {
  margin-top: 2rem;
}
.form__input--btn button {
  margin-left: 10px;
}

.card, .hero--home .form__input--btn input {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

.banner {
  margin: 0;
  color: #ffffff;
}
.banner--red {
  background-color: #cc2441;
}
.banner--green {
  background-color: #018274;
}
.banner--blue {
  background-color: #2653a2;
}
.banner--yellow {
  background-color: #e29b1d;
}
.banner--cherry {
  background-color: #790646;
}
.banner h2 {
  color: #ffffff;
}
.banner .banner__image {
  position: relative;
  width: 50%;
  height: 50vw;
}
.banner .banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .banner__image figcaption {
  position: absolute;
  top: 30px;
  left: 30px;
}
.banner .banner__text {
  width: 50%;
  padding: 0 130px;
}
.banner .banner__text .btn {
  margin-top: 2rem;
}
.banner--map {
  padding: 90px 0;
}
.banner--map .col-2 div:first-of-type {
  padding-right: 6%;
}
.banner--map figure {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid #3d3d3d;
  border-radius: 3px;
  box-shadow: 1px 1px 0 #3d3d3d;
  overflow: hidden;
}
.banner--map figure img {
  height: 100%;
  object-fit: cover;
}
.banner--map figure figcaption {
  position: absolute;
  bottom: -2px;
  right: -2px;
}

.card, .hero--home .form__input--btn input {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

.card {
  width: 30%;
  margin: 10px 15px;
  background-color: #ffffff;
  border-radius: 10px;
}
.card__image {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.card__image img {
  height: 100%;
  object-fit: cover;
}
.card .tag {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
}
.card .tag--corner {
  top: -2px;
  right: -2px;
  bottom: auto;
  left: auto;
  padding: 0;
}
.card__content {
  padding: 12px;
}
.card__content h4 {
  margin-top: 0.5rem;
}
.card__content > p {
  height: 8rem;
}

.hero--home .form__input--btn input, .card {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

.slider {
  position: relative;
  margin: 0;
  padding: 90px 0;
}
.slider__title svg {
  stroke: #3d3d3d;
}
.slider__title strong::after {
  content: " o ";
  font-weight: 400;
}
.slider__title strong:last-of-type::after {
  content: "";
}
.slider__container {
  width: 100%;
  margin-bottom: 50px;
}
.slider.beige {
  background-color: #f1eee9;
}
.slider.beige:nth-of-type(odd) {
  background-color: #f6f6f6;
}
.slider .slick-arrow {
  position: absolute;
  top: calc(50% - 50px);
  z-index: 60;
  display: block;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  font-size: 0;
}
.slider .slick-arrow:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.slider .slick-prev {
  left: -60px;
  background: url("../svg/heroicons-outline_chevron-left.svg") center center no-repeat;
}
.slider .slick-next {
  right: -60px;
  background: url("../svg/heroicons-outline_chevron-right.svg") center center no-repeat;
}
.slider .slick-dots {
  position: absolute;
  bottom: -65px;
  left: 0;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  list-style-type: none;
}
.slider .slick-dots li {
  display: inline-block;
  margin-right: 20px;
}
.slider .slick-dots li:last-of-type {
  margin-right: 0;
}
.slider .slick-dots button {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  border-width: 1px;
  border-radius: 50%;
  font-size: 0;
}
.slider .slick-dots .slick-active button {
  background-color: #5c5c5c;
}

.hero--home .form__input--btn input, .card {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

.tag a {
  color: #ffffff;
}
.tag a:hover {
  opacity: 0.8;
}
.tag__body {
  margin-right: 10px;
  padding: 4px 6px;
  border: none;
  border-radius: 6px;
  font: 400 0.75rem "Montserrat", sans-serif;
  color: #ffffff;
}
.tag__body:last-of-type {
  margin-right: 0;
}
.tag__body--red {
  background-color: #cc2441;
}
.tag__body--green {
  background-color: #018274;
}
.tag__body--blue {
  background-color: #2653a2;
}
.tag--corner .tag__body {
  display: flex;
  align-items: center;
  width: auto;
  height: 30px;
  margin: 0;
  padding: 2px 4px;
  border: 2px solid #ffffff;
  border-radius: 0 10px;
}
.tag--corner .tag__body span {
  padding: 0 2px 0 6px;
}
.tag--corner svg {
  width: 22px;
  height: 22px;
}
.tag--corner svg path {
  stroke: #ffffff;
}
.tag--corner-alt .tag__body {
  border-radius: 10px 0;
}

.hero--home .form__input--btn input, .card {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

.avatar {
  overflow: visible;
}
.avatar__image {
  width: 160px;
  height: auto;
  margin-bottom: 1rem;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(61, 61, 61, 0.16);
  overflow: hidden;
}
.avatar--small .avatar__image {
  width: 38px;
  height: 38px;
  margin-right: 12px;
  margin-bottom: 0;
  border: none;
}
.avatar a {
  display: block;
  font: 400 1rem "Montserrat", sans-serif;
  color: #cc2441;
}

.hero--home .form__input--btn input, .card {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

.tab {
  margin: 40px 0;
  border: 1px solid #cccccc;
  border-radius: 10px;
  overflow: hidden;
}
.tab__item {
  padding: 15px 20px;
  background-color: #f1eee9;
  border: 1px solid #cccccc;
  border-top: none;
  border-right: none;
}
.tab__item:first-of-type {
  border-left: none;
}
.tab__item.is-active {
  background-color: #f6f6f6;
  border-bottom: none;
}
.tab__item h4, .tab__item p {
  margin-bottom: 0;
}
.tab__content {
  grid-area: details;
  width: 100%;
  padding: 15px 20px;
}
.tab__content:not(.is-opened) {
  display: none;
}

.hero--home .form__input--btn input, .card {
  box-shadow: 0 0 0 2px #ffffff, 0 0 2px 4px rgba(119, 119, 119, 0.2);
}

.tag__body {
  transition: all 0.2s;
}

.icon--round {
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  padding: 8px;
  background-color: #018274;
  border-radius: 50%;
}
.icon--round:hover {
  opacity: 0.8;
}
.icon--round svg {
  width: 24px;
  height: 24px;
}
.icon--round svg path {
  stroke: #ffffff;
}

.admin-bar .grid--main-layout {
  height: calc(100vh - 32px);
}

.page-template-login #logo,
.page-template-registra #logo {
  margin: 20px auto 0 auto;
}
.page-template-login #logo svg path,
.page-template-registra #logo svg path {
  fill: #cc2441;
}
.page-template-login .grid__main,
.page-template-registra .grid__main {
  align-self: center;
  padding-bottom: 40px;
}
.page-template-login .col-2,
.page-template-registra .col-2 {
  width: 45%;
}
.page-template-login .col-2:first-of-type,
.page-template-registra .col-2:first-of-type {
  position: relative;
}
.page-template-login .col-2:first-of-type form .login-remember,
.page-template-registra .col-2:first-of-type form .login-remember {
  margin-bottom: 2rem;
}
.page-template-login .col-2:first-of-type form .login-submit,
.page-template-registra .col-2:first-of-type form .login-submit {
  display: inline-block;
}
.page-template-login .col-2:first-of-type .login-lost-password,
.page-template-registra .col-2:first-of-type .login-lost-password {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-bottom: 6px;
}
.page-template-login .col-2:first-of-type::after,
.page-template-registra .col-2:first-of-type::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 1px;
  height: 100%;
  border-right: 1px solid #cccccc;
}

/*# sourceMappingURL=style.css.map */
