/*!
Theme Name: zls8ud
Theme URI: #
Version: 4.3.7
Tested up to: 7.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: zls8ud
*/

:root {
  --text-color: #424242;
  --heading-color: #FFC107;
  --primary-btn-bg: #FF9800;
  --secondary-btn-bg: #FF5722;
  --primary-btn-color: #FFFFFF;
  --secondary-btn-color: #FFFFFF;

  --header-bg-color: #FFEB3B;
  --header-text-color: #FFC107;
  --header-border: 1px solid #FF9800;

  --footer-bg-color: #F57F20;
  --footer-text-color: #FFFFFF;
  --footer-direction: row-reverse;
  --footer-justify: space-between;

  --table-bg-color: #F9FBE7;
  --table-border-color: #R8188;
  --table-text-color: #3c410b;

  --body-bg-color: #FFEB3B;
  --card-bg-color: #fff6a3;
  --card-text-color: #424242;
  --card-border: {{card-border}};
  --card-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);

  --banner-direction: left;
  --banner-column: 74%;
  --banner-padding: 144px;
  --banner-border: 2px solid #FF9800;
  --banner-bg-color: #FFEB3B;
  --banner-text-color: #000000;

  --container-max-width: 1315px;
  --container-padding: 0 15px;
  --border-radius: 22px;
  --py: 17px;
  --py-2: 40px;
  --py-3: 51px;
  --text-align: center;
  --mb: 16px;
  --fz-1: 28.8px;
  --fz-2: 24px;
  --fz-3: 20px;
  --logo-width: 187px;
  --menu-margin: 0 auto 0 0;

  --animation-duration: 907ms;
  --animation-type: ease;
  --animation-effect: fadeInUp;

  --contrast-bg-color: #000000;
  --contrast-text-color: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--body-bg-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  max-height: 650px;
  width: auto;
}

ul, ol {
  margin: 0;
}

.yscjbgwvk__wrapper {
  width: var(--container-max-width);
  max-width: 100%;
  margin: 0 auto;
  padding: var(--container-padding);
}


      .qftswjgpv__head {
        padding: var(--py) 0;
      }

      .klpwqrxjt__h {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: var(--mb);
      }

      .rgapwtfcl__top {
        display: flex;
        gap: var(--mb);
        list-style: none;
        margin: 0;
        padding: 12px 32px;
        border-radius: var(--border-radius);
        border: 1px solid #ffcb7f;
      }

      .lzesprntk__head {
        color: var(--heading-color);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .lzesprntk__head:hover {
        color: var(--primary-btn-bg);
      }


      .uliwpcasb__h {
        display: flex;
        gap: 10px;
      }

      .hlozgqpam__head {
        display: none;
      }

      .tyrnxocws__log img {
        margin: 0 auto;
        display: block;
      }

      @media (max-width: 1024px) {
        .klpwqrxjt__h {
          justify-content: space-between;
          flex-direction: row;
        }

        .lzesprntk__head {
          color: var(--header-text-color);
        }
      }
    

@media (max-width: 1024px) {
  .rgapwtfcl__top {
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--header-bg-color);
    z-index: 100;
    padding: var(--py) 15px;
    display: block;
  }

  .lzesprntk__head {
    padding: 10px 0;
    display: block;
  }

  .rgapwtfcl__top.active {
    opacity: 1;
    visibility: visible;
  }

  .hlozgqpam__head {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    height: 30px;
    width: 30px;
    z-index: 101;
    padding: 2.5px 0px;
  }

  .hlozgqpam__head span {
    display: block;
    height: 5px;
    width: 30px;
    background: var(--header-text-color);
    border-radius: 30px;
    transition: 0.3s;
  }

  .hlozgqpam__head.active span:first-child {
    transform: translateY(4px) rotate(45deg)
  }

  .hlozgqpam__head.active span:nth-child(2) {
    transform: translateY(-9px) rotate(-45deg)
  }
}

.tyrnxocws__log {
  width: var(--logo-width);
  font-weight: 800;
  font-size: 24px;
  display: block;
}

.tyrnxocws__log img {
  max-height: 80px;
}

.lstekovqh__primary,
.xejnpcokm__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.lstekovqh__primary {
  background-color: var(--primary-btn-bg);
  color: var(--primary-btn-color);
}

.lstekovqh__primary:hover {
  background-color: var(--secondary-btn-bg);
  color: var(--secondary-btn-color);
}

.xejnpcokm__secondary {
  background-color: var(--secondary-btn-bg);
  color: var(--secondary-btn-color);
}

.xejnpcokm__secondary:hover {
  background-color: var(--primary-btn-bg);
  color: var(--primary-btn-color);
}

.axktediuj__bottom{
  position: relative;
}
.axktediuj__bottom * {
  z-index: 1;
  position: relative;
}


      .uktqrsjyv__text > .wp-block-image {
        margin: 2rem 0;
        display: block;
      }

      .uktqrsjyv__text > .wp-block-image img {
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        max-width: 100%;
        height: auto;
        display: block;
      }

      .uktqrsjyv__text > .wp-block-image img:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      }
    


    .otsuaxicj__ps {
      margin: 0 auto 0;
      max-width: 100%;
      width: 100%;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px 35px;
      background: rgb(from var(--table-bg-color) r g b / 0.5);
      border-radius: var(--border-radius);
      padding: 15px;
      box-sizing: border-box;
      margin-bottom: var(--mb);
    }

    .otsuaxicj__ps a {
      color: var(--table-text-color);
      text-decoration: none;
      text-transform: capitalize;
      transition: all .3s ease;
    }

    .otsuaxicj__ps a:hover {
      opacity: .7;
    }

    .cpierdxbs__pr {
      font-size: var(--fz-2);
      font-weight: bold;
      color: var(--heading-color);
      margin-bottom: var(--mb);
    }
    


    .axktediuj__bottom {
      background-color: var(--footer-bg-color);
      color: var(--footer-text-color);
      padding: var(--py-2) 0;
    }

    .kbhusvfzg__f {
      max-width: var(--container-max-width);
      margin: 0 auto;
      padding: 0 var(--mb);
    }

    .lyroedntj__foot {
      display: flex;
      justify-content: var(--footer-justify);
      flex-direction: var(--footer-direction);
      gap: var(--mb);
      margin-bottom: var(--mb);
    }

    .kqyrxpnsd__foot {
      display: flex;
      flex-direction: column;
    }

    .wlbcnjgek__f {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: var(--mb);
      color: var(--footer-text-color);
    }

    .gyuszxqlp__footer {
      display: flex;
      gap: 15px;
      list-style: none;
      flex-direction: column;
      margin: 0;
      padding: 0;
    }

    .ahivusdcq__foot {
      color: var(--footer-text-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .ahivusdcq__foot:hover {
      color: var(--primary-btn-bg);
    }

    .pzymjwclr__bottom {
      margin: 0 0 15px 0;
      font-size: 14px;
      color: var(--footer-text-color);
      opacity: 0.8;
    }

    .rayjbwpxd__foot {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .hztajirnl__f {
      padding: 10px 15px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--border-radius);
      background: rgba(255, 255, 255, 0.1);
      color: var(--footer-text-color);
      font-size: 14px;
      outline: none;
    }

    .hztajirnl__f::placeholder {
      color: var(--footer-text-color);
      opacity: 0.6;
    }

    @media (max-width: 768px) {
      .lyroedntj__foot {
        flex-direction: column;
      }
    }
    



.gyuszxqlp__footer li:empty {
  display: none;
}

.deamlswqu__b {
  text-align: var(--banner-direction);
  color: var(--banner-text-color);
  position: relative;
  overflow: hidden;
}

/*
.deamlswqu__b {
  text-align: var(--banner-direction);
  padding: var(--banner-padding) 0;
  background-color: var(--banner-bg-color);
  color: var(--banner-text-color);
  border-bottom: var(--banner-border);
  position: relative;
  overflow: hidden;
}

.deamlswqu__b svg {
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  z-index: 0;
}

.zqlpdumhb__hr{
  display: flex;
  justify-content: var(--banner-direction);
  align-items: center;
  gap: var(--mb);
}

.lfuybrjtc__hero {
  width: var(--banner-column);
  animation: var(--animation-effect) var(--animation-duration) var(--animation-type);
  animation-fill-mode: both;
}
  */

h1 {
  font-size: var(--fz-1);
  margin-bottom: var(--mb);
  font-weight: 700;
  margin-top: 0;
}

h2 {
  color: var(--heading-color);
  font-size: var(--fz-2);
  margin-bottom: var(--mb);
  font-weight: 700;
  margin-top: var(--py-2);
}

h3 {
  color: var(--heading-color);
  font-size: var(--fz-3);
  margin-bottom: var(--mb);
  font-weight: 700;
  margin-top: 0;
}

.iuqsglncb__tb{
  overflow-x: auto;
  width: 100%;
}

.uktqrsjyv__text {
  padding: var(--py-2) 0;
  text-align: var(--text-align);
}

.uktqrsjyv__text p {
  margin-top: 0;
  margin-bottom: var(--mb);
}

.uktqrsjyv__text ul {
  width: auto;
  margin-bottom: var(--mb);
  max-width: 100%;
  list-style-position: inside;
}

.uktqrsjyv__text ul {
  list-style: none;
}

.uktqrsjyv__text ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: var(--text-align);
}

.uktqrsjyv__text ul li::before {
  content: "";
  margin-right: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-btn-bg);
  border-radius: 50%;
}


    .uktqrsjyv__text ol {
      counter-reset: list-counter;
      list-style: none;
      padding-left: 0;
      margin: 1.5rem 0;
      width: max-content;
      max-width: 100%;
      text-align: left;
      display: inline-block;
    }

    .uktqrsjyv__text ol li {
      counter-increment: list-counter;
      position: relative;
      padding-left: 3rem;
      margin-bottom: 1rem;
      line-height: 1.6;
      color: var(--text-color);
    }

    .uktqrsjyv__text ol li::before {
      content: counter(list-counter);
      position: absolute;
      left: 0;
      top: 0;
      background: linear-gradient(135deg, #ff9800 0%, #ffb84d 100%);
      color: white;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 0.875rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    


      .aioseo-breadcrumbs {
        margin: 0.75rem 0;
        padding: 0.25rem 0;
        font-size: 0.8rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 0.5rem;
      }

      .aioseo-breadcrumb {
        display: inline-block;
      }

      .aioseo-breadcrumb a {
        color: #FF9800;
        text-decoration: none;
        opacity: 0.7;
        transition: all 0.2s ease;
        padding: 0.125rem 0.25rem;
        border-radius: 3px;
      }

      .aioseo-breadcrumb a:hover {
        opacity: 1;
        background: rgba(255, 255, 255, 0.05);
      }

      .aioseo-breadcrumb:not(:has(a)) {
        color: var(--text-color);
        opacity: 0.5;
        font-weight: 500;
      }

      .aioseo-breadcrumb-separator {
        color: var(--text-color);
        opacity: 0.3;
        margin: 0 0.375rem;
        font-size: 0.75rem;
      }
    


      .uktqrsjyv__text table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: var(--mb);
        background-color: var(--table-bg-color);
        color: var(--table-text-color);
        border-radius: var(--border-radius);
        border: 1px solid #e9f0a8;
        overflow: hidden;
      }

      .uktqrsjyv__text table thead {
        background-color: #f7fae0;
      }

      .uktqrsjyv__text table thead tr {
        border-bottom: 1px solid #e9f0a8;
      }

      .uktqrsjyv__text table th {
        padding: 21px 29px;
        font-weight: bold;
        font-size: 14px;
        color: var(--heading-color);
        letter-spacing: 0.05em;
        border: none;
      }

      .uktqrsjyv__text table tbody tr {
        border-bottom: 1px solid #e9f0a8;
        transition: background-color 0.2s ease;
      }

      .uktqrsjyv__text table tbody tr:last-child {
        border-bottom: none;
      }

      .uktqrsjyv__text table tbody tr:hover {
        background-color: #f8fbe5;
      }

      .uktqrsjyv__text table td {
        padding: 21px 26px;
        font-size: 14px;
        color: var(--table-text-color);
        border: none;
      }

      .uktqrsjyv__text table td:first-child {
        font-weight: 500;
      }
    

.uktqrsjyv__text img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: var(--mb);
  border-radius: var(--border-radius);
}

.hwcmgkbpy__post {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kvtjdwiny__article {
  background-color: var(--table-bg-color);
  padding: 20px;
  border-radius: 10px;
}



      .jftxgcbsa__col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin: var(--py-2) 0;
        align-items: center;
      }

      .jftxgcbsa__col .albkqovps__col:first-child {
        order: 1;
      }

      .jftxgcbsa__col .albkqovps__col:last-child {
        order: 2;
        padding-left: 2rem;
      }

      .jftxgcbsa__col h2 {
        margin-top: 0;
        color: var(--primary-btn-bg);
        position: relative;
        padding-bottom: 1rem;
      }

      .jftxgcbsa__col h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 3rem;
        height: 3px;
        background: linear-gradient(90deg, #ff9800 0%, #ffc266 100%);
        border-radius: 2px;
      }

      .jftxgcbsa__col figure {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      }

      .jftxgcbsa__col figure img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
        border-radius: var(--border-radius);
      }

      .jftxgcbsa__col figure:hover img {
        transform: scale(1.05);
      }

      @media (max-width: 1024px) {
        .jftxgcbsa__col {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .jftxgcbsa__col .albkqovps__col:first-child {
          order: 1;
        }

        .jftxgcbsa__col .albkqovps__col:last-child {
          order: 2;
          padding-right: 0;
        }
      }
    

.rwktmjoiu__table {
  background: rgb(from var(--table-bg-color) r g b / 0.5);
  border-radius: var(--border-radius);
  padding: var(--py-3);
  margin: var(--py-2) auto;
  width: max-content;
  max-width: 100%;
}

.rwktmjoiu__table p,
.rwktmjoiu__table h2 {
  max-width: 1000px;
  margin: 0 auto var(--mb);
}

.rwktmjoiu__table table {
  margin: 0 auto;
  border-radius: var(--border-radius);
  border: 0;
  max-width: 1000px;
}

.rwktmjoiu__table table td,
.rwktmjoiu__table table th {
  border: 0;
}

.rwktmjoiu__table table tr {
  border-bottom: 1px solid var(--table-border-color);
}

.rwktmjoiu__table tr:last-child {
  border-bottom: 0;
}

.rwktmjoiu__table h2 {
  margin-top: 0;
}

/*
.qkbjfhugm__rows {
  border: var(--card-border);
  background-color: var(--card-bg-color);
  color: var(--card-text-color);
  box-shadow: var(--card-shadow);
  padding: var(--py);
  border-radius: var(--border-radius);
}
  */

.rswjgeafq__inv {
  position: relative;
  border-radius: var(--border-radius);
  color: var(--contrast-text-color);
  padding: var(--py-2);
  margin-top: var(--py-2);
  margin-bottom: var(--py-2);
}


    .rswjgeafq__inv{
      background: rgba(255,152,0,0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,152,0,0.2);
      color: var(--text-color);
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    

.rswjgeafq__inv h2 {
  color: inherit;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .zqlpdumhb__hr{
    flex-direction: column;
  }

  .lfuybrjtc__hero {
    width: 100%;
  }

  .rwktmjoiu__table {
    padding: var(--py);
  }

  .rswjgeafq__inv {
    padding: var(--py);
  }
}

.afidrovhe__sitemap{
  display: flex;
  flex-direction: column;
  gap: var(--mb);
  list-style: none;
  margin: 15px 0;
  padding: 15px;
  border-radius: var(--border-radius);
  background: rgb(from var(--table-bg-color) r g b / 0.5);
}
.afidrovhe__sitemap a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 10px;
  border-radius: var(--border-radius);
  background-color: var(--table-bg-color);
  text-align: left;
}
.afidrovhe__sitemap a:hover {
  color: var(--primary-btn-bg);
}
.afidrovhe__sitemap h2 {
  margin-top: 0;
  margin-bottom: var(--mb);
  padding: 10px;
  border-radius: var(--border-radius);
  background-color: var(--table-bg-color);
  text-align: left;
}


    .lpiaukmox__fr {
      background: var(--card-bg-color);
      border-radius: var(--border-radius);
      box-shadow: var(--card-shadow);
      overflow: hidden;
      max-width: 600px;
      margin: var(--mb) auto;
    }

    .vkfrybqwn__fr {
      padding: 30px;
    }

    .vclwtngrh__fr {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .qfvzikrus__frm {
      display: flex;
      flex-direction: column;
    }

    .xudpwiozr__fr {
      font-weight: 600;
      color: var(--heading-color);
      margin-bottom: 8px;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .yfpxgbnol__fr, .umcazgdhb__form {
      padding: 15px 20px;
      border-radius: var(--border-radius);
      border: 2px solid var(--table-border-color);
      background-color: var(--body-bg-color);
      color: var(--text-color);
      font-size: 16px;
      outline: none;
      transition: all 0.3s ease;
    }

    .yfpxgbnol__fr:focus, .umcazgdhb__form:focus {
      border-color: var(--primary-btn-bg);
      box-shadow: 0 0 0 3px rgba(var(--primary-btn-bg-rgb), 0.1);
    }

    .umcazgdhb__form {
      height: 120px;
      resize: vertical;
      font-family: inherit;
    }

    .vkfrybqwn__fr button {
      padding: 15px 30px;
      font-size: 16px;
      font-weight: 600;
      border-radius: var(--border-radius);
      transition: all 0.3s ease;
      width: 100%;
      margin-top: 10px;
    }

    .vkfrybqwn__fr button:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .bevynktpg__frm {
      text-align: center;
      margin-top: 20px;
    }

    .jyhmcrxta__frm {
      color: var(--text-color);
      opacity: 0.7;
      font-size: 12px;
      margin: 0;
    }

    @media (max-width: 768px) {
      .lpiaukmox__fr {
        margin: var(--mb) 15px;
      }

      ."form__header" {
        padding: 20px;
      }

      .vkfrybqwn__fr {
        padding: 20px;
      }

      .vclwtngrh__fr {
        gap: 15px;
      }

      .yfpxgbnol__fr, .umcazgdhb__form {
        padding: 12px 15px;
        font-size: 14px;
      }
    }
    

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}


        .deamlswqu__b {
            background-color: #FFEB3B;
            padding: 82px var(--py) 63px;
        }

        .zqlpdumhb__hr {
            max-width: 761px;
            margin: 0 auto;
        }

        .shojuwqyt__main {
            font-size: clamp(57px, 8vw, 107px);
            font-weight: 900;
            color: #000000;
            margin-bottom: 21px;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        .jzdsgkhop__b {
            font-size: 19px;
            color: #000000;
            opacity: 0.6;
            max-width: 567px;
            margin-bottom: 34px;
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .deamlswqu__b {
                padding: 61px var(--py) 41px;
            }

            .shojuwqyt__main {
                font-size: 47px;
            }

            .jzdsgkhop__b {
                font-size: 15px;
            }
        }
        


        .hzsgabtkd__blocks {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--py);
            padding: var(--py) 0;
        }

        .qkbjfhugm__rows {
            background: #fff6a3;
            border-radius: var(--border-radius);
            padding: var(--py);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .qkbjfhugm__rows::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #FF9800, #FF5722);
        }

        .qkbjfhugm__rows:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .qkbjfhugm__rows h3 {
            color: #424242;
        }

        .qkbjfhugm__rows p {
            color: #424242;
            margin: 0;
        }

        @media (max-width: 768px) {
            .hzsgabtkd__blocks {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        