:root {
    --gutter-x: 40px;
    --gutter-y: 40px;
}

/* ÐšÐ¾Ð½Ñ‚ÐµÐ¹Ð½ÐµÑ€ */
.cus-cont, .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--gutter-x);
    max-width: 1240px;
    padding-right: calc(var(--gutter-x) * .5);
    padding-left: calc(var(--gutter-x) * .5);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-1 * var(--gutter-x) * .5);
    margin-left: calc(-1 * var(--gutter-x) * .5);
    /* margin-block: calc(-1 * var(--gutter-y) / 2); */
}

[class*="col-"] {
    flex: 0 0 auto;
    padding-right: calc(var(--gutter-x) * .5);
    padding-left: calc(var(--gutter-x) * .5);
}

/* Ð¼Ð¾Ð´Ð¸Ñ„Ð¸ÐºÐ°Ñ‚Ð¾Ñ€ Ð´Ð»Ñ Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ð³Ð¾Ñ€Ð¸Ð·Ð¾Ð½Ñ‚Ð°Ð»ÑŒÐ½Ñ‹Ñ… Ð¾Ñ‚ÑÑ‚ÑƒÐ¿Ð¾Ð² */
.row.no-gutters-x {
    margin-inline: 0;
}

.row.no-gutters-x [class*="col-"] {
    padding-inline: 0;
}
/* Ð ÑÐ´ (Ð¿Ð¾ ÑƒÐ¼Ð¾Ð»Ñ‡Ð°Ð½Ð¸ÑŽ bootstrap-Ð»Ð¾Ð³Ð¸ÐºÐ°) */
/* .row {
	width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-inline: calc(-1 * var(--gutter-x) / 2);
  margin-block: calc(-1 * var(--gutter-y) / 2);
} */

/* Ð’Ð°Ñ€Ð¸Ð°Ð½Ñ‚ Ñ gap (Ð°Ð»ÑŒÑ‚ÐµÑ€Ð½Ð°Ñ‚Ð¸Ð²Ð½Ñ‹Ð¹ ÑÐ¿Ð¾ÑÐ¾Ð±) */
/* .row.gap {
  margin: 0; /* ÑƒÐ±Ð¸Ñ€Ð°ÐµÐ¼ Ð¾Ñ‚Ñ€Ð¸Ñ†Ð°Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ðµ margin */
/* gap: var(--gutter-y) var(--gutter-x); */
/* } */

/* ÐžÐ±Ñ‰Ð¸Ðµ ÑÑ‚Ð¸Ð»Ð¸ ÐºÐ¾Ð»Ð¾Ð½Ð¾Ðº */
/* [class*="col-"] {
  flex: 0 0 auto;
  padding: 0 calc(var(--gutter-x) / 2);
  padding-block: calc(var(--gutter-y) / 2);
} */

/* Ð•ÑÐ»Ð¸ .row.gap â€” ÑƒÐ±Ð¸Ñ€Ð°ÐµÐ¼ padding Ñƒ ÐºÐ¾Ð»Ð¾Ð½Ð¾Ðº */
/* .row.gap [class*="col-"] {
  padding: 0;
} */

/* ÐšÐ¾Ð»Ð¾Ð½ÐºÐ¸ (extra small - xs) */
.col-1  { flex-basis: 8.333%;  max-width: 8.333%; }
.col-2  { flex-basis: 16.666%; max-width: 16.666%; }
.col-3  { flex-basis: 25%;     max-width: 25%; }
.col-4  { flex-basis: 33.333%; max-width: 33.333%; }
.col-5  { flex-basis: 41.666%; max-width: 41.666%; }
.col-6  { flex-basis: 50%;     max-width: 50%; }
.col-7  { flex-basis: 58.333%; max-width: 58.333%; }
.col-8  { flex-basis: 66.666%; max-width: 66.666%; }
.col-9  { flex-basis: 75%;     max-width: 75%; }
.col-10 { flex-basis: 83.333%; max-width: 83.333%; }
.col-11 { flex-basis: 91.666%; max-width: 91.666%; }
.col-12 { flex-basis: 100%;    max-width: 100%; }

/* Media queries ÐºÐ°Ðº Ð² Bootstrap */
@media (min-width: 576px) {
    .col-sm-6 { flex-basis: 50%; max-width: 50%; }
    .col-sm-12{ flex-basis: 100%; max-width: 100%; }
}

@media (min-width: 768px) {
    .col-md-4 { flex-basis: 33.333%; max-width: 33.333%; }
    .col-md-6 { flex-basis: 50%; max-width: 50%; }
}

@media (min-width: 992px) {
    .col-lg-3 { flex-basis: 25%; max-width: 25%; }
    .col-lg-4 { flex-basis: 33.333%; max-width: 33.333%; }
    .col-lg-6 { flex-basis: 50%; max-width: 50%; }
    .col-lg-8  { flex-basis: 66.666%; max-width: 66.666%; }
    .col-lg-9  { flex-basis: 75%;     max-width: 75%; }
}

@media (min-width: 1200px) {
    .col-xl-3 { flex-basis: 25%; max-width: 25%; }
    .col-xl-4 { flex-basis: 33.333%; max-width: 33.333%; }
    .col-xl-6 { flex-basis: 50%; max-width: 50%; }
    .col-xl-9  { flex-basis: 75%;     max-width: 75%; }
}

@media (min-width: 1400px) {
    /* .cus-cont { width: calc(1200px + 32px);} */
    .col-xxl-3 { flex-basis: 25%; max-width: 25%; }
    .col-xxl-4 { flex-basis: 33.333%; max-width: 33.333%; }
    .col-xxl-6 { flex-basis: 50%; max-width: 50%; }
}

/* html {
	scroll-behavior: smooth;
} */


.page._media-kit {
    padding-top: 77px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.page._media-kit::after {
    z-index: -1;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 534px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%), rgba(0, 255, 215, 0.12);
}


.media-kit__header {
    text-align: center;
    padding: 32px 0 80px;
}
.media-kit__header h1 {
    margin-bottom: 24px;
}
.media-kit__header p {

    font-family: 'Kaspersky Sans Text';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
}


.media-kit__nav-link ul {
    position: sticky;
    top: 77px; /* ÐžÑ‚ÑÑ‚ÑƒÐ¿ ÑÐ²ÐµÑ€Ñ…Ñƒ ÐºÐ¾Ð³Ð´Ð° Ð¼ÐµÐ½ÑŽ "Ð¿Ñ€Ð¸Ð»Ð¸Ð¿Ð°ÐµÑ‚" */
    align-self: flex-start; /* Ð”Ð»Ñ Ð¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð¾Ð¹ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ð² flex-ÐºÐ¾Ð½Ñ‚ÐµÐ¹Ð½ÐµÑ€Ð°Ñ… */
    margin-bottom: 100px;
}

.media-kit__nav-link {

    /* width: 25%; */
    display: flex;
    flex-direction: column;
}
.media-kit__nav-link ul {
    list-style-type: none;
    margin-left: -24px;
}
.media-kit__nav-link ul li  {
    display: block;

    transition: all 0.4s ease;
    display: block;
    background: linear-gradient(270deg, transparent 0%, transparent 100%);
    border-radius: 16px;

}
.media-kit__nav-link ul li.active {
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%), rgba(0, 255, 215, 0.1);
}
.media-kit__nav-link ul li:hover {
    opacity: 0.6;
}




.media-kit__nav-link ul a {
    border-bottom: none;
    color: #1F3238;
    line-height: 24px;
    font-size: 20px;
    font-family: "Kaspersky Sans Text", sans-serif;
    display: inline-block;
    padding: 18px 30px 18px 24px;
    position: relative;
    position: relative;
}

.media-kit__nav-link ul a::after {
    content: "";
    background: url('../img/mediakit/mdk-icon-arrow-right.svg') no-repeat center;
    width: 20px;
    height: 16px;
    position: absolute;
    top: calc(50% - 7px);
    /* top: 22px; */
    right: -0px;
    opacity: 0;
    transition: all 0.4s ease;
}

.media-kit__nav-link ul li:hover a::after, .media-kit__nav-link ul li.active a::after {
    opacity: 1;
    right: -5px;
}
.media-kit__link > *:hover {
    opacity: 0.6;
}
.media-kit__link > *{
    display: inline-block;
    position: relative;
    border-bottom: 0;
    font-weight: 600;
    transition: all 0.4s ease;
}
.media-kit__link > a {
    padding-right: 27px;
    margin-right: 32px;
}
.media-kit__link > a::after {
    position: absolute;
    content: "";
    top: 1px;
    right: 0;
    width: 18px;
    height: 20px;
    background: url('../img/mediakit/mdk-icon-dwnld.svg') no-repeat center;

}
.media-kit__link > span {
    cursor: pointer;
    padding-right: 26px;
}
.media-kit__link > span::after {
    position: absolute;
    content: "";
    top: 3px;
    right: 0;
    width: 20px;
    height: 20px;
    background: url('../img/mediakit/mdk-icon-link.svg') no-repeat center;

}
/* mdk-icon-link.svg */

.media-kit {
    display: flex;
    /* width: 100%; */
}
.media-kit__container {

    display: flex;
    flex-direction: column;
}
.media-kit__container  .media-kit__item:last-child::after {
    display: none;
}
.media-kit__item {
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}
.media-kit__item::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1px;
    bottom: 0;
    right: 0;
    left: 0;

}

.media-kit__title {
    margin-bottom: 40px;
}
.media-kit__body {
    display: flex;
    justify-content: space-between;
}


.media-kit__subtitle {
    margin-bottom: 24px;
    display: inline-block;
}
.media-kit__content ul {
    list-style-type: none;
    margin-bottom: 40px;
}
.media-kit__content ul li.media-kit__rule {
    padding-left: 36px;
    position: relative;
    line-height: 24px;
    margin-bottom: 14px;
}

.media-kit__content ul li.media-kit__rule::before {
    position: absolute;
    content: "";
    left: 2px;
    top: 2px;
    width: 20px;
    height: 20px;
}
.media-kit__content ul li.media-kit__rule.-ok::before {
    background: url('../img/mediakit/mdk-icon-ok.svg') no-repeat center;
}
.media-kit__content ul li.media-kit__rule.-error::before {
    background: url('../img/mediakit/mdk-icon-error.svg') no-repeat center;
}
.media-kit__content .media-kit__subtitle:nth-child(1) {
    padding-top: 0;
}
.media-kit__subtitle {
    padding-top: 20px;
    display: inline-block;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
}
.media-kit__logo-img {
    margin-bottom: 24px;

}
.media-kit__logo-img  img{
    max-height: 136px;
}
.media-kit__link {
    margin-bottom: 48px;
}
.media-kit__pdf {
    max-width: 276px;
    overflow: hidden;
    background: #1F3238;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: auto;
    height: 376px;
    margin-bottom: 48px;
    /* justify-content: space-between; */
}
.media-kit__pdf img {
    border-radius: 16px 16px 0 0;
}

.media-kit__pdf  > a {
    color: #fff;
    text-decoration: none;
    border-bottom: 0;
    padding: 12px 16px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.4s ease;

}
.media-kit__pdf:hover > a {
    color: #00FFD7;
}
.media-kit__pdf-footer {
    width: 100%;
    margin-top: auto;
    padding: 0 16px 16px;
    display: flex;
    justify-content: space-between;
    /* align-items: flex-end; */
}
.media-kit__pdf-footer a{
    /* text-decoration: none; */
    border-bottom: 0;
    display: inline-block;
    font-weight: 600;
    position: relative;
    color: #fff;
    padding-right: 26px;
    line-height: 24px;
    opacity: 0;
    transition: all 0.4s ease;
}
.media-kit__pdf-footer a::after {
    content:"";
    position: absolute;
    background: url('../img/mediakit/mdk-icon-arrow-btm.svg') no-repeat center;
    width: 16px;
    height: 20px;
    right: 0;
    top: calc(50% - 10px);
}
.media-kit__pdf:hover .media-kit__pdf-footer a {
    opacity: 1;
}


.media-kit__pdf-footer span {
    line-height: 24px;
    font-size: 14px;
    color: #FFFFFF;
    opacity: 0.6;
}

@media (max-width: 992px) {
    .media-kit__pdf {
        max-width: 214px;
    }
    .media-kit__header p {
        font-size: 18px;
    }
    .media-kit__nav-link ul {
        margin-left: 0;
        display: flex;
        /* overflow: hidden; */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        /* position: relative; */
        top: 0;
        margin-bottom: 40px;
        gap: 32px;
        max-width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        white-space: nowrap;
        scroll-behavior: smooth;


    }
    .media-kit__nav-link ul::-webkit-scrollbar {
        display: none;
    }
    .media-kit__nav-link ul li {
        scroll-snap-align: center;
    }


    .media-kit__nav-link {
        position: relative;
    }
    .media-kit__nav-link.fixed {
        position: fixed;          /* Ð¿Ñ€Ð¸Ð»Ð¸Ð¿Ð°ÐµÑ‚ */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: #fff;
    }
    .media-kit__nav-link.fixed ul {
        margin-bottom: 0;
    }
    /* Line 4 */
    .media-kit__nav-link::after {
        position: absolute;
        content: "";
        top: 52px;
        left: calc( var(--gutter-x) / 2);
        right: 0;
        height: 2px;
        border-radius: 1px;
        background: #00000033;
        /* z-index: 99; */
        /* width: 100%; */
    }


    .media-kit__nav-link ul li:hover, .media-kit__nav-link ul li.active {
        background: none;
    }
    .media-kit__nav-link ul li.active {
        border-bottom: 2px solid #00F2C2;
        border-radius: 0;
    }
    .media-kit__nav-link ul a::after {
        display: none;
    }
    .media-kit__nav-link ul li {
        flex: 0 0 auto;
        scroll-snap-align: center;
        border-radius: 0;
    }
    .media-kit__nav-link ul li br {
        display: none;
    }
    .media-kit__nav-link ul li a {
        font-size: 16px;
        line-height: 22px;
        padding: 15px 0;
        font-weight: 500;

    }
    .media-kit__header {
        padding: 48px 0 63px;
    }


}
@media (max-width: 680px) {
    .media-kit__body {
        flex-direction: column;
    }
    .media-kit__header p {
        font-size: 16px;
        line-height: 22px;
    }
    .media-kit__header h1{
        font-size: 40px;
        line-height: 48px;
    }
    .media-kit__header p br {
        display: none;
    }
    .media-kit__header {
        padding: 24px 0 32px;
    }
    .media-kit__nav-link ul {
        margin-bottom: 33px;
    }
    .media-kit__title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 24px;
    }
    .media-kit__subtitle {
        font-size: 18px;
        line-height: 24px;
    }
    .media-kit__content ul li.media-kit__rule {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 7px;
    }
    .media-kit__content ul li.media-kit__rule br {
        display: none;
    }
    .media-kit__content ul {
        margin-bottom: 32px;
    }
    .media-kit__subtitle {
        padding-top: 0;
    }
    .media-kit__logo-img img {
        max-height: 80px;
        max-width: 241px;
    }
    .media-kit__link {
        flex-direction: column;
        display: flex;
        gap: 20px;
        align-items: flex-start;
        margin-bottom: 32px;
    }
    .media-kit__link > * {
        display: inline-block;
    }
    .media-kit__pdf {
        height: 344px;
        margin-bottom: 32px;
    }
    .section__breadcrumbs-news .section__breadcrumbs-desktop{
        display: none;
    }
    .section__breadcrumbs-news .section__breadcrumbs-mobile {
        display: block;
    }

}