.c-container {
    height: 100%;
    
	border-radius: var(--radius-s);

    position: relative;

    overflow: hidden;
}

/* [COMPONENT] BG */

.c-bg__wrapper {
    width: 100%;
    height: 100%;

    position: absolute;

    top: 0;
    left: 0;

    z-index: 2;
}

.c-bg {
    width: 100%;
    height: 100%;
    
	border-radius: var(--radius-s);

    background-image: url("../assets/media/components/noise.webp");
    background-position: top left;
    background-repeat: repeat;
    background-size: contain;

    position: absolute;

    top: 0;
    left: 0;

    z-index: 2;
}

.c-bg__blobs-wrapper {
    width: 100%;
    height: 100%;
    
	border-radius: var(--radius-s);

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;

    top: 0;
    left: 0;

    z-index: 1;

    overflow: hidden;
}

.c-bg__blob-wrapper {
    width: 100%;

    aspect-ratio: 1 / 1;

    position: absolute;

    transition: var(--transition-04);
    -webkit-transition: var(--transition-04);
}

.c-bg__blob-wrapper--01 {
    transform: translate(-100%, -100%);
}

.c-bg__blob-wrapper--01._visible {
    transform: translate(-40%, -40%);
}

.c-bg__blob-wrapper--02 {
    transform: translate(100%, 100%);
}

.c-bg__blob-wrapper--02._visible {
    transform: translate(40%, 40%);
}

.c-bg__blob {
    width: 100%;

    object-fit: contain;
}

/* [COMPONENT] Heading */

.c-heading--01 {
    color: rgba(var(--c-base-white), 0.8);

    font-size: var(--font-size-xxxl);
    font-weight: 400;

    line-height: 1.4;
}

.c-heading--02 {
    color: rgba(var(--c-base-white), 0.8);

    font-size: var(--font-size-xxl);
    font-weight: 400;
    
    line-height: 1.4;
}

.c-heading--03 {
    color: rgba(var(--c-base-white), 0.8);

    font-size: var(--font-size-xl);
    font-weight: 400;
    
    line-height: 1.4;
}

/* [COMPONENT] Clamp text */

.c-clamp-text--01 {
    text-overflow: ellipsis;
    
    white-space: nowrap;
    
    overflow: hidden;
}

.c-clamp-text--02 {
    -webkit-box-orient: vertical;

    text-overflow: ellipsis;
    
    line-clamp: 2;
    -webkit-line-clamp: 2;
    
    display: -webkit-box;

    overflow: hidden;
}

/* [COMPONENT] Link */

.c-link {
    width: max-content;
    
    position: relative;
}

.c-link::after {
    content: "";

    width: 100%;
    height: 1px;

    background-color: rgba(var(--c-base-white), 0.8);

    opacity: 0;

    position: absolute;

    top: 100%;
    left: 0;

    transition: var(--transition-01);
    -webkit-transition: var(--transition-01);
}

.c-link:hover::after {
    opacity: 1;
}

/* [COMPONENT] Button */

.c-btn {
    height: var(--size-h-l);
    
    border: 1px solid var(--color-border-01);
	border-radius: var(--radius-s);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-m);

	padding: var(--space-xxs) var(--space-xxs) var(--space-xxs) var(--space-m);

	position: relative;
	
	cursor: pointer;

    transition: var(--transition-01);
    -webkit-transition: var(--transition-01);
}

.c-btn:hover {
    border-color: var(--color-border-hover-01);
}

.c-btn > span {
    line-height: 1;
}

.c-btn__icons-wrapper {
    width: calc(var(--size-wh-l) - var(--space-xxs) - var(--space-xxs));
    height: calc(var(--size-wh-l) - var(--space-xxs) - var(--space-xxs));

	border-radius: var(--radius-s);
    
    background-color: rgb(var(--c-brand-01));
    
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    overflow: hidden;
}

.c-btn__icon-wrapper {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;

    transition: var(--transition-02);
    -webkit-transition: var(--transition-02);
}

.c-btn__icon-wrapper--02 {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
}

.c-btn:hover > .c-btn__icons-wrapper > .c-btn__icon-wrapper--01 {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
}

.c-btn:hover > .c-btn__icons-wrapper > .c-btn__icon-wrapper--02 {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
}

.c-btn__icon {
    width: 20px;
}

.c-btn__icon--animated {
    animation: spinner 1.2s linear infinite;
}

/* [COMPONENT] Form */

.c-fields__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-m);
}

.c-field__wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.c-label {
    width: max-content;

    color: rgba(var(--c-base-white), 0.8);

    font-size: var(--font-size-xs);

    text-transform: uppercase;
}

.c-field {
    width: 100%;
    height: var(--size-h-l);

	border: 1px solid var(--color-border-01);
    border-radius: var(--radius-s);

    outline: none;

    background: none;

    color: rgba(var(--c-base-white), 0.8);

    line-height: 1;

	padding: var(--space-s) var(--space-m);

    transition: var(--transition-01);
    -webkit-transition: var(--transition-01);
}

.c-field:focus {
    border-color: var(--color-border-hover-01);
}

.c-response-message {
    display: none;
}

.c-response-message._active {
    display: block;
}

@media (max-width: 1280px) {
    /* [COMPONENT] BG */

    .c-bg__blob-wrapper--01._visible {
        transform: translate(-48%, -48%);
    }

    .c-bg__blob-wrapper--02._visible {
        transform: translate(48%, 48%);
    }
}

@media (max-width: 1024px) {
    /* [COMPONENT] BG */

    .c-bg__blob-wrapper--01._visible {
        transform: translate(-56%, -56%);
    }

    .c-bg__blob-wrapper--02._visible {
        transform: translate(56%, 56%);
    }
}

@media (max-width: 768px) {
    
}

@media (max-width: 480px) {
    /* [COMPONENT] Form */

    .c-fields__wrapper {
        display: flex;
        flex-direction: column;
    }
}