@font-face{
    font-family: 'Inter';
    src:url('fonts/Inter-VariableFont_opsz,wght.ttf');
}
@font-face{
    font-family: 'Onest';
    src:url('fonts/Onest-VariableFont_wght.ttf');
}
@font-face{
    font-family: 'Unbounded';
    src:url('fonts/Unbounded-VariableFont_wght.ttf');
}

:root {
    --green: #01979B;
    --white: #ffffff;
    --black: #0F1115;
    --orange: #FF742A;
    --gray: #F9F9F9;
    --light: #F8F8F8;
    --gray-2: #B4B4B4;
    --error: #de5252;
    --dark-gray: #324054;
    --light-gray: #71839B;
    --faded-gray: #E4ECF5;
    --light-green: #00B65E;
    --dark-green: #27717C;
    --instructions-gray: #757575;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Onest', serif;
    position: relative;
    color: var(--black);
	text-align: left;
	scroll-behavior: smooth;
}

ul, li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button, input[type="submit"] {
    cursor: pointer;
}

.form__field_required label::after {
    content: '*';
    color: var(--error);
    margin-left: 4px;
}

h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 45px;
    line-height: 1.38;
    letter-spacing: 1%;
    font-weight: 400;
}

h2 {
    font-family: 'Onest', sans-serif;
    font-size: 32px;
    line-height: 1.38;
    font-weight: 500;
}

h3 {
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    letter-spacing: 1%;
    line-height: 1.38;
    font-weight: 500;
}

.green-text {
    color: var(--green);
    font-weight: 500;
}

.orange-text {
    color: var(--orange);
    font-weight: 500;
}

.container {
    max-width: 1440px;
    padding: 0 20px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    height: 100%;
    padding: 60px;
    background: none;
}

.header__background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("images/bg.png");
	background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__background img {
    object-fit: contain;
    height: 100%;
    position: absolute;
    bottom: 28px;
    max-height: 810px;
}

.header__info {
    display: flex;
    justify-content: center;
    gap: 250px;
}

.header__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    max-width: 420px;
}

.header__column:last-child {
    margin-top: 15px;
}

.header__title {
    color: var(--green);
    font-size: 60px;
    font-weight: 600;
    font-family: 'Unbounded', sans-serif;
    letter-spacing: -5%;
    line-height: 1.2;
    text-transform: uppercase;
}

.form_hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__menu-item {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    line-height: 1.38;
    letter-spacing: 1%;
}

.header__logo {
    max-height: 72px;
    height: 100%;
    display: flex;
}

.header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.description__background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("images/bg_2.png");
    background-position: 0% 0%;
    background-repeat: no-repeat;
}

.description {
    padding: 80px 0 112px 0;
    display: flex;
    gap: 126px;
    align-items: flex-end;
    justify-content: flex-end;
}

.description-image {
    width: 100%;
    max-width: 477px;
    max-height: 704px;
}

.description-image__item {
    display: flex;
    border-radius: 46px;
    overflow: hidden;
    background-image: url("images/description_image.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0 62px;
}

.description-image__item img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    padding-top: 28px;
}

.description-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 562px;
}

.description-info__text {
    display: flex;
    flex-direction: column;
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    line-height: 1.38;
    letter-spacing: 1%;
}

.description-info__text p:not(:last-child) {
    margin-bottom: 12px;
}

.description-plates {
    display: flex;
    flex-direction: column;
}

.description-plates__item:not(:last-child) {
    margin-bottom: 16px;
}

.description-plates__item {
    background: var(--white);
    padding: 24px 44px;
    border-radius: 20px;
    border: 1px solid var(--green);
    box-shadow: 0 4px 4px 0 #00000040;
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    line-height: 1.38;
    letter-spacing: 1%;
}

.terms-section {
    background: var(--gray);
}

.terms {
    padding: 60px 0 118px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.terms__info {
    display: flex;
    gap: 50px;
}

.terms-plates {
    display: flex;
    flex-direction: column;
    max-width: 493px;
    width: 100%;
}

.terms-plates__item:not(:last-child) {
    margin-bottom: 54px;
}

.terms-plates__item:last-child {
    margin-top: 22px;
}

.terms-plates__item {
    padding: 16px 28px;
    border: 1px solid var(--green);
    border-radius: 20px;
    box-shadow: 0 4px 4px 0 #00000040;
    position: relative;
}

.terms-plates__item:nth-child(3) {
    padding: 32px 28px;
}

.terms-plates__item:nth-child(4) {
    padding: 30px 28px;
}

.terms-plates__digit {
    position: absolute;
    top: 50%;
    transform: translate(-130%, -50%);
    height: 170px;
    display: flex;
}

.digit1 {
    transform: translate(-130%, -62%);
}

.digit2 {
    transform: translate(-130%, -61%);
}

.digit3 {
    transform: translate(-130%, -56%);
}

.terms-plates__digit img {
    object-fit: contain;
    width: 100%;
}

.terms-plates__text {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    line-height: 1.38;
    letter-spacing: 1%;
}

.terms-plates__text br, .terms-plates__text .text-arrow {
    display: none;
}

.b-mobile {
    font-weight: 400;
}

.terms-plates__text b, .terms-plates__text .green-text, .terms-plates__text .orange-text {
    font-weight: 500;
}

.terms-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 624px;
    width: 100%;
}

.terms-text__list {
    margin-top: 8px;
    padding-left: 20px;
}

.terms-text__item {
    list-style: disc;
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 1%;
}

.results__image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("images/bg_3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.results {
    display: flex;
    justify-content: center;
    gap: 88px;
    padding: 48px 0 360px;
}

.results__column:first-child {
    max-width: 430px;
    width: 100%;
}

.results__column:first-child h1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1%;
    color: var(--white);
}

.results__column:last-child {
    max-width: 510px;
    width: 100%;
}

.results__column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.results__column p {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.38;
    letter-spacing: 1%;
    color: var(--white);
}

.results__plate {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    line-height: 1.38;
    letter-spacing: 1%;
    padding: 44px 37px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--green);
    box-shadow: 0 4px 4px 0 #00000040;
}

.results__plate .green-text, .results__plate .orange-text, .results__plate b {
    font-weight: 700;
}

.form-box {
    padding: 60px 0 48px;
    display: flex;
    gap: 34px;
}

.form-box__column-info, .form-box__column-form {
    display: flex;
    flex-direction: column;
}

.form-box__image-column:first-child {
    max-width: 495px;
    width: 100%;
}

.form-info {
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 4px 0 #00000040;
    border: 1px solid var(--green);
    font-family: 'Onest', sans-serif;
    transform: translateY(-22px);
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 390px;
}

.form-info__text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.38;
    letter-spacing: 1%;
    margin-bottom: 10px;
    text-align: center;
    max-width: 278px;
}

.form-info__link {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.38;
    letter-spacing: 1%;
    text-align: center;
}

.form-info__link .green-text {
    font-weight: 700;
}

.form-box__column-form {
    gap: 33px;
    max-width: 683px;
    width: 100%;
}

.form {
    padding: 24px 51px;
    background: var(--light);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
}

/*.form__body {*/
.form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/*.form_success .form__body, .form_success~.form-box__texts {*/
.form_success form, .form_success~.form-box__texts {
    display: none;
}

.form__field:first-child {
    margin-bottom: 8px;
}

.form__field {
    display: flex;
    flex-direction: column;
}

.form__label {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.38;
    letter-spacing: 1%;
    margin-bottom: 6px;
}

.form__label span {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.38;
    letter-spacing: 1%;
    color: var(--instructions-gray);
}

.form__input {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    line-height: 1.38;
    letter-spacing: 1%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--green);
    background: var(--white);
    outline: none;
}

textarea.form__input {
    resize: vertical;
    min-height: 90px;
}

.form__field_error .form__input {
    border: 1px solid var(--error);
}

.form__field_error .form__input_button {
    background: var(--error);
}

.form__input::placeholder {
    color: var(--gray-2);
}

.form__label_small {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.form__label_checkbox {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.38;
}

.form__input_button {
    padding: 12px 24px;
    border-radius: 8px;
    background: var(--green);
    color: var(--white);
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.38;
    letter-spacing: 1%;
    border: 0;
    text-align: center;
}

.form__submit {
    align-self: flex-start;
    padding: 12px 19px;
    background: var(--black);
    color: var(--white);
    border-radius: 8px;
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.38;
    letter-spacing: 1%;
    border: 0;
}

.form__submit_disabled {
    pointer-events: none;
    opacity: .2;
}

.file:first-child {
    margin-top: 24px;
}

.file:not(:last-child) {
    margin-bottom: 24px;
}

.file {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 16px;
    background: var(--white);
}

.file__info {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.file__icon {
    width: 24px;
    height: 24px;
}

.file__icon img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.file__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    min-width: 0;
}

.file__text_loading {
    gap: 6px;
}

.file__name {
    color: var(--dark-gray);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; /* Добавьте это */
    max-width: 100%; /* Ограничение ширины */
}

.file__message, .file__message_error {
    color: var(--light-gray);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -.5%;
}

.file__message_error {
    color: var(--error);
}

.file__load {
    width: 100%;
    height: 5px;
    border-radius: 12px;
    background: var(--faded-gray);
    overflow: hidden;
}

.file__load-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--light-green);
    border-radius: 12px;
}

.file__load-indicator_error {
    background: var(--error);
}

.file__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.file__button {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.file__button img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.form__terms {
    display: flex;
    align-items: center;
    gap: 12px;
	padding-right: 2px;
}

.form__terms::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 2px;
	background: none;
}

.form__field_error.form__terms::after {
	background: var(--error);
}

.form-box__texts p {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    line-height: 1.38;
    letter-spacing: 1%;
    margin-bottom: 16px;
}

.form-box__texts span .green-text{
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.38;
    letter-spacing: 1%;
}

.form-box__texts span {
    font-family: 'Onest', sans-serif;
    font-size: 15px;
    line-height: 1.38;
    letter-spacing: 1%;
}

.form__success {
    margin-top: 24px;
    display: none;
    flex-direction: column;
    align-items: center;
}

.form__success-image {
    width: 113px;
    height: 113px;
    margin-bottom: 16px;
}

.form__success-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.form_success .form__success {
    display: flex;
}

.form__success span {
    font-family: 'Onest', sans-serif;
    font-size: 32px;
    line-height: 1.38;
    letter-spacing: 1%;
}

.terms-plates__number {
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.38;
    letter-spacing: 1%;
    display: none;
    margin-right: 8px;
    color: var(--gray-2);
}

.terms-plates h1 {
    display: none;
}

.results__mobile {
    display: none;
}

.header__background-mobile {
    display: none;
}

@media screen and (max-width: 1920px) {
    .header__background img {
        max-height: 673px;
    }
	.header {
		min-height: 776px;
	}
	.header__background {
		background-position: center 30%;
		background-size: 110%;
	}
}

@media screen and (max-width: 1780px) {
	.header__background {
            background-position: center 20%;
            background-size: 120%;
	}
}

@media screen and (max-width: 1560px) {
    .header__background {
        background-position: center 0%;
        background-size: 120%;
    }
}
@media screen and (max-width: 1440px) {
	.header__background {
    	background-size: 124%;
    	background-position: center 5%;
	}
    .header__title {
        font-size: 50px;
    }
    .header__column {
        gap: 8px;
    }
    .header__info {
        gap: 180px;
    }
    h3 {
        font-size: 20px;
    }
    .header {
        padding: 60px 0 420px;
    }
    .description-info__text {
        font-size: 18px;
    }
    .description-plates__item {
        font-size: 18px;
    }
    .description-plates__item {
        padding: 20px 30px;
    }
    .description {
        gap: 100px;
        padding: 40px 0 70px 0;
    }
    h1 {
        font-size: 40px;
    }
    .terms {
        padding: 40px 0 60px;
        gap: 40px;
    }
    .terms-text {
        max-width: 460px;
    }
    .terms-plates__text {
        font-size: 18px;
    }
    .terms-plates__digit {
        height: 120px;
    }
    .form__body {
        gap: 18px;
    }
    .form__input {
        font-size: 18px;
        padding: 10px 12px;
    }
    .form__input_button {
        font-size: 18px;
    }
    .form-info__text, .form-info__link {
        font-size: 18px;
    }
    .form-info {
        padding: 18px;
    }
    .form-box__texts p {
        font-size: 18px;
    }
    .form__success span {
        font-size: 30px;
    }
    .form__success-image {
        width: 90px;
        height: 90px;
        margin-bottom: 8px;
    }
    .results {
        gap: 50px;
        padding: 40px 0 80px;
    }
    .results__plate {
        font-size: 18px;
    }
    .results__column p {
        font-size: 18px;
    }
    h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 1280px){
	.header__background {
		background-size: 150%;
	}
    .terms__info {
        gap: 40px;
    }
    .terms-plates {
        max-width: 400px;
    }
    .terms-text {
        max-width: 400px;
    }
    .form-box__image-column:first-child {
        max-width: 500px;
        width: 100%;
    }
    .form-image {
        object-fit: contain;
        width: 100%;
    }
    .results__column:first-child {
        max-width: 340px;
    }
    .results__plate {
        padding: 30px;
    }
}

@media screen and (max-width: 1024px){
    .header__column {
        max-width: 340px;
    }
    .description {
        gap: 30px;
    }
    .description-image__item {
        border-radius: 24px;
    }
    .terms-plates__digit {
        display: none;
    }
    .terms-plates__item:last-child {
        margin-top: 0;
    }
    .terms-plates__item:not(:last-child) {
        margin-bottom: 30px;
    }
    .terms-plates__number {
        display: inline;
    }
}

@media screen and (max-width: 960px){
    .form-box {
        flex-direction: column-reverse;
    }
    .form-box__column-form {
        max-width: unset;
    }
    .terms-text {
        max-width: unset;
    }
    .terms-plates {
        max-width: unset;
    }
    .description {
        flex-direction: column;
        align-items: center;
    }
    .description-info {
        max-width: unset;
    }
    .terms__info {
        flex-direction: column-reverse;
    }
    .terms h1 {
        display: none;
    }
    .terms-plates h1 {
        display: block;
        margin-bottom: 30px;
        text-align: center;
    }
    .form-box__image-column:first-child {
        max-width: unset;
    }
    .form-image {
        display: none;
    }
    .form-info {
        transform: translateY(0);
        max-width: unset;
    }
    .form-info__text {
        max-width: unset;
    }
    .results {
        flex-direction: column;
        gap: 30px;
    }
    .results__column:first-child {
        max-width: unset;
    }
    .results__column:last-child {
        max-width: unset;
    }
    .header__info {
        flex-direction: column;
        justify-content: flex-start;
        gap: 14px;
    }
    .header__background-mobile {
        display: flex;
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url(images/bg.png);
        background-position: center;
        background-repeat: no-repeat;
        justify-content: center;
        align-items: flex-end;
        background-size: auto 120%;
    }
    .header__background {
        display: none;
    }
    .header__background-mobile img {
        object-fit: contain;
        height: 100%;
        max-height: 460px;
    }
    .header__logo {
        max-height: 50px;
    }
}

@media screen and (max-width: 768px) {
    .terms-plates__item:nth-child(3), .terms-plates__item:nth-child(4) {
        padding: 20px 22px;
    }
    .b-mobile {
        font-weight: 500;
    }
    .description-image {
        height: 294px;
        max-height: unset;
        max-width: 200px;
    }
    .description-image__item {
        height: 100%;
        padding: 0;
    }
    .results {
        display: none;
    }
    .results__mobile {
        display: flex;
    }

    .header {
        height: 880px;
        padding: 28px;
    }
    .header__column:first-child {
        flex-direction: column-reverse;
        gap: 34px;
    }
    .header__menu {
        gap: 30px;
    }
    .header__menu-item {
        font-size: 16px;
    }
    .header__title {
        font-size: 40px;
    }
    .header__column:last-child {
        margin-top: 0;
        gap: 0;
    }
    h3 {
        font-size: 16px;
    }
    .header__logo {
        max-height: 44px;
    }
    .description {
        padding: 30px 0;
        gap: 30px;
    }
    .description-info {
        gap: 40px;
    }
    .description__background {
        background: var(--gray);
    }
    .description-info__text {
        font-size: 16px;
    }
    .description-plates__item {
        padding: 24px 14px;
        font-size: 16px;
    }
    .description-plates__item:not(:last-child) {
        margin-bottom: 22px;
    }
    .terms {
        padding: 0;
    }
    .terms-text {
        gap: 28px;
        margin-bottom: 12px;
    }
    h2 {
        font-size: 24px;
    }
    .terms-text__plate h3 {
        font-size: 20px;
    }
    .terms__info {
        gap: 0;
    }
    .terms-plates {
        background: var(--dark-green);
        padding: 30px 0 52px;
        width: calc(100% + 40px);
        margin-left: -20px;
    }
    .terms-plates h1 {
        font-size: 24px;
        margin-bottom: 30px;
        color: var(--white);
    }
    .terms-plates__item {
        padding: 20px 22px;
        margin: 0 20px 24px;
        background: var(--white);
    }
    .terms-plates__number {
        display: block;
        text-align: center;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .terms-plates__text {
        font-size: 16px;
    }
    .terms-plates__text br, .terms-plates__text .text-arrow {
        display: inline-block;
    }
    .form-box {
        padding: 47px 0;
        width: calc(100% + 20px);
        margin-left: -10px;
    }
    .form {
        padding: 28px 17px 17px 17px;
    }
    .form h1 {
        margin-bottom: 21px;
    }
    .form__body {
        gap: 24px;
    }
    .form__input {
        font-size: 16px;
        padding: 12px 16px;
    }
    .form__input_button {
        font-size: 16px;
        padding: 12px;
    }
    .file {
        padding: 8px;
        gap: 8px;
    }
    .file:not(:last-child) {
        margin-bottom: 12px;
    }
    .file:first-child {
        margin-top: 12px;
    }
    .form__submit {
        font-size: 16px;
        padding: 12px;
        width: 100%;
    }
    .form-box__texts p {
        font-size: 16px;
    }
    .form-box__texts span {
        font-size: 16px;
    }
    .form-info {
        padding: 24px 32px;
        border: 6px solid var(--green);
    }
    .form-info__text {
        font-size: 20px;
        margin-bottom: 0;
    }
    .form-info__link {
        font-size: 24px;
    }
    .results__slide-title {
        text-align: center;
        max-width: 290px;
        font-family: 'Unbounded', sans-serif;
        font-size: 24px;
        font-weight: 600;
        line-height: 1.13;
        letter-spacing: 1%;
        color: var(--white);
    }
    .results__slide-text {
        font-family: 'Onest', sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.38;
        letter-spacing: 1%;
        color: var(--white);
    }
    .results__slide-next {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .results__slide-arrow {
        max-width: 135px;
        width: 100%;
        margin-bottom: 10px;
    }
    .results__slide-arrow img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }
    .results__slide-phrase {
        font-family: 'Onest', sans-serif;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.38;
        letter-spacing: 1%;
        color: var(--white);
    }
    .results__slide_empty {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }
    .results__slide_fill {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        border: 1px solid var(--green);
        padding: 44px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: var(--white);
        font-family: 'Onest', sans-serif;
        font-size: 16px;
    }
    .results__slide_fill b, .results__slide_fill .green-text, .results__slide_fill .orange-text {
        font-weight: 700;
    }
    .results__slide {
        width: 100%;
        height: 100%;
        min-height: 526px;
    }
    .results__mobile {
        padding: 20px 0;
    }
}