@font-face {
    font-family: "Tilda Sans VF";
    src: url('../fonts/TildaSans-VF.ttf');
}

html {
    font-size: calc(100vw / 1920 * 10);
}
body {
    font-family: 'Tilda Sans VF';
    font-weight: 400;
    transition: all .2s linear !important;
    min-height: 100vh;
    font-size: 1.6rem;
    color: #FFF;
    background: #19497A;
}
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: #FFF;
}
input, textarea, select {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    outline: none;
	transition: all .2s linear;
}
.container {
    max-width: 179rem;
    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;
    padding-top: 9rem;
    overflow: hidden;
}

/* header */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #FFF;
    background-color: rgba(255, 255, 255, 0.15);
    background-image: url('/wp-content/uploads/2025/10/header-2.png');
    padding: 3rem 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
}
.logo img {
    width: 20rem;
}
.burger-open {
    display: none;
}
.header-container nav ul {
    display: flex;
    align-items: flex-start;
    gap: 7rem;
}
.header-container nav ul li {
    display: flex;
    list-style: none;
	position: relative;
    z-index: 2;
}
.header-container nav ul li a {
    color: #FFF;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.header-container nav ul li a:hover {
    font-weight: 700;
}
.menu-mobile {
    display: none;
}

@media screen and (max-width: 992px) {
	html {
		font-size: calc(100vw / 375 * 10);
	}
	.container {
		max-width: 33.5rem;
	}
	main {
		padding-top: 6.6rem;
	}
	header {
		padding: 2.2rem 0;
	}
	.logo img {
		width: 12.5rem;
	}
	.header-container {
		flex-wrap: wrap;
		gap: 5.4rem;
	}
	.burger-open {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 2.4rem;
		height: 2.2rem;
		gap: 0.7rem;
		position: relative;
		z-index: 999;
	}
	.bar {
		height: 2px;
		width: 100%;
		background: #FFF;
		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.7rem, -0.7rem);
	}
	.header-container nav {
		display: none;
	}
	.menu-mobile.active {
		display: flex;
        width: 100%;
        justify-content: center;
		margin-bottom: 7.6rem;
	}
	.menu-mobile nav {
		display: block;
	}
	.header-container nav ul {
		flex-direction: column;
		gap: 2.2rem;
	}
	.header-container nav ul li a {
		font-size: 1.5rem;
	}
}

/* footer */

footer {
    position: relative;
}
footer::before {
    content: '';
    background-image: url('/wp-content/uploads/2025/08/footer.svg');
    right: 18.5rem;
    bottom: 4.6rem;
    position: absolute;
    width: 148.6rem;
    height: 21.4rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	    z-index: -1;
}
.footer-container {
    padding: 0 4rem 4rem 4rem;
    border-radius: 2rem 2rem 0 0;
    border-top: 1px solid var(--ELEMENTS-white, #FFF);
    border-right: 1px solid var(--ELEMENTS-white, #FFF);
    border-left: 1px solid var(--ELEMENTS-white, #FFF);
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0;
}
.footer-logo {
    display: flex;
}
.footer-logo img {
    width: 28.3rem;
}
.footer-main nav {
	position: relative;
    z-index: 3;
}
.footer-container nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}
.footer-container nav ul li {
    display: flex;
    list-style: none;
}
.footer-container nav ul li a {
    color: #FFF;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5rem;
    text-transform: uppercase;
}
.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    min-height: 14.8rem;
    justify-content: center;
	position: relative;
    z-index: 3;
}
.footer-contacts a {
    color: #FFF;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer-contacts a.footer-email {
    font-weight: 600;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8.1rem;
	position: relative;
    z-index: 3;
}
.footer-bottom a {
    color: #FFF;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5rem;
}

@media screen and (max-width: 992px) {
	footer::before {
		right: 0;
		left: 0;
		margin: 0 auto;
		bottom: 4.4rem;
		width: 29rem;
		height: 4.2rem;
	}
	.footer-container {
		padding: 4rem 4rem 12.6rem 4rem;
		border-radius: 2rem 2rem 0 0;
	}
	.footer-main {
		flex-direction: column;
		gap: 3.5rem;
		padding: 0;
	}
	.footer-logo img {
		width: 25.4rem;
	}
	.footer-container nav ul {
		align-items: center;
	}
	.footer-contacts {
		align-items: center;
		min-height: auto;
	}
	.footer-contacts a {
		font-size: 2.8rem;
	}
	.footer-contacts a.footer-email {
		font-size: 1.8rem;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 1.5rem;
	}
	.footer-bottom a {
		text-align: center;
	}
}

/* contacts */

.contacts {
	margin-bottom: 10rem;
    position: relative;
}
.contacts-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.contacts-container > h2 {
    color: var(--ELEMENTS-white, #FFF);
    text-align: center;
    font-size: 10rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}
.contacts-main {
    display: flex;
    align-items: center;
    gap: 15.4rem;
}
.contacts-form {
    width: 100%;
    max-width: 81.8rem;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}
.contacts-form > input {
    color: #FFF;
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 100%;
    border-radius: 2rem;
    border: 2px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(17.8px);
    padding: 2rem;
}
.contacts-form > input::placeholder {
    color: #FFF;
}
.contacts-form > input:hover, .contacts-form > input:focus {
    background: rgba(255, 255, 255, 0.42);
}
.contacts-form > textarea {
    color: #FFF;
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 100%;
    border-radius: 2rem;
    border: 2px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(17.8px);
    padding: 2rem;
    height: 18rem;
    min-height: 18rem;
}
.contacts-form > textarea::placeholder {
    color: #FFF;
}
.contacts-form > textarea:hover, .contacts-form > textarea:focus {
    background: rgba(255, 255, 255, 0.42);
}
.contacts-form__submit {
    border-radius: 4rem;
    border: 2px solid #FFF;
    display: flex;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    align-items: center;
    gap: 1rem;
    margin-right: auto;
	background: transparent;
	transition: .4s all;
}
.contacts-form__submit p {
    color: #FFF;
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.contacts-form__submit-icon {
    width: 5.5rem;
    height: 5.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: #FFF;
}
.contacts-form__submit-icon svg {
    width: 2.1rem;
    height: auto;
}
.contacts-form__agreement {
    position: relative;
    display: flex;
    align-items: center;
}
.contacts-form__agreement label {
    cursor: pointer;
    padding-left: 3.2rem;
    color: #FFF;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.contacts-form__agreement label a {
    color: #FFF;
    text-decoration: underline;
}
.contacts-form__agreement input[type=checkbox]:before {
    content: "";
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.3rem;
    border: 1px solid transparent;
    position: absolute;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.15);
    margin-top: -1.2rem;
}
.contacts-form__agreement input[type=checkbox]:checked:before {
    background:transparent;
    background-image: url('/wp-content/uploads/2025/08/checkbox.svg');
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    background-size: 2.4rem;
    border-color: transparent;
}
.contacts-form__agreement input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
}
.contacts-form__agreement input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}
.contacts-form__agreementinput[type="checkbox"]:checked {
    background-image: none;
}
.contacts-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

@media screen and (max-width: 992px) {
    .contacts {
		margin-bottom: 8rem;
	}
	.contacts-container {
		gap: 3.5rem;
	}
	.contacts-container > h2 {
		font-size: 4rem;
		max-width: 26.5rem;
		margin: 0 auto;
	}
	.contacts-main {
		flex-direction: column;
		gap: 8rem;
	}
	.contacts-form {
		gap: 2rem;
	}
	.contacts-form > input {
		font-size: 1.4rem;
	}
	.contacts-form > textarea {
		font-size: 1.4rem;
	}
	.contacts-form__submit {
		border-radius: 5rem;
        margin-left: auto;
	}
	.contacts-form__submit p {
		font-size: 1.6rem;
	}
	.contacts-form__agreement {
		max-width: 25rem;
        margin: 0 auto;
	}
	.contacts-form__agreement label {
		font-size: 1.4rem;
	}
	.contacts-col {
		align-items: center;
		gap: 1rem;
	}
}

/* banner2 */

.banner2 {
    margin-bottom: 5rem;
}
.banner2-main {
    border-radius: 2.014rem;
    border: 2px solid var(--ELEMENTS-white, #FFF);
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(17.8px);
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner2-main h2 {
    color: #FFF;
    font-size: 6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    max-width: 109.6rem;
}
.banner2-main h2 b {
    font-weight: 700;
}

@media screen and (max-width: 992px) {
    .banner2 {
		margin-bottom: 8rem;
	}
	.banner2-main {
		padding: 4.4rem 0;
	}
	.banner2-main h2 {
		font-size: 2.8rem;
		text-align: center;
	}
}

/* indications */

.indications {
    margin-bottom: 10rem;
    position: relative;
}
.indications::before {
    content: '';
    width: 80rem;
    height: 80rem;
    transform: rotate(-51.512deg);
    border-radius: 10rem;
    border: 1px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    position: absolute;
    top: -11rem;
    z-index: -1;
    right: -64.6rem;
}
.indications-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.title {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 6rem;
    font-style: normal;
    text-align: center;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.title b {
    font-weight: 700;
}
.indications-main {
    display: flex;
    flex-direction: column;
}
.indications-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: center;
}
.indications-item__img {
    position: relative;
    height: 78rem;
}
.indications-item__img img {
    border-radius: 3rem;
    width: calc(100% - 4.5rem);
    height: calc(100% - 4.5rem);
    z-index: 3;
    object-fit: cover;
    position: relative;
}
.indications-item__img::before {
    content: '';
    border-radius: 2rem;
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(9.9px);
    width: 74rem;
    height: 69.5rem;
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
}
.indications-item__img-description {
    position: absolute;
    z-index: 4;
    display: flex;
    flex-direction: column;
    padding: 0 4.6rem 0 3.6rem;
    bottom: 9rem;
}
.indications-item__img-description p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.indications-item__img-description p b {
    font-weight: 700;
}
.indications-item__col {
    padding: 0 3.2rem;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}
.indications-item__col h3 {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 6rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}
.indications-item__col ul {
    display: flex;
    flex-direction: column;
    padding-left: 3rem;
}
.indications-item__col ul li {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.indications-item:nth-child(2n) {
    max-width: 164rem;
    margin-left: auto;
    display: flex;
}
.indications-item:nth-child(2n) .indications-item__img {
    order: 2;
    height: 67.2rem;
    width: 74rem;
    min-width: 74rem;
    display: flex;
}
.indications-item:nth-child(2n) .indications-item__col h3 {
    text-align: right;
}
.indications-item:nth-child(2n) .indications-item__col ul {
    align-items: flex-end;
}
.indications-item:nth-child(2n) .indications-item__col ul li {
    text-align: right;
}
.indications-item:nth-child(2n) .indications-item__img::before {
    width: 74rem;
    height: 61.9rem;
    right: auto;
    bottom: auto;
    top: 0;
    left: 0;
}
.indications-item:nth-child(2n) .indications-item__img img {
    margin-top: auto;
    margin-left: auto;
}

@media screen and (max-width: 992px) {
	.indications {
		margin-bottom: 8rem;
	}
	.indications::before {
		display: none;
	}
	.indications-container {
		gap: 3.5rem;
	}
	.title {
		font-size: 2.8rem;
	}
	.indications-main {
		gap: 2.5rem;
	}
	.indications-item {
		gap: 3.2rem;
		display: flex;
        flex-direction: column;
	}
	.indications-item__img {
		height: 27.8rem;
	}
	.indications-item__img img {
		width: calc(100% - 1.7rem);
		height: 100%;
	}
	.indications-item__img::before {
		width: 27.9rem;
		height: 26.2rem;
		bottom: -1.7rem;
	}
	.indications-item__img-description {
		padding: 0 3rem 0 1.5rem;
		bottom: 1.5rem;
	}
	.indications-item__img-description p {
		font-size: 1.4rem;
	}
	.indications-item__img-description p br {
		display: none;
	}
	.indications-item__col {
		padding: 0;
		gap: 1rem;
	}
	.indications-item__col h3 {
		font-size: 2.8rem;
	}
	.indications-item__col ul {
		padding-left: 2rem;
	}
	.indications-item__col ul li {
		font-size: 1.8rem;
		font-weight: 500;
	}
	.indications-item:nth-child(2n) {
		gap: 5rem;
	}
	.indications-item:nth-child(2n) .indications-item__img {
		height: 27.9rem;
		width: 100%;
		min-width: 100%;
	}
	.indications-item:nth-child(2n) .indications-item__col {
		order: 3;
	}
	.indications-item:nth-child(2n) .indications-item__col h3 {
		text-align: left;
	}
	.indications-item:nth-child(2n) .indications-item__col ul {
		align-items: flex-start;
	}
	.indications-item:nth-child(2n) .indications-item__col ul li {
		text-align: left;
	}
	.indications-item:nth-child(2n) .indications-item__img::before {
		width: 33.4rem;
        height: 27.9rem;
	}
	.indications-item:nth-child(2n) .indications-item__img img {
		margin-top: 2.1rem;
        width: 31.4rem;
        height: 28.3rem;
	}
}

/* banner */

.banner {
    padding: 6.5rem 0 5rem 0;
    position: relative;
}
.banner::before {
    content: '';
    background-image: url('/wp-content/uploads/2025/08/banner-1.png');
    width: 100%;
    position: absolute;
    height: 84.4rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: -9rem;
}
.banner::after {
    content: '';
    background-image: url('/wp-content/uploads/2025/08/banner-2.svg');
    width: 100%;
    position: absolute;
    height: 64.1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 28.4rem;
}
.banner-container {
    display: flex;
    flex-direction: column;
    z-index: 4;
    align-items: center;
    gap: 2.5rem;
    position: relative;
}
.banner-name {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.banner-name h1 {
	color: #FFF;
    text-align: center;
    font-size: 10rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}
.banner-name h2 {
    color: var(--ELEMENTS-white, #FFF);
    text-align: center;
    font-size: 8rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.banner-container .contacts-form__submit {
    margin-left: auto;
    margin-bottom: 2rem;
	z-index: 5;
}
.banner-container > img {
    width: 80.5rem;
    z-index: 5;
}
.banner-container::before {
    content: '';
    width: 66.5rem;
    height: 66.6rem;
    border-radius: 66.6rem;
    border: 1px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    mix-blend-mode: plus-lighter;
    filter: blur(100px);
    position: absolute;
    top: 35.3rem;
    z-index: 2;
}
.banner-fon {
    border-radius: 10rem;
    border: 1px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    width: 130rem;
    height: 130rem;
    right: -114rem;
    position: absolute;
    bottom: -45rem;
    transform: rotate(35.96deg);
}

@media screen and (max-width: 992px) {
    .banner {
		padding: 3.5rem 0 8rem 0;
	}
	.banner::before {
        height: 41.1rem;
        top: 6rem;
	}
	.banner::after {
        height: 26.5rem;
        bottom: 8rem;
	}
	.banner-container {
		gap: 3.5rem;
	}
	.banner-name {
        gap: 0.5rem;
	}
	.banner-name h1 {
		font-size: 4rem;
	}
	.banner-name h2 {
		font-size: 2.8rem;
	}
	.banner-container .contacts-form__submit {
		margin-bottom: 0;
	}
	.banner-container > img {
		width: 33.5rem;
	}
	.banner-container::before {
		display: none;
	}
	.banner-fon {
		border-radius: 5rem;
        width: 26.6rem;
        height: 26.6rem;
        right: -20rem;
        bottom: -4.8rem;
	}
}

/* synergy */

.synergy {
    margin-bottom: 10rem;
    position: relative;
}
.synergy::before {
    content: '';
    width: 130.8rem;
    height: 130.8rem;
    transform: rotate(21.845deg);
    position: absolute;
    border-radius: 10rem;
    border: 1px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    z-index: -2;
    top: -35.4rem;
    left: -97.5rem;
}
.synergy::after {
    content: '';
    background-image: url('/wp-content/uploads/2025/08/synergy-fon.png');
    width: 71.5rem;
    height: 78.1rem;
    position: absolute;
    bottom: -61.4rem;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
.synergy-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
.synergy-main {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 3rem;
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(29.8px);
    gap: 4.8rem;
    margin-top: 8rem;
}
.synergy-item {
    position: relative;
    padding: 3rem 5.4rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.synergy-item::before {
    content: '';
    width: 0.2rem;
    height: 100%;
    background: #FFF;
    position: absolute;
    top: 0;
    right: -2.4rem;
}
.synergy-item:last-child {
    padding: 3rem;
}
.synergy-item:last-child::before {
    display: none;
}
.synergy-item__img {
    width: 13rem;
    right: 0;
    top: -5rem;
    z-index: 2;
    position: absolute;
}
.synergy-item h3 {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 6rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}
.synergy-item p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.synergy-item p b {
    font-weight: 700;
}
.synergy .contacts-form__submit {
    margin-left: auto;
}
.contacts-form__submit:hover {
    flex-direction: row-reverse;
    background: #FFF;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
}
.contacts-form__submit:hover p {
    color: #19497A;
}
.contacts-form__submit:hover .contacts-form__submit-icon {
    background: #19497A;
}
.contacts-form__submit:hover .contacts-form__submit-icon svg path {
    fill: #FFF;
}

@media screen and (max-width: 992px) {
    .synergy {
		margin-bottom: 8rem;
	}
	.synergy::before {
        width: 26.5rem;
        height: 26.5rem;
        border-radius: 5rem;
        top: -2.8rem;
        left: -20.6rem;
	}
	.synergy::after {
		width: 25rem;
        height: 25.6rem;
        bottom: auto;
        top: 4.4rem;
	}
	.synergy-main {
        display: flex;
        flex-direction: column;
        border-radius: 2rem;
        gap: 0;
        margin-top: 0;
	}
	.synergy-item {
        padding: 3rem;
        gap: 2rem;
	}
	.synergy-item::before {
		width: 100%;
        height: 0.2rem;
        top: auto;
        right: 0;
        bottom: 0;
	}
	.synergy-item__img {
		width: 5.6rem;
		right: 2.5rem;
		top: 2.2rem;
	}
	.synergy-item h3 {
		font-size: 4rem;
	}
	.synergy-item p {
		font-size: 1.8rem;
	}
}

/* time */

.time {
    margin-bottom: 10rem;
}
.time-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.time-name {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.time-name h2 {
    color: var(--ELEMENTS-white, #FFF);
    text-align: center;
    font-size: 10rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}
.time-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.time-main > h3 {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 6rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}
.time-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.time-description {
    max-width: 73.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.time-description__col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.time-description__row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.time-description__row svg {
    width: 2.4rem;
    min-width: 2.4rem;
    height: auto;
    margin-top: 0.6rem;
}
.time-description__row p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.time-description__row p b {
    font-weight: 700;
}
.time-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    width: 100%;
    max-width: 89rem;
    position: relative;
}
.time-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 3.5rem;
    border-radius: 2rem;
    border-bottom: 2px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(9.9px);
    position: relative;
    z-index: 4;
}
.time-item img {
    width: 9.6rem;
}
.time-item p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.time-items::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    height: 100%;
    width: 49.8rem;
    border-radius: 49.9rem;
    border: 1px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    mix-blend-mode: plus-lighter;
    filter: blur(100px);
}
.time-description__row:nth-child(6) p br:nth-child(2) {
	display: none;
}
.time-description__row:nth-child(7) p br {
	display: none;
}

@media screen and (max-width: 992px) {
    .time {
		margin-bottom: 8rem;
	}
	.time-container {
		gap: 3.5rem;
	}
	.time-name h2 {
		font-size: 2.8rem;
	}
	.time-name .title {
		font-weight: 500;
	}
	.time-main {
		gap: 1rem;
	}
	.time-main > h3 {
		font-size: 2.8rem;
	}
	.time-row {
		flex-direction: column;
		gap: 3.5rem;
	}
	.time-description__row {
		align-items: center;
	}
	.time-description__row svg {
		width: 1.8rem;
		min-width: 1.8rem;
		margin-top: 0;
	}
	.time-description__row p {
		font-size: 1.8rem;
	}
	.time-description__row:nth-child(6) p br:nth-child(2) {
		display: block;
	}
	.time-description__row:nth-child(6) p br:nth-child(3) {
		display: none;
	}
	.time-description__row:nth-child(7) p br {
		display: block;
	}
	.time-items {
		grid-template-columns: repeat(1, 1fr);
	}
	.time-item {
		gap: 1.5rem;
		padding: 2.5rem 3.5rem;
	}
	.time-item img {
		width: 5.1rem;
	}
	.time-item p {
		font-size: 2.8rem;
	}
	.time-items::before {
        top: auto;
        bottom: 0;
        height: 49.9rem;
        width: 49.9rem;
        border-radius: 100%;
	}
}

/* where */

.where {
    margin-bottom: 12rem;
    margin-top: 10rem;
    position: relative;
}
.where-fon {
    width: 100%;
    position: absolute;
    top: -9.3rem;
    left: 0;
    z-index: -1;
}
.where-container {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}
.where-main {
    display: flex;
    gap: 1rem;
}
.where-col {
    padding: 0 2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    max-height: 88.2rem;
    width: 89rem;
    min-width: 89rem;
}
.where-item {
    display: flex;
    flex-direction: column;
}
.contacts-item__col.where-item__content-item {
	padding: 4rem;
	border-radius: 2rem;
    border: 1px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(7.8px);
}
.where-item__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.where-item__button p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: var(--font-weight-400, 400);
    line-height: var(--line-height-27, 2.7rem);
}
.contacts-item__col22 {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}
.contacts-item__col22 > img {
    width: 23.4rem;
    min-width: 23.4rem;
}
.contacts-item__col33 {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
	width: 100%;
	gap: 4rem;
}
.contacts-item__title {
    font-weight: 700;
    font-size: 4rem;
    line-height: 67%;
    color: #fff;
}
.contacts-item__address {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
.contacts-item__address > p {
    font-weight: 400;
    font-size: 3rem;
    line-height: 90%;
    color: #fff;
}
.contacts-item__tel {
    font-weight: 600;
    font-size: 3rem;
    line-height: 90%;
    color: #fff;
}
.contacts-item__site {
	font-weight: 400;
    font-size: 3rem;
    line-height: 90%;
    text-decoration: underline;
    color: #fff;
}
.where-item__button img {
    width: 2.8rem;
    transition: .3s all;
}
.where-item__content {
    max-height: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.where-map {
    width: 100%;
	border-radius: 2rem;
    overflow: hidden;
	min-height: 88.2rem;
}
.where-item__social {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}
.where-item__social img {
	width: 3.4rem;
}
.csocials {
	display: flex;
	gap: 10px;
}
.csocials a {
    display: flex;
    background: #000;
    border-radius: 4px;
    width: 34px;
    height: 34px;
    justify-content: center;
    align-items: center;
}
.where-city {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.where-city > p {
	font-weight: 700;
    font-size: 3rem;
    text-transform: uppercase;
    color: #fff;
}
.where-city select {
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-radius: 2rem;
    padding: 2rem;
    width: 55rem;
    height: 7.6rem;
    font-weight: 500;
    font-size: 3rem;
    color: #fff;
	line-height: 100%;
	cursor: pointer;
	background-image: url('/wp-content/uploads/2025/10/frame-246.svg');
	background-position: center right 2rem;
    background-repeat: no-repeat;
    background-size: 3.1rem;
}
.where-city select option {
	color: #000;
}
.where-city select {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.where-city select::-ms-expand {
  display: none;
}
.csocials img {
	width: 28px;
}
.where-map > ymaps {
    width: 100% !important;
    height: 100% !important;
    border-radius: 2rem;
}
.where-item.active .where-item__content {
    margin-top: 1.6rem;
}
.where-item.active .where-item__button img {
    transform: rotate(45deg);
}
.where-item__content > div {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.where-item__content > div > * {
    padding: 0.8rem;
    border-radius: 1rem;
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
	font-size: 3rem;
}
.where-item__content > div a {
	font-size: 3rem;
}
.balloonContentBody p, .balloonContentBody a {
	color: #000;
}

@media screen and (max-width: 992px) {
    .where {
		margin-bottom: 8rem;
	}
	.where-fon {
		top: 6rem;
	}
	.where-container {
		gap: 3.5rem;
	}
	.where-main {
		flex-direction: column;
		gap: 3.5rem;
	}
	.where-col {
		max-height: 62.3rem;
		width: 100%;
		min-width: 100%;
	}
	.where-item__button p {
		font-size: 2.4rem;
	}
	.where-item__content p {
		font-size: 1.4rem;
	}
	.where-map {
		height: 64.8rem;
	}
}

/* result */

.result {
    margin-bottom: 10rem;
    position: relative;
}
.result::before {
    content: '';
    position: absolute;
    width: 130rem;
    height: 130rem;
    border-radius: 10rem;
    border: 1px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    transform: rotate(-51.512deg);
    z-index: -1;
    top: -41rem;
    left: -110rem;
}
.result-container {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}
.result-main {
    display: flex;
    justify-content: center;
    gap: 9rem;
}
.result-item {
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: none;
    height: 46.6rem;
    border-radius: 2rem;
    border-left: 2px solid var(--ELEMENTS-white, #FFF);
}
.result-item__before {
    width: 100%;
    height: 100%;
}
.result-item__before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.result-item__after {
    position: absolute;
    height: 100%;
    width: 50%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 2;
    transition: none;
    border-radius: 2rem;
    border-right: 1px solid #FFF;
}
.result-item__after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.result-item__resizer {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 5;
    top: 0;
    left: 50%;
    height: 100%;
    width: 5px;
    -ms-touch-action: pan-y;
    transition: none;
    cursor: col-resize;
    margin-left: -2px;
}
.result .contacts-form__submit {
    margin-left: auto;
}
.result_swiper {
	display: none;
}

@media screen and (max-width: 992px) {
    .result {
		margin-bottom: 8rem;
	}
	.result::before {
        width: 26.5rem;
        height: 26.5rem;
        border-radius: 5rem;
        top: -6.3rem;
        left: -20rem;
	}
	.result-container {
		gap: 3.5rem;
	}
	.result-main {
		gap: 2rem;
        min-width: 100vw;
        overflow-x: auto;
        width: 100vw;
        margin-left: -2rem;
        padding: 0 2rem 2rem 2rem;
		justify-content: flex-start;
	}
	.result-item {
		height: 39.3rem;
        width: 28.8rem;
        min-width: 28.8rem;
	}
	.result_swiper {
        display: block;
        width: 100vw;
        min-width: 100vw;
        margin-left: -2rem;
        padding-right: 2rem;
	}
	.result_swiper .swiper-wrapper {
		padding-left: 2rem;
	}
	.result_swiper .swiper-slide {
		height: auto;
	}
}

/* microneedle */

.microneedle {
    margin-bottom: 19rem;
    position: relative;
}
.microneedle-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
.microneedle-name {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.microneedle-name h3 {
    color: var(--ELEMENTS-white, #FFF);
    text-align: center;
    font-size: 10rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}
.microneedle-main {
    border-radius: 2rem;
    border: 2px solid var(--ELEMENTS-white, #FFF);
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(12.9px);
    background-image: url('/wp-content/uploads/2025/08/microneedle-fon.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6.1rem;
    padding: 7.9rem 5.5rem 5.8rem 10.4rem;
}
.microneedle-block {
    padding: 2rem 4rem;
    display: flex;
    border-bottom: 1px solid #FFF;
    border-right: 1px solid #FFF;
    width: 100%;
    max-width: 52.9rem;
}
.microneedle-block p {
    color: #FFF;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.microneedle-block p b {
    font-weight: 900;
}
.microneedle-img {
    position: absolute;
    z-index: 2;
    width: 45.4rem;
    bottom: -14rem;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.microneedle-block:nth-child(2) {
    border-left: 1px solid #FFF;
    border-right: none;
}
.microneedle-block:nth-child(3) {
    border-top: 1px solid #FFF;
    border-bottom: none;
}
.microneedle-block:nth-child(4) {
    border-top: 1px solid #FFF;
    border-bottom: none;
    border-left: 1px solid #FFF;
    border-right: none;
}
.microneedle-img.mob {
	display: none;
}

@media screen and (max-width: 992px) {
    .microneedle {
    	margin-bottom: 8rem;
	}
	.microneedle-name h3 {
		font-size: 2.8rem;
	}
	.microneedle-main {
		background-image: url('/wp-content/uploads/2025/08/microneedle-fon-mob.png');
		flex-direction: column;
		gap: 2.5rem;
		padding: 2rem;
	}
	.microneedle-block {
		max-width: none;
	}
	.microneedle-block p {
		font-size: 1.8rem;
	}
	.microneedle-block p br {
		display: none;
	}
	.microneedle-img {
		position: relative;
        width: 26.9rem;
        bottom: 0;
        order: 4;
		display: none;
	}
	.microneedle-img.mob {
		display: block;
	}
	.microneedle-block:nth-child(2) {
		order: 5;
		padding: 2rem 3rem 2rem 4rem;
	}
	.microneedle-block:nth-child(3) {
		border-top: 1px solid #FFF;
		border-bottom: none;
	}
	.microneedle-block:nth-child(4) {
		order: 6;
	}
}

/* leader */

.leader {
    margin-bottom: 10rem;
    position: relative;
}
.leader::before {
    content: '';
    background-image: url('/wp-content/uploads/2025/08/leader-fon.png');
    position: absolute;
    width: 78.4rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 78.1rem;
    top: -28.5rem;
    right: 0;
    z-index: -1;
}
.leader-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.leader-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.leader-name h2 {
    color: var(--ELEMENTS-white, #FFF);
    text-align: center;
    font-size: 6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    max-width: 113rem;
}
.leader-name h2 b {
    font-weight: 700;
}
.leader-name img {
    width: 53.8rem;
}
.leader-main {
    display: flex;
    padding: 0 8rem;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
}
.leader-main p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.leader-main p b {
    font-weight: 700;
}

@media screen and (max-width: 992px) {
    .leader {
		margin-bottom: 8rem;
	}
	.leader::before {
		display: none;
	}
	.leader-name {
		flex-direction: column;
		gap: 2.5rem;
	}
	.leader-name h2 {
		font-size: 2.8rem;
	}
	.leader-name img {
		width: 25.1rem;
	}
	.leader-main {
		padding: 0;
		gap: 1rem;
		flex-direction: column;
	}
	.leader-main p {
		font-size: 1.4rem;
	}
	.leader-main p br {
		display: none;
	}
}

/* technologies */

.technologies {
    margin-bottom: 10rem;
}
.technologies-container {
    display: flex;
    flex-direction: column;
    gap: 4.1rem;
}
.technologies-name {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.technologies-title {
    color: var(--ELEMENTS-white, #FFF);
    text-align: center;
    font-size: 10rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.technologies-subtitle {
    color: var(--ELEMENTS-white, #FFF);
    text-align: center;
    font-size: 6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.technologies-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.technologies-item {
    display: flex;
    flex-direction: column;
    gap: 4.1rem;
    position: relative;
    transition: .3s all;
    padding: 1rem 7.5rem 3rem 7.5rem;
    justify-content: flex-end;
    height: 54rem;
    border-bottom: 3px solid rgba(255, 255, 255, 0.42);
    border-right: 3px solid rgba(255, 255, 255, 0.42);
}
.technologies-item:nth-child(2n) {
    border-right: none;
}
.technologies-item:nth-child(3), .technologies-item:nth-child(4) {
    border-bottom: none;
}
.technologies-item img {
    width: 100%;
}
.technologies-item__name {
    display: flex;
    flex-direction: column;
}
.technologies-item__name h4 {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.technologies-item__name p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.technologies-item__hover {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    gap: 3.2rem;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(20px);
    opacity: 0;
}
.technologies-item__hover > p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.technologies-item__hover-name {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.technologies-item__hover-name h4 {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.technologies-item__hover-name p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.technologies-item:hover .technologies-item__hover {
    opacity: 1;
}
.technologies-item:nth-child(1) .technologies-item__hover {
    border-radius: 2rem 0 0 0;
}
.technologies-item:nth-child(2) .technologies-item__hover {
    border-radius: 0 2rem 0 0;
}
.technologies-item:nth-child(3) .technologies-item__hover {
    border-radius: 0 0 0 2rem;
}
.technologies-item:nth-child(4) .technologies-item__hover {
    border-radius: 0 0 2rem 0;
}

@media screen and (max-width: 992px) {
    .technologies {
		margin-bottom: 8rem;
	}
	.technologies-container {
		gap: 3.5rem;
	}
	.technologies-title {
		font-size: 2.8rem;
	}
	.technologies-subtitle {
		font-size: 2.8rem;
	}
	.technologies-main {
		display: flex;
        flex-direction: column;
	}
	.technologies-item {
		gap: 1rem;
		padding: 2.5rem 0;
		justify-content: flex-start;
		height: auto;
		border-right: none;
	}
	.technologies-item:nth-child(2n) {
		border-right: none;
	}
	.technologies-item:nth-child(3), .technologies-item:nth-child(4) {
		border-bottom: 3px solid rgba(255, 255, 255, 0.42);
	}
	.technologies-item:last-child {
		border-bottom: none;
	}
	.technologies-item__name h4 {
		font-size: 1.8rem;
	}
	.technologies-item__name p {
		font-size: 1.4rem;
	}
	.technologies-item__hover {
		padding: 2rem;
		gap: 2.5rem;
	}
	.technologies-item__hover > p {
		font-size: 1.4rem;
	}
	.technologies-item__hover-name {
		gap: 1rem;
	}
	.technologies-item__hover-name h4 {
		font-size: 1.8rem;
	}
	.technologies-item__hover-name p {
		font-size: 1.4rem;
	}
	.technologies-item:nth-child(1) .technologies-item__hover {
		border-radius: 0;
	}
	.technologies-item:nth-child(2) .technologies-item__hover {
		border-radius: 0;
	}
	.technologies-item:nth-child(3) .technologies-item__hover {
		border-radius: 0;
	}
	.technologies-item:nth-child(4) .technologies-item__hover {
		border-radius: 0;
	}
}

/* presscenter */

.presscenter {
    margin: 10rem 0 5rem 0;
    position: relative;
}
.presscenter::before {
    content: '';
    width: 130.8rem;
    height: 130.8rem;
    transform: rotate(21.845deg);
    border-radius: 10rem;
    border: 1px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    position: absolute;
    top: 105rem;
    left: -97.5rem;
    z-index: -1;
}
.presscenter::after {
    content: '';
    right: -114.2rem;
    top: 55rem;
    width: 130.8rem;
    height: 130.8rem;
    transform: rotate(35.96deg);
    border-radius: 10rem;
    border: 1px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    position: absolute;
    z-index: -1;
}
.presscenter-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.presscenter-title {
    color: var(--ELEMENTS-white, #FFF);
    text-align: center;
    font-size: 10rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}
.presscenter-main {
    display: flex;
    flex-direction: column;
    gap: 6.2rem;
}
.presscenter-tabs {
    display: flex;
    align-items: center;
    gap: 4rem;
}
#presscenter-video-list, #presscenter-video-list2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6.2rem;
}
.presscenter-tab {
    border-radius: 3rem;
    border: 2px solid transparent;
    padding: 2rem;
    color: var(--ELEMENTS-white, #FFF);
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.presscenter-tab.active {
    border-color: #FFF;
}
.presscenter-content {
    display: none;
}
.presscenter-content.active {
    display: block;
}
.presscenter-news {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.presscenter-news::before {
    content: '';
    background-image: url('/wp-content/uploads/2025/08/press.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 78.1rem;
    position: absolute;
    width: 73.5rem;
    bottom: 41rem;
    left: -6.5rem;
	z-index: -1;
}
.presscenter-news__main {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}
.presscenter-news__item {
    border-radius: 2rem;
    border: 2px solid var(--ELEMENTS-white, #FFF);
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(17.82355499267578px);
    display: flex;
    justify-content: space-between;
    padding: 4rem 7.35rem;
}
.presscenter-news__item-main {
    width: 100%;
    max-width: 71.3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
.presscenter-news__item-date {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 1.9rem;
}
.presscenter-news__item-title {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 6rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: left;
}
.presscenter-news__item-description {
    display: flex;
    flex-direction: column;
}
.presscenter-news__item-description p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.presscenter-news__item-button {
    margin-top: 2.8rem;
    margin-right: auto;
    display: flex;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    align-items: center;
    gap: 2rem;
    color: #FFF;
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.presscenter-news__item-button svg {
    width: 2.2rem;
    height: auto;
}
.presscenter-news__item-img {
    width: 100%;
    max-width: 80.1rem;
}
.presscenter-news__item-img img {
    width: 100%;
    border-radius: 2rem;
    height: 100%;
    object-fit: cover;
}
.presscenter-news__contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.presscenter-news__social {
    padding: 0 7rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.presscenter-news__social h3 {
    color: #FFF;
    font-size: 6rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.presscenter-news__social p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.presscenter-news__social-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 1.6rem;
}
.presscenter-news__social-row a {
    display: flex;
}
.presscenter-news__social-row a svg {
    width: 4rem;
    height: auto;
}
.presscenter-news__info {
    display: flex;
    padding: 0 7rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}
.presscenter-news__info a {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.presscenter-news__info a.presscenter-news__email {
    font-weight: 600;
}
.presscenter-news__info p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.presscenter-news__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5.9rem;
}
.news-item {
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
}
.news-item__img {
    display: flex;
    height: 35.4rem;
}
.news-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}
.news-item__main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.news-item__date {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.news-item__title {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: left;
}
.news-item__description {
    display: flex;
    flex-direction: column;
}
.news-item__description p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-item__button {
    margin-top: 2.8rem;
    margin-right: auto;
    display: flex;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    align-items: center;
    gap: 2rem;
    border-radius: 3rem;
}
.news-item__button svg {
    width: 2.1rem;
    height: auto;
}
.presscenter-pagination {
    display: flex;
    justify-content: flex-end;
}
.presscenter-pagination ul {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.presscenter-pagination li {
    display: flex;
    list-style: none;
}
.presscenter-pagination__item {
    border: 2px solid transparent;
    padding: 2rem;
    border-radius: 3rem;
    color: var(--ELEMENTS-white, #FFF);
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.presscenter-pagination__item.active {
    border-color: #FFF;
}
.presscenter-reels__swiper {
    width: 100%;
    min-width: 100vw;
    margin-left: -6.5rem;
    padding-right: 6.5rem;
}
.presscenter-reels__swiper .swiper-wrapper {
    padding-left: 6.5rem;
}
.presscenter-reels__swiper .swiper-slide {
    height: auto;
}
.presscenter-reels__slide {
    width: 100%;
    height: 78rem;
    border-radius: 2rem;
    background: #D9D9D9;
}
.presscenter-reels__slide > * {
	width: 100%;
    height: 100%;
    border-radius: 2rem;
	object-fit: cover;
}
.presscenter-video {
    display: flex;
    flex-direction: column;
    gap: 6.2rem;
	margin-top: 5rem;
}
.presscenter-video__item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-radius: 2rem;
    border: 2px solid var(--ELEMENTS-white, #FFF);
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(17.82355499267578px);
	padding: 4rem 7.35rem;
}
.presscenter-video__item-name {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.presscenter-video__item-name h3 {
    color: #FFF;
    font-size: 6rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.presscenter-video__item-name p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.presscenter-video__item-video {
    height: 42.6rem;
	min-height: 42.6rem;
    border-radius: 2rem;
    background: #D9D9D9;
}
.presscenter-video__item-video > * {
	width: 100%;
    height: 100%;
    border-radius: 2rem;
	object-fit: cover;
}
.presscenter-video__item-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
	height: 100%;
}
.presscenter-video__item-content > p {
	color: rgba(255, 255, 255, 0.42);
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
	text-transform: uppercase;
	margin-top: auto;
}
.presscenter-video__item-col {
	display: flex;
    flex-direction: column;
    gap: 2rem;
	height: 100%;
}
.presscenter-video__item-col > h3 {
    font-size: 6rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
    color: #FFF;
    margin-right: auto;
}
.presscenter-video__item-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: auto;
    flex-direction: column;
    gap: 2rem;
}
.presscenter-video__item-desc {
    font-size: 3rem;
    line-height: 110%;
    color: #FFF;
    font-weight: 500;
}
.presscenter-video__item-button {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.presscenter-video__item-button p {
    font-size: 2.3rem;
    color: #FFF;
    font-weight: 700;
    text-transform: uppercase;
}
.presscenter-video__item-button svg {
	width: 2.2rem;
    height: auto;
}



@media screen and (max-width: 992px) {
    .presscenter {
		margin: 3.5rem 0 8rem 0;
	}
	.presscenter::before {
		width: 26.5rem;
        height: 26.5rem;
        border-radius: 5rem;
        top: 91.3rem;
        left: -21.5rem;
	}
	.presscenter::after {
		right: -23rem;
        top: 78.1rem;
        width: 26.7rem;
        height: 26.7rem;
        border-radius: 5rem;
	}
	.presscenter-container {
		gap: 2rem;
	}
	.presscenter-title {
		font-size: 4rem;
	}
	.presscenter-main {
		gap: 2rem;
	}
	.presscenter-tabs {
		flex-direction: column;
		gap: 1rem;
		justify-content: center;
	}
	.presscenter-news {
		gap: 3.5rem;
	}
	.presscenter-news::before {
		height: 25.6rem;
        width: 34.5rem;
        bottom: auto;
        left: -5rem;
        top: 71.4rem;
		z-index: -1;
	}
	.presscenter-news__main {
		gap: 8rem;
	}
	.presscenter-news__item {
		flex-direction: column-reverse;
		gap: 1rem;
		padding: 2rem;
	}
	.presscenter-news__item-main {
		gap: 1rem;
	}
	.presscenter-news__item-date {
		font-size: 1.4rem;
		margin-bottom: 0;
	}
	.presscenter-news__item-title {
		font-size: 1.8rem;
		font-weight: 500;
	}
	.presscenter-news__item-description p {
		font-size: 1.4rem;
	}
	.presscenter-news__item-button {
		margin-top: 1rem;
		padding: 0.5rem;
		font-size: 1.6rem;
	}
	.presscenter-news__item-button svg {
		width: 2.1rem;
	}
	.presscenter-news__item-img {
		height: 19.7rem;
	}
	.presscenter-news__contacts {
        display: flex;
        flex-direction: column;
        gap: 3.5rem;
	}
	.presscenter-news__social {
		padding: 0;
		align-items: center;
		gap: 0.5rem;
	}
	.presscenter-news__social h3 {
		font-size: 2.8rem;
	}
	.presscenter-news__social p {
		font-size: 1.8rem;
		text-align: center;
		max-width: 31.5rem;
	}
	.presscenter-news__social-row {
		margin-top: 3rem;
	}
	.presscenter-news__social-row a svg {
		width: 3.3rem;
	}
	.presscenter-news__info {
		padding: 0;
		align-items: center;
		gap: 1rem;
	}
	.presscenter-news__info a {
		font-size: 4rem;
	}
	.presscenter-news__info a.presscenter-news__email {
		font-size: 2.8rem;
	}
	.presscenter-news__info p {
		font-size: 2.8rem;
	}
	.presscenter-news__content {
		grid-template-columns: repeat(1, 1fr);
		gap: 2.5rem;
	}
	.news-item {
		gap: 1rem;
	}
	.news-item__img {
		height: 23.9rem;
	}
	.news-item__main {
		gap: 1rem;
	}
	.news-item__date {
		font-size: 1.4rem;
	}
	.news-item__title {
		font-size: 1.8rem;
		font-weight: 500;
	}
	.news-item__description p {
		font-size: 1.4rem;
	}
	.news-item__button {
		margin-top: 1rem;
		padding: 0.5rem;
	}
	.presscenter-pagination ul {
		gap: 3rem;
	}
	.presscenter-pagination__item {
		font-size: 1.8rem;
	}
	.presscenter-reels__swiper {
		margin-left: -2rem;
        padding-right: 0;
	}
	.presscenter-reels__swiper .swiper-wrapper {
		padding-left: 0;
	}
	.presscenter-reels__slide {
		height: 59.4rem;
	}
	.presscenter-video {
		gap: 2rem;
	}
	.presscenter-video__item {
		gap: 2rem;
	}
	.presscenter-video__item-name {
		gap: 0.5rem;
	}
	.presscenter-video__item-name h3 {
		font-size: 2.8rem;
	}
	.presscenter-video__item-name p {
		font-size: 1.8rem;
	}
	.presscenter-video__item-video {
		height: 22.2rem;
		min-height: 22.2rem;
	}
	#presscenter-video-list, #presscenter-video-list2 {
		gap: 2rem;
		display: flex;
        flex-direction: column;
	}
	.presscenter-video__item {
        gap: 2rem;
        padding: 2rem;
    }
	.presscenter-video__item-video {
        height: 18.2rem;
    }
	.presscenter-video__item-content {
		gap: 1.3rem;
	}
	.presscenter-video__item-content > p {
		font-size: 1.6rem;
	}
	.presscenter-video__item-col {
		gap: 1rem;
	}
	.presscenter-video__item-col > h3 {
		font-size: 1.8rem;
	}
	.presscenter-video__item-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	.presscenter-video__item-desc {
		font-size: 1.4rem;
	}
	.presscenter-video__item-button {
		padding: 0.5rem 2rem 0.5rem 0.5rem;
	}
	.presscenter-video__item-button p {
		font-size: 1.6rem;
	}
	
}

/* equipment */

.equipment {
    margin-bottom: 10rem;
}
.equipment-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.equipment-main {
    overflow-x: auto;
    min-width: 100vw;
    margin-left: -6.5rem;
    padding: 0 6.5rem;
    display: flex;
    gap: 1.6rem;
    padding-bottom: 2rem;
}
.equipment-main::-webkit-scrollbar {
	width: 0.3rem;
}
.equipment-main::-webkit-scrollbar-track {
	background: transparent;
}
.equipment-main::-webkit-scrollbar-thumb {
	background-color: transparent;
	border-radius: 2rem;
	border: .3rem solid transparent;
}
.equipment-item {
    padding: 0 2.5rem;
    width: 73.6rem;
    min-width: 73.6rem;
    position: relative;
    border-radius: 2rem;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    height: 62rem;
    padding: 1rem 14.5rem 6.5rem 2.5rem;
    cursor: pointer;
}
.equipment-item::before {
    content: '';
    transition: .3s all;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
	background: #19497a87;
    backdrop-filter: blur(20px);
}
.equipment-item:hover::before {
	opacity: 1;
}
.equipment-item.active:hover::before {
	opacity: 0;
}
.equipment-item__main {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
	z-index: 3;
}
.equipment-item__title {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 6rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}
.equipment-item__col {
    height: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
}
.equipment-item__col p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.equipment-item__col p b {
    font-weight: 700;
}
.equipment-item__col ul {
    display: flex;
    flex-direction: column;
    padding-left: 2rem;
}
.equipment-item__col ul li {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.equipment-item__img {
    width: 100%;
    height: 100%;
    padding-right: 2.5rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.equipment-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.equipment-item__tags {
    position: absolute;
    z-index: 3;
    top: 3.2rem;
    right: 3.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
}
.equipment-item__tags p {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    backdrop-filter: blur(10.2px);
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.equipment-item:hover {
    padding: 1rem 14.5rem 2rem 2.5rem;
}
.equipment-item:hover .equipment-item__col {
    height: 100%;
}
.equipment-item.active {
    width: 133.3rem;
    min-width: 133.3rem;
    padding: 1rem 14.5rem 2rem 2.5rem;
    justify-content: center;
}
.equipment-item.active .equipment-item__col {
    height: 100%;
    max-width: 56.4rem;
}
.equipment-item.active .equipment-item__img {
    width: 71.1rem;
    right: 0;
    left: auto;
}
.equipment-item.inactive {
    width: 24rem;
    min-width: 24rem;
}
.equipment-item.inactive .equipment-item__tags {
    display: none;
}
.equipment-item.inactive .equipment-item__img {
    display: none;
}
.equipment-item.inactive::before {
    content: '';
    position: absolute;
    border-radius: 2rem;
    border: 1.877px solid rgba(255, 255, 255, 0.42);
    opacity: 0.3;
    background: var(--gradient-elements, linear-gradient(270deg, #FFF 0%, #636363 63.94%));
    mix-blend-mode: soft-light;
    backdrop-filter: blur(20px);
    width: 41.9276rem;
    height: 40.3814rem;
    transform: rotate(-50.367deg);
    left: -37rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.equipment-item.inactive .equipment-item__title {
    transform: rotate(90deg);
    position: absolute;
    top: 27rem;
    white-space: nowrap;
    left: -11.5rem;
    width: 33rem;
    text-align: center;
}
.equipment-item.inactive .equipment-item__col {
    display: none;
}

@media screen and (max-width: 992px) {
    .equipment {
		margin-bottom: 8rem;
	}
	.equipment-container {
		gap: 3.5rem;
	}
	.equipment-main {
        min-width: 100%;
        margin-left: 0;
        padding: 0;
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 0;
	}
	.equipment-item {
        width: 100%;
        min-width: 100%;
        border-radius: 1rem;
        justify-content: flex-end;
        height: 28.2rem;
        padding: 1.6rem;
	}
	.equipment-item__main {
		gap: 0;
	}
	.equipment-item__title {
		font-size: 2.8rem;
	}
	.equipment-item__col {
		gap: 0.8rem;
	}
	.equipment-item__col p {
		font-size: 1.8rem;
	}
	.equipment-item__col ul li {
		font-size: 1.4rem;
	}
	.equipment-item__tags {
		top: 1.6rem;
		right: 1.6rem;
	}
	.equipment-item__tags p {
		padding: 1.2rem 2rem;
		font-size: 1.4rem;
	}
	.equipment-item:hover {
		padding: 1.6rem;
	}
	.equipment-item.active {
		width: 100%;
        min-width: 100%;
        padding: 7.6rem 1.6rem 1.6rem 1.6rem;
        justify-content: flex-start;
        height: 74.2rem;
	}
	.equipment-item.active .equipment-item__col {
		max-width: none;
	}
	.equipment-item.active .equipment-item__img {
        width: 100%;
        height: auto;
        top: auto;
        bottom: 0;
	}
	.equipment-item.inactive {
		width: 100%;
		min-width: 100%;
	}
	.equipment-item.inactive .equipment-item__tags {
		display: flex;
	}
	.equipment-item.inactive .equipment-item__img {
		display: flex;
	}
	.equipment-item.inactive::before {
		display: none;
	}
	.equipment-item.inactive .equipment-item__title {
		transform: none;
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		text-align: left;
	}
	.equipment-item.inactive .equipment-item__col {
		display: flex;
	}
}

/* why */

.why {
    padding-bottom: 10rem;
    position: relative;
}
.why::before {
    content: '';
    background-image: url('/wp-content/uploads/2025/08/why-fon.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    height: 192.5rem;
    left: 0;
    width: 100%;
    z-index: -1;
}
.why-container {
    display: flex;
    flex-direction: column;
}
.why-title {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 6rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    max-width: 149rem;
    margin-bottom: 12.5rem;
}
.why-title b {
    font-weight: 700;
}
.why-main {
    display: flex;
    flex-direction: column;
}
.why-row {
    display: flex;
    align-items: center;
    gap: 12.6rem;
    margin-bottom: 0.7rem;
}
.why-row > img {
    width: 72.5rem;
}
.why-certificates {
    display: flex;
    gap: 8.7rem;
    position: relative;
}
.why-certificates img {
    width: 27.6rem;
}
.why-certificates img:nth-child(2) {
    position: absolute;
    top: -8rem;
    z-index: 2;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.why-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.why-col {
    padding-top: 11.65rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 88.9rem;
    gap: 6.4rem;
}
.why-col > ul {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}
.why-col > ul li {
    color: var(--TXT-ICONS-BLUE, #19497A);
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    padding-left: 3.2rem;
    position: relative;
    list-style: none;
}
.why-col > ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    background-image: url('/wp-content/uploads/2025/08/why_li.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 2.4rem;
    height: 2.4rem;
}
.why-col > ul li b {
    font-weight: 700;
}
.why-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}
.why-block > h4 {
    color: var(--TXT-ICONS-BLUE, #19497A);
    font-size: 3rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}
.why-block__row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.why-block__row img {
    width: 37.5rem;
}
.why-block__row ul {
    padding-bottom: 3.4rem;
    display: flex;
    flex-direction: column;
    gap: 8rem;
    padding-left: 1rem;
}
.why-block__row li {
    color: var(--TXT-ICONS-BLUE, #19497A);
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.why-gif {
    width: 100%;
    max-width: 74rem;
    position: relative;
    height: 94.9rem;
}
.why-gif p {
    border-radius: 1rem;
    border: 1px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    backdrop-filter: blur(10.2px);
    padding: 2rem;
    position: absolute;
    top: 3.7rem;
    left: -7.3rem;
    z-index: 2;
    color: var(--TXT-ICONS-BLUE, #19497A);
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.why-gif img, .why-gif video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}
.why .contacts-form__submit {
    margin-left: auto;
    margin-top: 2.5rem;
}

@media screen and (max-width: 992px) {
    .why {
		padding-bottom: 8rem;
	}
	.why::before {
		background-image: url('/wp-content/uploads/2025/08/why-fon-mob-scaled.png');
		bottom: 10rem;
		height: 134.3rem;
	}
	.why-title {
		font-size: 2.8rem;
		margin-bottom: 6.5rem;
	}
	.why-row {
        gap: 2rem;
        margin-bottom: 3.5rem;
        flex-direction: column;
	}
	.why-row > img {
		width: 24.8rem;
	}
	.why-certificates {
		gap: 4.5rem;
	}
	.why-certificates img {
		width: 14.5rem;
	}
	.why-certificates img:nth-child(2) {
		top: -4.1rem;
	}
	.why-content {
        flex-direction: column;
        gap: 4.2rem;
	}
	.why-col {
        padding-top: 0;
        gap: 2.5rem;
	}
	.why-col > ul {
		gap: 1rem;
	}
	.why-col > ul li {
		font-size: 1.4rem;
		padding-left: 3rem;
	}
	.why-col > ul li:nth-child(2) br {
		display: none;
	}
	.why-col > ul li::before {
		top: 0;
		width: 2.1rem;
		height: 2.1rem;
	}
	.why-block {
		gap: 1.1rem;
	}
	.why-block > h4 {
		font-size: 1.8rem;
		max-width: 18rem;
        margin-right: auto;
	}
	.why-block__row img {
		width: 13.8rem;
	}
	.why-block__row ul {
		padding-bottom: 0;
		gap: 2.5rem;
		padding-left: 3rem;
	}
	.why-block__row li {
		font-size: 1.8rem;
	}
	.why-gif {
		max-width: 20.6rem;
		height: 26.4rem;
        margin-left: auto;
	}
	.why-gif p {
		padding: 1.2rem 2rem;
		top: -2.1rem;
		left: -8.1rem;
		font-size: 1.4rem;
	}
	.why .contacts-form__submit {
		margin-top: 3.5rem;
	}
}

/* popup */

.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.popup-fon {
    background: rgba(7, 36, 65, 0.50);
    backdrop-filter: blur(50px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.popup-callback__main {
    border-radius: 2rem;
    border: 2px solid var(--ELEMENTS-white, #FFF);
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(9.9px);
    margin: auto;
    width: 100%;
    max-width: 112.5rem;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
	max-height: 100%;
    overflow-y: auto;
}
.popup .contacts-form {
	max-width: 112.5rem;
}
.popup .contacts-form__agreement {
	justify-content: center;
}
.popup-callback__name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.popup-callback__name h2 {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.popup-callback__close {
    display: flex;
}
.popup-callback__close svg {
    width: 2.9rem;
    height: auto;
}
.callback-submit {
    padding: 1.8rem;
    border-radius: 3rem;
    border: 2px solid #FFF;
    color: #FFF;
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

@media screen and (max-width: 992px) {
	.popup-callback__main {
		max-width: 33.5rem;
        max-height: 100%;
        overflow-y: auto;
	}
	.popup-callback__name h2 {
		font-size: 2.8rem;
	}
	.popup-callback__close svg {
		width: 2.8rem;
	}
	.callback-submit {
        padding: 1.6rem;
        font-size: 1.8rem;
	}
}

/* blog */

.popup-blog {
    padding: 4rem 0;
}
.popup-blog__main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: auto;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 153rem;
    overflow-y: auto;
    padding: 0 2rem;
    max-height: 100%;
}
.popup-blog__name {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.popup-blog__name img {
    width: 20rem;
}
.popup-blog__close {
    padding: 2rem;
    display: flex;
    border-radius: 3rem;
    border: 2px solid var(--ELEMENTS-white, #FFF);
    color: var(--ELEMENTS-white, #FFF);
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.popup-blog__content {
    padding: 4rem;
    border-radius: 4rem;
    border: 5px solid #FFF;
    background: var(--ELEMENTS-white, #FFF);
    display: flex;
    flex-direction: column;
    gap: 8rem;
}
.popup-blog__content-img {
    height: 87.7rem;
}
.popup-blog__content-img img {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    object-fit: cover;
}
.popup-blog__content-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8rem;
    color: #19497A;
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.popup-blog__content-description2 {
    color: #19497A;
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    flex-direction: column;
	width: 100%;
}
.popup-blog__content-description2 th {
	border-right: 1px solid gray;
}
.popup-blog__content-description2 th:last-child {
	border-right: none;
}
.popup-blog__content-description2 td {
	border-right: 1px solid gray;
}
.popup-blog__content-description2 td:last-child {
	border-right: none;
}
.popup-blog__content-description2 tr {
	border-bottom: 1px solid gray;
}
.popup-blog__content-description2 tr:last-child {
	border-bottom: none;
}
.popup-blog__content-description2 thead {
	border-bottom: 1px solid gray;
}
.popup-blog__content-description h1 {
    color: var(--TXT-ICONS-BLUE, #19497A);
    font-size: 6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.popup-blog__content-description2 h2 {
    color: var(--TXT-ICONS-BLUE, #19497A);
    font-size: 5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.popup-blog__content-description2 h3 {
    color: var(--TXT-ICONS-BLUE, #19497A);
    font-size: 4.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.popup-blog__content-description2 h4 {
    color: var(--TXT-ICONS-BLUE, #19497A);
    font-size: 4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.popup-blog__content-description2 h5 {
    color: var(--TXT-ICONS-BLUE, #19497A);
    font-size: 3.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.popup-blog__content-description2 ul, .popup-blog__content-description2 ol {
	margin: 0;
	padding: 0;
	padding-left: 3rem;
}
.popup-blog__content-description2 p, .popup-blog__content-description2 li {
    color: #19497A;
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.popup-blog__content-description2 p b {
    font-weight: 700;
}
.popup-blog__content-next {
    display: flex;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    align-items: center;
    gap: 2rem;
}
.popup-blog__content-next p {
    color: var(--TXT-ICONS-BLUE, #19497A);
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.popup-blog__content-next svg {
    width: 2.1rem;
    height: auto;
}

.popup-cookie {
    display: none;
    position: fixed;
    bottom: 5rem;
    right: 5rem;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    padding: 3.5rem;
    width: 100%;
    max-width: 56rem;
    z-index: 9999;
    border-radius: 2rem;
    border-bottom: 2px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(9.9px);
}
.popup-cookie > p {
	color: var(--ELEMENTS-white, #FFF);
	font-size: 3rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.popup-cookie > p a {
	color: #FFF;
	text-decoration-line: underline;
}
.popup-cookie > button {
    padding: 0.5rem 2rem;
    border-radius: 3rem;
    border: 2px solid #FFF;
    color: #FFF;
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.popup-cookie__name {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.popup-cookie__name p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.popup-cookie__name button {
    display: flex;
}
.popup-cookie__name button svg {
    width: 2.8rem;
    height: auto;
}

.page_404 {
	margin: 10rem 0;
}
.page_404-container {
    display: flex;
    flex-direction: column;
	gap: 5rem;
}
.page_404-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page_404-col h2 {
    color: #FFF;
    font-size: 20rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}
.page_404-col h3 {
	color: #FFF;
    font-size: 4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 4rem;
}
.page_404-col a {
	margin-left: auto;
}
.result-item__resizer::before {
	content: '';
	background-image: url('/wp-content/uploads/2025/08/icon.svg');
	width: 3.2rem;
    height: 5.9rem;
    position: absolute;
    left: -5.2rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.result-item__resizer::after {
	content: '';
	background-image: url('/wp-content/uploads/2025/08/icon.svg');
	width: 3.2rem;
    height: 5.9rem;
    position: absolute;
    right: -5.2rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	transform: rotate(180deg);
}

.popup-thanks {
	display: none;
    position: fixed;
    z-index: 999;
    padding: 3.5rem;
    width: 81rem;
    bottom: 5rem;
    right: 5rem;
    flex-direction: column;
    gap: 2.5rem;
	border-radius: 2rem;
	border-bottom: 2px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
	background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
	backdrop-filter: blur(9.899999618530273px);
}
.popup-thanks > p {
	color: var(--ELEMENTS-white, #FFF);
	font-size: 3rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.popup-thanks__name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.popup-thanks__name > p {
	color: var(--ELEMENTS-white, #FFF);
	font-size: 6rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.popup-thanks__name > button {
	display: flex;
}
.popup-thanks__name > button svg {
	width: 2.8rem;
    height: auto;
}

.header-menu__block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
	z-index: 9;
}
.header-menu__button {
    color: #FFF;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
	z-index: 2;
}
.header-menu__content {
    position: absolute;
    overflow: hidden;
    height: 0;
    transition: .3s all;
    display: flex;
    flex-direction: column;
}
.header-container nav .header-menu__content ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 2.5rem;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    padding: 2rem;
    border-radius: 2rem;
}
.header-menu__block:hover .header-menu__content {
	padding-top: 6rem;
	height: auto;
}
.header-container nav ul li a {
	white-space: nowrap;
}

.popup-video__main {
	display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: auto;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 153rem;
    overflow-y: auto;
    padding: 0 2rem;
    max-height: 100%;
}
.popup-video__content {
    padding: 4rem;
    border-radius: 4rem;
    border: 5px solid #FFF;
    background: var(--ELEMENTS-white, #FFF);
    display: flex;
    flex-direction: column;
    gap: 8rem;
}
.popup-video__content .presscenter-video__item-video {
	height: 71.5rem;
}
.popup-video__popup-content {
	display: flex;
    flex-direction: column;
    gap: 8rem;
}
.popup-video__popup-content > h3 {
    color: #19497a;
    font-size: 6rem;
    font-weight: 500;
    text-transform: uppercase;
}
.popup-video__content-desc {
	color: #19497a;
    font-weight: 500;
    font-size: 3rem;
}
.popup-video__content-desc * {
	color: #19497a;
}
.popup-video__content-next {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    margin-right: auto;
}
.popup-video__content-next p {
    font-weight: 400;
    font-size: 2.3rem;
    text-transform: uppercase;
    color: #19497a;
}
.popup-video__content-next svg {
    width: 2.1rem;
    height: auto;
}

.presscenter-banner {
    backdrop-filter: blur(35.64px);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #fff;
    border-radius: 2rem;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.presscenter-banner > h3 {
    max-width: 121.2rem;
    color: #FFF;
    font-weight: 500;
    font-size: 4rem;
    text-transform: uppercase;
}
.presscenter-banner > h3 b {
	font-weight: 800;
}
.presscenter-banner .contacts-form__submit {
	margin: 0;
}
.contacts-item__row2 > img {
	display: none;
}

#about, #advantages, #equipment, #indications, #contacts {
	scroll-margin-top: 10rem;
}

#contacts .contacts-col a {
	font-weight: 400;
    font-size: 6rem;
    color: #fff;
    line-height: normal;
}
#contacts .contacts-col p {
	font-weight: 400;
    font-size: 3rem;
    color: #fff;
    line-height: normal;
}
#contacts .contacts-col a.contacts-email {
	font-weight: 600;
}

.where-city__menu {
    width: 55rem;
    display: flex;
    flex-direction: column;
	z-index: 9;
	position: relative;
}
.where-city__menu-button {
	display: flex;
    padding: 2rem;
    align-items: center;
    justify-content: space-between;
	backdrop-filter: blur(35.64710998535156px);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-radius: 2rem;
}
.where-city__menu-button p {
    font-weight: 500;
    font-size: 3rem;
    color: #fff;
    line-height: normal;
}
.where-city__menu-button svg  {
    width: 3.1rem;
    height: auto;
    transition: .3s all;
}
.where-city__menu-content {
    height: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 2rem;
	transition: .3s all;
}
.where-city__menu-content__button {
	font-weight: 500;
	font-size: 3rem;
	color: #fff;
    line-height: normal;
	text-align: left;
}
.where-city__menu.active .where-city__menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 6;
    backdrop-filter: blur(35.64710998535156px);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-radius: 0 0 2rem 2rem;
    height: auto;
    border-top: none;
	max-height: 50vh;
    overflow-y: auto;
}
.where-city__menu.active .where-city__menu-button svg {
	transform: rotate(180deg);
}
.where-city__menu.active .where-city__menu-button {
	border-radius: 2rem 2rem 0 0;
	border-bottom: none;
}

@media screen and (max-width: 992px) {
    .popup-blog {
		padding: 2rem 0;
	}
	.popup-blog__main {
		gap: 2.5rem;
		max-width: 33.3rem;
		padding: 0;
	}
	.popup-blog__main::-webkit-scrollbar {
		width: 0.3rem;
	}
	.popup-blog__main::-webkit-scrollbar-track {
		background: transparent;
	}
	.popup-blog__main::-webkit-scrollbar-thumb {
		background-color: transparent;
		border-radius: 2rem;
		border: .3rem solid transparent;
	}
	.popup-blog__name {
		align-items: center;
	}
	.popup-blog__name img {
		width: 12.5rem;
	}
	.popup-blog__close {
		padding: 1.7rem 1.6rem;
	}
	.popup-blog__content {
		padding: 2rem;
		gap: 1rem;
	}
	.popup-blog__content-img {
		height: 22rem;
	}
	.popup-blog__content-description {
		gap: 1rem;
		font-size: 1.4rem;
	}
	.popup-blog__content-description2 h2 {
		font-size: 2.8rem;
	}
	.popup-blog__content-description2 p, .popup-blog__content-description2 li {
		font-size: 1.4rem;
	}
	.popup-blog__content-next {
		padding: 0.5rem;
	}
	.popup-blog__content-next p {
		font-size: 1.6rem;
	}

	.popup-cookie {
		bottom: 2rem;
        right: 2rem;
        gap: 1rem;
        padding: 2rem;
        max-width: 33.5rem;
	}
	.popup-cookie > p {
		font-size: 1.6rem;
	}
	.popup-cookie > button {
        padding: 0.5rem 1.5rem;
        font-size: 1.8rem;
	}
	.popup-cookie__name p {
		font-size: 2rem;
	}
	.page_404 {
		margin: 3.5rem 0 8rem 0;
		position: relative;
	}
	.page_404::before {
		content: '';
		transform: rotate(21.845deg);
		border: 1px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
		background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
		position: absolute;
		z-index: -1;
		width: 26.5rem;
        height: 26.5rem;
        border-radius: 5rem;
        top: 35.4rem;
        left: -21.5rem;
	}
	.page_404::after {
		content: '';
		transform: rotate(35.96deg);
		border: 1px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
		background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
		position: absolute;
		z-index: -1;
		right: -23rem;
        top: 22.1rem;
        width: 26.7rem;
        height: 26.7rem;
        border-radius: 5rem;
	}
	.page_404-container {
		gap: 8rem;
		position: relative;
	}
	.page_404-container::before {
		content: '';
		background-image: url(/wp-content/uploads/2025/08/press.png);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		position: absolute;
		height: 25.6rem;
        width: 34.5rem;
        bottom: auto;
        left: -5rem;
        top: 46.4rem;
        z-index: -1;
	}
	.page_404-col h2 {
		font-size: 12rem;
	}
	.page_404-col h3 {
		font-size: 2.8rem;
		margin-bottom: 0;
		max-width: 18.5rem;
        text-align: center;
	}
	.page_404-col a {
		display: none;
	}
	.result-item__resizer::before {
		width: 2.8rem;
		height: 5.1rem;
		left: -4.4rem;
	}
	.result-item__resizer::after {
		width: 2.8rem;
		height: 5.1rem;
		right: -4.4rem;
	}
	
    .popup-video__main {
        gap: 2.5rem;
        max-width: 33.3rem;
        padding: 0;
    }
    .popup-video__content {
        padding: 2rem;
        gap: 1rem;
    }
	.popup-video__content .presscenter-video__item-video {
		height: 15.5rem;
	}
	.popup-video__popup-content {
		gap: 1rem;
	}
	.popup-video__popup-content > h3 {
		font-size: 2.8rem;
	}
	.popup-video__content-desc {
		font-size: 1.4rem;
	}
	.popup-video__content-next p {
		font-size: 1.6rem;
	}
	
	.presscenter-banner {
        padding: 4rem 2rem;
        flex-direction: column;
        gap: 2rem;
	}
	.presscenter-banner > h3 {
        font-size: 2.6rem;
        text-align: center;
	}
	
	.where {
        margin-bottom: 4rem;
        margin-top: 3.5rem;
    }
	.where-city {
		flex-direction: column;
		gap: 1.5rem;
	}
	.where-city > p {
		font-size: 2.3rem;
		text-align: center;
		line-height: 100%;
		max-width: 30rem;
	}
	.where-city select {
		width: 100%;
		height: 5.7rem;
		font-size: 1.4rem;
		padding: 0 2rem;
		background-size: 2.1rem;
	}
	.where-map {
        height: 37.1rem;
        min-height: 37.1rem;
        border-radius: 0;
        min-width: 100vw;
        margin-left: -2rem;
    }
	.where-col {
        max-height: none;
        width: 100%;
        min-width: 100%;
		padding-right: 0;
    }
	.contacts-item__col.where-item__content-item {
		padding: 2rem;
	}
	.contacts-item__col22 > img {
		display: none;
	}
	.contacts-item__col33 {
		gap: 2rem;
	}
	.contacts-item__row2 {
		display: flex;
		align-items: center;
		padding: 0 1rem;
		justify-content: space-between;
		gap: 2rem;
		width: 100%;
	}
	.contacts-item__row2 > img {
		display: block;
		width: 12rem;
		min-width: 12rem;
	}
	.contacts-item__title {
		font-size: 2.3rem;
		line-height: 117%;
	}
	.contacts-item__address {
		gap: 1rem;
	}
	.contacts-item__address > p {
		font-size: 1.6rem;
		line-height: 169%;
	}
	.contacts-item__tel {
		font-size: 2.3rem;
		line-height: 117%;
	}
	.contacts-item__site {
		font-size: 1.6rem;
		line-height: 169%;
	}
	.where-item__social {
		gap: 1.3rem;
	}
	.where-item__social img {
		width: 3rem;
	}
	.contacts-item__col.where-item__content-item {
		width: 100%;
	}
	
	#contacts .contacts-col a {
		font-size: 4rem;
	}
	#contacts .contacts-col p {
		font-size: 2.8rem;
	}
	
	
	
	
	
	
	
}



.banner_home2 .banner-container > img {
	width: 56.3rem;
}
.banner_home2::after {
    background-image: url(/wp-content/uploads/2025/11/mountv-on-fullscreen.png);
    height: 54.3rem;
    bottom: 5rem;
}
.banner_home2 .banner-fon {
    bottom: -62rem;
}
.banner_home2 {
    margin-bottom: 7rem;
}
.banner-name h3 {
    color: var(--ELEMENTS-white, #FFF);
    text-align: center;
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.synergy2::before {
    top: -24.4rem;
}
.synergy2::after {
	bottom: -47.4rem;
}
.synergy2 .synergy-name {
	display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.synergy2 .synergy-name p {
    max-width: 91.2rem;
    text-align: center;
    font-size: 3rem;
    line-height: normal;
}
.synergy2 .synergy-name p b {
	font-weight: 700;
}
.synergy2 {
	margin-bottom: 15rem;
}

.time_home2 {
	margin-bottom: 15rem;
}
.time_home2 .time-container {
	gap: 2rem;
}
.time_home2 .title {
    max-width: 122rem
}
.time_home2 .contacts-form__submit {
    margin-left: auto;
    margin-top: 2rem;
}
.time_home2 .time-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    border-radius: 3rem;
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(29.83724021911621px);
    padding: 0 1.2rem;
}
.time_home2-item {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 3rem;
}
.time_home2-item > span {
	color: var(--ELEMENTS-white, #FFF);
	font-size: 6rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
.time_home2-item__col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.time_home2-item__col h4 {
	color: var(--ELEMENTS-white, #FFF);
	font-size: 4.8rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
.time_home2-item__col p {
	color: var(--ELEMENTS-white, #FFF);
	font-size: 3rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.time_home2-item__col p b {
	font-weight: 700;
}

.microneedle_home2 {
	margin-bottom: 22.4rem;
}
.microneedle_home2 .microneedle-container {
	gap: 20.39rem;
}
.microneedle_home2 .microneedle-img {
    width: 41.1rem;
    bottom: auto;
}
.microneedle_home2 .microneedle-main {
	align-items: center;
	padding: 7.9rem 6.4rem 6.3rem 6.4rem;
}
.microneedle_home2 .microneedle-block {
    padding: 2rem 6rem 4.5rem 2rem;
    max-width: 56.9rem;
}
.microneedle_home2 .microneedle-block:nth-child(2) {
    padding: 2rem 4rem 2rem 4rem;
}
.microneedle_home2 .microneedle-main {
	position: relative;
}

.phototip_home2 {
	position: relative;
    margin-bottom: 14rem;
}
.phototip_home2::before {
    content: '';
    background-image: url(/wp-content/uploads/2025/08/leader-fon.png);
    position: absolute;
    width: 78.4rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 78.1rem;
    top: -59.5rem;
    right: 0;
    z-index: -1;
}
.phototip_home2-container {
	display: flex;
    flex-direction: column;
    gap: 4rem;
}
.phototip_home2-name {
	display: flex;
    flex-direction: column;
	align-items: center;
    gap: 2rem;
}
.phototip_home2-slider {
    position: relative;
}
.phototip_home2_swiper {
	width: 100%;
}
.phototip_home2_swiper .swiper-slide {
    height: auto;
}
.phototip_home2-slide {
    display: flex;
    align-items: center;
    padding-right: 6rem;
    justify-content: space-between;
    padding-left: 12rem;
}
.phototip_home2-slide__img {
	position: relative;
    width: 67.9rem;
    padding-top: 3.5rem;
    padding-right: 3.5rem;
}
.phototip_home2-slide__img img {
    width: 100%;
    height: 56.2rem;
    object-fit: cover;
    border-radius: 3rem;
}
.phototip_home2-slide__img::before {
    content: '';
    width: 56.5rem;
    height: 53.1rem;
    border-radius: 2rem;
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(9.899999618530273px);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.phototip_home2-slide__main {
    display: flex;
    flex-direction: column;
    width: 79rem;
    gap: 2.4rem;
    padding-bottom: 7.9rem;
}
.phototip_home2-slide__main h4 {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.phototip_home2-slide__main p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.phototip_home2_swiper-pagination {
    position: absolute;
    display: flex;
    gap: 1rem;
    width: auto !important;
    left: 94rem !important;
    bottom: 8.85rem !important;
    align-items: center;
	z-index: 9;
}
.phototip_home2_swiper-pagination .swiper-pagination-bullet {
	margin: 0 !important;
    background: rgba(255, 255, 255, 0.15);
    opacity: 1;
    width: 1.8rem;
    height: 1.8rem;
}
.phototip_home2_swiper-pagination .swiper-pagination-bullet-active {
	background: #FFF;
}
.phototip_home2_swiper-next {
    position: absolute;
    width: 5.5rem;
    height: 5.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFF;
    border-radius: 100%;
    right: 6rem;
    bottom: 7rem;
    z-index: 9;
}
.phototip_home2_swiper-next svg {
	width: 2.1rem;
    height: auto;
}

.result_home2 {
	margin-bottom: 14rem;
}
.result_home2::after {
	content: '';
    background-image: url(/wp-content/uploads/2025/11/bg-elm-rain-wh.png);
    width: 29.3rem;
    height: 78.1rem;
    position: absolute;
    bottom: -48.4rem;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
.result_home2 .result-main {
	padding: 0 8rem;
}
.result_home2::before {
    width: 98.8rem;
    height: 98.8rem;
    transform: rotate(21.845deg);
    top: -12.2rem;
    left: -66.6rem;
}

.banner2_home2 {
	margin-bottom: 14rem;
}
.banner2_home2 .banner2-main {
	flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.banner2_home2 .banner2-main h2 {
    text-align: center;
}
.banner2_home2 .banner2-main p {
    color: var(--ELEMENTS-white, #FFF);
    text-align: center;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 97rem;
}

.contacts_home2 {
	margin-bottom: 20rem;
}
.contacts_home2 .where-fon {
	top: 13.3rem;
}
.contacts_home2 .contacts-container {
	gap: 2rem;
	align-items: center;
}
.contacts_home2 .contacts-container > h2 {
	font-size: 8rem;
}
.contacts_home2 .contacts-container > h4 {
    color: var(--ELEMENTS-white, #FFF);
    text-align: center;
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 124.2rem;
}
.contacts_home2 .contacts-form__submit {
    margin-left: auto;
    margin-top: 2rem;
}

.faq_home2 {
    margin-bottom: 12.9rem;
    position: relative;
}
.faq_home2::before {
	content: '';
	width: 130.8641rem;
    height: 130.8641rem;
    border-radius: 10rem;
    border: 1px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    transform: rotate(-51.512deg);
    position: absolute;
    z-index: -1;
    top: 9.5rem;
    left: -117rem;
}
.faq_home2::after {
	content: '';
    width: 80.4117rem;
    height: 80.4117rem;
    border-radius: 10rem;
    border: 1px solid var(--BG-WHITE-42, rgba(255, 255, 255, 0.42));
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    position: absolute;
    top: -30.2rem;
    right: -64.6rem;
    transform: rotate(-51.512deg);
    z-index: -1;
}
.faq_home2-container {
	display: flex;
    flex-direction: column;
    gap: 4rem;
}
.faq_home2-name {
	display: flex;
    flex-direction: column;
    gap: 2rem;
}
.faq_home2-name h3 {
	color: var(--ELEMENTS-white, #FFF);
	text-align: center;
	font-size: 6rem;
	font-style: normal;
	font-weight: 600;
	line-height: 110%;
}
.faq_home2-main {
	display: flex;
    flex-direction: column;
    gap: 2rem;
}
.faq_home2-item {
    display: flex;
    flex-direction: column;
    border-radius: 3rem;
    border: 2px solid var(--ELEMENTS-white, #FFF);
    background: var(--BG-WHITE-15, rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(17.82355499267578px);
    padding: 3rem 4rem;
    position: relative;
}
.faq_home2-item__content {
	display: flex;
    flex-direction: column;
    position: relative;
    max-height: 0;
    overflow: hidden;
}
.faq_home2-item__content p {
	color: var(--ELEMENTS-white, #FFF);
	font-size: 3rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.faq_home2-item__content p b {
	font-weight: 700;
}
.faq_home2-item__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq_home2-item__button > p {
    color: var(--ELEMENTS-white, #FFF);
    font-size: 4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
	text-align: left;
}
.ymaps-2-1-79-balloon-content__header img {
	width: 150px;
}
.faq_home2-item__button-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    border: 2px solid #FFF;
    border-radius: 100%;
}
.faq_home2-item__button-icon__main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5.5rem;
    height: 5.5rem;
    background: #FFF;
    border-radius: 100%;
}
.faq_home2-item__button-icon__main svg {
    width: 2.1rem;
    height: auto;
}
.faq_home2-item.active .faq_home2-item__button-icon__main {
    background: rgba(255, 255, 255, 0.42);
    transform: rotate(-90deg);
}

.why_home2 {
	margin-bottom: 14rem;
	padding-top: 14.6rem;
}
.why_home2::before {
	background-image: url(/wp-content/uploads/2025/11/rectangle-19.png);
    height: 122.1rem;
    top: 0;
    bottom: auto;
}
.why_home2::after {
	content: '';
	background-image: url(/wp-content/uploads/2025/11/bg-elm-rain-wh-1.png);
	width: 33.1rem;
    height: 38.6rem;
    position: absolute;
    z-index: 0;
    right: 0;
    top: 40.3rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.why_home2 .why-container {
	gap: 6rem;
}
.why_home2 .why-title {
	margin-bottom: 0;
    color: #19497A;
    max-width: 96.9rem;
    line-height: 110%;
    font-weight: 700;
}
.why_home2 .why-main {
    gap: 6rem;
}
.why_home2 .why-top {
	display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.why_home2 .why-top > img {
    width: 59rem;
    min-width: 59rem;
    height: 88.5rem;
    border-radius: 2rem;
    object-fit: cover;
}
.why_home2 .why-top__col {
	width: 100%;
    max-width: 104rem;
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
	padding-top: 9.7rem;
}
.why_home2 .why-top__row {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}
.why_home2 .why-top__row > svg {
    width: 2.4rem;
    min-width: 2.4rem;
    height: auto;
}
.why_home2 .why-top__row > p {
    color: var(--TXT-ICONS-BLUE, #19497A);
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.why_home2 .why-top__row > p b {
	font-weight: 700;
}
.why_home2 .why-bottom {
	display: flex;
    flex-direction: column;
    gap: 6.9rem;
}
.why_home2 .contacts-form__submit {
	margin-top: 0;
}

.popup-blog__swiper {
	width: 100%;
	height: 40rem;
}
.popup-blog__slider .swiper-slide {
	height: auto;
}
.popup-blog__slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}

.video-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 960px;
}

.video-wrapper video {
	width: 100%;
	display: block;
	border-radius: 8px;
}

.video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	transition: 0.3s;
}
.video-play-btn::before {
	content: "";
	position: absolute;
	left: 35%;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 25px solid white;
}
.video-play-btn.paused::before {
	content: "";
	position: absolute;
	left: 35%;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: none;
	background: white;
	clip-path: polygon(0 0, 40% 0, 40% 100%, 0 100%, 0 0, 60% 0, 60% 100%, 100% 100%, 100% 0);
}
.video-play-btn:hover {
	background: rgba(0, 0, 0, 0.7);
}
.video-wrapper.playing .video-play-btn {
	opacity: 0;
	pointer-events: none;
}

.presscenter-reels {
    display: flex;
    align-items: center;
    position: relative;
}
.reels_prev {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 8rem;
    height: 8rem;
    border-radius: 100%;
    background: #FFF;
    position: absolute;
    left: 1rem;
    z-index: 9;
}
.reels_next {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 8rem;
    height: 8rem;
    border-radius: 100%;
    background: #FFF;
    position: absolute;
    right: 1rem;
    z-index: 9;
	transform: rotate(180deg);
}
.reels_prev svg {
    width: 5rem;
    height: auto;
}
.reels_next svg {
    width: 5rem;
    height: auto;
}
.reels_prev.swiper-button-disabled {
	opacity: 0.5;
}
.reels_next.swiper-button-disabled {
	opacity: 0.5;
}

.popup-who__main {
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    padding: 2rem;
    border-radius: 2rem;
    margin: auto;
}
.popup-who__buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
	width: 100%;
}
.popup-who__buttons a {
    width: 100%;
    border-radius: 4rem;
    border: 2px solid #FFF;
    display: flex;
    padding: 2rem;
    align-items: center;
    gap: 1rem;
    margin-right: auto;
    transition: .4s all;
    color: #FFF;
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    justify-content: center;
}

.contacts_col2 {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.contacts_col2 > button {
	width: 100%;
	background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
}


.why222 {
	display: flex;
    align-items: center;
    gap: 14rem;
}
.why222 img {
	height: 11rem;
}



@media screen and (max-width: 992px) {
	.banner_home2 .banner-container > img {
		width: 33.5rem;
	}
	.banner_home2::after {
        height: 26.5rem;
        bottom: 8rem;
	}
	.banner_home2 .banner-fon {
		bottom: -3rem;
	}
	.banner_home2 {
		margin-bottom: 0rem;
	}
	.banner-name h3 {
		font-size: 2.2rem;
	}

	.synergy2::before {
		top: -12.4rem;
	}
	.synergy2::after {
        bottom: 7.6rem;
        top: auto;
	}
	.synergy2 .synergy-name {
		gap: 1rem;
	}
	.synergy2 .synergy-name p {
		font-size: 1.8rem;
	}
	.synergy2 {
		margin-bottom: 8rem;
	}

	.time_home2 {
		margin-bottom: 8rem;
	}
	.time_home2 .time-container {
        gap: 2rem;
    }
	.time_home2 .contacts-form__submit {
		margin-top: 1rem;
	}
	.time_home2 .time-main {
		grid-template-columns: repeat(1, 1fr);
        gap: 2.4rem;
        padding: 2rem;
	}
	.time_home2-item {
        gap: 2rem;
        padding: 0;
	}
	.time_home2-item > span {
		font-size: 4rem;
	}
	.time_home2-item__col {
		gap: 1rem;
	}
	.time_home2-item__col h4 {
		font-size: 2.2rem;
	}
	.time_home2-item__col p {
		font-size: 1.6rem;
	}
	.time_home2-item__col p br {
		display: none;
	}

	.microneedle_home2 {
		margin-bottom: 8rem;
	}
	.microneedle_home2 .microneedle-container {
		gap: 3rem;
	}
	.microneedle_home2 .microneedle-img {
		width: 100%;
	}
	.microneedle_home2 .microneedle-main {
		padding: 2rem;
	}
	.microneedle_home2 .microneedle-block {
		padding: 2rem 4rem;
        max-width: none;
	}
	.microneedle_home2 .microneedle-block:nth-child(2) {
		padding: 2rem 4rem;
	}
	.microneedle_home2 .microneedle-block p br {
		display: block;
	}

	.phototip_home2 {
		margin-bottom: 8rem;
	}
	.phototip_home2::before {
		display: none;
	}
	.phototip_home2-container {
		gap: 3rem;
	}
	.phototip_home2-name {
		gap: 1rem;
	}
	.phototip_home2-slide {
        flex-direction: column;
        padding-right: 0;
        padding-left: 0;
        gap: 2rem;
	}
	.phototip_home2-slide__img {
        width: 100%;
        padding-top: 2.5rem;
        padding-right: 2.5rem;
	}
	.phototip_home2-slide__img img {
		height: 29.2rem;
        border-radius: 2rem;
	}
	.phototip_home2-slide__img::before {
		width: calc(100% - 2.5rem);
        height: calc(100% - 2.5rem);
	}
	.phototip_home2-slide__main {
		width: 100%;
        gap: 1.4rem;
        padding-bottom: 0;
	}
	.phototip_home2-slide__main h4 {
		font-size: 2.2rem;
	}
	.phototip_home2-slide__main p {
		font-size: 1.8rem;
	}
	.phototip_home2_swiper-pagination {
        position: relative;
        gap: 0.5rem;
        left: 0 !important;
        bottom: 0 !important;
	}
	.phototip_home2_swiper-pagination .swiper-pagination-bullet {
		height: 1.2rem;
		width: 1.2rem;
	}
	.phototip_home2_swiper-next {
        position: relative;
        width: 4.5rem;
        height: 4.5rem;
        right: 0;
        bottom: 0;
	}
	.phototip_home2_swiper-next svg {
		width: 1.5rem;
	}
	.phototip_home2-slider {
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
		justify-content: space-between;
	}

	.result_home2 {
		margin-bottom: 8rem;
	}
	.result_home2::after {
        width: 29.3rem;
        height: 78.1rem;
        bottom: -2.4rem;
        left: 0;
	}
	.result_home2 .result-main {
		padding: 0 2rem 2rem 2rem;
	}
	.result_home2::before {
		width: 26.5rem;
        height: 26.5rem;
        top: -6.3rem;
        left: -20rem;
        transform: rotate(-51.512deg);
	}

	.banner2_home2 {
		margin-bottom: -4rem;
	}
	.banner2_home2 .banner2-main {
		gap: 1rem;
		padding: 4.4rem 2rem;
	}
	.banner2_home2 .banner2-main p {
		font-size: 1.8rem;
	}

	.contacts_home2 {
		margin-bottom: 8rem;
	}
	.contacts_home2 .where-fon {
		top: 6rem;
	}
	.contacts_home2 .contacts-container {
		gap: 1rem;
	}
	.contacts_home2 .contacts-container > h2 {
		font-size: 3rem;
	}
	.contacts_home2 .contacts-container > h4 {
		font-size: 1.8rem;
	}
	.contacts_home2 .contacts-form__submit {
		margin-top: 1rem;
	}

	.faq_home2 {
		margin-bottom: 8rem;
	}
	.faq_home2::before {
        width: 26.5rem;
        height: 26.5rem;
        border-radius: 5rem;
        transform: rotate(-51.512deg);
        top: -3.5rem;
        left: -18rem;
	}
	.faq_home2::after {
		width: 26.5rem;
        height: 26.5rem;
        border-radius: 5rem;
        top: 25.8rem;
        right: -19.6rem;
        transform: rotate(-51.512deg);
	}
	.faq_home2-container {
		gap: 2rem;
	}
	.faq_home2-name {
		gap: 1rem;
	}
	.faq_home2-name h3 {
		font-size: 2.8rem;
	}
	.faq_home2-main {
		gap: 1rem;
	}
	.faq_home2-item {
		border-radius: 2rem;
		padding: 2rem 2rem;
	}
	.faq_home2-item__content p {
		font-size: 1.8rem;
	}
	.faq_home2-item__content p br {
		display: none;
	}
	.faq_home2-item__button > p {
		font-size: 1.8rem;
	}
	.faq_home2-item__button-icon {
		padding: 0.2rem;
	}
	.faq_home2-item__button-icon__main {
		width: 3.5rem;
		height: 3.5rem;
	}
	.faq_home2-item__button-icon__main svg {
		width: 1.5rem;
	}

	.why_home2 {
		margin-bottom: 0;
		padding-top: 14.6rem;
	}
	.why_home2::before {
		background-image: url(/wp-content/uploads/2025/11/rectangle-19.png);
		height: 128.1rem;
	}
	.why_home2::after {
		display: none;
	}
	.why_home2 .why-container {
		gap: 2rem;
	}
	.why_home2 .why-main {
		gap: 3rem;
	}
	.why_home2 .why-top {
        flex-direction: column;
        gap: 2rem;
	}
	.why_home2 .why-top > img {
        width: 100%;
        min-width: 100%;
        height: 41.5rem;
	}
	.why_home2 .why-top__col {
        gap: 1.5rem;
        padding-top: 0;
	}
	.why_home2 .why-top__row {
		gap: 0.5rem;
	}
	.why_home2 .why-top__row > svg {
		width: 1.5rem;
		min-width:1.5rem;
	}
	.why_home2 .why-top__row > p {
		font-size: 1.6rem;
	}
	.why_home2 .why-bottom {
		display: flex;
		flex-direction: column;
		gap: 3rem;
	}
	.popup-blog__swiper {
		height: 25rem;
	}
	.popup-blog__slider img {
		border-radius: 1rem;
	}
	
	.where-city__menu {
		width: 100%;
	}
	.where-city__menu-button svg {
    	width: 2.1rem;
	}
	.where-city__menu-button p {
		font-size: 1.4rem;
	}
	.where-city__menu-content {
		gap: 1.5rem;
	}
	.where-city__menu-content__button {
		font-size: 1.4rem;
	}
	.reels_next, .reels_prev {
		display: none;
	}
	
	.popup-blog__content-description h1 {
		font-size: 2.5rem;
	}
	.popup-blog__content-description2 h2 {
		font-size: 2.2rem;
	}
	.popup-blog__content-description2 h3 {
		font-size: 2rem;
	}
	.popup-blog__content-description2 h4 {
		font-size: 1.8rem;
	}
	.popup-blog__content-description2 h5 {
		font-size: 1.6rem;
	}
	
	
	.popup-who__buttons {
		flex-direction: column;
		gap: 1rem;
	}
	.popup-who__buttons a {
		font-size: 1.6rem;
		padding: 1.5rem;
	}
	
	.why222 {
		gap: 2rem;
	}
	.why222 img {
		height: 6rem;
	}
	
	
}

::-webkit-scrollbar {
  width: 1rem;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
}

::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 2rem;
  border: 0.4rem solid rgba(255, 255, 255, 0.15); /* создает отступ */
}