.ibx-about {
    --ibx-black: #0b0b0b;
    --ibx-cream: #f3f0eb;
    --ibx-white: #ffffff;
    --ibx-line: rgba(11, 11, 11, 0.18);
    --ibx-light-line: rgba(255, 255, 255, 0.25);
    background: var(--ibx-cream);
    color: var(--ibx-black);
    overflow: hidden;
    font-family: "Manrope", sans-serif;
}

.ibx-about *,
.ibx-about *::before,
.ibx-about *::after {
    box-sizing: border-box;
}

.ibx-about a {
    color: inherit;
    text-decoration: none;
}

.ibx-wrap {
    width: min(100% - 80px, 1380px);
    margin: 0 auto;
}

.ibx-kicker {
    margin: 0;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.ibx-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}

.ibx-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ibx-hero {
    position: relative;
    min-height: 760px;
    height: 92vh;
    background: #111;
    color: #fff;
    overflow: hidden;
}

.ibx-hero-media,
.ibx-hero-overlay {
    position: absolute;
    inset: 0;
}

.ibx-hero-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 70% center;
    transform: scale(1.02);
    animation: ibxHeroZoom 12s ease-out forwards;
}

@keyframes ibxHeroZoom {
    from {
        transform: scale(1.07);
    }

    to {
        transform: scale(1.02);
    }
}

.ibx-hero-overlay {
    background:
        linear-gradient(90deg, rgba(0,0,0,.66) 0%, rgba(0,0,0,.38) 45%, rgba(0,0,0,.12) 100%),
        linear-gradient(0deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,0) 50%);
}

.ibx-hero-content {
    position: relative;
    z-index: 2;
    min-height: 760px;
    height: 92vh;
    padding-top: 95px;
    padding-bottom: 62px;
    display: flex;
    flex-direction: column;
}

.ibx-hero .ibx-kicker {
    opacity: .85;
}

.ibx-hero-title {
    margin: 58px 0 0;
    max-width: 1050px;
    font-size: clamp(72px, 8.5vw, 132px);
    line-height: .87;
    letter-spacing: -.065em;
    font-weight: 500;
}

.ibx-hero-title span {
    display: block;
}

.ibx-hero-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
}

.ibx-hero-thoughts {
    position: relative;
    width: min(700px, 80%);
    min-height: 48px;
}

.ibx-hero-thoughts span {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 100%;
    opacity: 0;
    transform: translateY(12px);
    font-size: clamp(19px, 1.8vw, 27px);
    line-height: 1.35;
    font-weight: 400;
    transition: opacity .55s ease, transform .55s ease;
}

.ibx-hero-thoughts span.is-active {
    opacity: 1;
    transform: translateY(0);
}

.ibx-scroll-mark {
    width: 1px;
    height: 78px;
    background: rgba(255,255,255,.28);
    overflow: hidden;
}

.ibx-scroll-mark span {
    display: block;
    width: 1px;
    height: 32px;
    background: #fff;
    animation: ibxScroll 1.8s ease-in-out infinite;
}

@keyframes ibxScroll {
    0% {
        transform: translateY(-35px);
    }

    100% {
        transform: translateY(82px);
    }
}

.ibx-choose {
    padding: 145px 0 150px;
}

.ibx-section-head {
    max-width: 970px;
}

.ibx-section-head h2 {
    margin: 22px 0 0;
    font-size: clamp(58px, 7vw, 105px);
    line-height: .94;
    letter-spacing: -.055em;
    font-weight: 500;
}

.ibx-accordion {
    margin-top: 105px;
    border-top: 1px solid var(--ibx-line);
}

.ibx-accordion-item {
    display: block;
    border-bottom: 1px solid var(--ibx-line);
}

.ibx-accordion-item summary {
    list-style: none;
}

.ibx-accordion-item summary::-webkit-details-marker {
    display: none;
}

.ibx-accordion-button {
    width: 100%;
    min-height: 112px;
    padding: 0;
    display: grid;
    grid-template-columns: 80px 1fr 48px;
    align-items: center;
    gap: 20px;
    color: var(--ibx-black);
    cursor: pointer;
    user-select: none;
}

.ibx-accordion-number {
    font-size: 11px;
    letter-spacing: .12em;
    opacity: .48;
}

.ibx-accordion-name {
    font-size: clamp(27px, 3vw, 46px);
    line-height: 1;
    letter-spacing: -.035em;
    font-weight: 500;
}

.ibx-plus {
    position: relative;
    width: 34px;
    height: 34px;
    justify-self: end;
}

.ibx-plus::before,
.ibx-plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: opacity .25s ease, transform .35s ease;
}

.ibx-plus::before {
    width: 22px;
    height: 1px;
}

.ibx-plus::after {
    width: 1px;
    height: 22px;
}

.ibx-accordion-item[open] .ibx-plus::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.ibx-accordion-panel {
    overflow: hidden;
}

.ibx-accordion-panel p {
    max-width: 720px;
    margin: 0 0 42px 100px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(11,11,11,.67);
}

.ibx-size {
    padding: 140px 0 135px;
    background: var(--ibx-black);
    color: #fff;
}

.ibx-size-title {
    max-width: 1120px;
    margin: 52px 0 0;
    font-size: clamp(70px, 9vw, 136px);
    line-height: .9;
    letter-spacing: -.065em;
    font-weight: 500;
}

.ibx-size-intro {
    max-width: 610px;
    margin: 62px 0 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,.7);
}

.ibx-cups {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid var(--ibx-light-line);
    border-bottom: 1px solid var(--ibx-light-line);
}

.ibx-cups a {
    min-height: 145px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid var(--ibx-light-line);
    font-size: clamp(45px, 5vw, 76px);
    line-height: 1;
    font-weight: 400;
    transition: background .35s ease, color .35s ease;
}

.ibx-cups a:last-child {
    border-right: 0;
}

.ibx-cups a:hover {
    background: #fff;
    color: #000;
}

.ibx-band {
    margin-top: 58px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
}

.ibx-band > span {
    font-size: 12px;
    letter-spacing: .14em;
}

.ibx-band-line {
    height: 1px;
    background: rgba(255,255,255,.24);
    overflow: hidden;
}

.ibx-band-line i {
    display: block;
    width: 35%;
    height: 100%;
    background: #fff;
    animation: ibxBand 4s ease-in-out infinite alternate;
}

@keyframes ibxBand {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(185%);
    }
}

.ibx-size-statement {
    max-width: 830px;
    margin: 100px 0 0;
    font-size: clamp(32px, 4.3vw, 66px);
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 400;
}

.ibx-story-photo {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    color: #fff;
}

.ibx-story-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ibx-story-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.12) 70%),
        linear-gradient(0deg, rgba(0,0,0,.36), rgba(0,0,0,0) 60%);
}

.ibx-story-photo-title {
    position: absolute;
    z-index: 2;
    left: max(40px, calc((100vw - 1380px) / 2));
    bottom: 78px;
}

.ibx-story-photo-title > span {
    display: block;
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: .17em;
    font-weight: 600;
}

.ibx-story-photo-title strong {
    display: block;
    font-size: clamp(72px, 8vw, 124px);
    line-height: .86;
    letter-spacing: -.065em;
    font-weight: 500;
}

.ibx-story-copy {
    padding: 120px 0 135px;
    background: #fff;
}

.ibx-story-lead {
    max-width: 1000px;
    margin: 0;
    font-size: clamp(38px, 4.8vw, 70px);
    line-height: 1.08;
    letter-spacing: -.045em;
    font-weight: 400;
}

.ibx-story-columns {
    margin-top: 95px;
    padding-top: 38px;
    border-top: 1px solid var(--ibx-line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}

.ibx-story-columns p {
    max-width: 520px;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(11,11,11,.67);
}

.ibx-marquee {
    padding: 27px 0;
    background: var(--ibx-black);
    color: #fff;
    overflow: hidden;
}

.ibx-marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 32px;
    animation: ibxMarquee 27s linear infinite;
}

.ibx-marquee-track span {
    white-space: nowrap;
    font-size: 15px;
    letter-spacing: .14em;
    font-weight: 600;
}

.ibx-marquee-track i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
}

@keyframes ibxMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ibx-online {
    padding: 150px 0;
}

.ibx-online-intro {
    max-width: 610px;
    margin: 70px 0 0 auto;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(11,11,11,.67);
}

.ibx-path {
    margin-top: 100px;
    border-top: 1px solid var(--ibx-line);
}

.ibx-path-item {
    min-height: 108px;
    border-bottom: 1px solid var(--ibx-line);
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    gap: 20px;
}

.ibx-path-item > span {
    font-size: 11px;
    letter-spacing: .12em;
    opacity: .45;
}

.ibx-path-item strong {
    font-size: clamp(26px, 3vw, 43px);
    line-height: 1.1;
    letter-spacing: -.035em;
    font-weight: 500;
}

.ibx-online-end {
    max-width: 650px;
    margin: 70px 0 0 auto;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(11,11,11,.62);
}

.ibx-shop-link {
    width: min(650px, 100%);
    margin: 55px 0 0 auto;
    padding: 24px 0;
    border-top: 1px solid var(--ibx-line);
    border-bottom: 1px solid var(--ibx-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    font-size: 11px;
    letter-spacing: .15em;
    font-weight: 600;
}

.ibx-help {
    padding: 145px 0;
    background: #fff;
}

.ibx-help-title {
    max-width: 1000px;
    margin: 35px 0 95px;
    font-size: clamp(65px, 8vw, 118px);
    line-height: .92;
    letter-spacing: -.06em;
    font-weight: 500;
}

.ibx-help-options {
    border-top: 1px solid var(--ibx-line);
}

.ibx-help-option {
    position: relative;
    min-height: 175px;
    padding: 34px 0;
    border-bottom: 1px solid var(--ibx-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    transition: padding .35s ease;
}

.ibx-help-option > div {
    min-width: 0;
}

.ibx-help-option > div > span {
    display: block;
    margin-bottom: 14px;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: .14em;
    font-weight: 600;
}

.ibx-help-option strong {
    display: block;
    font-size: clamp(29px, 3.5vw, 50px);
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 500;
}

.ibx-help-option p {
    max-width: 520px;
    margin: 15px 0 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(11,11,11,.58);
}

.ibx-help-arrow {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
}

.ibx-help-arrow svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.2;
    transition: transform .35s ease;
}

.ibx-help-option:hover {
    padding-left: 22px;
    padding-right: 22px;
}

.ibx-help-option:hover .ibx-help-arrow svg,
.ibx-shop-link:hover .ibx-help-arrow svg {
    transform: rotate(-35deg);
}

.ibx-definition {
    padding: 155px 0 165px;
    background: var(--ibx-cream);
}

.ibx-definition-title {
    margin: 58px 0 0;
    font-size: clamp(58px, 7vw, 105px);
    line-height: .92;
    letter-spacing: -.06em;
    font-weight: 500;
}

.ibx-definition-title span {
    display: block;
}

.ibx-definition-copy {
    max-width: 590px;
    margin: 100px 0 0 auto;
    padding-top: 35px;
    border-top: 1px solid var(--ibx-line);
}

.ibx-definition-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(11,11,11,.66);
}

.ibx-definition-copy p + p {
    margin-top: 20px;
}

.ibx-listen-final {
    margin-top: 140px;
    padding-top: 36px;
    border-top: 1px solid var(--ibx-line);
}

.ibx-listen-final span,
.ibx-listen-final strong {
    display: block;
}

.ibx-listen-final span {
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.ibx-listen-final strong {
    max-width: 950px;
    font-size: clamp(50px, 6vw, 90px);
    line-height: .96;
    letter-spacing: -.055em;
    font-weight: 500;
}

.ibx-final {
    position: relative;
    min-height: 850px;
    background: #111;
    color: #fff;
    overflow: hidden;
}

.ibx-final-media,
.ibx-final-overlay {
    position: absolute;
    inset: 0;
}

.ibx-final-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
}

.ibx-final-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.47) 55%, rgba(0,0,0,.2) 100%);
}

.ibx-final-content {
    position: relative;
    z-index: 2;
    min-height: 850px;
    padding-top: 120px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ibx-final-title {
    margin: 45px 0 0;
    max-width: 900px;
    font-size: clamp(72px, 9vw, 135px);
    line-height: .87;
    letter-spacing: -.065em;
    font-weight: 500;
}

.ibx-final-copy {
    max-width: 550px;
    margin: 62px 0 0;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,.78);
}

.ibx-instagram {
    width: min(650px, 100%);
    margin-top: 65px;
    padding: 25px 0;
    border-top: 1px solid var(--ibx-light-line);
    border-bottom: 1px solid var(--ibx-light-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    font-size: 11px;
    letter-spacing: .15em;
    font-weight: 600;
}

.ibx-instagram-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
}

.ibx-instagram-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.3;
    transition: transform .4s ease;
}

.ibx-instagram:hover .ibx-instagram-icon svg {
    transform: rotate(12deg) scale(1.06);
}

@media (max-width: 768px) {

    .ibx-wrap {
        width: calc(100% - 40px);
    }

    .ibx-kicker {
        font-size: 9px;
        line-height: 1.5;
        letter-spacing: .16em;
    }

    .ibx-hero {
        min-height: 720px;
        height: auto;
    }

    .ibx-hero-content {
        min-height: 720px;
        height: auto;
        padding-top: 62px;
        padding-bottom: 45px;
    }

    .ibx-hero-media img {
        object-position: 78% center;
    }

    .ibx-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0,0,0,.28) 0%,
            rgba(0,0,0,.18) 28%,
            rgba(0,0,0,.62) 100%
        );
    }

    .ibx-hero-title {
        margin-top: 48px;
        max-width: 100%;
        font-size: clamp(49px, 14.5vw, 63px);
        line-height: .98;
        letter-spacing: -.055em;
    }

    .ibx-hero-title span {
        margin-bottom: 2px;
    }

    .ibx-hero-bottom {
        margin-top: auto;
        padding-top: 85px;
        align-items: flex-end;
        gap: 20px;
    }

    .ibx-hero-thoughts {
        width: calc(100% - 30px);
        min-height: 62px;
    }

    .ibx-hero-thoughts span {
        bottom: 0;
        font-size: 17px;
        line-height: 1.45;
    }

    .ibx-scroll-mark {
        height: 58px;
    }

    .ibx-choose {
        padding: 90px 0 100px;
    }

    .ibx-section-head h2 {
        margin-top: 18px;
        max-width: 340px;
        font-size: 48px;
        line-height: 1.02;
        letter-spacing: -.05em;
    }

    .ibx-accordion {
        margin-top: 68px;
    }

    .ibx-accordion-button {
        min-height: 82px;
        grid-template-columns: 38px 1fr 30px;
        gap: 10px;
    }

    .ibx-accordion-number {
        font-size: 9px;
    }

    .ibx-accordion-name {
        font-size: 25px;
        line-height: 1.1;
    }

    .ibx-plus {
        width: 28px;
        height: 28px;
    }

    .ibx-plus::before {
        width: 18px;
    }

    .ibx-plus::after {
        height: 18px;
    }

    .ibx-accordion-panel p {
        margin: 0 0 30px 48px;
        max-width: calc(100% - 48px);
        font-size: 14px;
        line-height: 1.7;
    }

    .ibx-size {
        padding: 92px 0 95px;
    }

    .ibx-size-title {
        margin-top: 35px;
        max-width: 100%;
        font-size: 50px;
        line-height: 1.02;
        letter-spacing: -.05em;
    }

    .ibx-size-intro {
        max-width: 100%;
        margin: 48px 0 0;
        font-size: 15px;
        line-height: 1.7;
    }

    .ibx-cups {
        margin-top: 62px;
    }

    .ibx-cups a {
        min-height: 76px;
        font-size: 33px;
    }

    .ibx-band {
        margin-top: 38px;
        gap: 14px;
    }

    .ibx-band > span {
        font-size: 9px;
    }

    .ibx-size-statement {
        margin-top: 68px;
        max-width: 330px;
        font-size: 31px;
        line-height: 1.16;
        letter-spacing: -.035em;
    }

    .ibx-story-photo {
        min-height: 610px;
    }

    .ibx-story-photo img {
        object-position: center;
    }

    .ibx-story-photo-title {
        left: 20px;
        right: 20px;
        bottom: 45px;
    }

    .ibx-story-photo-title > span {
        margin-bottom: 12px;
        font-size: 9px;
    }

    .ibx-story-photo-title strong {
        font-size: 53px;
        line-height: .96;
        letter-spacing: -.055em;
    }

    .ibx-story-copy {
        padding: 82px 0 92px;
    }

    .ibx-story-lead {
        max-width: 100%;
        font-size: 31px;
        line-height: 1.17;
        letter-spacing: -.035em;
    }

    .ibx-story-columns {
        margin-top: 58px;
        padding-top: 30px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ibx-story-columns p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.75;
    }

    .ibx-marquee {
        padding: 21px 0;
    }

    .ibx-marquee-track {
        gap: 24px;
    }

    .ibx-marquee-track span {
        font-size: 11px;
    }

    .ibx-online {
        padding: 95px 0 100px;
    }

    .ibx-online .ibx-section-head h2 {
        max-width: 320px;
    }

    .ibx-online-intro {
        max-width: 100%;
        margin: 45px 0 0;
        font-size: 15px;
        line-height: 1.7;
    }

    .ibx-path {
        margin-top: 60px;
    }

    .ibx-path-item {
        min-height: 83px;
        grid-template-columns: 42px 1fr;
        gap: 10px;
    }

    .ibx-path-item > span {
        font-size: 9px;
    }

    .ibx-path-item strong {
        font-size: 24px;
        line-height: 1.15;
    }

    .ibx-online-end {
        max-width: 100%;
        margin: 48px 0 0;
        font-size: 14px;
        line-height: 1.7;
    }

    .ibx-shop-link {
        width: 100%;
        margin-top: 38px;
        padding: 20px 0;
        font-size: 9px;
        line-height: 1.4;
    }

    .ibx-help {
        padding: 95px 0 105px;
    }

    .ibx-help-title {
        max-width: 340px;
        margin: 30px 0 65px;
        font-size: 48px;
        line-height: 1.02;
        letter-spacing: -.05em;
    }

    .ibx-help-option {
        min-height: 145px;
        padding: 28px 0;
        gap: 18px;
    }

    .ibx-help-option > div > span {
        margin-bottom: 10px;
        font-size: 8px;
        line-height: 1.5;
        letter-spacing: .14em;
    }

    .ibx-help-option strong {
        font-size: 26px;
        line-height: 1.15;
        letter-spacing: -.035em;
    }

    .ibx-help-option p {
        max-width: 250px;
        margin-top: 10px;
        font-size: 12px;
        line-height: 1.55;
    }

    .ibx-help-arrow {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
    }

    .ibx-help-option:hover {
        padding-left: 0;
        padding-right: 0;
    }

    .ibx-definition {
        padding: 100px 0 110px;
    }

    .ibx-definition-title {
        margin-top: 38px;
        font-size: 47px;
        line-height: 1.04;
        letter-spacing: -.05em;
    }

    .ibx-definition-title span {
        margin-bottom: 2px;
    }

    .ibx-definition-copy {
        max-width: 100%;
        margin: 68px 0 0;
        padding-top: 28px;
    }

    .ibx-definition-copy p {
        font-size: 14px;
        line-height: 1.75;
    }

    .ibx-listen-final {
        margin-top: 80px;
        padding-top: 28px;
    }

    .ibx-listen-final span {
        margin-bottom: 12px;
        font-size: 9px;
        line-height: 1.5;
    }

    .ibx-listen-final strong {
        max-width: 330px;
        font-size: 39px;
        line-height: 1.08;
        letter-spacing: -.04em;
    }

    .ibx-final {
        min-height: 760px;
    }

    .ibx-final-media img {
        object-position: 78% center;
    }

    .ibx-final-overlay {
        background: linear-gradient(
            180deg,
            rgba(0,0,0,.35) 0%,
            rgba(0,0,0,.47) 38%,
            rgba(0,0,0,.8) 100%
        );
    }

    .ibx-final-content {
        min-height: 760px;
        padding-top: 90px;
        padding-bottom: 72px;
        justify-content: flex-end;
    }

    .ibx-final-title {
        margin-top: 32px;
        max-width: 340px;
        font-size: 53px;
        line-height: 1;
        letter-spacing: -.055em;
    }

    .ibx-final-copy {
        max-width: 330px;
        margin-top: 38px;
        font-size: 15px;
        line-height: 1.65;
    }

    .ibx-instagram {
        width: 100%;
        margin-top: 43px;
        padding: 21px 0;
        gap: 15px;
        font-size: 9px;
        line-height: 1.45;
        letter-spacing: .12em;
    }

    .ibx-instagram-icon {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }
}

@media (max-width: 390px) {

    .ibx-wrap {
        width: calc(100% - 32px);
    }

    .ibx-hero-title {
        font-size: 45px;
    }

    .ibx-section-head h2,
    .ibx-help-title {
        font-size: 43px;
    }

    .ibx-size-title {
        font-size: 45px;
    }

    .ibx-story-photo-title strong {
        font-size: 48px;
    }

    .ibx-definition-title {
        font-size: 42px;
    }

    .ibx-final-title {
        font-size: 49px;
    }

    .ibx-cups a {
        min-height: 68px;
        font-size: 29px;
    }

    .ibx-hero-media img,
    .ibx-final-media img {
        object-position: 80% center;
    }
}
@media (max-width: 768px) {
    .ibx-hero-media img,
    .ibx-final-media img {
        object-position: 0% center !important;
    }
}
@media (prefers-reduced-motion: reduce) {

    .ibx-about *,
    .ibx-about *::before,
    .ibx-about *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }

    .ibx-reveal {
        opacity: 1;
        transform: none;
    }
}