:root {
  --primary-color: #003651;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
  font-family: OnestRegular;
  src: url("../fonts/OnestRegular.woff2") format("woff2"),
    url("../fonts/OnestRegular.woff") format("woff"),
    url("../fonts/OnestRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: OnestMedium;
  src: url("../fonts/OnestMedium.woff2") format("woff2"),
    url("../fonts/OnestMedium.woff") format("woff"),
    url("../fonts/OnestMedium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: OnestBold;
  src: url("../fonts/OnestBold.woff2") format("woff2"),
    url("../fonts/OnestBold.woff") format("woff"),
    url("../fonts/OnestBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  height: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html, body { 
  font-family: OnestRegular, Arial, sans-serif; 
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}

body {
  min-height: 100%;
  margin: 0;
  background-color: #fff;
  color: var(--primary-color);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
[hidden] {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
a:hover {
  opacity: .8;
}
b,
strong {
  font-weight: bold;
}
mark {
  background: #ff0;
  color: #000;
}
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 {
  margin: 1em 2.5rem;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
input[type="button"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
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;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
textarea {
  overflow: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}

h1, .h1,
h2, .h2,
h3, .h3,
b,
.bold,
strong,
.text-head,
.lang-item.current-lang a {
  font-family: OnestBold, "Arial Bold", sans-serif;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 85rem;
  padding-left: clamp(1rem, 2.22vw, 2rem);
  padding-right: clamp(1rem, 2.22vw, 2rem);
  margin: 0 auto;
}

.container.cc {
  padding: 0;
}
/* Textumfluss um Featured Image */
.container.cc .cc-featured-image-wrap {
  float: right;
  width: 50%;
  margin: 0 0 20px 20px;
  shape-outside: inset(0 0 0 0);
}
.container.cc .cc-featured-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.cc-featured-image-wrap .btn.btn-primary.cc {
  margin-top: 20px;
}
.container.cc .cc-content::after {
  content: "";
  display: table;
  clear: both;
}
.container.cc .cc-content .wp-block-columns.is-layout-flex {
  align-items: baseline;
}
.container.cc .cc-content img {
  width: 800px;
  max-width: 100%;
}
.container.cc .cc-content .wp-block-image {
  margin: 40px 0;
}
.container.cc .cc-content .wp-block-image .wp-element-caption {
  text-align: left;
}
@media (max-width: 768px) {
  .container.cc .cc-featured-image-wrap {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
  .container.cc .cc-content .wp-block-columns {
    flex-wrap: wrap;
  }
}


.container-md {
  max-width: 50rem;
}


:where(.d-flex) {
  display: flex;
}

:where(.d-inline-flex) {
  display: inline-flex;
}

:where(.d-inline-block) {
  display: inline-block;
}

:where(.flex-row) {
  flex-direction: row;
  align-items: center;
}

:where(.flex-col) {
  flex-direction: column;
}

:where(.flex-wrap) {
  flex-wrap: wrap;
}

:where(.flex-center) {
  justify-content: center;
}

:where(.flex-v-start) {
  align-items: flex-start;
}

:where(.flex-v-center) {
  align-items: center;
}

:where(.flex-between) {
  justify-content: space-between;
}

:where(.d-none) {
  display: none;
}

.d-grid {
  display: grid;
}

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

.text-sm {
  font-size: .8rem;
}

.flex-1 {
  flex: 1;
}

@media screen and (min-width: 768px) {
  .d-md-none {
    display: none;
  }  
  .d-md-flex {
    display: flex;
  }
  .d-md-block {
    display: block;
  }
  .d-md-inline-block {
    display: inline-block;
  }

  .flex-md-row-rev {
    flex-direction: row-reverse;
  }

  .flex-md-row {
    flex-direction: row;
  }
}

@media screen and (min-width: 1024px) {
  .d-lg-none {
    display: none;
  }
 
  .d-lg-flex {
    display: flex;
  }

  .d-lg-block {
    display: block;
  }

  .d-lg-inline-block {
    display: inline-block;
  }

  .flex-lg-row {
    flex-direction: row;
  }

  .flex-lg-row-rev {
    flex-direction: row-reverse;
  }

  .flex-lg-col {
    flex-direction: column;
  }

  .flex-lg-align-center {
    align-items: center;
  }

  .flex-lg-align-end {
    align-items: flex-end;
  }

  .flex-lg-start {
    justify-content: flex-start;
  }

  .flex-lg-self-start {
    align-self: flex-start;
  }

  .flex-lg-1 {
    flex: 1;
  }

  .ml-lg-auto {
    margin-left: auto;
  }

  .s-main p,
  .s-main ul {
    font-size: 1rem;
  }

  .s-main img {
    height: 31rem;
    width: 100%;
    object-fit: cover;
  }

  .home .s-main img {
    margin-top: 12rem;
  }
}

@media screen and (min-width: 1200px) {
  .d-xl-flex {
    display: flex;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: .625rem;
}

h1, .h1 {
  font-size: clamp(2rem, 2.778vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.h1--sm {
  font-size: clamp(2rem, 2.6vw, 2.375rem);
}

h2, .h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
}

h3, .h3 {
  font-size: clamp(1.4rem, 2.22vw, 2rem);
}

h4, .h4 {
  font-size: clamp(1.25rem, 1.67vw, 1.5rem);
}

h1, h2, h3 {
  margin-top: 1.25rem;
}
h4, h5, h6 {
  margin-top: .625rem;
}

p {
  margin-top: 0;
  margin-bottom: .625rem;
}

.s :is(p, ol, ul, h2, h3, h4, h5) + :is(table, p, ol, ul, h2, h3, h4, h5) {
  margin-top: clamp(1rem, 1.67vw, 1.5rem);
}

:where(p + .btn) {
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
}

.mt-auto {margin-top: auto;}
.ml-auto {margin-left: auto;}
.mr-auto {margin-right: auto;}
.mb-auto {margin-bottom: auto;}

.mx-auto {margin-left: auto;margin-right: auto;}

.ml-0 {
  margin-left: 0;
}

.mb-16 {margin-bottom: 1rem;}
.mb-24 {margin-bottom: 1.5rem;}
.mb-32 {margin-bottom: 2rem;}

.mt-24 {margin-top: 1.5rem;}

.gap-sm {gap: clamp(.5rem, 1.11vw, 1rem);}
.gap-md {gap: clamp(1rem, 1.67vw, 1.5rem);}
.gap-lg {gap: clamp(1.5rem, 3.33vw, 3rem);}
.gap-8 {gap: .5rem;}
.gap-24 {gap: 1.25rem;}

figure {
  margin: 0;
  margin-bottom: .625rem;
}

figcaption {
  margin-top: .375rem;
  text-align: center;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: .625rem;
  padding-left: 2.5rem;
}

.pl-0 {padding-left: 0;}
.pb-0 {padding-bottom: 0;}
.pt-0 {padding-top: 0;}


button,
[type="button"] {
  border: 0;
  cursor: pointer;
}

.main-content {
  padding-top: clamp(5rem, 8.33vw, 7.5rem);
}

:where(.s) {
  padding-top: clamp(2rem, 4.17vw, 3.75rem);
  padding-bottom: clamp(2rem, 4.17vw, 3.75rem);
}

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

.s ul li {
  position: relative;
  padding-left: 1.25rem;
}

.s ul li + li {
  margin-top: .5rem;
}

.s ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65rem;
  width: .3rem;
  height: .3rem;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.s-main {
  padding-top: 0;
}

.s-main h2 {
  font-size: 1.6rem;
}

:where(.s img),
.s-main img {
  border-radius: 1rem;
}

.s-content {
  padding: clamp(1.5rem, 4.17vw, 3rem) clamp(1rem, 5.56vw, 5rem);
  border-radius: 1rem;
}

.bg--gray {
  background-color: #f2f3f7;
}

/*header*/
.header {
  background-color: #fff;
  line-height: 1.5rem;
  padding-top: .625rem;
  padding-bottom: .625rem;
  position: fixed;
  inset: 0 0 auto;
  box-shadow: 0 0 .625rem #00365126;
  z-index: 1000;
}

.header .btn-primary {
  padding: .5rem 1rem;
  font-size: 1rem;
  white-space: nowrap;
  border-radius: .6rem;
}

.slogan {
  font-size: 16px;
  line-height: 1.1;
  padding: 0 .5rem;
  margin-left: auto;
  margin-right: auto;
  color: #047db9;
}

.w-nav-brand {
  position: relative;
  text-decoration: none;
  color: #333;
}
.w-nav-link,
.lang-item a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #222;
  padding: 1.25rem;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.current-lang a {
  color: #0082f3;
}

.nav-menu {
  gap: 1.875rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.w-nav-menu {
  position: relative;
}

[data-nav-menu-open] {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  text-align: center;
  overflow: visible;
  min-width: 12.5rem;
}

.w--nav-link-open {
  display: block;
  position: relative;
}

.w-nav-overlay {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s linear;
}

.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}

.w-nav-overlay--show {
  display: block;
  height: 100vh;
  opacity: 1;
  background-color: #fff;
}

.w-nav-button {
  position: relative;
  padding: .8rem;
  height: 3rem;
  margin-left: 1rem;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
}
.w-nav-button:focus {
  outline: 0;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.25rem;
}

.menu-item a {
  padding: .625rem;
  transition: all 0.333s;
}

.menu-item a:hover {
  color: #57baef;
}

.current-menu-parent > a,
.current-menu-item > a {
  font-weight: bold;
  color: #003651;
}

@media screen and (max-width: 1023.98px) {
  .sub-menu li:first-child {
    margin-top: 1rem;
  }
  .sub-menu {
    padding-left:.75rem;
    max-height:0;
    overflow:hidden;
    transition:max-height 0.25s linear
  }
  .is-opened::after {
    transform:scale(-1);
    transition:transform 0.2s linear
  }
}

.sub-menu {
  list-style: none;
}

.sub-menu li a {
  display: block;
  padding: .5rem .75rem;
}

.menu-item-has-children,
.menu-item-has-children > a {
  position: relative;
}

.menu-item-has-children > a {
  padding-right: 2rem;
}

@media screen and (min-width: 1024px) {
  .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility:visible
  }

  .menu-item-has-children:hover > a::after {
    transform: scale(-1);
  }
}

@media screen and (min-width: 1024px){
  .sub-menu {
    position:absolute;
    top: calc(100% + .5rem);
    left:0;
    padding:.75rem;
    background-color:#fff;
    min-width: 16rem;
    opacity: 0;
    border-radius:1rem;
    box-shadow:0px 16px 30px 2px rgba(0,0,0,0.12);
    visibility:hidden;
    transition:opacity 0.2s linear;z-index:1000
  }
}

.menu-item-has-children>a::after {
  content:url("data:image/svg+xml,%0A%3Csvg width='12' height='8' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='14.1426' width='2' height='11' rx='1' transform='rotate(45 14.1426 0)' fill='%23003651'/%3E%3Crect x='9.19238' y='7.77832' width='2' height='11' rx='1' transform='rotate(135 9.19238 7.77832)' fill='%23003651'/%3E%3C/svg%3E");
  width:1rem;
  height:.625rem;
  position:absolute;
  right:.25rem;
  top:.625rem;
  transform-origin: .375rem .75rem;
  transition: transform 0.2s linear
}


.btns-lang ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
  gap: .625rem;
}


.lang-item a,
.nav-lang {
  padding: .625rem 0;
  line-height: 1.5rem;
  transition: all 0.333s;
}

.lang-item a:hover {
  color: #57baef;
}

.lang-item.current-lang a {
  color: var(--primary-color);
}

.lang-item.current-lang a:hover {
  color: #57baef;
}

.lang-item.current-lang a {
  color: var(--primary-color);
}

.w--open {
    background-color: #a3daf8;
    border-radius: .75rem;
    transition: all 0.333s;
  }

@media screen and (max-width: 1023.98px) {
  .w-nav-menu {
    padding: 1.25rem;
    text-align: left;
  }

  .w-nav-menu .btn {
    margin-top: 1.875rem;
  }

  .w-nav .w-nav-menu {
    display: none;
  }
}


p,
ul,
ol {
  line-height: 1.5;
  margin-bottom: 0;
}

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

.s a:not(.btn, .service) {
  color: #0a6897;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
}

.btn {
  font-family: OnestMedium, Arial, sans-serif;
  color: var(--primary-color);
  padding: 1rem 2rem;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  border: 0;
  text-decoration: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.333s;
}

.btn-primary {
  font-size: clamp(1rem, 1.39vw, 1.25rem);
  background-color: #a3daf8;
}

.btn-primary:hover {
  background-color: #83cbf3;
}

.btn-link {
  color: #a3daf8;
  background-color: transparent;
  padding-left: .5rem;
  padding-right: .5rem;
}

.btn-link:hover {
  background-color: transparent;
}

.btn-link-more {
  gap: .5rem;
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
  align-items: center;
}

.btn-has-brd {
  gap: .5rem;
  background-color: #a3daf800;
  padding: 1rem 2.5rem;
  box-shadow: inset 0 0 0 1px var(--primary-color);
}

.btn-has-brd:hover {
  opacity: 0.7;
}

:where(.btn-contact) {
  gap: .5rem;
  background-color: #a3daf8;
  border-radius: .75rem;
  padding: .625rem 1.5rem;
}

.btn-contact:hover {
  background-color: #83cbf3;
}

.btn-contact-light {
  background-color: #fff6;
  padding-left:1.5rem;
  padding-right:1.5rem;
}

.service {
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
}

.service--big {
  padding: 1.25rem 2rem;
  background: linear-gradient(90deg, #cdedff, #9bdafd);
  border-radius: 1rem;
}

.service--big .service__title {
  margin-top: 0;
}

@media screen and (min-width: 1024px) {
  .service {
    max-width: 50%;
  }

  .s-pflegedienst .service,
  .service--big {
    width: calc(50% - .625rem);
  }

  .s-pflegedienst .service {
    flex-basis: 32%;
  }
}

.service:hover {
  opacity: .8;
  transition: opacity .33s;
}

.service__img {
  height: 300px;
  object-fit: cover;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

img[src*="Depositphotos_167662362_XL"] {
  object-position: center 30%;
}

.service__info {
  padding: 0 1.5rem 1rem;
}

.service__icon {
  flex: 0 0 3.75rem; 
}

.vacancy {
  padding: clamp(1.5rem, 4.44vw, 4rem);
  border-radius: 1rem;
}

.vacancy__location {
  padding: .5rem 1.2rem;
  background-color: #fff;
  border-radius: .8rem;
}

.contacts {
  align-items: flex-start;
}

@media screen and (min-width: 1024px) {
  .contacts__item {
    align-items: center;
  }

  .contacts__title {
    width: 8rem;
  }

  .contacts-map {
    padding-top: 8rem;
  }  
}


.footer {
  margin-top: 3.75rem;
  padding-top: 2rem;
  padding-bottom: 1.875rem;
  background: linear-gradient(#c8ebff, #a3daf8);
}

.footer__copyrights {
  margin-top: 2rem;
}

.footer__brand {
  line-height: 2rem;
}

.footer__menu {
  font-size: 1.2rem;
}

.footer__menu a {
  color: inherit;
  text-decoration: none;
}

.footer__desc {
  max-width: 26rem;
}

.footer__work-time {
  align-self: center;
}

.footer__work-time:hover {
  cursor: initial;
}



/* Cookies */
/* .cookie--visible,
.cookie--visible body {
  overflow: hidden;
} */
.cookie {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1.125rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 0;
  z-index: 2000;
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.16, 0.62, 0.17, 1);
  visibility: visible;
}
.cookie--hide {
  opacity: 0;
  bottom: -100vw !important;
  visibility: hidden;
}
.cookie__content {
  max-height: 100%;
  overflow-y: auto;
  width: 100%;
  padding: 1rem;
  background-color: #222;
}
.cookie__text {
  margin-bottom: 1.5rem;
}
.cookie .btn {
  font-size: 1rem;
  line-height: 1rem;
  padding: 0.625rem 2.75rem;
  text-transform: none;
}
.cookie a {
  color: #a3daf8;
}
.cookie {
  .btn-link,
  .btn {
    font-size: 1rem;
    line-height: 1rem;
    margin-bottom: 1rem;
    text-transform: none;
  }
  .btn {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .btn-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.cookie .link:hover {
  color: #222;
}
.cookie__desc {
  font-size: .75rem;
  line-height: .875rem;
  margin-bottom: .625rem;
}
.cookie__table-list {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
}

@media screen and (min-width: 768px) {
  .cookie__content .container {
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
  }
  .cookie__text {
    margin-bottom: 0;
    padding-right: 1rem;
    flex: 1;
  }
}





/* CF7 OK */

label {
  display: block;
  margin-bottom: .375rem;
}

.wpcf7 {
  margin-top: clamp(1.875rem, 3.47vw, 3.125rem);
}

.wpcf7 label {
  flex: 1;
} 

.wpcf7-text,
.wpcf7-textarea {
  border: 1px solid #fff;
  border-radius: .75rem;
  min-height: 3rem;
  margin-bottom: 0;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  width: 100%;
  outline: 0;
  color: var(--primary-color);
}


.wpcf7-textarea {
  margin-top: 1.25rem;
}

.wpcf7 .wpcf7-submit {
  font-family: OnestMedium, Arial, sans-serif;
  color: var(--primary-color);
  background-color: #a3daf8;
  border-radius: 1rem;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  line-height: 1.625rem;
  transition: all 0.333s;
  display: inline-block;
  outline: 0;
  border: 0;
  margin-top: 3rem;
}

.wpcf7-row,
.wpcf7-col {
  gap: 1.25rem;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: 333;
  opacity: 0.5;
}

.wpcf7-textarea {
  height: 6rem;
  resize: none;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-acceptance {
  font-size: 1rem;
  margin-top: 1.25rem;
  display: block;
  input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  .wpcf7-list-item-label {
    position: relative;
    display: block;
    padding-left: 1.5rem;
    padding-top: .25rem;
    cursor: pointer;
  }
  .wpcf7-list-item-label::after,
  .wpcf7-list-item-label::before {
    content: "";
    width: 1rem;
    height: 1rem;
    position: absolute;
  }
  .wpcf7-list-item-label::before {
    top: .375rem;
    left: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: .125rem;
    border: 1px solid #a3daf8;
    overflow: hidden;
  }
  .wpcf7-list-item-label::after {
    top: .4375rem;
    left: 1px;
  }
  input:checked ~ .wpcf7-list-item-label::after {
    background: url("data:image/svg+xml,%3Csvg width='17' height='13' viewBox='0 0 17 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.7 12.025L0 6.325L1.425 4.9L5.7 9.175L14.875 0L16.3 1.425L5.7 12.025Z' fill='%2357BAEF'/%3E%3C/svg%3E%0A") no-repeat
      center center;
    background-size: 90%;
  }
  input[disabled] ~ .wpcf7-list-item-label::after,
  input[disabled] ~ .wpcf7-list-item-label::before {
    opacity: 0.4;
  }
  input[disabled] ~ .wpcf7-list-item-label,
  input[disabled] ~ .wpcf7-list-item-label::after,
  input[disabled] ~ .wpcf7-list-item-label::before {
    cursor: not-allowed;
  }
}
.wpcf7-response-output {
  font-size: 1.125rem;
  max-width: 47rem;
  padding: 1rem !important;
  margin: 1rem auto 0 !important;
  text-align: center;
  border-radius: .625rem;
}
.failed .wpcf7-response-output {
  color: red;
}
.one-forms .wpcf7-not-valid {
  border: 1px solid red;
}
.wpcf7-not-valid-tip {
  font-size: .875rem;
  line-height: 1rem;
}
.wpcf7-submit[disabled] {
  opacity: 0.4;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

.spoiler-box {
  flex-basis: 100%;
  width: 100%;
}
.spoiler-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.spoiler-content {
  padding: .625rem 0;
}
.spoiler.active .spoiler-wrapper {
  max-height: 62rem;
}
.spoiler-btn {
  font-size: .75rem;
  line-height: .875rem;
  padding: 0;
  background: 0;
  border: 0;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
}
.spoiler-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

@media screen and (min-width: 768px) {
  .spoiler-row {
    flex-wrap: nowrap;
  }
  .spoiler-cell {
    flex: 1;
  }
}

.spoiler {
  .wpcf7-list-item {
    margin-left: 0;
    font-size: .75rem;
  }
  .wpcf7-acceptance {
    margin-top: 0;
  }
  table {
    font-size: .625rem;
    line-height: .75rem;
    width: 100%;
    max-width: 18rem;
    border-collapse: collapse;
    opacity: 0.5;
  }
  th {
    text-align: left;
    width: 5.125rem;
  }
  th,
  td {
    border: 1px solid #424242;
    padding: .125rem;
  }
}
.btn-cookie-show {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
}

.s-breadcrumbs-list,
.s-breadcrumbs-item {
  gap: .25rem;
}

.s-breadcrumbs-span {
  opacity: .7;
}

.s-breadcrumbs-item:not(:last-child)::after {
  content: '|';
  opacity: .3;
}

.s-faq__inner {
  max-width: 65rem;
}
.s-faq__item {
  border-bottom: 1px solid #ebebeb;
}
.s-faq__item-title {
  font-size: clamp(1rem, 1.66667vw, 1.5rem);
  padding: 1.25rem 0;
  cursor: pointer;
}
.s-faq__item-title:hover {
  color: #565656;
}
.s-faq__item-title:hover .s-faq__item-icon {
  background-color: #c9c9c9;
}
.s-faq__item-title > span:first-child {
  padding-right: 1rem;
}
.s-faq__item-icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 2.5rem;
  background-color: #a3daf8;
  border-radius: 100%;
}
.s-faq__item-icon:hover {
  background-color: #c9c9c9;
}
.s-faq__item-icon::before,
.s-faq__item-icon::after {
  content: "";
  position: absolute;
  background-color: #222;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0.1875rem;
}
.s-faq__item-icon::before {
  width: 1.125rem;
  height: 0.125rem;
}
.s-faq__item-icon::after {
  opacity: 0;
  height: 0;
  transition: all 0.1s linear;
}
.collapsed .s-faq__item-icon::after {
  opacity: 1;
  width: 0.125rem;
  height: 1.125rem;
}
.s-faq__item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease-in-out;
}
.s-faq__item-content p {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: clamp(1.25rem, 1.80556vw, 1.625rem);
  margin-top: 0;
}

.s-faq__item-content p:last-child,
.s-faq__item-content ul:last-child {
  padding-bottom: 1.5rem;
}
.s-faq__item-content h3 {
  font-size: 20px;
}

@media screen and (max-width: 1023.98px) {
  .s-faq__item-icon {
    margin-right: 0.75rem;
  }
}

.sp-header-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.sp-header-contact-btn {
    padding: 3px 15px !important;
    font-size: 13px !important;
}