* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-family: sans-serif;
    height: 100%;
    font-size: clamp(14px, 1vw, 16px);
}

body {
    margin: 0;
    min-height: 100%;
    background-color: #000000;
    color: #ffffff;
    background-image: url("https://cdn.prod.website-files.com/64951b6e24011b4630c57e0d/64951e09b89b1e435f1b941d_body-bg.png");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: Poppins, sans-serif;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 600;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.homepage {
    color: var(--pete-black);
    background-color: var(--pete-background);
    background-image: none;
}


.main {
    flex: 1;
    padding: 0;
    margin-left: 0;
    overflow-x: hidden;
}

.container-wrapper {
    max-width: min(100vw, 1920px);
    margin: 0 auto;
    position: relative;
}

:root {
    --background: #161616;
    --text: #a0a0a0;
    --border: rgba(255, 255, 255, .08);
    --backgrop-dark: rgba(22, 22, 22, .96);
    --backgrop: rgba(0, 0, 0, .2);
    --heading: #ededed;
    --green: #30a46c;
    --text-muted: #666;
    --input-hover: #232323;
    --card-bg: #2e2e2e;
    --input: #1c1c1c;
    --border-hover: rgba(255, 255, 255, .16);
    --orange: orange;
    --gray-70: #3e3e3e;
    --gray-80: #505050;
    --sidebar: #1f1f1f;
    --blue: #0788f5;
    --red: #b8252b;
    --gray-100: #7e7e7e;
    --card-content: rgba(28, 28, 28, .95);
    --primary1: #30a46c;
    --primary2: #0788f5;
    --fg-t: rgba(255, 255, 255, 0.2);
    --trans-dur: 0.3s;
    --pete-background: #d8d8d8;
    --pete-black: black;
    --pete-white: white;
    --pete-krona-one: "Krona One", sans-serif;
    --spacing-xs: clamp(0.25rem, 1vw, 0.5rem);
    --spacing-sm: clamp(0.5rem, 2vw, 1rem);
    --spacing-md: clamp(1rem, 3vw, 1.5rem);
    --spacing-lg: clamp(1.5rem, 4vw, 2rem);
    --spacing-xl: clamp(2rem, 5vw, 3rem);
    --spacing-xxl: clamp(3rem, 8vw, 5rem);
}

h1 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--heading);
    font-variation-settings: "wght" 625;
    letter-spacing: -.025em;
    font-weight: 400;
}

h2 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 600;
    line-height: 1.125;
    color: var(--heading);
}

p {
    margin-bottom: var(--spacing-md);
}

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

.layout {
    display: flex;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.w-layout-grid {
    display: grid;
}

.w-dyn-list,
.w-dyn-items,
.w-dyn-item {
    display: contents;
}

.w-embed {
    display: contents;
}

.w-button {
    color: #fff;
    line-height: inherit;
    cursor: pointer;
    background-color: #3898ec;
    border: 0;
    border-radius: 0;
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(0.75rem, 3vw, 1rem);
    text-decoration: none;
    display: inline-block;
}

.w-input {
    width: 100%;
    height: clamp(2.25rem, 6vw, 2.75rem);
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    margin-bottom: var(--spacing-sm);
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.42857;
    display: block;
}

.w-form {
    margin: 0 0 var(--spacing-md);
}

.w-form-done {
    display: none;
}

.w-form-fail {
    display: none;
}

.hamburger {
    cursor: pointer;
    display: none;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: clamp(1.5rem, 4vw, 2rem);
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: var(--heading);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked+svg {
    transform: rotate(-45deg);
}

.hamburger input:checked+svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

.sidebar {
    z-index: 100;
    height: 100vh;
    flex-direction: column;
    flex: 0 0 clamp(280px, 25vw, 320px);
    display: flex;
    position: sticky;
    top: 0;
}

.sidebar-content {
    z-index: 2;
    border-right: 1px solid var(--border);
    background-color: var(--sidebar);
    flex-direction: column;
    flex: 1;
    display: flex;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.sidebar-header {
    z-index: 1;
    width: 100%;
    padding-top: 50%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-header-wrap {
    grid-column-gap: var(--spacing-sm);
    grid-row-gap: var(--spacing-sm);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.sidebar-navbar {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    padding-bottom: 180px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
    position: relative;
}

.sidebar-navbar::-webkit-scrollbar {
    width: 4px;
}

.sidebar-navbar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-navbar::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.sidebar-navbar::-webkit-scrollbar-thumb:hover {
    background: var(--border-hover);
}

.navbar-list {
    z-index: 1;
    flex-direction: column;
    display: flex;
    position: relative;
    padding-top: 0;
    margin-top: 3rem;
}

.navbar-dropdown-container:last-of-type {
    margin-bottom: 3rem;
}

.social-icons-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    padding: 1rem 1.5rem;
    background: var(--sidebar);
    border-top: 1px solid var(--border);
}

.navbar-link::before,
.navbar-dropdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(2.25rem, 6vw, 2.75rem);
    background: linear-gradient(135deg, var(--input-hover) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(2px) scale(0.98);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 0;
}

.navbar-link:hover::before,
.navbar-dropdown-container:hover::before {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.navbar-link {
    z-index: 1;
    height: clamp(2.25rem, 6vw, 2.75rem);
    color: var(--text-muted);
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
    transition: color .2s;
    display: flex;
    position: relative;
    text-transform: uppercase;
}

.navbar-link:hover,
.navbar-link.w--current,
.navbar-link.is-active {
    color: var(--heading);
}

.navbar-link-content {
    z-index: 1;
    grid-column-gap: var(--spacing-sm);
    grid-row-gap: var(--spacing-sm);
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    align-items: center;
    position: relative;
}

.navbar-dropdown-container .navbar-link-content {
    grid-template-columns: auto 1fr;
}

.navbar-icon-wrap {
    justify-content: center;
    align-items: center;
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    display: flex;
    position: relative;
    width: clamp(1.125rem, 3vw, 1.375rem);
    height: clamp(1.125rem, 3vw, 1.375rem);
}

.navbar-link .navbar-inactive-icon {
    opacity: 1;
}

.navbar-link .navbar-active-icon {
    opacity: 0;
}

.navbar-link:hover .navbar-inactive-icon,
.navbar-link.w--current .navbar-inactive-icon,
.navbar-link.is-active .navbar-inactive-icon {
    opacity: 0;
}

.navbar-link:hover .navbar-active-icon,
.navbar-link.w--current .navbar-active-icon,
.navbar-link.is-active .navbar-active-icon {
    opacity: 1;
}

.navbar-dropdown-container.active .navbar-link .navbar-inactive-icon {
    opacity: 0;
}

.navbar-dropdown-container.active .navbar-link .navbar-active-icon {
    opacity: 1;
}

.navbar-active-icon,
.navbar-inactive-icon {
    width: 1em;
    height: 1em;
    font-size: 1em;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.2s ease;
}

.navbar-link-active-bg {
    z-index: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--border);
    background-color: var(--input-hover);
    box-shadow: 0 2px 3px -1.5px var(--backgrop);
    border-radius: 6px;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.navbar-list-divider {
    height: 0.5px;
    background-color: var(--border);
    margin-top: -0.5px;
    margin-left: clamp(2rem, 6vw, 2.75rem);
    margin-right: var(--spacing-sm);
}

.navbar-dropdown-container {
    position: relative;
    z-index: 10;
}

.navbar-dropdown-container.active {
    z-index: 20;
}

.navbar-accordion {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: var(--sidebar);
    border-left: 2px solid transparent;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top;
}

.navbar-dropdown-container.active .navbar-accordion {
    max-height: 300px;
    border-left-color: #e0e0e0;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.navbar-dropdown-container.active .navbar-link {
    color: var(--heading) !important;
}

.navbar-dropdown-container.active .navbar-link .navbar-inactive-icon {
    opacity: 0 !important;
}

.navbar-dropdown-container.active .navbar-link .navbar-active-icon {
    opacity: 1 !important;
}

.navbar-dropdown-container.active .navbar-link-active-bg {
    opacity: 1 !important;
}

.accordion-item {
    display: flex;
    align-items: center;
    padding: 12px 16px 12px 48px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    border-bottom: 1px solid var(--border);
    position: relative;
    height: 2.75rem;
    border-radius: 8px;
    margin: 2px 4px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transform: translateX(-20px) scale(0.95);
    transition-delay: 0.1s;
}

.navbar-dropdown-container.active .accordion-item {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.navbar-dropdown-container.active .accordion-item:nth-child(1) {
    transition-delay: 0.05s;
}

.navbar-dropdown-container.active .accordion-item:nth-child(2) {
    transition-delay: 0.1s;
}

.navbar-dropdown-container.active .accordion-item:nth-child(3) {
    transition-delay: 0.15s;
}

.navbar-dropdown-container.active .accordion-item:nth-child(4) {
    transition-delay: 0.2s;
}

.navbar-dropdown-container.active .accordion-item:nth-child(5) {
    transition-delay: 0.25s;
}

.navbar-dropdown-container.active .accordion-item:nth-child(6) {
    transition-delay: 0.3s;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-item:hover {
    color: var(--heading);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px) scale(1.02);
    padding-left: 52px;
}

.navbar-link.is-active,
.navbar-link.w--current {
    color: var(--heading) !important;
}

.accordion-item.is-active {
    background: none !important;
    color: #F59E0B !important;
    border-color: var(--border) !important;
}

.accordion-item.is-active::before {
    background-color: #F59E0B !important;
    opacity: 1 !important;
}

.navbar-dropdown-container .accordion-item.is-active {
    opacity: 1;
    transform: none;
}

.accordion-item:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.accordion-item::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--text);
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:hover::before {
    background-color: var(--heading);
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.social-icons-container .social-icons-row {
    pointer-events: all;
}

.social-icons-container .social-icon-swap {
    pointer-events: all;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-icon-swap {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, background, box-shadow;
    opacity: 0;
    transform: translateX(-100px);
}

.social-icon-swap:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-icon-swap .icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    filter: brightness(0) invert(1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
}

.social-icon-swap .front-icon {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.social-icon-swap .back-icon {
    transform: translate(-50%, 150%);
    opacity: 0;
}

.social-icon-swap:hover .front-icon {
    transform: translate(-50%, -150%);
    opacity: 0;
}

.social-icon-swap:hover .back-icon {
    transform: translate(-50%, -50%);
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(67%) sepia(89%) saturate(1234%) hue-rotate(348deg) brightness(89%) contrast(90%);
}

.social-icon-swap:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon-swap.animated {
    opacity: 1;
    transform: translateX(0);
}

.sidebar-controls {
    border-top: 1px solid var(--border);
    padding: var(--spacing-md);
}

.sidebar-controls-wrap {
    justify-content: space-between;
    align-items: center;
    display: flex;
    position: relative;
}

.availability-wrap {
    grid-column-gap: var(--spacing-sm);
    grid-row-gap: var(--spacing-sm);
    align-items: center;
    display: flex;
}

.availability-dot {
    width: clamp(0.5rem, 1.5vw, 0.75rem);
    height: clamp(0.5rem, 1.5vw, 0.75rem);
    background-color: var(--green);
    border-radius: 999px;
    flex: none;
}

.caption {
    color: var(--heading);
    font-variation-settings: "wght" 475;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    font-weight: 400;
}

.button {
    height: clamp(1.75rem, 5vw, 2.25rem);
    grid-column-gap: clamp(2px, 1vw, 4px);
    grid-row-gap: clamp(2px, 1vw, 4px);
    border: 1px solid var(--border);
    background-color: var(--input);
    box-shadow: 2px 0 2px -1.5px var(--backgrop);
    color: var(--heading);
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    padding: clamp(0.125rem, 1vw, 0.25rem) clamp(0.75rem, 2vw, 1rem);
    font-weight: 400;
    line-height: 1;
    transition: background-color .2s, border-color .2s;
    display: flex;
}


.sidebar-bg-tablet {
    display: none;
}

.sidebar-navbar-tablet {
    display: none;
}

@media screen and (max-width: 991px) {
    .navbar-inactive-icon {
        display: none;
    }

    .navbar-link {
        height: clamp(2.5rem, 6.5vw, 3rem);
        font-size: clamp(0.8rem, 2.2vw, 0.95rem);
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }

    .navbar-icon-wrap {
        font-size: clamp(1.25rem, 3.5vw, 1.5rem);
        width: clamp(1.25rem, 3.5vw, 1.5rem);
        height: clamp(1.25rem, 3.5vw, 1.5rem);
    }

    .navbar-link::before,
    .navbar-dropdown-container::before {
        height: clamp(2.5rem, 6.5vw, 3rem);
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .navbar-link:hover::before,
    .navbar-dropdown-container:hover::before {
        transform: translateY(1px) scale(0.99);
    }

    .sidebar-content {
        width: clamp(280px, 25vw, 320px);
        height: 100dvh;
        flex: none;
        display: none;
        position: fixed;
        top: 0%;
        bottom: 0%;
        left: 0%;
        right: auto;
    }

    .sidebar-bg-tablet {
        z-index: 1;
        width: 100vw;
        height: 100vh;
        background-color: var(--backgrop-dark);
        display: none;
        position: fixed;
        top: 0%;
        bottom: 0%;
        left: 0%;
        right: 0%;
    }

    .sidebar-navbar-tablet {
        z-index: 0;
        width: 100%;
        height: clamp(60px, 12vw, 80px);
        justify-content: space-between;
        align-items: center;
        padding: clamp(0.75rem, 2vw, 1rem) var(--spacing-md);
        display: flex;
        position: relative;
    }

    .sidebar-tablet-brand {
        grid-column-gap: var(--spacing-sm);
        grid-row-gap: var(--spacing-sm);
        align-items: center;
        display: flex;
    }

    .hamburger {
        display: block;
        padding: clamp(0.75rem, 2vw, 1rem);
    }

    .hamburger svg {
        height: clamp(2rem, 4vw, 2.5rem);
    }
}

@media screen and (max-width: 767px) {
    .sidebar-header {
        padding-top: 0%;
    }

    .sidebar-header-wrap {
        padding-top: clamp(2rem, 5vw, 3rem);
        padding-bottom: clamp(2rem, 5vw, 3rem);
        position: relative;
    }

    .sidebar-navbar-tablet {
        height: auto;
    }

    .navbar-link {
        height: clamp(2.75rem, 7vw, 3.25rem);
        font-size: clamp(0.85rem, 2.4vw, 1rem);
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }

    .navbar-icon-wrap {
        font-size: clamp(1.375rem, 3.8vw, 1.625rem);
        width: clamp(1.375rem, 3.8vw, 1.625rem);
        height: clamp(1.375rem, 3.8vw, 1.625rem);
    }

    .navbar-link::before,
    .navbar-dropdown-container::before {
        height: clamp(2.75rem, 7vw, 3.25rem);
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .navbar-link:hover::before,
    .navbar-dropdown-container:hover::before {
        transform: translateY(1px) scale(0.99);
    }
}

@media screen and (max-width: 479px) {
    .sidebar-content {
        width: 80%;
    }

    .sidebar-tablet-brand {
        grid-column-gap: var(--spacing-sm);
        grid-row-gap: var(--spacing-sm);
    }

    .navbar-link {
        height: clamp(3rem, 7.5vw, 3.5rem);
        font-size: clamp(0.9rem, 2.6vw, 1.05rem);
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }

    .navbar-icon-wrap {
        font-size: clamp(1.5rem, 4vw, 1.75rem);
        width: clamp(1.5rem, 4vw, 1.75rem);
        height: clamp(1.5rem, 4vw, 1.75rem);
    }

    .navbar-link::before,
    .navbar-dropdown-container::before {
        height: clamp(3rem, 7.5vw, 3.5rem);
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .navbar-link:hover::before,
    .navbar-dropdown-container:hover::before {
        transform: translateY(1px) scale(0.99);
    }

    .hamburger svg {
        height: clamp(1.75rem, 3.5vw, 2.25rem);
    }
}

@media screen and (min-width: 992px) {
    .navbar-link {
        font-size: 1.1rem;
    }

    .accordion-item {
        font-size: 1rem;
    }
}

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

    .sidebar {
        height: auto;
        border-bottom: 1px solid var(--border);
        background-color: var(--backgrop-dark);
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        flex: none;
        position: sticky;
        top: 0%;
        bottom: auto;
        left: 0%;
        right: 0%;
    }

    .sidebar-controls-wrap {
        grid-row-gap: clamp(1.5rem, 4vw, 2rem);
        flex-direction: column;
    }

    .sidebar-navbar {
        padding-bottom: 120px;
    }

    .social-icons-container {
        padding: 0.75rem 1rem;
        bottom: 0;
        position: absolute;
    }

}

.pete-introduction-header {
    z-index: 5;
    height: clamp(60vh, 80vh, 90vh);
    max-height: clamp(400px, 60vw, 600px);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.pete-name-container-home {
    justify-content: flex-start;
    align-items: flex-start;
    width: max-content;
    display: flex;
    white-space: nowrap;
}

@keyframes pete-marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .pete-name-container-home {
        animation: pete-marquee 20s linear infinite;
    }
}

.pete-full-name-container {
    justify-content: flex-start;
    align-items: flex-start;
    width: max-content;
    margin-right: 5vw;
    display: flex;
}

.pete-display-1 {
    text-transform: uppercase;
    flex: none;
    font-family: Oswald, sans-serif;
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 700;
    line-height: 1;
}

.pete-display-1.pete-first-name {
    margin-right: 5vw;
}

.pete-display-1.pete-marquee-text {
    line-height: 1.4;
}

.pete-display-1.pete-last-name {
    margin-right: 5vw;
}

.pete-portrait-front-header {
    z-index: 15;
    width: clamp(25%, 35%, 45%);
    position: absolute;
    top: clamp(5%, 10%, 15%);
    right: clamp(3%, 5%, 7%);
    transform: none;
}

.pete-header-about-me-container {
    justify-content: space-between;
    margin-left: var(--spacing-md);
    margin-right: var(--spacing-md);
    display: flex;
}

.pete-catch-phrase-container {
    margin-top: clamp(1vw, 2vw, 3vw);
    display: inline-block;
}

.pete-display-3 {
    text-transform: uppercase;
    font-family: Oswald, sans-serif;
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 700;
}

.pete-display-3.pete-outline {
    color: transparent;
    -webkit-text-stroke-width: clamp(1px, 0.2vw, 2px);
    -webkit-text-stroke-color: #000000;
}

.pete-display-3.pete-motto {
    line-height: 1;
}

.pete-header-brief-description {
    width: clamp(20%, 24%, 30%);
    margin-top: clamp(40px, 60px, 80px);
    margin-right: clamp(20px, 40px, 60px);
    display: inline-block;
}

.pete-header-introduction-paragraph {
    margin-bottom: clamp(15px, 20px, 25px);
    font-family: Poppins, sans-serif;
    font-size: clamp(1rem, 1.125rem, 1.25rem);
    font-weight: 500;
    line-height: 1.6;
    color: #000000;
}

.pete-icon-button-container {
    grid-column-gap: var(--spacing-sm);
    grid-row-gap: var(--spacing-sm);
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
}

.pete-button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    padding: clamp(0.5rem, 1.5vw, 0.75rem);
    margin-bottom: clamp(15px, 20px, 25px);
    text-transform: uppercase;
    font-weight: bold;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-family: "Bai Jamjuree", sans-serif;
    transition: all .15s ease;
}

.pete-button::before,
.pete-button::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    height: calc(50% - clamp(3px, 1vw, 5px));
    border: 1px solid #7D8082;
    transition: all .15s ease;
}

.pete-button::before {
    top: 0;
    border-bottom-width: 0;
}

.pete-button::after {
    bottom: 0;
    border-top-width: 0;
}

.pete-button:active,
.pete-button:focus {
    outline: none;
}

.pete-button:active::before,
.pete-button:active::after {
    right: clamp(2px, 1vw, 3px);
    left: clamp(2px, 1vw, 3px);
}

.pete-button:active::before {
    top: clamp(2px, 1vw, 3px);
}

.pete-button:active::after {
    bottom: clamp(2px, 1vw, 3px);
}

.pete-w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.pete-scroll-down-container {
    grid-column-gap: clamp(2px, 1vw, 4px);
    grid-row-gap: clamp(2px, 1vw, 4px);
    justify-content: flex-start;
    align-items: flex-start;
    width: fit-content;
    line-height: 1;
    text-decoration: none;
    display: flex;
    position: absolute;
    bottom: clamp(2rem, 6vw, 3.75rem);
    left: clamp(70%, 75%, 80%);
    color: #000000;
}

.pete-scroll-down-arrow {
    height: clamp(3rem, 8vw, 4.5rem);
    transition: transform 0.3s ease;
}

.pete-section {
    margin-bottom: clamp(2rem, 6vw, 4rem);
    margin-left: 0;
    margin-right: 0;
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2rem);
}

.pete-section.pete-white-background {
    z-index: 10;
    background-color: #ffffff;
    border-radius: clamp(20px, 5vw, 40px);
    position: relative;
}

.pete-heading-2 {
    text-transform: uppercase;
    font-family: Oswald, sans-serif;
    font-size: clamp(2rem, 6vw, 3.75rem);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1;
    color: #000000;
}

.pete-heading-2.pete-center-align {
    text-align: center;
    line-height: 1.2;
}

.pete-heading-2.pete-margin-medium {
    margin-bottom: clamp(3rem, 8vw, 5.3125rem);
}

.pete-heading-2.pete-outline-number {
    color: transparent;
    -webkit-text-stroke-width: clamp(1px, 0.2vw, 2px);
    -webkit-text-stroke-color: #000000;
    margin-top: 0;
    line-height: 1;
}

.pete-service-container {
    grid-column-gap: clamp(0.5em, 1.5vw, 0.9em);
    grid-row-gap: clamp(0.5em, 1.5vw, 0.9em);
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 25vw, 300px), 1fr));
    grid-auto-columns: 1fr;
    display: grid;
}

.pete-service-item {
    border-left: clamp(1px, 0.2vw, 2px) solid #000000;
    height: 100%;
    padding-left: var(--spacing-md);
    text-decoration: none;
    color: #000000;
}

.pete-service-item:hover {
    color: #000000;
}

.pete-order-number-container {
    display: flex;
    position: relative;
}

.pete-item-name {
    margin-top: 0;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    font-family: Oswald, sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
}

.pete-logo {
    width: clamp(1rem, 2.5vw, 1.25rem);
    height: clamp(1rem, 2.5vw, 1.25rem);
    filter: brightness(0);
}

@media (min-width: 992px) {
    html.w-mod-js:not(.w-mod-ix) [data-w-id="35b4fa5b-0cd3-8c88-8a51-37f3e8c414d0"] {
        -webkit-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -moz-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -ms-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        opacity: 0;
    }

    html.w-mod-js:not(.w-mod-ix) [data-w-id="f7dc5679-9973-d5f9-86e7-f99af67f690e"] {
        -webkit-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -moz-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -ms-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        opacity: 0;
    }

    html.w-mod-js:not(.w-mod-ix) [data-w-id="66ad58d5-6641-eb6b-5042-6bc1bf847464"] {
        -webkit-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -moz-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -ms-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        opacity: 0;
    }

    html.w-mod-js:not(.w-mod-ix) [data-w-id="3a798c14-cef4-04c6-ad9a-330df11d76b8"] {
        -webkit-transform: translate3d(0, clamp(-50px, -10vw, -100px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -moz-transform: translate3d(0, clamp(-50px, -10vw, -100px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -ms-transform: translate3d(0, clamp(-50px, -10vw, -100px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        transform: translate3d(0, clamp(-50px, -10vw, -100px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        opacity: 0;
    }

    html.w-mod-js:not(.w-mod-ix) [data-w-id="fb8eb2a2-f106-666b-76a1-f4fac1d7e510"] {
        -webkit-transform: translate3d(0, clamp(-75px, -15vw, -150px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -moz-transform: translate3d(0, clamp(-75px, -15vw, -150px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -ms-transform: translate3d(0, clamp(-75px, -15vw, -150px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        transform: translate3d(0, clamp(-75px, -15vw, -150px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        opacity: 0;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    html.w-mod-js:not(.w-mod-ix) [data-w-id="35b4fa5b-0cd3-8c88-8a51-37f3e8c414d0"] {
        -webkit-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -moz-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -ms-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        opacity: 0;
    }

    html.w-mod-js:not(.w-mod-ix) [data-w-id="f7dc5679-9973-d5f9-86e7-f99af67f690e"] {
        -webkit-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -moz-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -ms-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        opacity: 0;
    }

    html.w-mod-js:not(.w-mod-ix) [data-w-id="66ad58d5-6641-eb6b-5042-6bc1bf847464"] {
        -webkit-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -moz-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -ms-transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        transform: translate3d(clamp(-50px, -10vw, -100px), 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        opacity: 0;
    }

    html.w-mod-js:not(.w-mod-ix) [data-w-id="3a798c14-cef4-04c6-ad9a-330df11d76b8"] {
        -webkit-transform: translate3d(0, clamp(-50px, -10vw, -100px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -moz-transform: translate3d(0, clamp(-50px, -10vw, -100px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -ms-transform: translate3d(0, clamp(-50px, -10vw, -100px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        transform: translate3d(0, clamp(-50px, -10vw, -100px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        opacity: 0;
    }

    html.w-mod-js:not(.w-mod-ix) [data-w-id="fb8eb2a2-f106-666b-76a1-f4fac1d7e510"] {
        -webkit-transform: translate3d(0, clamp(-75px, -15vw, -150px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -moz-transform: translate3d(0, clamp(-75px, -15vw, -150px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        -ms-transform: translate3d(0, clamp(-75px, -15vw, -150px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        transform: translate3d(0, clamp(-75px, -15vw, -150px), 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
        opacity: 0;
    }
}

.pete-animate-in {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

@media screen and (min-width: 1440px) {
    .pete-display-1 {
        font-size: clamp(4rem, 6vw, 6rem);
    }

    .pete-introduction-header {
        height: clamp(60vh, 70vh, 80vh);
    }

    .pete-service-container {
        max-width: clamp(60rem, 75vw, 75rem);
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (min-width: 992px) {
    .pete-service-container {
        grid-template-columns: repeat(3, 1fr);
        max-width: clamp(60rem, 75vw, 900px);
        margin-left: auto;
        margin-right: auto;
    }

    .pete-display-3 {
        font-size: clamp(3rem, 5vw, 5rem);
    }
}

@media screen and (max-width: 991px) {
    .pete-introduction-header {
        max-height: clamp(40vh, 50vh, 60vh);
        margin-top: clamp(60px, 100px, 140px);
    }

    .pete-display-3 {
        font-size: clamp(2.5rem, 4vw, 4.5rem);
    }

    .pete-display-3.pete-fixed-font-size {
        font-size: clamp(3rem, 5vw, 5rem);
    }

    .pete-header-brief-description {
        margin-right: 0;
    }

    .pete-scroll-down-container {
        left: auto;
        right: clamp(5%, 8%, 10%);
    }

    .pete-section {
        padding-left: clamp(1.5rem, 4vw, 2rem);
        padding-right: clamp(1.5rem, 4vw, 2rem);
    }

    .pete-heading-2 {
        font-size: clamp(2rem, 5vw, 3.125rem);
    }

    .pete-service-container {
        grid-row-gap: clamp(1em, 1.6em, 2em);
        grid-template-columns: repeat(2, 1fr);
    }

    .pete-header-introduction-paragraph {
        font-size: clamp(0.7em, 0.8em, 0.9em);
    }
}

@media screen and (max-width: 767px) {
    .pete-introduction-header {
        height: auto;
        max-height: none;
        margin-top: clamp(60px, 100px, 140px);
        padding-top: clamp(15px, 20px, 25px);
    }

    .pete-portrait-front-header {
        width: clamp(50%, 60%, 70%);
        top: auto;
        right: 0;
        bottom: 0;
        left: auto;
        transform: translate(clamp(20%, 30%, 40%));
    }

    .pete-full-name-container {
        display: none;
    }

    .pete-full-name-container.pete-main-name-container {
        flex-flow: column;
        margin-bottom: clamp(30px, 40px, 50px);
        margin-left: clamp(15px, 20px, 25px);
        margin-right: 0;
        display: flex;
    }

    .pete-display-1 {
        font-size: clamp(12vw, 18vw, 24vw);
        line-height: 1;
    }

    .pete-display-1.pete-first-name {
        line-height: 1;
    }

    .pete-display-3 {
        font-size: clamp(8vw, 10vw, 12vw);
    }

    .pete-display-3.pete-fixed-font-size {
        font-size: clamp(3rem, 4vw, 4rem);
    }

    .pete-header-brief-description {
        width: clamp(45%, 55%, 65%);
        margin-top: clamp(15px, 20px, 25px);
    }

    .pete-header-about-me-container {
        flex-flow: column;
        padding-bottom: clamp(100px, 140px, 180px);
    }

    .pete-scroll-down-container {
        text-align: right;
        flex-flow: row-reverse;
        right: clamp(30%, 40%, 50%);
    }

    .pete-section {
        margin-bottom: clamp(4rem, 6.875rem, 8rem);
        padding: clamp(2rem, 2.5rem, 3rem) clamp(1rem, 1.25rem, 1.5rem);
    }

    .pete-section.pete-white-background {
        border-radius: clamp(15px, 20px, 25px);
        padding-top: clamp(2rem, 2.5rem, 3rem);
        padding-bottom: clamp(3rem, 5rem, 6rem);
    }

    .pete-heading-2 {
        font-size: clamp(2rem, 2.75rem, 3rem);
    }

    .pete-heading-2.pete-center-align {
        font-size: clamp(1.8em, 2.6em, 3em);
    }

    .pete-heading-2.pete-margin-medium {
        margin-bottom: clamp(2.5rem, 3.625rem, 4rem);
    }

    .pete-item-name {
        font-size: clamp(1.2rem, 1.6rem, 2rem);
    }
}

@media screen and (max-width: 479px) {
    .pete-introduction-header {

        margin-bottom: 0;
    }

    .pete-portrait-front-header {
        width: clamp(60%, 70%, 80%);
    }

    .pete-display-1 {
        font-size: clamp(16vw, 20vw, 24vw);
        color: transparent;
        -webkit-text-stroke-width: clamp(1px, 0.2vw, 2px);
        -webkit-text-stroke-color: var(--pete-black);
    }

    .pete-display-3 {
        font-size: clamp(12vw, 14vw, 16vw);
        line-height: clamp(12vw, 14vw, 16vw);
        color: var(--pete-black);
    }

    .pete-display-3.pete-fixed-font-size {
        font-size: clamp(2rem, 2.5rem, 3rem);
    }

    .pete-header-brief-description {
        width: clamp(40%, 50%, 60%);
    }

    .pete-scroll-down-container {
        font-size: clamp(0.7em, 0.8em, 0.9em);
        bottom: clamp(30px, 40px, 50px);
        right: clamp(45%, 54%, 65%);
    }

    .pete-scroll-down-arrow {
        height: clamp(2.5rem, 3.125rem, 4rem);
    }

    .pete-heading-2 {
        font-size: clamp(1.5rem, 2.25rem, 3rem);
        color: var(--pete-black);
    }

    .pete-service-container {
        grid-template-columns: 1fr;
    }
}


h1 {
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Oswald, sans-serif;
    font-size: clamp(4rem, 6.25vw, 6.25rem);
    font-weight: 700;
    line-height: 1;
}

h2 {
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Oswald, sans-serif;
    font-size: clamp(2.5rem, 3.75vw, 3.75rem);
    font-weight: 700;
    line-height: 1;
}

h3 {
    text-transform: uppercase;
    margin-top: clamp(8px, 10px, 12px);
    margin-bottom: clamp(8px, 10px, 12px);
    font-family: Oswald, sans-serif;
    font-size: clamp(1.25rem, 1.875vw, 1.875rem);
    font-weight: 700;
    line-height: 1;
}

.introduction-header {
    z-index: 5;
    height: clamp(100vh, 120vh, 140vh);
    max-height: clamp(50vw, 60vw, 70vw);
    margin-top: 0;
    margin-bottom: -13rem;
    position: relative;
    overflow: hidden;
}

.name-container-home {
    justify-content: flex-start;
    align-items: flex-start;
    width: max-content;
    display: flex;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.name-container-home {
    animation: marquee 20s linear infinite;
}

.full-name-container {
    justify-content: flex-start;
    align-items: flex-start;
    width: max-content;
    margin-right: 5vw;
    display: flex;
}

.display-1 {
    text-transform: uppercase;
    flex: none;
    font-family: Oswald, sans-serif;
    font-size: clamp(12rem, 17vw, 20rem);
    font-weight: 700;
    line-height: 1;
}

.display-1.first-name {
    margin-right: 5vw;
}

.display-1.marquee-text {
    line-height: 1.4;
    color: var(--pete-black);
    letter-spacing: clamp(0.05em, 0.1em, 0.15em);
    word-spacing: clamp(0.1em, 0.2em, 0.3em);
}

.display-1.last-name {
    margin-right: 5vw;
}

.portrait-front-header {
    z-index: 15;
    width: clamp(35%, 45%, 55%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
}

.header-about-me-container {
    justify-content: space-between;
    margin-left: var(--spacing-md);
    margin-right: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    gap: clamp(1rem, 3vw, 4rem);
}

.catch-phrase-container {
    margin-top: clamp(1vw, 2vw, 3vw);
    display: inline-block;
}


.display-3 {
    text-transform: uppercase;
    font-family: Oswald, sans-serif;
    font-size: clamp(5rem, 7vw, 9rem);
    font-weight: 700;
    color: var(--pete-black);
}

.display-3.outline {
    color: transparent;
    -webkit-text-stroke-width: clamp(1px, 0.2vw, 2px);
    -webkit-text-stroke-color: var(--pete-black);
}

.display-3.outline.motto {
    color: transparent;
    -webkit-text-stroke-width: clamp(1px, 0.2vw, 2px);
    -webkit-text-stroke-color: var(--pete-black);
}

.display-3.motto {
    line-height: 1;
    color: var(--pete-black);
}

.header-brief-description {
    width: clamp(20%, 24%, 30%);
    margin-top: clamp(40px, 60px, 80px);
    margin-right: clamp(20px, 40px, 60px);
    display: inline-block;
}

.header-introduction-paragraph {
    margin-bottom: clamp(15px, 20px, 25px);
}

.icon-button-container {
    grid-column-gap: var(--spacing-sm);
    grid-row-gap: var(--spacing-sm);
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
}

.button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    padding: clamp(0.5rem, 1.5vw, 0.75rem);
    margin-bottom: clamp(15px, 20px, 25px);
    text-transform: uppercase;
    font-weight: bold;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-family: "Bai Jamjuree", sans-serif;
    transition: all .15s ease;
}

.button::before,
.button::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    height: calc(50% - clamp(3px, 1vw, 5px));
    border: 1px solid #7D8082;
    transition: all .15s ease;
}

.button::before {
    top: 0;
    border-bottom-width: 0;
}

.button::after {
    bottom: 0;
    border-top-width: 0;
}

.button:active,
.button:focus {
    outline: none;
}

.button:active::before,
.button:active::after {
    right: clamp(2px, 1vw, 3px);
    left: clamp(2px, 1vw, 3px);
}

.button:active::before {
    top: clamp(2px, 1vw, 3px);
}

.button:active::after {
    bottom: clamp(2px, 1vw, 3px);
}

.section {
    margin-bottom: clamp(6rem, 9.375vw, 9.375rem);
    margin-left: 0;
    margin-right: 0;
    padding: clamp(3rem, 5vw, 5rem) clamp(4rem, 7.5vw, 7.5rem);
}

.section.section-black-background {
    margin-top: clamp(-2rem, -3vw, -3rem);
    margin-bottom: clamp(6rem, 9.375vw, 9.375rem);
}

.section.white-background {
    z-index: 20;
    background-color: var(--pete-white);
    border-radius: clamp(20px, 5vw, 40px);
    position: relative;
    margin-top: -13.5rem;
    margin-bottom: 10rem;
}

.section.section-black-background {
    z-index: 10;
    background-color: var(--pete-black);
    border-radius: clamp(1.25rem, 5vw, 2.5rem) clamp(1.25rem, 5vw, 2.5rem) 0 0;
    position: relative;
    margin-top: 1rem;
}

.heading-2 {
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.5rem, 3.75vw, 3.75rem);
    font-weight: 700;
    color: var(--pete-black);
    letter-spacing: clamp(0.2rem, 1vw, 0.5rem);
    width: max-content;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
}

.heading-2.center-align {
    text-align: center;
    line-height: 1.2;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 388px) {
    .heading-2.center-align {
        font-size: clamp(2rem, 4.5vw, 2rem) !important;
        text-align: center;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        flex-wrap: wrap;
    }
}

.heading-2.margin-medium {
    margin-bottom: clamp(3rem, 5.3125vw, 5.3125rem);
}

.heading-2.outline-number {
    color: transparent;
    -webkit-text-stroke-width: clamp(1px, 0.2vw, 2px);
    -webkit-text-stroke-color: var(--pete-black);
    margin-top: 0;
    line-height: 1;
}

.service-container {
    grid-column-gap: clamp(1.5em, 3vw, 2.5em);
    grid-row-gap: clamp(1.5em, 3vw, 2.5em);
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 25vw, 300px), 1fr));
    grid-auto-columns: 1fr;
    display: grid;
    margin-top: 3rem;
}

.service-item {
    border-left: clamp(1px, 0.2vw, 2px) solid var(--pete-black);
    height: 100%;
    padding-left: var(--spacing-md);
    text-decoration: none;
}

.service-item:hover {
    color: var(--pete-black);
}

.order-number-container {
    display: flex;
    position: relative;
}

.item-name {
    margin-top: 0;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.logo {
    width: clamp(1rem, 2.5vw, 1.25rem);
    height: clamp(1rem, 2.5vw, 1.25rem);
    filter: brightness(0);
}

@media screen and (min-width: 1440px) {
    .display-1 {
        font-size: clamp(12rem, 17vw, 17rem);
    }

    .service-container {
        max-width: clamp(60rem, 75vw, 75rem);
        margin-left: auto;
        margin-right: auto;
    }

    .header-about-me-container {
        gap: clamp(2rem, 4vw, 6rem);
        margin-left: clamp(2rem, 2vw, 1rem);
        margin-right: clamp(2rem, 5vw, 6rem);
    }
}

@media screen and (min-width: 992px) {
    .service-container {
        grid-template-columns: repeat(3, 1fr);
        max-width: clamp(60rem, 75vw, 900px);
        margin-left: auto;
        margin-right: auto;
    }

    .display-3 {
        font-size: clamp(2rem, 3vw, 4rem);
    }
}

@media screen and (max-width: 991px) {
    .introduction-header {
        max-height: clamp(50vw, 70vw, 80vw);
        margin-top: 0;
        margin-bottom: -7.5rem;
    }

    .display-3 {
        font-size: clamp(2.5rem, 4vw, 4.5rem);
    }

    .display-3.fixed-font-size {
        font-size: clamp(3rem, 5vw, 5rem);
    }

    .header-brief-description {
        margin-right: 0;
    }

    .scroll-down-container {
        left: auto;
        right: clamp(5%, 8%, 10%);
        bottom: 10rem;
    }

    .section {
        padding-left: clamp(2rem, 3.75vw, 3.75rem);
        padding-right: clamp(2rem, 3.75vw, 3.75rem);
    }

    .heading-2 {
        font-size: clamp(2rem, 3.125vw, 3.125rem);
        color: var(--pete-black);
    }

    .service-container {
        grid-row-gap: clamp(1em, 1.6em, 2em);
        grid-template-columns: repeat(2, 1fr);
    }

    .header-introduction-paragraph {
        font-size: clamp(0.7em, 0.8em, 0.9em);
    }
}

@media screen and (max-width: 767px) {
    .introduction-header {
        height: auto;
        max-height: none;
        margin-top: 0;
        margin-bottom: clamp(-1rem, 0rem, 1rem);
        padding-top: clamp(15px, 20px, 25px);
    }

    .portrait-front-header {
        width: clamp(50%, 60%, 70%);
        top: auto;
        right: 0;
        bottom: 0;
        left: auto;
        transform: translate(clamp(20%, 30%, 40%));
    }

    .full-name-container {
        display: flex;
        overflow: hidden;
        width: max-content;
    }

    .full-name-container.main-name-container {
        flex-flow: row;
        margin-bottom: 2.5rem;
        margin-top: 2.5rem;
        margin-right: 0;
        display: flex;
        overflow: hidden;
        width: max-content;
        align-items: baseline;
        justify-content: flex-start;
    }

    .display-1 {
        font-size: clamp(12vw, 18vw, 24vw);
        line-height: 1;
        color: transparent;
        -webkit-text-stroke-width: clamp(1px, 0.2vw, 2px);
        -webkit-text-stroke-color: var(--pete-black);
    }

    .display-1.first-name {
        line-height: 1;
        white-space: nowrap;
        margin-right: 2vw;
    }

    .display-1.marquee-text {
        line-height: 1;
        white-space: nowrap;
        margin-right: 2vw;
    }

    .display-1.last-name {
        line-height: 1;
        white-space: nowrap;
    }

    .name-container-home {
        animation: marquee 20s linear infinite;
        overflow: hidden;
        width: max-content;
        display: flex;
        align-items: baseline;
    }

    .display-3 {
        font-size: clamp(8vw, 10vw, 12vw);
        color: var(--pete-black);
    }

    .display-3.outline {
        color: transparent;
        -webkit-text-stroke-width: clamp(1px, 0.2vw, 2px);
        -webkit-text-stroke-color: var(--pete-black);
    }

    .display-3.outline.motto {
        color: transparent;
        -webkit-text-stroke-width: clamp(1px, 0.2vw, 2px);
        -webkit-text-stroke-color: var(--pete-black);
    }

    .display-3.fixed-font-size {
        font-size: clamp(3rem, 4vw, 4rem);
    }

    .header-brief-description {
        width: clamp(45%, 55%, 65%);
        margin-top: clamp(15px, 20px, 25px);
    }

    .header-about-me-container {
        flex-flow: column;
        padding-bottom: clamp(100px, 140px, 180px);
    }

    .scroll-down-container {
        text-align: right;
        flex-flow: row-reverse;
        bottom: clamp(0.5rem, 0.75rem, 1rem);
        right: clamp(30%, 40%, 50%);
    }

    .section {
        margin-bottom: clamp(4rem, 6.875rem, 8rem);
        padding: clamp(2rem, 2.5rem, 3rem) clamp(1rem, 1.25rem, 1.5rem);
    }

    .section.white-background {
        border-radius: 20px;
        padding-top: 2.5rem;
        padding-bottom: 4rem;
        margin-bottom: 5.5rem;
    }

    .section.section-black-background {
        margin-top: -2rem;
        border-radius: 20px;
    }

    .heading-2 {
        font-size: clamp(2rem, 2.75rem, 3rem);
        color: var(--pete-black);
    }

    .heading-2.center-align {
        font-size: clamp(1.8em, 2.6em, 3em);
    }

    .heading-2.margin-medium {
        margin-bottom: 0;
    }

    .item-name {
        font-size: clamp(1.2rem, 1.6rem, 2rem);
    }
}

@media screen and (max-width: 479px) {
    .introduction-header {

        margin-bottom: 0;
    }

    .section.section-black-background {
        margin-top: -1.5rem;
    }

    .portrait-front-header {
        width: clamp(60%, 70%, 80%);
    }

    .display-1 {
        font-size: clamp(16vw, 20vw, 24vw);
        color: var(--pete-black);
        letter-spacing: clamp(0.05em, 0.1em, 0.15em);
        word-spacing: clamp(0.1em, 0.2em, 0.3em);
    }

    .display-3 {
        font-size: clamp(12vw, 14vw, 16vw);
        line-height: clamp(12vw, 14vw, 16vw);
        color: var(--pete-black);
    }

    .display-3.outline {
        color: transparent;
        -webkit-text-stroke-width: clamp(1px, 0.2vw, 2px);
        -webkit-text-stroke-color: var(--pete-black);
    }

    .display-3.outline.motto {
        color: transparent;
        -webkit-text-stroke-width: clamp(1px, 0.2vw, 2px);
        -webkit-text-stroke-color: var(--pete-black);
    }

    .display-3.fixed-font-size {
        font-size: clamp(2rem, 2.5rem, 3rem);
    }

    .header-brief-description {
        width: clamp(40%, 50%, 60%);
    }

    .scroll-down-container {
        font-size: clamp(0.7em, 0.8em, 0.9em);
        bottom: clamp(2rem, 3rem, 4rem);
        right: clamp(45%, 54%, 65%);
    }

    .scroll-down-arrow {
        height: clamp(2.5rem, 3.125rem, 4rem);
    }

    .heading-2 {
        font-size: clamp(1.5rem, 2.25rem, 3rem);
        color: var(--pete-black);
    }

    .service-container {
        grid-template-columns: 1fr;
    }
}

.animate-in {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-down-arrow {
    transition: transform 0.3s ease;
}

.sidebar-logo {
    width: 9rem;
    height: auto;
    max-width: 100%;
    display: block;
    margin-top: 0;
}

.sidebar-tablet-logo {
    width: 12rem;
    height: auto;
    max-width: 100%;
    display: block;


}

@media screen and (max-width: 991px) {
    .sidebar-logo {
        margin-top: -5rem;
    }
}

@media screen and (max-width: 767px) {
    .sidebar-logo {
        margin-top: 0;
    }

    .navbar-list {
        margin-top: 0;
    }
}

.quote-container {
    position: relative;
    z-index: 2;
    max-width: clamp(60rem, 80vw, 80rem);
    margin: -2rem auto 0 auto;
    text-align: center;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quote-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    margin: 2rem 0 clamp(2rem, 4vw, 3rem) 0;
    color: var(--pete-white);
    text-transform: none;
    letter-spacing: clamp(0.05em, 0.1em, 0.15em);
    text-align: center;
}

.quote-author {
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 600;
    color: var(--pete-white);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: clamp(0.1em, 0.2em, 0.3em);
    text-align: center;
    display: block;
}

.quote-section {
    padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 4vw, 4rem);
}

@media screen and (max-width: 991px) {
    .quote-container {
        padding-bottom: 6rem;
    }

    .quote-section {
        padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 3vw, 3rem);
    }

    .quote-text {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .quote-author {
        font-size: clamp(1rem, 2vw, 1.5rem);
    }
}

@media screen and (max-width: 767px) {
    .quote-section {
        padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 2vw, 2rem);
    }

    .quote-text {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    }

    .quote-author {
        font-size: clamp(0.875rem, 1.75vw, 1.25rem);
    }
}

@media screen and (max-width: 479px) {
    .quote-section {
        padding: clamp(2rem, 4vw, 3rem) clamp(0.75rem, 1.5vw, 1.5rem);
    }

    .quote-text {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .quote-author {
        font-size: clamp(0.75rem, 1.5vw, 1rem);
    }
}

.cards-section {
    background-color: var(--pete-background);
    margin-bottom: 10rem;
}

.cards-container {
    max-width: 100rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 5%;
    padding-left: 5%;
}

.cards-grid {
    display: grid;
    margin-right: auto;
    margin-left: auto;
    grid-auto-columns: 1fr;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
}

.card-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 0.25rem;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
}

.card-link {
    position: relative;
    display: block;
    height: 100%;
    text-decoration: none;
}

.card-background {
    position: relative;
    height: 100%;
    filter: saturate(120%);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.grid-item-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 5;
    display: flex;
    height: 10rem;
    margin-top: -4rem;
    padding: 1rem 5% 1.25rem;
    flex-direction: column;
    justify-content: flex-start;
    background-color: rgba(0, 0, 0, 0.61);
    opacity: 1;
    font-size: 0.875rem;
    object-fit: cover;
}

.card-heading-holder {
    position: relative;
    display: flex;
    overflow: hidden;
    width: auto;
    margin-top: 0;
    margin-bottom: 1.25rem;
    justify-content: space-between;
    align-items: center;
    flex: 0 auto;
}

.card-heading-wrapper {
    position: relative;
    display: flex;
}

.card-heading-background {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: none;
    width: auto;
    height: 100%;
    border-radius: 0.125rem;
    background-color: #F59E0B;
}

.card-heading {
    position: relative;
    display: flex;
    height: 2rem;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0.125rem;
    padding-right: 1rem;
    padding-left: 1rem;
    align-items: center;
    flex: 0 auto;
    border-left: 0.375rem solid #F59E0B;
    border-radius: 0.125rem;
    color: #f5f5f7;
    font-family: 'Krona One', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    object-fit: fill;
}

.paragraph {
    margin-bottom: 0;
    color: #f5f5f7;
    font-family: 'Oswald', sans-serif;
    font-size: 1.45rem;
    line-height: 180%;
    font-weight: 400;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .cards-section {
        padding: 2rem 0;
    }

    .cards-container {
        max-width: none;
        margin-top: 0;
    }

    .card-item {
        height: 30rem;
    }

    .cards-grid {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        grid-template-columns: 1fr;
    }

    .card-background {
        background-color: #fff;
        background-image: none;
    }

    .card-content {
        padding-right: 3%;
        padding-left: 3%;
    }
}

@media screen and (max-width: 767px) {
    .card-content {
        align-items: flex-start;
    }

    .card-heading {
        padding-left: 0.75rem;
        border-left-style: solid;
    }
}

@media screen and (max-width: 479px) {
    .grid-item-overlay {
        padding-top: 0;
    }

    .card-item {
        height: 25rem;
    }

    .card-background {
        margin-top: 0;
        filter: saturate(125%);
    }

    .paragraph {
        font-size: 1.25rem;
    }

    .card-heading-holder {
        display: block;
        flex: 0 auto;
    }

    .card-heading {
        height: 1.5rem;
        padding-left: 0.5rem;
        border-left-style: solid;
        font-size: 1.0625rem;
        line-height: 1.5rem;
    }
}

.scroll-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
    margin-top: -9rem;
}

.stroke-text-main-div {
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
}

.strok-text-div {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 15px;
    animation: webflowStrokeScroll 20s linear infinite;
}

.stroke-text {
    font-family: "Krona One", sans-serif;
    color: transparent;
    text-transform: uppercase;
    white-space: nowrap;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
    font-size: 120px;
    font-weight: 400;
    line-height: 130%;
    flex-shrink: 0;
}

.star-icon {
    flex-shrink: 0;
    animation: webflowStarRotate 20s linear infinite;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

@keyframes webflowStrokeScroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-247%);
    }
}

@keyframes webflowStarRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-1000deg);
    }
}

.scroll-section.animate .strok-text-div {
    animation: webflowStrokeScroll 20s linear infinite;
}

.scroll-section.animate .star-icon {
    animation: webflowStarRotate 20s linear infinite;
}

@media screen and (max-width: 991px) {
    .scroll-section {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .stroke-text {
        font-size: 92px;
    }

    .star-icon {
        height: 136px;
    }

    .strok-text-div {
        gap: 12px;
    }
}

@media screen and (max-width: 767px) {
    .scroll-section {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        margin-top: -4rem;
    }

    .stroke-text {
        font-size: 75px;
    }

    .star-icon {
        height: 80px;
    }
}

@media screen and (max-width: 479px) {
    .stroke-text {
        font-size: 56px;
    }

    .strok-text-div {
        gap: 12px;
    }

    .star-icon {
        height: 56px;
    }
}

.pete-book-section {
    padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 4vw, 6rem);
    position: relative;
}

.book-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    position: relative;
    z-index: 2;
}

.book-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.book-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #912eff 0%, #f59e0b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(145, 46, 255, 0.3);
}

.book-title {
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--pete-black);
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.book-description {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

.book-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.feature-icon {
    font-size: 1.25rem;
}


.book-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.book-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.book-image:hover {
    transform: translateY(-10px) scale(1.02);
}

.book-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(145, 46, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@media screen and (min-width: 1200px) {
    .book-container {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }

    .book-content {
        padding-right: 2rem;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .book-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .book-image {
        max-width: 350px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .book-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .book-content {
        order: 1;
        align-items: center;
    }

    .book-visual {
        order: 2;
    }

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

    .book-image {
        max-width: 300px;
    }
}

@media screen and (max-width: 767px) {
    .pete-book-section {
        padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
    }

    .book-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .book-content {
        order: 1;
        align-items: center;
    }

    .book-visual {
        order: 2;
    }

    .book-features {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .book-image {
        max-width: 250px;
    }

    .main-button {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 479px) {
    .pete-book-section {
        padding: clamp(1rem, 2.5vw, 2rem) clamp(1rem, 3vw, 2rem);
    }

    .book-container {
        gap: 2rem;
    }

    .book-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
        white-space: nowrap;
    }

    .book-description {
        font-size: clamp(1rem, 4vw, 1.125rem);
    }

    .book-image {
        max-width: 200px;
    }
}

.footer-marquee-section {
    background-color: #000000;
    color: #ffffff;
    background-image: url("https://cdn.prod.website-files.com/64951b6e24011b4630c57e0d/64951e09b89b1e435f1b941d_body-bg.png");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin-top: clamp(2rem, 5vw, 5rem);
    overflow-x: hidden;
    border-radius: 2rem 2rem 0 0;
    position: relative;
}

.footer-marquee-grid-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(64, 64, 64, 0.6);
    z-index: 1;
    pointer-events: none;
}

@media (min-width: 1920px) {
    .footer-marquee-grid-wrapper::before {
        position: fixed;
        left: 0;
        right: 0;
        width: 100vw;
        transform: translateX(0);
    }
}

.footer-marquee-wrapper {
    margin: 0 auto;
    display: block;
    height: 600px;
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 640px) {
    .footer-marquee-wrapper {
        height: 400px;
    }
}

.footer-marquee-container {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.footer-marquee-grid-wrapper {
    width: 1720px;
    height: 1720px;
    flex-shrink: 0;
    transform: scale(0.5);
}

@media (min-width: 640px) {
    .footer-marquee-grid-wrapper {
        transform: scale(0.75);
    }
}

@media (min-width: 1024px) {
    .footer-marquee-grid-wrapper {
        transform: scale(1);
    }
}

.footer-marquee-grid {
    position: relative;
    top: 24rem;
    right: 50%;
    display: grid;
    width: 100%;
    height: 100%;
    transform-origin: top left;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    transform: rotateX(55deg) rotateY(0deg) rotateZ(-45deg);
    transform-style: preserve-3d;
}

.footer-marquee-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.footer-marquee-column:nth-child(odd) {
    animation: footerMoveUp 3s infinite alternate ease-in-out;
}

.footer-marquee-column:nth-child(even) {
    animation: footerMoveDown 4s infinite alternate ease-in-out;
}

@keyframes footerMoveUp {
    to {
        transform: translateY(100px);
    }
}

@keyframes footerMoveDown {
    to {
        transform: translateY(-100px);
    }
}

.footer-image-container {
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.footer-image-container:hover {
    transform: translateY(-10px);
}

.footer-marquee-image {
    aspect-ratio: 970/700;
    border-radius: 0.5rem;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(3, 7, 18, 0.05);
    width: 100%;
    height: auto;
    transition: box-shadow 0.3s ease-in-out;
}

.footer-marquee-image:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.footer-grid-line-horizontal {
    position: absolute;
    top: -1rem;
    left: calc(-10px);
    height: 1px;
    width: calc(100% + 20px);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 50%, transparent 0, transparent);
    background-size: 5px 1px;
    mask: linear-gradient(to left, #ffffff 90%, transparent), linear-gradient(to right, #ffffff 90%, transparent), linear-gradient(black, black);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(to left, #ffffff 90%, transparent), linear-gradient(to right, #ffffff 90%, transparent), linear-gradient(black, black);
    -webkit-mask-composite: xor;
    z-index: 30;
}

.footer-grid-line-vertical {
    position: absolute;
    top: calc(-40px);
    left: -1rem;
    height: calc(100% + 80px);
    width: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 50%, transparent 0, transparent);
    background-size: 1px 5px;
    mask: linear-gradient(to top, #ffffff 90%, transparent), linear-gradient(to bottom, #ffffff 90%, transparent), linear-gradient(black, black);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(to top, #ffffff 90%, transparent), linear-gradient(to bottom, #ffffff 90%, transparent), linear-gradient(black, black);
    -webkit-mask-composite: xor;
    z-index: 30;
}

.newsletter-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 100%;
    max-width: clamp(25rem, 60vw, 45rem);
}

.newsletter-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-radius: 12px;
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    overflow: hidden;
    background-color: rgba(22, 22, 22, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.newsletter-image-wrap {
    width: clamp(8rem, 15vw, 12rem);
    background-color: #1c1c1c;
    padding-top: clamp(8rem, 15vw, 12rem);
    position: relative;
}

.newsletter-image {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 300% 300%, rgba(63, 60, 255, .63), rgba(255, 255, 255, 0) 86%), radial-gradient(circle farthest-side at 50% 200%, rgba(85, 64, 167, .45) 39%, rgba(255, 255, 255, 0) 82%), radial-gradient(circle at -300% 300%, #9b259e, rgba(255, 255, 255, 0) 88%);
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.newsletter-image-icon-size {
    color: #ededed;
    font-size: 2rem;
}

.newsletter-image-outline {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .08);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.newsletter-content {
    grid-row-gap: 16px;
    border-style: solid solid solid none;
    border-width: 1px;
    border-color: rgba(255, 255, 255, .08);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    display: flex;
    background-color: #1c1c1c;
}

.newsletter-content-top {
    margin-bottom: 1rem;
}

.newsletter-content-top .card-heading {
    color: #ededed;
    font-family: 'Bebas Neue', sans-serif;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.4;
    border-left: none;
    padding-left: 0;
    padding-right: 0;
    height: auto;
    display: block;
    text-transform: none;
}

.newsletter-content-top div {
    color: #a0a0a0;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.5;
}

.newsletter-grid {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    grid-template-rows: auto;
    grid-template-columns: 1fr auto;
}

.text-field {
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, .08);
    background-color: #1c1c1c;
    color: #ededed;
    border-radius: 8px;
    margin-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 0.875rem;
    outline: none;
}

.text-field:focus {
    border: 1px solid rgba(255, 255, 255, .16);
    outline: none;
}

.text-field:invalid {
    border: 1px solid rgba(255, 255, 255, .08);
    outline: none;
}

.text-field::placeholder {
    color: #666;
}

.button.is-submit {
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, .08);
    background-color: #1c1c1c;
    color: #ededed;
    border-radius: 8px;
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    transition: background-color .2s, border-color .2s;
    cursor: pointer;
}

.button.is-submit:hover {
    border-color: rgba(255, 255, 255, .16);
    background-color: #232323;
    color: #eee;
}

.icon-svg {
    width: 1em;
    height: 1em;
    font-size: 1em;
    display: flex;
}

@media (max-width: 767px) {
    .newsletter-overlay {
        padding: 0 1rem;
    }

    .newsletter-wrap {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        border-top-style: none;
        border-left-style: solid;
        border-top-right-radius: 0;
        border-bottom-left-radius: 12px;
    }

    .newsletter-image-wrap {
        width: 100%;
    }

    .newsletter-image-outline {
        border-top-right-radius: 12px;
        border-bottom-left-radius: 0;
    }

    .newsletter-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 479px) {
    .newsletter-overlay {
        padding: 0 0.5rem;
    }

    .newsletter-content {
        padding: 16px;
    }

    .newsletter-content-top .card-heading {
        font-size: 1.125rem;
    }
}

.social-icons-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    padding: 1rem 1.5rem;
    background: linear-gradient(to top, var(--sidebar) 70%, transparent);
    pointer-events: none;
}

.social-icons-container .social-icons-row {
    pointer-events: all;
}

.social-icons-container .social-icon-swap {
    pointer-events: all;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-icon-swap {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, background, box-shadow;
    opacity: 0;
    transform: translateX(-100px);
}

.social-icon-swap:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-icon-swap .icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    filter: brightness(0) invert(1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
}

.social-icon-swap .front-icon {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.social-icon-swap .back-icon {
    transform: translate(-50%, 150%);
    opacity: 0;
}

.social-icon-swap:hover .front-icon {
    transform: translate(-50%, -150%);
    opacity: 0;
}

.social-icon-swap:hover .back-icon {
    transform: translate(-50%, -50%);
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(67%) sepia(89%) saturate(1234%) hue-rotate(348deg) brightness(89%) contrast(90%);
}

.social-icon-swap:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon-swap.animated {
    opacity: 1;
    transform: translateX(0);
}

@media screen and (min-width: 992px) {
    .social-icon-swap {
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (max-width: 991px) {
    .social-icons-container {
        position: absolute;
        z-index: 10;
    }

    .social-icons-row {
        gap: 1rem;
        margin-bottom: 0.75rem;
    }

    .social-icon-swap {
        width: 35px;
        height: 35px;
    }

    .social-icon-swap .icon {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 767px) {
    .social-icons-container {
        position: absolute;
        z-index: 10;
    }

    .social-icons-row {
        gap: 0.75rem;
    }

    .social-icon-swap {
        width: 32px;
        height: 32px;
    }

    .social-icon-swap .icon {
        width: 16px;
        height: 16px;
    }
}


.pete-header-book-container {
    width: clamp(16%, 20%, 26%);
    margin-top: 0;
    margin-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}

.pete-header-book-image {
    width: 100%;
    height: auto;
    max-width: clamp(15rem, 26vw, 22rem);
    filter: drop-shadow(0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
    content: url("../assets/img/book/pete-sacco-book.svg");
}

.pete-header-book-image:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0.75rem 0.75rem 1.5rem rgba(0, 0, 0, 0.4));
}

.pete-header-buy-button {
    margin: -0.5rem 0 0 0;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    width: auto;
    min-width: 120px;
}

@media screen and (min-width: 1200px) {
    .catch-phrase-container {
        margin-top: -1rem;
    }

    .display-3 {
        font-size: 3.5rem;
    }

    .pete-header-book-container {
        width: clamp(17%, 21%, 27%);
        margin-top: -1rem;
        margin-right: 0;
    }

    .pete-header-book-image {
        max-width: 10rem;
    }

    .section.section-black-background {
        margin-top: 0;
    }

}


@media screen and (min-width: 1920px) {
    .catch-phrase-container {
        margin-top: 10rem;
    }

    .display-3 {
        font-size: clamp(5rem, 4vw, 9rem);
    }

    .pete-header-book-container {
        width: clamp(16%, 20%, 24%);
        margin-top: 5rem;
        margin-right: 0;
    }

    .pete-header-book-image {
        max-width: clamp(16rem, 22vw, 22rem);
    }

    .section.section-black-background {
        margin-top: clamp(-4rem, -5vw, -6rem);
    }

    .quote-container {
        max-width: 90rem;
        padding-bottom: 4rem;
    }

    .quote-text {
        font-size: clamp(3rem, 3.2vw, 4.5rem);
    }

    .quote-author {
        font-size: clamp(1.5rem, 1.6vw, 2.25rem);
        letter-spacing: clamp(0.12em, 0.18vw, 0.2em);
    }

    .navbar-list {
        margin-top: 15rem;
    }

    .service-container {
        max-width: clamp(80rem, 82vw, 110rem);
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: clamp(2rem, 3vw, 3rem);
        row-gap: clamp(2rem, 3vw, 3rem);
        margin-left: auto;
        margin-right: auto;
    }

    .heading-2.center-align.margin-medium {
        font-size: clamp(3rem, 3.5vw, 4.5rem);
    }

    .item-name {
        font-size: clamp(1.5rem, 1.8vw, 2.25rem);
    }

    .service-item p {
        font-size: clamp(1.1rem, 1.2vw, 1.35rem);
        line-height: 1.5;
    }
}

@media screen and (min-width: 2520px) {
    .catch-phrase-container {
        margin-top: 15rem;
    }

    .display-3 {
        font-size: clamp(7rem, 3.3vw, 6rem);
    }

    .full-name-container .display-1 {
        font-size: clamp(14rem, 19vw, 24rem);
    }

    .pete-header-book-container {
        width: clamp(14%, 18%, 22%);
        margin-top: 10rem;
        margin-right: 0;
    }

    .pete-header-book-image {
        max-width: clamp(20rem, 24vw, 28rem);
    }

  

    .quote-container {
        max-width: 105rem;
        padding-bottom: 5rem;
    }

    .quote-text {
        font-size: clamp(3.5rem, 2.8vw, 5rem);
    }

    .quote-author {
        font-size: clamp(1.75rem, 1.4vw, 2.5rem);
    }

    .navbar-list {
        margin-top: 15rem;
    }

    .service-container {
        max-width: clamp(100rem, 85vw, 130rem);
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: clamp(2.5rem, 3vw, 4rem);
        row-gap: clamp(2.5rem, 3vw, 4rem);
    }

    .heading-2.center-align.margin-medium {
        font-size: clamp(3.5rem, 3vw, 5rem);
    }

    .item-name {
        font-size: clamp(1.75rem, 1.6vw, 2.5rem);
    }

    .service-item p {
        font-size: clamp(1.2rem, 1.1vw, 1.5rem);
    }
}


.pete-header-buy-button {
    background-color: #D4AF37 !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
}

.pete-header-buy-button:hover {
    background-color: #B8941F !important;
}

.pete-header-buy-button .corner-9,
.pete-header-buy-button .corner-10,
.pete-header-buy-button .corner-11,
.pete-header-buy-button .corner-12,
.pete-header-buy-button .corner-13,
.pete-header-buy-button .corner-14,
.pete-header-buy-button .corner-15,
.pete-header-buy-button .corner-16 {
    background-color: #2563EB !important;
}

.pete-header-buy-button .vertical-outline.left,
.pete-header-buy-button .vertical-outline.right,
.pete-header-buy-button .horizontal-outline.top,
.pete-header-buy-button .horizontal-outline.bottom {
    background-color: #2563EB !important;
}

.pete-header-buy-button .button-text.is-hover {
    color: #2563EB !important;
}

@media screen and (max-width: 991px) {
    .pete-header-book-container {
        margin-right: 1.5rem;
        width: clamp(14%, 18%, 22%);
    }

    .pete-header-book-image {
        max-width: clamp(10rem, 18vw, 15rem);
    }

    .pete-header-buy-button {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
        min-width: 100px;
        transform: translateY(0);
    }
}

@media screen and (max-width: 767px) {
    .pete-header-book-container {
        width: clamp(45%, 55%, 65%);
        margin-top: clamp(1.25rem, 1.5625rem, 1.875rem);
        margin-right: 0;
        order: 2;
        gap: 0.75rem;
    }

    .pete-header-book-image {
        max-width: clamp(18rem, 35vw, 24rem);
        content: url("../assets/img/book/book-mobile.webp");
        margin-top: 2rem;
        margin-bottom: -6rem;
        margin-right: 8rem;
    }

    .pete-header-buy-button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        min-width: 90px;
        margin-right: 8rem;
        transform: translateY(6rem);
    }
}

@media screen and (max-width: 479px) {
    .pete-header-book-container {
        width: clamp(65%, 65%, 85%);
        gap: 0.5rem;
    }

    .pete-header-book-image {
        max-width: clamp(14rem, 28vw, 20rem);
        content: url("../assets/img/book/book-mobile.webp");
        margin-right: 8rem;
        margin-top: 2rem;
        margin-bottom: -6rem;
    }

    .pete-header-buy-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        min-width: 80px;
        margin-right: 8rem;
        transform: translateY(6rem);
    }
}

.text-highlight-effect {
    background-image: linear-gradient(#F59E0B, #F59E0B);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    display: inline;
    transition: background-size 0.8s ease;
}

.text-highlight-effect.animate {
    background-size: 100% 100%;
}


.text-highlight-effect-alt.animate {
    background-size: 100% 100%;
}

.quote-author.text-highlight-effect,
.quote-author.text-highlight-effect-alt {
    color: var(--pete-white);
    display: block !important;
    text-align: center !important;
}

.heading-2.center-align.margin-medium.text-highlight-effect,
.heading-2.center-align.margin-medium.text-highlight-effect-alt {
    color: var(--pete-black);
    text-align: center !important;
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

.book-title.text-highlight-effect,
.book-title.text-highlight-effect-alt {
    color: var(--pete-black);
}



.main-button {
    background-color: #475569;
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 1.25rem 2rem;
    text-decoration: none;
    position: relative;
    margin-top: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.button-component {
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}

.button-text-block {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    height: 1rem;
    display: flex;
    overflow: hidden;
}

.button-text {
    color: var(--pete-white);
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 1rem;
    line-height: 1;
    transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0%);
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

.button-text.is-hover {
    color: #F59E0B;
    transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(100%);
}

.vertical-outline.left {
    background-color: #F59E0B;
    width: 1px;
    height: 100%;
    transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(100%);
}

.vertical-outline.right {
    background-color: #F59E0B;
    width: 1px;
    height: 100%;
    transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(-100%);
}

.horizontal-outline.top {
    background-color: #F59E0B;
    width: 100%;
    height: 1px;
    transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-100%);
}

.horizontal-outline.bottom {
    background-color: #F59E0B;
    width: 100%;
    height: 1px;
    transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(100%);
}

.main-button:hover .button-text {
    transform: translateY(-100%);
}

.main-button:hover .button-text.is-hover {
    transform: translateY(-100%);
}

.main-button:hover .vertical-outline.left {
    transform: translateY(0%);
}

.main-button:hover .vertical-outline.right {
    transform: translateY(0%);
}

.main-button:hover .horizontal-outline.top {
    transform: translateX(0%);
}

.main-button:hover .horizontal-outline.bottom {
    transform: translateX(0%);
}

.corner-component {
    position: absolute;
    inset: 5px;
}

.corner-9 {
    background-color: #F59E0B;
    width: 1px;
    height: 10px;
    position: absolute;
    inset: 0% auto auto 0%;
}

.corner-10 {
    background-color: #F59E0B;
    width: 10px;
    height: 1px;
    position: absolute;
    inset: 0% 0% auto auto;
}

.corner-11 {
    background-color: #F59E0B;
    width: 1px;
    height: 10px;
    position: absolute;
    inset: auto 0% 0% auto;
}

.corner-12 {
    background-color: #F59E0B;
    width: 10px;
    height: 1px;
    position: absolute;
    inset: 0% auto auto 0%;
}

.corner-13 {
    background-color: #F59E0B;
    width: 1px;
    height: 10px;
    position: absolute;
    inset: 0% 0% auto auto;
}

.corner-14 {
    background-color: #F59E0B;
    width: 10px;
    height: 1px;
    position: absolute;
    inset: auto auto 0% 0%;
}

.corner-15 {
    background-color: #F59E0B;
    width: 10px;
    height: 1px;
    position: absolute;
    inset: auto 0% 0% auto;
}

.corner-16 {
    background-color: #F59E0B;
    width: 1px;
    height: 10px;
    position: absolute;
    inset: auto auto 0% 0%;
}

.outline-button-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}

.horizontal-button-outline {
    width: 100%;
    height: 1px;
    position: absolute;
    overflow: hidden;
}

.horizontal-button-outline.top {
    inset: 0% 0% auto;
}

.horizontal-button-outline.bottom {
    inset: auto 0% 0%;
}

.vertical-button-outline {
    width: 1px;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

.vertical-button-outline.left {
    inset: 0% auto 0% 0%;
}

.vertical-button-outline.right {
    inset: 0% 0% 0% auto;
}

.horizontal-outline {
    background-color: #F59E0B;
    width: 100%;
    height: 1px;
}

.vertical-outline {
    background-color: #F59E0B;
    width: 1px;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .main-button {
        padding: 1rem 1.5rem;
        margin-top: 1.5rem;
    }

    .button-text {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 479px) {
    .main-button {
        padding: 0.875rem 1.25rem;
        margin-top: 1.25rem;
    }

    .button-text {
        font-size: 0.8rem;
    }
}

.pete-faq-section {
    margin-top: 0;
    margin-bottom: 0;
    z-index: 1;
    position: relative;
    background-color: var(--pete-background);
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.pete-faq-container {
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 3vw, 2rem);
    padding-right: clamp(1rem, 3vw, 2rem);
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 992px) and (max-width: 1440px) {
    .pete-faq-image-wrapper {
        width: 50%;
    }

    .pete-faq-dropdown-wrapper {
        width: 50%;
        max-width: 600px;
    }
}


.pete-faq-title-bar-left {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 650px;
    margin-bottom: clamp(3rem, 5vw, 4rem);
    margin-right: auto;
    display: flex;
    overflow: hidden;
    align-self: flex-start;
    margin-left: 0;
}

.pete-faq-2-column-block-top {
    grid-column-gap: clamp(2rem, 4vw, 3rem);
    grid-row-gap: clamp(2rem, 4vw, 3rem);
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    display: flex;
}

.pete-faq-image-wrapper {
    z-index: 1;
    border-radius: 20px;
    width: 41.5%;
    position: relative;
    overflow: hidden;
}

.pete-faq-image-660px-height {
    aspect-ratio: 2/3;
    max-height: 730px;
    width: 100%;
    object-fit: cover;
    display: inline-block;
    border-radius: 20px;
}

.pete-faq-image-contents {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    border: 5px solid #F59E0B;
    background-color: var(--pete-black);
    border-radius: 20px;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.875rem);
    display: flex;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.pete-faq-24px-title-bold {
    margin-top: 0;
    margin-bottom: 0;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.5;
    font-family: var(--font-primary);
    color: var(--pete-white);
}

.pete-faq-dropdown-wrapper {
    width: 50%;
    max-width: 600px;
}

.pete-faq-vertical-left-top-16px-gap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.pete-faq-accordion {
    border: 1px solid #D4AF37;
    background-color: var(--pete-white);
    cursor: pointer;
    border-radius: 10px;
    flex-flow: column;
    width: 100%;
    padding: 8px 0;
    transition: border-color 0.3s, background-color 0.3s;
    display: flex;
    text-decoration: none;
    color: inherit;
}

.pete-faq-accordion:hover {
    border-color: #D4AF37;
    color: var(--pete-black);
}

.pete-faq-accordion-switch {
    white-space: pre-wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 3vw, 1.875rem);
    display: flex;
}

.pete-faq-title-18px {
    color: var(--pete-black);
    text-transform: capitalize;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.2;
    transition: color 0.2s;
    font-family: var(--font-primary);
}

.pete-faq-dropdown-cross-animation {
    transform-style: preserve-3d;
    background-color: transparent;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    display: flex;
    position: relative;
    transition: transform 0.3s ease;
}

.pete-faq-dropdown-cross-animation:hover {
    border-color: var(--border-hover);
    transform: scale3d(0.94, 0.94, 1.01);
}

.pete-faq-plus-sign-vertical {
    background-color: var(--pete-black);
    border-radius: 20px;
    width: 18px;
    height: 2px;
    position: absolute;
    transform: rotate(90deg);
    transition: opacity 0.3s ease;
}

.pete-faq-plus-sign {
    background-color: var(--pete-black);
    border-radius: 20px;
    width: 18px;
    height: 2px;
    position: absolute;
}

.pete-faq-accordion-body {
    background-color: transparent;
    padding-left: clamp(1.5rem, 3vw, 1.875rem);
    padding-right: clamp(2rem, 4vw, 3.125rem);
    overflow: hidden;
    -webkit-perspective-origin: 50% 0%;
    perspective-origin: 50% 0%;
    -webkit-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    height: 0px;
    transition: height 0.35s ease;
}

.pete-faq-description {
    color: var(--pete-black);
    flex: 1;
    margin-bottom: clamp(1.5rem, 3vw, 1.875rem);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.5;
    font-family: var(--font-primary);
    font-weight: 400;
    transform: translateY(50%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.pete-faq-accordion.pete-faq-open {
    background-color: var(--pete-white);
    border-color: var(--border);
}

.pete-faq-accordion.pete-faq-open .pete-faq-plus-sign-vertical {
    opacity: 0;
}

.pete-faq-accordion.pete-faq-open .pete-faq-dropdown-cross-animation {
    transform: rotate(180deg);
}

.pete-faq-accordion.pete-faq-open .pete-faq-description {
    transform: translateY(0%);
    opacity: 1;
}

.pete-faq-button-01 {
    background-color: var(--pete-red);
    border: 1px solid var(--pete-black);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.pete-faq-button-01-wrap {
    background-color: var(--pete-black);
    justify-content: center;
    align-items: center;
    padding: clamp(1rem, 2vw, 1.125rem) clamp(1.5rem, 3vw, 2rem);
    transition: all 0.3s;
    display: flex;
    transform: translate(-6px, -6px);
}

.pete-faq-button-01-wrap:hover {
    transform: translate(0);
}

.pete-faq-button-text {
    color: var(--pete-black);
    text-transform: uppercase;
    font-family: var(--font-primary);
    font-weight: 600;
    margin: 0;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.pete-faq-button-text.white {
    color: var(--pete-white);
}

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

    .pete-faq-image-wrapper {
        width: 100%;
    }

    .pete-faq-2-column-block-top {
        flex-flow: column;
    }

    .pete-faq-dropdown-wrapper {
        width: 100%;
        max-width: none;
    }

    .pete-faq-title-bar-left {
        margin-bottom: clamp(2rem, 4vw, 2.5rem);
    }

    .pete-faq-image-contents {
        width: 70%;
        max-width: 500px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        min-width: 320px;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        grid-column-gap: 15px;
        grid-row-gap: 15px;
    }
}

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

    .pete-faq-title-bar-left {
        grid-column-gap: 5px;
        grid-row-gap: 5px;
        min-width: auto;
        margin-bottom: clamp(2rem, 4vw, 2.5rem);
    }

    .pete-faq-image-contents {
        grid-column-gap: 15px;
        grid-row-gap: 15px;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
        padding: clamp(1.5rem, 4vw, 2rem);
        bottom: 15px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 80%;
        max-width: 400px;
        min-width: 280px;
    }

    .pete-faq-accordion-switch,
    .pete-faq-accordion-body {
        padding-left: clamp(1.25rem, 3vw, 1.5rem);
        padding-right: clamp(1.25rem, 3vw, 1.5rem);
    }

    .pete-faq-plus-sign-vertical {
        width: 14px;
    }

    .pete-faq-plus-sign {
        width: 14px;
    }

    .pete-faq-dropdown-cross-animation {
        font-size: 22px;
        line-height: 24px;
    }

    .pete-faq-button-01-wrap {
        padding: clamp(0.875rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.75rem);
    }

    .pete-faq-button-text {
        font-size: clamp(0.625rem, 2vw, 0.75rem);
        letter-spacing: 0.5px;
    }
}

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

    .pete-faq-container {
        max-width: 440px;
        padding-left: clamp(0.75rem, 2vw, 1rem);
        padding-right: clamp(0.75rem, 2vw, 1rem);
    }


    .pete-faq-image-660px-height {
        min-height: 480px;
    }

    .pete-faq-accordion-switch,
    .pete-faq-accordion-body {
        padding-left: clamp(0.75rem, 2vw, 1rem);
        padding-right: clamp(0.75rem, 2vw, 1rem);
    }

    .pete-faq-description {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        line-height: 1.5;
    }

    .pete-faq-title-18px {
        font-size: clamp(0.875rem, 2vw, 1rem);
        line-height: 1.4;
    }

    .pete-faq-button-01-wrap {
        padding: clamp(0.75rem, 2vw, 0.875rem) clamp(1rem, 3vw, 1.5rem);
    }

    .pete-faq-button-text {
        font-size: clamp(0.625rem, 2vw, 0.75rem);
    }
}

.companies-header {
    position: relative;
    height: 60vh;
    background-image: url("../assets/img/pts6.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.companies-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.companies-header-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding-left: 2rem;
}

.companies-header-quote {
    display: inline-block;
    font-size: 3rem;
    color: #ffeb3b;
    margin-bottom: 0.5rem;
}

.companies-header h1 {
    font-size: 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0;
    color: #FDF5E6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.companies-header p {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    margin: 1rem 0 0 0;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.portfolio-container {
    max-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.section-header {
    text-align: left;
    margin-bottom: 40px;
    padding-left: 2rem;
    margin-top: 10rem;
    margin-bottom: 10rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin: 0;
    color: #FDF5E6 !important;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-header.investments-header {
    margin-top: 10rem;
    margin-bottom: 10rem;
}

.section-header.associations-header {
    margin-top: 10rem;
    margin-bottom: 10rem;
}

.section-header.achievements-header {
    margin-top: 10rem;
    margin-bottom: 7rem;
}

.section-header h2.book-title.text-highlight-effect {
    color: #FDF5E6 !important;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 40px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.pete-companies-fancy-box {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.pete-companies-fancy-box .box-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.pete-companies-fancy-box .box-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0), rgba(15, 15, 15, 0.1) 100%);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.pete-companies-fancy-box .box-bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pete-companies-fancy-box .inner {
    position: relative;
    z-index: 2;
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

.pete-companies-fancy-box .heading-wrap {
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

.pete-companies-fancy-box .heading-wrap img {
    max-width: 175px;
    max-height: 80px;
    object-fit: contain;
}

.pete-companies-fancy-box .hover-content {
    opacity: 0;
    transform: translateY(40px);
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    transition: all 0.4s ease;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.pete-companies-fancy-box:hover .box-bg:before {
    opacity: 1;
}

.pete-companies-fancy-box:hover .box-bg:after {
    opacity: 0.9;
}

.pete-companies-fancy-box:hover .heading-wrap {
    transform: translateY(-60px);
}

.pete-companies-fancy-box:hover .hover-content {
    opacity: 1;
    transform: translateY(0);
}

.pete-companies-fancy-box.hover_color_e900ff:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #e900ff 100%);
}

.pete-companies-fancy-box.hover_color_00ffff:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #00ffff 100%);
}

.pete-companies-fancy-box.hover_color_ff00d0:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #ff00d0 100%);
}

.pete-companies-fancy-box.hover_color_0074f9:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #0074f9 100%);
}

.pete-companies-fancy-box.hover_color_ff5400:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #ff5400 100%);
}

.pete-companies-fancy-box.hover_color_9a46ef:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #9a46ef 100%);
}

.pete-companies-fancy-box.hover_color_0033ff:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #0033ff 100%);
}

.pete-companies-fancy-box.hover_color_a5ff00:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #a5ff00 100%);
}

.pete-companies-fancy-box.hover_color_ff0000:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #ff0000 100%);
}

.pete-companies-fancy-box.hover_color_00ff00:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #00ff00 100%);
}

.pete-companies-fancy-box.hover_color_ff6b35:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #ff6b35 100%);
}

.pete-companies-fancy-box.hover_color_8e44ad:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #8e44ad 100%);
}

.pete-companies-fancy-box.hover_color_3498db:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #3498db 100%);
}

.pete-companies-fancy-box.hover_color_e67e22:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #e67e22 100%);
}

.pete-companies-fancy-box.hover_color_9b59b6:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #9b59b6 100%);
}

.pete-companies-fancy-box.hover_color_2c3e50:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #2c3e50 100%);
}

.pete-companies-fancy-box.hover_color_27ae60:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #27ae60 100%);
}

.pete-companies-fancy-box.hover_color_1abc9c:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #1abc9c 100%);
}

.pete-companies-fancy-box.hover_color_f39c12:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #f39c12 100%);
}

.pete-companies-fancy-box.hover_color_e74c3c:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #e74c3c 100%);
}

.pete-companies-fancy-box.hover_color_34495e:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #34495e 100%);
}

.pete-companies-fancy-box.hover_color_16a085:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #16a085 100%);
}

.pete-companies-fancy-box.hover_color_95a5a6:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #95a5a6 100%);
}

.pete-companies-fancy-box.assoc_color_00bcd4:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #00bcd4 100%);
}

.pete-companies-fancy-box.assoc_color_7d3cff:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #7d3cff 100%);
}

.pete-companies-fancy-box.assoc_color_ff0099:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #ff0099 100%);
}

.pete-companies-fancy-box.assoc_color_00e676:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #00e676 100%);
}

.pete-companies-fancy-box.assoc_color_ffea00:hover .box-bg:after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #ffea00 100%);
}

.box-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    text-decoration: none;
}

@media (max-width: 1400px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        padding-left: 0;
        padding-right: 0;
    }

    .companies-header h1 {
        font-size: 4rem;
    }
}

@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        padding-left: 0;
        padding-right: 0;
    }

    .pete-companies-fancy-box .heading-wrap img {
        max-width: 150px;
        max-height: 70px;
    }

    .companies-header h1 {
        font-size: 3.8rem;
    }
}

@media (max-width: 992px) {
    .companies-header {
        min-height: 50vh;
    }

    .companies-header h1 {
        font-size: 3.3rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 0;
        padding-right: 0;
    }

    .pete-companies-fancy-box {
        min-height: 220px;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .pete-companies-fancy-box .hover-content {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .pete-companies-fancy-box {
        min-height: 200px;
    }

    .section-header {
        padding-left: 2rem;
        margin-top: 10rem;
        margin-bottom: 5rem;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .pete-companies-fancy-box .inner {
        padding: 20px 15px;
    }

    .pete-companies-fancy-box .heading-wrap img {
        max-width: 130px;
        max-height: 60px;
    }

    .pete-companies-fancy-box .hover-content {
        font-size: 12px;
        line-height: 1.3;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .pete-companies-fancy-box:hover .heading-wrap {
        transform: translateY(-50px);
    }
}

@media (max-width: 640px) {
    .companies-header {
        min-height: 40vh;
    }

    .portfolio-container {
        padding: 0;
    }

    .section-header {
        padding-left: 2rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .companies-header h1 {
        font-size: 3rem;
    }

    .companies-header p {
        font-size: 1.1rem;
    }

    .section-header.investments-header {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }

    .section-header.associations-header {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }

    .section-header.achievements-header {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }

    .companies-header h1 {
        font-size: 3.5rem;
    }

    .companies-header p {
        font-size: 1.2rem;
    }

    .portfolio-grid {
        padding-left: 0;
        padding-right: 0;
    }

    .pete-companies-fancy-box {
        min-height: 180px;
    }

    .pete-companies-fancy-box .heading-wrap img {
        max-width: 120px;
        max-height: 55px;
    }
}

@media (max-width: 480px) {
    .companies-header {
        min-height: 35vh;
    }

    .companies-header {
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        padding-left: 0;
        padding-right: 0;
    }

    .section-header {
        padding-left: 2rem;
        margin-top: 8rem;
        margin-bottom: 5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .companies-header h1 {
        font-size: 1.5rem;
    }

    .companies-header p {
        font-size: 1rem;
    }

    .pete-companies-fancy-box {
        min-height: 160px;
    }

    .pete-companies-fancy-box .inner {
        padding: 15px 10px;
    }

    .pete-companies-fancy-box .heading-wrap img {
        max-width: 140px;
        max-height: 50px;
    }

    .pete-companies-fancy-box .hover-content {
        font-size: 11px;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    .pete-companies-fancy-box:hover .heading-wrap {
        transform: translateY(-40px);
    }
}

@media (max-width: 360px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .pete-companies-fancy-box {
        min-height: 140px;
    }

    .pete-companies-fancy-box .heading-wrap img {
        max-width: 110px;
        max-height: 45px;
    }

    .pete-companies-fancy-box .hover-content {
        font-size: 10px;
    }

    .pete-companies-fancy-box:hover .heading-wrap {
        transform: translateY(-35px);
    }
}

@media (hover: none) and (pointer: coarse) {
    .pete-companies-fancy-box {
        cursor: pointer;
    }

    .pete-companies-fancy-box:active .box-bg:before {
        opacity: 1;
    }

    .pete-companies-fancy-box:active .box-bg:after {
        opacity: 0.9;
    }

    .pete-companies-fancy-box:active .heading-wrap {
        transform: translateY(-50px);
    }

    .pete-companies-fancy-box:active .hover-content {
        opacity: 1;
        transform: translateY(0);
    }
}

.pete-gallery-section {
    padding-top: 6vh;
    padding-bottom: 6vh;
    margin-bottom: 5rem;
}

.pete-gallery-section .carousel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.pete-gallery-section .image-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 5px;
    padding: 1vh 5px;
    opacity: 0.6;
    -webkit-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
}

.pete-gallery-section .image-wrapper.slick-center {
    opacity: 1;
}

.pete-gallery-section .image {
    width: 400px;
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer;
}

.pete-gallery-section .slick-prev,
.pete-gallery-section .slick-next {
    display: none !important;
}

.pete-gallery-section .mobile-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.pete-gallery-section .mobile-nav button {
    background-color: #333;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.pete-gallery-section .mobile-nav button:hover {
    background-color: #555;
}

.pete-gallery-section .mobile-nav button:active {
    background-color: #222;
}

@media screen and (min-width: 1280px) {
    .pete-gallery-section .image {
        width: 400px;
        height: 500px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media screen and (max-width: 1279px) {
    .pete-gallery-section .image {
        cursor: pointer;
        width: 300px;
        height: 375px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media screen and (max-width: 992px) {
    .pete-gallery-section .image {
        width: 280px;
        height: 350px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media screen and (max-width: 767px) {
    .pete-gallery-section .image {
        width: 250px;
        height: 300px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media screen and (max-width: 479px) {
    .pete-gallery-section .image {
        width: 200px;
        height: 250px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.contact-content-main-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    flex: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    min-height: 100svh;
    display: flex;
    margin-bottom: -8rem;
}

.contact-section-contact-header {
    position: relative;
}

.contact-header-component {
    grid-column-gap: 3rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: start;
}

.contact-button-group {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.contact-button {
    border: .5px solid #404040;
    color: #ffffff;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: .5rem;
    padding: .75rem 2rem;
    font-family: Satoshi, sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-button:hover {
    color: #ffffff;
    background-color: #ffffff29;
    overflow: visible;
}

.contact-button.contact-is-secondary {
    background-color: #fff0;
}

.contact-button.contact-is-secondary:hover {
    background-color: #ffffff29;
}

.contact-button.contact-is-long {
    width: 100%;
}

.contact-form-component {
    position: relative;
    align-self: start;
}

.contact-form-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.contact-form-field-2col {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.contact-form-field-wrapper {
    width: 100%;
    position: relative;
}

.contact-field-label {
    margin-bottom: .5rem;
    font-weight: 300;
    color: #ffffff;
}

.contact-form-input {
    border: 1px solid #404040;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: .25rem;
    min-height: 3rem;
    margin-bottom: 0;
    padding: .5rem 1rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-form-input:hover {
    border-color: #d9d9d9;
}

.contact-form-input:active {
    border-color: #ffffff;
}

.contact-form-input:focus {
    border-color: #d9d9d9;
    outline: none;
}

.contact-form-input.contact-is-text-area {
    height: auto;
    min-height: 8rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
    overflow: auto;
    resize: vertical;
}

.contact-form-input.w-select {
    width: 100%;
    box-sizing: border-box;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form-input.w-select option {
    background-color: #FAFAFA;
    color: #000000;
}

.contact-form-input.w-select option:hover {
    background-color: #e0e0e0;
    color: #000000;
}

.contact-text-style-link {
    color: #d9d9d9;
    text-decoration: underline;
}

.contact-text-style-link:hover {
    color: #ffffff;
}

.contact-form-success-wrapper {
    border: 1px solid #404040;
    background-color: #1e1e1e;
    border-radius: .25rem;
    margin-top: 1rem;
    padding: 2rem;
}

.contact-success-text {
    font-size: 1.125rem;
    font-weight: 300;
    color: #ffffff;
}

.contact-form_message-error-wrapper {
    margin-top: 1rem;
    padding: 0;
}

.contact-form_message-error {
    background-color: rgba(226, 57, 57, 0.1);
    color: #e23939;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    display: flex;
    border-radius: .25rem;
}

.contact-error-text-2 {
    color: #e23939;
}

.contact-form {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0;
}

.contact-padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
}

.contact-padding-medium {
    padding: 2rem;
}

.contact-padding-large {
    padding: 3rem;
}

.contact-padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.contact-margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

.contact-margin-small {
    margin: 1rem;
}

.contact-margin-medium {
    margin: 2rem;
}

.contact-margin-large {
    margin: 3rem;
}

.contact-margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
}

.contact-margin-xsmall {
    margin: .5rem;
}

.contact-text-color-white {
    color: #ffffff;
}

.contact-max-width-large {
    width: 100%;
    max-width: 60rem;
    margin-left: 2rem;
}

.contact-container-medium {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-content-main-wrapper h1 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 1rem;
    font-family: Oswald, sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
}

.contact-content-main-wrapper p {
    margin-bottom: 0;
    color: #ffffff;
}

.contact-content-main-wrapper label {
    margin-bottom: .25rem;
    font-weight: 500;
    color: #ffffff;
}

.contact-margin-top.contact-margin-small {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    color: #ffffff;
}

@media screen and (max-width: 767px) {
    .contact-content-main-wrapper {
        padding: 1rem 0;
    }
    
    .contact-content-main-wrapper h1 {
        font-size: 2.5rem;
    }

    .contact-padding-medium {
        padding: 1.25rem;
    }

    .contact-padding-large {
        padding: 1.5rem;
    }

    .contact-padding-section-medium {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .contact-header-component {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 2rem;
    }

    .contact-form-field-2col.contact-is-mobile-1col {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        gap: 1rem;
    }
}

@media screen and (max-width: 479px) {
    .contact-content-main-wrapper {
        font-size: .875rem;
    }

    .contact-content-main-wrapper h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .contact-content-main-wrapper p {
        line-height: 1.4;
    }

    .contact-button-group {
        grid-column-gap: .5rem;
        grid-row-gap: .5rem;
    }

    .contact-form-field-2col {
        grid-template-columns: 1fr;
    }
}

#pete-story-carousel {
    height: 80vh;
    position: relative;
}

#pete-story-carousel .swiper {
    width: 100%;
    height: 100%;
}

#pete-story-carousel .swiper .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#pete-story-carousel .swiper .swiper-slide .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--swiper-theme-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    max-width: 100%;
    text-align: center;
    height: 100%;
    width: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

@media (width > 700px) {
    #pete-story-carousel .swiper .swiper-slide .content {
        gap: 2rem;
    }
}

#pete-story-carousel .swiper .swiper-slide .content .title {
    text-transform: none;
    text-shadow: rgb(0, 0, 0) 0 0 3px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Oswald', sans-serif;
    color: #D4AF37; 
}

#pete-story-carousel .swiper .swiper-slide .content .title-main {
    font-size: 2.5rem;
    max-width: 90%;
    text-transform: uppercase;
}

@media (width > 700px) {
    #pete-story-carousel .swiper .swiper-slide .content .title-main {
        font-size: 4rem;
        max-width: 80%;
    }
}

@media (width > 1200px) {
    #pete-story-carousel .swiper .swiper-slide .content .title-main {
        font-size: 5rem;
        max-width: 70%;
    }
}

#pete-story-carousel .swiper .swiper-slide .content .title-subtitle {
    font-size: 1.5rem;
    max-width: 95%;
    text-transform: uppercase;
}

@media (width > 700px) {
    #pete-story-carousel .swiper .swiper-slide .content .title-subtitle {
        font-size: 2.2rem;
        max-width: 90%;
    }
}

@media (width > 1200px) {
    #pete-story-carousel .swiper .swiper-slide .content .title-subtitle {
        font-size: 2.8rem;
        max-width: 90%;
    }
}

#pete-story-carousel .swiper .swiper-slide .content .title-subtitle .outline-text {
    -webkit-text-stroke: 2px #D4AF37;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

#pete-story-carousel .swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    z-index: 3;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div {
    background-color: rgb(255, 255, 255);
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(1) {
    animation: fade 350ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(6) {
    animation: fade 350ms 100ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(11) {
    animation: fade 350ms 150ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(16) {
    animation: fade 350ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(2) {
    animation: fade 350ms 250ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(7) {
    animation: fade 350ms 200ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(12) {
    animation: fade 350ms 280ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(17) {
    animation: fade 350ms 200ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(3) {
    animation: fade 350ms 300ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(8) {
    animation: fade 350ms 400ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(13) {
    animation: fade 350ms 450ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(18) {
    animation: fade 350ms 300ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(4) {
    animation: fade 350ms 550ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(9) {
    animation: fade 350ms 530ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(14) {
    animation: fade 350ms 600ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(19) {
    animation: fade 350ms 560ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(5) {
    animation: fade 350ms 700ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(10) {
    animation: fade 350ms 800ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(15) {
    animation: fade 350ms 850ms forwards;
}

#pete-story-carousel .swiper .swiper-slide .pixel-transition div:nth-child(20) {
    animation: fade 350ms 700ms forwards;
}

#pete-story-carousel .swiper .swiper-pagination {
    bottom: 1.5rem;
    z-index: 4;
}

#pete-story-carousel .swiper .swiper-pagination .swiper-pagination-bullet {
    border-radius: 0;
    width: 35px;
    height: 4px;
    margin: 0 5px;
    background-color: #fff;
    opacity: 0.5;
}

@media (width > 700px) {
    #pete-story-carousel .swiper .swiper-pagination .swiper-pagination-bullet {
        width: 45px;
    }
}

#pete-story-carousel .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
}

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

@media (max-width: 768px) {
    #pete-story-carousel {
        height: 60vh;
    }
    
    #pete-story-carousel .swiper .swiper-slide .content .title {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    #pete-story-carousel .swiper .swiper-button-next,
    #pete-story-carousel .swiper .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
    
    #pete-story-carousel .swiper .swiper-button-next {
        right: 1rem;
    }
    
    #pete-story-carousel .swiper .swiper-button-prev {
        left: 1rem;
    }
}

.pete-story-fw {
    width: 100%;
    max-width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    clear: both;
}

.pete-story-container, .pete-story-container-fluid, .pete-story-container-lg, .pete-story-container-md, .pete-story-container-sm, .pete-story-container-xl, .pete-story-container-xxl {
    --bs-gutter-x: 40px;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
    overflow-x: hidden;
}

@media (min-width: 576px) {
    .pete-story-container, .pete-story-container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .pete-story-container, .pete-story-container-fluid, .pete-story-container-lg, .pete-story-container-md, .pete-story-container-sm, .pete-story-container-xl, .pete-story-container-xxl {
        --bs-gutter-x: 30px;
    }
    .pete-story-container, .pete-story-container-md, .pete-story-container-sm {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .pete-story-container, .pete-story-container-fluid, .pete-story-container-lg, .pete-story-container-md, .pete-story-container-sm, .pete-story-container-xl, .pete-story-container-xxl {
        --bs-gutter-x: 40px;
    }
    .pete-story-container, .pete-story-container-lg, .pete-story-container-md, .pete-story-container-sm {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .pete-story-container, .pete-story-container-lg, .pete-story-container-md, .pete-story-container-sm, .pete-story-container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .pete-story-container, .pete-story-container-fluid, .pete-story-container-lg, .pete-story-container-md, .pete-story-container-sm, .pete-story-container-xl, .pete-story-container-xxl {
        --bs-gutter-x: 56px;
    }
    .pete-story-container, .pete-story-container-lg, .pete-story-container-md, .pete-story-container-sm, .pete-story-container-xl, .pete-story-container-xxl {
        max-width: 1320px;
    }
}

.pete-story-row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    max-width: 100%;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .pete-story-row {
        --bs-gutter-x: 30px;
    }
}

@media (min-width: 992px) {
    .pete-story-row {
        --bs-gutter-x: 40px;
    }
}

@media (min-width: 1400px) {
    .pete-story-row {
        --bs-gutter-x: 56px;
    }
}

.pete-story-row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
    min-width: 0;
}

.pete-story-col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .pete-story-col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

.pete-story-sect-pad-top {
    padding-top: 100px;
}

@media (min-width: 768px) {
    .pete-story-sect-pad-top {
        padding-top: 60px;
    }
}

@media (min-width: 992px) {
    .pete-story-sect-pad-top {
        padding-top: 100px;
    }
}

.pete-story-about-sect-2 h2 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .pete-story-about-sect-2 h2 {
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
        line-height: 1.05;
    }
}

@media (min-width: 992px) {
    .pete-story-about-sect-2 h2 {
        font-size: 2.8rem;
        line-height: 1;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .pete-story-about-sect-2 h2 {
        font-size: 3.2rem;
        line-height: 1;
    }
}

@media (min-width: 1400px) {
    .pete-story-about-sect-2 h2 {
        font-size: 3.8rem;
        line-height: 0.95;
    }
}

.pete-story-about-sect-2 h2 span {
    color: #D4AF37;
    font-weight: 700;
}

.pete-story-about-sect-2 p {
    color: #fff;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .pete-story-about-sect-2 p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (min-width: 992px) {
    .pete-story-about-sect-2 p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-top: -0.5rem;
    }
}

@media (min-width: 1200px) {
    .pete-story-about-sect-2 p {
        font-size: 1.2rem;
        line-height: 1.7;
    }
}

.pete-story-intro-section-about {
    position: relative;
    overflow: hidden;
    height: auto;
    padding-top: 100px;
    padding-bottom: 0;
    max-width: 100%;
}

@media (min-width: 768px) {
    .pete-story-intro-section-about {
        height: auto;
        padding-bottom: 100px;
    }
}

@media (min-width: 992px) {
    .pete-story-intro-section-about {
        padding-top: 140px;
        padding-bottom: 140px;
    }
}

.pete-story-intro-section-about h3 {
    border-top: solid 1px #333;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 0;
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .pete-story-intro-section-about h3 {
        padding-top: 25px;
        padding-bottom: 25px;
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .pete-story-intro-section-about h3 {
        padding-top: 30px;
        padding-bottom: 30px;
        font-size: 1.2rem;
    }
}

.pete-story-intro-section-about h3 span {
    color: #D4AF37;
    font-weight: 600;
}

.pete-story-intro-section-about h3:last-of-type {
    border-bottom: solid 1px #333;
}

.pete-story-h3-wrap h3 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.pete-story-h3-wrap h3.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pete-story-h3-wrap h3:nth-child(1) {
    transition-delay: 0.1s;
}

.pete-story-h3-wrap h3:nth-child(2) {
    transition-delay: 0.3s;
}

.pete-story-h3-wrap h3:nth-child(3) {
    transition-delay: 0.5s;
}

.pete-story-resp-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 0.5rem;
}

.pete-timeline-section {
    width: 100%;
    max-width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    clear: both;
}

.pete-timeline-wrap {
    background: linear-gradient(to bottom, transparent 0, transparent 520px, #000 520px);
}

.pete-timeline-wrap h2 {
    font-size: 2.625rem;
    color: #fff;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    margin: 0;
    line-height: 0.9em;
}

@media (min-width: 768px) {
    .pete-timeline-wrap h2 {
        font-size: 4.25rem;
        text-align: center;
        line-height: 0.9em;
    }
    .pete-timeline-wrap {
        background: linear-gradient(to bottom, transparent 0, transparent 620px, #000 620px);
    }
}

@media (min-width: 992px) {
    .pete-timeline-wrap h2 {
        font-size: 6.25rem;
        line-height: 0.95em;
        text-align: center;
    }
    .pete-timeline-wrap {
        background: linear-gradient(to bottom, transparent 0, transparent 720px, #000 720px);
    }
}

.pete-timeline-col-12.pete-timeline-col-md-6 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .pete-timeline-col-12.pete-timeline-col-md-6 {
        width: 100%;
        justify-content: center;
        margin-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .pete-timeline-col-12.pete-timeline-col-md-6 {
        margin-bottom: 100px;
    }
}

.pete-timeline-wrap h2 span {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-style: normal;
}

.pete-timeline-wrap p {
    color: #fff;
}

.pete-timeline {
    position: relative;
    padding-top: 30px;
}

@media (min-width: 768px) {
    .pete-timeline {
        padding-top: 60px;
    }
}

@media (min-width: 992px) {
    .pete-timeline {
        padding-top: 80px;
    }
}

@media (min-width: 1200px) {
    .pete-timeline {
        padding-top: 100px;
    }
}

.pete-timeline > div:nth-of-type(3), 
.pete-timeline > div:nth-of-type(5), 
.pete-timeline > div:nth-of-type(7), 
.pete-timeline > div:nth-of-type(9), 
.pete-timeline > div:nth-of-type(11) {
    display: flex;
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .pete-timeline > div:nth-of-type(3), 
    .pete-timeline > div:nth-of-type(5), 
    .pete-timeline > div:nth-of-type(7), 
    .pete-timeline > div:nth-of-type(9), 
    .pete-timeline > div:nth-of-type(11) {
        flex-direction: unset;
    }
}

.pete-timeline .pete-timeline-line {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0%;
    background-color: #fff;
    transition: all 3s ease-in-out;
}

.pete-timeline .pete-tl-block {
    position: relative;
    padding-top: 70px;
}

@media (min-width: 768px) {
    .pete-timeline .pete-tl-block {
        display: flex;
        justify-content: space-between;
        padding-top: 60px;
    }
}

@media (min-width: 992px) {
    .pete-timeline .pete-tl-block {
        padding-top: 80px;
    }
}

@media (min-width: 1200px) {
    .pete-timeline .pete-tl-block {
        padding-top: 100px;
    }
}

@media (min-width: 768px) {
    .pete-timeline .pete-tl-block.pete-tl-block-first h2 {
        top: -50px;
    }
}

.pete-timeline .pete-tl-block h2 {
    color: #D4AF37;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-style: normal;
    padding: 15px 0 12px 0;
    margin: 0;
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .pete-timeline .pete-tl-block h2 {
        top: calc(50% + 50px);
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .pete-timeline .pete-tl-block h2 {
        font-size: 3.5rem;
    }
}

.pete-timeline .pete-tl-block h2::before {
    content: '';
    width: 2px;
    height: 15px;
    background-color: #fff;
    position: absolute;
    z-index: -1;
    left: 50%;
    top: -5px;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .pete-timeline .pete-tl-block h2::before {
        background-color: #000;
        width: 20px;
        height: 100%;
        left: 50%;
        top: 0;
    }
}

.pete-timeline .pete-tl-block h2::after {
    content: '';
    width: 2px;
    height: 30px;
    background-color: #fff;
    position: absolute;
    z-index: -1;
    left: 50%;
    bottom: -20px;
}

@media (min-width: 768px) {
    .pete-timeline .pete-tl-block h2::after {
        content: none;
    }
}

.pete-timeline .pete-tl-block .pete-tl-half {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

@media (min-width: 768px) {
    .pete-timeline .pete-tl-block .pete-tl-half {
        align-items: flex-start;
        width: 46%;
        margin-left: 0%;
        margin-right: 0%;
    }
}

.pete-timeline .pete-tl-block .pete-tl-half img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    border-radius: 0.5rem;
}

.pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text {
    position: relative;
    padding: 20px 10px;
    text-align: center;
}

@media (min-width: 768px) {
    .pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text {
        padding: 0 35px;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text {
        padding: 0 45px;
    }
}

@media (min-width: 1200px) {
    .pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text {
        padding: 0 50px;
    }
}

.pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text .pete-tl-icon {
    margin-left: 20px;
}

.pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text h4 {
    margin-left: 20px;
}

@media (min-width: 768px) {
    .pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text .pete-tl-icon {
        margin-left: 30px;
    }
    
    .pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text h4 {
        margin-left: 30px;
    }
}

@media (min-width: 992px) {
    .pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text .pete-tl-icon {
        margin-left: 40px;
    }
    
    .pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text h4 {
        margin-left: 40px;
    }
}

.pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text h3, 
.pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text h4, 
.pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text p {
    color: #fff;
    position: relative;
    z-index: 1;
}

.pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text h3 {
    font-size: 2.0625rem;
    margin: 0;
    line-height: 1em;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text h3 {
        font-size: 1.875rem;
    }
}

@media (min-width: 992px) {
    .pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text h3 {
        font-size: 2.875rem;
    }
}

.pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text h4 {
    font-size: 1.25rem;
    margin-top: 5px;
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 400;
    font-style: normal;
}

@media (min-width: 992px) {
    .pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text h4 {
        font-size: 1.875rem;
    }
}

.pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text p {
    margin-top: 5px;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text h4 .bi-geo-alt {
    margin-right: 8px;
    color: #D4AF37;
}

@media (min-width: 992px) {
    .pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text h4 .bi-geo-alt {
        margin-right: 12px;
    }
}

.pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text .pete-blur-img {
    position: absolute;
    height: auto;
    top: -50%;
    right: 10%;
    z-index: 0;
    width: 80%;
    filter: blur(10px);
    opacity: 0.3;
}

.pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text .pete-blur-img-small {
    position: absolute;
    height: auto;
    bottom: 50%;
    right: 25%;
    z-index: 0;
    width: 50%;
    filter: blur(10px);
    opacity: 0.6;
}

.pete-timeline .pete-tl-block .pete-tl-half.pete-tl-half-text .pete-blur-img2 {
    position: absolute;
    height: auto;
    top: -0%;
    left: -4%;
    z-index: 0;
    width: 60%;
    filter: blur(10px);
    opacity: 0.7;
}

.pete-timeline.start-animation .pete-timeline-line {
    height: 100%;
}

.pete-timeline-wrap-mob {
    min-height: 100vh;
    background-color: #000;
}

.pete-timeline-wrap-mob h2 {
    color: #fff;
    margin-bottom: 40px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .pete-timeline-wrap-mob h2 {
        font-size: 3rem;
    }
}

.pete-timeline-wrap-mob h2 span {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-style: normal;
}

.pete-timeline-wrap-mob p {
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
}

.pete-timeline-wrap-mob p:last-of-type {
    margin-bottom: 40px;
}

.pete-timeline-mob {
    position: relative;
}

.pete-timeline-mob .pete-timeline-line-mob {
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    transform: translateY(-50%);
}

.pete-timeline-mob h3, .pete-timeline-mob h4, .pete-timeline-mob p {
    color: #fff;
    position: relative;
    z-index: 1;
}

.pete-timeline-mob h4 .bi-geo-alt {
    margin-right: 6px;
    color: #D4AF37;
}

.pete-timeline-mob h4 {
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.pete-timeline-item-mob {
    position: relative;
    padding-right: 40px;
    padding-left: 40px;
}

.pete-timeline-item-mob .pete-timeline-img-mob {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
    border-radius: 0.5rem;
}

.pete-timeline-item-mob h2 {
    color: #D4AF37;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3.5rem;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
    position: relative;
}

.pete-timeline-item-mob .pete-tl-mob-text-box {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pete-timeline-item-mob .pete-tl-mob-text-box h3 {
    color: #fff;
    font-size: 1.4375rem;
    text-align: center;
    margin-bottom: 6px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.pete-timeline-item-mob .pete-tl-mob-text-box p {
    color: #fff;
    text-align: center;
    padding: 0 5px;
    margin-bottom: 0 !important;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pete-timeline-item-mob .pete-tl-mob-text-box.pete-tl-mob-text-box-top {
    align-items: center;
    justify-content: flex-end;
}

.pete-timeline-item-mob::before {
    content: '';
    width: 29%;
    height: 10px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

.pete-timeline-item-mob.pete-timeline-first-item::before {
    content: '';
    width: calc(50% + 160px);
    height: 10px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    display: block;
}

.pete-timeline-item-mob.pete-timeline-last-item::before {
    content: '';
    width: calc(50% + 160px);
    height: 10px;
    background-color: #000;
    position: absolute;
    top: 50%;
    right: -100px;
    left: initial;
    transform: translateY(-50%);
    display: block;
}

.pete-timeline-item-mob .pete-blur-img1 {
    position: absolute;
    left: 40%;
    bottom: 20px;
    width: 80px;
    height: auto;
    transform: translateX(-50%);
    top: initial;
    filter: blur(4px);
}

.pete-timeline-item-mob .pete-blur-img2 {
    position: absolute;
    top: 30px;
    left: 230px;
    width: 120px;
    height: auto;
    transform: translateX(-50%);
    filter: blur(4px);
}

.pete-timeline-container, .pete-timeline-container-fluid, .pete-timeline-container-lg, .pete-timeline-container-md, .pete-timeline-container-sm, .pete-timeline-container-xl, .pete-timeline-container-xxl {
    --bs-gutter-x: 40px;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .pete-timeline-container, .pete-timeline-container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .pete-timeline-container, .pete-timeline-container-fluid, .pete-timeline-container-lg, .pete-timeline-container-md, .pete-timeline-container-sm, .pete-timeline-container-xl, .pete-timeline-container-xxl {
        --bs-gutter-x: 30px;
    }
    .pete-timeline-container, .pete-timeline-container-md, .pete-timeline-container-sm {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .pete-timeline-container, .pete-timeline-container-fluid, .pete-timeline-container-lg, .pete-timeline-container-md, .pete-timeline-container-sm, .pete-timeline-container-xl, .pete-timeline-container-xxl {
        --bs-gutter-x: 40px;
    }
    .pete-timeline-container, .pete-timeline-container-lg, .pete-timeline-container-md, .pete-timeline-container-sm {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .pete-timeline-container, .pete-timeline-container-lg, .pete-timeline-container-md, .pete-timeline-container-sm, .pete-timeline-container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .pete-timeline-container, .pete-timeline-container-fluid, .pete-timeline-container-lg, .pete-timeline-container-md, .pete-timeline-container-sm, .pete-timeline-container-xl, .pete-timeline-container-xxl {
        --bs-gutter-x: 56px;
    }
    .pete-timeline-container, .pete-timeline-container-lg, .pete-timeline-container-md, .pete-timeline-container-sm, .pete-timeline-container-xl, .pete-timeline-container-xxl {
        max-width: 1320px;
    }
}

.pete-timeline-row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    max-width: 100%;
}

@media (min-width: 768px) {
    .pete-timeline-row {
        --bs-gutter-x: 30px;
    }
}

@media (min-width: 992px) {
    .pete-timeline-row {
        --bs-gutter-x: 40px;
    }
}

@media (min-width: 1400px) {
    .pete-timeline-row {
        --bs-gutter-x: 56px;
    }
}

.pete-timeline-row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
    min-width: 0;
}

.pete-timeline-col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .pete-timeline-col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

.pete-sect-pad-top {
    padding-top: 60px;
}

@media (min-width: 768px) {
    .pete-sect-pad-top {
        padding-top: 80px;
    }
}

@media (min-width: 992px) {
    .pete-sect-pad-top {
        padding-top: 100px;
    }
}

.pete-sect-pad-bot {
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    .pete-sect-pad-bot {
        padding-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .pete-sect-pad-bot {
        padding-bottom: 100px;
    }
}

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

@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
    .d-md-none {
        display: none !important;
    }
}

.fw {
    width: 100%;
    float: left;
    display: block;
}

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

.pete-timeline-section-header {
    width: 100%;
    text-align: center;
    margin: 60px 0 40px 0;
    position: relative;
}

.pete-timeline-section-header .pete-section-title {
    color: #D4AF37;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    display: inline-block;
    background-color: #000; 
    padding: 8px 16px;
    z-index: 5; 
    border-radius: 6px;
    border: 0;
    transition: box-shadow 200ms ease, border-color 200ms ease;
}

.pete-outline-gold {
    color: transparent !important;
    -webkit-text-fill-color: transparent !important; 
    text-fill-color: transparent !important;
    -webkit-text-stroke: 1.5px #D4AF37 !important;
    text-stroke: 1.5px #D4AF37 !important;
}

@media (min-width: 992px) {
    .pete-outline-gold {
        -webkit-text-stroke: 2px #D4AF37 !important;
        text-stroke: 2px #D4AF37 !important;
    }
}

@supports not (-webkit-text-stroke: 1px #000) {
    .pete-outline-gold {
        color: #0b0b0b !important; 
        text-shadow: 1px 0 0 #D4AF37, -1px 0 0 #D4AF37, 0 1px 0 #D4AF37, 0 -1px 0 #D4AF37;
    }
}

.pete-timeline-section-header .pete-section-title {
    top: 4rem;
}

.pete-timeline-section-header .pete-section-title::before,
.pete-timeline-section-header .pete-section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background-color: #D4AF37;
    transform: translateY(-50%);
}

.pete-timeline-section-header .pete-section-title::before {
    left: -80px;
}

.pete-timeline-section-header .pete-section-title::after {
    right: -80px;
}

@media (min-width: 768px) {
    .pete-timeline-section-header .pete-section-title {
        font-size: 2.5rem;
        padding: 25px 50px;
    }
    
    .pete-timeline-section-header .pete-section-title::before,
    .pete-timeline-section-header .pete-section-title::after {
        width: 100px;
    }
    
    .pete-timeline-section-header .pete-section-title::before {
        left: -120px;
    }
    
    .pete-timeline-section-header .pete-section-title::after {
        right: -120px;
    }
}

@media (min-width: 992px) {
    .pete-timeline-section-header .pete-section-title {
        font-size: 3rem;
        padding: 30px 60px;
    }
}

.pete-timeline-section-header .pete-section-title:hover,
.pete-timeline-section-header .pete-section-title:focus-visible {
    border-color: #D4AF37;
    box-shadow: 0 0 0.6rem rgba(212, 175, 55, 0.85), 0 0 1.6rem rgba(212, 175, 55, 0.6), 0 0 2.4rem rgba(212, 175, 55, 0.45);
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.8), 0 0 12px rgba(212, 175, 55, 0.5);
}

.pete-story-h3-wrap {
    overflow: hidden;
    height: auto;
    max-height: none;
    will-change: transform, opacity;
    contain: layout paint;
}

.petesacco-podcast-header {
    position: relative;
}

.petesacco-podcast-header-decorative-wrap {
    z-index: 0;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.petesacco-podcast-header-line-wrap {
    z-index: -1;
    position: absolute;
    top: 400px;
    bottom: auto;
    left: 0%;
    right: 0%;
}

.petesacco-podcast-header-line-wrap.home {
    top: 220px;
    bottom: 220px;
}

.petesacco-podcast-banner-line-image {
    width: 100%;
}

.petesacco-podcast-banner-section {
    z-index: 2;
    padding-top: 60px;
}

.petesacco-podcast-container-medium {
    max-width: 1350px;
    padding-left: 24px;
    padding-right: 24px;
}

.petesacco-podcast-banner-wrap {
    z-index: 2;
    text-align: center;
    position: relative;
}

.petesacco-podcast-banner-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 8rem;
    line-height: 1.3;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    color: #ffffff;
}

.petesacco-podcast-text-yellow {
    color: #ffb340;
}

.petesacco-podcast-banner-button-wrap {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    display: flex;
}

.petesacco-podcast-white-button {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    background-color: #ffffff;
    color: #0d0d0e;
    text-align: center;
    text-transform: capitalize;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    padding: 22px 25px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    display: flex;
    transition: all 0.3s ease;
}

.petesacco-podcast-button-icon-wrap {
    min-width: 14px;
    max-width: 14px;
    min-height: 14px;
    max-height: 14px;
    line-height: 0;
}

.petesacco-podcast-home-banner-podcast-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    display: flex;
}

.petesacco-podcast-home-banner-podcast-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
}

.petesacco-podcast-app-wrap {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
}

.petesacco-podcast-link-wrap {
    justify-content: center;
    align-items: center;
    min-width: 45px;
    max-width: 45px;
    min-height: 45px;
    max-height: 45px;
    transition-property: transform;
    transition-duration: .2s;
    display: flex;
}

.petesacco-podcast-link-wrap:hover {
    transform: translate(0, -3px);
}

.petesacco-podcast-link-wrap.large {
    min-width: 55px;
    max-width: 55px;
    min-height: 55px;
    max-height: 55px;
}

.petesacco-podcast-app-icon {
    border-radius: 100%;
}

.petesacco-podcast-profile-section {
    text-align: center;
    margin-top: clamp(2rem, 5vw, 3.75rem);
    margin-bottom: clamp(1.875rem, 4vw, 3.125rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(1.875rem);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.petesacco-podcast-profile-image {
    width: clamp(13.75rem, 50vw, 20rem);
    height: clamp(13.75rem, 50vw, 20rem);
    max-width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: clamp(0.125rem, 0.3vw, 0.1875rem) solid #ffb340;
    box-shadow: 0 0.5rem 1.5rem rgba(255, 179, 64, 0.25);
    margin-bottom: clamp(1.25rem, 3vw, 1.875rem);
    transition: all 0.3s ease;
    will-change: transform;
}

.petesacco-podcast-profile-image:hover {
    transform: scale(1.03);
    box-shadow: 0 0.75rem 2rem rgba(255, 179, 64, 0.4);
}

.petesacco-podcast-host-name {
    font-family: Poppins, sans-serif;
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: clamp(0.625rem, 1.5vw, 0.75rem);
    line-height: 1.3;
}

.petesacco-podcast-host-subtitle {
    font-family: Poppins, sans-serif;
    font-size: clamp(0.8125rem, 2vw, 1rem);
    font-weight: 400;
    color: #696664;
    letter-spacing: 0.03125rem;
    margin-bottom: 0;
    line-height: 1.3;
}

.petesacco-podcast-profile-description {
    font-family: Poppins, sans-serif;
    font-size: clamp(0.9375rem, 2.2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.6;
    color: #fcf5ee;
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin-top: clamp(1.25rem, 3vw, 2.1875rem);
    padding: 0;
}

@media (min-width: 576px) {
    .petesacco-podcast-profile-section {
        padding: 0 1.5rem;
    }

    .petesacco-podcast-profile-image {
        width: clamp(15rem, 45vw, 17.5rem);
        height: clamp(15rem, 45vw, 17.5rem);
    }

    .petesacco-podcast-profile-description {
        max-width: 90%;
    }
}

@media (min-width: 768px) {
    .petesacco-podcast-profile-section {
        margin-top: clamp(3.125rem, 6vw, 4.375rem);
        margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
        padding: 0 2rem;
    }

    .petesacco-podcast-profile-image {
        width: clamp(16.25rem, 35vw, 18.75rem);
        height: clamp(16.25rem, 35vw, 18.75rem);
        border-width: 0.1875rem;
    }

    .petesacco-podcast-profile-description {
        max-width: 80%;
    }
}

@media (min-width: 992px) {
    .petesacco-podcast-profile-section {
        margin-top: clamp(3.75rem, 7vw, 5rem);
        margin-bottom: clamp(3.125rem, 6vw, 4.375rem);
        padding: 0;
    }

    .petesacco-podcast-profile-image {
        width: 18.75rem;
        height: 18.75rem;
        border-width: 0.1875rem;
    }

    .petesacco-podcast-host-name {
        font-size: 1.375rem;
    }

    .petesacco-podcast-host-subtitle {
        font-size: 0.9375rem;
    }

    .petesacco-podcast-profile-description {
        font-size: 1.0625rem;
        max-width: 43.75rem;
    }
}

@media (min-width: 1200px) {
    .petesacco-podcast-profile-section {
        margin-top: 4.375rem;
        margin-bottom: 3.75rem;
    }

    .petesacco-podcast-profile-image {
        width: 20rem;
        height: 20rem;
    }

    .petesacco-podcast-host-name {
        font-size: 1.5rem;
    }

    .petesacco-podcast-host-subtitle {
        font-size: 1rem;
        letter-spacing: 0.03125rem;
    }

    .petesacco-podcast-profile-description {
        font-size: 1.125rem;
        max-width: 43.75rem;
    }
}

@media (min-width: 1440px) {
    .petesacco-podcast-profile-section {
        margin-top: 5rem;
        margin-bottom: 4.375rem;
    }

    .petesacco-podcast-profile-image {
        width: 20rem;
        height: 20rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .petesacco-podcast-profile-section,
    .petesacco-podcast-profile-image {
        transition: none;
        animation: none;
    }
    
    .petesacco-podcast-profile-image:hover {
        transform: none;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .petesacco-podcast-profile-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

.heading-style-h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3rem;
    font-weight: 400;
    line-height: 3.5rem;
}

.heading-style-h6 {
    font-family: Poppins, sans-serif;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.75rem;
}

.petesacco-podcast-card .heading-style-h6 {
    background: linear-gradient(90deg, #F59E0B 0%, #F59E0B 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    background-position: left center;
    transition: background-size 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2px 0;
    display: inline-block;
    width: fit-content;
}

.heading-style-h6.text-color-white {
    color: #ffffff;
}

.text-size-regular {
    font-family: Poppins, sans-serif;
    color: #ffffff;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.text-color-white {
    color: #ffffff;
}

.padding-global {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.padding-section-medium {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.padding-bottom {
    padding: 0;
}

.padding-bottom.padding-xlarge {
    padding-bottom: 3.75rem;
}

.container-large {
    width: 100%;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
}

.petesacco-series-podcast-section {
    overflow: hidden;
    width: 100%;
    margin-top: 3rem;
}

.petesacco-podcast-component {
    overflow: hidden;
}

.petesacco-podcast-top-content {
    max-width: 38.875rem;
}

.petesacco-podcast-grid {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
}

.petesacco-podcast-card {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    background-color: rgba(38, 38, 40, 0.8);
    border-radius: .75rem;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 20.0625rem;
    display: flex;
    position: relative;
    overflow: hidden;
}

.petesacco-podcast-image-wrapper {
    z-index: 1;
    border-radius: 6px;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.petesacco-podcast-image {
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 6px;
    width: 100%;
    height: 100%;
}

.petesacco-podcast-content {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: column;
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background-color: rgba(38, 38, 40, 0.95);
    transform: translateY(100%);
    transition: transform 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.petesacco-podcast-card:hover .petesacco-podcast-content {
    transform: translateY(0);
}

.petesacco-podcast-image-content {
    z-index: 1;
    display: block;
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    transition: opacity 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.petesacco-podcast-card:hover .petesacco-podcast-image-content {
    opacity: 0;
}

.petesacco-podcast-image-ovarly {
    background-image: linear-gradient(rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, 0.88));
    width: 100%;
    height: 87px;
    position: absolute;
    bottom: 0;
    transition: opacity 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.petesacco-podcast-card:hover .petesacco-podcast-image-ovarly {
    opacity: 0;
}

@media screen and (max-width: 991px) {
    .heading-style-h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .container-large {
        max-width: 100%;
    }

    .padding-global {
        padding-left: 1.875rem;
        padding-right: 1.875rem;
    }

    .padding-bottom.padding-xlarge {
        padding-bottom: 2.5rem;
    }

    .padding-section-medium {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .petesacco-podcast-component {
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
        flex-flow: column;
        display: flex;
    }

    .petesacco-podcast-top-content {
        max-width: none;
    }

    .petesacco-podcast-grid {
        grid-row-gap: 1.5rem;
        grid-template-columns: 1fr 1fr;
    }

    .petesacco-podcast-card {
        max-width: none;
    }

    .petesacco-podcast-image-wrapper {
        height: auto;
    }
}

@media screen and (max-width: 767px) {
    .heading-style-h2 {
        font-size: 2.2rem;
        line-height: 2.7rem;
    }

    .padding-global {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .padding-bottom.padding-large {
        padding-bottom: 2rem;
    }

    .padding-section-medium {
        flex-flow: column;
        padding-top: 3.75rem;
        padding-bottom: 1.875rem;
    }

    .petesacco-series-podcast-section {
        margin-top: 5rem;
    }

    .petesacco-podcast-grid {
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
        grid-template-columns: 1fr 1fr;
    }

    .petesacco-podcast-card {
        height: auto;
    }

    .petesacco-podcast-content {
        position: static;
        transform: translateY(0);
        padding: 1.25rem 1rem;
    }

    .petesacco-podcast-image-ovarly {
        height: 5.4375rem;
        bottom: 0;
    }
}

@media screen and (max-width: 479px) {
    .heading-style-h2 {
        font-size: 1.8rem;
        line-height: 2.3rem;
    }

    .padding-global {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .padding-bottom.padding-large {
        padding-bottom: 2.5rem;
    }

    .padding-bottom.padding-xlarge {
        padding-bottom: 2rem;
    }

    .padding-section-medium {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .petesacco-series-podcast-section {
        margin-top: 6rem;
    }

    .petesacco-podcast-grid {
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .petesacco-podcast-card {
        padding-left: 0;
        padding-right: 0;
    }

    .petesacco-podcast-content {
        padding: 1.25rem 1rem;
    }
}

@media screen and (min-width: 1280px) {
    .petesacco-podcast-container-medium {
        padding-left: 0;
        padding-right: 0;
    }

    .petesacco-podcast-home-banner-podcast-wrap {
        margin-top: 100px;
    }
}

@media screen and (max-width: 991px) {
    .petesacco-podcast-banner-title {
        font-size: 54px;
        line-height: 1.2;
    }

    .petesacco-podcast-home-banner-podcast-wrap {
        margin-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    .petesacco-podcast-banner-title {
        font-size: 44px;
    }

    .petesacco-podcast-container-medium {
        padding-left: 20px;
        padding-right: 20px;
    }

    .petesacco-podcast-home-banner-podcast-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 479px) {
    .petesacco-podcast-header {
        padding-top: 30px;
    }

    .petesacco-podcast-header-decorative-wrap {
        display: none;
    }

    .petesacco-podcast-banner-section {
        padding-top: 40px;
    }

    .petesacco-podcast-banner-title {
        font-size: 48px;
    }

    .petesacco-podcast-banner-button-wrap {
        grid-column-gap: 15px;
        grid-row-gap: 15px;
        flex-direction: column;
        align-items: stretch;
    }

    .petesacco-podcast-white-button {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .petesacco-podcast-home-banner-podcast-title {
        font-size: 22px;
    }

    .petesacco-podcast-app-wrap {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }

    .petesacco-podcast-link-wrap {
        min-width: 35px;
        max-width: 35px;
        min-height: 35px;
        max-height: 35px;
    }

    .petesacco-podcast-link-wrap.large {
        min-width: 40px;
        max-width: 40px;
        min-height: 40px;
        max-height: 40px;
    }
}

.podcast-marquee-title-wrap {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: clamp(3.75rem, 10vh, 6.25rem);
    padding-bottom: clamp(3.75rem, 10vh, 6.25rem);
    display: flex;
}

.podcast-marquee-text-wrap {
    gap: clamp(1.25rem, 3vw, 1.25rem);
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    display: flex;
}

.podcast-marquee-title-text {
    margin-top: 0;
    margin-bottom: 0;
    font-size: clamp(2.8rem, 8vw, 4.75rem);
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 1.1;
}

@media screen and (min-width: 1920px) {
    .podcast-marquee-title-text {
        font-size: clamp(4rem, 6.5vw, 7rem);
    }
    .podcast-marquee-text {
        font-size: clamp(4rem, 6.5vw, 7rem) !important;
    }
    .podcast-marquee-wrap {
        max-width: clamp(22rem, 50vw, 45rem);
    }
}

.podcast-marquee-wrap {
    border-right: 0.3125rem solid #ffffff;
    border-left: 0.3125rem solid #ffffff;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    max-width: clamp(18rem, 40vw, 33.125rem);
    display: flex;
    overflow: hidden;
}

.podcast-marquee-text {
    color: #535353;
    white-space: nowrap;
    margin-top: 0;
    margin-bottom: 0;
    font-size: clamp(2.8rem, 8vw, 4.75rem);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 1.1;
}

.podcast-marquee-text-holder {
    padding-right: 1.25rem;
}

.podcast-feature-show-section {
    background-image: url("https://cdn.prod.website-files.com/64951b6e24011b4630c57e0d/649a69de702ed56b053a7d1b_feature-show-bg.svg");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: clamp(5rem, 15vh, 10.625rem);
    padding-bottom: clamp(5rem, 15vh, 10.625rem);
    overflow: hidden;
}

.podcast-section-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: clamp(3rem, 8vw, 4rem);
    line-height: 1.1;
    color: #ffffff;
    text-align: left;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    padding-left: 0;
}

.podcast-container-regular {
    max-width: min(58.75rem, 90vw);
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding-left: 0;
    padding-right: clamp(1.25rem, 3vw, 1.5rem);
}

.podcast-slide_wrap {
    width: 100%;
    margin-top: clamp(2.5rem, 6vh, 3.75rem);
}

.podcast-slide-wrap {
    width: 100%;
    margin-top: clamp(2.5rem, 6vh, 3.75rem);
}

.podcast-slide-list {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: stretch;
}

.podcast-slide-item {
    position: relative;
    z-index: 3;
    width: clamp(35rem, 65vw, 50rem);
    padding-right: clamp(1.25rem, 2.5vw, 2.5rem);
    flex: 0 0 auto;
    transition: transform 350ms ease;
}

.podcast-slide-card {
    height: 352px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
    padding: 0;
    display: block;
    width: 100%;
}

.podcast-slide-card iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: none;
    display: block;
}

.podcast-slide-arrows {
    display: flex;
    padding-top: 2.4em;
    align-items: center;
    justify-content: center;
}

.podcast-slide-arrow {
    display: flex;
    width: clamp(3.125rem, 6vw, 3.75rem);
    height: clamp(3.125rem, 6vw, 3.75rem);
    margin-right: clamp(0.625rem, 2vw, 0.9375rem);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #ffffff;
    color: #0d0d0e;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
    text-decoration: none;
}

.podcast-slide-arrow:hover {
    background-color: #ffb340;
    transform: scale(1.1);
}

.podcast-slide-arrow.podcast-is--disabled-arrow {
    opacity: 0.5;
    cursor: not-allowed;
}

.podcast-slide-arrow.podcast-is--disabled-arrow:hover {
    background-color: #ffffff;
    transform: none;
}

.podcast-slide-svg {
    width: clamp(1rem, 2vw, 1.25rem);
    height: clamp(1rem, 2vw, 1.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-slide-svg.podcast-is--flip {
    transform: rotate(-180deg);
}

@media screen and (max-width: 61.9375em) {
    .podcast-container-regular {
        max-width: min(45.5rem, 95vw);
    }

    .podcast-section-title {
        font-size: clamp(2.5rem, 6vw, 3rem);
    }

    .podcast-marquee-title-wrap {
        padding-top: clamp(3rem, 8vh, 5rem);
        padding-bottom: clamp(3rem, 8vh, 5rem);
    }

    .podcast-marquee-title-text,
    .podcast-marquee-text {
        font-size: clamp(2.5rem, 7vw, 4.125rem);
    }

    .podcast-feature-show-section {
        padding-top: clamp(4rem, 12vh, 7.5rem);
        padding-bottom: clamp(4rem, 12vh, 7.5rem);
    }

    .podcast-slide-item {
        width: clamp(25rem, 60vw, 35rem);
    }

    .podcast-slide-card {
        height: 300px;
    }
}

@media screen and (max-width: 47.9375em) {
    .podcast-section-title {
        font-size: clamp(2.2rem, 6.5vw, 2.75rem);
    }

    .podcast-marquee-title-text {
        font-size: clamp(2.2rem, 6vw, 3.375rem);
    }

    .podcast-marquee-wrap {
        max-width: clamp(16rem, 80vw, 27.5rem);
    }

    .podcast-marquee-text {
        font-size: clamp(2.2rem, 6vw, 3.4375rem);
    }

    .podcast-feature-show-section {
        padding-top: clamp(3.5rem, 10vh, 6.25rem);
        padding-bottom: clamp(3.5rem, 10vh, 6.25rem);
    }

    .podcast-slide-item {
        width: clamp(20rem, 75vw, 28rem);
        padding-right: clamp(1rem, 3vw, 1.25rem);
    }

    .podcast-slide-card {
        height: 280px;
        border-radius: 12px;
    }

    .podcast-slide-arrow {
        width: clamp(2.5rem, 6vw, 3.125rem);
        height: clamp(2.5rem, 6vw, 3.125rem);
        margin-right: clamp(0.5rem, 2vw, 0.625rem);
    }

    .podcast-slide-svg {
        width: clamp(0.8rem, 2vw, 1rem);
        height: clamp(0.8rem, 2vw, 1rem);
    }
}

@media screen and (max-width: 29.9375em) {
    .podcast-section-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }

    .podcast-marquee-title-wrap {
        padding-top: clamp(2.5rem, 8vh, 3.75rem);
        padding-bottom: clamp(2.5rem, 8vh, 4.375rem);
    }

    .podcast-marquee-title-text {
        font-size: clamp(2rem, 7vw, 2.8125rem);
    }

    .podcast-marquee-wrap {
        max-width: clamp(14rem, 85vw, 18.125rem);
    }

    .podcast-marquee-text {
        font-size: clamp(2rem, 7vw, 2.8125rem);
    }

    .podcast-feature-show-section {
        padding-top: clamp(3rem, 10vh, 5rem);
        padding-bottom: clamp(3rem, 10vh, 5rem);
    }

    .podcast-slide-item {
        width: clamp(15.625rem, 85vw, 18.75rem);
        padding-right: clamp(0.75rem, 3vw, 0.9375rem);
    }

    .podcast-slide-card {
        height: 250px;
        border-radius: 12px;
    }

    .podcast-slide-arrow {
        width: clamp(2.5rem, 6vw, 3.125rem);
        height: clamp(2.5rem, 6vw, 3.125rem);
        margin-right: clamp(0.5rem, 2vw, 0.625rem);
    }

    .podcast-slide-svg {
        width: clamp(0.8rem, 2vw, 1rem);
        height: clamp(0.8rem, 2vw, 1rem);
    }
}

@media screen and (max-width: 30em) {
    .podcast-slide-item {
        width: clamp(18rem, 90vw, 22rem);
        padding-right: clamp(0.5rem, 2vw, 0.75rem);
    }

    .podcast-slide-card {
        height: 280px;
        border-radius: 10px;
    }

    .podcast-slide-arrow {
        width: clamp(2.25rem, 5.5vw, 2.75rem);
        height: clamp(2.25rem, 5.5vw, 2.75rem);
        margin-right: clamp(0.4rem, 1.5vw, 0.5rem);
    }

    .podcast-slide-svg {
        width: clamp(0.7rem, 1.8vw, 0.9rem);
        height: clamp(0.7rem, 1.8vw, 0.9rem);
    }
}

.petesacco-episode-section {
    color: #696664;
    font-family: Poppins, sans-serif;
    padding-top: 100px;
    padding-bottom: 100px;
}

.petesacco-episode-container {
    max-width: 1360px;
    padding-left: 30px;
    padding-right: 30px;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    color: #fcf5ee;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: Oswald, sans-serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.2em;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid #3a3a3a;
    background: #ffffff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #0e0c09;
    font-family: Azeret Mono, sans-serif;
    font-size: 16px;
    box-shadow: 0 0 0 3px #fcf5ee;
}

.filter-btn:hover {
    box-shadow: 0 0 0 3px #fcf5ee, 4px 4px 0 0 #fd8910;
}

.filter-btn.active {
    background: #0e0c09;
    color: #ffffff;
    box-shadow: 0 0 0 2px #fcf5ee;
}

.grid-episode-wrap {
    grid-column-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    align-content: start;
    align-items: start;
    position: relative;
}

.episode-item {
    grid-column-gap: 30px;
    grid-row-gap: 16px;
    border: 2px solid #3a3a3a;
    background-color: #fcf5ee;
    box-shadow: 0 0 0 3px #fd8910;
    grid-template-rows: auto;
    grid-template-columns: 1fr 3fr;
    grid-auto-columns: 1fr;
    margin-bottom: 30px;
    padding: 25px;
    max-width: min(60rem, 100%);
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.episode-image {
    border: 2px solid #0e0c09;
    width: 100%;
}

.grid-episode {
    grid-column-gap: 30px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: .5fr .75fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.episode-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #0e0c09;
    margin-bottom: 10px;
}

.episode-badge.bliss {
    background: #ede9fe;
    color: #7c3aed;
}

.episode-badge.datacenter {
    background: #e0f2fe;
    color: #0ea5e9;
}

.episode-badge.future {
    background: #ecfccb;
    color: #65a30d;
}

.episode-number-wrap {
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-top: 10px;
    display: flex;
}

.episode-number {
    color: #fd8910;
    font-weight: 600;
    display: flex;
}

.episode-number-value {
    margin-left: 4px;
}

.episode-duration-wrap {
    align-items: center;
    margin-top: 10px;
    margin-left: 0;
    display: flex;
}

.episode-duration-icon {
    margin-right: 6px;
}

.episode-title {
    font-size: 28px;
    transition: color .3s ease-in-out;
    color: #0e0c09;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    line-height: 1.2em;
}

.episode-title:hover {
    color: #fd8910;
}

.episode-host-wrap {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.episode-host-icon {
    margin-right: 6px;
    display: block;
}

.episode-host {
    color: #696664;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.episode-bottom {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    display: flex;
}

.button-dark {
    border: 2px solid #0e0c09;
    background-color: #0e0c09;
    color: #ffffff;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: box-shadow .3s ease-in-out;
    display: inline-block;
    text-decoration: none;
    padding-top: 12px;
    padding-bottom: 12px;
}

.button-dark:hover {
    background-color: #0e0c09;
    box-shadow: 6px 6px 0 0 #fd8910;
    color: #ffffff;
}

.episode-listen-wrap {
    align-items: center;
    margin-top: 10px;
    margin-left: 0;
    display: flex;
}

.episode-listen-title {
    font-size: 14px;
}

.episode-listen {
    align-items: center;
    margin: 0;
    display: flex;
    list-style: none;
    padding-left: 0;
}

.listen-item {
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.listen-link {
    width: 20px;
    height: auto;
    display: inline-block;
}

.listen-link img {
    width: 100%;
    height: auto;
    display: block;
}

.zoom-hover {
    transition: transform .3s ease-in-out, color .3s ease-in-out;
}

.zoom-hover:hover {
    transform: scale(1.2);
}

.spotify-player {
    margin-top: 20px;
    display: none;
}

.spotify-player.active {
    display: block;
}

@media screen and (min-width: 1280px) {
    .grid-episode {
        grid-template-columns: .5fr .75fr;
    }

    .episode-number-wrap {
        flex-direction: row;
    }

    .episode-bottom {
        flex-direction: row;
        align-items: center;
    }

    .episode-listen-wrap {
        margin-top: 0;
        margin-left: 20px;
    }

    .episode-duration-wrap {
        margin-top: 0;
        margin-left: 10px;
    }
}

@media screen and (max-width: 991px) {
    .section-title h2 {
        font-size: 70px;
    }

    .petesacco-episode-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .episode-bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 20px;
    }

    .episode-listen-wrap {
        margin-top: 10px;
    }

    .episode-title {
        font-size: 24px;
    }

    .petesacco-episode-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 767px) {
    .section-title h2 {
        font-size: 60px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .grid-episode {
        grid-column-gap: 30px;
        grid-row-gap: 16px;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr;
        grid-auto-columns: 1fr;
        display: grid;
    }

    .episode-title {
        font-size: 22px;
    }

    .episode-duration-wrap {
        margin-top: 10px;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 479px) {
    .section-title h2 {
        font-size: 40px;
    }

    .petesacco-episode-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .petesacco-episode-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .episode-number-wrap,
    .episode-listen-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .listen-item {
        padding-left: 0;
        padding-right: 10px;
    }

    .episode-listen-title {
        margin-bottom: 10px;
    }

    .episode-duration-wrap {
        margin-top: 10px;
    }
}

.supplemental-header {
    position: relative;
    height: 60vh;
    background-image: url("../assets/img/pts4.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 10rem;
}

.supplemental-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.supplemental-header h1 {
    font-size: 3.5rem;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0;
    color: #FDF5E6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.supplemental-header p {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    margin: 1rem 0 0 0;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.pete-message-section {
    padding: 0;
    background: none;
    position: relative;
    margin: 0 0 4rem 0;
}

.pete-message-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pete-message-text {
    flex: 1;
    color: #ffffff;
}

.pete-message-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #FFD700;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pete-message-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0 0 1.5rem 0;
}

.pete-message-paragraph:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 1440px) {
    .pete-message-content {
        max-width: 1400px;
    }

    .pete-message-title {
        font-size: 3rem;
    }

    .pete-message-paragraph {
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 1920px) {
    .pete-message-content {
        max-width: 1600px;
        padding: 0 3rem;
    }

    .pete-message-title {
        font-size: 3.5rem;
    }

    .pete-message-paragraph {
        font-size: 1.35rem;
    }
}

@media screen and (min-width: 2520px) {
    .pete-message-content {
        max-width: 1800px;
        padding: 0 4rem;
    }

    .pete-message-title {
        font-size: 4rem;
    }

    .pete-message-paragraph {
        font-size: 1.5rem;
    }
}

.pete-message-paragraph em {
    color: #FFD700;
    font-style: italic;
    font-weight: 500;
}

.pete-message-image {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pete-signature-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid #FFD700;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

@media screen and (max-width: 768px) {
    .pete-message-section {
        padding: 3rem 0;
    }

    .pete-message-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .pete-message-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .pete-message-paragraph {
        font-size: 1rem;
        line-height: 1.6;
    }

    .pete-message-image {
        flex: none;
    }

    .pete-signature-image {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 480px) {
    .pete-message-section {
        padding: 2rem 0;
    }

    .pete-message-content {
        padding: 0 0.75rem;
        gap: 1.5rem;
    }

    .pete-message-title {
        font-size: 1.75rem;
    }

    .pete-message-paragraph {
        font-size: 0.95rem;
    }

    .pete-signature-image {
        width: 120px;
        height: 120px;
    }
}

.value-stack-section {
    padding: 5rem 0;
    position: relative;
}

.value-stack-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.value-stack-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #FFD700;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.value-stack-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.6;
}

.value-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.value-stack-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-stack-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-stack-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.value-stack-item:hover::before {
    transform: scaleX(1);
}

.value-stack-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-stack-item:hover .value-stack-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.value-stack-icon svg {
    width: 40px;
    height: 40px;
    color: #000000;
}

.value-stack-item-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.value-stack-item-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .value-stack-section {
        padding: 3rem 0;
    }

    .value-stack-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .value-stack-title {
        font-size: 2.5rem;
    }

    .value-stack-subtitle {
        font-size: 1.1rem;
    }

    .value-stack-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .value-stack-item {
        padding: 1.5rem;
    }

    .value-stack-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .value-stack-icon svg {
        width: 35px;
        height: 35px;
    }

    .value-stack-item-title {
        font-size: 1.3rem;
    }

    .value-stack-item-description {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .value-stack-section {
        padding: 2.5rem 0;
    }

    .value-stack-header {
        margin-bottom: 2.5rem;
        padding: 0 0.75rem;
    }

    .value-stack-title {
        font-size: 2rem;
    }

    .value-stack-subtitle {
        font-size: 1rem;
    }

    .value-stack-grid {
        padding: 0 0.75rem;
        gap: 1.25rem;
    }

    .value-stack-item {
        padding: 1.25rem;
    }

    .value-stack-icon {
        width: 60px;
        height: 60px;
    }

    .value-stack-icon svg {
        width: 30px;
        height: 30px;
    }

    .value-stack-item-title {
        font-size: 1.2rem;
    }

    .value-stack-item-description {
        font-size: 0.9rem;
    }
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    position: relative;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: #FFD700;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.cta-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #e0e0e0;
    margin: 0 0 3rem 0;
    line-height: 1.6;
}

.cta-form {
    width: 100%;
}

@media screen and (min-width: 1440px) {
    .cta-content {
        max-width: 800px;
    }

    .cta-title {
        font-size: 3.6rem;
    }

    .cta-description {
        font-size: 1.4rem;
    }

    .cta-form-group {
        max-width: 700px;
    }
}

@media screen and (min-width: 1920px) {
    .cta-content {
        max-width: 1000px;
    }

    .cta-title {
        font-size: 4rem;
    }

    .cta-description {
        font-size: 1.5rem;
    }

    .cta-form-group {
        max-width: 900px;
    }
}

@media screen and (min-width: 2520px) {
    .cta-content {
        max-width: 1200px;
    }

    .cta-title {
        font-size: 4.5rem;
    }

    .cta-description {
        font-size: 1.6rem;
    }

    .cta-form-group {
        max-width: 1100px;
    }
}

.cta-form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.cta-email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-email-input::placeholder {
    color: #888;
}

.cta-email-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.cta-submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-submit-button:active {
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }

    .cta-content {
        padding: 0 1rem;
    }

    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .cta-form-group {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-email-input {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .cta-submit-button {
        padding: 0.875rem 1.5rem;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .cta-section {
        padding: 3rem 0;
    }

    .cta-content {
        padding: 0 0.75rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-email-input {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .cta-submit-button {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }
}

.whats-next-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.whats-next-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.whats-next-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #FFD700;
    margin: 0 0 3rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.whats-next-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.whats-next-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.whats-next-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.whats-next-button:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
    color: #ffffff;
    text-decoration: none;
}

.whats-next-button:hover::before {
    transform: scaleX(1);
}

.whats-next-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whats-next-button:hover .whats-next-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.whats-next-icon svg {
    width: 30px;
    height: 30px;
    color: #000000;
}

.whats-next-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .whats-next-section {
        padding: 3rem 0;
    }

    .whats-next-content {
        padding: 0 1rem;
    }

    .whats-next-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .whats-next-buttons {
        gap: 1.5rem;
    }

    .whats-next-button {
        padding: 1.5rem 1rem;
        min-width: 160px;
    }

    .whats-next-icon {
        width: 50px;
        height: 50px;
    }

    .whats-next-icon svg {
        width: 25px;
        height: 25px;
    }

    .whats-next-text {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .whats-next-section {
        padding: 2.5rem 0;
    }

    .whats-next-content {
        padding: 0 0.75rem;
    }

    .whats-next-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .whats-next-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .whats-next-button {
        width: 100%;
        max-width: 280px;
        padding: 1.25rem;
    }

    .whats-next-icon {
        width: 45px;
        height: 45px;
    }

    .whats-next-icon svg {
        width: 22px;
        height: 22px;
    }

    .whats-next-text {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .supplemental-header { 
        min-height: 50vh; 
    }
    .supplemental-header h1 {
        font-size: 3.3rem;
    }
}

@media (max-width: 768px) {
    .supplemental-header h1 {
        font-size: 3rem;
    }
    .supplemental-header p {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .supplemental-header { 
        min-height: 40vh; 
    }
}

@media (max-width: 480px) {
    .supplemental-header { 
        min-height: 35vh; 
    }
    .supplemental-header {
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }
    .supplemental-header h1 {
        font-size: 1.4rem;
    }
    .supplemental-header p {
        font-size: 1rem;
    }
}

.petesacco-video-podcast {
    color: #dadadf;
    font-family: Thicccboi, sans-serif;
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.5em;
    padding: clamp(3rem, 6vw, 6rem) 0;
}

.petesacco-video-podcast h1 {
    color: white;
    letter-spacing: 0.02em;
    margin-top: 0;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(2rem, 5vw, 2.625rem);
    font-weight: 700;
    line-height: 1.143em;
}

.petesacco-video-podcast h2 {
    color: white;
    margin-top: 0;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    font-weight: 700;
    line-height: 1.357em;
}

.petesacco-video-podcast h3 {
    color: white;
    margin-top: 0;
    margin-bottom: clamp(1rem, 2.5vw, 1.25rem);
    font-size: clamp(1.25rem, 3vw, 1.375rem);
    font-weight: 700;
    line-height: 1.455em;
}

.petesacco-video-podcast p {
    margin-bottom: clamp(1rem, 2.5vw, 1.25rem);
    margin-top: 0;
}

.petesacco-video-podcast img {
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.petesacco-video-podcast a {
    color: white;
    text-decoration: underline;
    transition: color 0.3s;
}

.petesacco-video-podcast a:hover {
    color: #f63434;
}

.petesacco-video-podcast .w-layout-grid {
    grid-row-gap: clamp(0.75rem, 2vw, 1rem);
    grid-column-gap: clamp(0.75rem, 2vw, 1rem);
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.petesacco-video-podcast .w-container {
    max-width: min(90%, 58.75rem);
    margin-left: auto;
    margin-right: auto;
}

.petesacco-video-podcast .w-container:before,
.petesacco-video-podcast .w-container:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.petesacco-video-podcast .w-container:after {
    clear: both;
}

.petesacco-video-podcast .w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.petesacco-video-podcast .w-button {
    color: #fff;
    line-height: inherit;
    cursor: pointer;
    background-color: #3898ec;
    border: 0;
    border-radius: 0;
    padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
    text-decoration: none;
    display: inline-block;
}

.petesacco-video-podcast .container-default {
    max-width: min(95%, 72rem);
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 3vw, 1.5rem);
    padding-right: clamp(1rem, 3vw, 1.5rem);
}

.petesacco-video-podcast .section {
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 4vw, 2rem);
}

.petesacco-video-podcast .section.home-hero {
    padding-top: clamp(2rem, 4vw, 3.3125rem);
}

.petesacco-video-podcast .section.latest-videos {
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: -0.5rem;
}

.petesacco-video-podcast .button-primary {
    background-color: #f63434;
    color: white;
    text-align: center;
    letter-spacing: 0.02em;
    transform-style: preserve-3d;
    border-radius: clamp(0.75rem, 2vw, 0.875rem);
    padding: clamp(0.875rem, 2.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.125em;
    transition: transform 0.3s, background-color 0.3s;
    transform: scale3d(1, 1, 1.01);
    text-decoration: none;
}

.petesacco-video-podcast .button-primary:hover {
    color: white;
    background-color: #ce1c1c;
    transform: scale3d(0.98, 0.98, 1.01);
}

.petesacco-video-podcast .button-primary.small {
    border-radius: clamp(0.625rem, 1.5vw, 0.75rem);
    padding-left: clamp(1.25rem, 3vw, 2rem);
    padding-right: clamp(1.25rem, 3vw, 2rem);
}

.petesacco-video-podcast .title.home-hero-channel-about {
    margin-bottom: 0;
    margin-right: clamp(0.75rem, 2vw, 1.0625rem);
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    line-height: 1.357em;
}

.petesacco-video-podcast .title.video-featured {
    margin-bottom: clamp(0.25rem, 1vw, 0.25rem);
}

.petesacco-video-podcast .title.video-item {
    margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
}

.petesacco-video-podcast .title.latest-videos {
    margin-bottom: 0;
}

.petesacco-video-podcast .title.h4-size {
    color: white;
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 700;
    line-height: 1.4em;
}

.petesacco-video-podcast .title.h4-size.video-channel-name {
    margin-bottom: clamp(0.25rem, 0.5vw, 0.25rem);
}

.petesacco-video-podcast .content-top {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.petesacco-video-podcast .content-top.home-hero {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: clamp(1.25rem, 3vw, 1.5625rem);
}

.petesacco-video-podcast .content-top.home-latest-videos {
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.petesacco-video-podcast .content-top.latest-videos {
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.petesacco-video-podcast .split-content.home-hero-left {
    max-width: min(100%, 28.75rem);
    margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
    margin-right: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
}

.petesacco-video-podcast .split-content.home-hero-right {
    margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.petesacco-video-podcast .home-hero-channel-about-content-top {
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
    display: flex;
}

.petesacco-video-podcast .home-hero-channel-about-subscribers {
    background-color: #1e1f24;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 62.5rem;
    padding: clamp(0.5rem, 1.5vw, 0.5625rem) clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(0.75rem, 1.5vw, 0.8125rem);
    font-weight: 700;
    line-height: 1.154em;
    white-space: nowrap;
}

.petesacco-video-podcast .paragraph.home-hero-channel-about {
    margin-bottom: 0;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 400;
    line-height: 1.5em;
    text-align: left;
}

.petesacco-video-podcast .text-no-wrap {
    white-space: nowrap;
}

.petesacco-video-podcast .name-and-badge {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    flex-wrap: nowrap;
    flex-direction: row;
}

.petesacco-video-podcast .name-and-badge .title.home-hero-channel-about {
    margin-bottom: 0;
    margin-right: 0;
    flex-shrink: 0;
}

.petesacco-video-podcast .name-and-badge .home-hero-channel-about-subscribers {
    flex-shrink: 0;
}

.petesacco-video-podcast .image-wrapper {
    align-items: center;
    display: flex;
    overflow: hidden;
    transform: translate(0);
    cursor: pointer;
}

.petesacco-video-podcast .image-wrapper.video-featured-wrapper,
.petesacco-video-podcast .image-wrapper.video-featured-bottom-image,
.petesacco-video-podcast .image-wrapper.video-item-image {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.petesacco-video-podcast .image-wrapper.video-featured-wrapper:hover,
.petesacco-video-podcast .image-wrapper.video-featured-bottom-image:hover,
.petesacco-video-podcast .image-wrapper.video-item-image:hover {
    transform: scale(1.05);
}

.petesacco-video-podcast .image.video-item-image {
    transition: transform 0.3s ease;
}

.petesacco-video-podcast .image-wrapper:hover .image.video-item-image {
    transform: scale(1.05);
}

.petesacco-video-podcast .video-button-wrapper {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.85;
}

.petesacco-video-podcast .video-button-wrapper:hover {
    transform: scale(1.1);
    opacity: 1;
}

.petesacco-video-podcast .video-button {
    transition: background-color 0.3s ease;
}

.petesacco-video-podcast .video-button-wrapper:hover .video-button {
    background-color: #ffffff70;
}

.petesacco-video-podcast .image-wrapper.home-hero-channel-image {
    border-radius: 62.5rem;
    width: clamp(4.5rem, 8vw, 5.6875rem);
    min-width: clamp(4.5rem, 8vw, 5.6875rem);
    min-height: clamp(4.5rem, 8vw, 5.6875rem);
    max-height: clamp(4.5rem, 8vw, 5.6875rem);
    margin-right: clamp(1rem, 2.5vw, 1.5625rem);
}

.petesacco-video-podcast .image-wrapper.video-featured-wrapper {
    color: #b9babf;
    border-radius: clamp(2rem, 4vw, 3.25rem);
    justify-content: center;
    position: relative;
}

.petesacco-video-podcast .image-wrapper.video-featured-wrapper:hover {
    color: #b9babf;
}

.petesacco-video-podcast .image-wrapper.video-featured-channel-image {
    border-radius: 62.5rem;
    width: clamp(4rem, 7vw, 5.875rem);
    min-width: clamp(4rem, 7vw, 5.875rem);
    min-height: clamp(4rem, 7vw, 5.875rem);
    max-height: clamp(4rem, 7vw, 5.875rem);
    margin-right: clamp(1rem, 2vw, 1.25rem);
}

.petesacco-video-podcast .image-wrapper.video-featured-bottom-image {
    border-radius: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
    margin-bottom: clamp(1.25rem, 3vw, 1.5625rem);
    position: relative;
}

.petesacco-video-podcast .image-wrapper.video-item-image {
    border-radius: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
    margin-bottom: clamp(1rem, 2.5vw, 1.125rem);
    position: relative;
}

.petesacco-video-podcast .image-wrapper.video-channel-image {
    border-radius: 62.5rem;
    width: clamp(3.5rem, 6vw, 4.375rem);
    min-width: clamp(3.5rem, 6vw, 4.375rem);
    min-height: clamp(3.5rem, 6vw, 4.375rem);
    max-height: clamp(3.5rem, 6vw, 4.375rem);
    margin-right: clamp(0.75rem, 1.5vw, 1rem);
}

.petesacco-video-podcast .image.home-hero-channel-image,
.petesacco-video-podcast .image.video-featured-channel-image,
.petesacco-video-podcast .image.video-channel-image {
    object-fit: cover;
    width: 100%;
}

.petesacco-video-podcast .image.video-button-icon {
    max-width: 32%;
}

.petesacco-video-podcast .image.video-item-image {
    object-fit: cover;
    width: 100%;
}

.petesacco-video-podcast .image.video-item-about-icon {
    max-width: clamp(1rem, 2vw, 1.25rem);
    margin-right: clamp(0.25rem, 0.5vw, 0.375rem);
}

.petesacco-video-podcast .home-hero-videos-featured-grid {
    grid-row-gap: clamp(2rem, 4vw, 2.875rem);
    grid-template-rows: auto;
    grid-template-columns: 1fr;
}

.petesacco-video-podcast .home-hero-videos-featured-content-bottom-grid {
    grid-column-gap: clamp(1.25rem, 3vw, 1.5625rem);
    grid-row-gap: clamp(0.75rem, 2vw, 1rem);
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.petesacco-video-podcast .home-latest-videos-grid {
    grid-column-gap: clamp(1rem, 2.5vw, 1.4375rem);
    grid-row-gap: clamp(2rem, 4vw, 2.5rem);
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-columns: 1fr;
    display: grid;
}

.petesacco-video-podcast .video-featured-wrapper {
    color: #636268;
    text-decoration: none;
    display: flex;
    position: relative;
}

.petesacco-video-podcast .video-featured-wrapper:hover {
    color: #636268;
}

.petesacco-video-podcast .video-featured-filter {
    background-image: linear-gradient(#00000014, #000000d6);
    position: absolute;
    inset: 0%;
}

.petesacco-video-podcast .video-featured-text {
    color: white;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background-color: #000000a6;
    border-radius: clamp(0.625rem, 1.5vw, 0.75rem);
    padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1rem, 2.5vw, 1.375rem);
    font-weight: 500;
    line-height: 1.125em;
    position: absolute;
    top: clamp(1.5rem, 3vw, 2rem);
    right: clamp(2rem, 4vw, 2.5625rem);
}

.petesacco-video-podcast .video-featured-content {
    align-items: center;
    display: flex;
    position: absolute;
    bottom: clamp(1.5rem, 3vw, 2rem);
    left: clamp(1.5rem, 3vw, 2rem);
}

.petesacco-video-podcast .video-featured-about-content-bottom {
    color: white;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    align-items: center;
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 500;
    line-height: 1.1em;
    display: flex;
}

.petesacco-video-podcast .video-featured-about-duration-wrapper {
    flex-wrap: wrap;
    display: flex;
}

.petesacco-video-podcast .video-featured-about-divider {
    background-color: white;
    opacity: 0.5;
    width: clamp(0.875rem, 1.5vw, 1.0625rem);
    min-height: 1px;
    margin-left: clamp(0.5rem, 1vw, 0.625rem);
    margin-right: clamp(0.5rem, 1vw, 0.625rem);
}

.petesacco-video-podcast .video-button-wrapper {
    box-shadow: 0 clamp(0.375rem, 1vw, 0.5rem) clamp(1rem, 2vw, 1.5625rem) 0 #00000073;
    background-image: linear-gradient(#ffffffa3, #fff0 71%);
    border-radius: 62.5rem;
    justify-content: center;
    align-items: center;
    width: clamp(3.5rem, 6vw, 4.5625rem);
    min-width: clamp(3.5rem, 6vw, 4.5625rem);
    min-height: clamp(3.5rem, 6vw, 4.5625rem);
    max-height: clamp(3.5rem, 6vw, 4.5625rem);
    display: flex;
    position: absolute;
    overflow: hidden;
}

.petesacco-video-podcast .video-button-wrapper.video-featured {
    box-shadow: 0 clamp(0.75rem, 1.5vw, 0.875rem) clamp(2rem, 3vw, 2.75rem) 0 #00000073;
    width: clamp(6rem, 10vw, 7.9375rem);
    min-width: clamp(6rem, 10vw, 7.9375rem);
    min-height: clamp(6rem, 10vw, 7.9375rem);
    max-height: clamp(6rem, 10vw, 7.9375rem);
}

.petesacco-video-podcast .video-button-wrapper.video-featured-bottom {
    box-shadow: 0 clamp(0.625rem, 1.25vw, 0.8125rem) clamp(1.75rem, 2.5vw, 2.5rem) 0 #00000073;
    width: clamp(5.5rem, 9vw, 7.25rem);
    min-width: clamp(5.5rem, 9vw, 7.25rem);
    min-height: clamp(5.5rem, 9vw, 7.25rem);
    max-height: clamp(5.5rem, 9vw, 7.25rem);
}

.petesacco-video-podcast .video-button {
    background-color: #ffffff52;
    border: 1px solid #ffffff7d;
    border-radius: 62.5rem;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    inset: 0%;
}

.petesacco-video-podcast .video-featured-bottom-wrapper {
    color: #b9babf;
    flex-direction: column;
    min-height: 100%;
    text-decoration: none;
    display: flex;
}

.petesacco-video-podcast .video-featured-bottom-wrapper:hover {
    color: #b9babf;
}

.petesacco-video-podcast .video-item-filter {
    opacity: 0.35;
    background-color: #000;
    position: absolute;
    inset: 0%;
}

.petesacco-video-podcast .video-item-content {
    flex-direction: column;
    flex: 1;
    display: flex;
}

.petesacco-video-podcast .video-item-content-bottom {
    letter-spacing: 0.06em;
    text-transform: uppercase;
    align-items: center;
    margin-top: auto;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 500;
    line-height: 1.143em;
    display: flex;
}

.petesacco-video-podcast .video-item-about-wrapper {
    flex-wrap: wrap;
    align-items: center;
    display: flex;
}

.petesacco-video-podcast .video-item-content-bottom-divider {
    background-color: #636268;
    width: clamp(0.875rem, 1.5vw, 1.0625rem);
    min-height: 1px;
    margin-left: clamp(0.5rem, 1vw, 0.75rem);
    margin-right: clamp(0.5rem, 1vw, 0.75rem);
}

.petesacco-video-podcast .video-item-about-duration-wrapper {
    flex-wrap: wrap;
    align-items: center;
    display: flex;
}

.petesacco-video-podcast .video-item-wrapper {
    color: #b9babf;
    flex-direction: column;
    min-height: 100%;
    text-decoration: none;
    display: flex;
}

.petesacco-video-podcast .video-item-wrapper:hover {
    color: #b9babf;
}

.petesacco-video-podcast .arrow-link {
    color: white;
    align-items: center;
    font-weight: 500;
    line-height: 1.125em;
    text-decoration: none;
    display: flex;
}

.petesacco-video-podcast .arrow-link-text {
    margin-right: clamp(0.375rem, 0.75vw, 0.4375rem);
}

.petesacco-video-podcast .arrow-link-icon {
    font-family: Icons Video X Template, sans-serif;
    font-size: clamp(0.5rem, 1vw, 0.5625rem);
    font-weight: 400;
    display: inline-block;
}

.petesacco-video-podcast .split-content.video-about-left {
    color: #dadadf;
    align-items: center;
    text-decoration: none;
    display: flex;
}

.petesacco-video-podcast .split-content.video-about-left:hover {
    color: #dadadf;
}

.petesacco-video-podcast .video-date {
    color: white;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.125em;
}

.petesacco-video-podcast .video-about-wrapper {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

@media screen and (max-width: 991px) {
    .petesacco-video-podcast .section.home-hero {
        padding-top: clamp(1.5rem, 3vw, 1.875rem);
    }

    .petesacco-video-podcast .section.latest-videos {
        padding-top: clamp(2.5rem, 5vw, 3.75rem);
    }

    .petesacco-video-podcast .split-content.home-hero-left {
        margin-right: 0;
    }

    .petesacco-video-podcast .split-content.home-latest-videos-left {
        margin-bottom: clamp(0.5rem, 1vw, 0.625rem);
        margin-right: clamp(1.5rem, 3vw, 1.875rem);
    }

    .petesacco-video-podcast .split-content.home-latest-videos-right {
        margin-bottom: clamp(0.5rem, 1vw, 0.625rem);
    }

    .petesacco-video-podcast .content-top.home-hero {
        margin-bottom: clamp(1rem, 2vw, 1.25rem);
    }

    .petesacco-video-podcast .content-top.home-latest-videos,
    .petesacco-video-podcast .content-top.latest-videos {
        max-width: min(95%, 47.8125rem);
        margin-left: auto;
        margin-right: auto;
    }

    .petesacco-video-podcast .home-hero-videos-featured-grid {
        grid-row-gap: clamp(1.75rem, 3.5vw, 2.5rem);
    }

    .petesacco-video-podcast .home-hero-videos-featured-content-bottom-grid {
        grid-column-gap: clamp(1rem, 2.5vw, 1.25rem);
    }

    .petesacco-video-podcast .video-featured-text {
        padding: clamp(0.75rem, 1.5vw, 0.9375rem) clamp(1rem, 2vw, 1.125rem);
    }

    .petesacco-video-podcast .video-button-wrapper.video-featured {
        width: 13%;
        min-width: 13%;
        min-height: 24%;
        max-height: 24%;
    }

    .petesacco-video-podcast .video-button-wrapper.video-featured-bottom {
        width: 25%;
        min-width: 25%;
        min-height: 45%;
        max-height: 45%;
    }

    .petesacco-video-podcast .home-latest-videos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .petesacco-video-podcast .image-wrapper.home-hero-channel-image {
        margin-right: clamp(1rem, 2vw, 1.25rem);
    }

    .petesacco-video-podcast .image-wrapper.video-featured-wrapper {
        border-radius: clamp(1.75rem, 3vw, 2.125rem);
    }

    .petesacco-video-podcast .image-wrapper.video-featured-channel-image {
        width: clamp(3.75rem, 6.5vw, 5rem);
        min-width: clamp(3.75rem, 6.5vw, 5rem);
        min-height: clamp(3.75rem, 6.5vw, 5rem);
        max-height: clamp(3.75rem, 6.5vw, 5rem);
    }

    .petesacco-video-podcast .image-wrapper.video-featured-bottom-image,
    .petesacco-video-podcast .image-wrapper.video-item-image {
        border-radius: clamp(1.25rem, 2.5vw, 1.625rem);
    }

    .petesacco-video-podcast .image-wrapper.video-featured-bottom-image {
        margin-bottom: clamp(1rem, 2vw, 1.25rem);
    }
}

@media screen and (max-width: 767px) {
    .petesacco-video-podcast h1 {
        font-size: clamp(1.75rem, 4.5vw, 2.125rem);
    }

    .petesacco-video-podcast h2 {
        font-size: clamp(1.375rem, 3.5vw, 1.625rem);
    }

    .petesacco-video-podcast h3 {
        font-size: clamp(1.125rem, 2.75vw, 1.25rem);
    }

    .petesacco-video-podcast .section {
        padding-top: clamp(3.5rem, 7vw, 5rem);
        padding-bottom: clamp(3.5rem, 7vw, 5rem);
    }

    .petesacco-video-podcast .section.latest-videos {
        padding-top: clamp(2.5rem, 5vw, 3.75rem);
    }

    .petesacco-video-podcast .split-content.home-hero-left {
        flex-direction: column;
        max-width: min(100%, 23.75rem);
        margin-bottom: clamp(1.25rem, 2.5vw, 1.4375rem);
    }

    .petesacco-video-podcast .split-content.home-latest-videos-left {
        margin-bottom: clamp(0.5rem, 1vw, 0.625rem);
        margin-right: clamp(1.5rem, 3vw, 1.875rem);
    }

    .petesacco-video-podcast .split-content.home-latest-videos-right {
        margin-bottom: clamp(0.5rem, 1vw, 0.625rem);
    }

    .petesacco-video-podcast .content-top.home-hero {
        align-items: flex-end;
    }

    .petesacco-video-podcast .content-top.home-latest-videos,
    .petesacco-video-podcast .content-top.latest-videos {
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }

    .petesacco-video-podcast .home-hero-videos-featured-content-bottom-grid {
        grid-row-gap: clamp(1.75rem, 3.5vw, 2.5rem);
        grid-template-columns: 1fr;
    }

    .petesacco-video-podcast .video-featured-text {
        padding: clamp(0.625rem, 1.25vw, 0.8125rem) clamp(0.75rem, 1.5vw, 0.9375rem);
        font-size: clamp(0.75rem, 1.5vw, 0.875rem);
        top: clamp(0.75rem, 1.5vw, 0.9375rem);
        right: clamp(0.75rem, 1.5vw, 0.9375rem);
    }

    .petesacco-video-podcast .video-featured-content {
        position: static;
    }

    .petesacco-video-podcast .video-featured-about-content-bottom {
        font-size: clamp(1rem, 2vw, 1.125rem);
    }

    .petesacco-video-podcast .video-button-wrapper,
    .petesacco-video-podcast .video-button-wrapper.video-featured,
    .petesacco-video-podcast .video-button-wrapper.video-featured-bottom {
        width: 18%;
        min-width: 18%;
        min-height: 31%;
        max-height: 31%;
    }

    .petesacco-video-podcast .home-latest-videos-grid {
        grid-template-columns: 1fr;
    }

    .petesacco-video-podcast .image-wrapper.home-hero-channel-image {
        width: clamp(4rem, 7vw, 5.3125rem);
        min-width: clamp(4rem, 7vw, 5.3125rem);
        min-height: clamp(4rem, 7vw, 5.3125rem);
        max-height: clamp(4rem, 7vw, 5.3125rem);
        margin-bottom: clamp(1rem, 2vw, 1.25rem);
        margin-right: 0;
    }

    .petesacco-video-podcast .image-wrapper.video-featured-wrapper {
        border-radius: clamp(1.25rem, 2.5vw, 1.375rem);
        margin-bottom: clamp(1rem, 2vw, 1.25rem);
    }

    .petesacco-video-podcast .image-wrapper.video-featured-channel-image {
        width: clamp(3.25rem, 5.5vw, 4.1875rem);
        min-width: clamp(3.25rem, 5.5vw, 4.1875rem);
        min-height: clamp(3.25rem, 5.5vw, 4.1875rem);
        max-height: clamp(3.25rem, 5.5vw, 4.1875rem);
    }

    .petesacco-video-podcast .image-wrapper.video-featured-bottom-image,
    .petesacco-video-podcast .image-wrapper.video-item-image {
        border-radius: clamp(1.125rem, 2.25vw, 1.375rem);
    }

    .petesacco-video-podcast .image-wrapper.video-channel-image {
        width: clamp(3rem, 5vw, 3.75rem);
        min-width: clamp(3rem, 5vw, 3.75rem);
        min-height: clamp(3rem, 5vw, 3.75rem);
        max-height: clamp(3rem, 5vw, 3.75rem);
    }

    .petesacco-video-podcast .video-featured-wrapper {
        flex-direction: column;
    }

    .petesacco-video-podcast .title.h4-size {
        font-size: clamp(1rem, 2.25vw, 1.125rem);
    }

    .petesacco-video-podcast .title.h1-size {
        font-size: clamp(1.75rem, 4.5vw, 2.125rem);
    }

    .petesacco-video-podcast .title.h3-size {
        font-size: clamp(1.125rem, 2.75vw, 1.25rem);
    }

    .petesacco-video-podcast .title.h2-size {
        font-size: clamp(1.375rem, 3.5vw, 1.625rem);
    }
}

@media screen and (max-width: 479px) {
    .petesacco-video-podcast h1 {
        font-size: clamp(1.5rem, 4vw, 1.75rem);
    }

    .petesacco-video-podcast h2 {
        font-size: clamp(1.25rem, 3.25vw, 1.5rem);
    }

    .petesacco-video-podcast h3 {
        font-size: clamp(1rem, 2.5vw, 1.125rem);
    }

    .petesacco-video-podcast .container-default {
        padding-left: clamp(0.75rem, 2vw, 1rem);
        padding-right: clamp(0.75rem, 2vw, 1rem);
    }

    .petesacco-video-podcast .section {
        padding-top: clamp(3rem, 6vw, 4.1875rem);
        padding-bottom: clamp(3rem, 6vw, 4.1875rem);
    }

    .petesacco-video-podcast .section.latest-videos {
        padding-top: clamp(2.5rem, 5vw, 3.75rem);
    }

    .petesacco-video-podcast .split-content.home-hero-left {
        max-width: 100%;
        margin-right: 0;
    }

    .petesacco-video-podcast .split-content.home-hero-right {
        flex-direction: column;
        display: flex;
    }

    .petesacco-video-podcast .split-content.home-latest-videos-left {
        margin-bottom: clamp(0.5rem, 1vw, 0.625rem);
        margin-right: clamp(1.5rem, 3vw, 1.875rem);
    }

    .petesacco-video-podcast .split-content.home-latest-videos-right {
        margin-bottom: clamp(0.5rem, 1vw, 0.625rem);
    }

    .petesacco-video-podcast .content-top.home-hero {
        flex-flow: column;
        align-items: stretch;
    }

    .petesacco-video-podcast .content-top.home-latest-videos,
    .petesacco-video-podcast .content-top.latest-videos {
        flex-wrap: wrap;
        margin-bottom: clamp(1.25rem, 2.5vw, 1.375rem);
    }

    .petesacco-video-podcast .name-and-badge {
        gap: clamp(0.375rem, 1vw, 0.5rem);
        flex-wrap: nowrap;
    }

    .petesacco-video-podcast .home-hero-channel-about-content-top {
        margin-bottom: 0;
    }

    .petesacco-video-podcast .name-and-badge {
        gap: clamp(0.5rem, 1.5vw, 0.75rem);
        flex-wrap: nowrap;
    }

    .petesacco-video-podcast .home-hero-channel-about-subscribers {
        margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
    }

    .petesacco-video-podcast .paragraph.home-hero-channel-about {
        max-width: min(100%, 23.75rem);
    }

    .petesacco-video-podcast .video-featured-text {
        padding-left: clamp(0.625rem, 1.25vw, 0.8125rem);
        padding-right: clamp(0.625rem, 1.25vw, 0.8125rem);
        font-size: clamp(0.625rem, 1.25vw, 0.75rem);
        top: clamp(0.5rem, 1vw, 0.625rem);
    }

    .petesacco-video-podcast .video-featured-content {
        flex-direction: column;
        align-items: stretch;
    }

    .petesacco-video-podcast .video-featured-about-content-bottom {
        font-size: clamp(0.875rem, 1.75vw, 1rem);
    }

    .petesacco-video-podcast .video-featured-about-divider {
        width: clamp(0.75rem, 1.25vw, 0.875rem);
    }

    .petesacco-video-podcast .video-button-wrapper,
    .petesacco-video-podcast .video-button-wrapper.video-featured,
    .petesacco-video-podcast .video-button-wrapper.video-featured-bottom {
        width: 22%;
        min-width: 22%;
        min-height: 40%;
        max-height: 40%;
    }

    .petesacco-video-podcast .video-item-content-bottom {
        flex-wrap: wrap;
        font-size: clamp(0.625rem, 1.25vw, 0.75rem);
    }

    .petesacco-video-podcast .video-item-content-bottom-divider {
        width: clamp(0.75rem, 1.25vw, 0.875rem);
        margin-left: clamp(0.5rem, 1vw, 0.625rem);
        margin-right: clamp(0.5rem, 1vw, 0.625rem);
    }

    .petesacco-video-podcast .image-wrapper.home-hero-channel-image {
        width: clamp(3.5rem, 6vw, 4.375rem);
        min-width: clamp(3.5rem, 6vw, 4.375rem);
        min-height: clamp(3.5rem, 6vw, 4.375rem);
        max-height: clamp(3.5rem, 6vw, 4.375rem);
        margin-bottom: clamp(0.75rem, 1.5vw, 0.9375rem);
    }

    .petesacco-video-podcast .image-wrapper.video-featured-wrapper {
        border-radius: clamp(1rem, 2vw, 1.25rem);
    }

    .petesacco-video-podcast .image-wrapper.video-featured-channel-image {
        width: clamp(3rem, 5vw, 3.75rem);
        min-width: clamp(3rem, 5vw, 3.75rem);
        min-height: clamp(3rem, 5vw, 3.75rem);
        max-height: clamp(3rem, 5vw, 3.75rem);
        margin-bottom: clamp(0.75rem, 1.5vw, 0.9375rem);
        margin-right: 0;
    }

    .petesacco-video-podcast .image-wrapper.video-featured-bottom-image,
    .petesacco-video-podcast .image-wrapper.video-item-image {
        border-radius: clamp(1rem, 2vw, 1.25rem);
    }

    .petesacco-video-podcast .image-wrapper.video-item-image {
        margin-bottom: clamp(0.75rem, 1.5vw, 0.9375rem);
    }

    .petesacco-video-podcast .image-wrapper.video-channel-image {
        width: clamp(2.5rem, 4.5vw, 3.125rem);
        min-width: clamp(2.5rem, 4.5vw, 3.125rem);
        min-height: clamp(2.5rem, 4.5vw, 3.125rem);
        max-height: clamp(2.5rem, 4.5vw, 3.125rem);
        margin-right: clamp(0.5rem, 1vw, 0.625rem);
    }

    .petesacco-video-podcast .image.video-item-about-icon {
        max-width: clamp(0.75rem, 1.5vw, 0.9375rem);
    }

    .petesacco-video-podcast .title.home-hero-channel-about {
        margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
    }

    .petesacco-video-podcast .title.h4-size {
        font-size: clamp(0.875rem, 1.75vw, 1rem);
    }

    .petesacco-video-podcast .title.h4-size.video-channel-name {
        margin-bottom: clamp(0.125rem, 0.25vw, 0.125rem);
    }

    .petesacco-video-podcast .title.h1-size {
        font-size: clamp(1.5rem, 4vw, 1.75rem);
    }

    .petesacco-video-podcast .title.h3-size {
        font-size: clamp(1rem, 2.5vw, 1.125rem);
    }

    .petesacco-video-podcast .title.h2-size {
        font-size: clamp(1.25rem, 3.25vw, 1.5rem);
    }

    .petesacco-video-podcast .video-date {
        font-size: clamp(0.625rem, 1.25vw, 0.75rem);
    }
}

.petesacco-video-podcast .arrow-link {
    color: white;
    align-items: center;
    font-weight: 500;
    line-height: 1.125em;
    text-decoration: none;
    display: flex;
}

.petesacco-video-podcast .arrow-link-text {
    margin-right: clamp(0.375rem, 0.75vw, 0.4375rem);
}

.petesacco-video-podcast .arrow-link-icon {
    font-family: Icons Video X Template, sans-serif;
    font-size: clamp(0.5rem, 1vw, 0.5625rem);
    font-weight: 400;
    display: inline-block;
}

@font-face {
    font-family: 'Icons Video X Template';
    src: url('https://cdn.prod.website-files.com/613b673e4173314657551861/613bfcf6270e9b3ce897f86b_icons-video-x-template.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.section-blog-content {
    color: white;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.section-blog-content .book-title {
    font-size: 4rem;
}

.pete-faq-section .book-title {
    font-size: 4rem;
}

@media screen and (max-width: 991px) {
    .section-blog-content {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .section-blog-content .book-title {
        font-size: 2.5rem;
    }
    
    .pete-faq-section .book-title {
        font-size: 2.5rem;
    }
}

@media screen and (min-width: 992px) {
    .section-blog-content .book-title {
        margin-left: 2.5rem;
    }
}

.blog-main-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
    margin-top: 5rem;
}

.blog-post-item {
    width: 100%;
    height: 100%;
}

.blog-list-wrapper {
    width: 100%;
    height: 100%;
}

.blog-list {
    width: 100%;
    height: 100%;
}

.blog-item {
    width: 100%;
    height: 100%;
}

.blog-link-wrapper {
    border: 1px solid #3b3b3b;
    background-color: #2b2b2b;
    width: 100%;
    height: 100%;
    padding: 10px 10px 20px;
    text-decoration: none;
    display: block;
}

.blog-post-wrapper {
    flex-flow: column;
    justify-content: space-between;
    display: flex;
}

.blog-image-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 66.67%;
    position: relative;
    overflow: hidden;
}

.blog-post-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: normal;
}

.blog-post-category {
    background-color: #181818;
    color: white;
    padding: 8px 12px;
    font-size: 14px;
    position: absolute;
    inset: .5rem auto auto .5rem;
}

.blog-post-content {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.post-title {
    color: white;
    font-family: Eudoxus Sans, Arial, sans-serif;
    font-size: 2.5rem;
    line-height: 1.2;
}

.post-title.is-small {
    font-family: Eudoxus Sans, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25;
}

.post-title.is-medium {
    font-size: 1.25rem;
}

.blog-post-spacer {
    height: 4rem;
}

.blog-post-info {
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
}

.blog-post-info-item {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    display: flex;
}

.blog-post-dot {
    color: #aeaeae;
    font-size: 0.875rem;
    margin: 0 4px;
}

.text-size-small,
.blog-text-size-small,
.blog-blog-text-size-small {
    color: white;
    font-size: .875rem;
    line-height: 1.5;
    font-weight: normal;
}

.text-size-small.text-color-secondary,
.text-size-small.blog-text-color-secondary,
.blog-text-size-small.blog-text-color-secondary,
.blog-blog-text-size-small.blog-text-color-secondary {
    color: #aeaeae;
}

.text-color-secondary,
.blog-text-color-secondary {
    color: #aeaeae;
}

.blog-post-icon-wrap {
    border: 1px solid #ffffff0d;
    background-color: #ffffff0d;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    display: flex;
    position: relative;
}

.blog-post-icon {
    color: white;
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
}

.blog-post-icon-overflow {
    justify-content: center;
    align-items: center;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    position: relative;
    overflow: hidden;
}

.section-blog-content .w-embed {
    display: flex !important;
    position: relative;
    overflow: hidden;
}

.section-blog-content .blog-post-icon._01,
.section-blog-content .blog-post-icon._02 {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.25rem;
    height: 1.25rem;
}

#w-node-_6b0f8b91-8926-5bbc-b4ca-6e442682220f-019cb95f {
    grid-area: 1 / 1 / 5 / 5;
}

#w-node-fc82a3f2-bb1e-dc32-6478-b8422635a251-019cb95f {
    grid-area: 1 / 5 / 3 / 7;
}

#w-node-_90ffc042-3759-dc61-37ba-1782b8c2abbe-019cb95f {
    grid-area: 1 / 7 / 3 / 9;
}

#w-node-afe6fce8-37f3-dc8a-f6bf-9c96fe6ea680-019cb95f {
    grid-area: 3 / 5 / 5 / 7;
}

#w-node-_296a7425-a95d-e1fa-ef75-328ca0760a59-019cb95f {
    grid-area: 3 / 7 / 5 / 9;
}

img[style*="transform"] {
    -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
    -moz-transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
    -ms-transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
}

div[style*="transform"] {
    -webkit-transform: translate3d(0rem, 0rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
    -moz-transform: translate3d(0rem, 0rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
    -ms-transform: translate3d(0rem, 0rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
    transform: translate3d(0rem, 0rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
}

div[style*="transform:translate3d(-1rem, 1rem, 0)"] {
    -webkit-transform: translate3d(-1rem, 1rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
    -moz-transform: translate3d(-1rem, 1rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
    -ms-transform: translate3d(-1rem, 1rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
    transform: translate3d(-1rem, 1rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
}

@media screen and (min-width: 1280px) {
    .post-title.is-small {
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 1440px) {
    .post-title {
        font-size: 2.75rem;
    }

    .post-title.is-small {
        font-size: 1.25rem;
    }

    .post-title.is-medium {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 991px) {
    .blog-main-grid {
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
        grid-template-rows: auto auto auto auto auto auto auto auto;
    }

    #w-node-_6b0f8b91-8926-5bbc-b4ca-6e442682220f-019cb95f {
        grid-column-end: 9;
    }

    #w-node-fc82a3f2-bb1e-dc32-6478-b8422635a251-019cb95f {
        grid-area: 5 / 1 / 7 / 5;
    }

    #w-node-_90ffc042-3759-dc61-37ba-1782b8c2abbe-019cb95f {
        grid-row: 5 / 7;
        grid-column-start: 5;
    }

    #w-node-afe6fce8-37f3-dc8a-f6bf-9c96fe6ea680-019cb95f {
        grid-area: 7 / 1 / 9 / 5;
    }

    #w-node-_296a7425-a95d-e1fa-ef75-328ca0760a59-019cb95f {
        grid-row: 7 / 9;
        grid-column-start: 5;
    }
}

@media screen and (max-width: 767px) {
    .section-blog-content {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .blog-main-grid {
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
    }

    .post-title {
        font-size: 2.5rem;
    }

    .post-title.is-small {
        font-size: 1.25rem;
    }

    .blog-post-icon-wrap {
        width: 2rem;
        height: 2rem;
    }

    .blog-post-icon {
        width: 1rem;
        height: 1rem;
    }

    .blog-post-spacer {
        height: 3rem;
    }
}

@media screen and (max-width: 479px) {
    .blog-post-info-item {
        grid-column-gap: 5px;
        grid-row-gap: 5px;
        flex-flow: column;
    }

    .post-title {
        font-size: 1.625rem;
    }

    .blog-post-info {
        padding-top: 10px;
    }

    .blog-post-content {
        padding-top: 1rem;
    }

    .blog-post-category {
        padding-top: 6px;
        padding-bottom: 6px;
        font-size: 12px;
        top: .5rem;
        left: .5rem;
    }

    .blog-post-spacer {
        height: 2rem;
    }

    #w-node-_6b0f8b91-8926-5bbc-b4ca-6e442682220f-019cb95f {
        grid-row-end: 3;
    }

    #w-node-fc82a3f2-bb1e-dc32-6478-b8422635a251-019cb95f {
        grid-row: 3 / 5;
        grid-column-end: 9;
    }

    #w-node-_90ffc042-3759-dc61-37ba-1782b8c2abbe-019cb95f {
        grid-column-start: 1;
    }

    #w-node-afe6fce8-37f3-dc8a-f6bf-9c96fe6ea680-019cb95f {
        grid-column-end: 9;
    }

    #w-node-_296a7425-a95d-e1fa-ef75-328ca0760a59-019cb95f {
        grid-row: 9 / 11;
        grid-column-start: 1;
    }
}

@font-face {
    font-family: 'Mango Grotesque';
    src: url('https://cdn.prod.website-files.com/67c3a26746760da8b697c23f/67c3afd4b872a81fe6f2d7cc_MangoGrotesque-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans';
    src: url('https://cdn.prod.website-files.com/67c3a26746760da8b697c23f/67c44e83e419c80f14dc127c_InstrumentSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Eudoxus Sans;
    src: url("https://cdn.prod.website-files.com/680e6eb73a92d608019cb962/680f962f508fa2ae600e4f30_EudoxusSans-Bold-BF659b6cb1408e5.woff2") format("woff2"), url("https://cdn.prod.website-files.com/680e6eb73a92d608019cb962/680f962f27fa2d674c8b7ba7_EudoxusSans-ExtraBold-BF659b6cb1b96c9.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: Eudoxus Sans;
    src: url("https://cdn.prod.website-files.com/680e6eb73a92d608019cb962/680f962f97b540393162ea84_EudoxusSans-ExtraLight-BF659b6cb1e7092.woff2") format("woff2");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: Eudoxus Sans;
    src: url("https://cdn.prod.website-files.com/680e6eb73a92d608019cb962/680f962f60bf89c0344aab67_EudoxusSans-Regular-BF659b6cb1d4714.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: Eudoxus Sans;
    src: url("https://cdn.prod.website-files.com/680e6eb73a92d608019cb962/680f962fe7c72d72e5f5bd4c_EudoxusSans-Light-BF659b6cb2036b5.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: Eudoxus Sans;
    src: url("https://cdn.prod.website-files.com/680e6eb73a92d608019cb962/680f9630de8be82810e767fd_EudoxusSans-Medium-BF659b6cb1c14cb.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

.pts-blog h2 {
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'Mango Grotesque', Impact, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
}

.pts-blog .heading-style-h2 {
    text-transform: uppercase;
    font-family: 'Mango Grotesque', Impact, sans-serif;
    font-size: 12rem;
    font-weight: 700;
    line-height: .9;
    padding: 4rem 0;
}

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

.pts-blog .header-description {
    text-align: center;
    color: var(--text);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem 3rem 2rem;
}

.pts-blog .featured {
    color: var(--gray-100);
}

@media screen and (max-width: 991px) {
    .pts-blog .heading-style-h2 {
        font-size: 8rem;
    }
}

@media screen and (max-width: 767px) {
    .pts-blog .heading-style-h2 {
        font-size: 6rem;
    }
}

@media screen and (max-width: 479px) {
    .pts-blog .heading-style-h2 {
        font-size: 4.25rem;
    }
}

.section-blog-all-posts {
    display: block;
    width: 100%;
    background-color: inherit;
    color: var(--text);
}

.section-blog-all-posts.pts-all-blogs {
    display: block;
    width: 100%;
    background-color: inherit;
    color: var(--text);
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.pts-all-blogs .container-large {
    width: 100%;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
}

.pts-all-blogs .padding-global {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.pts-all-blogs .padding-section-large {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.pts-all-blogs .text-size-small {
    color: #ffffff;
    font-size: .875rem;
    line-height: 1.5;
}

.pts-all-blogs .text-size-small.text-color-secondary {
    color: #aeaeae;
}

.pts-all-blogs .text-size-regular.text-color-secondary {
    color: #aeaeae;
}

.pts-all-blogs .blog-post-info-block {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    display: flex;
}

.pts-all-blogs .blog-post-info-item {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    display: flex;
}

.pts-all-blogs .blog-post-title {
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Eudoxus Sans', Arial, sans-serif;
    font-size: 5rem;
    line-height: 1.1;
}

.pts-all-blogs .blog-post-content-grid {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    place-items: start;
    width: 100%;
}

.pts-all-blogs .post-title {
    color: #ffffff;
    font-family: 'Eudoxus Sans', Arial, sans-serif;
    font-size: 2.5rem;
    line-height: 1.2;
}

.pts-all-blogs .post-title.is-small {
    font-family: 'Eudoxus Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25;
}

.pts-all-blogs .post-title.is-medium {
    font-size: 1.25rem;
}

.pts-all-blogs .blog-post-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.pts-all-blogs .blog-post-icon-wrap {
    border: 1px solid #ffffff0d;
    background-color: #ffffff0d;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 10px;
    display: flex;
}

.pts-all-blogs .blog-post-info {
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
}

.pts-all-blogs .blog-post-icon {
    color: #ffffff;
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
}

.pts-all-blogs .blog-post-content {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.pts-all-blogs .blog-link-wrapper {
    border: 1px solid #3b3b3b;
    background-color: #1a1a1a;
    width: 100%;
    height: 100%;
    padding: 10px 10px 20px;
    text-decoration: none;
    display: block;
}

.pts-all-blogs .blog-post-icon-overflow {
    justify-content: center;
    align-items: center;
    width: 1rem;
    height: 1rem;
    display: flex;
    position: relative;
    overflow: hidden;
}

.pts-all-blogs .blog-post-category {
    background-color: #181818;
    color: #ffffff;
    padding: 8px 12px;
    font-size: 14px;
    position: absolute;
    inset: .5rem auto auto .5rem;
}

.pts-all-blogs .blog-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pts-all-blogs .blog-post-wrapper {
    flex-flow: column;
    justify-content: space-between;
    display: flex;
}

.pts-all-blogs .all-posts-component-grid {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
}

.pts-all-blogs .blog-list-wrapper,
.pts-all-blogs .blog-item,
.pts-all-blogs .blog-list {
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 1280px) {
    .pts-all-blogs .blog-post-content-grid {
        grid-column-gap: 8rem;
        grid-row-gap: 8rem;
    }

    .pts-all-blogs .post-title.is-small {
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 1440px) {
    .pts-all-blogs .blog-post-title {
        font-size: 6rem;
    }

    .pts-all-blogs .blog-post-content-grid {
        grid-column-gap: 10rem;
        grid-row-gap: 10rem;
    }

    .pts-all-blogs .post-title {
        font-size: 2.75rem;
    }

    .pts-all-blogs .post-title.is-small {
        font-size: 1.25rem;
    }

    .pts-all-blogs .post-title.is-medium {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 991px) {
    .pts-all-blogs .blog-post-title {
        font-size: 4rem;
    }

    .pts-all-blogs .blog-post-content-grid {
        grid-template-columns: auto;
    }

    .pts-all-blogs .post-title {
        font-size: 2.5rem;
    }

    .pts-all-blogs .post-title.is-small {
        font-size: 1.125rem;
    }

    .pts-all-blogs .post-title.is-medium {
        font-size: 1.5rem;
    }

    .pts-all-blogs .all-posts-component-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 767px) {
    .pts-all-blogs .padding-global {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .pts-all-blogs .padding-section-large {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .pts-all-blogs .blog-post-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .pts-all-blogs .blog-post-content-grid {
        grid-template-columns: auto;
    }

    .pts-all-blogs .post-title {
        font-size: 2.5rem;
    }

    .pts-all-blogs .post-title.is-small {
        font-size: 1.25rem;
    }

    .pts-all-blogs .blog-post-icon-wrap {
        width: 2rem;
        height: 2rem;
    }

    .pts-all-blogs .blog-post-icon {
        width: 1rem;
        height: 1rem;
    }

    .pts-all-blogs .all-posts-component-grid {
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
    }
}

@media screen and (max-width: 479px) {
    .pts-all-blogs .padding-section-large {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .pts-all-blogs .blog-post-info-block {
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
        flex-flow: wrap;
    }

    .pts-all-blogs .blog-post-info-item {
        grid-column-gap: 5px;
        grid-row-gap: 5px;
        flex-flow: column;
    }

    .pts-all-blogs .blog-post-title {
        font-size: 2rem;
    }

    .pts-all-blogs .post-title {
        font-size: 1.625rem;
    }

    .pts-all-blogs .blog-post-info {
        padding-top: 10px;
    }

    .pts-all-blogs .blog-post-content {
        padding-top: 1rem;
    }

    .pts-all-blogs .blog-post-category {
        padding-top: 6px;
        padding-bottom: 6px;
        font-size: 12px;
        top: .5rem;
        left: .5rem;
    }

    .pts-all-blogs .all-posts-component-grid {
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
        grid-template-columns: 1fr;
    }
}
