@charset "UTF-8";

@keyframes huerotate-animation {
    0% {
        --c-0: hsla(210, 76%, 94%, 1);
        --x-0: 28%;
        --y-0: 99%;
        --s-start-0: 9.99110223035824%;
        --s-end-0: 48.81411431606992%;
        --c-1: hsla(210, 76%, 94%, 1);
        --x-1: 100%;
        --y-1: 100%;
        --s-start-1: 9.99110223035824%;
        --s-end-1: 50.969138883283364%;
        --c-2: hsla(227, 38%, 76%, 1);
        --x-2: 0%;
        --y-2: 43%;
        --s-start-2: 21.043371597046047%;
        --s-end-2: 96.20433023788246%;
        --c-3: hsla(202.38805970149252, 77%, 82%, 1);
        --x-3: 100%;
        --y-3: 24%;
        --s-start-3: 21.043371597046047%;
        --s-end-3: 96.20433023788246%;
        filter: hue-rotate(0deg)
    }

    to {
        --c-0: hsla(210, 76%, 94%, 1);
        --x-0: 28%;
        --y-0: 99%;
        --s-start-0: 4;
        --s-end-0: 80;
        --c-1: hsla(226.9565217391304, 37%, 76%, 1);
        --x-1: 100%;
        --y-1: 100%;
        --s-start-1: 4;
        --s-end-1: 80;
        --c-2: hsla(202.38805970149252, 77%, 82%, 1);
        --x-2: 49%;
        --y-2: 13%;
        --s-start-2: 4;
        --s-end-2: 80;
        --c-3: hsla(226.9565217391304, 37%, 76%, 1);
        --x-3: 100%;
        --y-3: 24%;
        --s-start-3: 4;
        --s-end-3: 80;
        filter: hue-rotate(-70deg)
    }
}

@property --c-0 {
    syntax: "<color>";
    inherits: false;
    initial-value: hsl(210, 76%, 94%);
}

@property --x-0 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 28%;
}

@property --y-0 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 99%;
}

@property --s-start-0 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 9.9911022304%;
}

@property --s-end-0 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 48.8141143161%;
}

@property --c-1 {
    syntax: "<color>";
    inherits: false;
    initial-value: hsl(210, 76%, 94%);
}

@property --x-1 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 100%;
}

@property --y-1 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 100%;
}

@property --s-start-1 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 9.9911022304%;
}

@property --s-end-1 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 50.9691388833%;
}

@property --c-2 {
    syntax: "<color>";
    inherits: false;
    initial-value: hsl(227, 38%, 76%);
}

@property --x-2 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 0%;
}

@property --y-2 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 43%;
}

@property --s-start-2 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 21.043371597%;
}

@property --s-end-2 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 96.2043302379%;
}

@property --c-3 {
    syntax: "<color>";
    inherits: false;
    initial-value: hsl(202.3880597015, 77%, 82%);
}

@property --x-3 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 100%;
}

@property --y-3 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 24%;
}

@property --s-start-3 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 21.043371597%;
}

@property --s-end-3 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 96.2043302379%;
}

@property --btn-gradient-1 {
    syntax: "<color>";
    inherits: false;
    initial-value: #fff;
}

@property --btn-gradient-2 {
    syntax: "<color>";
    inherits: false;
    initial-value: #fff;
}

.btn-entry {
    --btn-gradient-1: var(--color-white);
    --btn-gradient-2: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 26px;
    border-radius: 54px;
    background: linear-gradient(90deg, var(--btn-gradient-1) 0%, var(--btn-gradient-2) 100%);
    color: var(--color-black);
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    border: 2px solid var(--btn-border-color);
    text-decoration: none;
    transition: --btn-gradient-1 .3s, --btn-gradient-2 .3s;
    position: relative;
    overflow: hidden;
    pointer-events: auto
}

.btn-entry:hover {
    --btn-gradient-1: var(--btn-color-accent);
    --btn-gradient-2: var(--btn-color-accent-secondary);
    transition: --btn-gradient-1 .3s, --btn-gradient-2 .3s
}

.btn-entry:after {
    position: absolute;
    right: 27px;
    font-size: calc(var(--font-size-xl) * 1.7);
    font-weight: 400;
    font-family: var(--font-family-icon);
    content: "→";
    transition: color .3s, font-weight .3s
}

.btn-entry.back:after {
    content: none
}

.btn-entry:disabled {
    opacity: .5;
    pointer-events: none;
    cursor: not-allowed
}

@media (min-width: 1200px) {
    .btn-entry {
        font-size: calc(var(--font-size-base) * 2);
        border-width: 5px;
        padding: 26px
    }

    .btn-entry:after {
        right: 36px;
        font-size: calc(var(--font-size-xl) * 2.2)
    }
}

.btn-more {
    --btn-gradient-1: var(--color-black);
    --btn-gradient-2: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 26px;
    border-radius: 54px;
    background: linear-gradient(90deg, var(--btn-gradient-1) 0%, var(--btn-gradient-2) 100%);
    color: #fff;
    font-weight: 700;
    border: 2px solid var(--btn-border-color);
    text-decoration: none;
    transition: --btn-gradient-1 .3s, --btn-gradient-2 .3s, color .3s, font-weight .3s;
    position: relative
}

.btn-more:hover {
    --btn-gradient-1: var(--btn-color-accent);
    --btn-gradient-2: var(--btn-color-accent-secondary);
    background: linear-gradient(90deg, var(--btn-color-accent) 0%, var(--btn-color-accent-secondary) 100%);
    color: #000
}

.btn-more:after {
    position: absolute;
    right: 27px;
    font-size: 30px;
    font-weight: 400;
    font-family: var(--font-family-icon);
    content: "→";
    transition: --btn-gradient-1 .3s, --btn-gradient-2 .3s, color .3s, font-weight .3s
}

.btn-more:hover:after {
    color: #000
}

.btn-ancher {
    --btn-gradient-1: var(--color-white);
    --btn-gradient-2: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 7px;
    border-radius: 54px;
    background: linear-gradient(90deg, var(--btn-gradient-1) 0%, var(--btn-gradient-2) 100%);
    color: var(--color-black);
    font-size: calc(var(--font-size-base) * 1.2);
    font-weight: 700;
    border: 2px solid var(--color-background-work-header);
    text-decoration: none;
    transition: --btn-gradient-1 .3s, --btn-gradient-2 .3s, color .3s, font-weight .3s;
    position: relative
}

.btn-ancher:hover {
    --btn-gradient-1: var(--btn-color-accent);
    --btn-gradient-2: var(--btn-color-accent-secondary);
    background: linear-gradient(90deg, var(--btn-color-accent) 0%, var(--btn-color-accent-secondary) 100%);
    color: var(--color-black)
}

.btn-ancher:after {
    position: absolute;
    right: 16px;
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 400;
    font-family: var(--font-family-icon);
    content: "→";
    transition: --btn-gradient-1 .3s, --btn-gradient-2 .3s, color .3s, font-weight .3s
}

.btn-ancher:hover:after {
    color: #000
}

@media (min-width: 1200px) {
    .btn-entry {
        border-width: 5px;
        padding: 26px
    }

    .btn-entry:after {
        right: 36px;
        font-size: calc(var(--font-size-xl) * 2.4)
    }

    .btn-more {
        margin-top: 105px;
        padding: 26px
    }

    .btn-more:after {
        font-size: calc(var(--font-size-xl) * 1.5)
    }

    .btn-ancher {
        padding: 20px;
        border-width: 3px;
        font-size: calc(var(--font-size-xl) * 1.5)
    }

    .btn-ancher:after {
        font-size: calc(var(--font-size-2xl) * 2);
        font-weight: 700
    }
}

.index-hero .container {
    padding: 0 0 74px
}

.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    transition-timing-function: linear
}

.hero-slider .swiper-slide {
    width: 405px;
    height: 570px;
    padding: 0 10px
}

.hero-slider .swiper-slide picture,
.hero-slider .swiper-slide img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%
}

.hero-content {
    position: relative;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 18px 0 30px
}

.hero-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: linear-gradient(180deg, #fff, #ffffffb3 10%, #fff0 20%, #fff0 80%, #ffffffb3 90%, #fff);
    background-blend-mode: color-burn
}

.hero-content:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    --c-0: hsla(210, 76%, 94%, 1);
    --x-0: 28%;
    --y-0: 99%;
    --c-1: hsla(210, 76%, 94%, 1);
    --x-1: 100%;
    --y-1: 100%;
    --c-2: hsla(227, 38%, 76%, 1);
    --x-2: 0%;
    --y-2: 43%;
    --c-3: hsla(202.38805970149252, 77%, 82%, 1);
    --x-3: 100%;
    --y-3: 24%;
    background-color: #a9daf4;
    background-image: radial-gradient(circle at var(--x-0) var(--y-0), var(--c-0) var(--s-start-0), transparent var(--s-end-0)), radial-gradient(circle at var(--x-1) var(--y-1), var(--c-1) var(--s-start-1), transparent var(--s-end-1)), radial-gradient(circle at var(--x-2) var(--y-2), var(--c-2) var(--s-start-2), transparent var(--s-end-2)), radial-gradient(circle at var(--x-3) var(--y-3), var(--c-3) var(--s-start-3), transparent var(--s-end-3));
    animation: huerotate-animation 10s linear infinite alternate;
    background-blend-mode: normal, normal, normal, normal
}

.hero-header {
    position: absolute;
    top: 600px;
    left: 25px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px
}

.catchphrase {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    background: linear-gradient(var(--color-white) 100%, var(--color-white) 0%);
    line-height: 1.2;
    padding: .2em .5em
}

.hero-lead {
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.lead {
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-size: calc(var(--font-size-base) * 1);
    line-height: 1.7;
    font-weight: 700
}

.hero .btn-more {
    display: none;
    align-self: center
}

@media (min-width: 1200px) {
    .index-hero .container {
        position: relative;
        padding: 0 0 110px
    }

    .index-hero .hero-slider .swiper-slide {
        width: 490px;
        height: 690px;
        padding: 20px
    }

    .index-hero .hero-read {
        position: relative
    }

    .index-hero .hero-header {
        top: 552px;
        left: 0
    }

    .index-hero .hero .btn-more {
        display: inline-flex
    }

    .index-hero .catchphrase {
        font-size: 2.2em;
        line-height: 2;
        padding: .3em .5em;
    }


    .index-hero .lead {
        font-size: 2.1em;
        line-height: 2
    }
}

.about-grid {
    display: flex;
    gap: 34px
}

.about-link {
    transition: opacity .2s
}

.about-link:hover {
    opacity: .7
}

.caption {
    display: flex;
    justify-content: flex-end;
    text-align: right;
    font-size: 1.5em;
    line-height: 1;
    margin-top: 36px
}

.caption:after {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-family-icon);
    content: "→";
    display: inline-block;
    transform: rotate(-57deg) translateY(2px)
}

.caption-icon {
    transform: rotate(-52deg);
    width: 1em;
    height: 1lh
}

@media (max-width: 1280px) {
    .about-grid {
        flex-direction: column;
        gap: 87px
    }

    .caption {
        margin-top: 20px
    }
}

.message {
    background: var(--color-background)
}

.message .title {
    margin-bottom: 12px
}

.message-image {
    height: auto;
    flex-shrink: 0
}

.message-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.message-text {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding-top: 30px
}

.catchphrase {
    font-size: calc(var(--font-size-base) * 1.3);
    line-height: 1.8;
    padding: 0
}

.btn-more {
    width: 90%;
    margin: 60px auto 0
}

@media (min-width: 1200px) {
    .message-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start
    }

    .message-image {
        width: 465px;
        height: 717px
    }

    .message-text {
        width: 557px;
        padding-top: 90px;
        align-items: flex-start
    }

    .message-text .catchphrase {
        font-size: 2em;
        line-height: 2;
        background: none;
        padding: 0
    }

    .message-text .btn-more {
        width: 363px;
        margin: 107px 0 0
    }
}

.interview-contents {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center
}

.interview-slider {
    width: 100%
}

.interview-slider .swiper-slide {
    width: calc(100% - 40px);
    border-radius: 40px;
    overflow: hidden;
    position: relative
}

.interview-slider .swiper-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    gap: 32px
}

.interview-caption {
    position: absolute;
    left: 0;
    bottom: 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 25px 5px 20px;
    line-height: 1;
    max-width: 90%
}

.interview-question {
    font-size: calc(var(--font-size-base) * 1.2);
    font-weight: 700
}

.interview-tags {
    display: flex;
    gap: 4px 24px;
    flex-wrap: wrap
}

.interview-tags .tag {
    font-size: var(--font-size-sm)
}

.swiper-nav {
    margin-top: 10px
}

.swiper-nav .swiper-button-prev,
.swiper-nav .swiper-button-next {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: 50%;
    border: 1px solid var(--color-black);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    position: static;
    margin: 0;
    transition: background .2s
}

.swiper-nav .swiper-button-prev:hover,
.swiper-nav .swiper-button-next:hover {
    background: var(--color-black);
    color: var(--color-white);
    display: flex
}

.swiper-nav .swiper-button-prev:after,
.swiper-nav .swiper-button-next:after {
    font-size: var(--font-size-2xl);
    color: inherit
}

.interview-slider .swiper-pagination {
    display: none
}

.interview-action {
    width: 90%
}

@media (min-width: 1200px) {
    .interview-slider .swiper-slide {
        width: 600px;
        border-radius: 34px
    }

    .interview-caption {
        bottom: 35px;
        padding: 10px 25px 3px 55px;
        gap: 10px;
        max-width: 90%
    }

    .interview-question {
        font-size: var(--font-size-xl)
    }

    .interview-tags .tag {
        font-size: var(--font-size-base)
    }

    .swiper-nav .swiper-button-prev,
    .swiper-nav .swiper-button-next {
        width: 76px;
        height: 76px;
        font-size: 2.2rem
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 2.2rem
    }

    .interview-slider .swiper-nav {
        margin-top: 36px;
        gap: 36px
    }
}

.qa {
    background: var(--color-background)
}

.qa-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0 auto
}

.qa-item {
    background: var(--color-white);
    border-radius: 30px;
    overflow: hidden;
    position: relative
}

.qa-item summary {
    cursor: pointer;
    pointer-events: all;
    background: var(--color-white);
    border-radius: 30px;
    font-size: calc(var(--font-size-base) * 1);
    font-weight: 700;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 40px 10px 15px
}

.qa-item summary:before {
    content: "Q.";
    align-self: flex-start;
    font-size: calc(var(--font-size-base) * 1.5)
}

.qa-item p {
    margin: 0;
    padding: 22px 22px 22px 20px;
    background: var(--color-white);
    font-size: calc(var(--font-size-base) * 1);
    display: flex;
    line-height: 1.7
}

.qa-item summary:after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(/images/index/qa-icon.svg) no-repeat center/contain;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    transition: transform .3s
}

.qa-item[open] summary:after {
    transform: translateY(-50%) rotate(0)
}

.qa-item p:before {
    content: "A.";
    color: var(--color-text-blue);
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    line-height: 1;
    align-self: flex-start
}

.qa-item::details-content {
    transition: height .4s, opacity .4s, content-visibility .4s allow-discrete;
    height: 0;
    opacity: 0;
    overflow: clip
}

.qa-item[open]::details-content {
    opacity: 1
}

@supports (interpolate-size: allow-keywords) {
    :root {
        interpolate-size: allow-keywords
    }

    details[open]::details-content {
        height: auto
    }
}

@supports not (interpolate-size: allow-keywords) {
    details[open]::details-content {
        height: 150px;
        overflow-y: scroll
    }
}

@media (min-width: 1200px) {
    .qa-list {
        max-width: 910px
    }

    .qa-item summary {
        font-size: calc(var(--font-size-base) * 1.5);
        padding: 30px 30px 30px 60px
    }

    .qa-item p {
        margin: 0;
        padding: 22px 48px 32px 60px;
        font-size: calc(var(--font-size-base) * 1.2);
        line-height: 1.7
    }

    .qa-item summary:after {
        width: 32px;
        height: 32px
    }

    .qa-item p:before {
        font-size: calc(var(--font-size-base) * 2)
    }
}

.positions {
    background-color: var(--color-background-light)
}

.positions__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding)
}

.positions__title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 60px
}

.positions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px
}

.positions__card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base)
}

.positions__card:hover {
    transform: translateY(-5px)
}

.positions__card-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px
}

.positions__card-description {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    margin-bottom: 20px
}

.positions__card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px
}

.positions__card-item {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative
}

.positions__card-item:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary)
}

@media (min-width: 1200px) {
    .positions {
        padding: 80px 0
    }
}

.position-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 32px 16px;
    max-width: 100%;
    margin: 0 auto
}

.position-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    overflow: hidden;
    border-radius: 30px;
    border: 3px solid var(--color-black);
    transition: box-shadow .2s, border-radius .2s;
    text-decoration: none
}

.position-card picture,
.position-card img {
    width: 100%;
    height: auto;
    display: block
}

.position-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 24px 0 32px;
    color: #111
}

.positions-action {
    display: flex;
    justify-content: center
}

@media (min-width: 1200px) {
    .position-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 38px 32px;
        max-width: 1280px
    }

    .position-card {
        border-radius: 0 0 0 40px;
        border: none;
        position: relative;
        transition: all .4 ease-out
    }

    .position-card:after {
        --btn-gradient-1: rgba(var(--btn-color-accent-rgb), 0);
        --btn-gradient-2: rgba(var(--btn-color-accent-secondary-rgb), 0);
        transition: all .4 ease-out;
        display: block;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0 0 0 40px;
        transition: --btn-gradient-1 .3s, --btn-gradient-2 .3s;
        background: linear-gradient(90deg, var(--btn-gradient-1) 0%, var(--btn-gradient-2) 100%)
    }

    .position-card:hover:after {
        transition: --btn-gradient-1 .3s, --btn-gradient-2 .3s;
        --btn-gradient-1: rgba(var(--btn-color-accent-rgb), .55);
        --btn-gradient-2: rgba(var(--btn-color-accent-secondary-rgb), .55)
    }
}

.news {
    padding: 0
}

.news .container {
    display: flex;
    gap: 98px;
    border-radius: 80px;
    background: #eee;
    padding: 157px 103px 130px;
    box-sizing: content-box
}

.news-list {
    width: 100%;
    display: flex;
    flex-direction: column
}

.news-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 28px 5px;
    border-bottom: 2px solid #0a0205;
    line-height: 1.4
}

.news-list li:first-child {
    border-top: 2px solid #0a0205
}

.news-list time {
    min-width: 120px;
    font-weight: 400;
    margin-top: 2px;
    letter-spacing: .02em
}

.news-list a {
    text-decoration: none;
    font-weight: 700
}

.news-list a:hover {
    text-decoration: underline
}

@media (max-width: 1280px) {
    .news .container {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 66px 20px;
        border-radius: 0;
        box-sizing: border-box
    }

    .news-list {
        padding: 20px 0
    }

    .news-list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        font-size: calc(var(--font-size-base) * 1.3)
    }

    .news-list time {
        font-size: var(--font-size-base)
    }
}

.btn-more {
    max-width: 363px;
    padding: 26px
}

.cta {
    padding: 30px 0
}

@media (min-width: 1200px) {
    .btn-more {
        width: 363px;
        padding: 30px 26px;
        margin-top: 93px
    }

    .cta {
        margin: 110px auto;
        max-width: var(--container-width)
    }
}

.fade-in {
    opacity: 0;
    transform: translate(20px);
    transition: opacity .5s ease, transform .5s ease
}

h2.fade-in {
    transform: translate(-20px)
}

.fade-in.is-active {
    opacity: 1;
    transform: translate(0)
}