html {
    font-size: calc(100vw / 1920 * 10);
}
body {
    font-family: 'Montserrat';
    font-weight: 400;
    transition: all .2s linear !important;
    min-height: 100vh;
    font-size: 1.6rem;
    color: #854B95;
    background: #FFF;
}
a, h1, h2, h3, h4, h5, p, span, button, ul, li {
    padding: 0;
    margin: 0;
    background: transparent;
    text-decoration: none;
    border: none;
    transition: all .2s linear;
    color: #854B95;
}
input, textarea, select {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    outline: none;
	transition: all .2s linear;
}
.container {
    max-width: 156.4rem;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
div {
    transition: all .2s linear;
}
path, rect, circle {
    transition: all .2s linear;
}
main {
    display: flex;
    flex-direction: column;
}

/* header */

header {
    border-bottom: var(--stroke-weight-1, 1px) solid var(--color-violet-458, rgba(106, 58, 174, 0.08));
    background: var(--color-white-70, rgba(255, 255, 255, 0.70));
    backdrop-filter: blur(5px);
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
}
.logo img {
    width: 19.6rem;
}
.burger-open {
    display: none;
}
.header-container nav ul {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}
.header-container nav ul li  {
    display: flex;
    list-style: none;
}
.header-container nav ul li a {
    color: var(--Royal-Purple, var(--color-violet-45, #6A3AAE));
    font-family: 'Roboto';
    font-size: var(--font-size-16, 1.6rem);
    font-style: normal;
    font-weight: var(--font-weight-500, 500);
    line-height: var(--line-height-25_6, 2.56rem);
}
.menu-mobile__fon {
    display: none;
}
.menu-mobile {
    display: none;
}
@media screen and (max-width: 1320px) {
    html {
        font-size: calc(100vw / 1024 * 10);
    }
    .container {
        max-width: 85.6rem;
    }
	header {
		padding: 0.7rem 0;
	}
	.logo img {
		width: 14.5rem;
	}
	.header-container nav ul li a {
		font-size: 1.4rem;
		line-height: 1.4rem;
	}
	
	
	

}
@media screen and (max-width: 992px) {
    html {
        font-size: calc(100vw / 768 * 10);
    }
    .container {
        max-width: 68.6rem;
    }
	.logo img {
        width: 12.2rem;
		min-width: 12.2rem;
    }
	.header-container {
		gap: 4.1rem;
	}
	.header-container nav ul li a {
		white-space: nowrap;
	}
}
@media screen and (max-width: 576px) {
    html {
        font-size: calc(100vw / 320 * 10);
    }
    .container {
        max-width: 28rem;
    }
    header {
        padding: 0.6rem 0;
    }
    .logo img {
        width: 11.4rem;
		min-width: 11.4rem;
    }
	.header-container {
		gap: 0;
	}
    .header-container nav {
        display: none;
    }
    .burger-open {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 3.1rem;
		height: 2.2rem;
		gap: 0.5rem;
		position: relative;
		z-index: 999;
	}
	.bar {
		height: 2px;
		width: 100%;
		background: #6A3AAE;
		border-radius: 0.1rem;
	}
	.change .bar:nth-child(1) {
		transform: rotate(-45deg) translate(-0.6rem, 0.6rem);
	}
	.change .bar:nth-child(2) {
		opacity: 0;
	}
	.change .bar:nth-child(3) {
		transform: rotate(45deg) translate(-0.4rem, -0.4rem);
	}
    .menu-mobile__fon.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.2);
    }
    .menu-mobile.active {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        max-width: 24.4rem;
        background: #FFF;
        box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
        padding: 5.3rem 3rem;
        overflow-y: auto;
    }
    .menu-mobile nav {
        display: block;
    }
    .header-container nav ul {
        align-items: flex-start;
        gap: 2rem;
        flex-direction: column;
    }
    .header-container nav ul li a {
        line-height: 2.2rem;
    }

}

/* faq */

.faq {
    position: relative;
    padding-bottom: 8rem;
    overflow: hidden;
    padding-top: 10rem;
}
.faq::before {
    content: '';
    position: absolute;
    z-index: -1;
    background-image: url('/wp-content/uploads/2025/08/faq.png');
    width: 100%;
    height: 161.9rem;
    bottom: 0;
    right: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.faq-container > h2 {
    color: #854B95;
    font-size: 6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 105%;
}
.faq-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-item {
    display: flex;
    flex-direction: column;
    border-radius: 1.4rem;
    background: #F8F3FB;
    backdrop-filter: blur(3px);
    padding: 1.8rem;
}
.faq-item__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-item__button p {
    color: var(--Royal-Purple, var(--color-violet-45, #6A3AAE));
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-25_6, 2.56rem);
    text-align: left;
}
.faq-item__button-icon {
    width: 4.8rem;
    min-width: 4.8rem;
    height: 4.8rem;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFF;
}
.faq-item__button-icon svg {
    width: 1.9rem;
    height: auto;
}
.faq-item__button-icon svg:nth-child(2) {
    display: none;
}
.faq-item__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    position: relative;
    max-height: 0;
}
.faq-item__content p {
    color: var(--Tundora, var(--color-grey-27, #444));
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3.4rem;
}
.faq-item.active svg:nth-child(1) {
    display: none;
}
.faq-item.active svg:nth-child(2) {
    display: block;
}
.faq-item.active .faq-item__content {
    margin-top: 1.5rem;
}

@media screen and (max-width: 1320px) {
	.faq {
		padding-bottom: 7.4rem;
		padding-top: 6rem;
	}
	.faq::before {
		background-image: url('/wp-content/uploads/2025/08/faq.png');
		width: 100%;
		height: 161.9rem;
	}
	.faq-container {
		gap: 2rem;
	}
	.faq-container > h2 {
		font-size: 2.8rem;
	}
	.faq-main {
		gap: 1rem;
	}
	.faq-item {
		border-radius: 0.8rem;
		padding: 1.5rem 1rem;
	}
	.faq-item__button p {
		font-size: 1.5rem;
	}
	.faq-item__button-icon {
		width: 2.5rem;
		min-width: 2.5rem;
		height: 2.5rem;
	}
	.faq-item__button-icon svg {
		width: 1.2rem;
	}
	.faq-item__content {
		gap: 1rem;
	}
	.faq-item__content p {
		font-size: 1.4rem;
		line-height: 1.8rem;
	}
	.faq-item.active .faq-item__content {
		margin-top: 0.5rem;
	}
}
@media screen and (max-width: 992px) {
	.faq {
		padding-bottom: 5rem;
		padding-top: 6rem;
	}
	.faq::before {
		background-image: url('/wp-content/uploads/2025/08/faq.png');
		width: 100%;
		height: 161.9rem;
	}
	.faq-container {
		gap: 4.6rem;
	}
	.faq-container > h2 {
		font-size: 2.6rem;
	}
	.faq-item {
		border-radius: 1rem;
		padding: 1.5rem 2rem;
	}
	.faq-item__button p {
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 576px) {
    .faq {
        padding-bottom: 3rem;
        padding-top: 5rem;
    }
    .faq::before {
        background-image: url('/wp-content/uploads/2025/08/faq-mob.png');
        height: 120.6rem;
    }
    .faq-container {
        gap: 1.4rem;
    }
    .faq-container > h2 {
        font-size: 2rem;
    }
    .faq-main {
        gap: 0.9rem;
    }
    .faq-item {
        padding: 2rem 1.2rem;
    }
    .faq-item__button {
        gap: 1.6rem;
    }
    .faq-item__button p {
        font-size: 1.4rem;
        line-height: normal;
    }
    .faq-item__button-icon {
        width: 2.8rem;
        min-width: 2.8rem;
        height: 2.8rem;
    }
    .faq-item__button-icon svg {
        width: 1.2rem;
    }
    .faq-item__content p {
        font-size: 1.4rem;
        line-height: normal;
    }
    .faq-item.active .faq-item__content {
        margin-top: 2rem;
    }
}

/* literature */

.literature {
    padding: 6.5rem 0;
    background: #F8F3FB;
}
.literature-container {
    display: flex;
}
.literature-container ol {
    margin: 0;
    padding: 0;
    padding-left: 3rem;
    display: flex;
    flex-direction: column;
}
.literature-container ol li {
    color: #91688A;
    font-size: var(--font-size-12, 1.2rem);
    font-style: normal;
    font-weight: var(--font-weight-400, 400);
    line-height: normal;
}
.literature-container ol li a {
    color: #91688A;
    text-decoration-line: underline;
}

@media screen and (max-width: 1320px) {
	.literature {
		padding: 3rem 0;
	}
	.literature-container ol {
		padding-left: 3rem;
	}
	.literature-container ol li {
		font-size: 0.8rem;
	}
}
@media screen and (max-width: 992px) {
	.literature {
		padding: 6.5rem 0;
	}
	.literature-container ol {
		padding-left: 1rem;
	}
	.literature-container ol li {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 576px) {
    .literature {
        padding: 3rem 0;
    }
    .literature-container ol {
        padding-left: 1rem;
    }
    .literature-container ol li {
        font-size: 0.8rem;
    }
}

/* footer */

footer {
    background: #854B95;
    padding: 6.5rem 0;
}
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4.4rem;
}
.footer-logo {
    display: flex;
}
.footer-logo img {
    width: 26.3rem;
}
.footer-container p {
    color: #FFF;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.footer-container p a {
    color: #FFF;
    text-decoration-line: underline;
}


@media screen and (max-width: 1320px) {
	footer {
		padding: 2.6rem 0;
	}
	.footer-container {
		gap: 2.3rem;
	}
	.footer-logo img {
		width: 14rem;
	}
	.footer-container p {
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 992px) {
	footer {
		padding: 2.8rem 0;
	}
}
@media screen and (max-width: 576px) {
    footer {
        padding: 3rem 0;
    }
	.footer-logo img {
		width: 26.3rem;
	}
    .footer-container {
        gap: 3rem;
    }
    .footer-container p {
        font-size: 1.1rem;
    }
    .footer-container p br:nth-child(1) {
        display: block;
    }
    .footer-container p br:nth-child(2) {
        display: none;
    }
}

/* cookie */

.cookie {
    background: #6A3AAE;
    padding: 2rem 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 99999;
    display: none;
}
.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie-container > p {
    color: #FFF;
    font-size: 1.34rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    max-width: 101.7rem;
}
.cookie-container > p a {
    color: #FFF;
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 3.15rem;
}
.cookie-button {
    color: #FFF;
    text-align: center;
    font-size: 1.93rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    width: 19.5rem;
    padding: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.6rem;
    border: 0.4rem solid#FFF;
}
.cookie-button:hover {
    color: #20366A;
    background: #FFF;
}

@media screen and (max-width: 1292px) {
    .cookie {
        padding: 1rem 0;
    }
    .cookie-container > p {
        font-size: 1.18rem;
        line-height: 90%;
        max-width: 59.7rem;
    }
    .cookie-buttons {
        gap: 1.9rem;
    }
    .cookie-button {
        font-size: 1.34rem;
        width: 13.1rem;
        padding: 0.8rem;
        border-radius: 1rem;
        border: 0.2rem solid#FFF;
    }
}

@media screen and (max-width: 992px) {
    .cookie {
        padding: 0.8rem 0;
    }
    .cookie-container > p {
        font-size: 1rem;
        line-height: 100%;
        max-width: 40.7rem;
    }
    .cookie-buttons {
        gap: 1.1rem;
    }
    .cookie-button {
        font-size: 1rem;
        width: 9.2rem;
        padding: 0.5rem;
        border-radius: 0.75rem;
    }
}

@media screen and (max-width: 692px) {
    .cookie {
        padding: 1.2rem 0;
    }
    .cookie-container > p {
        line-height: 120%;
        max-width: none;
        text-align: center;
    }
    .cookie-buttons {
        gap: 2.1rem;
    }
    .cookie-button {
        font-size: 1.51rem;
        width: 11.8rem;
        padding: 1.1rem;
        border-radius: 1rem;
    }
    .cookie-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}

/* banner */

.banner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 23.3rem 0 16rem 0;
}
.banner-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5rem;
}
.banner-title {
    color: var(--White, #FFF);
    font-size: 5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    max-width: 147rem;
}
.banner-description {
    color: #FFF;
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    max-width: 100.3rem;
    margin-bottom: 1.1rem;
}
.banner-link {
    border-radius: 10rem;
    background: #6A3AAE;
    box-shadow: 0 10px 24px 0 rgba(106, 58, 174, 0.25);
    padding: 1.7rem 2.4rem;
    color: var(--White, var(--color-white-solid, #FFF));
    font-size: var(--font-size-16, 1.6rem);
    font-style: normal;
    font-weight: var(--font-weight-600, 600);
    line-height: var(--line-height-25_6, 2.56rem);
}
.banner-title br {
    display: none;
}

@media screen and (max-width: 1320px) {
	.banner {
		padding: 12rem 0 10.6rem 0;
	}
	.banner-container {
		gap: 2rem;
	}
	.banner-title {
		font-size: 2.8rem;
		max-width: 78.4rem;
	}
	.banner-description {
		font-size: 1.6rem;
		max-width: 53.5rem;
		margin-bottom: 1.6rem;
	}
	.banner-link {
		box-shadow: 0 5px 12px 0 rgba(106, 58, 174, 0.25);
		padding: 0.9rem 1.5rem;
		font-size: 1.2rem;
		line-height: 1.3rem;
	}
}
@media screen and (max-width: 992px) {
	.banner {
		padding: 9rem 0 11rem 0;
	}
	.banner-container {
		gap: 3rem;
	}
	.banner-title {
		font-size: 2.4rem;
		max-width: 68.6rem;
	}
	.banner-description {
		font-size: 1.4rem;
		max-width: 46.1rem;
		margin-bottom: 2rem;
	}
	.banner-link {
		font-size: 1.2rem;
		line-height: 1.3rem;
	}
}
@media screen and (max-width: 576px) {
    .banner {
        padding: 6rem 0 27.5rem 0;
    }
    .banner-container {
        gap: 1rem;
    }
    .banner-title {
        font-size: 1.9rem;
        width: 30rem;
    }
    .banner-title br {
        display: block;
    }
    .banner-description {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .banner-link {
        border-radius: 8.2rem;
        padding: 1.1rem 2.4rem;
        font-size: 1.2rem;
        line-height: 2.1rem;
        width: 100%;
        text-align: center;
    }
}

/* technology */

.technology {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}
.technology::before {
    content: '';
    background-image: url('/wp-content/uploads/2025/08/technology.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 119.8rem;
    height: 160.6rem;
    position: absolute;
    top: -10rem;
    right: 0;
    z-index: -1;
}
.technology-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.technology-container > h2 {
    color: #854B95;
    font-size: 5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
.technology-container > p {
    display: none;
}
.technology-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5.7rem;
}
.technology-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12.6rem;
    padding-top: 13.5rem;
}
.technology-item img {
    width: 31.8rem;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}
.technology-item h3 {
    color: var(--Dark-Gray, #37424C);
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 105%;
    padding-left: 7rem;
    min-height: 6.8rem;
}
.technology-item p {
    color: var(--Dark-Gray, #37424C);
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.03rem;
}
.technology-item:nth-child(1) img {
    width: 27.8rem;
    top: 2.9rem;
}
.technology-item:nth-child(3) img {
    width: 27.7rem;
    top: 2.9rem;
}
.technology-item:nth-child(1) h3 {
    padding-left: 7rem;
}
.technology-item:nth-child(3) h3 {
    padding-left: 7rem;
}

@media screen and (max-width: 1320px) {
	.technology {
		padding: 6rem 0 5.5rem 0;
	}
	.technology::before {
		width: 76.8rem;
        height: 103.6rem;
        top: -10rem;
	}
	.technology-container {
		gap: 4rem;
	}
	.technology-container > h2 {
		font-size: 2.8rem;
	}
	.technology-main {
		gap: 3rem;
	}
	.technology-item {
		gap: 6.5rem;
		padding-top: 7rem;
	}
	.technology-item img {
		width: 16.2rem;
	}
	.technology-item h3 {
		font-size: 1.8rem;
		padding-left: 4.2rem;
		min-height: 5.8rem;
	}
	.technology-item p {
		font-size: 1.6rem;
		letter-spacing: 0.016rem;
	}
	.technology-item:nth-child(1) img {
        width: 14.8rem;
        top: 1.5rem;
	}
	.technology-item:nth-child(3) img {
		width: 14.6rem;
        top: 1.5rem;
	}
	.technology-item:nth-child(1) h3 {
		padding-left: 6.6rem;
	}
	.technology-item:nth-child(3) h3 {
		padding-left: 6.6rem;
	}
}
@media screen and (max-width: 992px) {
	.technology {
		padding: 5rem 0 4.6rem 0;
	}
	.technology::before {
        width: 67.8rem;
        height: 94.6rem;
        top: -6rem;
	}
	.technology-container {
		gap: 6rem;
	}
	.technology-container > h2 {
        font-size: 2.6rem;
        max-width: 53rem;
	}
	.technology-container > h2 br {
		display: none;
	}
	.technology-main {
		gap: 1.3rem;
	}
	.technology-item {
		gap: 5.2rem;
		padding-top: 6.3rem;
	}
	.technology-item img {
		width: 14.9rem;
	}
	.technology-item h3 {
		font-size: 1.6rem;
		padding-left: 4.2rem;
		min-height: 5.1rem;
	}
	.technology-item h3 br {
		display: none;
	}
	.technology-item p {
		font-size: 1.4rem;
		letter-spacing: 0.014rem;
	}
	.technology-item:nth-child(1) img {
		width: 13.6rem;
		top: 1.4rem;
	}
	.technology-item:nth-child(3) img {
		width: 13.5rem;
		top: 1.4rem;
	}
	.technology-item:nth-child(1) h3 {
		padding-left: 6.6rem;
	}
	.technology-item:nth-child(3) h3 {
		padding-left: 6.6rem;
	}
	.technology-item:nth-child(2) h3 {
		max-width: 15rem;
	}
}
@media screen and (max-width: 576px) {
    .technology {
        padding: 3rem 0 3.5rem 0;
    }
    .technology::before {
        background-image: url('/wp-content/uploads/2025/08/technology-mob.png');
        width: 100%;
        height: 160.6rem;
        top: auto;
        bottom: -60rem;
        z-index: -2;
    }
    .technology-container {
        gap: 2.5rem;
    }
    .technology-container > h2 {
        font-size: 1.9rem;
    }
    .technology-container > p {
        display: block;
        color: var(--Dark-Gray, #37424C);
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        letter-spacing: 0.015rem;
    }
    .technology-main {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.4rem;
    }
    .technology-item {
        gap: 2.5rem;
        padding-top: 5.1rem;
    }
    .technology-item img {
        width: 14.3rem;
        left: auto;
        right: 2rem;
    }
    .technology-item h3 {
        font-size: 1.9rem;
        padding-left: 0;
        min-height: auto;
    }
    .technology-item p {
        font-size: 1.4rem;
        letter-spacing: 0.014rem;
    }
    .technology-item:nth-child(1) img {
        width: 12rem;
        top: 0;
    }
    .technology-item:nth-child(2) img {
        transform: rotate(90deg);
		right: 0;
    }
    .technology-item:nth-child(3) img {
        width: 12.2rem;
        top: 0;
        right: 2rem;
    }
    .technology-item:nth-child(1) h3 {
        padding-left: 0;
    }
    .technology-item:nth-child(3) h3 {
        padding-left: 0;
    }
    .technology-item:nth-child(1) {
        padding-top: 3.6rem;
    }
    .technology-item:nth-child(3) {
        padding-top: 6.3rem;
    }
	.technology-item:nth-child(2) h3 {
        max-width: none;
    }
	.technology-item h3 br {
        display: block;
    }
}

/* about */

.about-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 17.8rem;
    min-width: 85.4rem;
}
.about-left h2 {
    color: var(--White, #FFF);
    font-size: 8rem;
    font-style: italic;
    font-weight: 500;
    line-height: 110%;
}
.about {
    height: 100vh !important;
	max-height: 100vh !important;
    overflow: hidden;
    display: flex;
    left: 0;
    background: linear-gradient(270deg, rgba(106, 58, 174, 0.70) 0%, rgba(145, 65, 191, 0.70) 47.6%, rgba(201, 167, 228, 0.70) 95.68%);
}
.about-wrap {
    height: 100vh;
    display: flex;
    will-change: transform;
}
.about-item {
    position: relative;
    width: 48rem;
    min-width: 48rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 4.8rem 2.4rem;
    gap: 3rem;
	overflow: hidden;
}
.about-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 25%, rgba(58, 43, 73, 0.90) 65%);
}
.about-item__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: .8s all;
}
.about-item:hover .about-item__img {
	transform: scale(1.1);
}
.about-item__title {
    position: relative;
    z-index: 3;
    color: #FFF;
    font-size: 2.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.about-item p {
    position: relative;
    z-index: 3;
    color: #FFF;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 121.979%;
    min-height: 18.8rem;
	opacity: 0;
	transition: .8s all;
}
.about-slider {
    display: none;
}
.about-item:hover p {
	opacity: 1;
}

@media screen and (max-width: 1320px) {
	.about-left {
		padding-left: 8.3rem;
		min-width: 41.7rem;
	}
	.about-left h2 {
		font-size: 4.269rem;
	}
	.about-item {
		width: 25.6rem;
		min-width: 25.6rem;
		padding: 0rem 0rem 1.2rem 1.2rem;
		gap: 1.5rem;
	}
	.about-item__title {
		font-size: 1.5rem;
	}
	.about-item p {
		font-size: 1.3rem;
		min-height: 12.8rem;
	}
}
@media screen and (max-width: 992px) {
	.about {
        height: auto;
        flex-direction: column;
        background: linear-gradient(270deg, rgba(106, 58, 174, 0.70) 0%, rgba(145, 65, 191, 0.70) 47.6%, rgba(201, 167, 228, 0.70) 95.68%);
    }
	.pin-spacer {
		height: auto !important;
	}
	.about {
    	height: auto !important;
		max-height: 100% !important;
	}
	.about-left {
        padding: 4rem;
        min-width: 100%;
	}
	.about-left h2 {
		font-size: 3.7rem;
	}
	.about-left h2 br {
		display: none;
	}
	.about-wrap {
		display: none;
	}
    .about-slider {
        display: flex;
        position: relative;
        align-items: center;
    }
    .about-slider > svg {
        width: 1.9rem;
        height: auto;
        position: absolute;
        z-index: 3;
        right: 3.3rem;
		transition: .3s all;
    }
    .about_swiper {
        width: 100%;
		height: 60rem;
    }
    .about_swiper .swiper-slide {
        height: auto;
    }
	.about-item {
        width: 100%;
        min-width: 100%;
		padding: 2rem 4rem;
		gap: 2rem;
		height: 100%;
	}
	.about-item__title {
		font-size: 1.8rem;
	}
	.about-item p {
		font-size: 1.4rem;
		min-height: 10rem;
		opacity: 1;
	}
}
@media screen and (max-width: 576px) {
	.about {
    	height: auto !important;
		max-height: 100% !important;
	}
	.pin-spacer {
		height: auto !important;
	}
    .about-left {
        padding: 5rem 2rem;
        min-width: auto;
    }
    .about-left h2 {
        font-size: 4rem;
    }
    .about {
        height: auto;
        flex-direction: column;
        background: linear-gradient(270deg, rgba(106, 58, 174, 0.70) 0%, rgba(145, 65, 191, 0.70) 47.6%, rgba(201, 167, 228, 0.70) 95.68%);
    }
	.about-wrap {
		display: none;
	}
    .about-slider {
        display: flex;
        position: relative;
        align-items: center;
    }
    .about-slider > svg {
        width: 1.9rem;
        height: auto;
        position: absolute;
        z-index: 3;
        right: 3.3rem;
    }
    .about_swiper {
        width: 100%;
    }
    .about_swiper .swiper-slide {
        height: auto;
    }
    .about-item {
        width: 100%;
        min-width: 100%;
        height: 60rem;
        padding: 3rem 2rem;
        gap: 1.5rem;
    }
    .about-item__title {
        font-size: 1.8rem;
        min-height: 8.8rem;
    }
    .about-item p {
        font-size: 1.5rem;
        min-height: 14.6rem;
    }
}

/* banner2 */

.banner2 {
    padding: 18.2rem;
    position: relative;
}
.banner2-fon {
    width: 100%;
    height: 96.7rem;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.banner2-fon.mob {
    display: none;
}
.banner2-container {
    display: flex;
    flex-direction: column;
    gap: 6.1rem;
    position: relative;
    z-index: 2;
}
.banner2-title {
    color: var(--White, #FFF);
    text-shadow: 0 4px 15px rgba(106, 58, 174, 0.20);
    font-size: 5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
.banner2-container ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 2.8rem;
    margin-bottom: 0.5rem;
}
.banner2-container li {
    color: #FFF;
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}
.banner2-link {
    padding: 1.7rem 2.8rem;
    margin-right: auto;
    border-radius: 10rem;
    background: #6A3AAE;
    box-shadow: 0 10px 24px 0 rgba(106, 58, 174, 0.25);
    color: var(--White, var(--color-white-solid, #FFF));
    font-size: var(--font-size-16, 1.6rem);
    font-style: normal;
    font-weight: var(--font-weight-600, 600);
    line-height: var(--line-height-25_6, 2.56rem);
}
.banner2-subtitle {
    display: none;
}

@media screen and (max-width: 1320px) {
	.banner2 {
		padding: 9rem 9.8rem 12rem 9.8rem;
	}
	.banner2-fon {
		height: 51.7rem;
	}
	.banner2-container {
		gap: 2.7rem;
	}
	.banner2-title {
		text-shadow: 0 2.135px 8.004px rgba(106, 58, 174, 0.20);
		font-size: 2.8rem;
	}
	.banner2-container ul {
		gap: 0.6rem;
		padding-left: 1.8rem;
		margin-bottom: 0;
	}
	.banner2-container li {
		font-size: 1.6rem;
	}
	.banner2-link {
		padding: 0.9rem 1.5rem;
		box-shadow: 0 5px 12px 0 rgba(106, 58, 174, 0.25);
		font-size: 1.4rem;
		line-height: 1.3rem;
	}
}
@media screen and (max-width: 992px) {
	.banner2 {
		padding: 5rem 4.4rem 9rem 4.4rem;
	}
	.banner2-fon {
		height: 50.6rem;
	}
	.banner2-container {
		gap: 2rem;
	}
	.banner2-title {
		text-shadow: 0 2.135px 8.004px rgba(106, 58, 174, 0.20);
		font-size: 2.6rem;
	}
	.banner2-container ul {
		gap: 1.3rem;
		padding-left: 1.4rem;
		margin-bottom: 3rem;
	}
	.banner2-container li {
		font-size: 1.4rem;
		line-height: 2.56rem;
	}
}
@media screen and (max-width: 576px) {
    .banner2 {
        padding: 1rem 0 20rem 0;
    }
    .banner2-fon {
        height: 65.2rem;
        display: none;
    }
    .banner2-fon.mob {
        display: block;
    }
    .banner2-container {
        gap: 0;
    }
    .banner2-subtitle {
        display: block;
        color: #F7D9FF;
        font-size: 2rem;
        font-style: normal;
        font-weight: var(--font-weight-700, 700);
        line-height: var(--line-height-61_6, 6.16rem);
    }
    .banner2-title {
        text-shadow: none;
        font-size: 2rem;
        margin-bottom: 2.4rem;
    }
    .banner2-container ul {
        gap: 0.8rem;
        padding-left: 2rem;
        margin-bottom: 3rem;
    }
    .banner2-container li {
        font-size: 1.5rem;
		line-height: 120%;
    }
    .banner2-link {
        padding: 1.1rem 0.5rem;
        width: 100%;
        box-shadow: 0 8px 19px 0 rgba(106, 58, 174, 0.25);
        font-size: 1.2rem;
        line-height: 2.1rem;
        text-align: center;
    }
}

/* components */

.components {
    background-image: url('/wp-content/uploads/2025/08/components.png');
    background-position: center top -32rem;
    background-repeat: no-repeat;
    background-size: 100% 558rem;
    padding: 8rem 0 9.4rem 0;
    overflow: hidden;
	position: relative;
}
.components-container {
    display: flex;
    flex-direction: column;
}
.components-name {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 20rem;
}
.components-name h2 {
    color: #854B95;
    font-size: 5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
.components-name p {
    color: #854B95;
    font-size: 4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}
.components-main {
    display: flex;
    flex-direction: column;
}
.components-item {
    position: relative;
    display: flex;
    padding-right: 22rem;
}
.components-item__name {
    display: flex;
    flex-direction: column;
    gap: 9.7rem;
    position: relative;
    width: 100%;
    max-width: 61.4rem;
    margin-left: auto;
}
.components-item__name span {
    color: #EFDEFE;
    font-size: 40rem;
    font-style: italic;
    font-weight: 900;
    line-height: 60%;
    letter-spacing: 0.4rem;
    position: absolute;
    top: -10.7rem;
    left: 0;
}
.components-item__name h3 {
    color: var(--Dark-Gray, #37424C);
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 105%;
    padding-left: 9.2rem;
    position: relative;
    z-index: 3;
}
.components-item__name p {
    color: var(--Dark-Gray, #000);
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.03rem;
}
.components-item__name p sub {
    position: relative;
    top: -1rem;
}
.components-item:nth-child(1) > img {
    position: absolute;
    width: 105.8rem;
    left: -17rem;
    top: -50.7rem;
}
.components-item:nth-child(1) {
    margin-bottom: 19.2rem;
}
.components-item:nth-child(2) {
    margin-bottom: 35.1rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 14.5rem;
    align-items: center;
    padding-right: 13.3rem;
}
.components-item__img {
    border-radius: 3rem;
    background: var(--color-white-55, rgba(255, 255, 255, 0.55));
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(4px);
    padding: 3rem;
    position: relative;
    width: 81.4rem;
    min-width: 81.4rem;
    height: 53.6rem;
}
.components-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}
.components-item__img .components-item__img-1 {
    width: 34.2rem;
    position: absolute;
    height: auto;
    border-radius: 0;
    top: -21.3rem;
    right: -9.3rem;
}
.components-item__img .components-item__img-2 {
    width: 32.2rem;
    position: absolute;
    height: auto;
    border-radius: 0;
    bottom: -11.7rem;
    left: -9.4rem;
}
.components-item:nth-child(2) .components-item__name {
    gap: 14.1rem;
    max-width: 69.3rem;
}
.components-item:nth-child(2) .components-item__name p {
    text-align: right;
}
.components-item:nth-child(2) .components-item__name span {
    left: auto;
    right: 0;
    color: #FFF;
    top: -10.5rem;
}
.components-item:nth-child(2) .components-item__name h3 {
    text-align: right;
    padding-left: 0;
    padding-right: 10.9rem;
}
.components-item:nth-child(3) {
    margin-bottom: 22.1rem;
    gap: 14.5rem;
    align-items: center;
    padding-right: 22rem;
}
.components-item:nth-child(3) > img {
    width: 76.9rem;
    position: absolute;
    left: 34.8rem;
    top: -23.4rem;
}
.components-item:nth-child(3) .components-item__name span {
    color: #FFF;
}
.components-item:nth-child(4) {
    margin-bottom: 35.4rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 14.5rem;
    align-items: center;
    padding-right: 13.3rem;
}
.components-item:nth-child(4) .components-item__name {
    gap: 4.2rem;
    max-width: 61.4rem;
}
.components-item:nth-child(4) .components-item__name p {
    text-align: right;
}
.components-item:nth-child(4) .components-item__name span {
    left: auto;
    right: 0;
    color: #FFF;
    top: -12rem;
}
.components-item:nth-child(4) .components-item__name h3 {
    text-align: right;
    padding-left: 0;
    padding-right: 10.9rem;
}
.components-item:nth-child(4) .components-item__img img {
    width: 88.3rem;
    position: absolute;
    top: 3rem;
    right: 3rem;
    height: auto;
}
.components-item:nth-child(5) {
    margin-bottom: 39.9rem;
    align-items: center;
    padding-right: 22rem;
}
.components-item:nth-child(5) > img {
    width: 124rem;
    position: absolute;
    left: 0;
    top: -31rem;
    z-index: 2;
}
.components-item:nth-child(5) p {
	z-index: 4;
}
.components-item:nth-child(6) {
    margin-bottom: 22.3rem;
    align-items: center;
    padding-right: 0;
    padding-left: 21.7rem;
}
.components-item:nth-child(6) > img {
    width: 98.9rem;
    position: absolute;
    right: 9rem;
    top: -42rem;
    z-index: 2;
}
.components-item:nth-child(6) .components-item__name {
    margin-left: 0;
}
.components-item:nth-child(6) .components-item__name p {
    text-align: right;
}
.components-item:nth-child(6) .components-item__name span {
    left: auto;
    right: 0;
}
.components-item:nth-child(6) .components-item__name h3 {
    text-align: right;
    padding-left: 0;
    padding-right: 10.9rem;
}
.components-item:nth-child(7) {
    margin-bottom: 0;
    align-items: flex-end;
    padding-right: 13.5rem;
    padding-left: 13rem;
    gap: 14.5rem;
}
.components-item:nth-child(7) .components-item__name {
    margin-left: 0;
    gap: 7.4rem;
    max-width: 69.9rem;
}
.components-item:nth-child(7) .components-item__name span {
    top: -13rem;
}
.components-item:nth-child(7) .components-item__img img {
    width: 87.5rem;
    height: auto;
    border-radius: 0;
    position: absolute;
    top: -6rem;
    left: 3rem;
}

@media screen and (max-width: 1320px) {
	.components {
        background-position: center top -15rem;
        background-size: 100% 299rem;
        padding: 6.5rem 0 5.2rem 0;
	}
	.components-name {
        gap: 1.3rem;
        margin-bottom: 14.5rem;
	}
	.components-name h2 {
		font-size: 2.8rem;
	}
	.components-name p {
		font-size: 2rem;
	}
	.components-item {
		padding-right: 11.3rem;
	}
	.components-item__name {
        gap: 5rem;
        max-width: 32.7rem;
	}
	.components-item__name span {
        font-size: 21.4rem;
        letter-spacing: 0.214rem;
        top: -5.7rem;
	}
	.components-item__name h3 {
		font-size: 2.2rem;
        padding-left: 4.9rem;
	}
	.components-item__name p {
        font-size: 1.6rem;
        letter-spacing: 0.016rem;
	}
	.components-item__name p sub {
		top: -0.5rem;
	}
	.components-item:nth-child(1) > img {
        width: 58.8rem;
        left: -4rem;
        top: -29.7rem;
	}
	.components-item:nth-child(1) {
		margin-bottom: 10.2rem;
	}
	.components-item:nth-child(2) {
        margin-bottom: 18.7rem;
        gap: 10.6rem;
        padding-right: 5rem;
	}
	.components-item__img {
        border-radius: 1.6rem;
        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.06);
        padding: 2rem;
        width: 43.4rem;
        min-width: 43.4rem;
        height: 28.6rem;
	}
	.components-item__img img {
		border-radius: 0.8rem;
	}
	.components-item__img .components-item__img-1 {
        width: 18.2rem;
        top: -11.4rem;
        right: -5rem;
	}
	.components-item__img .components-item__img-2 {
        width: 17.1rem;
        bottom: -6.2rem;
        left: -5rem;
	}
	.components-item:nth-child(2) .components-item__name {
		gap: 7.4rem;
        max-width: 36.9rem;
	}
	.components-item:nth-child(2) .components-item__name span {
		top: -5.6rem;
	}
	.components-item:nth-child(2) .components-item__name h3 {
		padding-right: 5.8rem;
	}
	.components-item:nth-child(3) {
		margin-bottom: 11.7rem;
        padding-right: 11.3rem;
	}
	.components-item:nth-child(3) > img {
        width: 41rem;
        left: 17.3rem;
        top: -12.5rem;
	}
	.components-item:nth-child(4) {
        margin-bottom: 16.9rem;
        gap: 10.6rem;
        padding-right: 5rem;
	}
	.components-item:nth-child(4) .components-item__name {
        gap: 2rem;
        max-width: 32.7rem;
	}
	.components-item:nth-child(4) .components-item__name span {
		top: -6.4rem;
	}
	.components-item:nth-child(4) .components-item__name h3 {
		padding-right: 5.8rem;
	}
	.components-item:nth-child(4) .components-item__img img {
        width: 47rem;
        top: 2rem;
        right: 2rem;
	}
	.components-item:nth-child(5) {
        margin-bottom: 21.2rem;
        padding-right: 11.3rem;
	}
	.components-item:nth-child(5) > img {
        width: 68.8rem;
        top: -17rem;
        left: -8rem;
	}
	.components-item:nth-child(6) {
        margin-bottom: 11.8rem;
        padding-left: 10.9rem;
	}
	.components-item:nth-child(6) > img {
        width: 50.7rem;
        right: 1rem;
        top: -22rem;
	}
	.components-item:nth-child(6) .components-item__name h3 {
		padding-right: 5.8rem;
	}
	.components-item:nth-child(7) {
        padding-right: 6.8rem;
        padding-left: 9rem;
        gap: 6rem;
	}
	.components-item:nth-child(7) .components-item__name {
		gap: 3.8rem;
		max-width: 37.3rem;
	}
	.components-item:nth-child(7) .components-item__name span {
		top: -7rem;
	}
	.components-item:nth-child(7) .components-item__img img {
        width: 46.3rem;
        top: -2.5rem;
        left: 2rem;
	}
}
@media screen and (max-width: 992px) {
	.components {
        background-position: center top -15rem;
        background-size: 100% 295rem;
        padding: 4.8rem 0 5rem 0;
	}
	.components-name {
		gap: 1.5rem;
		margin-bottom: 14.2rem;
	}
	.components-name h2 {
		font-size: 2.6rem;
	}
	.components-name p {
		font-size: 1.8rem;
	}
	.components-item {
		padding-right: 1rem;
	}
	.components-item__name {
		gap: 5rem;
		max-width: 32.7rem;
	}
	.components-item__name span {
		font-size: 21.4rem;
		letter-spacing: 0.214rem;
		top: -5.7rem;
	}
	.components-item__name h3 {
		font-size: 2.2rem;
		padding-left: 4.9rem;
	}
	.components-item__name p {
		font-size: 1.4rem;
		letter-spacing: 0.014rem;
	}
	.components-item__name p sub {
		top: -0.6rem;
	}
	.components-item:nth-child(1) > img {
		width: 57.8rem;
        left: -17rem;
        top: -32.7rem;
	}
	.components-item:nth-child(1) {
		margin-bottom: 12rem;
	}
	.components-item:nth-child(2) {
		margin-bottom: 18rem;
		gap: 6.2rem;
		padding-right: 0;
	}
	.components-item__img {
        border-radius: 1.6rem;
        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.06);
        padding: 2rem;
        width: 43.4rem;
        min-width: 43.4rem;
        height: 28.6rem;
        margin-right: -6.3rem;
	}
	.components-item__img img {
		border-radius: 0.8rem;
	}
	.components-item__img .components-item__img-1 {
		width: 18.2rem;
		top: -12.2rem;
		right: -0.6rem;
	}
	.components-item__img .components-item__img-2 {
		width: 17.1rem;
		bottom: -7rem;
		left: -7rem;
	}
	.components-item:nth-child(2) .components-item__name {
		gap: 7.4rem;
		max-width: 27.6rem;
	}
	.components-item:nth-child(2) .components-item__name span {
		top: -5.6rem;
	}
	.components-item:nth-child(2) .components-item__name h3 {
		padding-right: 5.8rem;
	}
	.components-item:nth-child(3) {
		margin-bottom: 12rem;
		padding-right: 0.5rem;
	}
	.components-item:nth-child(3) > img {
		width: 41rem;
		left: 2.4rem;
		top: -12.5rem;
	}
	.components-item:nth-child(4) {
		margin-bottom: 19.5rem;
		gap: 8.1rem;
		padding-right: 0;
	}
	.components-item:nth-child(4) .components-item__name {
		gap: 2rem;
		max-width: 32.7rem;
	}
	.components-item:nth-child(4) .components-item__name span {
		top: -6.4rem;
	}
	.components-item:nth-child(4) .components-item__name h3 {
		padding-right: 5.8rem;
	}
	.components-item:nth-child(4) .components-item__img {
		margin-right: -8rem;
	}
	.components-item:nth-child(4) .components-item__img img {
        width: 47.3rem;
        top: 2rem;
        right: 2rem;
	}
	.components-item:nth-child(5) {
		margin-bottom: 19rem;
		padding-right: 0.5rem;
	}
	.components-item:nth-child(5) > img {
        width: 68.8rem;
        top: -17rem;
        left: -22rem;
	}
	.components-item:nth-child(6) {
		margin-bottom: 12rem;
		padding-left: 0.5rem;
	}
	.components-item:nth-child(6) > img {
        width: 50.7rem;
        right: -7rem;
        top: -22rem;
	}
	.components-item:nth-child(6) .components-item__name h3 {
		padding-right: 5.8rem;
	}
	.components-item:nth-child(7) {
		padding-right: 7rem;
        padding-left: 0;
        gap: 14.5rem;
	}
	.components-item:nth-child(7) .components-item__name {
		gap: 3.8rem;
		max-width: 37rem;
	}
	.components-item:nth-child(7) .components-item__name span {
		top: -7rem;
	}
	.components-item:nth-child(7) .components-item__img {
		margin-left: -6.8rem;
		margin-right: 0;
	}
	.components-item:nth-child(7) .components-item__img img {
        width: 46rem;
        top: -2.5rem;
        left: 2rem;
	}
}
@media screen and (max-width: 576px) {
    .components {
        background-image: url('/wp-content/uploads/2025/08/components-mob.png');
        background-position: center;
        background-size: cover;
        padding: 3rem 0 4rem 0;
		overflow: hidden;
    }
    .components-name {
        gap: 1rem;
        margin-bottom: 10.5rem;
    }
    .components-name h2 {
        font-size: 2.2rem;
    }
    .components-name p {
        font-size: 1.8rem;
    }
    .components-name p br {
        display: none;
    }
    .components-item {
        padding-right: 2rem;
    }
    .components-item__name {
        gap: 5.5rem;
        max-width: 24.8rem;
    }
    .components-item__name span {
        font-size: 19rem;
        letter-spacing: 0.19rem;
        top: -5.5rem;
        left: 10.6rem;
    }
    .components-item__name h3 {
        font-size: 1.8rem;
        padding-left: 5.9rem;
    }
    .components-item__name p {
        font-size: 1.5rem;
        letter-spacing: 0.015rem;
    }
    .components-item__name p sub {
        top: -0.5rem;
    }
    .components-item:nth-child(1) > img {
        width: 19rem;
        left: -3rem;
        top: -14.4rem;
    }
    .components-item:nth-child(1) {
        margin-bottom: 26.6rem;
    }
    .components-item:nth-child(2) {
        margin-bottom: 26.7rem;
        justify-content: flex-start;
        gap: 0;
        padding: 0 2rem;
    }
    .components-item__img {
        border-radius: 1.5rem;
        padding: 1rem;
        position: absolute;
        width: 28rem;
        min-width: 28rem;
        height: 18.4rem;
        left: 11.2rem;
        top: -21.4rem;
    }
    .components-item__img img {
        border-radius: 0.8rem;
    }
    .components-item__img .components-item__img-1 {
        width: 12.8rem;
        top: -3.6rem;
        right: auto;
        left: -7.9rem;
    }
    .components-item__img .components-item__img-2 {
        width: 9.5rem;
        bottom: -4.1rem;
        left: 8.3rem;
    }
    .components-item:nth-child(2) .components-item__name {
        gap: 7.5rem;
        max-width: 28rem;
    }
    .components-item:nth-child(2) .components-item__name p {
        text-align: left;
    }
    .components-item:nth-child(2) .components-item__name span {
        left: 0;
        right: auto;
        top: -5.4rem;
    }
    .components-item:nth-child(2) .components-item__name h3 {
        text-align: left;
        padding-left: 9.1rem;
        padding-right: 0;
    }
    .components-item:nth-child(3) {
        margin-bottom: 28.1rem;
        gap: 5.4rem;
        padding: 0 2rem;
    }
    .components-item:nth-child(3) > img {
        width: 24.6rem;
        left: -1.4rem;
        top: -23.4rem;
    }
    .components-item:nth-child(4) {
        margin-bottom: 27.4rem;
        justify-content: flex-start;
        gap: 0;
        padding: 0 1rem 0 2rem;
        flex-direction: row;
    }
    .components-item:nth-child(4) .components-item__name {
        gap: 2.9rem;
        max-width: 30rem;
        margin-left: 0;
    }
    .components-item:nth-child(4) .components-item__name p {
        text-align: left;
    }
    .components-item:nth-child(4) .components-item__name span {
        left: 0;
        right: auto;
        top: -6.2rem;
    }
    .components-item:nth-child(4) .components-item__name h3 {
        text-align: left;
        padding-left: 9.1rem;
        padding-right: 0;
    }
    .components-item:nth-child(4) .components-item__img {
        top: -22rem;
    }
    .components-item:nth-child(4) .components-item__img img {
        width: 31rem;
        top: 1rem;
        right: 1rem;
    }
    .components-item:nth-child(5) {
        margin-bottom: 26.8rem;
        padding: 0 2rem;
    }
    .components-item:nth-child(5) > img {
        width: 49.1rem;
        top: -24rem;
        left: -17rem;
    }
    .components-item:nth-child(5) .components-item__name h3 br {
        display: none;
    }
    .components-item:nth-child(5) .components-item__name p {
        max-width: 20rem;
    }
    .components-item:nth-child(6) {
        margin-bottom: 28rem;
        padding: 0 2rem;
    }
    .components-item:nth-child(6) > img {
        width: 31.8rem;
        right: -1rem;
        top: -30rem;
    }
    .components-item:nth-child(6) .components-item__name {
        margin-left: 0;
    }
    .components-item:nth-child(6) .components-item__name p {
        text-align: left;
    }
    .components-item:nth-child(6) .components-item__name span {
        left: 2rem;
        right: auto;
    }
    .components-item:nth-child(6) .components-item__name h3 {
        text-align: left;
        padding-left: 9.1rem;
        padding-right: 0;
    }
    .components-item:nth-child(7) {
        margin-bottom: 0;
        padding: 0 2rem;
        gap: 0;
    }
    .components-item:nth-child(7) .components-item__name {
        margin-left: auto;
        gap: 4.3rem;
        max-width: 24.8rem;
    }
    .components-item:nth-child(7) .components-item__name span {
        top: -6.7rem;
    }
    .components-item:nth-child(7) .components-item__img {
        left: auto;
        right: 11.2rem;
    }
    .components-item:nth-child(7) .components-item__img img {
        width: 30.5rem;
        top: -2rem;
        left: 1rem;
    }
}


.parallax-el {
  will-change: transform;
  transform: translate3d(0,0,0); /* форсируем GPU */
  backface-visibility: hidden;
}

/* Аккуратно отключаем эффект пользователям с reduced motion */
@media (prefers-reduced-motion: reduce) {
  .parallax-el { transform: none !important; }
}