body {
    width: 100%;
    padding-bottom: 130px;
}

.header-title-container {
    padding: 16px 16px 24px 16px;
}

.overlay-container {
    position: absolute;
    margin-left: 16px;
    margin-top: 10px;
}

.title-text-container {
    display: flex;
    margin: 0;
}

.main-title {
    font-size: 32px;
    color: var(--primary-accent);
    margin: 0;
    font-family: 'Gilroy';
    font-weight: 200;
    line-height: 1;
}

.main-title-secondary {
    font-size: 32px;
    color: var(--primary-accent);
    margin: 0;
    font-family: 'Gilroy';
    font-weight: 600;
    line-height: 1;
}

.main-subtitle {
    font-size: 9px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    margin-left: 3px;
    font-family: 'Gilroy';
    font-weight: 600;
}

.text-container {
    margin: 0 16px;
    padding-bottom: 24px;
}

.text-block {
    padding-bottom: 16px;
}

.title-text, .title-text-accent { 
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 18px;
}

.title-text {
    color: var(--primary-color);
}

.title-text-accent {
    color: var(--primary-accent);
}

.desc-text-container {
    margin: 12px 0;
}

.desc-text, .desc-text-accent {
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 14px;
    
}

.desc-text-normal {
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 14px;
}

.desc-text, .desc-text-normal {
    color: var(--primary-color);
}

.desc-text-accent {
    color: var(--primary-accent);
}

.image-container {
    border-radius: 12px;
    width: 100%;
    height: 153px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-fields-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 16px;
}

.support-field input {
    box-sizing: border-box;
    width: 100%;
    border-radius: 8px;
    padding: 12px 14px;
    background-color: #1A1A1A;
    border: 1px solid rgba(81, 81, 81, 0.8);
    color: white;
}

.submit-support-form {
    width: 100%;
    border-radius: 8px;
    padding: 14px 36px;
    background-color: #2563EB;
    border: none;
    color: var(--primary-color);
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}


.form-successfull-container {
    position: fixed;
    display: none;
    bottom: 0;
    box-sizing: border-box;
    width: 100%;
    background: #1A1A1A;
    border: 1px solid #3B3B3B;
    border-radius: 24px 24px 0px 0px;
    padding: 24px 24px 40px 24px;
}

.form-successfull-container.active {
    display: flex;
}

.text-success-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.text-success {
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    color: var(--primary-color);
    text-align: center;
}

.subtext-success {
    font-family: 'Gilroy';
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: var(--primary-color);
    opacity: 50%;
    text-align: center;
}

.emoji-success {
    font-size: 24px;
}