/* .about-brand {
    --AboutBrand-Horisontal-Padding: var(--Side-Padding-Large);
    display: flex;
    padding: 64px var(--AboutBrand-Horisontal-Padding) 128px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 64px;
    align-self: stretch;
    color: var(--Colors-Main-Dark);
    text-align: center;


    .about-brand-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        align-self: stretch;

        .about-brand-subtitle {
            font-size: 20px;
            font-weight: 400;
            line-height: 28px;
            align-self: stretch;
        }

        .about-brand-title {
            font-size: 40px;
            font-weight: 700;
            line-height: 56px;
            max-width: 585px;
        }
    }

    .about-brand-items {
        display: flex;
        align-items: flex-end;
        gap: 16px;
        align-self: stretch;

        .about-brand-item {
            display: flex;
            padding: 48px 40px;
            flex-direction: column;
            align-items: center;
            gap: 32px;
            flex: 1 0 0;
            align-self: stretch;
            border-radius: 40px;
            background-color: var(--Colors-Violet-50);


            .about-brand-item-icon {
                width: 64px;
                height: 64px;
            }

            .about-brand-item-text {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 16px;
                align-self: stretch;

                .about-brand-item-title {
                    font-size: 24px;
                    font-weight: 600;
                    line-height: 32px;
                    align-self: stretch;
                }

                .about-brand-item-description {
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 24px;
                    align-self: stretch;
                }
            }
        }
    }

    @media screen and (max-width: 700px) {
        --AboutBrand-Horisontal-Padding: 20px;
    }

    @media screen and (max-width: 640px) {
        gap: 56px;
        padding-bottom: 80px;
        
        .about-brand-items {
            flex-direction: column;
        }
    }

    @media screen and (max-width: 420px) {
        .about-brand-text {
            .about-brand-title {
                font-size: 32px;
                line-height: 44px;
            }
        }
    }
} */

.about-brand {
    --AboutBrand-Horisontal-Padding: var(--Side-Padding-Large);
    display: flex;
    padding: 64px var(--AboutBrand-Horisontal-Padding) 128px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 64px;
    align-self: stretch;
    color: var(--Colors-Main-Dark);
    text-align: center;
}
.about-brand .about-brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}
.about-brand .about-brand-text .about-brand-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    align-self: stretch;
}
.about-brand .about-brand-text .about-brand-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    max-width: 585px;
}
.about-brand .about-brand-items {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    align-self: stretch;
}
.about-brand .about-brand-items .about-brand-item {
    display: flex;
    padding: 48px 40px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 40px;
    background-color: var(--Colors-Violet-50);
}
.about-brand .about-brand-items .about-brand-item .about-brand-item-icon {
    width: 64px;
    height: 64px;
}
.about-brand .about-brand-items .about-brand-item .about-brand-item-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}
.about-brand .about-brand-items .about-brand-item .about-brand-item-text .about-brand-item-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    align-self: stretch;
}
.about-brand .about-brand-items .about-brand-item .about-brand-item-text .about-brand-item-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    align-self: stretch;
}
@media screen and (max-width: 700px) {
    .about-brand {
        --AboutBrand-Horisontal-Padding: 20px;
   }
}
@media screen and (max-width: 640px) {
    .about-brand {
        gap: 56px;
        padding-bottom: 80px;
   }
    .about-brand .about-brand-items {
        flex-direction: column;
   }
}
@media screen and (max-width: 420px) {
    .about-brand .about-brand-text .about-brand-title {
        font-size: 32px;
        line-height: 44px;
   }
}
