/*!
Theme Name: ys0aik
Theme URI: #
Version: 1.7.8
Tested up to: 7.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ys0aik
*/

:root {
  --text-color: #2d3436;
  --heading-color: #e84a5f;
  --primary-btn-bg: #ffd32a;
  --secondary-btn-bg: #00b894;
  --primary-btn-color: #2d3436;
  --secondary-btn-color: #ffffff;

  --header-bg-color: #ffffff;
  --header-text-color: #2d3436;
  --header-border: {{header-border}};

  --footer-bg-color: #2d3436;
  --footer-text-color: #ffffff;
  --footer-direction: row-reverse;
  --footer-justify: space-between;

  --table-bg-color: #ffffff;
  --table-border-color: #e1e1e1;
  --table-text-color: #333333;

  --body-bg-color: #f9f9f9;
  --card-bg-color: #ffffff;
  --card-text-color: #2d3436;
  --card-border: {{card-border}};
  --card-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);

  --banner-direction: center;
  --banner-column: 77%;
  --banner-padding: 158.4px;
  --banner-border: 0 solid;
  --banner-bg-color: #ffffff;
  --banner-text-color: #000000;

  --container-max-width: 1521px;
  --container-padding: 0 15px;
  --border-radius: 3px;
  --py: 16px;
  --py-2: 63px;
  --py-3: 59px;
  --text-align: left;
  --mb: 18px;
  --fz-1: 31.68px;
  --fz-2: 26.4px;
  --fz-3: 22px;
  --logo-width: 190px;
  --menu-margin: 0;

  --animation-duration: 972ms;
  --animation-type: ease;
  --animation-effect: fadeIn;

  --contrast-bg-color: #2e2e2e;
  --contrast-text-color: #fcfcfc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', 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;
}

.cont__kvphfqgn {
  width: var(--container-max-width);
  max-width: 100%;
  margin: 0 auto;
  padding: var(--container-padding);
}


      .header__rncvqhwa {
        padding: var(--py) 0;
      }

      .header__nprqyeht {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: var(--mb);
      }

      .h__unwgrmja {
        display: flex;
        gap: var(--mb);
        list-style: none;
        margin: 0;
        padding: 12px 32px;
        border-radius: var(--border-radius);
        border: 1px solid #ffe994;
      }

      .top__mouylrjc {
        color: var(--heading-color);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .top__mouylrjc:hover {
        color: var(--primary-btn-bg);
      }


      .header__qaxbfkhv {
        display: flex;
        gap: 10px;
      }

      .head__ezowhujt {
        display: none;
      }

      .brand__jyrsbplu img {
        margin: 0 auto;
        display: block;
      }

      @media (max-width: 1024px) {
        .header__nprqyeht {
          justify-content: space-between;
          flex-direction: row;
        }

        .top__mouylrjc {
          color: var(--header-text-color);
        }
      }
    

@media (max-width: 1024px) {
  .h__unwgrmja {
    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;
  }

  .top__mouylrjc {
    padding: 10px 0;
    display: block;
  }

  .h__unwgrmja.active {
    opacity: 1;
    visibility: visible;
  }

  .head__ezowhujt {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    height: 30px;
    width: 30px;
    z-index: 101;
    padding: 2.5px 0px;
  }

  .head__ezowhujt span {
    display: block;
    height: 5px;
    width: 30px;
    background: var(--header-text-color);
    border-radius: 30px;
    transition: 0.3s;
  }

  .head__ezowhujt.active span:first-child {
    transform: translateY(4px) rotate(45deg)
  }

  .head__ezowhujt.active span:nth-child(2) {
    transform: translateY(-9px) rotate(-45deg)
  }
}

.brand__jyrsbplu {
  width: var(--logo-width);
  font-weight: 800;
  font-size: 24px;
  display: block;
}

.brand__jyrsbplu img {
  max-height: 80px;
}

.prim__hjqviusm,
.alt__yjdsftmb {
  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;
}

.prim__hjqviusm {
  background-color: var(--primary-btn-bg);
  color: var(--primary-btn-color);
}

.prim__hjqviusm:hover {
  background-color: var(--secondary-btn-bg);
  color: var(--secondary-btn-color);
}

.alt__yjdsftmb {
  background-color: var(--secondary-btn-bg);
  color: var(--secondary-btn-color);
}

.alt__yjdsftmb:hover {
  background-color: var(--primary-btn-bg);
  color: var(--primary-btn-color);
}

.f__yhkegzjd{
  position: relative;
}
.f__yhkegzjd * {
  z-index: 1;
  position: relative;
}


      .txt__xgseialj > .wp-block-image {
        margin: 2.5rem auto;
        display: block;
        position: relative;
        padding: 10px;
        background: linear-gradient(135deg, #ffd32a 0%, #f5c400 100%);
        border-radius: var(--border-radius);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all .3s ease;
        overflow: hidden;
        width: max-content;
        max-width: 100%;
      }

      .txt__xgseialj > .wp-block-image:hover {
        transform: scale(1.01);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      }

      .txt__xgseialj > .wp-block-image img {
        border-radius: var(--border-radius);
        max-width: 100%;
        height: auto;
        display: block;
        position: relative;
        z-index: 1;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
      }
    


    .partners__wcqtxelp {
      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);
    }

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

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

    .nvs__title__ixngmutd {
      font-size: var(--fz-2);
      font-weight: bold;
      color: var(--heading-color);
      margin-bottom: var(--mb);
    }
    


    .f__yhkegzjd {
      position: relative;
      margin-top: 128px;
      padding: 0 24px 50px;
      overflow: hidden;
      background: linear-gradient(to bottom, #384043 0%, #000000 40%, #000000 60%);
    }

    .f__yhkegzjd::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent 0%, var(--primary-btn-bg) 50%, transparent 100%);
    }

    .footer__exhlrabv {
      max-width: 1536px;
      margin: 0 auto;
    }

    .f__uairqemk {
      position: relative;
    }

    .bottom__iudzescb {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 32px;
      margin: 0;
      margin-bottom: 50px;
      list-style: none;
      padding: 50px 0 0 0;
    }

    .bottom__nbotgplm {
      color: var(--footer-text-color);
      opacity: 0.6;
      text-decoration: none;
      font-size: 14px;
      letter-spacing: 0.05em;
      transition: color 0.3s ease, opacity 0.3s ease;
    }

    .bottom__nbotgplm:hover {
      color: var(--primary-btn-bg);
      opacity: 1;
    }

    .f__zluxgyoc {
      width: 100%;
      height: 1px;
      margin: 24px 0;
      background: linear-gradient(to right, transparent 0%, var(--primary-btn-bg) 30%, transparent 100%);
    }

    .bottom__qjxosfcd {
      text-align: center;
      font-size: 12px;
      color: var(--footer-text-color);
      opacity: 0.3;
      letter-spacing: 0.1em;
      margin: 0;
    }

    @media (max-width: 768px) {
      .f__yhkegzjd {
        margin-top: 80px;
        padding: 0 15px 30px 15px;
      }

      .bottom__iudzescb {
        gap: 24px;
      }
    }
    



.bottom__iudzescb li:empty {
  display: none;
}

.main__vtqibrzl {
  text-align: var(--banner-direction);
  color: var(--banner-text-color);
  position: relative;
  overflow: hidden;
}

/*
.main__vtqibrzl {
  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;
}

.main__vtqibrzl svg {
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  z-index: 0;
}

.banner__pvuixcnh{
  display: flex;
  justify-content: var(--banner-direction);
  align-items: center;
  gap: var(--mb);
}

.main__hfyzutsg {
  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;
}

.tb__tvbcmgih{
  overflow-x: auto;
  width: 100%;
}

.txt__xgseialj {
  padding: var(--py-2) 0;
  text-align: var(--text-align);
}

.txt__xgseialj p {
  margin-top: 0;
  margin-bottom: var(--mb);
}

.txt__xgseialj ul {
  width: auto;
  margin-bottom: var(--mb);
  max-width: 100%;
  list-style-position: inside;
}

.txt__xgseialj ul {
  list-style: none;
}

.txt__xgseialj ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: var(--text-align);
}

.txt__xgseialj ul li::before {
  content: "";
  margin-right: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-btn-bg);
  border-radius: 50%;
}


    .txt__xgseialj ol {
      counter-reset: list-counter;
      list-style: none;
      padding-left: 0;
      margin: 3rem 0;
    }

    .txt__xgseialj ol li {
      counter-increment: list-counter;
      position: relative;
      padding-left: 3.5rem;
      margin-bottom: 1rem;
      line-height: 1.6;
      color: var(--text-color);
      border: 1px solid #ffeea8;
      border-radius: 6px;
      padding: 1rem 1rem 1rem 3.5rem;
      background: rgba(255, 255, 255, 0.02);
    }

    .txt__xgseialj ol li::before {
      content: counter(list-counter);
      position: absolute;
      left: 0.75rem;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      color: var(--primary-btn-bg);
      width: 2rem;
      height: 2rem;
      border: 2px solid var(--primary-btn-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 0.875rem;
    }

    .txt__xgseialj ol li:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: var(--primary-btn-bg);
    }
    


      .aioseo-breadcrumbs {
        margin: 1rem 0;
        padding: 0.5rem 0;
        font-size: 0.875rem;
      }

      .aioseo-breadcrumb {
        display: inline-block;
      }

      .aioseo-breadcrumb a {
        color: #ffd32a;
        text-decoration: none;
        opacity: 0.8;
        transition: opacity 0.2s ease;
      }

      .aioseo-breadcrumb a:hover {
        opacity: 1;
      }

      .aioseo-breadcrumb:not(:has(a)) {
        color: var(--text-color);
        opacity: 0.6;
      }

      .aioseo-breadcrumb-separator {
        color: var(--text-color);
        opacity: 0.4;
        margin: 0 0.5rem;
      }
    


      .txt__xgseialj 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 rgba(0, 0, 0, 0.05);
        overflow: hidden;
      }

      .txt__xgseialj table thead tr {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }

      .txt__xgseialj table th {
        padding: 23px 35px;
        font-weight: normal;
        font-size: 12px;
        color: rgba(0, 0, 0, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.2em;
        border: none;
      }

      .txt__xgseialj table tbody tr {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: background-color 0.2s ease;
      }

      .txt__xgseialj table tbody tr:last-child {
        border-bottom: none;
      }

      .txt__xgseialj table tbody tr:hover {
        background-color: rgba(0, 0, 0, 0.02);
      }

      .txt__xgseialj table td {
        padding: 25px 35px;
        font-size: 14px;
        color: var(--table-text-color);
        border: none;
        letter-spacing: 0.025em;
      }

      .txt__xgseialj table td:first-child {
        font-weight: normal;
      }
    

.txt__xgseialj img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: var(--mb);
  border-radius: var(--border-radius);
}

.posts__vchkgaed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog__xeahsoqu {
  background-color: var(--table-bg-color);
  padding: 20px;
  border-radius: 10px;
}



      .cols__dajntfzc {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--py-2);
        margin: var(--py-2) 0;
        align-items: center;
      }

      .cols__dajntfzc .texted__rdmjvfkc:first-child {
        order: 2;
      }

      .cols__dajntfzc .texted__rdmjvfkc:last-child {
        order: 1;
      }

      .cols__dajntfzc h2 {
        margin-top: 0;
      }

      @media (max-width: 1024px) {
        .cols__dajntfzc {
          grid-template-columns: 1fr;
        }

        .cols__dajntfzc .texted__rdmjvfkc:first-child {
          order: 1;
        }

        .cols__dajntfzc .texted__rdmjvfkc:last-child {
          order: 2;
        }
      }
    

.table__xehabtzo {
  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%;
}

.table__xehabtzo p,
.table__xehabtzo h2 {
  max-width: 1000px;
  margin: 0 auto var(--mb);
}

.table__xehabtzo table {
  margin: 0 auto;
  border-radius: var(--border-radius);
  border: 0;
  max-width: 1000px;
}

.table__xehabtzo table td,
.table__xehabtzo table th {
  border: 0;
}

.table__xehabtzo table tr {
  border-bottom: 1px solid var(--table-border-color);
}

.table__xehabtzo tr:last-child {
  border-bottom: 0;
}

.table__xehabtzo h2 {
  margin-top: 0;
}

/*
.card__spxwgkzr {
  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);
}
  */

.inv__indgehmp {
  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);
}


    .inv__indgehmp{
      background: linear-gradient(135deg, #ffd32a 0%, #fff829 50%, #9bff29 100%);
      padding: 48px;
    }
    

.inv__indgehmp h2 {
  color: inherit;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .banner__pvuixcnh{
    flex-direction: column;
  }

  .main__hfyzutsg {
    width: 100%;
  }

  .table__xehabtzo {
    padding: var(--py);
  }

  .inv__indgehmp {
    padding: var(--py);
  }
}

.sm__vorszgdk{
  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);
}
.sm__vorszgdk 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;
}
.sm__vorszgdk a:hover {
  color: var(--primary-btn-bg);
}
.sm__vorszgdk h2 {
  margin-top: 0;
  margin-bottom: var(--mb);
  padding: 10px;
  border-radius: var(--border-radius);
  background-color: var(--table-bg-color);
  text-align: left;
}


    .frm__ptwezvyr {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin: var(--mb) 0;
      max-width: 500px;
      width: 100%;
    }

    .form__cxdnpmyo {
      display: flex;
      flex-direction: column;
    }

    .frm__opaklxdf, .fr__jlxunkyo {
      padding: 15px 20px;
      border-radius: var(--border-radius);
      border: 2px solid var(--table-border-color);
      background-color: var(--table-bg-color);
      color: var(--text-color);
      font-size: 16px;
      outline: none;
      transition: all 0.3s ease;
    }

    .frm__opaklxdf:focus, .fr__jlxunkyo:focus {
      border-color: var(--primary-btn-bg);
      box-shadow: 0 0 0 3px rgba(var(--primary-btn-bg-rgb), 0.1);
    }

    .fr__jlxunkyo {
      height: 120px;
      resize: vertical;
      font-family: inherit;
    }

    .frm__ptwezvyr button {
      padding: 15px 30px;
      font-size: 16px;
      font-weight: 600;
      border-radius: var(--border-radius);
      transition: all 0.3s ease;
    }

    .frm__ptwezvyr button:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
      .frm__ptwezvyr {
        max-width: 100%;
        gap: 15px;
      }

      .frm__opaklxdf, .fr__jlxunkyo {
        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)
  }
}


        .main__vtqibrzl {
            position: relative;
            padding: 129px var(--py) 82px;
            background-color: #f9f9f9;
        }

        .banner__pvuixcnh {
            max-width: 1021px;
            margin: 0 auto;
            text-align: center;
        }

        .main__xbojzesc {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .b__liqpxfde {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.02;
            font-size: 258px;
            font-family: serif;
            color: #000000;
            pointer-events: none;
        }

        .hero__kdjlyoug {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(255, 211, 42, 0.2), transparent);
            transform: translateX(-50%);
        }

        .hero__mknudboe {
            font-size: clamp(54px, 10vw, 86px);
            color: #000000;
            margin-bottom: 22px;
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-align: center;
        }

        .b__wxkhnild {
            font-size: 19px;
            color: #000000;
            opacity: 0.4;
            max-width: 546px;
            margin: 0 auto 20px;
            line-height: 1.6;
            letter-spacing: 0.01em;
        }

        @media (max-width: 1024px) {
            .main__vtqibrzl {
                padding: 90px var(--py) 78px;
            }

            .hero__mknudboe {
                font-size: 45px;
            }

            .b__wxkhnild {
                font-size: 16px;
            }
        }
        


        .card__ewcxhzvs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--py);
            padding: var(--py) 0;
        }

        .card__spxwgkzr {
            background: #ffffff;
            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;
        }

        .card__spxwgkzr::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, #ffd32a, #00b894);
        }

        .card__spxwgkzr:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .card__spxwgkzr h3 {
            color: #2d3436;
        }

        .card__spxwgkzr p {
            color: #2d3436;
            margin: 0;
        }

        @media (max-width: 768px) {
            .card__ewcxhzvs {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        