@font-face{
    font-family: 'Manrope';
    font-style: normal;
    src: url('../fonts/Manrope.ttf');
}
@font-face{
    font-family: 'Raleway';
    font-style: normal;
    src: url('../fonts/Raleway.ttf');
}
@font-face{
    font-family: 'Roboto';
    font-style: normal;
    src: url('../fonts/Roboto.ttf');
}
:root {
    --font-family: "Manrope", sans-serif;
    --second-family: "Raleway", sans-serif;
    --third-family: "Roboto", sans-serif;
    /*    --font3: "Cygre", sans-serif;
        --font4: "Open Sans", sans-serif;
        --font5: "Onest", sans-serif;*/
    --white: #fff;
    --pink-40: #ffdcda;
    --pink-50-active: #ec6197;
    --pink-70: #db276e;
    --grey-50: #d9d9d9;
    --grey-80: #a3a3a3;
    --black-80-title: #313131;
    --black-100-text: #313131;
}

/* Reset and base styles  */
* {
    padding: 0px;
    margin: 0px;
    border: none;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Links */
a, a:link, a:visited  {
    text-decoration: none;
}
a:hover  {
    text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
    display: block;
}
h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}
ul, ul li {
    list-style: none;
}
img {
    vertical-align: top;
}
img, svg {
    max-width: 100%;
    height: auto;
}
address {
    font-style: normal;
}

/* Form */
input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}
input::-ms-clear {
    display: none;
}
button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}
input:focus, input:active,
button:focus, button:active {
    outline: none;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
label {
    cursor: pointer;
}
legend {
    display: block;
}
input[type='file'] {
    max-width: 100%;
}

body{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    color: var(--black-100-text);
    font-style: normal;
}
.container {
    width: 1810px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.header-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 25px;
    align-items: center;
    padding: 20px 0;
}
.header-lang-toggle {
    position: absolute;
    top: 35px;
    border-radius: 8px;
    box-shadow: 1px 1px 60px 0 rgba(171, 171, 171, 0.25);
    background: var(--white);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.header-lang {
    display: flex;
    align-items: center;
    position: relative;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    cursor: pointer;
    gap: 5px;
}
.header-lang svg {
    filter: brightness(0) saturate(100%) invert(21%) sepia(2%) saturate(11%) hue-rotate(12deg) brightness(105%) contrast(98%);
}
.header-nav {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: var(--black-100-text);
}
.js-show-menu {
    display: flex !important;
    flex-direction: row;
    gap: 2px;
    align-items: center;
    cursor: pointer;
}
.js-show-menu svg {
    position: relative;
    top: 2px;
}
.js-show-menu.active svg {
    transform: rotate(180deg);
}
.header-navs {
    display: flex;
    gap: 25px;
    justify-content: center;
}
.header-lang-toggle > div {
    cursor: pointer;
    padding: 7px 15px;
    transition: background 0.3s;
}
.header-lang-toggle > div:hover,.header-lang-toggle .active {
    background: var(--pink-50-active);
}
.header-logo {
    width: 340px;
}
.header-lang-toggle:not(.active) {
    display: none;
}
.header-burger.burger {
    border: 2px solid var(--pink-50-active);
    border-radius: 50px;
    min-width: 64px;
    height: 64px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
}
.header-controls {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: center;
}
.header {
    margin-bottom: 40px;
    position: sticky;
    top: 0;
    z-index: 99;
    background: #fff;
}
.popup-nav a {
    font-weight: 400;
    font-size: 28px;
    line-height: 130%;
    color: var(--black-80-title);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
.popup-nav a svg {
    width: 30px;
    height: 30px;
}
.popup-nav a svg path{
    filter: brightness(0) saturate(100%) invert(11%) sepia(1%) saturate(4049%) hue-rotate(314deg) brightness(110%) contrast(71%);
}
.popup-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.popup-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.popup {
    padding: 79px 0 78px;
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 100;
    top: 104px;
    display: none;
}
.popup.active {
    display: block;
}
.popup-bg.active {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 90;
    background: #ffffffb8;
}
.popup-info {
    font-weight: 600;
    font-size: 32px;
    line-height: 130%;
    color: var(--black-80-title);
    margin-bottom: 15px;
}
.popup  .footer-info-links-title {
    font-size: 32px;
    line-height: 130%;
    margin-top: 20px;
}

.big-banner {
    aspect-ratio: 1780/600;
    border-radius: 30px;
    position: relative;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding: 0 45px;
    background-size: contain !important;
}
.big-banner-title {
    font-weight: 700;
    font-size: 60px;
    line-height: 110%;
    color: var(--white);
    width: 440px;
    max-width: 100%;
    margin-bottom: 20px;
}
.big-banner-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    color: var(--white);
    width: 440px;
    max-width: 100%;
}
a.big-banner-href {
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    text-align: center;
    color: var(--white);
    border-radius: 50px;
    padding: 15px 30px;
    width: 300px;
    height: 56px;
    background: var(--pink-50-active);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin-top: 40px;
}
ul.slick-dots {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
}
ul.slick-dots li {
    font-size: 0;
    line-height: 0;
}
ul.slick-dots button {
    width: 15px;
    height: 15px;
    background: var(--grey-50);
    border-radius: 50%;
}
li.slick-active button {
    background: var(--pink-50-active);
}
.big-banners {
    margin-bottom: 100px;
}
a.big-banner-href:hover {
    background: #ed4c8d;
}


.info_blocks {
    display: grid;
    grid:
        "a a b c"
        "d e f c";
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 150px;
}
.info_block {
    border-radius: 30px;
    min-height: 320px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.info_block-f {
    grid-area: a;
    background: var(--pink-50-active);
    display: grid;
    grid:
        "a b"
        "c b";
    column-gap: 40px;
    row-gap: 32px;
    grid-template-columns: minmax(318px, 1fr) auto;
}
.info_block-s {
    grid-area: b;
    border: 2px solid var(--black-100-text);
    background: url('../../uploads/images/patern.png') center no-repeat;
    background-size: cover;
    padding: 38px;
}
.info_block:nth-child(3) {
    grid-area: c;
    background: url('../../uploads/images/circulars2.png') top left no-repeat var(--black-100-text);
    justify-content: initial;
}
.info_block:nth-child(4) {
    grid-area: d;
    border: 2px solid var(--pink-50-active);
    position: relative;
    padding: 38px;
}
.info_block:nth-child(4):before,
.info_block:nth-child(4):after{
    content: "";
    position: absolute;
    background: rgba(216, 216, 216, 0.2);
    transform: rotate(-180deg);
    border-radius: 300px;
    width: 280px;
    height: 280px;
}
.info_block:nth-child(4):before{
    top: 130px;
    right: 240px;
}
.info_block:nth-child(4):after {left: 230px;bottom: 160px;}
.info_block:nth-child(5) {
    grid-area: e;
    background: url('../../uploads/images/patern.png') center no-repeat var(--black-100-text);
}
.info_block:nth-child(6) {
    grid-area: f;
    background: url('../../uploads/images/circulars.png') left bottom no-repeat var(--pink-70);
}
.info_block-f-title {
    grid-area: a;
    font-weight: 700;
    font-size: 50px;
    line-height: 110%;
    color: var(--white);
}
.info_block-f-text {
    grid-area: c;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--white);
}
.info_block-f-img {
    grid-area: b;
    height: 240px;
}
.info_block-s-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 130%;
    color: var(--black-80-title);
}
.info_block-s-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    color: var(--black-100-text);
}
.info_block-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 130%;
    color: var(--white);
}
.info_block-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    color: var(--white);
}
.info_block:nth-child(3) .info_block-text {
    text-align: center;
    margin-bottom: 19px;
}
a.info_block-button {
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    text-align: center;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 50px;
    padding: 15px 30px;
    width: 100%;
    height: 56px;
}
a.info_block-button:hover {
    background: var(--white);
    color: var(--black-100-text);
}
.info_block img {
    border-radius: 20px;
}
.info_block:nth-child(3) .info_block-title {
    margin: 40px 0 15px;
    text-align: center;
}
.info_block:nth-child(4) .info_block-title {
    color: var(--pink-50-active);
}
.info_block:nth-child(4) .info_block-text {
    color: var(--black-100-text);
}
img.info_block-f-mini_img {
    position: absolute;
    right: 38px;
    top: 5px;
    border-radius: 0;
    object-fit: contain;
}
.figures-bg {
    background: url(../../uploads/images/figures.png) center top no-repeat;
    padding: 80px 0;
    margin-bottom: 151px;
    background-size: auto 650px;
}
.figures-blocks {
    display: grid;
    grid-template-columns: repeat(3 , minmax(0,1fr));
    gap: 20px;
    margin-top: 50px;
}
.figures-block {
    box-shadow: 1px 1px 60px 0 rgba(214, 214, 214, 0.25);
    background: var(--white);
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    padding: 20px 40px 40px;
    position: relative;
    overflow: hidden;
    height: 490px;
}
.figures-block img {
    width: 300px;
    height: 252px;
    object-fit: contain;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.7s ease-out;
}
.figures-block-title {
    font-weight: 700;
    font-size: 38px;
    line-height: 125%;
    color: var(--black-80-title);
    margin-top: 63px;
    position: relative;
    z-index: 2;
}
.figures-block-text {
    margin-top: 15px;
    position: relative;
    z-index: 2;
    color: var(--black-100-text);
}


h2, .news-detail h1 {
    font-weight: 700;
    font-size: 50px;
    line-height: 110%;
    color: var(--black-80-title);
}
.home-news-top-right {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}
.grey-btn {
    text-align: center;
    border: 1px solid var(--black-100-text);
    border-radius: 50px;
    padding: 15px 30px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--black-100-text);
    height: 56px;
    justify-content: center;
}
.home-news-top {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 10px;
    margin-bottom: 50px;
}
.grey-btn:hover {
    background: var(--black-100-text);
    color: var(--white);
}
.slider-btn {
    border: 1px solid var(--black-100-text);
    border-radius: 100px;
    padding: 16px 28px;
    width: 80px;
    height: 56px;
    cursor: pointer;
}
.slider-btn:hover{
    background: var(--black-100-text);
}
.slider-btn:hover svg{
    filter: brightness(0) saturate(100%) invert(100%) sepia(41%) saturate(2%) hue-rotate(30deg) brightness(110%) contrast(101%);
}
.home-new {
    box-shadow: 1px 1px 60px 0 rgba(214, 214, 214, 0.25);
    border-radius: 30px;
    padding: 40px;
    height: 500px;
    display: flex !important;
    background-size: cover !important;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}
.home-new-link {
    margin-top: 20px;
    border-radius: 50px;
    padding: 15px 30px;
    background: var(--pink-50-active);
    height: 56px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    z-index: 1;
    transform: translateY(100%);
    transition: all 0.3s;
    margin-bottom: -76px;
}
.home-news-row.slider-soon .home-new {
    height: 530px;
}
.home-new:hover .home-new-link {
    display: flex;
    transform: none;
    margin-bottom: 0;
}
.home-new-link:hover {
    background: #ed4c8d;
}
.home-new-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 135%;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.home-new-date {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--grey-50);
    margin-top: 15px;
    z-index: 1;
}
.home-new:after {
    content: "";
    background: linear-gradient(180deg, rgb(255 255 255 / 0%) 9.77%, rgba(0, 0, 0, 0.7) 76.05%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.home-news-row .slick-track{
    display: flex;
    gap: 20px;
}
.home-news-row .slick-list {
    /* margin: 0 -20px; */
    /*overflow: visible;*/
}
.home-news-row .slick-track:before, .home-news-row  .slick-track:after {
    display: none;
}
.home-news {
    overflow: hidden;
    margin-bottom: 150px;
}
.home-news-subscribe {
    margin-left: auto;
    margin-top: 50px;
    width: 430px;
    max-width: 100%;
}


.arts-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    margin-top: 50px;
    gap: 20px;
}
.home-arts {
    margin-bottom: 150px;
}
.art {
    box-shadow: 1px 1px 60px 0 rgba(171, 171, 171, 0.25);
    background: var(--white);
    border-radius: 30px;
    padding: 40px 20px 40px 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 363px;
    overflow: hidden;
    height: 400px;
}
.art-title {
    font-weight: 700;
    font-size: 38px;
    line-height: 125%;
    color: var(--black-80-title);
}
.art-text {
    margin-top: auto;
    font-size: 18px;
    line-height: 145%;
    color: var(--black-100-text);
}
.art-info {
    display: flex;
    flex-direction: column;
}
.art-link {
    text-align: center;
    color: var(--white);
    background: var(--pink-50-active);
    border-radius: 50px;
    padding: 15px 30px;
    height: 56px;
    margin-top: 20px;
    width: 300px;
    max-width: 100%;
}
.art-link:hover {
    background: #ed4c8d;
}
img.art-img {
    margin-left: auto;
    position: relative;
    z-index: 1;
    display: block;
}
.art-img-overlay {
    position: relative;
    line-height: 0;
    font-size: 0;
}
.art-img-overlay:after {content: "";position: absolute;left: 0;top: 50%;transform: translateY(-50%);width: 600px;height: 600px;background: var(--pink-40);z-index: 0;border-radius: 50%;}
.home-fond-row {
    display: grid;
    grid-template-columns: minmax(0,1.27fr) minmax(0,1fr);
    gap: 80px;
    margin-top: 50px;
    align-items: center;
}
.home-fond {
    margin-bottom: 150px;
    overflow: hidden;
}
.home-fond-info {
    background: var(--pink-50-active);
    border-radius: 30px 0 0 30px;
    padding: 40px 0 40px 45px;
    position: relative;
    z-index: 1;
}
.home-fond-title {
    font-weight: 700;
    font-size: 50px;
    line-height: 110%;
    color: var(--white);
    width: 575px;
    max-width: 100%;
    margin-bottom: 21px;
}
.home-fond-text {
    width: 575px;
    max-width: 100%;
    margin-top: 10px;
    color: var(--white);
}
a.home-fond-link {
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 50px;
    padding: 15px 30px;
    width: 300px;
    height: 56px;
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}
a.home-fond-link:hover {
    background: var(--white);
    color: var(--black-100-text);
}
.home-fond-info:after {
    background: darkblue;
    width: 48vw;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-radius: 30px 0 0 30px;
    background: var(--pink-50-active);
    z-index: -1;
}
.home-fond-info:before {
    content: "";
    background: url('../../uploads/images/fondRectangle.png') center top no-repeat;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    height: 368px;
}
.figures-block:after {
    content: "";
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    opacity: 0;
    background: #fff0;
    left: 40px;
    top: 40px;
    transition: all 0.7s cubic-bezier(0, 0, 0, 0.58);
    z-index: 1;
}
.figures-block:hover:after {
    background: var(--black-100-text);
    transform: scale(30);
    opacity: 1;
}
.figures-block:hover .figures-block-title {
    color: var(--white);
}
.figures-block:hover .figures-block-text {
    color: var(--white);
}
.figures-block .figures-block-link{
    border-radius: 50px;
    padding: 15px 30px;
    width: 300px;
    height: 56px;
    background: var(--pink-50-active);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    opacity: 0;
    max-width: 100%;
    transform: translateY(100%);
    transition: all 0.3s;
    margin-bottom: -76px;
}
.figures-block:hover .figures-block-link{
    opacity: 1;
    margin-bottom: 0;
    transform: none;
}
.figures-block:hover img {
    transform: scale(0.9);
}
.figures-block:hover .figures-block-title {
    margin-top: auto;
}
.figures-block .figures-block-link:hover {
    background: #ed4c8d;
}
.art-link.dark {
    background: var(--black-100-text);
}
.art-link.dark:hover {
    background: #ed4c8d;
}


.footer {
    box-shadow: 1px 1px 60px 0 rgba(171, 171, 171, 0.25);
    background: var(--white);
    border-radius: 50px;
    margin-bottom: 102px;
}
.footer-copy {
    border-radius: 0 0 50px 50px;
    padding: 24px 40px;
    background: var(--black-100-text);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: var(--white);
}
.footer-navs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
a.footer-nav {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: var(--black-100-text);
}
.footer-row-b {
    display: grid;
    grid-template-columns: 468fr 1140fr;
    align-items: center;
    padding: 60px 40px 60px;
    gap: 40px;
}
.footer-row {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    justify-content: space-between;
}
a.footer-phone {
    font-weight: 400;
    font-size: 35px;
    line-height: 125%;
    color: var(--black-80-title);
    display: block;
    margin-bottom: 10px;
}
.footer-info {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-end;
}
a.footer-mail {
    font-weight: 400;
    font-size: 28px;
    line-height: 130%;
    color: var(--black-80-title);
    margin-bottom: 10px;
}
.footer-info-link-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    line-height: 0;
}
.footer-info-links-row {
    display: flex;
    gap: 10px;
    line-height: 0;
}
.footer-info-links-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: var(--black-80-title);
    margin-bottom: 15px;
}
img.footer-logo {
    margin: 0 auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(21%) sepia(2%) saturate(11%) hue-rotate(12deg) brightness(105%) contrast(98%);
}
.footer-info-link-row svg {
    filter: brightness(0) saturate(100%) invert(21%) sepia(2%) saturate(11%) hue-rotate(12deg) brightness(105%) contrast(98%);
}
.footer-row > a:first-child {
    align-content: center;
}
.footer-info-mob-title {
    display: none;
}
.big-banner-m-banner{
    display: none;
}
.banner-spinner {
    position: absolute;
    width: 128px;
    height: 128px;
    left: 25.145%;
    top: 23px;
    animation: rotate 15s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.popup-nav.popup-nav-mob {
    display: none;
}
.home-fond-img {
    text-align: center;
}
.home-fond-img img {
    max-height: 447px;
}
.mini-imgs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    box-shadow: 1px 1px 60px 0 rgba(171, 171, 171, 0.25);
    background: url('../../uploads/images/fon-2.png') center no-repeat;
    border-radius: 30px;
    padding: 40px 20px 40px 40px;
    gap: 10px;
    background-size: cover;
}
.mini-img {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
}
.mini-img img {
    width: 100px;
}
.home-news-p-row{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.def_page_text p {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 22px;
    text-indent: 15px;
}
@media (max-width: 1600px) {
    .header-nav {
        font-size: 16px;
    }
    .header-logo {
        width: 245px;
    }
    .header-lang {
        font-size: 16px;
        gap: 0;
    }
    .header-burger.burger {
        min-width: 52px;
        height: 52px;
        background-size: 24px;
    }
    .popup-nav a {
        font-size: 26px;
    }
    .popup-info {
        font-size: 26px;
    }
    a.footer-phone {
        font-size: 32px;
    }
    a.footer-mail {
        font-size: 26px;
    }
    .footer-info-links-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .big-banner-title {
        font-size: 45px;
        margin-bottom: 15px;
        line-height: 110%;
        width: 325px;
    }
    .big-banner-text {
        font-size: 16px;
        line-height: 145%;
        width: 325px;
    }
    a.big-banner-href {
        font-size: 16px;
        height: 50px;
        margin-top: 30px;
        padding: 13px 30px 14px;
    }
    ul.slick-dots {
        margin-top: 30px;
    }
    .big-banners {
        margin-bottom: 80px;
    }
    .info_block-f-title {
        font-size: 35px;
    }
    .info_block-f-text {
        font-size: 14px;
    }
    .info_block-f {
        grid-template-columns: minmax(318px, 1fr) auto;
        gap: 20px;
        row-gap: 27px;
    }
    .info_block {
        min-height: 270px;
        padding: 30px;
        border-radius: 20px;
    }
    .info_block-f-img {
        height: 210px;
    }
    .info_block-f-img svg {
        height: 210px;
        width: auto;
    }
    .info_block-s-title {
        font-size: 22px;
    }
    .info_block-s-text {
        font-size: 16px;
    }
    .info_block img {
        border-radius: 15px;
        height: 249px;
        object-fit: cover;
    }
    .info_block:nth-child(3) .info_block-title {
        margin: 40px 0 21px;
        font-size: 22px;
    }
    .info_block:nth-child(3) .info_block-text {
        font-size: 16px;
    }
    a.info_block-button {
        font-size: 16px;
        height: 50px;
        padding: 13px 30px 14px;
    }
    .info_block-title {
        font-size: 22px;
    }
    .info_block-text {
        font-size: 16px;
    }
    .info_block:nth-child(6) {
        background-position: bottom left -60px;
    }
    .info_block:nth-child(4):after {
        left: 155px;
        bottom: 140px;
    }
    .info_block:nth-child(4):before {
        top: 110px;
        right: 165px;
    }
    .figures-block img {
        width: 220px;
        height: 200px;
        object-fit: contain;
    }
    .figures-block-title {
        font-size: 30px;
        margin-top: 40px;
    }
    .figures-block-text {
        font-size: 16px;
        line-height: 145%;
    }
    .figures-block {
        height: initial;
        border-radius: 20px;
        padding: 30px 30px 38px;
    }
    .figures-bg {
        padding: 60px 0;
        background-size: auto 566px;
        background-position: center top 5px;
        margin-bottom: 100px;
    }
    .info_blocks {
        margin-bottom: 100px;
    }
    h2, .news-detail h1 {
        font-size: 35px;
    }
    .grey-btn {
        font-size: 16px;
        height: 50px;
        width: 280px;
    }
    .slider-btn {
        padding: 13px 24px;
        width: 72px;
        height: 50px;
    }
    .home-news-top {
        margin-bottom: 40px;
    }
    .home-new {
        border-radius: 20px;
        padding: 30px;
        height: 390px;
    }
    .home-new-title {
        font-size: 18px;
    }
    .home-new-date {
        font-size: 14px;
    }
    .home-new-link {
        font-size: 16px;
        height: 50px;
        margin-bottom: -70px;
    }
    .home-news-subscribe {
        margin-top: 40px;
        width: 325px;
    }
    .home-news {
        margin-bottom: 100px;
    }
    .art-title {
        font-size: 30px;
    }
    .art-text {
        font-size: 16px;
        line-height: 145%;
    }
    .art-link {
        font-size: 16px;
        height: 50px;
        width: 310px;
        padding: 13px 30px 14px;
    }
    .art {
        border-radius: 20px;
        padding: 30px 10px 30px 30px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 10px;
        min-height: 320px;
        height: auto;
    }
    img.art-img {
        width: 260px;
        height: 260px;
        object-fit: contain;
    }
    .home-arts {
        margin-bottom: 100px;
    }
    .home-fond-row {
        gap: 60px;
        grid-template-columns: minmax(0, 1.065fr) minmax(0, 1fr);
        margin-top: 40px;
    }
    .home-fond-title {
        font-size: 35px;
        line-height: 110%;
        margin-bottom: 21px;
    }
    .home-fond-text {
        font-size: 16px;
        margin: 5px 0 0;
        line-height: 145%;
    }
    a.home-fond-link {
        padding: 13px 30px 14px;
        height: 50px;
    }
    .home-fond-info:before {
        background-size: contain;
        width: 277px;
        height: 272px;
        right: 0;
        bottom: 35px;
        transform: none;
        top: initial;
    }
    .home-fond-info {
        padding: 30px 0 30px 30px;
        border-radius: 20px 0 0 20px;
    }
    a.footer-nav {
        font-size: 16px;
        line-height: 140%;
    }
    .footer-copy {
        font-size: 14px;
    }
    .footer-row-b {
        padding: 50px 30px;
    }
    .header-navs {
        gap: 20px;
    }
    .header {margin-bottom: 20px;}
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    a.header-nav:nth-child(n+6) {
        display: none;
    }
    .big-banner {
        border-radius: 20px;
        padding: 0 30px;
    }
    .info_block-s {
        padding: 28px;
    }
    .info_block:nth-child(4) {
        padding: 28px;
    }
    .arts-row {
        margin-top: 40px;
    }
    .figures-blocks {
        margin-top: 40px;
    }
    .art-img-overlay:after {
        width: 400px;
        height: 400px;
    }
    .home-fond {
        margin-bottom: 105px;
    }
    .home-news-row.slider-soon .home-new {
        height: 398px;
    }
    img.footer-logo {
        height: 165px;
    }
    .footer-info-link-row svg {
        height: 32px;
        width: 32px;
    }
    .footer-info-link-row {
        gap: 5px;
    }
    .footer-info-links-row svg {width: 50px;height: 50px;}
    .footer-navs {
        gap: 10px;
    }
    .footer {
        margin-bottom: 32px;
    }
    .popup {
        top: 92px;
        padding-top: 50px;
    }
    .popup .footer-info-links-title {
        font-size: 20px;
        line-height: 130%;
    }
    .popup .footer-info-links-row svg {
        width: 56px;
        height: 56px;
    }
    .popup .footer-info-links-row {
        margin-top: 5px;
    }
    .banner-spinner {
        top: initial;
        bottom: 13px;
        left: 426px;
        width: 116px;
        height: 116px;
        background-size: contain !important;
    }
    img.info_block-f-mini_img {
        height: 120px;
        border-radius: 0;
        right: 28px;
    }
    .mini-imgs {
        padding: 30px;
    }
    .mini-img {
        font-size: 18px;
        gap: 10px;
    }
    .mini-img img {
        width: initial;
        height: 93px;
    }
}
@media (max-width: 1250px) {
    .header-nav:nth-child(n+4) {
        display: none;
    }
    .popup-nav a {
        font-size: 19px;
    }
    img.info_block-f-mini_img {
        height: 90px;
        right: 15px;
    }
    .mini-imgs {
        padding: 15px;
    }
    .mini-img img {
        height: 75px;
    }
}
@media (max-width: 992px) {
    .header {
        box-shadow: 1px 1px 60px 0 rgba(171, 171, 171, 0.25);
        background: var(--white);
        border-radius: 0 0 30px 30px;
        margin-bottom: 25px;
    }
    .header-row {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }
    .header-logo {
        width: 218px;
    }
    .header-navs {
        display: none;
    }
    .container {
        padding-left: 33px;
        padding-right: 33px;
    }
    .header-burger.burger {
        min-width: 44px;
        height: 44px;
        background-size: 24px;
    }
    .big-banner-title {
        font-size: 38px;
        margin-bottom: 10px;
    }
    a.big-banner-href {
        font-size: 15px;
        line-height: 145%;
        margin-top: 20px;
        width: 250px;
        height: 46px;
        padding: 12px 30px;
    }
    .big-banner-text {
        font-size: 15px;
        line-height: 145%;
        width: 325px;
    }
    ul.slick-dots {
        margin-top: 25px;
    }
    ul.slick-dots button {
        width: 10px;
        height: 10px;
    }
    .big-banners {
        margin-bottom: 40px;
    }
    .info_block-f-title {
        font-size: 28px;
        line-height: 110%;
    }
    .info_blocks {
        margin-bottom: 80px;
        grid-template-columns: repeat(4, 280px);
        overflow: auto hidden;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .info_block-s-title {
        font-size: 20px;
    }
    .info_block-s-text {
        font-size: 15px;
    }
    .info_block.info_block-s {
        border-radius: 20px;
        padding: 25px;
        min-height: 215px;
        border: 1px solid var(--black-100-text);
    }
    .info_block:nth-child(3) .info_block-title {
        font-size: 20px;
    }
    a.info_block-button {
        height: 46px;
        padding: 12px 30px;
        font-size: 15px;
        line-height: 145%;
        margin-top: auto;
    }
    .info_block:nth-child(3) .info_block-text {
        font-size: 15px;
        line-height: 145%;
        /* margin: 0; */
    }
    .info_block:nth-child(3) {
        padding: 25px;
    }
    .info_block-f-img svg {
        height: 165px;
    }
    .info_block {
        min-height: 215px;
        padding: 25px;
    }
    .info_block-f {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 13px 25px;
        align-items: start;
        height: 215px;
    }
    .info_block-f-text {
        font-size: 12px;
        line-height: 150%;
    }
    .info_block-f-img {
        height: 165px;
    }
    .figures-blocks {
        grid-template-columns: repeat(2 , minmax(0,1fr));
    }
    .figures-block img {
        width: 190px;
        height: 160px;
    }
    .figures-block {
        border-radius: 15px;
        padding: 20px;
    }
    .figures-block-title {
        font-weight: 700;
        font-size: 22px;
        line-height: 125%;
        color: var(--pink-50-active);
        margin-top: 10px;
    }
    .figures-block-text {
        font-size: 15px;
        line-height: 145%;
        margin-top: 10px;
    }
    .figures-bg {
        background-position: top left 16px;
        padding: 40px 0;
        background-size: auto 736px;
        margin-bottom: 79px;
    }
    h2, .news-detail h1 {
        font-size: 28px;
        line-height: 110%;
    }
    .grey-btn {
        height: 46px;
        font-size: 15px;
        line-height: 145%;
        padding: 12px 30px;
        width: 250px;
    }
    .slider-btn {
        display: none;
    }
    .home-news-top {
        margin-bottom: 25px;
    }
    .home-news-row .slick-list {
        padding-right: 120px;
    }
    .home-news {
        margin-bottom: 80px;
    }
    .home-news-subscribe {
        margin-top: 25px;
    }
    .arts-row {
        margin-top: 25px;
    }
    .figures-blocks {
        margin-top: 25px;
    }
    .art {
        grid-template-columns: minmax(0, 1fr);
        border-radius: 15px;
        padding: 20px;
        gap: 10px;
        display: flex;
        flex-direction: column;
        min-height: 314px;
        height: auto;
    }
    .art-img-overlay:after {
        display: none;
    }
    .art-info {
        order: 12;
    }
    img.art-img {
        margin: 0 auto;
        width: 160px;
        height: 160px;
    }
    .art-title {
        font-size: 22px;
        line-height: 125%;
        color: var(--pink-50-active);
    }
    .art-text {
        font-size: 15px;
        line-height: 145%;
        margin-top: 10px;
    }
    .art-link {
        display: none;
    }
    .home-arts {
        margin-bottom: 80px;
    }
    .home-fond-img img {
        max-height: 300px;
    }
    .home-fond-row {
        grid-template-columns: minmax(0, 1fr);
        margin-top: 25px;
        gap: 0;
        align-items: end;
    }
    .home-fond-info:after {
        width: 80vw;
        left: 90%;
    }
    .home-fond-title {
        font-size: 28px;
        line-height: 110%;
        margin-bottom: 15px;
    }
    .home-fond-text {
        font-size: 15px;
        line-height: 145%;
    }
    a.home-fond-link {
        font-size: 15px;
        line-height: 145%;
        padding: 12px 30px;
        height: 46px;
        width: 250px;
        margin-top: 25px;
    }
    .home-fond-info:before {
        width: 277px;
        height: 232px;
        background-position: center right;
        top: 24px;
    }
    .home-fond-info {
        border-radius: 20px 0 0 20px;
        padding: 25px;
        padding-right: 5px;
    }
    .footer-row-b {
        padding: 25px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 20px;
    }
    .footer-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }
    .footer {
        border-radius: 30px;
    }
    .footer-copy {
        border-radius: 0 0 30px 30px;
        padding: 25px;
        font-size: 12px;
        line-height: 150%;
    }
    .footer-navs {
        display: none;
    }
    a.footer-phone {
        font-size: 24px;
        line-height: 125%;
        margin-bottom: 5px;
    }
    a.footer-mail {
        font-weight: 600;
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 5px;
    }
    .footer-info-link-row svg {
        width: 24px;
        height: 24px;
    }
    .footer-info-link-row {
        gap: 5px;
    }
    .footer-info-links-title {
        margin-bottom: 5px;
        font-size: 16px;
        line-height: 130%;
    }
    .footer-info-links-row svg {
        width: 42px;
        height: 42px;
    }
    .footer-info-links-row {
        gap: 5px;
    }
    .footer {
        margin-bottom: 57px;
    }
    img.footer-logo {
        height: 158px;
    }
    .popup.active {
        top: 0;
        padding: 104px 0;
        z-index: 97;
        height: 100%;
        overflow: hidden auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .popup-bg.active {
        top: 84px;
    }
    .popup-row {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .popup-nav:not(.popup-nav-mob) {
        display: none;
    }
    .popup-nav.popup-nav-mob {
        display: flex;
        margin-bottom: 5px;
    }
    .popup-nav-mob svg:last-child{
        margin-left: auto;
    }
    .popup-nav a:not(:last-child):after {
        content: "";
        height: 1px;
        width: 100%;
        position: absolute;
        bottom: -8px;
        background: #00000021;
    }
    .popup-nav a {
        font-size: 20px;
        line-height: 130%;
        gap: 15px;
        align-items: center;
        position: relative;
    }
    .popup .footer-info {
        align-items: start;
        margin-top: 30px;
    }
    .popup-nav {
        gap: 16px;
        background: #fff0f787;
        padding: 15px;
        border-radius: 12px;
    }
    .popup-info {
        font-weight: 600;
        font-size: 20px;
        line-height: 130%;
        margin-bottom: 10px;
    }
    .info_block img {
        height: 160px;
        object-fit: cover;
    }
    .big-banner {
        aspect-ratio: 701/330;
        background-size: cover !important;
        padding: 34px 25px 0;
        justify-content: flex-start;
    }
    .info_block:nth-child(4) {
        padding: 23px;
    }
    .info_block-title {
        font-size: 20px;
        line-height: 130%;
    }
    .info_block-text {
        font-size: 15px;
        line-height: 145%;
    }
    .home-new {
        height: 340px;
    }
    .home-fond {
        margin-bottom: 82px;
    }
    .home-news-unik .home-news-top {
        display: contents;
    }
    .home-news-top-right {
        order: 2;
    }
    .home-news-unik .container {
        display: flex;
        flex-direction: column;
    }
    .home-news-unik .home-news-row {
        margin: 25px 0;
    }
    .home-news-row.slider-soon .home-new {
        height: 340px;
    }
    .art {
        position: relative
    }
    .art:before,
    .figures-block:before {
        content: "";
        position: absolute;
        right: 15px;
        top: 15px;
        background: url('data:image/svg+xml,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.9998 7.62993V20.1481C23.9998 20.4034 23.8984 20.6484 23.7178 20.829C23.5372 21.0095 23.2923 21.111 23.0369 21.111C22.7815 21.111 22.5366 21.0095 22.356 20.829C22.1754 20.6484 22.074 20.4034 22.074 20.1481V9.95421L8.31125 23.7181C8.13056 23.8988 7.8855 24.0003 7.62997 24.0003C7.37444 24.0003 7.12938 23.8988 6.9487 23.7181C6.76801 23.5374 6.6665 23.2924 6.6665 23.0369C6.6665 22.7813 6.76801 22.5363 6.9487 22.3556L20.7126 8.59286H10.5188C10.2634 8.59286 10.0185 8.49141 9.83788 8.31082C9.65729 8.13024 9.55584 7.88531 9.55584 7.62993C9.55584 7.37454 9.65729 7.12961 9.83788 6.94903C10.0185 6.76844 10.2634 6.66699 10.5188 6.66699H23.0369C23.2923 6.66699 23.5372 6.76844 23.7178 6.94903C23.8984 7.12961 23.9998 7.37454 23.9998 7.62993Z" fill="%23EC6197" /></svg>') center no-repeat;
        width: 52px;
        height: 52px;
        border-radius: 50px;
        padding: 10px;
    }
    .banner-spinner {
        left: initial;
        right: 62px;
        bottom: 49px;
    }
    img.info_block-f-mini_img {
        height: 65px;
        right: 23px;
    }
    .arts-row.arts-row-mini{grid-template-columns: repeat(1, minmax(0, 1fr));}
    .home-news-p-row{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
}
@media (max-width: 1200px) and (min-width: 769px){
    .info_blocks {
        grid:
       "a a a a c c"
       "d d e e c c"
       "b b b f f f";
    }
    .info_block {
        height: initial;
    }
}
@media (max-width: 600px){
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .header-logo {
        width: 202px;
    }
    .header-lang {
        font-size: 15px;
        gap: 0;
    }
    .header-burger.burger {
        border: 1px solid var(--black-80-title);
        filter: brightness(0) saturate(100%) invert(21%) sepia(2%) saturate(11%) hue-rotate(12deg) brightness(105%) contrast(98%);    }
    .header {
        margin-bottom: 20px;
    }
    .big-banner {
        aspect-ratio: 345/500;
        background-size: cover !important;
        justify-content: space-between;
        border-radius: 15px;
        padding: 20px 15px;
    }
    .big-banner-text {
        margin-bottom: auto;
        width: initial;
        z-index: 2;
        position: relative;
    }
    .big-banner-title {
        font-size: 32px;
        line-height: 105%;
        z-index: 2;
        position: relative;
    }
    a.big-banner-href {
        width: 100%;
        height: 40px;
        padding: 9px 20px;
        z-index: 2;
        position: relative;
    }
    ul.slick-dots {
        margin-top: 30px;
    }
    .big-banners {
        margin-bottom: 60px;
    }
    .info_blocks {
        grid:
            "a d b c"
            "a e f c";
        grid-template-columns: repeat(4, 345px);
        gap: 15px;
        margin-bottom: 60px;
    }
    .info_block-f {
        display: flex;
        flex-direction: column;
        height: initial;
        min-height: initial;
        border-radius: 15px;
        padding: 20px;
        gap: 15px;
    }
    .info_block-f-title {
        order: 2;
    }
    .info_block-f-text {
        order: 3;
        line-height: 140%;
    }
    .info_block-f-img {
        height: 183px;
        margin-bottom: 5px;
        width: 100%;
        text-align: center;
    }
    .info_block-f-img svg {
        height: 183px;
    }
    .info_block {
        border-radius: 15px;
        padding: 20px;
        min-height: initial;
    }
    .info_block:nth-child(4) {
        border: 1px solid var(--pink-50-active);
    }
    .info_block.info_block-s {
        border-radius: 15px;
        padding: 19px;
        min-height: initial;
    }
    .info_block:nth-child(3) .info_block-title {
        margin: 20px 0 15px;
        font-size: 18px;
        line-height: 130%;
    }
    a.info_block-button {
        padding: 9px 20px;
        height: 40px;
    }
    .info_block-title {
        font-size: 18px;
        line-height: 130%;
    }
    .info_block-text {
        font-size: 15px;
    }
    .info_block-s-title {
        font-size: 18px;
        line-height: 130%;
    }
    .info_block:nth-child(4):after {
        width: 250px;
        height: 250px;
        bottom: 65px;
        left: 175px;
    }
    .info_block:nth-child(4):before {
        width: 200px;
        height: 200px;
        top: 85px;
        right: 235px;
    }
    .figures-bg {
        padding: 20px 0;
        margin-bottom: 40px;
    }
    .figures-blocks {
        grid-template-columns: minmax(0, 1fr);
    }
    a.grey-btn.home-news-subscribe {
        width: 100%;
        order: 13;
        margin-top: 10px;
    }
    .home-news .container {
        display: flex;
        flex-direction: column;
    }
    .home-news-top {
        display: contents;
    }
    .home-news-top-right {
        order: 12;
    }
    .home-news-row {
        margin: 20px 0 0;
    }
    .grey-btn {
        width: 100%;
        height: 44px;
        padding: 9px 20px;
    }
    .home-new {
        border-radius: 15px;
        padding: 20px;
        height: 300px;
    }
    .home-new-title {
        font-size: 16px;
        line-height: 135%;
    }
    .home-new-date {
        font-size: 12px;
        line-height: 140%;
    }
    .home-new:hover .home-new-link {
        display: none;
    }
    .home-news-row .slick-track {
        gap: 15px;
    }
    .home-news-row .slick-list {
        padding-right: 77px;
    }
    .header-controls {
        gap: 10px;
    }
    .home-news {
        margin-bottom: 60px;
    }
    .arts-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        margin-top: 20px;
    }
    .home-fond-row {
        gap: 0;
        margin-top: 20px;
    }
    .figures-blocks {
        margin-top: 20px;
    }
    .home-fond-info {
        border-radius: 15px 0 0 15px;
        padding: 20px;
        padding-right: 5px;
        display: none;
    }
    a.home-fond-link {
        height: 40px;
        width: 100%;
        padding: 9px 20px;
        margin-top: 24px;
    }
    .home-fond-info:before {
        top: 60px;
        width: 225px;
        height: 230px;
        right: 0;
    }
    .home-fond {
        margin-bottom: 60px;
    }
    .footer-row-b {
        padding: 40px 20px;
        grid-template-columns: minmax(0, 1fr);
    }
    .footer-row {
        grid-template-columns: minmax(0, 1fr);
    }
    .footer-row > a:first-child {
        display: none;
    }
    .footer-info {
        align-items: center;
    }
    .footer-copy {
        font-size: 12px;
        line-height: 140%;
        padding: 20px;
    }
    a.footer-phone {
        margin-bottom: 10px;
    }
    a.footer-mail {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .footer-info-link-row svg {
        width: 32px;
        height: 32px;
    }
    .footer-info-links-title {
        font-size: 15px;
        line-height: 130%;
        margin-bottom: 8px;
    }
    .footer-info-mob-title {
        display: block;
        font-weight: 700;
        font-size: 22px;
        line-height: 125%;
        color: var(--black-80-title);
        margin-bottom: 10px;
    }
    .footer-info-links-row svg {
        width: 40px;
        height: 40px;
    }
    .popup-nav a {
        font-size: 16px;
        line-height: 140%;
        font-weight: 600;
    }
    .popup-nav a svg {
        width: 25px;
        height: 25px;
    }
    .popup-nav {
        gap: 16px;
    }
    .popup-row {
        gap: 15px;
    }
    .popup .footer-info {
        margin-top: 25px;
    }
    .popup-info {
        font-size: 22px;
        line-height: 125%;
        font-weight: 700;
    }
    .popup.active {
        padding-bottom: 20px;
    }
    .info_block:nth-child(3) {
        padding: 20px;
    }
    .info_block:nth-child(4) {
        padding: 19px;
    }
    .info_block img {
        height: 181px;
    }
    a.art {
        height: initial;
    }
    .home-arts {
        margin-bottom: 60px;
    }
    .home-news-top-right .grey-btn {
        margin-top: 20px;
    }
    .home-news-row.slider-soon .home-new {
        height: 300px;
    }
    .home-news-unik .home-news-row {
        margin: 20px 0 0;
    }
    .footer {
        margin-bottom: 23px;
    }
    .big-banner-m-banner {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-size: cover !important;
        z-index: 1;
    }
    .art:before,
    .figures-block:before{
        border: 1px solid var(--pink-50-active);
    }
    .banner-spinner {display: none;}
    img.info_block-f-mini_img {
        height: 120px;
        right: 19px;
    }
    .mini-imgs {
        gap: 0;
    }
    .mini-img img {
        height: 59px;
    }
    .mini-img {
        font-size: 15px;
        gap: 5px;
    }
    .home-news-p-row{
        grid-template-columns: minmax(0, 1fr);
        margin: 0;
    }
}
.def_page_text h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 1.1;
}
.def_page_text.post_p_popolam {
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: 40px;
}
.post-row-g img.home-news-page-img {
    display: block;
    max-height: 600px;
    border-radius: 8px;
    margin-bottom: 22px;
    margin-left: auto;
    width: 100%;
    object-fit: cover;
    object-position: top;
    position: sticky;
    top: 154px;
}
.def_page_text h2 {
    margin: 44px 0 22px;
    font-size: 36px
}
.post_p_date {
    margin-bottom: 4px;
    font-size: 16px;
    opacity: 0.7;
}
.small-container{
/*    width: 1280px;
    max-width: 100%;
    box-shadow: 1px 1px 9px 0 rgba(171, 171, 171, 0.25);
    margin-top: 10px;
    border-radius: 20px;
    padding: 15px 15px;
    margin-bottom: 10px;*/
}
.post-row-g {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
}
.ovf-v{
    overflow: visible;
}
@media (max-width:1279px) {
    .post-row-g {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }
    .post-row-g > div {
        order: 12;
    }
    .post-row-g img.home-news-page-img {
        top: 0;
        margin: 0;
        position: inherit;
    }
}
@media (max-width:768px){
    .def_page_text.post_p_popolam {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }
    .def_page_text h1 {
        font-size: 24px;
    }
    .def_page_text p {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .def_page_text h2 {
        margin: 20px 0 10px;
        font-size: 20px;
    }
    .post_p_date {
        font-size: 14px;
    }
}