.c-locked {
    width: 100%;
    height: 100%;

    overflow: hidden;
}

.c-container {
    height: 100%;
}

.c-section {
    display: flex;
    flex-direction: column;

    padding: var(--space-xxl);
}

.c-section__overlay {
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);

    position: absolute;

    top: 0;
    left: 0;

    z-index: 1;
}

.c-section__bg {
    width: 100%;
    height: 100%;

    position: absolute;

    top: 0;
    left: 0;

    z-index: 0;
}

.c-section__bg > img {
    width: 100%;
    height: 100%;
}

.c-section__body {
    border-radius: var(--radius-l);

    box-shadow: var(--box-shadow-01);

    display: flex;
    
    padding: var(--space-xxl);
}

.c-section__media-wrapper {
    width: calc(50% - (var(--space-xxl) / 2));
    
    border-radius: var(--radius-l);

    display: flex;

    overflow: hidden;
}

.c-section__media {
    width: 100%;
}

.c-media-placeholder {
    background: linear-gradient(
        100deg,
        #ececec 25%,
        #ffffff 50%,
        #ececec 75%
    );
    background-size: 200% 100%;

    animation: shimmer 1.4s infinite;
}

.c-media-placeholder--hidden {
    background: none;
}

.c-lazy-media {
    opacity: 0;

    transition: var(--transition-01);
    -webkit-transition: var(--transition-01);
}

.c-lazy-media--loaded {
    opacity: 1;
}

.c-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.c-header--center {
    align-items: center;
}

.c-title {
    font-size: 48px;
    font-weight: 600;
}

.c-heading {
    font-size: 36px;
    font-weight: 600;
}

.c-heading--center {
    text-align: center;
}

.c-heading__tag {
    width: max-content;

    border-radius: var(--radius-m);

    color: var(--color-01);

    background-color: var(--color-04);

    font-size: var(--font-size-s);

    padding: var(--space-xxs);
}

.c-subheading {
    font-size: var(--font-size-m);
    font-weight: 600;
    
    line-height: 1.6;
}

.c-highlight-text {
    color: var(--color-04);

    font-size: 180px;
    font-weight: 600;
    
    line-height: 1;
}

.clamp-text--01 {
    text-overflow: ellipsis;
    
    white-space: nowrap;
    
    overflow: hidden;
}

.clamp-text--02 {
    -webkit-box-orient: vertical;

    text-overflow: ellipsis;
    
    line-clamp: 2;
    -webkit-line-clamp: 2;
    
    display: -webkit-box;

    overflow: hidden;
}

.c-link {
    transition: var(--transition-01);
    -webkit-transition: var(--transition-01);
}

.c-link:hover {
    color: var(--color-01);
}

.c-icon-wrapper {
    width: 40px;
    height: 40px;
    
    border: 1px solid var(--color-04);
    border-radius: var(--radius-m);

    background-color: var(--color-04);

    display: flex;
    align-items: center;
    justify-content: center;
}

.c-icon-wrapper--round {
    border-radius: 50%;
}

.c-icon-wrapper--hoverable {
    transition: var(--transition-01);
    -webkit-transition: var(--transition-01);
}

.c-icon-wrapper--hoverable:hover {
    border-color: var(--color-01);
}

.c-icon {
    width: 16px;
    height: 16px;

    object-fit: contain;

    user-select: none;
    -webkit-user-drag: none;
}

.c-response-message {
    display: none;
}

.c-response-message._active {
    display: flex;
}

.c-response-message._active._success {
    color: var(--color-09);
}

.c-response-message._active._failure {
    color: var(--color-10);
}

.c-fields-wrapper {
    display: flex;
    gap: var(--space-m);
}

.c-field-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
}

.c-field {
    height: 40px;

    border: 1px solid var(--color-04);
    border-radius: var(--radius-m);

    outline: none;

    font-size: var(--font-size-m);

    padding: 0 var(--space-s);
    
    transition: var(--transition-01);
    -webkit-transition: var(--transition-01);
}

.c-field:focus {
    border-color: var(--color-01);
}

.c-field__label {
    width: max-content;

    color: var(--color-07);

    line-height: 1;
    
    cursor: pointer;
}

.c-btn {
    width: max-content;
    height: 40px;

    border-radius: var(--radius-m);

    outline: none;

    font-size: var(--font-size-m);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-s);

    cursor: pointer;

    transition: var(--transition-01);
    -webkit-transition: var(--transition-01);
}

.c-btn--rounded {
    border-radius: 50%;
}

.c-btn--dark {
    border: 1px solid var(--color-02);

    color: #FFFFFF;

    background-color: var(--color-01);
    background: var( --gradient-01);
    
    mask-image: var(--gradient-02);
    -webkit-mask-image: var(--gradient-02);
    mask-size: 400%;
    -webkit-mask-size: 400%;
    mask-position: 0;
    -webkit-mask-position: 0;

    padding: 0 var(--space-s);
    
    transition: mask-position var(--transition-02) ease,-webkit-mask-position var(--transition-02) ease;
}

.c-btn--dark:hover {
    mask-position: 120%;
    -webkit-mask-position: 120%;
    
    opacity: 1;
}

.c-btn--light {
    border: 1px solid var(--color-02);
    
    color: var(--color-01);

    background: none;
    
    padding: 0 var(--space-s);
}

.c-btn--light:hover {
    background-color: var(--color-04);
}

.c-btn--extra-light {
    border: 1px solid var(--color-03);
    
    color: var(--color-03);

    background: none;
    
    padding: 0 var(--space-s);
}

.c-btn--extra-light:hover {
    color: var(--color-07);

    background-color: var(--color-03);
}

.c-btn__icon {
    height: 16px;

    animation: spin 0.8s linear infinite;
}

.c-circles-wrapper {
    position: relative;

    z-index: 1;

    overflow: hidden;
}

.c-circles {
    width: 250px;

    position: absolute;

    z-index: -1;
}

.c-circles--top-left {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);

    top: -50px;
    left: -50px;
}

.c-circles--top-right {
    top: -50px;
    right: -50px;
}

.c-circles--bottom-right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);

    bottom: -50px;
    right: -50px;
}

.c-circles--bottom-left {
    bottom: -50px;
    left: -50px;
}

.c-hr {
    height: 1px;

    background-color: var(--color-04);
}

.c-hidden {
    display: none;
}

@media (max-width: 1280px) {
    
}

@media (max-width: 1024px) {
    .c-section__body {
        flex-direction: column;
    }

    .c-section__media-wrapper {
        width: 100%;
    }

    .c-title {
        font-size: 36px;
    }
    
    .c-highlight-text {
        font-size: 120px;
    }
}

@media (max-width: 768px) {
    .c-title {
        font-size: 28px;
    }

    .c-heading {
        font-size: 28px;
    }
    
    .c-highlight-text {
        font-size: 46px;
    }
}

@media (max-width: 480px) {
    .c-title {
        font-size: 20px;
    }

    .c-heading {
        font-size: 20px;
    }
}