:root {
    --header-bg-color: #303E58;
    --main-bg-color: #1B1A20;
    --footer-bg-color: #303E58;
    --main-text-color: #FFFFFF;
    --link-text-color: #F8D674;
    --button-text-color: #FFFFFF;
    --button-bg-color: #6992A8;
    --button-second-bg-color: #F8D674;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: none;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--main-bg-color);
    isolation: isolate;
}

html {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Alexandria, sans-serif;
    line-height: 1.6;
    color: var(--main-text-color);
}

button {
    font-family: Alexandria, sans-serif;
    cursor: pointer;
    border: none !important;
}

a {
    color: var(--link-text-color);
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
    color: var(--link-text-color);
}

h1, h2, h3, h4 {
    color: var(--main-text-color);
}

h1 {
  font-size: 45px;
  font-weight: 900;
  line-height: 45px;
  margin-bottom: 30px;
  text-align: center;
    background: linear-gradient(180deg, var(--main-text-color) 0%, color-mix(in srgb, var(--main-text-color) 50%, transparent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 30px;
    line-height: 42px;
  }
}

h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 30px;
    line-height: 44px;
  }
}

h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

p {
  font-size: 16px;
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 24px;
}
@media screen and (max-width: 992px) {
    p {
        font-size: 14px;
        line-height: 29px;
    }
}

strong {
    font-weight: 600;
}
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    white-space: nowrap;
    display: block;
    overflow-x: auto;
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid color-mix(in srgb, var(--button-bg-color) 30%, transparent);
}

table p {
    margin: 0;
}

tbody {
    width: calc(100% - 2px);
    display: table;
}

th {
    background: color-mix(in srgb, var(--button-bg-color) 7%, transparent);
}

th, td {
    border: 1px solid color-mix(in srgb, var(--button-bg-color) 25%, transparent);
    padding: 8px;
    box-sizing: border-box;
    background: color-mix(in srgb, var(--button-bg-color) 7%, transparent);
}

th:first-child {
    border-top-left-radius: 10px;
}

th:last-child {
    border-top-right-radius: 10px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

tr:first-child td:first-child {
    border-top-left-radius: 10px;
}

tr:first-child td:last-child {
    border-top-right-radius: 10px;
}

table::-webkit-scrollbar {
    height: 8px;
}

table::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

table::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

footer, header, nav, section, main {
    display: block;
    position: relative;
}

main {
    flex: 1 0 auto;
    background-color: var(--main-bg-color);
}

section {
    padding: 20px 0;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    section {
        padding: 20px 0;
    }
}

.tymoutic35Container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1200px) {
    .tymoutic35Container {
        max-width: 100%;
        padding: 0 15px;
    }
}

img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.tymoutic35Row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.tymoutic35Col:first-child {
    width: 820px;

}
.tymoutic35Col:last-child {
    flex: 0 0 330px;
}
@media (max-width: 1030px) {
    .tymoutic35Row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .tymoutic35Col:first-child, .tymoutic35Col:last-child {
        width: 100%;
        flex: auto;
    }
}

.tymoutic35JcEnd {
    justify-content: end !important;
}

.tymoutic35JcCenter {
    justify-content: center;
}

.tymoutic35Btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: inherit;
    height: auto;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}
.tymoutic35Btn:hover {
    transform: none;
}
.tymoutic35Btn__wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .tymoutic35Btn__wrapper {
        gap: 20px;
    }
}
.tymoutic35BtnPrimary {
    color: var(--button-text-color);
    background-color: var(--button-bg-color);
    background: transparent !important;
    box-shadow: none;
    isolation: isolate;
    overflow: hidden;
}

.tymoutic35BtnPrimary:hover {
    color: var(--button-text-color);
    background-color: var(--button-bg-color);
    background: linear-gradient(180deg, var(--button-bg-color) 0%, color-mix(in srgb, var(--button-bg-color) 30%, transparent) 100%) !important;
    box-shadow: 0px 0px 14px 0px var(--button-bg-color);
}

.tymoutic35BtnSecondary {
    color: var(--button-text-color);
    background-color: var(--button-second-bg-color);
    background: transparent !important;
    box-shadow: none;
    isolation: isolate;
    overflow: hidden;
}

.tymoutic35BtnSecondary:hover {
    color: var(--button-text-color);
    background-color: var(--button-second-bg-color);
    background: linear-gradient(180deg, var(--button-second-bg-color) 0%, color-mix(in srgb, var(--button-second-bg-color) 30%, transparent) 100%) !important;
    box-shadow: 0px 0px 14px 0px var(--button-second-bg-color);
}

.tymoutic35BtnPulse {
    animation: pulse 1.5s infinite;
}

.tymoutic35BtnUppercase {
    text-transform: uppercase;
}


.tymoutic35Header {
    display: none;
    background-color: var(--header-bg-color);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
    box-sizing: border-box;
    background: color-mix(in srgb, var(--header-bg-color) 95%, transparent);
    border: 1px solid var(--main-text-color);
    border-width: 0 0 2px;
    border-radius: 0;
    border-style: solid;
    border-image-source: linear-gradient(270deg, transparent 0%, var(--button-bg-color) 50%, transparent 100%);
    border-image-slice: 1;
}

.tymoutic35Header ul, .tymoutic35Header ol, .tymoutic35Header li,
.tymoutic35Footer ul, .tymoutic35Footer ol, .tymoutic35Footer li {
    margin: 0;
    padding: 0;
    border: 0;
    list-style-type: none;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: none;
}
.tymoutic35Header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.tymoutic35Header__innerPrimary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: auto;
}

.tymoutic35Header__innerSecond {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tymoutic35Header__row {
    flex-direction: row;
    height: 80px;
}

.tymoutic35Header__innerSecond .tymoutic35Header__row {
    flex-direction: row;
    gap: 10px;
    height: auto;
}

.tymoutic35Header__col {
    flex-direction: column;
}

.tymoutic35Header__innerSecond.tymoutic35Header__col {
    padding: 10px 0;
}

.tymoutic35Header__logo {
    display: flex;
    max-height: 60px;
    height: 100%;
    max-width: 172px;
    align-self: center;
}

.tymoutic35Header__logo a {
    text-decoration: none;
    display: flex;
}
.tymoutic35Header__logo img {
    object-fit: contain;
    border-radius: initial;
}

.tymoutic35Header__nav {
    display: flex;
}
.tymoutic35Header__nav ul {
    display: flex;
    gap: 10px;
    height: 100%;
    align-items: center;
    list-style-type: none;
    padding: 0;
}

.tymoutic35Header__nav ul li {
    display: flex;
    align-items: center;
    height: 100%;
}

.tymoutic35Header__nav ul li a {
    color: var(--link-text-color);
    text-decoration: none;
    padding: 10px;
}

.tymoutic35Header__nav ul li a:hover {
    opacity: .2;
}

.tymoutic35Section img  {
    max-width: 1016px;
    display: block;
    margin: auto;
}

.tymoutic35SectionMain .tymoutic35Container > :not(:last-child) {
    margin-bottom: 30px;
}

.tymoutic35Btn__wrapperMain {
    max-width: 300px;
    width: 100%;
    margin: auto;
}

.tymoutic35Btn__wrapperMain .tymoutic35BtnPrimary {
    padding: 20px 70px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 24px;
    line-height: 100%;
    color: var(--button-text-color);
}

.tymoutic35BurgerMenu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    align-items: flex-end;
}

.tymoutic35BurgerMenu span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--main-text-color);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.tymoutic35BurgerMenu.tymoutic35Active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.tymoutic35BurgerMenu.tymoutic35Active span:nth-child(2) {
    opacity: 0;
}

.tymoutic35BurgerMenu.tymoutic35Active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.tymoutic35SectionContent h1:first-of-type,
.tymoutic35SectionContent h2:first-of-type,
.tymoutic35SectionContent h3:first-of-type,
.tymoutic35SectionContent h4:first-of-type {
    margin-top: 0;
    margin-bottom: 30px;
}

.tymoutic35SectionContent h1:not(:first-of-type),
.tymoutic35SectionContent h2:not(:first-of-type),
.tymoutic35SectionContent h3:not(:first-of-type),
.tymoutic35SectionContent h4:not(:first-of-type) {
    margin: 30px 0;
}

.tymoutic35SectionContent .tymoutic35UpdatePost {
    display: flex;
    align-items: center;
}

.tymoutic35SectionContent .tymoutic35UpdatePost p {
    width: 100%;
    margin: 0;
    padding: clamp(12px, 2.5vw, 20px) clamp(16px, 4vw, 40px);
    border-radius: 10px;
    border: 1px solid var(--main-text-color);
    position: relative;
    border-width: 1px 0;
    border-style: solid;
    border-image-source: linear-gradient(270deg, transparent 0%, var(--button-bg-color) 50%, transparent 100%);
    border-image-slice: 1;
    background: linear-gradient(270deg, transparent 0%, color-mix(in srgb, var(--button-bg-color) 10%, transparent) 50%, transparent 100%);
    white-space: nowrap;
}

footer {
    flex-shrink: 0;
    background-color: var(--footer-bg-color);
    color: var(--main-text-color);
}

.tymoutic35Footer__wrapper {
    display: flex;
    flex-direction: column;
    justify-self: center;
    padding: 20px 0;
    gap: 20px;
    align-items: center;
    max-width: 1016px;
    margin: 0 auto;
}

.tymoutic35Footer__nav, .tymoutic35Footer__icons, .tymoutic35Footer__inner {
    display: flex;
    justify-content: center;
    text-align: center;
}

.tymoutic35Footer__iconsLink img {
    border-radius: initial;
}

.tymoutic35Footer__navList {
    display: flex;
    list-style-type: none;
    justify-content: center;
    gap: 42px;
}

.tymoutic35Footer__navLink {
    text-decoration: none;
    color: var(--link-text-color);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 9px 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    font-weight: 700;
    line-height: 16px;
}
.tymoutic35Footer__navLink:hover {
    color: var(--link-text-color);
    opacity: 1;
    background: color-mix(in srgb, var(--link-text-color) 30%, transparent);
    box-shadow: none;
    -webkit-backdrop-filter: blur(40px);
}

.tymoutic35Footer__icons {
    gap: 10px 40px;
    flex-wrap: wrap;
    align-items: center;
}

.tymoutic35Footer__inner p {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    margin-bottom: 0;
}

.tymoutic35Breadcrumbs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 1em 0;
    font-size: 0.95em;
    gap: 0.5em;
}

.tymoutic35Breadcrumbs li {
    display: flex;
    align-items: center;
}

.tymoutic35Breadcrumbs li a {
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.tymoutic35Breadcrumbs li::after {
    content: "›";
    margin: 0 0.5em;
}

.tymoutic35Breadcrumbs li:last-child::after {
    content: "";
    margin: 0;
}

.tymoutic35Content__row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
}

.tymoutic35Content__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1;
}

.tymoutic35Content__col.tymoutic35Content__colImg {
    max-width: 550px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--button-bg-color);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px 8px var(--button-bg-color);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--button-bg-color);
    }
}

@keyframes btnPrimaryGlow {
    0% {
        left: 30px;
    }
    100% {
        left: calc(100% - 159px - 30px);
    }
}

@keyframes btnPrimaryFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@property --cta-bc1 {
    syntax: "<color>";
    inherits: false;
    initial-value: rgba(0, 0, 0, 0);
}
@property --cta-bc2 {
    syntax: "<color>";
    inherits: false;
    initial-value: rgba(0, 0, 0, 0);
}

@keyframes btnPrimaryBorderColor {
    0% {
        --cta-bc1: var(--button-bg-color);
        --cta-bc2: color-mix(in srgb, var(--button-bg-color) 40%, transparent);
    }
    100% {
        --cta-bc1: color-mix(in srgb, var(--button-second-bg-color) 40%, transparent);
        --cta-bc2: var(--button-second-bg-color);
    }
}

@keyframes btnPrimaryShadowFlow {
    0% {
        box-shadow: -18px 9px 17px color-mix(in srgb, var(--button-bg-color) 50%, transparent);
    }
    100% {
        box-shadow: 18px -9px 17px color-mix(in srgb, var(--button-second-bg-color) 50%, transparent);
    }
}

.tymoutic35Layout {
    display: flex;
    background-color: transparent;
    position: relative;
}

.tymoutic35Sidebar {
    position: relative;
    width: 172px;
    background-color: transparent;
    color: #fff;
    padding: 20px;
    flex-shrink: 0;
    z-index: 2;
    box-sizing: border-box;
}

.tymoutic35Sidebar__wrapper {
    position: fixed;
    width: 170px;
    top: 0;
    left: 0;
    height: 100vh;
    padding: 20px 22px 40px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--header-bg-color) 23%, transparent) 0%, color-mix(in srgb, var(--button-bg-color) 23%, transparent) 50%, color-mix(in srgb, var(--header-bg-color) 23%, transparent) 100%);
    border-right: 1px solid;
    border-image-source: linear-gradient(180deg, transparent 0%, var(--button-bg-color) 50%, transparent 100%);
    border-image-slice: 1;
    box-sizing: border-box;
}

.tymoutic35Header__sidebar {
    flex-direction: column;
    row-gap: 50px;
}

.tymoutic35Header__sidebar .tymoutic35Btn__wrapper {
    flex-direction: column;
    width: 100%;
}

.tymoutic35Header__sidebar .tymoutic35Header__nav ul {
    flex-direction: column;
    width: 100%;
}

.tymoutic35Header__sidebar .tymoutic35Header__navWrapper {
    width: 100%;
}

.tymoutic35Header__sidebar .tymoutic35Header__nav ul li {
    width: 100%;
    justify-content: center;
}

.tymoutic35Header__sidebar .tymoutic35Header__nav ul li a {
    width: 100%;
    text-align: center;
    padding: 12px 21px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: var(--link-text-color);
}

#tymoutic35Main {
    flex: 1;
    overflow-x: hidden;
}

.tymoutic35Footer {
    margin-top: auto;
    position: relative;
    z-index: 1;
    color: var(--main-text-color);
    background: linear-gradient(270deg, transparent 0%, color-mix(in srgb, var(--footer-bg-color) 70%, transparent) 50%, transparent 100%);
}

.tymoutic35Footer__row {
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.tymoutic35Footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tymoutic35Footer__col:first-child {
    flex: 2;
}

.tymoutic35Footer__col:last-child {
    flex: 1;
}

.tymoutic35Footer__logo {
    max-width: 132px;
}
.tymoutic35Footer__logo img {
    border-radius: 0;
}
.tymoutic35Footer__icons {
    justify-content: center;
}


.tymoutic35Footer__navList {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tymoutic35Footer__navList li {
    flex: 0 0 calc(50% - 20px);
}

.tymoutic35Footer__navList li:nth-child(odd) {
    flex: auto;
}

.tymoutic35ErrorPage {
    align-content: center;
}
.tymoutic35ErrorPage__wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tymoutic35ErrorPage .tymoutic35ErrorPage__wrapper h1, .tymoutic35ErrorPage .tymoutic35ErrorPage__wrapper p {
    margin-bottom: 0;
}

@media screen and (max-width: 992px) {
    .tymoutic35Content__wrapper {
        flex-direction: column;
    }

    .tymoutic35Content__col.tymoutic35Content__colImg {
        max-width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .tymoutic35Layout {
        display: block;
    }
    .tymoutic35Sidebar {
      display: none;
    }

    .tymoutic35Header {
        display: block;
    }
    .tymoutic35BurgerMenu {
        display: flex;
        order: 1;
    }
    .tymoutic35BurgerMenuRev {
        order: -1;
        align-items: flex-start;
}
    .tymoutic35Header__inner {
        justify-content: space-between;
        gap: 20px;
    }
    .tymoutic35Header__logo {
        max-height: 50px;
    }
    .tymoutic35Header__logo img {
        max-width: 100px;
    }

   #tymoutic35NavMenu {
       position: absolute;
       top: 68px;
       left: 0;
       width: 100%;
       height: 100vh;
       background-color: var(--header-bg-color);
       flex-direction: column;
       align-items: center;
       justify-content: flex-start !important;
       display: none;
   }

    .tymoutic35Header__nav ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
        height: auto;
        padding: 20px 0;
    }

    .tymoutic35Header__nav ul li {
        padding: 10px 0;
    }

    .tymoutic35Header .tymoutic35Btn {
        padding: 9px 21px;
    }

    #tymoutic35NavMenu.tymoutic35Active {
        display: flex;
    }

    .tymoutic35Header__row {
       height: 68px;
    }

    .tymoutic35Header__innerSecond.tymoutic35Header__col {
        flex-direction: row;
    }

    .tymoutic35Footer__navList {
        gap: 20px;
        justify-content: center;
        text-align: center;
    }

    .tymoutic35Footer__row {
        flex-direction: column;
        align-items: center;
    }

    .tymoutic35Footer__logo {
        margin: auto;
    }

    .tymoutic35Footer__icons {
        justify-content: center;
    }

    .tymoutic35Breadcrumbs {
        font-size: 0.75em;
    }
}



















/* Random Images Block */
.tymoutic35Showcase__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
}

.tymoutic35Showcase__block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 270px;
    position: relative;
    border-width: 1px 0;
    border-style: solid;
    border-image-source: linear-gradient(270deg, transparent 0%, var(--button-bg-color) 50%, transparent 100%);
    border-image-slice: 1;
    border-radius: 0;
    background: linear-gradient(270deg, transparent 0%, color-mix(in srgb, var(--button-bg-color) 10%, transparent) 50%, transparent 100%);
}

.tymoutic35Showcase__image {
    position: relative;
    display: block;
    overflow: hidden;
    width: 270px;
    height: 200px;
}

.tymoutic35Showcase__image img {
    max-width: 100%;
    display: initial;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}


.tymoutic35Showcase__imageOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 12px;
}

.tymoutic35Showcase__image:hover .tymoutic35Showcase__imageOverlay {
    opacity: 1;
    visibility: visible;
}

.tymoutic35Showcase__image .tymoutic35Btn__wrapper {
    z-index: 2;
}

.tymoutic35Showcase__desc {
    display: flex;
    flex-direction: column;
    position: static;
    bottom: 10px;
    left: 15px;
    align-items: center;
    text-align: center;
}
.tymoutic35Showcase__desc p, .tymoutic35Showcase__desc span {
    margin: 0;
}
.tymoutic35Showcase__desc span {
    font-size: 14px;
}

.tymoutic35Showcase__desc p {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

@media screen and (max-width: 1210px) {
    .tymoutic35Showcase__block {
        width: calc(25% - 20px);
    }
    .tymoutic35Showcase__image {
        width: auto;
    }
}

@media screen and (max-width: 992px) {

    .tymoutic35Showcase__image {
        height: 120px;
    }

    .tymoutic35Showcase__desc span {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .tymoutic35Showcase__wrapper {
        justify-content: center;
    }
    .tymoutic35Showcase__block {
        width: calc(50% - 10px);
    }
    .tymoutic35Showcase__image {
        width: auto;
        height: 120px;
    }
    .tymoutic35Showcase__image .tymoutic35Btn__wrapper .tymoutic35Btn {
        padding: 9px 20px;
        font-size: 12px;
    }
    .tymoutic35Showcase__desc{
        bottom: 0;
        left: 10px;
    }
    .tymoutic35Showcase__desc p {
        font-size: 14px;
    }
    .tymoutic35Showcase__desc span {
        line-height: 0;
    }
}

/* TOC Styles */
.tymoutic35Toc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px 0 60px;
    margin: 0;
    display: block;
    column-count: 2;
    column-gap: 40px;
}

.tymoutic35Toc li {
    break-inside: avoid;
    margin-bottom: 10px;
}

.tymoutic35Toc li::marker {
    color: var(--link-text-color);
}

.tymoutic35TocWrapper {
    max-width: 580px;
    margin: 20px auto;
    border-radius: 0;
    border: 1px solid var(--main-text-color);
    position: relative;
    border-width: 1px 0;
    border-style: solid;
    border-image-source: linear-gradient(270deg, transparent 0%, var(--button-bg-color) 50%, transparent 100%);
    border-image-slice: 1;
    background: linear-gradient(270deg, transparent 0%, color-mix(in srgb, var(--button-bg-color) 10%, transparent) 50%, transparent 100%);
}

.tymoutic35TocTitle {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    gap: 10px;
}

.tymoutic35Toc.tymoutic35IsOpen {
    margin: inherit;
    margin-top: 0;
    padding: 0 20px 20px 60px;
    max-height: 2000px !important;
}

.tymoutic35TocArrow {
    width: 20px;
    height: 21px;
    order: -1;
    display: inline-block;
    background-color: var(--main-text-color);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 21'><path d='M5.55054 7.1665L14.4489 7.1665C14.7429 7.1665 14.9777 7.26655 15.1534 7.46665C15.3291 7.66592 15.417 7.89882 15.417 8.16534C15.417 8.24899 15.4058 8.33632 15.3834 8.42735C15.3619 8.51756 15.3287 8.60407 15.284 8.6869L10.8114 15.8743C10.7076 16.0269 10.5886 16.1417 10.4544 16.2188C10.321 16.295 10.1697 16.3332 10.0003 16.3332C9.83099 16.3332 9.67963 16.295 9.54624 16.2188C9.41285 16.1425 9.29384 16.0277 9.1892 15.8743L4.71665 8.6869C4.67272 8.60407 4.63957 8.51674 4.61721 8.42489C4.59484 8.33304 4.58366 8.24571 4.58366 8.16288C4.58366 7.89554 4.67152 7.66264 4.84724 7.46419C5.02297 7.26573 5.2574 7.1665 5.55054 7.1665Z'/></svg>") no-repeat center/contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    transition: transform 0.3s ease;
}

.tymoutic35TocArrow.tymoutic35Rotated {
    transform: rotate(180deg);
    margin-bottom: -4px;
}

@media (max-width: 500px) {
    .tymoutic35Toc {
        column-count: 1;
    }
}

/* Variation 2 */
.tymoutic35SectionMain img {
            border-radius: 0;
            width: 100%;
            max-width: 100%;
            height: auto;
            object-fit: contain;
        }
.tymoutic35SectionMain .tymoutic35Content__colImg img {
            border-radius: 0;
            width: 100%;
            max-width: 100%;
            height: auto;
            object-fit: contain;
        }
.tymoutic35Header:has(.tymoutic35BurgerMenu.tymoutic35Active) {
            border-bottom: none;
            border-radius: 0;
            background: color-mix(in srgb, var(--header-bg-color) 95%, transparent);
        }
.tymoutic35BurgerMenu span:nth-child(1) { width: 70%; }
.tymoutic35BurgerMenu span:nth-child(2) { width: 100%; }
.tymoutic35BurgerMenu span:nth-child(3) { width: 50%; }
.tymoutic35BurgerMenu.tymoutic35Active span:nth-child(1),
        .tymoutic35BurgerMenu.tymoutic35Active span:nth-child(3) { width: 100%; }
.tymoutic35Header__sidebar .tymoutic35Header__nav ul li a::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1.2px;
            background: linear-gradient(270deg, transparent 0%, var(--link-text-color) 50%, transparent 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }
.tymoutic35Header__sidebar .tymoutic35Header__nav ul li a::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 55px;
            height: 40px;
            border-radius: 30px;
            background: color-mix(in srgb, var(--link-text-color) 30%, transparent);
            filter: blur(20px);
            z-index: -1;
            pointer-events: none;
        }
.tymoutic35Header__sidebar .tymoutic35Header__nav ul li a:hover {
            background: color-mix(in srgb, var(--link-text-color) 30%, transparent);
            opacity: 1;
            box-shadow: none;
            -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
        }
.tymoutic35Header__sidebar .tymoutic35Header__nav ul li a:active {
            background: transparent;
            box-shadow: none;
            -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
        }
.tymoutic35Footer__navLink::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1.2px;
            background: linear-gradient(270deg, transparent 0%, var(--link-text-color) 50%, transparent 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }
.tymoutic35Footer__navLink::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 55px;
            height: 40px;
            border-radius: 30px;
            background: color-mix(in srgb, var(--link-text-color) 30%, transparent);
            filter: blur(20px);
            z-index: -1;
            pointer-events: none;
        }
.tymoutic35Footer__navLink:active {
            background: transparent;
            box-shadow: none;
            -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
        }
.tymoutic35BtnPrimary::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1.2px;
            background: linear-gradient(270deg, transparent 0%, var(--button-bg-color) 50%, transparent 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }
.tymoutic35BtnPrimary::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 55px;
            height: 40px;
            border-radius: 30px;
            background: var(--button-bg-color);
            filter: blur(20px);
            z-index: -1;
            pointer-events: none;
        }
.tymoutic35BtnPrimary:active {
            background: linear-gradient(180deg, color-mix(in srgb, var(--button-bg-color) 50%, transparent) 0%, color-mix(in srgb, var(--button-bg-color) 15%, transparent) 100%) !important;
            border: 2px solid;
            border-image-source: linear-gradient(180deg, var(--button-bg-color) 0%, color-mix(in srgb, var(--button-bg-color) 50%, transparent) 100%);
            border-image-slice: 1;
            box-shadow: 0px 0px 14px 0px var(--button-bg-color);
        }
.tymoutic35BtnSecondary::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1.2px;
            background: linear-gradient(270deg, transparent 0%, var(--button-second-bg-color) 50%, transparent 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }
.tymoutic35BtnSecondary::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 55px;
            height: 40px;
            border-radius: 30px;
            background: var(--button-second-bg-color);
            filter: blur(20px);
            z-index: -1;
            pointer-events: none;
        }
.tymoutic35BtnSecondary:active {
            background: linear-gradient(180deg, color-mix(in srgb, var(--button-second-bg-color) 50%, transparent) 0%, color-mix(in srgb, var(--button-second-bg-color) 15%, transparent) 100%) !important;
            border: 2px solid;
            border-image-source: linear-gradient(180deg, var(--button-second-bg-color) 0%, color-mix(in srgb, var(--button-second-bg-color) 50%, transparent) 100%);
            border-image-slice: 1;
            box-shadow: 0px 0px 14px 0px var(--button-second-bg-color);
        }
.tymoutic35Header .tymoutic35BtnPrimary::before,
        .tymoutic35Header .tymoutic35BtnSecondary::before {
            padding: 2.2px;
        }
.tymoutic35Btn__wrapperMain .tymoutic35BtnPrimary::before {
            padding: 2px;
        }
.tymoutic35Btn__wrapperMain .tymoutic35BtnPrimary::after {
            width: 159px;
            left: 30px;
            transform: translateY(-50%);
            animation: btnPrimaryGlow 2.5s ease-in-out infinite alternate;
            transition: width 0.3s ease, height 0.3s ease;
        }
.tymoutic35Btn__wrapperMain .tymoutic35BtnPrimary:hover::after {
            width: 100%;
            height: 100%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 30px;
            animation: none;
        }
.tymoutic35Btn__wrapperMain .tymoutic35BtnPrimary:hover {
            background: transparent !important;
            box-shadow: none;
            -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
        }
.tymoutic35Btn__wrapperMain .tymoutic35BtnPrimary:active::after {
            width: 100%;
            height: 100%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 30px;
            background: color-mix(in srgb, var(--button-bg-color) 50%, transparent);
            animation: none;
        }
.tymoutic35Btn__wrapperMain .tymoutic35BtnPrimary:active {
            box-shadow: none;
        }
.tymoutic35BtnPrimary:hover, .tymoutic35BtnSecondary:hover {
            background: transparent !important;
            box-shadow: none;
            -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
        }
.tymoutic35BtnPrimary:active, .tymoutic35BtnSecondary:active {
            background: transparent !important;
            box-shadow: none;
        }
.tymoutic35BtnPrimary:hover::after, .tymoutic35BtnPrimary:active::after, .tymoutic35BtnSecondary:hover::after, .tymoutic35BtnSecondary:active::after {
            width: 100%;
            height: 100%;
            animation: none;
        }
.tymoutic35BtnPrimary:active::after {
            background: color-mix(in srgb, var(--button-bg-color) 50%, transparent);
        }
.tymoutic35BtnSecondary:active::after {
            background: color-mix(in srgb, var(--button-second-bg-color) 50%, transparent);
        }
.tymoutic35Header .tymoutic35Btn svg path {
            fill: var(--button-text-color);
        }
.tymoutic35Showcase__imageOverlay .tymoutic35Btn {
            padding: 12px 43px;
            min-width: 126px;
            width: 100%;
        }
.tymoutic35Footer__navBlock {
            display: flex;
            justify-content: center;
        }
.tymoutic35Footer__navBlock .tymoutic35Footer__col {
            flex: unset;
        }
.tymoutic35Footer__navBlock .tymoutic35Footer__navList {
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
.tymoutic35Footer__navBlock .tymoutic35Footer__navList li {
            flex: unset;
        }
.tymoutic35Footer__iconsSvg [fill="white"] {
            fill: var(--main-text-color);
        }
.tymoutic35Footer__iconsSvg [stroke="white"] {
            stroke: var(--main-text-color);
        }
.tymoutic35Footer__iconsSvg {
            display: block;
            height: 25px;
            width: auto;
            -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.5) 100%);
            mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.5) 100%);
        }
/* Variation 2 — responsive */
@media screen and (min-width: 769px) and (max-width: 992px) {

            .tymoutic35Showcase__block {
                width: calc(33.333% - 14px);
            }
            .tymoutic35Showcase__imageOverlay .tymoutic35Btn {
                min-width: auto;
            }
            .tymoutic35Footer__navBlock .tymoutic35Footer__navList {
                flex-wrap: wrap;
                gap: 10px 20px;
                justify-content: center;
            }
        }
@media screen and (max-width: 768px) {
            .tymoutic35Header {
                background: linear-gradient(90deg, rgba(28, 22, 16, 0.23) 0%, rgba(239, 87, 28, 0.23) 50%, rgba(28, 22, 16, 0.23) 100%), var(--header-bg-color);
                border-bottom: 2px solid;
                border-image-source: linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--button-bg-color) 20%, transparent) 50%, transparent 100%);
                border-image-slice: 1;
            }
            .tymoutic35Footer {
                background: color-mix(in srgb, var(--footer-bg-color) 60%, transparent);
            }
            .tymoutic35Footer__wrapper {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            .tymoutic35Footer__navBlock { order: 1; }
            .tymoutic35Footer__icons { order: 2; }
            .tymoutic35Footer__inner { order: 3; }
            .tymoutic35Footer__navBlock .tymoutic35Footer__navList {
                flex-wrap: wrap;
                justify-content: center;
            }

            .tymoutic35Footer__icons {
                gap: 10px;
            }

            .tymoutic35Showcase__imageOverlay .tymoutic35Btn {
                padding: 9px 21px;
                min-width: 72px;
            }

            .tymoutic35SectionMain img {
                border-radius: 0;
            }

            .tymoutic35Header .tymoutic35Btn {
                font-weight: 800;
                font-size: 12px;
                padding: 9px 16px;
            }

            .tymoutic35Header .tymoutic35Btn svg {
                transform: scale(1.2);
            }

            .tymoutic35Header .tymoutic35Btn:has(svg) {
                width: 40px;
                height: 40px;
                min-width: 0;
                padding: 0;
                border-radius: 50%;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .tymoutic35Header__innerPrimary .tymoutic35Header__nav ul {
                width: max-content;
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .tymoutic35Header__innerPrimary .tymoutic35Header__nav ul li {
                width: 100%;
            }
            .tymoutic35Header__innerPrimary .tymoutic35Header__nav ul li a {
                display: flex;
                flex-direction: column;
                align-items: center;
                width: 100%;
                text-align: center;
                padding: 12px 21px;
                border-radius: 30px;
                position: relative;
                overflow: hidden;
                isolation: isolate;
                box-sizing: border-box;
                background: transparent;
                font-weight: 700;
                font-size: 14px;
                line-height: 16px;
                color: var(--link-text-color);
            }
            .tymoutic35Header__innerPrimary .tymoutic35Header__nav ul li a::before {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: inherit;
                padding: 1.2px;
                background: linear-gradient(270deg, transparent 0%, var(--link-text-color) 50%, transparent 100%);
                -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
                -webkit-mask-composite: xor;
                mask-composite: exclude;
                pointer-events: none;
            }
            .tymoutic35Header__innerPrimary .tymoutic35Header__nav ul li a::after {
                content: "";
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 55px;
                height: 40px;
                border-radius: 30px;
                background: color-mix(in srgb, var(--link-text-color) 30%, transparent);
                filter: blur(20px);
                z-index: -1;
                pointer-events: none;
            }
            .tymoutic35Header__innerPrimary .tymoutic35Header__nav ul li a:hover {
                background: color-mix(in srgb, var(--link-text-color) 30%, transparent);
                opacity: 1;
                box-shadow: none;
                -webkit-backdrop-filter: blur(40px);
                backdrop-filter: blur(40px);
            }
            .tymoutic35Header__innerPrimary .tymoutic35Header__nav ul li a:active {
                background: transparent;
                box-shadow: none;
                -webkit-backdrop-filter: blur(40px);
                backdrop-filter: blur(40px);
            }
        }
@media (max-width: 600px) {
            .tymoutic35Showcase__block {
                width: calc(50% - 20px);
            }
            .tymoutic35Showcase__imageOverlay {
                gap: 5px;
            }
            .tymoutic35Btn__wrapper {
                gap: 10px;
            }
        
        
        }
@media (max-width: 500px) {
            .tymoutic35Footer__navBlock .tymoutic35Footer__navList {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px 10px;
                width: fit-content;
                margin-left: auto;
                margin-right: auto;
                justify-content: center;
            }
            .tymoutic35Footer__navBlock .tymoutic35Footer__navList li {
                width: 100%;
                display: flex;
            }
            .tymoutic35Footer__navBlock .tymoutic35Footer__navList li .tymoutic35Footer__navLink {
                width: 100%;
                justify-content: center;
            }
        }