@charset "UTF-8";
/*border-radius*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (max-width: 1600px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 14px;
  }
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #202020;
  font-variant-numeric: lining-nums;
  font-feature-settings: "pnum" on, "lnum" on;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: #FFFFFF;
}
@media (max-width: 1600px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

main {
  width: 100%;
}
@media (max-width: 992px) {
  main {
    padding-top: 128px !important;
  }

  .home main {
    padding-top: 0 !important;
  }
}

select option {
  color: black !important;
}

.btn,
a.btn {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: #F9F9F9;
  gap: 1em;
  outline: 0;
  padding-left: 1.5em;
  height: 46px;
  border-radius: 80px;
  font-weight: 700;
  transition: 0.4s all;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;

  &:hover {
    opacity: 1 !important;
  }
}
.btn::before,
a.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: #2CB8B8;
  filter: brightness(0.85);
  transform: scale(0.5);
  opacity: 0;
  transition: 0.4s all;
  border-radius: 5em;
}
.btn::after,
a.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  background: #2CB8B8;
}
.btn:hover::before,
a.btn:hover::before {
  transform: scale(1.25);
  opacity: 1;
}
.btn.white,
a.btn.white {
  color: #202020;
}
.btn.white::after, .btn.white::before,
a.btn.white::after,
a.btn.white::before {
  background: #FFFFFF;
}
.btn svg,
a.btn svg {
  width: 1.375em;
  height: 1.375em;
}

a {
  transition: all 0.2s;
}
a:hover {
  opacity: 0.8;
}

.btn.gold-btn::after {
  background-color: #D4AF37;
}
.btn.gold-btn::before {
  background-color: rgb(208, 177, 0);
}

.button-icon {
  height: 100%;
  aspect-ratio: 1/1;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-icon svg {
  height: 13px !important;
}

h1 {
  font-weight: 700;
  font-size: 4.25em;
  line-height: 1.0588;
}
@media (max-width: 1600px) {
  h1 {
    font-size: 3.75em;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 3em;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 2.2em;
  }
}

h2 {
  font-weight: 700;
  font-size: 2.625em;
  line-height: 1.1429;
}
@media (max-width: 1600px) {
  h2 {
    font-size: 2.3em;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 2.2em;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.8em;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 1.5em;
  }
}

h3 {
  font-weight: 700;
  font-size: 1.625em;
  line-height: 1.5385;
}
@media (max-width: 1600px) {
  h3 {
    font-size: 1.45em;
  }
}
@media (max-width: 991px) {
  h3 {
    font-size: 1.3em;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.2em;
  }
}
@media (max-width: 575px) {
  h3 {
    font-size: 1em;
  }
}

h4 {
  font-weight: 700;
  font-size: 1em;
  line-height: 1.5;
}

.blue {
  color: #2CB8B8;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 14px;
}

.ds_bg_vector {
  background: url("/wp-content/uploads/2025/06/background-vector.svg") center center;
  background-size: cover;
}

input,
textarea, select {
  padding: 1em 1em;
  outline: 0;
  border: 1px solid #2CB8B8;
  border-radius: 0.5em;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  resize: none;
}
input::placeholder,
textarea::placeholder, select::placeholder {
  color: #FFFFFF;
}

textarea {
  height: 9em;
}

a {
  color: inherit;
}

section {
  margin-bottom: 6em;
}

body:not(.home) h1 a {
  text-decoration: none;
  color: currentColor;
}

.ds_contact_section iframe {
  height: 27em;
  border: 1px solid #2CB8B8;
  border-radius: 1.25em;
}

main ul {
  list-style: none;
}
main ul li {
  position: relative;
  margin-left: 1.5em;
}
main ul li::before {
  content: "";
  position: absolute;
  left: -1em;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.1em;
  height: 0.1em;
  background: #202020;
  border-radius: 50%;
}

body.error404 main#main {
  padding: 0;
}
body.error404 .error-404-wrapper > div {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  text-align: center;
  align-items: center;
}
body.error404 .error-404-wrapper > div h1 {
  font-size: 6em;
  margin-bottom: 0;
}

.page-template-default h2 {
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

p.red_text {
  color: red;
  font-size: 0.8em;
  font-weight: 700;
  text-align: end;
}

html.scroll {
  height: 100%;
  overflow: hidden;
}

.ds_about > .container .wp-block-columns {
  margin-bottom: 2em;
}
.ds_about > .container .wp-block-columns img {
  border-radius: 1.25em;
}

.text-icon-link {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2CB8B8;
  font-weight: 800;
}

.lightgrey-section {
  background-color: #F9F9F9;
}

/*border-radius*/
/*utilities*/
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.d-flex {
  display: flex;
}

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

.d-none {
  display: none !important;
}

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

.justify-center {
  justify-content: center;
}

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

.w-100 {
  width: 100%;
}

.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.row-small {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

@media (min-width: 576px) {
  .container, .container-sm, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-sm, .container-md, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1380px;
  }
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.row-small .col-1, .row-small .col-2, .row-small .col-3, .row-small .col-4, .row-small .col-5, .row-small .col-6, .row-small .col-7, .row-small .col-8, .row-small .col-9, .row-small .col-10, .row-small .col-11, .row-small .col-12, .row-small .col, .row-small .col-auto, .row-small .col-sm-1, .row-small .col-sm-2, .row-small .col-sm-3, .row-small .col-sm-4, .row-small .col-sm-5, .row-small .col-sm-6, .row-small .col-sm-7, .row-small .col-sm-8, .row-small .col-sm-9, .row-small .col-sm-10, .row-small .col-sm-11, .row-small .col-sm-12, .row-small .col-sm, .row-small .col-sm-auto, .row-small .col-md-1, .row-small .col-md-2, .row-small .col-md-3, .row-small .col-md-4, .row-small .col-md-5, .row-small .col-md-6, .row-small .col-md-7, .row-small .col-md-8, .row-small .col-md-9, .row-small .col-md-10, .row-small .col-md-11, .row-small .col-md-12, .row-small .col-md, .row-small .col-md-auto, .row-small .col-lg-1, .row-small .col-lg-2, .row-small .col-lg-3, .row-small .col-lg-4, .row-small .col-lg-5, .row-small .col-lg-6, .row-small .col-lg-7, .row-small .col-lg-8, .row-small .col-lg-9, .row-small .col-lg-10, .row-small .col-lg-11, .row-small .col-lg-12, .row-small .col-lg, .row-small .col-lg-auto, .row-small .col-xl-1, .row-small .col-xl-2, .row-small .col-xl-3, .row-small .col-xl-4, .row-small .col-xl-5, .row-small .col-xl-6, .row-small .col-xl-7, .row-small .col-xl-8, .row-small .col-xl-9, .row-small .col-xl-10, .row-small .col-xl-11, .row-small .col-xl-12, .row-small .col-xl, .row-small .col-xl-auto {
  padding-right: 10px;
  padding-left: 10px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.bi {
  fill: currentColor;
}

abbr[title], abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

pre, code, kbd, samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

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

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

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


/*------------------------------respo----------------------------------*/
/*------------------------------respo----------------------------------*/
/*------------------------------respo----------------------------------*/
@media (max-width: 1199px) {
  .newsletter .newsletter_card .wpcf7 form p label {
    font-size: 1em;
  }
}
@media (max-width: 767px) {
  .newsletter .newsletter_card {
    padding: 2.5em 2em 1.6em;
  }
}
@media (max-width: 575px) {
  .container-fluid {
    padding-left: 5px;
    padding-right: 5px;
  }
}
/*border-radius*/
/*header - page top margin fix*/
main {
  padding-top: 240px;
  min-height: calc(100vh - 51.35em);
}
@media (max-width: 991px) {
  main {
    min-height: unset;
  }
}

#masthead {
  background-color: white;
  position: fixed;
  z-index: 999;
  transition: 0.4s all;
  width: 100%;
}
#masthead .navbar #nav-icon3 {
  display: none;
}
#masthead .navbar #main-nav {
  height: 100%;
}
#masthead .navbar #main-nav ul {
  display: flex;
  align-items: stretch;
  margin: auto;
  list-style: none;
  height: 100%;
  gap: 2em;
}
#masthead .navbar #main-nav ul li a {
  text-decoration: none;
  color: #202020;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.4s all;
  font-weight: 700;
}
#masthead .navbar #main-nav ul li a:hover {
  color: #2CB8B8;
}
#masthead .navbar #main-nav ul li.menu-item-has-children {
  z-index: 1;
}
#masthead .navbar #main-nav ul li.menu-item-has-children:hover .ul-wrap {
  pointer-events: all;
  opacity: 1;
}
#masthead .navbar #main-nav ul li.menu-item-has-children .ul-wrap {
  position: absolute;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100vw;
  opacity: 0;
  pointer-events: none;
}
#masthead .navbar #main-nav ul li.menu-item-has-children .ul-wrap .ul-cont {
  position: relative;
  margin-top: 44px;
}
#masthead .navbar #main-nav ul li.menu-item-has-children .ul-wrap ul {
  z-index: 101;
  padding: 2em;
  width: 100%;
  display: flex;
  gap: 2em;
  position: relative;
  overflow: hidden;
  left: 0;
  background: #FFFFFF;
  height: auto;
  white-space: nowrap;
  border-radius: 0.5em;
  transition: 0.4s all;
  gap: 0;
}
#masthead .navbar #main-nav ul li.menu-item-has-children .ul-wrap ul .sub-menu-items-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 30% 30% 30%;
  row-gap: 12px;
  justify-content: space-between;
  grid-auto-flow: column;
  grid-template-rows: auto auto auto;
}

.many-items-in-menu {
  grid-template-rows: auto auto auto auto !important;
}

@media (max-width: 1400px) {
  #masthead .navbar #main-nav ul li.menu-item-has-children .ul-wrap ul .sub-menu-items-wrap {
    justify-content: start;
    gap: 32px;
    grid-template-columns: 40% 40% !important;
    grid-template-rows: unset;
    grid-auto-flow: row !important;
  }
}
#masthead .navbar #main-nav ul li.menu-item-has-children .ul-wrap ul li {
  width: 100%;
}
#masthead .navbar #main-nav ul li.menu-item-has-children .ul-wrap ul li a {
  border-radius: 10px;
  padding: 1em 1.5em;
  border-top: 0;
}
#masthead .navbar #main-nav ul li.menu-item-has-children .ul-wrap ul li a:hover {
  border-top: 0;
  background: #dfdede;
}
#masthead .navbar #main-nav ul .current-menu-item > a, #masthead .navbar #main-nav ul .current-menu-parent > a {
  color: #2CB8B8;
  border-top: 3px solid #2CB8B8;
}
#masthead .ds_wrapper_menu_main {
  position: relative;
  z-index: 9999;
  display: flex;
  align-items: stretch;
  justify-content: end;
  height: 80px;
  transition: 0.4s all;
  opacity: 1;
  transform: translateY(0);
}
#masthead .ds_wrapper_menu_main .navbar-brand {
  padding: 0.75em 0;
  flex-grow: 1;
}
#masthead .ds_wrapper_menu_main .navbar-brand figure {
  display: flex;
  height: 100%;
}
@media (max-width: 560px) {
  #masthead .ds_wrapper_menu_main .navbar-brand figure {
    align-items: center;
  }
}
#masthead .ds_wrapper_menu_main .navbar-brand figure img {
  height: 100%;
  width: auto;
}
@media (max-width: 560px) {
  #masthead .ds_wrapper_menu_main .navbar-brand figure img {
    height: 38px;
  }
}
#masthead .ds_wrapper_menu_main .navbar-brand a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
}
#masthead .ds_wrapper_menu_main .navbar-brand a svg {
  width: 100%;
}
#masthead .ds_wrapper_menu_main .navbar-brand a svg path {
  fill: white;
}
#masthead .ds_wrapper_menu_main .header_icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#masthead .ds_wrapper_menu_main .header_icons:last-child {
  margin-left: 3em;
}
#masthead .ds_wrapper_menu_main .header_icons a:not(.btn) {
  display: flex;
  color: #2CB8B8;
  text-decoration: none;
  gap: 1em;
  margin-right: 3.75em;
  font-weight: 700;
  transition: 0.4s all;
}
#masthead .ds_wrapper_menu_main .header_icons a:not(.btn):hover {
  filter: brightness(0.85);
}
#masthead .ds_wrapper_menu_main .header_icons a:not(.btn) svg {
  height: 1.5em;
  width: 1.5em;
}

@media (min-width: 992px) {
  .smallHeader {
    background: #FFFFFF;
  }
  .smallHeader .ds_wrapper_menu_main {
    opacity: 0 !important;
    height: 0 !important;
    transform: translateY(-20px) !important;
    /* display: none !important; */
  }
}
/*----------burger menu------------*/
@media only screen and (max-width: 991px) {
  header .ds_wrapper_menu_main .navbar {
    display: flex;
    justify-content: flex-end;
    order: 3;
  }
  header .ds_wrapper_menu_main .navbar #main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: white;
    top: 0;
    right: 0;
    z-index: 99;
    text-align: center;
    transform: translateX(100%);
    transition: 0.5s cubic-bezier(0.86, -0.01, 0.15, 1.04);
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
    margin-bottom: 0;
    padding-top: 80px;
    list-style: none;
    width: 90%;
    gap: 1em !important;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li {
    margin: 0 !important;
    width: 100%;
    border-bottom: 1px solid #F9F9F9;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li a {
    width: 100%;
    padding: 0 38px 0 28px;
    border: 0 !important;
    text-align: center;
    display: flex;
    justify-content: space-between;
    text-transform: unset;
    line-height: 2.85;
    height: auto !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li.menu-item-has-children {
    border-bottom: 0 !important;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li.menu-item-has-children > a {
    display: none !important;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li.menu-item-has-children ul {
    opacity: 1 !important;
    box-shadow: none !important;
    pointer-events: all !important;
    position: unset !important;
    background: transparent !important;
    gap: 1em !important;
    border-radius: 0 !important;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li.menu-item-has-children ul li a {
    background: transparent !important;
    padding: 0 38px 0 28px !important;
  }
  header .ds_wrapper_menu_main .navbar.ds_navbar_open #main-nav {
    transform: translateX(0%);
  }
  .home header#masthead .ds_wrapper_menu_main .header_icons .woocommerce-Price-amount {
    color: white;
  }
  .home header#masthead .ds_wrapper_menu_main .header_icons .openSearch:hover svg,
  .home header#masthead .ds_wrapper_menu_main .header_icons .openAccount:hover svg,
  .home header#masthead .ds_wrapper_menu_main .header_icons .openCart:hover svg {
    fill: #192624 !important;
  }
  .home header#masthead .ds_wrapper_menu_main .header_icons .openSearch:hover .woocommerce-Price-amount,
  .home header#masthead .ds_wrapper_menu_main .header_icons .openAccount:hover .woocommerce-Price-amount,
  .home header#masthead .ds_wrapper_menu_main .header_icons .openCart:hover .woocommerce-Price-amount {
    color: #192624;
  }
  .navbar-toggler {
    height: 40px;
    width: 40px;
    position: relative;
    z-index: 99999;
    display: block !important;
    margin: auto;
    background: linear-gradient(90deg, #49CFC3 0%, #2CB8B8 100%);
    border: 0;
    border-radius: 10px;
    padding: 0;
    cursor: pointer;
  }
  .navbar-toggler span {
    display: block;
    position: absolute;
    height: 3px;
    width: 26px;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 7px;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  .navbar-toggler span:nth-child(1) {
    top: 11px;
  }
  .navbar-toggler span:nth-child(2), .navbar-toggler span:nth-child(3) {
    top: 19px;
  }
  .navbar-toggler span:nth-child(4) {
    top: 27px;
  }
  .navbar-toggler.open span:nth-child(1) {
    top: 19px;
    width: 0%;
    left: 50%;
  }
  .navbar-toggler.open span:nth-child(2) {
    transform: rotate(45deg);
  }
  .navbar-toggler.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .navbar-toggler.open span:nth-child(4) {
    top: 19px;
    width: 0%;
    left: 50%;
  }
}
/*------------------------------respo----------------------------------*/
/*------------------------------respo----------------------------------*/
/*------------------------------respo----------------------------------*/
@media (max-width: 991px) {
  #masthead .ds_wrapper_menu_main .navbar-brand {
    width: auto;
    position: relative;
    z-index: 100;
  }
  #masthead .ds_wrapper_menu_main .navbar-brand a svg path {
    transition: 0.4s all;
  }
  #masthead .ds_wrapper_menu_main .header_icons {
    margin-left: auto;
    margin-right: 1.3em;
  }
  #masthead .ds_wrapper_menu_main #main-nav {
    background-image: url(/wp-content/uploads/2021/11/mobile-menu-min.jpg);
    height: 100vh !important;
    background-size: cover;
    background-position: center;
  }
  #masthead.headerOpen .navbar-brand a svg path {
    fill: white;
  }
}
@media (max-width: 600px) {
  .smallHeader {
    top: 0;
  }
}
@media (max-width: 575px) {
  #masthead .ds_wrapper_menu_main .navbar #main-nav ul li a {
    font-size: 1.3875em;
  }
}
.bottom-navbar {
  background-color: #F9F9F9;
  display: flex;
  align-items: center;
  padding: 1em;
}
@media (max-width: 992px) {
  .bottom-navbar {
    display: none;
  }
}
.bottom-navbar .container {
  display: flex;
  justify-content: space-between;
}
.bottom-navbar .container .header-nets {
  display: flex;
  gap: 0.5em;
}
.bottom-navbar .container .header-nets a {
  height: 36px;
  width: 36px;
  border: 2px solid #2CB8B8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  transition: all 0.2s;
}
.bottom-navbar .container .header-nets a:hover {
  opacity: 0.6;
}

.mobile-header-nets {
  display: flex;
  gap: 0.5em;
  padding: 1em;
}
.mobile-header-nets a {
  height: 36px;
  width: 36px;
  border: 2px solid #2CB8B8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  transition: all 0.2s;
}
.mobile-header-nets a:hover {
  opacity: 0.6;
}

.google-header-wrap {
  display: flex;
  align-items: center;
  gap: 1em;
}
.google-header-wrap svg {
  height: 32px;
  width: 32px;
}

.google-review-header-wrap {
  max-width: 220px;
}
.google-review-header-wrap .wp-google-powered {
  display: none !important;
}
.google-review-header-wrap .grw-header-inner {
  padding: 0 !important;
}
.google-review-header-wrap .wp-gr {
  padding: 0 !important;
}
.google-review-header-wrap .wp-star svg {
  max-height: 16px !important;
  max-width: 16px !important;
}
.google-review-header-wrap .wp-google-rating {
  color: #202020 !important;
  font-size: 18px !important;
}
.google-review-header-wrap .wp-google-based {
  margin-top: 0 !important;
}

.menu-item-content-wrapper {
  display: flex;
  align-items: center;
  gap: 1em;
}

.menu-item-sub-image {
  height: 80px;
  width: 80px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.sub-menu-bottom-link {
  color: #2CB8B8;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sub-menu-item-title {
  font-size: 18px;
  font-weight: 800;
}

.sub-menu-pricing-link {
  color: white !important;
  padding: 1.25em;
  background-color: #D4AF37;
  display: flex;
  gap: 1.5em;
  border-radius: 15px;
}
.sub-menu-pricing-link .sub-icon-wrap {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 1.25em;
}
.sub-menu-pricing-link .sub-icon-texts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sub-menu-pricing-link .sub-icon-texts > span {
  font-size: 18px;
  font-weight: 800;
}
.sub-menu-pricing-link .sub-icon-texts .sub-icon-link {
  display: flex;
  gap: 8px;
  align-items: center;
}
.sub-menu-pricing-link .sub-icon-texts .sub-icon-link span {
  text-decoration: underline;
  font-weight: 14px !important;
  font-weight: 600 !important;
}

.sub-menu-process-link {
  color: white !important;
  padding: 1.25em;
  background-color: #2CB8B8;
  display: flex;
  gap: 1.5em;
  border-radius: 15px;
}
.sub-menu-process-link .sub-icon-wrap {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 1.25em;
}
.sub-menu-process-link .sub-icon-texts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sub-menu-process-link .sub-icon-texts > span {
  font-size: 18px;
  font-weight: 800;
}
.sub-menu-process-link .sub-icon-texts .sub-icon-link {
  display: flex;
  gap: 8px;
  align-items: center;
}
.sub-menu-process-link .sub-icon-texts .sub-icon-link span {
  text-decoration: underline;
  font-weight: 14px !important;
  font-weight: 600 !important;
}

@media (max-width: 992px) {
  .link_to_form {
    display: none !important;
  }
}
.sub-menu-texts {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

.menu-show-wrapper {
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 128;
  background-color: rgba(0, 0, 0, 0.5);
}

.mobile-menu-wrap {
  position: fixed;
  margin-top: 80px;
  width: 100%;
  background-color: white;
  padding-bottom: 24px;
  z-index: 999;
}

.m-nav {
  width: 100%;
  background-color: #fff;
}

.m-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.m-nav__item {
  border-bottom: 1px solid #f0f0f0;
}

/* --- Horní řádek (Obrázek + Text + Šipka) --- */
.m-nav__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-nav__link {
  display: flex;
  align-items: center;
  padding: 16px 16px;
  text-decoration: none;
  color: #333;
  flex-grow: 1;
}

.m-nav__image {
  height: 24px;
  margin-right: 15px;
}

.m-nav__title {
  font-size: 14px;
  font-weight: 600;
}

.m-nav__toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 15px;
  font-size: 20px;
  color: #000;
  flex-shrink: 0;
}

.m-nav__toggle .icon-minus {
  display: none;
}

.m-nav__item.is-open > .m-nav__row .m-nav__toggle .icon-plus {
  display: none;
}

.m-nav__item.is-open > .m-nav__row .m-nav__toggle .icon-minus {
  display: block;
}

.m-nav__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.m-nav__submenu-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 15px;
}

.m-nav__submenu-item a {
  display: flex;
  align-items: center;
  padding: 16px 16px;
  text-decoration: none;
  color: #444;
  border-top: 1px solid #eee;
  padding-left: 0;
  margin-left: 32px;
}

.m-nav__submenu-content {
  display: flex;
  align-items: center;
}

.m-nav__submenu-image {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  object-fit: cover;
  border-radius: 4px;
}

.m-nav__promo-icon {
  margin-right: 10px;
}

.m-nav__promo-icon svg {
  width: 25px;
  height: auto;
}

.m-nav__submenu-title, .m-nav__promo-texts {
  font-size: 14px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .mobile-menu-wrap {
    display: none;
  }
}
.mobile-menu-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu-wrap.is-active {
  max-height: 100vh;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 992px) {
  .wp-google-based {
    display: none !important;
  }
  .google-header-wrap {
    width: 96px;
  }
  .google-review-header-wrap {
    max-width: 64px;
  }
  .google-header-wrap svg {
    height: 20px;
    width: 20px;
  }
  .wp-star:nth-child(5) {
    display: none !important;
  }
  .wp-star:nth-child(4) {
    display: none !important;
  }
  .wp-star:nth-child(3) {
    display: none !important;
  }
  .wp-star:nth-child(2) {
    display: none !important;
  }
}
@media (max-width: 560px) {
  #masthead .ds_wrapper_menu_main .header_icons:last-child {
    margin-left: 0 !important;
    margin-right: 0.5em !important;
  }
}
/*border-radius*/
.ds_newsletter {
  position: relative;
  z-index: 1;
  padding: 3.75em 0;
}
@media (max-width: 991px) {
  .ds_newsletter::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    top: calc(55% - 1px);
    background: #202020;
    z-index: -2;
  }
}
.ds_newsletter .ds_newsletter_wrap {
  justify-content: space-between;
  position: relative;
}
@media (max-width: 991px) {
  .ds_newsletter .ds_newsletter_wrap {
    flex-wrap: wrap;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_left {
  background-color: #2CB8B8;
  padding: 4em;
  border-radius: 1em;
  min-width: 55%;
  height: fit-content;
}
@media (max-width: 991px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_left {
    flex-grow: 1;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_left h4 {
  color: #FFFFFF;
  font-size: 1.5em;
  margin-bottom: 1em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_left .ds_form_wrap .ds_form_row {
  display: flex;
  gap: 1.875em;
  margin-top: 1.125em;
}
@media (max-width: 991px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_left .ds_form_wrap .ds_form_row {
    flex-grow: 1;
    flex-direction: column;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_left .ds_form_wrap .ds_form_row label {
  display: flex;
  flex-direction: column;
  gap: 0.375em;
  flex-grow: 1;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_left .ds_form_wrap .ds_form_row label span {
  font-weight: 700;
  color: #FFFFFF;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_left .ds_form_wrap .ds_form_row > div {
  display: flex;
  justify-content: end;
  gap: 1.625rem;
  align-items: center;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_left .ds_form_wrap .ds_form_row > div span {
  max-width: 15.5rem;
}
@media (max-width: 991px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_left .ds_form_wrap .ds_form_row > div span {
    max-width: unset;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_left .ds_form_wrap .ds_form_row:last-child {
  justify-content: end;
  font-size: 0.875em;
  color: #F9F9F9;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_left .ds_form_wrap .ds_form_row:last-child a {
  text-decoration: none;
  color: #2CB8B8;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_left .ds_form_wrap .ds_form_row:last-child a:hover {
  text-decoration: underline;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_left .ds_form_wrap .ds_form_row:last-child .btn {
  font-size: 1rem;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right {
  color: #202020;
}
@media (max-width: 991px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right {
    flex-grow: 1;
    text-align: center;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1399px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
    width: 15em;
    height: auto;
  }
}
@media (max-width: 1199px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
    width: 7em;
    height: auto;
  }
}
@media (max-width: 991px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
    display: none;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right h3 {
  color: #2CB8B8;
  margin-bottom: 0.5rem;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right h3:nth-of-type(2) {
  margin-top: 2.75rem;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right h4 {
  margin-top: 1em;
  margin-bottom: 0.25em;
  font-size: 1.5em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right span {
  font-size: 1em;
  line-height: 2em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_phone,
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_mail {
  margin-top: 1.125em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_phone a,
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_mail a {
  color: currentColor;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_phone a svg,
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_mail a svg {
  width: 1.5em;
  height: 1.5em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_address {
  max-width: 8.625em;
  margin-bottom: 1.625em;
}
@media (max-width: 991px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_address {
    max-width: unset;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right a {
  transition: 0.4s all;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right a:hover {
  filter: brightness(0.85);
}

.ds_footer {
  padding: 3.75em 0 0;
  background: #151C1C;
  color: #F9F9F9;
  margin-top: -1px;
  position: relative;
}
.ds_footer::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: 0px;
  width: 250px;
  height: 400px;
  background-image: url("/wp-content/uploads/2025/10/f4accce94443c5f280b0226701c88d38eb820669-scaled.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .ds_footer::after {
    right: -130px;
  }
}
@media (max-width: 1100px) {
  .ds_footer::after {
    display: none;
  }
}
.ds_footer .ds_footer_wrapper {
  margin-bottom: 2.5625em;
}
.ds_footer .ds_footer_wrapper .ds_footer_wrapper_content {
  font-size: 0.875em;
  display: flex;
}
@media (max-width: 767px) {
  .ds_footer .ds_footer_wrapper .ds_footer_wrapper_content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 4em;
  }
}
.ds_footer .ds_footer_bottom_line {
  color: #FFFFFF;
  font-size: 0.875em;
  margin-bottom: 0 !important;
}
.ds_footer .ds_footer_bottom_line .container {
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  padding: 2.5em 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .ds_footer .ds_footer_bottom_line .container {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    gap: 1em;
  }
}
.ds_footer a {
  text-decoration: none;
  color: currentColor;
}
.ds_footer a:hover {
  text-decoration: underline;
}
.ds_footer .column {
  border-right: 1.5px solid rgba(255, 255, 255, 0.1019607843);
  max-width: 30%;
}
@media (max-width: 1200px) {
  .ds_footer .column {
    max-width: unset;
  }
}
.ds_footer .column h5 {
  font-size: 18px;
  font-weight: 700;
}
.ds_footer .column a {
  text-decoration: underline;
  margin-bottom: 1em;
}
.ds_footer .column.c1 {
  padding-right: 6em;
}
@media (max-width: 1200px) {
  .ds_footer .column.c1 {
    padding-right: 3em;
  }
}
.ds_footer .column.c2 {
  align-items: center;
  padding-right: 6em;
  padding-left: 6em;
}
@media (max-width: 1200px) {
  .ds_footer .column.c2 {
    padding-left: 3em;
    padding-right: 3em;
  }
}
@media (max-width: 767px) {
  .ds_footer .column.c2 {
    gap: 1.5em;
    justify-items: center;
    border-right: 0;
  }
}
.ds_footer .column.c2 .ds_footer_menu {
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .ds_footer .column.c2 .ds_footer_menu {
    gap: 1em;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.ds_footer .column.c2 .ds_footer_cont_wrap {
  display: flex;
  gap: 4.2857em;
  justify-content: end;
}
@media (max-width: 575px) {
  .ds_footer .column.c2 .ds_footer_cont_wrap {
    gap: 1.5em;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.ds_footer .column.c2 .ds_footer_cont_wrap > div {
  display: flex;
  gap: 4.375rem;
  align-items: center;
}
.ds_footer .column.c2 .ds_footer_cont_wrap > div a {
  display: flex;
  gap: 0.75em;
  align-items: center;
}
.ds_footer .column.c2 .ds_footer_nets {
  display: flex;
  gap: 2rem;
  justify-content: end;
}
.ds_footer .column.c2 .ds_footer_net_wrap {
  justify-content: end;
}
.ds_footer .column.c2 .ds_footer_net_wrap .ds_kontakt_row {
  gap: 1.57143em;
}
.ds_footer .column.c1 img {
  margin-bottom: 1.375rem;
}
@media (max-width: 767px) {
  .ds_footer .column.c1 {
    border-right: 0;
  }
}
.ds_footer .column.c1 .ds_footer_row {
  gap: 0.5em;
  width: fit-content;
}

.ds_footer .column.c1 .ds_footer_row:last-child {
  margin-top: 1.125rem;
}
.ds_footer .column.c3 {
  border-right: 0 !important;
  padding-right: 6em;
  padding-left: 6em;
}
@media (max-width: 1200px) {
  .ds_footer .column.c3 {
    padding-left: 3em;
    padding-right: 3em;
  }
}
@media (max-width: 767px) {
  .ds_footer .column.c3 {
    gap: 1.5em;
    justify-items: center;
  }
}
.ds_footer .column.c3 .ds_footer_menu {
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .ds_footer .column.c3 .ds_footer_menu {
    gap: 1em;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.contact-map-wrap {
  margin-top: 3.75em;
  margin-bottom: 3.75em;
}

.footer-col-heading {
  margin-bottom: 2.5em;
}
.footer-col-heading svg {
  height: 38px;
  margin-right: 1em;
}

.footer-cta-section {
  position: relative;
}
.footer-cta-section .cta-airplane {
  position: absolute;
  height: 450px;
  right: -216px;
  top: 0;
  transform: scaleX(-1);
}
@media (max-width: 1400px) {
  .footer-cta-section .cta-airplane {
    right: -320px;
  }
}
@media (max-width: 1200px) {
  .footer-cta-section .cta-airplane {
    display: none;
  }
}

.section-cta-wrap {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(90deg, rgba(73, 207, 195, 0.97) 0%, rgba(44, 184, 184, 0.97) 100%);
  border-radius: 50px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 3em;
}
.section-cta-wrap h2 {
  max-width: 640px;
  text-align: center;
  margin-bottom: 2rem;
}
.section-cta-wrap p {
  margin-bottom: 2rem;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.section-cta-wrap .cta-left-image {
  position: absolute;
  left: -80px;
  bottom: -32px;
  height: 380px;
  rotate: 24deg;
}
@media (max-width: 1200px) {
  .section-cta-wrap .cta-left-image {
    height: 300px;
    left: -120px;
  }
}
@media (max-width: 992px) {
  .section-cta-wrap .cta-left-image {
    height: 180px;
    left: -40px;
  }
}
@media (max-width: 520px) {
  .section-cta-wrap .cta-left-image {
    display: none;
  }
}

.partners {
  margin-bottom: 6em;
}
.partners p {
  margin-top: 1em;
  margin-bottom: 3em;
}

.partners-wrap-wrap {
  display: flex;
  justify-content: center;
}
.partners-wrap-wrap .partners-img-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5em;
  max-width: 760px;
}
.partners-wrap-wrap .partners-img-wrap img {
  height: 106px;
}

.f-contact-row {
  margin-top: 1.5em !important;
  font-weight: 800 !important;
  gap: 1.25em !important;
}

/*border-radius*/
.ds_HPsection {
  position: relative;
  aspect-ratio: 24/13;
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .ds_HPsection {
/*     height: 100vh; */
/*     height: calc(var(--vh, 1vh) * 100); */
    aspect-ratio: unset;
  }
}
.ds_HPsection figure {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ddd;
}
.ds_HPsection figure .ds_hp_slider_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 5;
}
.ds_HPsection figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.ds_HPsection figure img.layer_1 {
  z-index: 4;
}
.ds_HPsection figure img.layer_2 {
  z-index: 3;
}
.ds_HPsection figure img.layer_3 {
  z-index: 2;
}
.ds_HPsection figure img.layer_4 {
  z-index: 1;
}
.ds_HPsection .ds_sliderHP_wrap {
  width: 100%;
  height: 100%;
  margin-top: 128px;
  padding-bottom: 64px;
}
.ds_HPsection .ds_sliderHP_wrap .ds_sliderHP_con {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  height: 100%;
  padding-top: 2em;
}
@media (max-width: 1200px) {
  .ds_HPsection .ds_sliderHP_wrap .ds_sliderHP_con {
    flex-direction: column;
  }
}
.ds_HPsection .ds_sliderHP_wrap .ds_sliderHP_con h1 {
  color: #202020;
}
.ds_HPsection .ds_sliderHP_wrap .ds_sliderHP_con > div {
  display: flex;
  flex-direction: column;
  max-width: 35.25em;
  height: fit-content;
  position: relative;
  box-sizing: content-box;
  gap: 1.125em;
}
.ds_HPsection .ds_sliderHP_wrap .ds_sliderHP_con > div .sliderHP_btns {
  display: flex;
  gap: 2em;
  margin-top: 0.5em;
}
@media (max-width: 560px) {
  .ds_HPsection .ds_sliderHP_wrap .ds_sliderHP_con > div .sliderHP_btns {
    flex-direction: column;
  }
}

.hp_subheading {
  font-weight: 800;
  font-size: 0.875em;
  letter-spacing: 4px;
}

.hp_slider_image {
  width: 60%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1400px) {
  .hp_slider_image {
    margin-bottom: -48px;
  }
}
@media (max-width: 1200px) {
  .hp_slider_image {
    display: none;
  }
}

.slidervideo {
  position: relative;
  z-index: 99;
  display: flex;
  justify-content: center;
  margin-top: -4%;
}
@media (max-width: 1500px) {
  .slidervideo {
    margin-top: -128px;
  }
}
@media (max-width: 1400px) {
  .slidervideo {
    margin-top: -16px;
  }
}
@media (max-width: 1200px) {
  .slidervideo {
    margin-top: 32px;
  }
}
.slidervideo video {
  border-radius: 30px;
  width: 100%;
  aspect-ratio: 930 / 523;
}

.ds_sliderHP_text {
  font-weight: 600;
  margin-top: 0.5em;
}

.ds_sliderHP_title {
  font-size: 58px;
  margin-top: 0.5rem;
}
@media (max-width: 560px) {
  .ds_sliderHP_title {
    font-size: 3.25em;
  }
}

/*border-radius*/
.ds_features {
  padding: 3.75em 0;
  background: #151C1C;
  margin-top: -120px;
  padding-top: 200px;
}

/* @media (max-width: 767px) {
	.ds_features {
		margin-top: -264px !important;
	}
} */

.ds_features h2 {
  color: #FFFFFF;
  margin-top: 32px;
  margin-bottom: 64px;
  text-align: center;
  max-width: 700px;
}
.ds_features .subheading {
  color: #FFFFFF;
  text-align: center;
}
.ds_features .container .ds_features_wrap {
  display: grid;
  grid-template-columns: calc(25% - 64px) calc(25% - 64px) calc(25% - 64px) calc(25% - 64px);
  gap: 84px;
}
@media (max-width: 1200px) {
  .ds_features .container .ds_features_wrap {
    grid-template-columns: calc(33% - 22px) calc(33% - 22px) calc(33% - 22px);
    gap: 32px;
  }
}
@media (max-width: 992px) {
  .ds_features .container .ds_features_wrap {
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
    gap: 40px;
  }
}
.ds_features .container .ds_features_wrap .ds_features_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1019607843);
  padding-bottom: 3em;
}
.ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.125em;
}
.ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top .h3-feature-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width:560px) {
 .ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top .h3-feature-wrap {
    height: auto !important;
  }
}

.ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top h3 {
  line-height: 120%;
  font-size: 1.5em;
}
@media (max-width: 992px) {
  .ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top h3 {
    height: 48px;
  }
}
@media (max-width: 560px) {
  .ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top h3 {
    height: auto;
    margin-bottom: 1rem;
  }
}
.ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top img {
  height: 64px;
}
@media (max-width: 640px) {
  .ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top img {
    height: 48px;
  }
}

.feature-p {
  line-height: 180% !important;
}

/*border-radius*/
.ds_imageText {
  padding: 3.75em 0;
}
.ds_imageText .container h1 {
  margin-bottom: 1.375rem;
}
.ds_imageText .container .ds_imageText_wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 3em;
  align-items: center;
}
.ds_imageText .container .ds_imageText_wrap.reverse {
  flex-direction: row;
}
@media (max-width: 991px) {
  .ds_imageText .container .ds_imageText_wrap.reverse {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .ds_imageText .container .ds_imageText_wrap {
    flex-direction: column;
  }
}
.ds_imageText .container .ds_imageText_wrap .ds_imageText_left {
  flex: 1;
}
.ds_imageText .container .ds_imageText_wrap .ds_imageText_left .imageText_link {
  margin-top: 2em;
}
.ds_imageText .container .ds_imageText_wrap .ds_imageText_right {
  width: 37.5em;
  height: 32.125em;
  overflow: hidden;
  border-radius: 1.25em;
}
@media (max-width: 1399px) {
  .ds_imageText .container .ds_imageText_wrap .ds_imageText_right {
    width: 30.5em;
    height: 25.125em;
  }
}
@media (max-width: 1199px) {
  .ds_imageText .container .ds_imageText_wrap .ds_imageText_right {
    width: 25.5em;
    height: 20.125em;
    max-width: 100%;
  }
}
.ds_imageText .container .ds_imageText_wrap .ds_imageText_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/*border-radius*/
.ds_news {
  padding: 3.75em 0;
}
.ds_news .container .ds_section_title {
  gap: 1em;
  margin-bottom: 1.75em;
}
.ds_news .container .ds_section_title h2 {
  text-align: center;
  margin-bottom: 1.75rem;
}
.ds_news .container .ds_news_text {
  font-size: 1em;
  color: #666666;
}
.ds_news .container .ds_news_wrap {
  display: grid;
  padding: 2.125em 0;
}
.ds_news .container .ds_news_wrap.ds_news_col2 {
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  .ds_news .container .ds_news_wrap {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 575px) {
  .ds_news .container .ds_news_wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/*border-radius*/
.ds_news_item {
  position: relative;
  text-align: left;
  text-decoration: none;
  display: flex;
  gap: 2em;
  padding: 1em;
}
.ds_news_item .ds_news_item_left .ds_news_img_wrapper {
  overflow: hidden;
  border-radius: 7px;
}
.ds_news_item p {
  color: #666666;
  font-size: 1.125em;
  line-height: 1.5em;
  margin-bottom: 0;
}
.ds_news_item img {
  height: auto;
  transition: all;
  transition-duration: 200ms;
}
.ds_news_item .ds_tag {
  position: absolute;
  top: 0;
  right: 0;
  color: #FFFFFF;
}
.ds_news_item h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  height: 2.5em;
  font-size: 26px;
  font-weight: 500;
  color: #333333;
}
.ds_news_item .ds_news_item_meta {
  display: flex;
  justify-content: space-between;
  margin: 0.437rem 0;
}
.ds_news_item .ds_news_item_meta .ds_news_item_author {
  font-size: 1em;
  font-weight: 400;
  color: #333333;
}
.ds_news_item .ds_news_item_meta .ds_news_item_date {
  font-size: 1em;
  font-weight: 400;
  color: #666666;
}

.ds_news_item:hover img {
  scale: 1.1;
}

.accordion_wrapper {
  display: grid;
  grid-template-columns: calc(50% - 16px) calc(50% - 16px);
  gap: 32px;
}
@media (max-width: 992px) {
  .accordion_wrapper {
    grid-template-columns: 100%;
  }
}
.accordion_wrapper .accordion_item {
  border-radius: 20px;
}
.accordion_wrapper .accordion_item .accordion_header {
  display: flex;
  border: 0;
  background: #F9F9F9;
  color: #202020;
  padding: 1em 2.625em;
  font-weight: 700;
  justify-content: space-between;
  width: 100%;
  border-radius: 1.25em;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
}
.accordion_wrapper .accordion_item .accordion_header svg {
  width: 1.75em;
  height: 1.75em;
  transition: 0.4s all;
}
.accordion_wrapper .accordion_item .accordion_header.open svg {
  transform: scaleY(-1);
}
.accordion_wrapper .accordion_item .accordion_body {
  margin-top: -8px;
  background: #F9F9F9;
  border-radius: 0 0 20px 20px;
}
.accordion_wrapper .accordion_item .accordion_panel {
  padding: 1.5em 2.625em;
}
.accordion_wrapper .accordion_item .accordion_panel p {
  font-weight: 500;
}

.ds_jobs_items .ds_job_item {
  width: 26.25em;
  padding: 1.375em;
  box-shadow: 6px 6px 20px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 1.25em;
  color: #202020;
  transition: 0.4s all;
  background: #FFFFFF;
}
.ds_jobs_items .ds_job_item:hover {
  transform: scale(1.05);
}
@media (max-width: 575px) {
  .ds_jobs_items .ds_job_item {
    width: 100%;
  }
}
.ds_jobs_items .ds_job_item img {
  height: 9.75em;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0.5em;
  overflow: hidden;
}
.ds_jobs_items .ds_job_item a {
  color: currentColor;
  text-decoration: none;
}
.ds_jobs_items .ds_job_item a > div {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  margin-top: 0.25em;
}
.ds_jobs_items .jobs_slider > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.625em;
  row-gap: 1.5em;
}
@media (max-width: 991px) {
  .ds_jobs_items .jobs_slider > div {
    grid-template-columns: 1fr;
  }
}

body.page-template-ds_jobs .ds_jobs_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.25em;
}
@media (max-width: 1399px) {
  body.page-template-ds_jobs .ds_jobs_items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) {
  body.page-template-ds_jobs .ds_jobs_items {
    grid-template-columns: 1fr;
  }
}

body.single-job .ds_job_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  body.single-job .ds_job_wrap {
    grid-template-columns: 1fr;
  }
  body.single-job .ds_job_wrap .ds_job_right_img {
    display: none;
  }
}
body.single-job .ds_job_wrap:nth-of-type(1) h1 {
  text-align: start;
}
body.single-job .ds_job_wrap:nth-of-type(1) h2 {
  margin-bottom: 2rem;
  margin-top: 2.625rem;
}
body.single-job .ds_job_wrap p {
  max-width: 29.5em;
  text-align: start;
}
body.single-job .ds_job_wrap .ds_job_right {
  text-align: center;
}
body.single-job .ds_job_wrap:nth-of-type(2) {
  margin-top: 2.625rem;
}
body.single-job .ds_job_wrap:nth-of-type(2) .ds_job_left_title,
body.single-job .ds_job_wrap:nth-of-type(2) .ds_job_right_title {
  gap: 1.625em;
  margin-bottom: 2em;
}
body.single-job .ds_job_wrap:nth-of-type(2) p {
  margin-bottom: 2em;
}

body.single-service .ds_imageText {
  padding-top: 0;
}
body.single-service .ds_imageText h1 {
  text-align: start;
}
body.single-service .ds_imageText h2 {
  margin-bottom: 1.125rem;
}
body.single-service .ds_imageText .container .ds_imageText_wrap .ds_imageText_right {
  height: auto;
  width: unset;
}
body.single-service .ds_features {
  background: unset;
}
body.single-service .ds_features .ds_features_wrap .ds_features_item {
  background: unset;
  color: #202020;
}
body.single-service .ds_features .ds_features_wrap .ds_features_item h3 {
  color: #2CB8B8;
}

.home main {
  padding-top: 64px;
}
.home main .ds_imageText {
  background: url("/wp-content/uploads/2025/06/background-divider.svg") bottom center no-repeat;
  background-size: 100% 100%;
  color: #F9F9F9;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .home main .ds_imageText {
    background-size: 100% 35%;
  }
  .home main .ds_imageText::after {
    background: #202020;
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    bottom: calc(35% - 1px);
    right: 0;
    z-index: -1;
  }
}
.home main .ds_services .ds_services_wrap {
  column-gap: 7.125em;
  position: relative;
  padding: 3.75em 0;
}
.home main .ds_services .ds_services_wrap h1 {
  margin-bottom: 1.125rem;
  max-width: calc(100% - 11rem);
}
.home main .ds_services .ds_services_wrap .services_text {
  margin-bottom: 2em;
  max-width: calc(100% - 11em);
}
.home main .ds_services .ds_services_wrap .services_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.875em;
  row-gap: 1.5em;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .home main .ds_services .ds_services_wrap .services_wrap {
    grid-template-columns: 1fr;
  }
}
.home main .ds_services .ds_services_wrap .services_wrap .ds_services_item a {
  display: flex;
  gap: 2.625em;
  padding: 1.5em;
  background: #2CB8B8;
  box-shadow: 6px 6px 20px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 1.25em;
  text-decoration: none;
  color: currentColor;
  font-weight: 400;
  white-space: unset;
}
.home main .ds_services .ds_services_wrap .services_wrap .ds_services_item h3 {
  color: #F9F9F9;
  margin-bottom: 0.375em;
  min-height: 5rem;
}
@media (max-width: 991px) {
  .home main .ds_services .ds_services_wrap .services_wrap .ds_services_item h3 {
    min-height: unset;
  }
}
.home main .ds_services .ds_services_wrap .services_wrap .ds_services_item img {
  width: 3.875em;
  height: 3.875em;
  align-self: center;
}
.home main .ds_services .ds_services_wrap .ds_services_left {
  height: fit-content;
}
@media (max-width: 1399px) {
  .home main .ds_services .ds_services_wrap .ds_services_left {
    height: 25em;
  }
}
@media (max-width: 1199px) {
  .home main .ds_services .ds_services_wrap .ds_services_left {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
}
.home main .ds_services .ds_services_wrap .ds_services_left img {
  width: auto;
  height: 100%;
}
.home main .ds_jobs {
  padding: 3.75em 0;
}
.home main .ds_jobs .ds_jobs_wrap {
  justify-content: space-between;
  gap: 1.5em;
  flex-wrap: wrap;
}
.home main .ds_jobs .ds_jobs_right {
  min-width: 0;
}
.home main .ds_jobs .ds_jobs_left {
  width: 25em;
  flex-shrink: 0;
}
.home main .ds_jobs .ds_jobs_left h1 {
  margin-bottom: 1.375rem;
}
.home main .ds_jobs .ds_jobs_left .jobs_link {
  margin-top: 2em;
}

.services-slider-section {
  padding: 6em 0;
}
.services-slider-section .container .text-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-slider-section h2 {
  margin-bottom: 3rem;
  margin-top: 1.5rem;
  max-width: 640px;
}
.services-slider-section .swiper-button-prev, .services-slider-section .swiper-button-next {
  height: 40px;
  width: 40px;
  border-radius: 40px;
  background-color: #2CB8B8;
}
.services-slider-section .swiper-button-prev svg, .services-slider-section .swiper-button-next svg {
  fill: none !important;
  height: 14px !important;
}

.service-slide {
  border-radius: 15px;
  color: #FFFFFF;
  background-color: #2CB8B8;
  flex-shrink: 0;
  height: auto;
}
.service-slide img {
  border-radius: 15px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}
.service-slide .service-slide-text {
  width: 100%;
  padding: 2em;
}
.service-slide .service-slide-text p {
  margin: 1em 0;
}

.service-slide.zuby {
  background-color: #D4AF37 !important;
}

.services-under-btns {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-top: 3em;
}
@media (max-width: 540px) {
  .services-under-btns {
    flex-direction: column;
    align-items: center;
  }
}

.why-us-section {
  margin-top: 6em;
  margin-bottom: 6em;
}

.why-us-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .why-us-wrapper {
    flex-direction: column;
    gap: 3em;
  }
}
.why-us-wrapper .why-us-image-wrap {
  border-radius: 40px;
  position: relative;
  width: 65%;
  height: 678px;
}
@media (max-width: 992px) {
  .why-us-wrapper .why-us-image-wrap {
    width: 100%;
  }
}
.why-us-wrapper .why-us-image-wrap img {
  position: absolute;
  border-radius: 40px;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.why-us-wrapper .why-us-image-wrap .why-us-image-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border-radius: 40px;
  padding: 4em 3em;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(-47.99deg, rgba(0, 0, 0, 0) 32.48%, #000000 95.57%), linear-gradient(-71.03deg, rgba(0, 0, 0, 0) 4.94%, rgba(0, 0, 0, 0.4) 86.34%);
}
.why-us-wrapper .why-us-image-wrap .why-us-image-text .why-us-text-upper {
  max-width: 400px;
}
.why-us-wrapper .why-us-image-wrap .why-us-image-text .why-us-text-upper h2 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.why-us-wrapper .why-us-benefits-wrap {
  padding: 0 3em;
  width: 32%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5em;
  border-radius: 40px;
  background-color: #F9F9F9;
}
@media (max-width: 992px) {
  .why-us-wrapper .why-us-benefits-wrap {
    width: 100%;
    padding: 3em 3em;
  }
}
.why-us-wrapper .why-us-benefits-wrap .why-us-benefit {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.why-us-wrapper .why-us-benefits-wrap .why-us-benefit img {
  height: 56px;
  margin-bottom: 1em;
}
.why-us-wrapper .why-us-benefits-wrap .why-us-benefit span {
  font-weight: bold;
  font-size: 1.25em;
}

.about-us-section {
  margin-top: 6em;
  margin-bottom: 6em;
}
.about-us-section .about-us-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .about-us-section .about-us-wrap {
    flex-direction: column;
    gap: 2em;
  }
}
.about-us-section .about-us-wrap .about-us-image-wrap {
  height: 800px;
  width: 45%;
  position: relative;
}
@media (max-width: 1200px) {
  .about-us-section .about-us-wrap .about-us-image-wrap {
    width: 48%;
  }
}
@media (max-width: 992px) {
  .about-us-section .about-us-wrap .about-us-image-wrap {
    width: 100%;
  }
}
.about-us-section .about-us-wrap .about-us-image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
}
.about-us-section .about-us-wrap .about-us-image-wrap .about-us-img-icon-wrap {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background-color: white;
  border-radius: 40px;
  height: 56px;
  display: flex;
  align-items: center;
  width: 156px;
  padding-left: 6px;
}
.about-us-section .about-us-wrap .about-us-image-wrap .about-us-img-icon-wrap img {
  height: 42px;
  width: 42px;
  margin-right: 16px;
}
.about-us-section .about-us-wrap .about-us-image-wrap .about-us-img-icon-wrap span {
  font-weight: bold;
}
.about-us-section .about-us-wrap .about-us-text {
  width: 46%;
}
@media (max-width: 992px) {
  .about-us-section .about-us-wrap .about-us-text {
    width: 100%;
  }
}
.about-us-section .about-us-wrap .about-us-text h2 {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  max-width: 80%;
}
.about-us-section .about-us-wrap .about-us-text h3 {
  font-size: 1.125em;
  margin-bottom: 1.25em;
}
.about-us-section .about-us-wrap .about-us-text p {
  margin-bottom: 1.5em;
}
.about-us-section .about-us-wrap .about-us-text .about-us-benefits {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 2em;
}
.about-us-section .about-us-wrap .about-us-text .about-us-benefits .about-us-ben {
  display: flex;
  gap: 1em;
}
.about-us-section .about-us-wrap .about-us-text .about-us-benefits .about-us-ben .ben-icon-img-wrap {
  height: 36px;
  width: 36px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2CB8B8;
}
.about-us-section .about-us-wrap .about-us-text .about-us-btns {
  display: flex;
  gap: 1.5em;
}
@media (max-width: 540px) {
  .about-us-section .about-us-wrap .about-us-text .about-us-btns {
    flex-direction: column;
    align-items: center;
  }
}

.hp-reviews-section {
  padding: 6em 0;
}
.hp-reviews-section h2 {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.hp-reviews-section .hp-rev-swiper {
  margin-top: 2em;
}
.hp-reviews-section .swiper-button-prev, .hp-reviews-section .swiper-button-next {
  height: 40px;
  width: 40px;
  border-radius: 40px;
  background-color: #2CB8B8;
}
.hp-reviews-section .swiper-button-prev svg, .hp-reviews-section .swiper-button-next svg {
  fill: none !important;
  height: 14px !important;
}

.hp-review-slide {
  display: flex !important;
  justify-content: center !important;
}
.hp-review-slide .hp-review-slide-content {
  padding: 2em;
  border-radius: 30px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  max-width: 980px;
}
@media (max-width: 1200px) {
  .hp-review-slide .hp-review-slide-content {
    max-width: 80%;
  }
}
@media (max-width: 992px) {
  .hp-review-slide .hp-review-slide-content {
    flex-direction: column;
  }
}
@media (max-width: 580px) {
  .hp-review-slide .hp-review-slide-content {
    max-width: 90%;
  }
}
.hp-review-slide .hp-review-image {
  width: 500px;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}
@media (max-width: 1200px) {
  .hp-review-slide .hp-review-image {
    width: 360px;
    height: 280px;
  }
}
@media (max-width: 992px) {
  .hp-review-slide .hp-review-image {
    width: 100%;
    height: auto;
  }
}
.hp-review-slide .hp-review-left-content {
  max-width: 40%;
}
@media (max-width: 992px) {
  .hp-review-slide .hp-review-left-content {
    max-width: unset;
    width: 100%;
  }
}
.hp-review-slide .hp-review-left-content .review-stars {
  margin-bottom: 1.5em;
  margin-top: 4em;
}
@media (max-width: 1200px) {
  .hp-review-slide .hp-review-left-content .review-stars {
    margin-top: 1.5em;
  }
}
.hp-review-slide .hp-review-left-content p {
  margin-bottom: 1.5em;
}
.hp-review-slide .hp-review-left-content .hp-rev-client-wrap {
  margin-top: 1.5em;
  display: flex;
  gap: 1em;
}
.hp-review-slide .hp-review-left-content .hp-rev-client-wrap .hp-client-info {
  display: flex;
  flex-direction: column;
}
.hp-review-slide .hp-review-left-content .hp-rev-client-wrap .hp-client-info span:first-child {
  font-weight: 800;
  font-size: 1.5em;
}
.hp-review-slide .hp-review-left-content .hp-rev-client-wrap .hp-client-info span:last-child {
  color: #2CB8B8;
  font-weight: 700;
}
.hp-review-slide .hp-review-left-content .hp-rev-client-wrap img {
  border-radius: 72px;
  height: 64px;
  width: 64px;
  object-fit: cover;
  object-position: center;
}

.hp-blog-section {
  padding-top: 6em;
}

.reviews-pagination {
  margin-top: 2em;
}
.reviews-pagination .swiper-pagination-bullet {
  border: 1px solid rgba(44, 184, 184, 0.4);
  background: rgba(44, 184, 184, 0.2);
  height: 16px;
  width: 16px;
  opacity: 1;
}
.reviews-pagination .swiper-pagination-bullet-active {
  border: 1px solid #2CB8B8;
  background-color: #2CB8B8;
}

.blog-grid {
  display: grid;
  justify-content: space-between;
  grid-template-columns: calc(33% - 20px) calc(33% - 20px) calc(33% - 20px);
  gap: 30px;
  margin-bottom: 6em;
  margin-top: 4em;
}
@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 100%;
  }
}

article {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #F9F9F9;
  border-radius: 30px;
}
article img {
  border-radius: 30px;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}
article .article-text-wrap {
  padding-top: 1.5em;
  padding-left: 2em;
  padding-right: 2em;
  padding-bottom: 2.5em;
  height: 100%;
  display: flex;
  flex-direction: column;
}
article .article-text-wrap .art-heading-link {
  text-decoration: none;
}
article .article-text-wrap h2 {
  font-size: 1.5em;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
article .article-text-wrap p {
  margin-bottom: 1.5em;
  font-weight: 500;
}
article .article-text-wrap .rubric-span {
  position: absolute;
  left: 24px;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  font-weight: 700;
  padding: 0.25em 1em;
  border-radius: 40px;
}
article .article-text-wrap .rubric-span .rubric-span-icon {
  color: #2CB8B8;
  font-size: 24px;
}
article .article-text-wrap a {
  margin-top: 1.5em;
}
article .article-text-wrap hr {
  margin-top: auto;
}

.article-date {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-date span {
  font-weight: 700;
}

.blog-h2 {
  margin-top: 1.5rem;
}

.single-article-section {
  margin-bottom: 6em;
}
.single-article-section h1 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
  font-size: 3em;
}
.single-article-section .single-article-img {
  margin-top: 3em;
  border-radius: 50px 50px 0 0;
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  object-position: center;
}
.single-article-section .blog-content {
  margin-top: 3em;
}
.single-article-section .blog-content h2 {
  margin-bottom: 2rem;
}
.single-article-section .blog-content p {
  margin-bottom: 2.5em;
  font-weight: 500;
  font-size: 17px;
}

.single-rubric-span {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 1.5em;
  font-weight: 700;
}
.single-rubric-span .rubric-span-icon {
  color: #2CB8B8;
  font-size: 24px;
  font-weight: 700;
}

.hair-hero {
  margin-bottom: 6em;
}
.hair-hero h1 {
  font-size: 3.75em;
  margin-bottom: 2rem;
  margin-top: 1rem;
  max-width: 880px;
  text-align: center;
}
@media (max-width: 640px) {
  .hair-hero h1 {
    font-size: 2.5em;
  }
}
.hair-hero p {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 820px;
  font-weight: 600;
}
.hair-hero .vlasy-hero-img {
  width: 100%;
  aspect-ratio: 16/6.3;
  object-fit: cover;
  object-position: center;
  border-radius: 50px 50px 0 0;
  margin-top: 4em;
}
.hair-hero .hero-btns {
  display: flex;
  align-items: center;
  gap: 2em;
}

.hair-second .hair-second-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .hair-second .hair-second-wrap {
    flex-direction: column;
    gap: 4em;
  }
}
.hair-second .hair-second-text {
  width: 48%;
}
@media (max-width: 992px) {
  .hair-second .hair-second-text {
    width: 100%;
  }
}
.hair-second .hair-second-text h2 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.hair-second .hair-second-text p {
  font-weight: 600;
}
.hair-second .hair-second-text .sec-ben {
  display: flex;
  gap: 1em;
  margin-top: 2em;
}
.hair-second .hair-second-text .sec-ben .sec-ben-icon {
  height: 48px;
  width: 48px;
  background: linear-gradient(90deg, #49CFC3 0%, #2CB8B8 100%);
  border-radius: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.hair-second .hair-second-text .sec-ben .sec-ben-icon svg {
  height: 20px;
}
.hair-second .hair-second-text .sec-ben .sec-ben-text {
  display: flex;
  flex-direction: column;
}
.hair-second .hair-second-text .sec-ben .sec-ben-text span:first-child {
  font-weight: 800;
  font-size: 18px;
}
.hair-second .hair-second-text .sec-ben .sec-ben-text span:last-child {
  font-weight: 600;
}
.hair-second .hair-second-image {
  width: 48%;
  aspect-ratio: 20/18;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 40px 40px;
}
@media (max-width: 992px) {
  .hair-second .hair-second-image {
    width: 100%;
  }
}

.hair-vyhody h2 {
  margin-top: 1.5rem;
}
.hair-vyhody .hair-vyhody-grid {
  margin-top: 4em;
  display: grid;
  grid-template-columns: calc(25% - 18px) calc(25% - 18px) calc(25% - 18px) calc(25% - 18px);
  gap: 24px;
}
@media (max-width: 1200px) {
  .hair-vyhody .hair-vyhody-grid {
    grid-template-columns: calc(50% - 12px) calc(50% - 12px);
    gap: 24px;
  }
}
@media (max-width: 560px) {
  .hair-vyhody .hair-vyhody-grid {
    grid-template-columns: 100%;
  }
}
.hair-vyhody .hair-vyhody-grid .hair-vyhoda {
  background-color: #F9F9F9;
  border-radius: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2em;
}
.hair-vyhody .hair-vyhody-grid .hair-vyhoda .hair-icon {
  height: 48px;
  width: 48px;
  background: linear-gradient(90deg, #49CFC3 0%, #2CB8B8 100%);
  border-radius: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
}
.hair-vyhody .hair-vyhody-grid .hair-vyhoda .hair-icon svg {
  height: 20px;
}
.hair-vyhody .hair-vyhody-grid .hair-vyhoda .vyh-first {
  font-weight: 800;
  font-size: 18px;
  padding-bottom: 0.75rem;
}

.prubeh-wrap {
  width: 100%;
  padding: 5em;
  background-color: #2CB8B8;
  border-radius: 30px;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .prubeh-wrap {
    padding: 5em 2em;
  }
}
.prubeh-wrap h2 {
  margin-top: 1.25rem;
}
.prubeh-wrap .prubeh-points-wrap {
  width: 90%;
  display: flex;
  justify-content: space-between;
  margin-top: 3em;
}
@media (max-width: 992px) {
  .prubeh-wrap .prubeh-points-wrap {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .prubeh-wrap .prubeh-points-wrap {
    flex-direction: column;
    align-items: center;
    gap: 2em;
  }
}
.prubeh-wrap .prubeh-points-wrap .prubeh-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 240px;
  text-align: center;
}
@media (max-width: 992px) {
  .prubeh-wrap .prubeh-points-wrap .prubeh-point {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .prubeh-wrap .prubeh-points-wrap .prubeh-point {
    width: 232px;
  }
}
.prubeh-wrap .prubeh-points-wrap .prubeh-point .point-icon-bg {
  height: 104px;
  width: 104px;
  border-radius: 200px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
}
.prubeh-wrap .prubeh-points-wrap .prubeh-point h4 {
  font-size: 1.25em;
  margin-bottom: 0.75em;
}

.metoda-section {
  margin-bottom: 0 !important;
}
.metoda-section .section-blue-p {
  color: #2CB8B8;
  font-size: 1.125em;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.metoda-faq h2 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.metoda-faq .accordion_wrapper {
  margin-top: 4em;
}
.metoda-faq .accordion-icon-wrap {
  height: 40px;
  width: 40px;
  background: linear-gradient(90deg, #49CFC3 0%, #2CB8B8 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
}
.metoda-faq .accordion-icon-wrap svg {
  height: 20px !important;
  width: 20px !important;
}

.hair-pricing-head-section h2 {
  margin-top: 1.5rem;
}
.hair-pricing-head-section .hair-pricing-wrap {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  justify-content: space-between;
  margin-top: 4em;
}
@media (max-width: 992px) {
  .hair-pricing-head-section .hair-pricing-wrap {
    grid-template-columns: 65%;
    justify-content: center;
    gap: 2em;
  }
}
@media (max-width: 767px) {
  .hair-pricing-head-section .hair-pricing-wrap {
    grid-template-columns: 100%;
  }
}
.hair-pricing-head-section .hair-pricing-wrap .hair-pricing-single {
  display: flex;
  flex-direction: column;
  padding: 2em;
  border-radius: 15px;
  height: fit-content;
}
.hair-pricing-head-section .hair-pricing-wrap .hair-pricing-single h3 {
  font-weight: 600;
  font-size: 1.5em;
}
.hair-pricing-head-section .hair-pricing-wrap .hair-pricing-single .price {
  font-size: 3em;
  font-weight: 800;
}
@media (max-width: 1200px) {
  .hair-pricing-head-section .hair-pricing-wrap .hair-pricing-single .price {
    font-size: 2.5em;
  }
}
.hair-pricing-head-section .hair-pricing-wrap .hair-pricing-single .btn {
  margin-top: 1em;
  margin-bottom: 1.5em;
}
.hair-pricing-head-section .hair-pricing-wrap .hair-pricing-single h5 {
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hair-pricing-head-section .hair-pricing-wrap .hair-pricing-single .pricing-ben-wrap {
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.1019607843);
  padding: 0.75em 0;
  display: flex;
  align-items: center;
  gap: 1em;
}
.hair-pricing-head-section .hair-pricing-wrap .hair-pricing-single .pricing-ben-wrap .pricing-ben-icon-wrap {
  height: 32px;
  width: 32px;
  flex-shrink: 0;
  background: linear-gradient(90deg, #49CFC3 0%, #2CB8B8 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
}
.hair-pricing-head-section .hair-pricing-single.zakladni {
  border: 1.5px solid rgba(0, 0, 0, 0.1019607843);
}
.hair-pricing-head-section .hair-pricing-single.zakladni .price {
  color: #2CB8B8;
}
.hair-pricing-head-section .hair-pricing-single.standard {
  background-color: #F9F9F9;
}
.hair-pricing-head-section .hair-pricing-single.standard .price {
  color: #D4AF37;
}
.hair-pricing-head-section .hair-pricing-single.standard .pricing-ben-icon-wrap {
  background: #D4AF37 !important;
}
.hair-pricing-head-section .hair-pricing-single.premium {
  background-color: #2CB8B8;
  color: white;
}
.hair-pricing-head-section .hair-pricing-single.premium .pricing-ben-icon-wrap {
  background: white !important;
}
.hair-pricing-head-section .hair-pricing-single.premium .pricing-ben-icon-wrap img {
  filter: invert(1);
}
.hair-pricing-head-section .hair-pricing-single.premium .btn {
  background-color: white;
  color: black;
}
.hair-pricing-head-section .hair-pricing-single.premium .btn .button-icon {
  background-color: rgba(0, 0, 0, 0.15) !important;
}
.hair-pricing-head-section .hair-pricing-single.premium .btn .button-icon svg {
  filter: invert(1);
}
.hair-pricing-head-section .hair-pricing-single.premium .btn:after {
  background-color: white !important;
}
.hair-pricing-head-section .hair-pricing-single.premium .btn::before {
  background-color: rgb(230, 230, 230) !important;
}

.teeth-second .hair-second-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .teeth-second .hair-second-wrap {
    flex-direction: column;
    gap: 4em;
  }
}
.teeth-second .hair-second-text {
  width: 48%;
}
@media (max-width: 992px) {
  .teeth-second .hair-second-text {
    width: 100%;
  }
}
.teeth-second .hair-second-text h2 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.teeth-second .hair-second-text p {
  font-weight: 600;
  margin-top: 2em;
}
.teeth-second .hair-second-text .poddtext {
  font-size: 1.125em;
  font-weight: 700;
  margin-top: 0 !important;
}
.teeth-second .hair-second-text .sec-ben {
  display: flex;
  gap: 1em;
  margin-top: 2em;
}
.teeth-second .hair-second-text .sec-ben .sec-ben-icon {
  height: 48px;
  width: 48px;
  background: linear-gradient(90deg, #49CFC3 0%, #2CB8B8 100%);
  border-radius: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.teeth-second .hair-second-text .sec-ben .sec-ben-icon svg {
  height: 20px;
}
.teeth-second .hair-second-text .sec-ben .sec-ben-text {
  display: flex;
  flex-direction: column;
}
.teeth-second .hair-second-text .sec-ben .sec-ben-text span:first-child {
  font-weight: 800;
  font-size: 18px;
}
.teeth-second .hair-second-text .sec-ben .sec-ben-text span:last-child {
  font-weight: 600;
}
.teeth-second .hair-second-image {
  width: 48%;
  aspect-ratio: 20/18;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 40px 40px;
}
@media (max-width: 992px) {
  .teeth-second .hair-second-image {
    width: 100%;
  }
}

.postup-section {
  padding: 8em 0;
}
.postup-section h2 {
  margin-top: 1.5rem;
}
.postup-section .steps-wrap {
  margin-top: 5em;
  display: grid;
  grid-template-columns: 35% 25% 35%;
  justify-content: space-between;
}
.postup-section .steps-wrap .step {
  min-height: 320px;
}
.postup-section .steps-wrap .step-full {
  padding: 3em;
  background-color: white;
  border-radius: 20px;
  transition: background 0.5s ease, background-color 0.5s ease, color 0.5s ease;
}
.postup-section .steps-wrap .step-full.active {
  background: linear-gradient(90deg, #49CFC3 0%, #2CB8B8 100%);
  background-color: unset;
  color: white;
}
.postup-section .steps-wrap .step-full h3 {
  font-size: 1.5em;
  font-weight: 800;
  line-height: 2rem;
  margin-bottom: 1em;
}
.postup-section .steps-wrap .progress-center-wrap {
  margin-top: 128px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.postup-section .steps-wrap .progress-center-wrap .progress-joiner {
  height: 240px;
  width: 4px;
  background-color: white;
  transition: background-color 0.5s ease;
}
@media (max-width: 1200px) {
  .postup-section .steps-wrap .progress-center-wrap .progress-joiner {
    height: 280px;
  }
}
.postup-section .steps-wrap .progress-center-wrap .progress-joiner.active {
  background-color: #2CB8B8;
}
.postup-section .steps-wrap .progress-center-wrap .progress-cirlce {
  height: 80px;
  width: 80px;
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: #2CB8B8;
  font-weight: 800;
  font-size: 1.5em;
  transition: background-color 0.5s ease, color 0.5s ease;
}
.postup-section .steps-wrap .progress-center-wrap .progress-cirlce.active {
  background-color: #2CB8B8;
  color: white;
}

#mobile-steps {
  display: none;
}
#mobile-steps .step-full {
  padding: 3em;
  background-color: white;
  border-radius: 20px;
  transition: background 0.5s ease, background-color 0.5s ease, color 0.5s ease;
}
#mobile-steps .step-full.active {
  background: linear-gradient(90deg, #49CFC3 0%, #2CB8B8 100%);
  background-color: unset;
  color: white;
}
#mobile-steps .step-full h3 {
  font-size: 1.5em;
  font-weight: 800;
  line-height: 2rem;
  margin-bottom: 1em;
}

@media (max-width: 992px) {
  #desktop-steps {
    display: none;
  }
  #mobile-steps {
    margin-top: 4em;
    display: grid;
    gap: 4em;
  }
}
.teth-pricing-section .teeth-prices-wrap {
  border: 1.5px solid #dadada;
  padding: 2em;
  border-radius: 15px;
}
.teth-pricing-section .teeth-prices-wrap .head-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2em;
}
.teth-pricing-section .teeth-prices-wrap .head-row h2 {
  font-size: 1.5em;
  font-weight: 600;
}
.teth-pricing-section .teeth-prices-wrap .teeth-prices-items {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.teth-pricing-section .teeth-prices-wrap .teeth-prices-items .teeth-item {
  width: 100%;
  background-color: #F9F9F9;
  border-radius: 10px;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 520px) {
  .teth-pricing-section .teeth-prices-wrap .teeth-prices-items .teeth-item {
    padding: 1em 1em;
  }
}
.teth-pricing-section .teeth-prices-wrap .teeth-prices-items .teeth-item span:first-child {
  font-weight: 600;
  max-width: 65%;
}
.teth-pricing-section .teeth-prices-wrap .teeth-prices-items .teeth-item span:last-child {
  font-weight: 800;
  color: #2CB8B8;
}
.teth-pricing-section .teeth-prices-wrap .note {
  margin-top: 1rem;
  margin-left: 2rem;
  font-weight: 800;
  color: #2CB8B8;
}
.teth-pricing-section .teeth-price-btns {
  margin-top: 2em;
  display: flex;
  justify-content: center;
  gap: 1.5em;
}
@media (max-width: 520px) {
  .teth-pricing-section .teeth-price-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width:767px) {
    .column {
        text-align: left !important;
    }

    .column.c2, .column.c3 {
      padding-left: 0 !important;
      display: flex;
      flex-direction: column;
      align-items: start !important;
    }
}

.premeny-switch-wrap {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-top: 3em;
}

@media (max-width:520px) {
  .premeny-switch-wrap {
    gap: 0.75em;
  }
}

.premeny-switch {
  border: 2px solid #2CB8B8;
  border-radius: 50px;
  height: 52px;
  width: 124px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 800;
}

.premeny-switch.pre-active {
  background-color: #2CB8B8;
  color: white;
}

.premeny-switch.pre-active svg {
  filter: invert(1);
}

.premeny-zuby {
  border: 2px solid #D4AF37 !important;
}

.premeny-zuby.pre-active {
  background-color: #D4AF37 !important;
}

.premeny-zuby.pre-active span {
  color: white;
}

.premeny-zuby.pre-active svg {
  filter: invert(1);
}

.promeny-img-grid {
  margin-top: 4em;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 32px;
}

@media (max-width:992px) {
  .promeny-img-grid {
    grid-template-columns: auto auto;
  }
}

@media (max-width:767px) {
  .promeny-img-grid {
    gap: 16px;
  }
}

.promeny-img-grid img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.teeth-premium {
  background-color: #D4AF37 !important;
}

.teeth-doprovod-wrap {
  height: 52px;
  padding-right: 28px;
  background-color: #D4AF37;
  border-radius: 52px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
  width: fit-content;
  color: white;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.teeth-doprovod-wrap img {
  height: 52px;
  width: 52px;
  border-radius: 52px;
  object-fit: cover;
}

.doprovod-white {
  background-color: white !important;
  color: black !important;
}

.teeth-doporuceni-wrap {
  position: relative;
  padding: 4em;
  border-radius: 30px;
  background-color: #2CB8B8;
  color: white !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.teeth-doporuceni-wrap h2{
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.teeth-doporuceni-wrap span{
  font-weight: 700;
}

.teeth-doporuceni-wrap p{
  max-width: 660px;
  line-height: 160%;
  font-weight: 600;
  margin-bottom: 2em;
}

.teeth-dop-img-one {
  position: absolute;
  top: 48px;
  left: 48px;
}

.teeth-dop-img-two {
  position: absolute;
  bottom: 48px;
  right: 48px;
}

@media (max-width:600px) {
  .teeth-dop-img-one {
    top: 24px;
    left: 24px;
    height: 28px;
    width: auto;
  }
  
  .teeth-dop-img-two {
    bottom: 24px;
    right: 24px;
    height: 28px;
    width: auto;
  }
}

.teeth-before-after-section {
    padding: 8em 0;
}

.ds_form_notice {
  color: white !important;
  margin-top: 1.5em;
}

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