@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: 14px;
  }
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: #000000;
  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: 14px;
  }
}

h1, h2, h3, h4, h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  line-height: 1.18;
}

h1 {
  font-size: 3.5em;
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.8em;
  }
}

h2 {
  font-size: 3em;
}
@media (max-width: 767px) {
  h2 {
    font-size: 2em;
  }
}

h3 {
  font-size: 1.5em;
  line-height: 1.33;
}

h4 {
  font-size: 1.25em;
  font-weight: 800;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

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

.subheading-wrap {
  display: flex;
  align-items: center;
  gap: 1.5em;
  text-transform: uppercase;
  font-weight: 700;
  width: fit-content;
}

.subheading-wrap-white {
  display: flex;
  align-items: center;
  gap: 1.5em;
  text-transform: uppercase;
  font-weight: 700;
  color: #FFFFFF;
  width: fit-content;
}

select option {
  color: black !important;
}

.btn,
a.btn,
.button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  background-color: #D32616;
  color: #FFFFFF;
  gap: 1em;
  outline: 0;
  padding-left: 1.75em;
  padding-right: 1.75em;
  height: 60px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: all 0.25s;
  font-weight: 600;
  font-family: "Poppins", sans-serif !important;
  outline: 0 !important;
  border: 0;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
}
.btn:hover,
a.btn:hover,
.button:hover {
  background-color: #ac1c0f;
  box-shadow: 5px 5px 12px 0px rgba(0, 0, 0, 0.5098039216);
}
.btn svg,
a.btn svg,
.button svg {
  width: 1.375em;
  height: 1.375em;
}

.btn-small {
  padding: 16px 20px;
  height: auto;
}

.btn.btn-outline {
  box-shadow: unset;
  border: 1.5px solid #D32616;
  background-color: #FFFFFF;
  color: #D32616;
}
.btn.btn-outline:hover {
  color: #FFFFFF;
  background-color: #D32616;
}

.btn.white-btn {
  background-color: white;
  color: black;
  border: 0 !important;
}
.btn.white-btn:hover {
  background-color: rgb(223, 223, 223);
}

.btn.purple-btn {
  background-color: #7A439A;
}
.btn.purple-btn:hover {
  background-color: #62327d;
}

.btn.btn-outline-purple {
  box-shadow: unset;
  border: 1.5px solid #7A439A;
  background-color: #FFFFFF;
  color: #7A439A;
}
.btn.btn-outline-purple:hover {
  color: #FFFFFF;
  background-color: #7A439A;
}

.btn.lightblue-btn {
  background-color: #58B9DF;
}
.btn.lightblue-btn:hover {
  background-color: #459bbd;
}

.btn.brown-btn {
  color: white;
  background: linear-gradient(var(--btn-angle), #603B21 0%, #815E45 100%);
  transition: --btn-angle 0.3s ease;
  border: 0 !important;
}
.btn.brown-btn:hover {
  --btn-angle: 190deg;
}

.btn.brown-border-btn {
  border: 2px solid transparent;
  color: white;
  background: linear-gradient(90deg, #603B21 0%, #815E45 100%) padding-box, linear-gradient(90deg, #603B21 0%, #815E45 100%) border-box;
}
.btn.brown-border-btn:hover {
  color: #603B21;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #603B21 0%, #815E45 100%) border-box;
}

.btn.white-brown-border-btn {
  background-color: transparent;
  color: #603B21;
  border: 2px solid #603B21;
}
.btn.white-brown-border-btn:hover {
  background-color: #603B21;
  color: white;
}

a {
  transition: all 0.3s;
}

.btn.green-btn {
  background-color: #FFFFFF;
  border: 2px solid;
}
.btn.green-btn:hover {
  color: #FFFFFF;
}
.btn.green-btn:hover .button-icon svg {
  filter: brightness(0) invert(1);
}

.btn.black-white-btn {
  background-color: #FFFFFF;
  color: black;
}
.btn.black-white-btn:hover {
  background-color: black;
  color: #FFFFFF !important;
}
.btn.black-white-btn:hover .button-icon svg {
  filter: brightness(0) invert(1);
}

.button-icon {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-icon svg {
  height: 18px !important;
}

.blue {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .blue {
    font-size: 14px;
  }
}

.white-span {
  color: white;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .white-span {
    font-size: 14px;
  }
}

.blue-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.white-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

input, select {
  outline: 0;
  border: 0;
  background-color: transparent;
  font-family: "Montserrat", sans-serif !important;
  color: white;
}
input::placeholder, select::placeholder {
  color: white;
}

textarea {
  height: 9em;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 20px 24px;
  border: 0;
  outline: 0;
  color: white;
  font-family: "Montserrat", sans-serif !important;
  resize: none;
}
textarea::placeholder {
  color: white;
}

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;
  border-radius: 1.25em;
}

main ul {
  list-style: none;
}

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 {
  font-family: "poppis", sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s;
  color: #D32616;
}
.text-icon-link:hover {
  text-decoration: underline;
}

.lightgrey-section {
  padding-top: 124px;
  padding-bottom: 124px;
  background-color: #FFFAF3;
}

.current-menu-item a {
  color: !important;
}

.header-img-section {
  position: relative;
  height: 440px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.15);
}
@media (max-width: 992px) {
  .header-img-section {
    height: 360px;
  }
}
.header-img-section::before {
  content: "";
  position: absolute;
  bottom: 32px;
  left: 32px;
  height: 96px;
  width: 96px;
  background-image: url("/wp-content/uploads/2026/01/Subtract-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 992px) {
  .header-img-section::before {
    height: 72px;
    width: 72px;
    left: 24px;
    bottom: 24px;
  }
}
@media (max-width: 767px) {
  .header-img-section::before {
    display: none;
  }
}
.header-img-section::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 32px;
  height: 96px;
  width: 96px;
  background-image: url("/wp-content/uploads/2026/01/Subtract-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 992px) {
  .header-img-section::after {
    height: 72px;
    width: 72px;
    right: 24px;
    top: 24px;
  }
}
@media (max-width: 767px) {
  .header-img-section::after {
    display: none;
  }
}

.header-section-blur {
  position: relative;
  z-index: 5;
  padding: 72px;
  padding-right: 96px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: fit-content;
}
@media (max-width: 992px) {
  .header-section-blur {
    padding: 64px;
    padding-right: 64px;
  }
}
@media (max-width: 767px) {
  .header-section-blur {
    padding: 40px;
    gap: 1.25em;
  }
}

.heading-between-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.heading-between-wrapper h2 {
  margin-top: 20px;
}

.normal-h2 {
  margin-top: 20px;
}

.first-section-without-img, .content-area {
  margin-top: 108px;
}

.ad-banner {
  width: 100%;
}
.ad-banner img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.lightblue-section {
  padding: 7.5em 0;
  background-color: #E9F8FD;
}

/*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: 176px;
  min-height: calc(100vh - 51.35em);
}
@media (max-width: 991px) {
  main {
    min-height: unset;
  }
}

.header-socials {
  display: flex;
  gap: 1em;
}
.header-socials a {
  height: 3em;
  width: 3em;
  border-radius: 80px;
  border: 2px solid #D32616;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-socials a:hover {
  background-color: #D32616;
}
.header-socials a:hover img {
  filter: grayscale(100%) brightness(0) invert(1);
}

.header-search-box {
  display: flex;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  height: 62px;
  background-color: transparent;
  border-radius: 10px;
}
.header-search-box input {
  padding: 24px 32px !important;
  border-radius: 10px 0 0 10px !important;
  border: 0 !important;
  height: 100%;
  font-weight: 700 !important;
  font-size: 1em !important;
  width: 260px !important;
  color: black !important;
}
.header-search-box input::placeholder {
  color: #000000;
}
.header-search-box button {
  width: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D32616;
  border-radius: 0 10px 10px 0;
  border: 0 !important;
  cursor: pointer;
}

#masthead {
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2509803922);
  position: fixed;
  z-index: 999;
  transition: 0.4s all;
  width: 100%;
  background-color: white;
}
#masthead .header-horizontal {
  display: flex;
  gap: 32px;
}
#masthead .header-horizontal .navbar-brand {
  display: flex;
  align-items: center;
}
#masthead .header-horizontal .navbar-brand figure {
  display: flex;
  align-items: center;
}
#masthead .ds_logo_main {
  height: 56px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  #masthead .ds_logo_main {
    height: 48px;
  }
}
#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%;
}
#masthead .navbar #main-nav ul li a {
  text-decoration: none;
  color: #000000;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.4s all;
  font-weight: 700;
}
#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 .current-menu-item > a, #masthead .navbar #main-nav ul .current-menu-parent > a {
  border-top: 3px solid;
}
#masthead .ds_wrapper_menu_main {
  position: relative;
  z-index: 9999;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5em 0;
  transition: 0.4s all;
}
@media (max-width: 992px) {
  #masthead .ds_wrapper_menu_main {
    padding: 24px 0;
  }
}
#masthead .ds_wrapper_menu_main .header-name-span {
  font-weight: 400;
  font-size: 28px;
}
#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;
  gap: 40px;
}

.bottom-navbar {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
}

.bottom-navbar {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  transition: margin-top 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
}

@media (min-width: 992px) {
  .smallHeader .bottom-navbar {
    margin-top: -72px;
    opacity: 0;
    visibility: hidden;
  }
  .smallHeader .ds_logo_main {
    height: 48px !important;
  }
}
.smallHeader {
  background-color: #FFFFFF !important;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .header_icons {
    gap: 24px !important;
  }
  .header-search-box input {
    width: 200px !important;
  }
}
/*----------burger menu------------*/
@media only screen and (max-width: 991px) {
  .header-socials {
    display: none;
  }
  .header-search-box {
    display: none;
  }
  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;
  }
  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%);
  }
  .navbar-toggler {
    height: 40px;
    width: 40px;
    position: relative;
    z-index: 99999;
    display: block !important;
    margin: auto;
    border: 0;
    border-radius: 10px;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
  }
  .navbar-toggler span {
    display: block;
    position: absolute;
    height: 3px;
    width: 26px;
    background: #000000;
    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 {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .bottom-navbar {
    display: none;
  }
}
.bottom-navbar .container {
  display: flex;
  justify-content: space-between;
  border-top: 1.5px solid rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF;
  padding: 0 !important;
}
.bottom-navbar .container .header-nets {
  display: flex;
  gap: 0.5em;
}
.bottom-navbar .container .header-nets a {
  height: 36px;
  width: 36px;
  border: 2px solid;
  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;
  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: #000000 !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: 12px;
  height: 72px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 0.875em !important;
  border-top: 1px solid transparent;
  margin-top: -1px;
  transition: all 0.3s;
}
.menu-item-content-wrapper:hover {
  border-top: 1px solid #D32616;
  color: #D32616;
  background-color: #FBE9E8;
}

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

.sub-menu-bottom-link {
  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;
  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;
  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: 114px;
  width: 100%;
  background-color: white;
  padding-bottom: 24px;
  z-index: 999;
}
@media (max-width: 767px) {
  .mobile-menu-wrap {
    margin-top: 96px;
  }
}

.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;
  }
}
.header-upper-menu ul {
  display: flex;
  list-style-type: none;
}
.header-upper-menu ul li a {
  color: #000000;
}
@media (max-width: 992px) {
  .header-upper-menu {
    display: none;
  }
}

.menu-item-image {
  max-height: 30px;
  max-width: 30px;
}

.header-vertical-wrap {
  width: 100%;
}

.header-account {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
}
.header-account:hover {
  color: #D32616;
}

.header-cart {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 24px;
}
.header-cart .header-cart-count {
  position: absolute;
  top: -4px;
  left: -4px;
  color: white;
  border-radius: 78px;
  height: 17px;
  width: 17px;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-bar-location {
  display: flex;
  gap: 1em;
  align-items: center;
  text-decoration: underline;
  color: #000000;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.4s all;
  font-weight: 700;
}
@media (max-width: 992px) {
  .header-name-span {
    display: none;
  }
  .ds_wrapper_menu_main {
    justify-content: end !important;
  }
}
.menu-item-has-children {
  position: relative;
}
.menu-item-has-children .sub-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  height: auto !important;
}
.menu-item-has-children .sub-menu li {
  display: block;
  width: 100%;
  font-size: 0.875em !important;
}
.menu-item-has-children .sub-menu li:hover a {
  color: #D32616 !important;
}
.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 5px 15px;
}
.menu-item-has-children svg {
  transition: all 0.3s;
}
.menu-item-has-children:hover .sub-menu {
  display: block !important;
}
.menu-item-has-children:hover svg {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .header_icons .brown-btn {
    display: none;
  }
}
.m-nav-row-cta-wrap {
  padding: 8px 0;
}
.m-nav-row-cta-wrap .btn {
  width: 48% !important;
  display: flex !important;
  justify-content: center !important;
}

/*border-radius*/
.ds_newsletter {
  position: relative;
  z-index: 1;
}
.ds_newsletter .ds_newsletter_wrap {
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1200px) {
  .ds_newsletter .ds_newsletter_wrap {
    flex-direction: column;
    gap: 2em;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right {
  color: #000000;
}
.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 {
  margin-bottom: 1rem;
}
.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 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_footer {
  padding-top: 6.25em;
  background: #2A221D;
  background-image: linear-gradient(rgba(35, 38, 91, 0.9803921569), rgba(35, 38, 91, 0.9803921569)), url("/wp-content/uploads/2026/01/ca733c24fcc64dede1b52f887654a5d33386f15e.webp");
  background-position: center top;
  color: #FFFFFF;
  margin-top: -1px;
  position: relative;
}
.ds_footer .footer-upper-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4em;
}
@media (max-width: 992px) {
  .ds_footer .footer-upper-wrap {
    flex-direction: column;
    gap: 40px;
    align-items: start;
  }
}
@media (max-width: 767px) {
  .ds_footer .footer-upper-wrap {
    align-items: center;
  }
}
.ds_footer .footer-upper-wrap .footer-upper-imgs {
  display: flex;
  align-items: center;
  gap: 56px;
}
@media (max-width: 1200px) {
  .ds_footer .footer-upper-wrap .footer-upper-imgs {
    gap: 32px;
  }
  .ds_footer .footer-upper-wrap .footer-upper-imgs .footer-main-logo {
    height: 56px;
  }
}
@media (max-width: 480px) {
  .ds_footer .footer-upper-wrap .footer-upper-imgs {
    flex-direction: column;
  }
}
.ds_footer .footer-upper-wrap .footer-upper-imgs .footer-secondary-logo {
  height: 54px;
}
@media (max-width: 1200px) {
  .ds_footer .footer-upper-wrap .footer-upper-imgs .footer-secondary-logo {
    height: 46px;
  }
}
.ds_footer .footer-upper-wrap .footer-upper-ctas {
  display: flex;
  gap: 2em;
}
@media (max-width: 480px) {
  .ds_footer .footer-upper-wrap .footer-upper-ctas {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }
}
.ds_footer .footer-upper-wrap .footer-upper-ctas a:hover {
  text-decoration: none !important;
}
.ds_footer .ds_footer_wrapper .ds_footer_wrapper_content {
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
  padding: 4.5em;
  border-radius: 20px;
  display: flex;
  justify-content: start;
}
.ds_footer .ds_footer_wrapper .ds_footer_wrapper_content .column {
  border-right: 1.5px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 992px) {
  .ds_footer .ds_footer_wrapper .ds_footer_wrapper_content .column {
    border: 0;
  }
}
@media (max-width: 1200px) {
  .ds_footer .ds_footer_wrapper .ds_footer_wrapper_content {
    display: grid;
    grid-template-columns: repeat(3, auto);
  }
}
@media (max-width: 1200px) {
  .ds_footer .ds_footer_wrapper .ds_footer_wrapper_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 56px;
  }
}
@media (max-width: 767px) {
  .ds_footer .ds_footer_wrapper .ds_footer_wrapper_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 4em;
  }
}
.ds_footer .ds_footer_bottom_line {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  margin-bottom: 0 !important;
  height: 96px;
}
@media (max-width: 767px) {
  .ds_footer .ds_footer_bottom_line {
    height: auto;
    padding: 16px 0;
  }
}
.ds_footer .ds_footer_bottom_line a {
  text-decoration: underline;
}
.ds_footer .ds_footer_bottom_line a:hover {
  color: #D32616;
}
.ds_footer .ds_footer_bottom_line .ds_footer_madeby a {
  color: #D32616;
}
.ds_footer .ds_footer_bottom_line .ds_footer_madeby a:hover {
  color: #FFFFFF !important;
}
.ds_footer .ds_footer_bottom_line .container {
  height: 100%;
  padding: 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@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 a {
  text-decoration: underline;
  margin-bottom: 4px;
}
.ds_footer .column a:hover {
  color: #D32616;
  font-weight: 800;
}
.ds_footer .column.c1 {
  padding-right: 5em;
}
@media (max-width: 1200px) {
  .ds_footer .column.c1 {
    padding-right: 2em;
  }
}
@media (max-width: 992px) {
  .ds_footer .column.c1 {
    padding-right: 0;
  }
}
.ds_footer .column.c2 {
  align-items: center;
  padding-right: 5em;
  padding-left: 5em;
  min-width: 340px;
}
@media (max-width: 1200px) {
  .ds_footer .column.c2 {
    padding-left: 2em;
    padding-right: 2em;
    min-width: 248px;
  }
}
@media (max-width: 992px) {
  .ds_footer .column.c2 {
    padding: 0;
  }
}
.ds_footer .column.c2 .ds_footer_menu {
  display: flex;
  flex-direction: column;
}
.ds_footer .column.c2 .ds_footer_menu a {
  transition: all 0.3s;
}
.ds_footer .column.c2 .ds_footer_menu a:hover span {
  color: #9DBD78 !important;
}
@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: 0;
  padding-left: 5em;
}
@media (max-width: 1200px) {
  .ds_footer .column.c3 {
    padding-left: 2em;
    padding-right: 2em;
  }
}
@media (max-width: 992px) {
  .ds_footer .column.c3 {
    padding: 0;
  }
}
.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-cta-section {
  position: relative;
  margin-bottom: 0;
}
.footer-cta-section::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 160px;
  width: 86px;
  height: 96px;
  background-image: url("/wp-content/uploads/2025/12/Group-5.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1400px) {
  .footer-cta-section::before {
    top: 16px;
    height: 76px;
    width: 68px;
  }
}

.section-cta-wrap {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 30px;
  display: flex;
  padding: 6em 0;
}
@media (max-width: 1400px) {
  .section-cta-wrap {
    height: fit-content;
  }
}
@media (max-width: 767px) {
  .section-cta-wrap {
    height: fit-content;
    padding: 3em;
  }
}
.section-cta-wrap .cta-wrap-text-side {
  max-width: 60%;
}
@media (max-width: 767px) {
  .section-cta-wrap .cta-wrap-text-side {
    max-width: 80%;
  }
}
.section-cta-wrap h2 {
  font-size: 45px;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .section-cta-wrap h2 {
    font-size: 2.125em;
  }
}
.section-cta-wrap p {
  margin-bottom: 2rem;
  font-size: 15px;
  font-weight: 500;
  max-width: 530px;
}
.section-cta-wrap::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 80px;
  width: 520px;
  height: 560px;
  background-image: url("/wp-content/uploads/2025/12/83fe3de1f9f4ded50d41082bdf54ca6a4a49f870.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1200px) {
  .section-cta-wrap::after {
    width: 420px;
    height: 500px;
    right: 0;
  }
}
@media (max-width: 992px) {
  .section-cta-wrap::after {
    width: 320px;
    height: 400px;
    right: -40px;
  }
}
@media (max-width: 767px) {
  .section-cta-wrap::after {
    display: none;
  }
}
.section-cta-wrap::before {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 480px;
  height: 500px;
  background-image: url("/wp-content/uploads/2025/12/Group-4-1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1200px) {
  .section-cta-wrap::before {
    width: 420px;
    height: 420px;
    right: -120px;
  }
}
@media (max-width: 992px) {
  .section-cta-wrap::before {
    width: 320px;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .section-cta-wrap::before {
    width: 256px;
    height: 280px;
    right: 0;
  }
}
@media (max-width: 475px) {
  .section-cta-wrap::before {
    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;
}

@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;
  }
}
.footer-contact-part {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.5em;
}
.footer-socials a {
  height: 36px;
  width: 36px;
  border-radius: 42px;
  border: 1.5px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-socials a:hover {
  border-color: #D32616 !important;
  background-color: #D32616;
}
.footer-socials a img {
  max-height: 16px;
  max-width: 20px;
  margin-bottom: 0 !important;
}

.ds_newsletter_wrap {
  position: relative;
}
.ds_newsletter_wrap::after {
  content: "";
  position: absolute;
  left: -160px;
  bottom: 160px;
  width: 220px;
  height: 296px;
  background-image: url("/wp-content/uploads/2025/12/image-144.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1400px) {
  .ds_newsletter_wrap::after {
    height: 260px;
    width: 180px;
    left: -120px;
  }
}
@media (max-width: 1200px) {
  .ds_newsletter_wrap::after {
    display: none;
  }
}

.ds_newsletter_left {
  position: relative;
  background: linear-gradient(90deg, #D32616 47.07%, rgba(211, 38, 22, 0.8) 100%), url("/wp-content/uploads/2026/01/ca733c24fcc64dede1b52f887654a5d33386f15e.webp");
  padding: 4em;
  border-radius: 1em;
  width: 60%;
  height: fit-content;
  z-index: 5;
}
@media (max-width: 1200px) {
  .ds_newsletter_left {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .ds_newsletter_left {
    padding: 3em;
  }
}
@media (max-width: 1200px) {
  .ds_newsletter_left {
    flex-grow: 1;
  }
}
.ds_newsletter_left h2 {
  color: #FFFFFF;
  margin-top: 16px;
  font-size: 2.875em;
}
@media (max-width: 767px) {
  .ds_newsletter_left h2 {
    font-size: 2em;
  }
}
.ds_newsletter_left .ds_form_wrap input, .ds_newsletter_left .ds_form_wrap textarea {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border: 0 !important;
  color: white !important;
}
.ds_newsletter_left .ds_form_wrap input::placeholder, .ds_newsletter_left .ds_form_wrap textarea::placeholder {
  color: white !important;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row {
  display: flex;
  gap: 1em;
  margin-top: 1.125em;
}
@media (max-width: 991px) {
  .ds_newsletter_left .ds_form_wrap .ds_form_row {
    flex-grow: 1;
    flex-direction: column;
  }
}
.ds_newsletter_left .ds_form_wrap .ds_form_row label {
  display: flex;
  flex-direction: column;
  gap: 0.375em;
  flex-grow: 1;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row label span {
  font-weight: 700;
  color: #FFFFFF;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row > div {
  display: flex;
  justify-content: end;
  gap: 1.625rem;
  align-items: center;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row > div span {
  max-width: 15.5rem;
}
@media (max-width: 991px) {
  .ds_newsletter_left .ds_form_wrap .ds_form_row > div span {
    max-width: unset;
  }
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child {
  justify-content: end;
  font-size: 0.875em;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child a {
  text-decoration: none;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child a:hover {
  text-decoration: underline;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child .btn {
  font-size: 1rem;
}

.footer-cta-section-wrap {
  margin-top: 86px;
  padding: 0;
}

.footer-instagram {
  margin-top: 120px;
  margin-bottom: 120px;
}

.foot-ig-head-wrap {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.foot-ig-head-wrap h2 {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .foot-ig-head-wrap {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
}

.ig-head-btns {
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .ig-head-btns {
    flex-direction: column;
  }
}

.footer-ig-images-wrap {
  margin-top: 60px;
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
}
@media (max-width: 1200px) {
  .footer-ig-images-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer-ig-images-wrap .footer-ig-img-wrap {
  width: 288px;
  height: 216px;
  position: relative;
  border-radius: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .footer-ig-images-wrap .footer-ig-img-wrap {
    width: calc((100% - 80px) / 3);
    flex-shrink: 1;
  }
}
@media (max-width: 992px) {
  .footer-ig-images-wrap .footer-ig-img-wrap {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 450px) {
  .footer-ig-images-wrap .footer-ig-img-wrap {
    width: 100%;
  }
}
.footer-ig-images-wrap .footer-ig-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}
.footer-ig-images-wrap .footer-ig-img-wrap:hover .footer-ig-overlay {
  opacity: 1;
}
.footer-ig-images-wrap .footer-ig-img-wrap .footer-ig-overlay {
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: all 0.4s;
}
.footer-ig-images-wrap .footer-ig-img-wrap .footer-ig-overlay img {
  height: 60px;
  width: auto;
}
.footer-ig-images-wrap .footer-ig-img-wrap .footer-ig-overlay .overlay-go-to {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  text-decoration: underline;
  font-weight: 800;
}

.ds_newsletter_map_wrap {
  width: 100%;
  height: 420px;
  margin-top: 96px;
}
@media (max-width: 992px) {
  .ds_newsletter_map_wrap {
    max-width: unset;
    width: 100%;
    min-height: 400px;
  }
}
.ds_newsletter_map_wrap iframe {
  border-radius: 30px;
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .ds_newsletter_map_wrap iframe {
    height: 400px;
  }
}

.ds_newsletter_right {
  width: 45%;
}
@media (max-width: 1200px) {
  .ds_newsletter_right {
    max-width: unset;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .ds_form_row {
    flex-direction: column;
  }
}
.ds_footer_menu a {
  transition: all 0.3s;
}
.ds_footer_menu a span {
  transition: all 0.3s;
}
.ds_footer_menu a:hover {
  color: !important;
}

.ds_footer_img {
  width: 164px;
  height: auto;
}

.second-particle-contact span {
  font-weight: 800;
  font-size: 16px !important;
  line-height: 26px !important;
}

.contact-social-part a {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}
.contact-social-part a:hover {
  text-decoration: underline;
}
.contact-social-part a:hover img {
  opacity: 0.75;
}
.contact-social-part a img {
  transition: all 0.3s;
  height: 60px;
}
.contact-social-part a span {
  font-weight: 800;
}

.bottom-footer-imgs-wrap {
  display: flex;
  gap: 20px;
}

.footer-col-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1em;
  margin-bottom: 1.25em;
}

.ds_contact_alert {
  color: white;
  margin-top: 8px;
}

.footer-under-contact-address {
  display: flex;
  flex-direction: column;
}

.footer-under-contact-legal {
  display: flex;
  flex-direction: column;
  margin-top: 1.25em;
}

.ds-footer-facebook-person {
  display: flex;
  align-items: center;
  gap: 1.25em;
  margin-bottom: 1.5em;
}
.ds-footer-facebook-person .ds-footer-facebook-person-text {
  display: flex;
  flex-direction: column;
}
.ds-footer-facebook-person .ds-footer-facebook-person-text span:first-child {
  font-weight: 800;
}
.ds-footer-facebook-person .ds-footer-facebook-person-text span:last-child {
  font-size: 14px;
  color: #D32616;
  font-weight: 600;
}

.ds-footer-fb-link {
  display: flex;
  align-items: center;
  gap: 1em;
  font-weight: 600 !important;
  text-decoration: none !important;
}
.ds-footer-fb-link:hover {
  color: #D32616;
}

.contact-contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}
@media (max-width: 992px) {
  .contact-contact-form {
    width: 100%;
  }
}
.contact-contact-form .form-double-row {
  margin-top: 2.5em;
  width: 100%;
  display: flex;
  gap: 1.25em;
}
@media (max-width: 992px) {
  .contact-contact-form .form-double-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .contact-contact-form .form-double-row input {
    width: 100%;
  }
}
.contact-contact-form .form-double-row .input-wrap {
  display: flex;
  background-color: rgba(255, 255, 255, 0.2);
  align-items: center;
  border-radius: 10px;
  width: 100%;
  height: 64px;
  padding: 20px 24px;
  gap: 8px;
  justify-content: space-between;
}

.contact-tel-mail-part {
  border: 1.5px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
  padding: 1.25em;
  display: flex;
  gap: 1.25em;
  width: 400px;
  align-items: center;
  margin-top: 1.5em;
}
.contact-tel-mail-part .con-icon-wrap {
  border-radius: 10px;
  height: 66px;
  width: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-tel-mail-part .con-text-wrap h4 {
  font-size: 1.25em;
  font-weight: 800;
}

.telefonne .con-icon-wrap {
  background-color: #D32616 !important;
}

.emaile .con-icon-wrap {
  background-color: #58B9DF !important;
}

.hp-hero-section {
  position: relative;
  width: 100%;
}
.hp-hero-section .hp-hero-swiper {
  height: calc(100vh - 172px);
  width: 100%;
}
@media (max-width: 992px) {
  .hp-hero-section .hp-hero-swiper {
    height: auto;
  }
}
.hp-hero-section .hp-hero-swiper .swiper-button-next.hp-hero-next,
.hp-hero-section .hp-hero-swiper .swiper-button-prev.hp-hero-prev {
  color: #ffffff;
}
.hp-hero-section .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 992px) {
  .hp-hero-section .swiper-slide {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.hp-hero-section .swiper-slide::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 40px;
  height: 96px;
  width: 96px;
  background-image: url("/wp-content/uploads/2026/01/Subtract-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
@media (max-width: 992px) {
  .hp-hero-section .swiper-slide::after {
    height: 64px;
    width: 64px;
    right: 24px;
  }
}
@media (max-width: 767px) {
  .hp-hero-section .swiper-slide::after {
    display: none;
  }
}
.hp-hero-section .swiper-slide .container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  width: 100%;
}
.hp-hero-section .swiper-slide .container .hp-hero-content {
  width: 100%;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  padding: 100px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .hp-hero-section .swiper-slide .container .hp-hero-content {
    padding: 48px 48px;
  }
}
.hp-hero-section .swiper-slide .container .hp-hero-content h1 {
  margin-top: 32px;
  margin-bottom: 20px;
  text-align: center;
}
.hp-hero-section .swiper-slide .container .hp-hero-content p {
  text-align: center;
}
.hp-hero-section .swiper-slide .container .hp-hero-content .hero-btns-wrap {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

/*border-radius*/
.ds_features {
  margin-bottom: 0 !important;
  margin-top: -96px;
}
.ds_features .container .ds_features_wrap {
  display: grid;
  grid-template-columns: calc(33% - 22px) calc(33% - 22px) calc(33% - 22px);
  gap: 40px;
}
@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;
  }
}
@media (max-width: 767px) {
  .ds_features .container .ds_features_wrap {
    grid-template-columns: 100%;
    gap: 40px;
  }
}
.ds_features .container .ds_features_wrap .ds_features_item {
  border-radius: 20px;
  display: flex;
  align-items: start;
  gap: 24px;
  width: 100%;
  color: #000000;
  background-color: white;
  position: relative;
  padding: 36px;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.1019607843);
}
@media (max-width: 1400px) {
  .ds_features .container .ds_features_wrap .ds_features_item {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .ds_features .container .ds_features_wrap .ds_features_item {
    flex-direction: row;
  }
}
@media (max-width: 420px) {
  .ds_features .container .ds_features_wrap .ds_features_item {
    flex-direction: column;
  }
}
.ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.125em;
}
.ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top .h3-feature-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75em;
}
.ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top h3 {
  line-height: 120%;
  font-size: 1.25em;
}
.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;
  color: #000000;
  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;
  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: #000000;
  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: #000000;
}
.home main .ds_imageText {
  background: url("/wp-content/uploads/2025/06/background-divider.svg") bottom center no-repeat;
  background-size: 100% 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .home main .ds_imageText {
    background-size: 100% 35%;
  }
  .home main .ds_imageText::after {
    background: #000000;
    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;
  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 {
  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;
}
.services-slider-section .swiper-button-prev svg, .services-slider-section .swiper-button-next svg {
  fill: none !important;
  height: 14px !important;
}

.services-slider-container {
  display: grid;
  grid-template-columns: 31% 31% 31%;
  gap: 32px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .services-slider-container {
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .services-slider-container {
    grid-template-columns: calc(50% - 12px) calc(50% - 12px);
    gap: 24px;
  }
}
@media (max-width: 540px) {
  .services-slider-container {
    grid-template-columns: 100%;
    gap: 32px;
  }
}

.service-slide {
  border-radius: 15px;
  color: #000000;
  flex-shrink: 0;
  height: auto;
  border: 1.5px solid rgba(15, 46, 21, 0.1019607843);
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
}
.service-slide .service-home-img {
  width: 100%;
  height: 284px;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  object-position: center;
}
.service-slide .service-heading-wrap {
  width: 100%;
  padding: 1em 2em;
  margin-top: -8px;
}
.service-slide h3 {
  font-size: 1.5em !important;
  line-height: 1.5em !important;
  font-weight: 400;
  color: white;
}
.service-slide .service-slide-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 2em;
  width: 100%;
}
.service-slide .service-slide-text p {
  margin-bottom: 1em;
}
.service-slide .service-slide-text .service-price {
  font-weight: 600;
  text-decoration: underline;
}
.service-slide .service-slide-text a {
  margin-top: auto;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: underline;
}
.service-slide .service-slide-text a:hover {
  transition: all 0.3s;
}

.cta-service {
  border: 0 !important;
  color: white !important;
  background-image: linear-gradient(rgba(170, 122, 207, 0.85), rgba(170, 122, 207, 0.85)), url("/wp-content/uploads/2025/11/8e6b709b93578d728b6660a2fb343f6cb246687c-1-scaled.webp");
  background-size: cover, 85%;
  background-repeat: no-repeat;
  background-position: center, right -80px bottom -400px;
}
@media (max-width: 1200px) {
  .cta-service {
    background-position: center, right -80px bottom -280px;
  }
}
@media (max-width: 540px) {
  .cta-service {
    background-position: center, right -80px bottom -600px;
  }
}
@media (max-width: 460px) {
  .cta-service {
    background-position: center, right -80px bottom -400px;
  }
}
.cta-service .service-slide-text {
  max-width: 65%;
}

.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;
}
@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: 80px;
  position: relative;
}
.about-us-section::before {
  content: "";
  position: absolute;
  bottom: 120px;
  right: 0;
  height: 450px;
  width: 250px;
  background-image: url("/wp-content/uploads/2025/12/Vector-12.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.about-us-section .about-us-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@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 {
  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: auto;
  width: 100%;
}
.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%;
}
.about-us-section .about-us-wrap .about-us-text p {
  max-width: 530px;
}
@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;
}
.about-us-section .about-us-wrap .about-us-text .about-us-btns {
  display: flex;
  gap: 1.5em;
}
@media (max-width: 420px) {
  .about-us-section .about-us-wrap .about-us-text .about-us-btns {
    flex-direction: column;
  }
}

.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;
}
.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 {
  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-heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 540px) {
  .hp-blog-heading-wrap {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
}
.hp-blog-heading-wrap h2 {
  margin-top: 16px;
}

.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;
}

.about-us-social {
  background-color: #9DBD78;
  border-radius: 40px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.about-us-social:hover {
  background-color: #7c995a;
}

.wp-google-powered {
  display: none !important;
}

.wp-gr {
  margin: 0 !important;
  padding: 0 !important;
}

.wp-gr .wp-google-right {
  width: unset !important;
}

.wp-gr .wp-google-rating {
  color: white !important;
}

.hp-google-review-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 100px;
  padding: 20px 30px;
  width: fit-content;
  color: white;
}
.hp-google-review-wrap > svg {
  margin-right: 16px;
}

.sluzba-faq-wrap {
  display: flex;
  gap: 24px;
  margin-top: 60px;
  align-items: flex-start;
}
.sluzba-faq-wrap .faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sluzba-faq-wrap .faq-box {
  background-color: white;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  border: 1.5px solid rgba(0, 0, 0, 0.1019607843);
}
.sluzba-faq-wrap .faq-box .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
}
.sluzba-faq-wrap .faq-box .faq-question span {
  font-family: "poppins", sans-serif !important;
  font-weight: 800;
  font-size: 1.1em;
}
.sluzba-faq-wrap .faq-box .faq-question .faq-open {
  width: 45px;
  height: 45px;
  background-color: #D32616;
  color: white;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  line-height: 1;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
}
.sluzba-faq-wrap .faq-box .faq-question .faq-open:hover {
  background-color: #ac1c0f;
}
.sluzba-faq-wrap .faq-box .faq-question .faq-open .line-h, .sluzba-faq-wrap .faq-box .faq-question .faq-open .line-v {
  position: absolute;
  height: 2px;
  background-color: white;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sluzba-faq-wrap .faq-box .faq-question .faq-open .line-h {
  width: 16px;
}
.sluzba-faq-wrap .faq-box .faq-question .faq-open .line-v {
  width: 16px;
  transform: rotate(90deg);
}
.sluzba-faq-wrap .faq-box.active .faq-question .faq-open .line-v {
  transform: rotate(45deg);
}
.sluzba-faq-wrap .faq-box.active .faq-question .faq-open .line-h {
  transform: rotate(-45deg);
}
.sluzba-faq-wrap .faq-box .faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.sluzba-faq-wrap .faq-box.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px 20px;
  border-top: 1px dashed white;
}
.sluzba-faq-wrap .faq-box .faq-answer p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .sluzba-faq-wrap {
    flex-direction: column;
    padding: 10px;
  }
}
.blog-grid {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3.75em;
}
@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 100%;
  }
}

.blog-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 20px;
  transition: all 0.3s;
  border: 1.5px solid rgba(0, 0, 0, 0.1019607843);
  padding: 20px;
  transition: all 0.3s;
  max-height: 620px;
}
.blog-grid article .img-wrap-a {
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.blog-grid article:hover {
  border-color: #D32616;
}
.blog-grid article:hover img {
  transform: scale(1.1);
}
.blog-grid article .img-wrap-a img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}
.blog-grid article .article-text-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.blog-grid article .article-text-wrap .text-icon-link {
  margin-top: auto;
  margin-bottom: 12px;
}
.blog-grid article .article-text-wrap .art-heading-link {
  text-decoration: none;
}
.blog-grid article .article-text-wrap .art-heading-link:hover {
  text-decoration: underline;
}
.blog-grid article .article-text-wrap p {
  margin-bottom: 1.5em;
}
.blog-grid article .article-text-wrap .rubric-span {
  position: absolute;
  left: 0;
  top: -28px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(5px);
  font-weight: 700;
  padding: 1em 1.25em;
  padding-left: 1.5em;
  border-radius: 0 20px 20px 0;
  width: 75%;
  color: #FFFFFF !important;
}
.blog-grid article .article-text-wrap .art-heading-link {
  margin-top: 1.5em;
  margin-bottom: 1em;
}
.blog-grid 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-top: 4.5em;
  margin-bottom: 6em;
}
.single-article-section h1 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.single-article-section .single-article-img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  object-position: center;
}
.single-article-section .single-article-wrap {
  padding: 1.25em;
  border: 1.5px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
  margin-top: 4em;
}
.single-article-section .single-article-wrap .single-art-img {
  width: 100%;
  height:auto;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}
.single-article-section .blog-content {
  margin: 24px;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.1019607843);
}
.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 {
  font-size: 24px;
  font-weight: 700;
}

.single-article-wrap {
  max-width: 68%;
}
@media (max-width: 992px) {
  .single-article-wrap {
    max-width: 100%;
  }
}

.single-img-and-text-wrap {
  border: 1.5px solid rgba(15, 46, 21, 0.1);
  border-radius: 20px;
  margin-top: 1em;
}

.blog-heading-section {
  z-index: 1;
  margin-bottom: 248px;
}
@media (max-width: 640px) {
  .blog-heading-section {
    margin-bottom: 80px;
  }
}
.blog-heading-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.blog-heading-section .container h1 {
  max-width: 600px;
  text-align: center;
}
.blog-heading-section::after {
  content: "";
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: 490px;
  scale: 1;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='1095' height='491' viewBox='0 0 1095 491' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='547.084' cy='466.229' rx='547.084' ry='466.229' transform='matrix(1 0 0 -1 0 490.655)' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .blog-heading-section::after {
    height: 360px;
    background-size: contain;
  }
}
@media (max-width: 992px) {
  .blog-heading-section::after {
    top: 60px;
    height: 300px;
    background-size: contain;
  }
}
@media (max-width: 640px) {
  .blog-heading-section::after {
    display: none;
  }
}

.single-head-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.single-head-container h1 {
  color: white;
}
.single-head-container .single-rubric-span {
  margin-left: 0;
  border-radius: 0 20px 20px 0;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  font-weight: 400;
  color: white;
}
.single-head-container .header-breadcrumbs {
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
}
.single-head-container .header-breadcrumbs .breadcrumb {
  display: flex;
  align-items: center;
  gap: 1.5em;
  color: white;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1.25px;
}
.single-head-container .header-breadcrumbs .disabled-bread {
  opacity: 0.4;
}

.ds-blog-rubrics-wrap {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .ds-blog-rubrics-wrap {
    gap: 16px;
  }
}

.ds-blog-subheading-wrap h2 {
  margin-top: 16px;
}

.article-infos {
  display: flex;
  gap: 20px;
}

.date-part {
  background-color: #D32616;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 20px;
  width: fit-content;
  font-weight: 700;
  color: white;
  border-radius: 10px;
}

.person-part {
  background-color: #58B9DF;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 20px;
  width: fit-content;
  font-weight: 700;
  color: white;
  border-radius: 10px;
}

.location-part {
  background-color: #7A439A;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 20px;
  width: fit-content;
  font-weight: 700;
  color: white;
  border-radius: 10px;
}

.info-rubric {
  border: 1.5px solid #D32616;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 20px;
  width: fit-content;
  font-weight: 700;
  color: #D32616;
  border-radius: 10px;
  text-decoration: none !important;
}

.sport-grid .date-part {
  background-color: #7A439A;
}
.sport-grid .info-rubric {
  color: #7A439A;
  border-color: #7A439A;
}
.sport-grid .text-icon-link {
  color: #7A439A;
}
.sport-grid article:hover {
  border-color: #7A439A !important;
}

.sport-vykony {
  padding: 7.5em 0;
  background-color: rgba(122, 67, 154, 0.1);
}
.sport-vykony .sport-vykony-swiper {
  margin-top: 60px;
  padding-bottom: 50px;
}
.sport-vykony .sport-vykony-swiper .swiper-slide {
  height: auto;
}
.sport-vykony .sport-vykony-swiper .sport-grid-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.25em;
}
.sport-vykony .sport-vykony-swiper .sport-grid-inner img {
  width: 100%;
  aspect-ratio: 16/16;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .sport-vykony .sport-vykony-swiper .sport-grid-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .sport-vykony .sport-vykony-swiper .sport-grid-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.live-sport-section .stream-video {
  margin-top: 60px;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 14px;
}

.tip-match-result {
  margin-top: 16em;
}

.sport-event-tip-wrap {
  background: linear-gradient(270deg, rgba(122, 67, 154, 0.2) -124.06%, #7A439A 56.99%), url("/wp-content/uploads/2026/01/Rectangle-4466-1.png") no-repeat center/cover !important;
  background-repeat: no-repeat;
}
.sport-event-tip-wrap .form-person-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 520px !important;
}
@media (max-width: 1200px) {
  .sport-event-tip-wrap .form-person-img {
    height: 300px !important;
  }
}
@media (max-width: 992px) {
  .sport-event-tip-wrap .form-person-img {
    display: none;
  }
}

.single-art-info {
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
  align-items: center;
}

.likes-info-part {
  display: flex;
  align-items: center;
  gap: 1em;
  font-weight: 600;
}

.blog-bottom-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 24px;
}

.like-article {
  transition: all 0.3s;
}
.like-article:hover {
  color: #D32616;
}

.main-article-cont {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .main-article-cont {
    flex-direction: column;
  }
}

.article-ad-banners {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
  width: 100%;
  align-items: end;
  margin-top: 4em;
}
@media (max-width: 992px) {
  .article-ad-banners {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5em;
  }
}
.article-ad-banners .art-ad-banner {
  width: 100%;
  height: auto;
}
.article-ad-banners .art-ad-banner img {
  width: 100%;
}

.inzerat-date-part {
  display: flex;
  align-items: center;
  gap: 0.75em;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1.25em;
}

.load-more-posts-nabidky, .load-more-posts-poptavky {
  width: 160px;
}

.sluzby-heading {
  z-index: 1;
  margin-bottom: 240px;
}
@media (max-width: 640px) {
  .sluzby-heading {
    margin-bottom: 80px;
  }
}
.sluzby-heading .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sluzby-heading .container h1 {
  max-width: 600px;
  text-align: center;
}
.sluzby-heading::after {
  content: "";
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: 490px;
  scale: 0.9;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='1095' height='491' viewBox='0 0 1095 491' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='547.084' cy='466.229' rx='547.084' ry='466.229' transform='matrix(1 0 0 -1 0 490.655)' fill='%23F6F9F2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .sluzby-heading::after {
    height: 360px;
    background-size: contain;
  }
}
@media (max-width: 992px) {
  .sluzby-heading::after {
    top: 60px;
    height: 300px;
    background-size: contain;
  }
}
@media (max-width: 640px) {
  .sluzby-heading::after {
    display: none;
  }
}

#individualni-terapie {
  padding-top: 0 !important;
}

.sluzba-section {
  padding-top: 200px;
  margin-bottom: 0;
  position: relative;
}
.sluzba-section:last-of-type {
  margin-bottom: 164px;
}
@media (max-width: 767px) {
  .sluzba-section {
    padding-top: 80px;
  }
}
.sluzba-section .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sluzba-section .container {
    flex-direction: column !important;
    gap: 56px;
  }
}
.sluzba-section .container .sluzba-text {
  max-width: 45%;
}
@media (max-width: 767px) {
  .sluzba-section .container .sluzba-text {
    max-width: 100%;
  }
}
.sluzba-section .container .sluzba-text .sluzba-podnadpis {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  margin-bottom: 16px;
}
.sluzba-section .container .sluzba-text h2 {
  font-size: 2.75em;
  font-weight: 800;
  margin-bottom: 16px;
}
.sluzba-section .container .sluzba-text .sluzba-delka {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  margin-bottom: 16px;
}
.sluzba-section .container .sluzba-text p {
  margin-bottom: 2em;
}
.sluzba-section .container .sluzba-img {
  width: 45%;
  height: auto;
  aspect-ratio: 4/3;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .sluzba-section .container .sluzba-img {
    width: 100%;
  }
}

.sluzba-switched .container {
  flex-direction: row-reverse;
}

.sluzba-section::after {
  content: "";
  position: absolute;
  top: 65%;
  left: 0;
  width: 100%;
  height: 491px;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='459' height='523' viewBox='0 0 459 523' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.3' d='M444.582 0C444.582 22.6123 520.301 210.41 296.516 247.969C117.487 278.017 25.5208 443.176 1.91602 522' stroke='%23AA7ACF' stroke-width='4' stroke-dasharray='10 10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  pointer-events: none;
}
@media (max-width: 767px) {
  .sluzba-section::after {
    display: none !important;
  }
}
.sluzba-section:last-of-type::after {
  display: none;
}

.sluzba-switched::after {
  transform: scaleX(-1);
}

.homepage-services-section {
  position: relative;
}
.homepage-services-section::before {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 80px;
  height: 76px;
  width: 76px;
  background-image: url("/wp-content/uploads/2025/12/Vector-3.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.homepage-services-section::after {
  content: "";
  position: absolute;
  left: 40px;
  top: 160px;
  width: 86px;
  height: 96px;
  background-image: url("/wp-content/uploads/2025/12/Group-5.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1400px) {
  .homepage-services-section::after {
    top: 16px;
    height: 76px;
    width: 68px;
  }
}

.services-homepage-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.photogallery-images-wrap {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.photogallery-images-wrap img {
  width: 100%;
  height: 284px;
  object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 1200px) {
  .photogallery-images-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .photogallery-images-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

.photogallery-videos-wrap {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.photogallery-videos-wrap iframe {
  width: 100%;
  height: 480px;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  .photogallery-videos-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .photogallery-videos-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.photogallery-more-videos-btn {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.what-is-happening-section {
  background-color: #23265B;
  color: white;
  padding: 7.5em 0;
  margin-bottom: 0;
}
.what-is-happening-section .what-is-happening {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.what-is-happening-section .what-is-happening h2 {
  margin-top: 32px;
  margin-bottom: 60px;
}
.what-is-happening-section .what-is-happening .happening-ben-wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.what-is-happening-section .what-is-happening .happening-ben-wrap .happening-split {
  height: 104px;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.2);
}
.what-is-happening-section .what-is-happening .happening-ben-wrap .happening-split:last-child {
  display: none;
}
.what-is-happening-section .what-is-happening .happening-ben-wrap .happening-ben {
  max-width: 160px;
}
.what-is-happening-section .what-is-happening .happening-ben-wrap .happening-ben h3 {
  font-weight: 600;
}
.what-is-happening-section .what-is-happening .happening-ben-wrap .happening-ben img {
  margin-bottom: 1em;
}
@media (max-width: 992px) {
  .what-is-happening-section .what-is-happening .happening-ben-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 40px;
  }
  .what-is-happening-section .what-is-happening .happening-ben-wrap .happening-split {
    display: none;
  }
  .what-is-happening-section .what-is-happening .happening-ben-wrap .happening-ben {
    max-width: unset;
  }
}

.what-is-hapenning-arts {
  margin-top: 4em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em;
}
@media (max-width: 767px) {
  .what-is-hapenning-arts {
    grid-template-columns: 100%;
  }
}
.what-is-hapenning-arts .what-is-art {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 320px;
  border-radius: 20px;
  padding: 2.5em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (max-width: 767px) {
  .what-is-hapenning-arts .what-is-art {
    height: auto;
  }
}
.what-is-hapenning-arts .what-is-art a {
  color: #D32616;
  display: flex;
  align-items: center;
  gap: 1em;
  text-decoration: none !important;
  font-weight: 600;
}
.what-is-hapenning-arts .what-is-art a:hover {
  text-decoration: underline !important;
}
.what-is-hapenning-arts .what-is-art .what-is-rubric {
  background-color: #D32616;
  border-radius: 10px;
  padding: 1em 1.25em;
  width: fit-content;
  font-weight: 600;
  text-transform: lowercase;
}

.hp-our-people-swiper {
  width: 100%;
  padding-bottom: 80px !important;
}
.hp-our-people-swiper .swiper-pagination-bullet {
  width: 30px !important;
  height: 3px !important;
  background: #D32616;
  border-radius: 0 !important;
  margin: 0 8px !important;
}
.hp-our-people-swiper .hp-our-people-card {
  position: relative;
  color: #FFFFFF;
  width: 100%;
  background: linear-gradient(180deg, rgba(35, 38, 91, 0.6) 0%, #23265B 53.37%), url("/wp-content/uploads/2026/02/praha_satelite-1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  height: 470px;
  margin-top: 128px;
}
@media (max-width: 1200px) {
  .hp-our-people-swiper .hp-our-people-card {
    height: 420px;
    margin-top: 78px;
  }
}
@media (max-width: 767px) {
  .hp-our-people-swiper .hp-our-people-card {
    height: 440px;
    margin-top: 98px;
  }
}
@media (max-width: 420px) {
  .hp-our-people-swiper .hp-our-people-card {
    height: 420px;
    margin-top: 78px;
  }
}
.hp-our-people-swiper .hp-our-people-card img {
  position: absolute;
  height: 518px;
  width: 390px;
  object-fit: cover;
  object-position: top center;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1400px) {
  .hp-our-people-swiper .hp-our-people-card img {
    width: 320px;
  }
}
@media (max-width: 1200px) {
  .hp-our-people-swiper .hp-our-people-card img {
    width: 268px;
    height: 440px;
  }
}
@media (max-width: 992px) {
  .hp-our-people-swiper .hp-our-people-card img {
    width: 290px;
  }
}
@media (max-width: 767px) {
  .hp-our-people-swiper .hp-our-people-card img {
    height: 472px;
    width: 330px;
  }
}
@media (max-width: 420px) {
  .hp-our-people-swiper .hp-our-people-card img {
    height: 440px;
    width: 300px;
  }
}
.hp-our-people-swiper .hp-our-people-card .hp-our-people-text-wrap {
  position: absolute;
  left: 0;
  bottom: 72px;
  padding: 2em;
  background-color: #D32616;
  border-radius: 0 15px 15px 0;
  z-index: 2;
  width: 80%;
  height: 196px;
}
@media (max-width: 1200px) {
  .hp-our-people-swiper .hp-our-people-card .hp-our-people-text-wrap {
    padding: 1.25em;
  }
}
.hp-our-people-swiper .hp-our-people-card .hp-our-people-text-wrap h4 {
  margin: 4px 0;
}

.people-swiper-arrow {
  z-index: 99;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 48px;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #D32616;
  color: #D32616;
  cursor: pointer;
  transition: all 0.3s;
}
.people-swiper-arrow:hover {
  color: white;
  background-color: #D32616;
}

.people-prev {
  left: -64px;
}
@media (max-width: 1320px) {
  .people-prev {
    left: -44px;
  }
}
@media (max-width: 660px) {
  .people-prev {
    left: 24px;
    background-color: white;
  }
}

.people-next {
  right: -64px;
}
@media (max-width: 1320px) {
  .people-next {
    right: -44px;
  }
}
@media (max-width: 660px) {
  .people-next {
    right: 24px;
    background-color: white;
  }
}

.hp-our-people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  row-gap: 88px;
  margin-top: 128px;
}
@media (max-width: 1200px) {
  .hp-our-people-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 104px;
  }
}
@media (max-width: 767px) {
  .hp-our-people-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.hp-our-people-grid .hp-our-people-card {
  position: relative;
  color: #FFFFFF;
  width: 100%;
  background: linear-gradient(180deg, rgba(35, 38, 91, 0.6) 0%, #23265B 53.37%), url("/wp-content/uploads/2026/02/praha_satelite-1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  height: 470px;
}
@media (max-width: 992px) {
  .hp-our-people-grid .hp-our-people-card {
    height: 440px;
  }
}
@media (max-width: 992px) {
  .hp-our-people-grid .hp-our-people-card {
    height: 470px;
  }
}
@media (max-width: 460px) {
  .hp-our-people-grid .hp-our-people-card {
    height: 440px;
  }
}
.hp-our-people-grid .hp-our-people-card img {
  position: absolute;
  height: 518px;
  width: 390px;
  object-fit: cover;
  object-position: top center;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1400px) {
  .hp-our-people-grid .hp-our-people-card img {
    width: 324px;
  }
}
@media (max-width: 1200px) {
  .hp-our-people-grid .hp-our-people-card img {
    width: 380px;
  }
}
@media (max-width: 992px) {
  .hp-our-people-grid .hp-our-people-card img {
    width: 300px;
    height: 480px;
  }
}
@media (max-width: 767px) {
  .hp-our-people-grid .hp-our-people-card img {
    width: 380px;
    height: 518px;
  }
}
@media (max-width: 460px) {
  .hp-our-people-grid .hp-our-people-card img {
    width: 324px;
    height: 480px;
  }
}
.hp-our-people-grid .hp-our-people-card .hp-our-people-text-wrap {
  position: absolute;
  left: 0;
  bottom: 72px;
  padding: 2em;
  background-color: #D32616;
  border-radius: 0 15px 15px 0;
  height: 196px;
  width: 80%;
}
.hp-our-people-grid .hp-our-people-card .hp-our-people-text-wrap h4 {
  margin: 4px 0;
}

.personal-section {
  margin-top: 5em;
}
.personal-section .personal-wrap {
  width: 100%;
  border: 1.5px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
  padding: 4.5em;
  display: flex;
  flex-direction: column;
  gap: 4.5em;
}
@media (max-width: 767px) {
  .personal-section .personal-wrap {
    padding: 3em;
    gap: 4em;
  }
}
@media (max-width: 460px) {
  .personal-section .personal-wrap {
    padding: 2em;
    gap: 3em;
  }
}
.personal-section .personal-wrap .personal-personal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 5.5em;
}
@media (max-width: 1200px) {
  .personal-section .personal-wrap .personal-personal {
    gap: 3em;
    grid-template-columns: calc(60% - 1.5em) calc(40% - 1.5em);
  }
}
@media (max-width: 992px) {
  .personal-section .personal-wrap .personal-personal {
    grid-template-columns: 100%;
  }
}
.personal-section .personal-wrap .personal-personal .person-img-wrap {
  position: relative;
  background: linear-gradient(180deg, rgba(35, 38, 91, 0.6) 0%, #23265B 53.37%), url("/wp-content/uploads/2026/01/ca733c24fcc64dede1b52f887654a5d33386f15e.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  aspect-ratio: 4/3;
  border-radius: 27px;
}
@media (max-width: 1200px) {
  .personal-section .personal-wrap .personal-personal .person-img-wrap {
    width: 100%;
    height: auto;
  }
}
.personal-section .personal-wrap .personal-personal .person-img-wrap img {
  position: absolute;
  height: 512px;
  width: 470px;
  object-fit: cover;
  object-position: top center;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1200px) {
  .personal-section .personal-wrap .personal-personal .person-img-wrap img {
    height: 420px;
    width: 380px;
  }
}
@media (max-width: 992px) {
  .personal-section .personal-wrap .personal-personal .person-img-wrap img {
    height: 512px;
    width: 470px;
  }
}
@media (max-width: 767px) {
  .personal-section .personal-wrap .personal-personal .person-img-wrap img {
    height: 380px;
    width: 320px;
  }
}
@media (max-width: 576px) {
  .personal-section .personal-wrap .personal-personal .person-img-wrap img {
    width: 90%;
    height: 120%;
  }
}
.personal-section .personal-wrap .personal-personal .person-contact-info {
  display: flex;
  flex-direction: column;
}
.personal-section .personal-wrap .personal-personal .person-contact-info h1 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.personal-section .personal-wrap .personal-personal .person-contact-info p {
  margin-bottom: 1.5em;
  font-weight: 700;
}
.personal-section .personal-wrap .personal-personal .person-contact-info .person-btns {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.personal-section .personal-wrap .personal-short-desc {
  position: relative;
  width: 100%;
  padding: 6em 3em;
  background-color: #E9F8FD;
  border-radius: 20px;
  display: flex;
  justify-content: center;
}
.personal-section .personal-wrap .personal-short-desc p {
  text-align: center;
  max-width: 536px;
  font-size: 1.125em;
  font-weight: 600;
}
.personal-section .personal-wrap .personal-short-desc::before {
  content: "";
  position: absolute;
  top: 3em;
  left: 3em;
  height: 35px;
  width: 55px;
  background-image: url("/wp-content/uploads/2026/01/Stroke.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 992px) {
  .personal-section .personal-wrap .personal-short-desc::before {
    top: 1.5em;
    left: 1.5em;
  }
}
@media (max-width: 560px) {
  .personal-section .personal-wrap .personal-short-desc::before {
    height: 28px;
    width: 48px;
  }
}
.personal-section .personal-wrap .personal-short-desc::after {
  content: "";
  position: absolute;
  bottom: 3em;
  right: 3em;
  height: 35px;
  width: 55px;
  background-image: url("/wp-content/uploads/2026/01/Stroke-1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 992px) {
  .personal-section .personal-wrap .personal-short-desc::after {
    right: 1.5em;
    bottom: 1.5em;
  }
}
@media (max-width: 560px) {
  .personal-section .personal-wrap .personal-short-desc::after {
    height: 28px;
    width: 48px;
  }
}
.personal-section .personal-wrap .zivotopis-part p {
  margin-top: 1.25em;
}

.bottom-form-wrap {
  width: 100%;
  padding: 5em;
  background: linear-gradient(90deg, #D32616 47.07%, rgba(211, 38, 22, 0.8) 100%), url("/wp-content/uploads/2026/02/praha_satelite-1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 32px;
  border-radius: 30px;
  color: white;
  position: relative;
}
@media (max-width: 992px) {
  .bottom-form-wrap {
    padding: 3.5em;
  }
}
.bottom-form-wrap .bottom-form-content {
  width: 690px;
}
@media (max-width: 1400px) {
  .bottom-form-wrap .bottom-form-content {
    width: 60%;
  }
}
@media (max-width: 1200px) {
  .bottom-form-wrap .bottom-form-content {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .bottom-form-wrap .bottom-form-content {
    width: 100%;
  }
}
.bottom-form-wrap .bottom-form-content h2 {
  margin-top: 20px;
}
.bottom-form-wrap .bottom-form-content form {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}
@media (max-width: 992px) {
  .bottom-form-wrap .bottom-form-content form {
    width: 100%;
  }
}
.bottom-form-wrap .bottom-form-content form .form-double-row {
  margin-top: 2.5em;
  width: 100%;
  display: flex;
  gap: 1.25em;
}
@media (max-width: 992px) {
  .bottom-form-wrap .bottom-form-content form .form-double-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .bottom-form-wrap .bottom-form-content form .form-double-row input {
    width: 100%;
  }
}
.bottom-form-wrap .bottom-form-content form .form-double-row .input-wrap {
  display: flex;
  background-color: rgba(255, 255, 255, 0.2);
  align-items: center;
  border-radius: 10px;
  width: 100%;
  height: 64px;
  padding: 20px 24px;
  gap: 8px;
  justify-content: space-between;
}
.bottom-form-wrap .form-person-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 680px;
}
@media (max-width: 1200px) {
  .bottom-form-wrap .form-person-img {
    height: 520px;
  }
}
@media (max-width: 992px) {
  .bottom-form-wrap .form-person-img {
    display: none;
  }
}

#form-head-with-underline {
  position: relative;
}
#form-head-with-underline::before {
  content: "";
  position: absolute;
  width: 110%;
  bottom: -10px;
  height: 5px;
  left: -5%;
  background-image: url("/wp-content/uploads/2026/01/Line-4-1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.events-calendar-filter .calendar-part {
  padding: 2.5em 4em;
  padding-bottom: 8px;
}
@media (max-width: 600px) {
  .events-calendar-filter .calendar-part {
    padding: 2em;
  }
}
.events-calendar-filter .flatpickr-calendar {
  width: 100% !important;
  box-shadow: none;
  border: none;
  background: transparent;
  padding: 1.5em;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-days {
  width: 100% !important;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-months .flatpickr-month {
  height: 50px;
  color: #000;
  fill: #000;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-months .flatpickr-prev-month, .events-calendar-filter .flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  fill: #D32616;
  top: 10px;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-months .flatpickr-prev-month svg, .events-calendar-filter .flatpickr-calendar .flatpickr-months .flatpickr-next-month svg {
  width: 18px;
  height: 18px;
  stroke: #D32616;
  stroke-width: 2;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-months .flatpickr-prev-month svg path, .events-calendar-filter .flatpickr-calendar .flatpickr-months .flatpickr-next-month svg path {
  fill: inherit;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover svg, .events-calendar-filter .flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #D32616;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-months .flatpickr-current-month {
  font-size: 1.5em;
  font-weight: 700;
  padding-top: 0;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-months .flatpickr-current-month span.cur-month {
  font-family: inherit;
  color: #000;
  margin-left: 0.5ch;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-months .flatpickr-current-month span.cur-month:hover {
  background: transparent;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-months .flatpickr-current-month .numInputWrapper span.arrowUp, .events-calendar-filter .flatpickr-calendar .flatpickr-months .flatpickr-current-month .numInputWrapper span.arrowDown {
  display: none;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-months .flatpickr-current-month .numInputWrapper input.cur-year {
  font-weight: 700;
  color: #000;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-innerContainer {
  margin-top: 20px;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-rContainer {
  width: 100%;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-weekdays {
  margin-bottom: 10px;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-weekdays .flatpickr-weekdaycontainer {
  justify-content: space-around;
}
.events-calendar-filter .flatpickr-calendar .flatpickr-weekdays span.flatpickr-weekday {
  color: #000;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}
.events-calendar-filter .flatpickr-calendar .dayContainer {
  justify-content: space-around;
  width: 100%;
  min-width: 100%;
}
.events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day {
  max-width: 45px;
  height: 45px;
  line-height: 45px;
  margin: 5px 0;
  border-radius: 50%;
  border: none;
  color: #000;
  font-weight: 600;
  font-size: 16px;
}
.events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day.prevMonthDay, .events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day.nextMonthDay {
  color: transparent;
  pointer-events: none;
}
.events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day:hover {
  background: #f0f0f0;
}
.events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day.has-event {
  background-color: #FFEBEB;
  color: #D32616;
}
.events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day.startRange, .events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day.endRange, .events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day.startRange.inRange, .events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day.endRange.inRange {
  background: #D32616 !important;
  color: #fff !important;
  border-color: #D32616 !important;
  box-shadow: none !important;
}
.events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day.startRange {
  border-radius: 50px 0 0 50px;
}
.events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day.endRange {
  border-radius: 0 50px 50px 0;
}
.events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day.endRange {
  border-radius: 0 50px 50px 0;
}
.events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day.startRange.endRange {
  border-radius: 50px !important;
}
.events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day.inRange {
  background: #D32616 !important;
  color: #FFFFFF !important;
  border-color: #D32616 !important;
  box-shadow: none !important;
  border-radius: 0;
}
.events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day.today {
  border: none;
}
.events-calendar-filter .flatpickr-calendar .dayContainer .flatpickr-day.today:not(.selected) {
  color: #D32616;
  font-weight: 900;
}
.events-calendar-filter .events-filters-wrap {
  margin-top: 5em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5em;
}
@media (max-width: 1200px) {
  .events-calendar-filter .events-filters-wrap {
    gap: 2em;
  }
}
@media (max-width: 992px) {
  .events-calendar-filter .events-filters-wrap {
    gap: 3em;
    grid-template-columns: 100%;
  }
}
.events-calendar-filter .events-filters-wrap .calendar-part {
  width: 100%;
  border: 1.5px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
}
.events-calendar-filter .events-filters-wrap .rubrics-wrap {
  background-color: #23265B;
  border-radius: 20px;
  padding: 2.5em 4.5em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 400px;
}
@media (max-width: 600px) {
  .events-calendar-filter .events-filters-wrap .rubrics-wrap {
    padding: 2em;
  }
}
.events-calendar-filter .events-filters-wrap .rubrics-wrap .rubrics-upper {
  display: flex;
  flex-direction: column;
  gap: 2em;
  color: white;
}
.events-calendar-filter .events-filters-wrap .rubrics-wrap .rubrics-filt-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25em;
}
.events-calendar-filter .events-filters-wrap .rubrics-wrap .rubrics-filt-wrap .filter-rubric {
  padding: 1em 1.25em;
  border-radius: 10px;
  border: 1.5px solid #FFFFFF;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s;
}
.events-calendar-filter .events-filters-wrap .rubrics-wrap .rubrics-filt-wrap .filter-rubric:hover {
  background-color: #FFFFFF;
  color: #23265B;
}
.events-calendar-filter .events-filters-wrap .rubrics-wrap .rubrics-filt-wrap .filter-rubric.active {
  background-color: #FFFFFF;
  color: #D32616;
}

.login-register-section {
  margin-top: 6em;
}
.login-register-section .login-register-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3em;
}
@media (max-width: 767px) {
  .login-register-section .login-register-wrap {
    grid-template-columns: 100%;
    gap: 4em;
  }
}
.login-register-section .login-register-wrap .login-register-part {
  display: flex;
  flex-direction: column;
}
.login-register-section .login-register-wrap .login-register-part h2 {
  margin-bottom: 2rem;
}
.login-register-section .login-register-wrap .login-register-part .login-input-wrap {
  margin-bottom: 1.5em;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1.5px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
  padding: 1.5em;
}
.login-register-section .login-register-wrap .login-register-part .login-input-wrap input {
  width: 80%;
  font-weight: 500;
  color: black;
}
.login-register-section .login-register-wrap .login-register-part .login-input-wrap input::placeholder {
  color: black;
  font-weight: 500;
}
.login-register-section .login-register-wrap .login-register-part .login-reset-link {
  margin-bottom: 2em;
  font-weight: 700;
  font-size: 0.875em;
}
.login-register-section .login-register-wrap .login-register-part .login-reset-link a {
  color: #D32616;
}
.login-register-section .login-register-wrap .login-register-part .login-reset-link a:hover {
  color: #ac1c0f;
}
.login-register-section .login-register-wrap .login-register-part .register-reset-link {
  font-weight: 500;
  margin-bottom: 2em;
  font-size: 0.875em;
}

.login-error-wrap {
  margin-top: 1em;
  font-weight: 600;
  color: #D32616;
}

.my-account-section {
  margin-top: 6em;
}
.my-account-section .my-account-upper {
  margin-top: 3em;
  width: 100%;
  padding: 4em 3em;
  background-color: #23265B;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .my-account-section .my-account-upper {
    flex-direction: column;
    align-items: start;
    gap: 2em;
  }
}
.my-account-section .my-account-upper .my-account-ctas {
  display: flex;
  align-items: center;
  gap: 1.25em;
}
@media (max-width: 992px) {
  .my-account-section .my-account-upper .my-account-ctas {
    flex-direction: column;
    gap: 0.75em;
  }
}
@media (max-width: 767px) {
  .my-account-section .my-account-upper .my-account-ctas {
    flex-direction: row;
  }
}
@media (max-width: 576px) {
  .my-account-section .my-account-upper .my-account-ctas {
    flex-direction: column;
  }
}
.my-account-section .my-account-bottom {
  margin-top: 3em;
  display: flex;
  gap: 3em;
}
@media (max-width: 767px) {
  .my-account-section .my-account-bottom {
    flex-direction: column;
  }
}
.my-account-section .my-account-bottom .my-account-menu {
  background-color: #23265B;
  border-radius: 15px;
  padding: 3em;
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  width: 420px;
  height: fit-content;
}
@media (max-width: 767px) {
  .my-account-section .my-account-bottom .my-account-menu {
    width: 100%;
  }
}
.my-account-section .my-account-bottom .my-account-menu .my-account-menu-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1.5px solid #FFFFFF;
  color: white;
  padding: 1em 1.75em;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}
.my-account-section .my-account-bottom .my-account-menu .my-account-menu-item:hover {
  background-color: #FFFFFF;
  color: black;
}
.my-account-section .my-account-bottom .my-account-menu .my-account-menu-item.active {
  background-color: #FFFFFF;
  color: black;
}
.my-account-section .my-account-bottom .my-account-content {
  width: 100%;
}
.my-account-section .my-account-bottom .my-account-content .account-content-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.my-account-section .my-account-bottom .my-account-content .account-content-wrap h2 {
  margin-bottom: 2rem;
}
.my-account-section .my-account-bottom .my-account-content .account-content-wrap .account-settings-wrap {
  border: 1.5px solid rgba(0, 0, 0, 0.1019607843);
  padding: 3em;
  border-radius: 15px;
}
.my-account-section .my-account-bottom .my-account-content .account-content-wrap .account-settings-wrap h3 {
  margin-bottom: 1.25em;
}
.my-account-section .my-account-bottom .my-account-content .account-content-wrap .account-settings-wrap .account-setting-row {
  width: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
}
@media (max-width: 480px) {
  .my-account-section .my-account-bottom .my-account-content .account-content-wrap .account-settings-wrap .account-setting-row {
    width: 100%;
  }
}
.my-account-section .my-account-bottom .my-account-content .account-content-wrap .account-settings-wrap .account-setting-row input {
  border: 1.5px solid rgba(0, 0, 0, 0.1019607843) !important;
  border-radius: 8px;
  color: black !important;
  padding: 1em;
}

.account-inzeraty-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}
.account-inzeraty-wrap .account-inz {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1.5px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 15px;
  padding: 1.25em 1.25em;
}
.account-inzeraty-wrap .account-inz span {
  font-weight: 600;
}
.account-inzeraty-wrap .account-inz .inz-name {
  width: 160px;
  font-weight: 800;
  text-decoration: underline;
}
.account-inzeraty-wrap .account-inz .span-type-active {
  color: #0CB83A;
}
.account-inzeraty-wrap .account-inz .span-type-waiting {
  color: #D32616;
}
.account-inzeraty-wrap .account-inz .inz-edit {
  display: flex;
  align-items: center;
  gap: 0.75em;
  font-weight: 800;
  text-decoration: underline;
  color: #D32616;
  cursor: pointer;
}

.add-inzerat-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 6em;
}
.add-inzerat-wrap h1 {
  text-align: center;
  margin-bottom: 3rem;
}
.add-inzerat-wrap .inzerat-input-wrap {
  width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  margin-bottom: 2em;
}
@media (max-width: 992px) {
  .add-inzerat-wrap .inzerat-input-wrap {
    width: 100%;
  }
}
.add-inzerat-wrap .inzerat-input-wrap input, .add-inzerat-wrap .inzerat-input-wrap textarea {
  border: 1.5px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
  padding: 1.5em;
  color: black;
}
.add-inzerat-wrap .inzerat-input-wrap input::placeholder, .add-inzerat-wrap .inzerat-input-wrap textarea::placeholder {
  color: rgba(0, 0, 0, 0.7);
  width: 100%;
}
.add-inzerat-wrap .inzerat-input-wrap input:focus, .add-inzerat-wrap .inzerat-input-wrap textarea:focus {
  border-color: #D32616;
}
.add-inzerat-wrap .inzerat-input-wrap .inzerat-input-price-wrap {
  display: flex;
  align-items: center;
  gap: 1.5em;
}
.add-inzerat-wrap .inzerat-input-wrap .inzerat-contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}
.add-inzerat-wrap .inzerat-input-wrap .inzerat-contact-wrap .phone-wrap {
  display: flex;
  align-items: center;
  gap: 1.5em;
}
.add-inzerat-wrap .inzerat-input-wrap .btn {
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-inzerat-wrap .inzerat-input-wrap .inzerat-single-img-wrap, .add-inzerat-wrap .inzerat-input-wrap .inzerat-other-img-wrap {
  display: flex;
  justify-content: start;
  gap: 1em;
  height: 200px;
  padding: 1.5em;
  border: 1.5px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
}
.add-inzerat-wrap .inzerat-input-wrap .inzerat-img-placeholder, .add-inzerat-wrap .inzerat-input-wrap .inzerat-other-img-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: fit-content;
  font-size: 0.875em;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  color: #D32616;
  gap: 0.5em;
}
.add-inzerat-wrap .inzerat-podminky {
  margin-bottom: 2em;
  font-size: 0.875em;
  font-weight: 500;
}
.add-inzerat-wrap .inzerat-podminky a {
  color: #D32616;
  text-decoration: underline;
  font-weight: 700;
}

.inzerce-desc {
  border-bottom: 0 !important;
}

.seller-row {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 1.5em;
  font-weight: 500;
}
.seller-row:last-child {
  margin-bottom: 3em;
}

.price-and-contacts {
  border: 1.5px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
  padding: 3em;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.price-and-contacts .btn {
  margin-top: 1em;
}
.price-and-contacts h3 {
  font-size: 2em;
}

.main-inzerce-cont {
  display: flex;
  gap: 3em;
}

.inzerce-info-wrapp {
  width: 65%;
}
.inzerce-info-wrapp .single-article-wrap {
  width: 100%;
  max-width: 100%;
  margin-top: 3em;
}

.inzerat-img-gallery {
  margin-top: 4em;
}
.inzerat-img-gallery img {
  width: 100%;
}

.inzerat-img-gallery {
  margin-top: 4em;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  height: 520px;
}
.inzerat-img-gallery .swiper-pagination .swiper-pagination-bullet {
  height: 1em;
  width: 1em;
  background-color: white !important;
  opacity: 1 !important;
}
.inzerat-img-gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #D32616 !important;
}

.ds-inzerat-filter-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #23265B;
  padding: 1.25em;
  border-radius: 10px;
  margin-top: 3em;
  gap: 2.5em;
}
@media (max-width: 1200px) {
  .ds-inzerat-filter-wrap {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 1.5em;
  }
}
.ds-inzerat-filter-wrap .inzerat-filter-inputs {
  gap: 1.25em;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .ds-inzerat-filter-wrap .inzerat-filter-inputs {
    grid-template-columns: unset;
  }
}
.ds-inzerat-filter-wrap .inzerat-filter-inputs .inzerat-filter-input-group {
  display: flex;
  align-items: center;
  padding: 1em;
  gap: 1em;
  background-color: white;
  border-radius: 10px;
  height: 60px;
}
.ds-inzerat-filter-wrap .inzerat-filter-inputs .inzerat-filter-input-group input {
  height: 100%;
  color: black;
  font-weight: 700;
}
.ds-inzerat-filter-wrap .inzerat-filter-inputs .inzerat-filter-input-group input::placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 700;
}

.calendar-part .flatpickr-calendar {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
}

.calendar-part .flatpickr-innerContainer,
.calendar-part .flatpickr-rContainer,
.calendar-part .flatpickr-days,
.calendar-part .dayContainer {
    width: 100% !important;
    max-width: none !important;
    min-width: 100% !important;
}

.calendar-part .flatpickr-weekdaycontainer {
    display: flex;
    width: 100% !important;
}

.calendar-part .flatpickr-weekday {
    flex: 1 !important;
    max-width: none !important;
}

.calendar-part .dayContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.calendar-part .flatpickr-day {
    flex-basis: 14.2857% !important;
    max-width: 14.2857% !important;
    width: 14.2857% !important;
    height: auto !important;
    aspect-ratio: 1 / 1; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}

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