/* ===========================
   Base CSS (без :root, без Inter)
   =========================== */

/* Reset + базовый шрифт */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Tinos", serif;
    font-size: 16px;
    line-height: 1.6;
}

img {
    max-width: 100%;
    object-fit: contain;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(40px, 6vw, 72px);
}

h2 {
    font-size: clamp(32px, 4.8vw, 56px);
}

h3 {
    font-size: clamp(28px, 3.6vw, 40px);
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

/* Ссылки */
a {
    color: #00c2ff;
    text-decoration: none;
}

/* Контейнер */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 24px;
}


.all-block {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.header-lvl1 {
    background-color: #18181878;
}

.header-lvl2 {
    padding-top: 300px;
    padding-bottom: 300px;
}

.header-lvl2>h1 {
    font-size: 70px;
    font-weight: 600;
    line-height: 1.1em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 15px;
}

.header-lvl2>p {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.6em;
    text-align: center;
    margin-bottom: 20px;
}

.header-lvl3 {
    display: flex;
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
}

.header-lvl1-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.header-lvl1-content>* {
    margin-top: auto;
    margin-bottom: auto;
}

.header-lvl1-content>p {
    color: white;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.header-menu>ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.header-menu {
    margin-left: auto;
}

.header-menu>ul>li>a {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    color: white;
    text-transform: uppercase;
    transition: 0.3s;
}

.header-menu>ul>li>a:hover {
    color: #4DA6FF;
}

.button-block {
    display: flex;
    flex-wrap: wrap;
}

.button-block>.button1 {
    margin-left: auto;
    margin-right: auto;
}

.button1 {
    display: inline-flex;
    padding: 15px 25px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    background-color: #4DA6FF;
    transition: 0.3s;
    border: 0px;
    cursor: pointer;
}

.button1:hover {
    background-color: #242424;
    color: white;
}

.home-trio-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.home-trio-content-block {
    width: calc(100% / 3 - (20px * 2 / 3));
    background-color: #242424;
    padding: 40px;
    display: grid;
    justify-items: center;
}

.all-block>.container {
    z-index: 2;
    position: relative;
}

.home-trio-content-block>img {
    height: 60px;
    width: auto;
    filter: invert(63%) sepia(11%) saturate(6576%) hue-rotate(185deg) brightness(97%) contrast(109%);
    margin-bottom: 10px;
}

.home-trio-content-block>h2 {
    margin-top: 8px;
    margin-bottom: 10px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1em;
    text-align: center;
}

.home-trio-content-block>p {
    color: white;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6em;
}

.home-block1 {
    padding-top: 130px;
    padding-bottom: 130px;
}

.home-block1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.home-block1-element {
    width: calc(100% / 3 - (20px * 2 / 3));
}

div.home-block1-element {
    padding: 40px;
    background-color: #4DA6FF33;
}

div.home-block1-element>h2 {
    color: #4DA6FF;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
}

div.home-block1-element>p {
    color: #242424;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1em;
    margin-bottom: 40px;
}

.button2 {
    display: inline-flex;
    padding: 15px 25px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    background-color: #242424;
    transition: 0.3s;
}

.button2:hover {
    background-color: #4DA6FF;
    color: rgb(255, 255, 255);
}

a.home-block1-element {
    min-height: 300px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}

.home-block1-element-cont {
    margin-top: auto;
    background-color: #4DA6FF;
    padding: 12px 20px;
    width: 100%;
    display: flex;
}

.home-block1-element-cont>p {
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
    text-align: center;
    margin: auto;
}

.home-block2 {
    padding-top: 130px;
    padding-bottom: 130px;
    background-position: center center;
    background-size: cover;
}

.home-block2-sod {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.home-block2-sod-el {
    width: calc(100% / 2 - (40px * 1 / 2));
}

.home-block2-sod>.home-block2-sod-el:first-of-type {
    display: flex;
}

.home-block2-sod-el-left {
    margin-top: auto;
    margin-bottom: auto;
}

.home-block2-sod-el-left>img {
    height: 100px;
    width: auto;
    margin-bottom: 40px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(134deg) brightness(100%) contrast(102%);
}

.home-block2-sod-el-left>p:first-of-type {
    margin-bottom: 10px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
}

.home-block2-sod-el-left>h2 {
    margin-bottom: 15px;
    color: white;
    font-size: 70px;
    font-weight: 600;
    line-height: 1.1em;
}

.home-block2-sod-el-left>p:nth-of-type(2) {
    margin-bottom: 40px;
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.6em;
}

.home-block2-sod-el-left>p:last-of-type {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    margin-bottom: 40px;
}

.home-block2-sod-el-left>a>img {
    height: 86px;
    width: auto;
    filter: invert(100%) sepia(0%) saturate(7468%) hue-rotate(72deg) brightness(114%) contrast(107%);
}

.home-block2-sod-el-right>a {
    display: flex;
    width: 100%;
    padding: 15px;
    background-color: #000000a3;
    gap: 20px;
}

.home-block2-sod-el-right-back {
    width: 200px;
    min-height: 200px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-block2-sod-el-right-cont {
    display: flex;
    width: calc(100% - 200px - 20px);
}

.home-block2-sod-el-right-cont-sod {
    margin-top: auto;
    margin-bottom: auto;
}

.home-block2-sod-el-right-cont-sod>h3 {
    margin-bottom: 15px;
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.1em;
}

.home-block2-sod-el-right-cont-sod>p {
    margin-bottom: 20px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
}

.home-block2-sod-el-right>a:not(:last-of-type) {
    margin-bottom: 20px;
}

.home-block3 {
    padding-top: 130px;
    padding-bottom: 130px;
}

.home-block3-lvl1 {
    display: grid;
    justify-items: center;
    margin-bottom: 60px;
}

.home-block3-lvl1>* {
    text-align: center;
    max-width: 684px;
}

.home-block3-lvl1>p:first-of-type {
    color: #4DA6FF;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
}

.home-block3-lvl1>h2 {
    color: #242424;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.1em;
    margin-bottom: 15px;
}

.home-block3-lvl1>p:last-of-type {
    color: #242424;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6em;
}

.home-block3-lvl2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.home-block3-lvl2>a {
    width: calc(100% / 2 - (20px * 1 / 2));
}

.home-block3-lvl2-img {
    width: 100%;
    height: 560px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-block3-lvl2-content {
    background-color: #4DA6FF;
    padding: 40px;
}

.home-block3-lvl2-content>h3 {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.1em;
    margin-bottom: 15px;
}

.home-block3-lvl2-content>p {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    margin-bottom: 20px;
}

.button3 {
    display: inline-flex;
    padding: 10px 18px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    background-color: #242424;
    transition: 0.3s;
    border: 0px;
    cursor: pointer;
}

.button3:hover {
    background-color: rgb(255, 255, 255);
    color: #242424;
}

.button4 {
    display: inline-flex;
    padding: 10px 18px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    background-color: #4DA6FF;
    transition: 0.3s;
    border: 0px;
    cursor: pointer;
}

.button4:hover {
    background-color: #242424;
    color: white;
}

.home-block3-lvl3 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.home-block3-lvl3>img {
    width: 126px;
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
    filter: invert(52%) sepia(93%) saturate(981%) hue-rotate(187deg) brightness(101%) contrast(104%);
}

.home-block3-lvl3-cont {
    max-width: 630px;
    margin-top: auto;
    margin-bottom: auto;
}

.home-block3-lvl3-cont>p:first-of-type {
    margin-bottom: 10px;
    color: #242424;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.1em;
}

.home-block3-lvl3-cont>p:last-of-type {
    color: #242424;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6em;
}

.button5 {
    padding: 20px 40px 20px 40px;
    background-color: #4DA6FF;
    color: rgb(255, 255, 255);
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    display: inline-flex;
    cursor: pointer;
    transition: 0.3s;
}

.button5:hover {
    background-color: #242424;
    color: rgb(255, 255, 255);
}

.home-block3-lvl3>a {
    margin-top: auto;
    margin-bottom: auto;
}

.home-block4 {
    padding-top: 130px;
    padding-bottom: 130px;
    background-color: #4DA6FF3D;
}

.home-block4-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.home-block4-content-left {
    width: calc(60% - (40px * 1 / 2));
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-block4-content-right {
    width: calc(40% - (40px * 1 / 2));
}

.home-block4-content-left-img-block {
    width: calc(100% / 3 - (10px * 2 / 3));
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 220px;
}

.home-block4-content-right>h2 {
    color: #4DA6FF;
    font-size: 18px;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.home-block4-content-right>p {
    color: #242424;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.1em;
    margin-bottom: 40px;
}

.home-block4-content-right-otz-sect-el {
    padding: 30px 30px 30px 30px;
    background-color: #0000000D;
}

.home-block4-content-right-otz-sect-el>p {
    color: #242424;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    margin-bottom: 20px;
}

.home-block4-content-right-otz-sect-el-name {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.home-block4-content-right-otz-sect-el-name>img {
    width: 60px;
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
    border-radius: 100%;
}

.home-block4-content-right-otz-sect-el-name-contentn {
    margin-top: auto;
    margin-bottom: auto;

}

.home-block4-content-right-otz-sect-el-name-contentn>p:first-of-type {
    color: #242424;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.1em;
}

.home-block4-content-right-otz-sect-el-name-contentn>p:last-of-type {
    color: #242424;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
}

.home-block4-content-right-otz-sect>.home-block4-content-right-otz-sect-el:not(:last-of-type) {
    margin-bottom: 20px;
}

footer {
    padding-top: 130px;
    padding-bottom: 130px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.footer-lvl1 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-lvl1-content {
    width: calc(100% / 3 - (40px * 2 / 3));
}

.footer-lvl1-content>p {
    color: #FFFFFF;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.1em;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #FFFFFF32;
}

.footer-lvl1-content-inf-blcok {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-lvl1-content-inf-blcok>img {
    width: 55px;
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
    filter: invert(50%) sepia(97%) saturate(879%) hue-rotate(187deg) brightness(102%) contrast(101%);
}

.footer-lvl1-content-inf-blcok-cont {
    margin-top: auto;
    margin-bottom: auto;
    width: calc(100% - 20px - 55px);
}

.footer-lvl1-content-inf-blcok-cont>p:first-of-type {
    margin-bottom: 10px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1em;
}

.footer-lvl1-content-inf-blcok-cont>p:last-of-type {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6em;
}

.footer-lvl1-content>.footer-lvl1-content-inf-blcok:not(:last-of-type) {
    margin-bottom: 30px;
}

.footer-menu>ul {
    list-style-type: none;
}

.footer-menu>ul>li>a {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6em;
    transition: 0.3s;
    display: inline-flex;
}

.footer-menu>ul>li>a:hover {
    color: #4DA6FF;
}

.footer-menu>ul>li>a>img {
    height: 26px;
    width: auto;
    margin-top: auto;
    margin-bottom: auto;
    filter: invert(50%) sepia(97%) saturate(879%) hue-rotate(187deg) brightness(102%) contrast(101%);
}

.footer-line {
    width: 100%;
    height: 1px;
    background-color: #FFFFFF32;
    margin-top: 30px;
    margin-bottom: 30px;
}

.footer-lvl2 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-lvl2-content {
    width: calc(100% / 2 - (40px * 1 / 2));
}

.footer-lvl2-content {
    display: flex;
}

.footer-lvl2-content>p {
    margin-top: auto;
    margin-bottom: auto;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;

}

.footer-lvl2-content>img {
    height: 25px;
    width: auto;
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
}

.header-lvl2.all-page-title {
    padding-top: 100px;
    padding-bottom: 200px;
}

.breadcrumb {
    list-style-type: none;
    display: flex;
}

.breadcrumb>li {
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: center;
}

.breadcrumb a {
    color: white;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #4DA6FF;
}

.breadcrumb .breadcrumb_last {
    color: #4DA6FF;
}

.paddin-all-block {
    padding-top: 130px;
    padding-bottom: 130px;
}

.tyr-sect {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tyr-sect>a {
    width: calc(100% / 3 - (20px * 2 / 3));
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;
    min-height: 260px;
    padding: 20px;
    display: flex;
}

.tyr-sect-cont {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: auto;
    width: 100%;
}

.tyr-sect-cont-left {
    display: flex;
    gap: 10px;
}

.tyr-sect-cont-left>img {
    height: 20px;
    width: auto;
    margin-top: auto;
    margin-bottom: auto;
    filter: invert(100%) sepia(0%) saturate(5772%) hue-rotate(69deg) brightness(117%) contrast(94%);
}

.tyr-sect-cont>p {
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
}

.tyr-sect-cont-left>p {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.tyr-sect-cont p {
    color: white;
    margin-top: auto;
    margin-bottom: auto;
}

.tyr-sect-cont>p {
    font-size: 16px;
    line-height: 28.8px;
}

.cat-tyr-block {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.cat-tyr-block-filter {
    width: calc(30% - (40px * 1 / 2));
}

.cat-tyr-block-catlist {
    width: calc(70% - (40px * 1 / 2));
}

.cat-tyr-block-filter-filtr-block {
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.cat-tyr-block-filter>.button1 {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.cat-tyr-block-catlist-pc {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cat-tyr-block-catlist-url {
    width: calc(100% / 2 - (30px * 1 / 2));
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    border-radius: 10px;
    padding: 20px;
}

.cat-tyr-block-catlist-url-img {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

.cat-tyr-block-catlist-url>h2 {
    font-size: 23px;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 1px solid #9D9D9D24;
    padding-bottom: 20px;
    line-height: 27.6px;
    color: #242424;
}

.cat-tyr-block-catlist-url-cont>p {
    font-size: 25px;
    font-weight: 700;
    color: #00c2ff;
    margin-top: auto;
    margin-bottom: auto;
}

.cat-tyr-block-catlist-url-cont>p>span {
    font-size: 15px;
    color: #242424;
    font-weight: 500;
}

.cat-tyr-block-catlist-url-cont {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cat-tyr-block-catlist-url-cont>.button4 {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
}

.cat-tyr-block-filter-filtr-block-title {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    color: #242424;
}

.cat-tyr-block-filter-content>.button1 {
    width: 100%;
    justify-content: center;
}

.tyr-block-osn-page {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tyr-block-osn-page-left {
    width: calc(65% - (30px * 1 / 2));
}

.tyr-block-osn-page-right {
    width: calc(35% - (30px * 1 / 2));
}

.tyr-block-osn-page-left>img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 30px;
}

.tyr-block-osn-page-right-element {
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}



.tyr-block-osn-page-right-element-linesect {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
}

.tyr-block-osn-page-right-element-linesect1 {
    height: 3px;
    width: 30px;
    background-color: #4DA6FF;
}

.tyr-block-osn-page-right-element-linesect2 {
    height: 3px;
    width: 7px;
    background-color: #4DA6FF;
}

.tyr-block-osn-page-right-element-list>a {
    display: flex;
    gap: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: 0.3s;
}

.tyr-block-osn-page-right-element-list>a>img {
    width: 8px;
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
    filter: invert(58%) sepia(13%) saturate(2234%) hue-rotate(172deg) brightness(101%) contrast(102%);
}

.tyr-block-osn-page-right-element-list>a>p {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 28.8px;
    color: #242424;
    transition: 0.3s;
}

.tyr-block-osn-page-right-element-list>a:not(:last-of-type) {
    border-bottom: 1px solid #eee;
}

.tyr-block-osn-page-right-element-list>a:hover>p {
    color: #4DA6FF;
}

.tyr-block-osn-page-right-element-sptyr>a:not(:last-of-type) {
    margin-bottom: 30px;
}

.tyr-block-osn-page-right-element-sptyr>a {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tyr-block-osn-page-right-element-sptyr-img {
    width: calc(40% - (20px * 1 / 2));
    height: 70px;
    margin-top: auto;
    margin-bottom: auto;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;
}

.tyr-block-osn-page-right-element-sptyr-content {
    width: calc(60% - (20px * 1 / 2));
}

.tyr-block-osn-page-right-element-sptyr-content {
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
}

.tyr-block-osn-page-right-element-sptyr-content-sod {
    margin-top: auto;
    margin-bottom: auto;
}

.tyr-block-osn-page-right-element-sptyr-content-sod>p:first-child {
    font-size: 14px;
    font-weight: 600;
    line-height: 16.8px;
    color: #4DA6FF;
    margin-bottom: 10px;
}

.tyr-block-osn-page-right-element-sptyr-content-sod>p:last-of-type {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.6px;
    color: #242424;
    margin-bottom: 0px;
}

.tyr-block-osn-page-left>h2 {
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 30px;
}

.tyr-block-osn-page-left>p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 28.8px;
}

.tyr-block-osn-page-left-tabe-info {
    border-radius: 20px;
    border: 1px solid #e4e8e9;
    margin-bottom: 30px;
}

.tyr-block-osn-page-left-tabe-info-line {
    display: flex;
}

.tyr-block-osn-page-left-tabe-info-line-left {
    border-right: 1px solid #e4e8e9;
    padding: 10px 20px;
    width: 40%;
}

.tyr-block-osn-page-left-tabe-info-line-right {
    width: 60%;
    padding: 10px 20px;
}

.tyr-block-osn-page-left-tabe-info>.tyr-block-osn-page-left-tabe-info-line:not(:last-of-type) {
    border-bottom: 1px solid #e4e8e9;
}

.tyr-block-osn-page-left-tabe-info-line-left>p {
    font-size: 17px;
    font-weight: 500;
}

.tyr-block-osn-page-left-tabe-info-line-right>p {
    font-size: 17px;
    color: #888888;
}

#gaer {
    margin-bottom: 30px;
}

.tyr-block-osn-page-left>iframe {
    border-radius: 20px;
}

.contact1 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    border-radius: 15px;
}

.contact1>div {
    width: calc(100% / 2 - (40px * 1 / 2));
    display: flex;
}

.contact1-left>iframe {
    border-radius: 15px 0 0 15px;
}

.contact1-right-content {
    margin-top: auto;
    margin-bottom: auto;
}

.contact1-right-content>h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 10px;
}

.contact1-right-content>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28.8px;
    margin-bottom: 30px;
}

.contact1-right-content {
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact1 {
    margin-bottom: 130px;
}

.contact2 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact2-element {
    width: calc(100% / 4 - (30px * 3 / 4));
    background-color: #4DA6FF;
    border-radius: 15px;
    padding: 20px;
    display: grid;
}

.contact2-element>img {
    height: 40px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    filter: invert(97%) sepia(8%) saturate(20%) hue-rotate(36deg) brightness(106%) contrast(100%);
}

.contact2-element>p {
    text-align: center;
}

.contact2-element>p:first-of-type {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.6px;
    color: white;
}

.contact2-element>p:last-of-type {
    font-size: 16px;
    line-height: 28.8px;
    color: white;
}

/* 1) Убрать бордер у .woocommerce nav.woocommerce-pagination ul (и li на всякий) */
.woocommerce nav.woocommerce-pagination ul,
.cat-tyr-block-catlist-pagination .woocommerce-pagination ul {
    border: none !important;
    box-shadow: none;
}

.woocommerce nav.woocommerce-pagination ul li,
.cat-tyr-block-catlist-pagination .woocommerce-pagination li {
    border: none !important;
}

/* 2) Стрелки prev/next — белые (включая hover/focus) */
.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers a.prev,
.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers a.next {
    color: #fff !important;
}

.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers a.prev:hover,
.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers a.next:hover,
.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers a.prev:focus,
.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers a.next:focus {
    color: #fff !important;
}

/* 3) Убрать бордер у спанов (активная страница/многоточие) */
.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers .current,
.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers .dots,
.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers span {
    border: none !important;
}

/* === Woo pagination styled like button3/button4 === */
.cat-tyr-block-catlist-pagination {
    margin-top: 30px;
}

.cat-tyr-block-catlist-pagination .woocommerce-pagination {
    text-align: center;
}

.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Базовый вид обычных ссылок (как .button3) */
.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers a.page-numbers {
    display: inline-flex;
    padding: 10px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    background-color: #242424;
    transition: 0.3s;
    border: 0;
    cursor: pointer;
    text-decoration: none;
}

/* Hover обычных ссылок — фон #4DA6FF (как просил) */
.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers a.page-numbers:hover {
    background-color: #4DA6FF;
    color: #fff;
}

/* Активная страница (как .button4) */
.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers .current {
    display: inline-flex;
    padding: 10px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    background-color: #4DA6FF;
    border: 0;
}

/* Многоточие */
.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers .dots {
    display: inline-flex;
    padding: 10px 12px;
    color: #888;
    background: transparent;
}

/* Убираем подчеркивание и наследуем цвет у стрелок prev/next */
.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers a.prev,
.cat-tyr-block-catlist-pagination .woocommerce-pagination .page-numbers a.next {
    text-decoration: none;
    color: inherit;
}

.cat-tyr-filter-actions>.button1 {
    width: 100%;
    justify-content: center;
}

.cat-tyr-filter-actions>.button3 {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    padding: 15px 25px;
}


.cat-tyr-filter-actions>.button3:hover {
    background-color: #4DA6FF;
    color: white;
}

/* Список чекбоксов: отступ между элементами 10px */
.cat-tyr-block-filter-content .cat-tyr-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* между чекбоксами */
}

/* Один чекбокс с подписью */
.cat-tyr-block-filter-content .cat-tyr-filter-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* расстояние между самим чекбоксом и текстом */
}

/* Текст подписи чекбокса */
.cat-tyr-block-filter-content .cat-tyr-filter-item span {
    color: #242424;
    font-size: 16px;
    font-weight: 300;
}

.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    color: rgb(255, 255, 255);
    background-color: #4DA6FF;
}

.wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    width: calc(35% - 40px);
}

.wc-block-components-sidebar-layout.wc-block-cart.wp-block-woocommerce-filled-cart-block.is-large {
    gap: 40px;
}

.wp-block-woocommerce-empty-cart-block>h2:last-of-type {
    display: none !important;
}

.wc-block-grid.wp-block-product-new.wp-block-woocommerce-product-new.wc-block-product-new.has-4-columns {
    display: none !important;
}

.contact1-left > iframe {
  min-height: 100%;
}

/* ===== Contact Form 7 — сетка 2 колонки под стиль Asolka ===== */
.contact1-right .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* элементы формы в сетке */
.contact1-right .wpcf7-form p {
  margin: 0; /* отступы задаём gap-ом */
}

/* Сообщение — на всю ширину */
.contact1-right .wpcf7-form p:has(.wpcf7-textarea),
.contact1-right .wpcf7-form p:has(.wpcf7-submit) {
  grid-column: 1 / -1;
}

/* Поля (вписываются на 100%) */
.contact1-right .wpcf7-form .wpcf7-form-control {
  width: 100%;
  display: block;
  font-family: "Tinos", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #242424;
  background: #fff;
  border: 1px solid #e4e8e9;
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

/* Текстовые поля/почта/телефон */
.contact1-right .wpcf7-text,
.contact1-right .wpcf7-email,
.contact1-right .wpcf7-tel {
  height: 46px;
}

/* Сообщение (textarea) чуть выше */
.contact1-right .wpcf7-textarea {
  min-height: 160px;
  resize: vertical;
}

/* Фокус */
.contact1-right .wpcf7-form .wpcf7-form-control:focus {
  outline: none;
  border-color: #4DA6FF;
  box-shadow: 0 0 0 3px rgba(77,166,255,.15);
}

/* Ошибки CF7 */
.contact1-right .wpcf7-not-valid {
  border-color: #d33 !important;
  box-shadow: 0 0 0 3px rgba(211,51,51,.08);
}
.contact1-right .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
  color: #d33;
}

/* Кнопка — как .button1 */
.contact1-right .wpcf7-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  font-weight: 600;
  line-height: 16px;
  background-color: #4DA6FF;
  color: #fff;
  border: 0;
  border-radius: 0; /* чтобы совпадало с твоим .button1 */
  cursor: pointer;
  transition: .3s;
}
.contact1-right .wpcf7-submit:hover {
  background-color: #242424;
  color: #fff;
}

/* Спиннер аккуратно рядом с кнопкой */
.contact1-right .wpcf7-spinner {
  margin-left: 10px;
}

/* Сообщение CF7 об успехе/ошибке */
.contact1-right .wpcf7-response-output {
  grid-column: 1 / -1;
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid #e4e8e9;
  padding: 12px 14px;
}

.container.classic-page-content h2 {
  color: #242424;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.paddin-all-block > .container.classic-page-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  margin-bottom: 20px;
}

p.tyr-block-osn-page-right-element-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    margin-bottom: 10px;
}

/* Мобилка: все поля на всю ширину */
@media (max-width: 700px) {
  .contact1-right .wpcf7-form {
    grid-template-columns: 1fr;
  }

  .container.classic-page-content h2 {
    font-size: 20px;
  }
}


@media (max-width: 1100px) {
    .home-block4-content-right>p {
        font-size: 40px;
    }
}

@media (max-width: 1000px) {
    .home-block4-content-left, .home-block4-content-right {
        width: 100%;
    }

    .footer-lvl1-content {
        width: calc(100% / 2 - (40px * 1 / 2));
    }

    .footer-lvl1-content:last-of-type {
        width: 100%;
    }

    .header-menu>ul>li>a {
        font-size: 16px;
    }

    .header-menu>ul {
        gap: 20px;
    }

    .tyr-sect>a {
        width: calc(100% / 2 - (20px * 1 / 2));
    }

    .cat-tyr-block-catlist-url {
        width: 100%;
    }

    .cat-tyr-block-filter {
        width: calc(40% - (40px * 1 / 2));
    }

    .cat-tyr-block-catlist {
        width: calc(60% - (40px * 1 / 2));
    }

    .tyr-block-osn-page-left {
        width: 100%;
    }

    .tyr-block-osn-page-right {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .home-trio-content-block {
        width: 100%;
    }

    .home-block1-element {
        width: calc(100% / 2 - (20px * 1 / 2));
    }

    .home-block2-sod-el {
        width: 100%;
    }

    .home-block3-lvl3>img {
        width: 80px;
    }

    .home-block3-lvl3-cont>p:first-of-type {
        font-size: 30px;
    }

    .home-block3-lvl3-cont>p:last-of-type {
        font-size: 14px;
    }

    .button5 {
        padding: 10px 18px;
        font-size: 14px;
        line-height: 16px;
    }

    .footer-lvl1-content {
        width: 100%;
    }

    .header-lvl2 {
        padding-top: 150px;
        padding-bottom: 150px;
    }

    .contact1>div {
        width: 100%;
    }

    .contact1-left>iframe {
        border-radius: 15px 15px 0 0;
    }

    .contact1-right-content {
        padding: 0 40px 20px 40px;
    }

    .contact2-element {
        width: calc(100% / 2 - (30px * 1 / 2));
    }
}

@media (max-width: 747px) {
    .wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block {
        width: 100%;
        margin-top: 40px;
    }
}

@media (min-width: 701px) {
    .mobil-menu-element {
        display: none;
    }

    #mobileMenu {
        display: none;
    }
}

@media (max-width: 700px) {
    .header-menu {
        display: none;
    }

    .header-lvl2>h1 {
        font-size: 40px;
    }

    .header-lvl2>p {
        font-size: 20px;
    }

    .header-lvl2 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .home-block1-element {
        width: 100%;
    }

    .home-block2-sod-el-left>h2 {
        font-size: 40px;
    }

    .home-block2-sod-el-left>p:nth-of-type(2) {
        font-size: 18px;
    }

    .home-block2-sod-el-left>img {
        height: 40px;
    }

    .home-block2-sod-el-left>a>img {
        height: 40px;
    }

    .home-block3-lvl2>a {
        width: 100%;
    }

    .mobil-menu-element {
        display: flex;
        margin-top: auto;
        margin-bottom: auto;
        margin-left: auto;
    }

    .mobil-menu-element>img {
        height: 40px;
        width: auto;
        cursor: pointer;
        filter: invert(96%) sepia(10%) saturate(2%) hue-rotate(114deg) brightness(112%) contrast(100%);
    }

    /* Базовая блокировка скролла страницы (на случай старых браузеров) */
    html.menu-open,
    body.menu-open {
        overflow: hidden;
        height: 100%;
    }

    /* Оверлей меню на весь экран */
    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: none;
        /* по умолчанию скрыто */
        background: #fff;
        /* фон меню */
        min-height: 100vh;
        /* гарантируем высоту экрана */
        overflow-y: auto;
        /* скролл только внутри меню */
        -webkit-overflow-scrolling: touch;
        /* плавный скролл на iOS */
    }

    .mobile-menu-overlay.open {
        display: block;
    }

    /* Контейнер содержимого меню */
    .mobile-menu {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    /* Шапка меню с крестиком */
    .mobile-menu__header {
        position: sticky;
        top: 0;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 5px 24px;
        background: #fff;
        border-bottom: 1px solid #eee;
    }

    /* Слот под вашу картинку (замените src в img ниже) */
    .mobile-menu__brand {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 40px;
    }

    .mobile-menu__brand img {
        display: block;
        max-height: 40px;
        /* подстройте при необходимости */
        width: auto;
    }

    /* Кнопка закрытия */
    .mobile-menu__close {
        appearance: none;
        border: none;
        background: transparent;
        font-size: 28px;
        line-height: 1;
        padding: 8px;
        cursor: pointer;
    }

    /* Контент меню — сюда добавляйте ваши ссылки/блоки */
    .mobile-menu__content {
        padding: 24px;
        display: grid;
        gap: 16px;
    }

    .mobile-menu__link {
        display: block;
        padding: 14px 12px;
        border-radius: 12px;
        background: #f6f6f6;
        text-decoration: none;
        color: inherit;
    }

    /* Небольшая анимация появления */
    .mobile-menu-overlay.open .mobile-menu {
        animation: mm-fade-in 120ms ease-out;
    }

    .mobile-menu__brand>p {
        font-size: 40px;
        font-weight: 700;
        text-transform: uppercase;
    }

    @keyframes mm-fade-in {
        from {
            opacity: 0;
            transform: translateY(4px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .cat-tyr-block-catlist {
        width: 100%;
    }

    .cat-tyr-block-filter {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .home-block2-sod-el-right-back {
        width: 150px;
    }

    .home-block3-lvl1>h2 {
        font-size: 40px;
    }

    .home-block3-lvl3>img {
        width: 60px;
    }

    .home-block3-lvl3-cont {
        width: calc(100% - 60px - 40px);
    }

    .home-block3-lvl3>.button5 {
        width: 100%;
        justify-content: center;
    }

    .home-block4-content-left-img-block {
        height: 150px;
    }

    .footer-lvl1-content>p {
        font-size: 32px;
    }

    .footer-lvl1-content-inf-blcok>img {
        width: 40px;
    }

    .footer-lvl1-content-inf-blcok-cont {
        width: calc(100% - 20px - 40px);
    }

    .footer-menu>ul>li>a {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.6em;
    }

    .footer-lvl2-content {
        width: 100%;
    }

    .footer-lvl2-content>p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-lvl2-content>img {
        margin-right: auto;
    }

    .header-lvl2.all-page-title {
        padding-bottom: 100px;
    }

    .tyr-sect>a {
        width: 100%;
    }

    .paddin-all-block {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact2-element {
        width: 100%;
    }
}