:root {
    --brown: #232020; /*35 32 35*/
    --beige: #d7b789; /*215 183 137*/
    --white: #fff;
    --primary-color: var(--beige);
    --gap: 2rem;
    --transition: all 0.2s ease 0s;
    /*--border-radius-card: 1.375rem;*/
    --border-radius-card: 2rem;
    --border-radius-inner: 1.5rem;
    --border-radius-btn: .625rem;
    --border-color: #DFE1E9;
    --border-color-gray: hsla(0, 0%, 100%, .2);
    --muted-color: #ffffff90;
    --box-shadow: 3px 2px 10px 0px rgba(0, 0, 0, .07);
    --title-color: #222;

    --vk-blue: #0077FF;
    --tg-blue: #24A1DE;
    --whatsapp-green: #25d366;
    --dzen-orange: #FFA500;
    --dzen-black: #202022;
    --inwta-bg: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%),
    radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
    radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%),
    radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%),
    radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%),
    radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%),
    radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
    linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}

pre {
    color: #000;
    background-color: var(--white);
    font-size: 100%;
    border: 1px solid #000;
    overflow: auto;
    min-width: 300px;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    border: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
    background-color: #02030c;
    background-color: var(--brown);
    font-family: "Nunito", serif;
    font-family: "Montserrat", serif;
    color: var(--white);
    min-width: 360px;
    font-size: 16px;
    line-height: 1.4;
    height: 100%;
}

input, button, textarea, select {
    font-family: inherit;
}

input:not([type="submit"], [type="checkbox"], [type="button"],  [type="file"]),
textarea,
select {
    vertical-align: middle;
    background-color: var(--white);
    border-radius: var(--border-radius-btn);
    outline: none;
    border: 2px solid transparent;
    width: 100%;
    color: #696969;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    padding: 17px 20px;
}

input:not([type="submit"], [type="checkbox"], [type="button"], [type="file"]):focus,
textarea:focus,
select:focus {
    border-color: var(--beige);
}

select[multiple="multiple"] {
    padding: 0;
    border: 1px solid var(--border-color);
}

select[multiple="multiple"] > option {
    padding: 16px;
}

img {
    max-width: 100%;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
}


/*list*/

ul {
    margin: var(--gap) 0;
}

ul, ol {
    list-style: none;
}

li ul,
li ol {
    margin: 0;
}

li {
    padding-left: var(--gap);
}

/*list-counter*/

/* для всех ol нумерованного списка*/
.list-counter ol {
    list-style: none;
    counter-reset: num;
}

.list-counter ol li {
    position: relative;
}

.list-counter ol li::before {
    counter-increment: num;
    content: counters(num, ".") ". ";
}


/* нумерация для li 1-ого уровня*/
.list-counter ol li::before {

}

/* нумерация для li 2-ого уровня*/
.list-counter ol ol > li::before {

}

/* нумерация li 3-ого уровня*/
.list-counter ol ol ol > li::before {

}

.list-counter ol ol ol > li {
    padding-left: 40px;
}


.list-counter ol ol > li:last-child {
    margin-bottom: 20px;
}

.list-counter ol ol ol li:last-child {
    margin-bottom: 10px;
}


.list-counter ul {

}

.list-counter ul li {
    position: relative;
    left: 35px;
    padding-left: 40px;
}

ul li::before,
.list-counter ul li::before {
    counter-increment: none !important;
    content: '';
    position: absolute;
    margin-left: calc(-1 * var(--gap));
    margin-top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--beige);
}

.list-counter ul li:last-child {
    margin-bottom: 10px;
}


.list-counter h3,
.list-counter h4 {
    display: inline-block;
    line-height: 1.3;
    margin-top: var(--gap);
}

.list-counter h3 {
    font-size: 24px;
    margin-bottom: 0;
    display: inline;
}

.list-counter h4 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 20px;
    max-width: calc(100% - 67px);
}

.list-counter h3 > ol h4:nth-of-type(1) {
    margin-top: 10px;
}


.list-counter p + h4 {
    margin-top: var(--gap);
}


/*/list*/


/* table */
table {
    border-collapse: collapse;
    width: 100%;
    color: var(--title-color);
}

thead tr {
    background-color: var(--white);
}

tbody {
    position: relative;
}

tr, td {
    border: 0;
}

tbody tr {
    cursor: pointer;
    background-color: var(--white);
    transition: var(--transition);
}

tbody tr:nth-child(even) {
    background-color: #cfcfcf;
}

tbody tr:hover,
tbody tr:nth-child(even):not([class$="_disabled"]):hover {
    background-color: #eef8d9;
    color: initial;
}

tbody td {
    padding: 10px 15px;
    vertical-align: initial;
}

section:not(.mp-intro) {
    padding: 6rem 0;
}

._title {
    font-family: DaysOne, Roboto, Arial, sans-serif;
    font-size: 4rem;
    background-image: linear-gradient(to bottom, #232020, #d7b789);
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    /*text-align: center;*/
    /*font-weight: 600;*/
    margin-bottom: calc(var(--gap) * 2);
    line-height: 1;
}

._title-less {
    color: var(--primary-color);
    font-size: 1.4rem;
    text-transform: uppercase;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    margin-bottom: calc(var(--gap) / 2);
}
h1 {
    font-size: 5rem;
    line-height: 1.4;
    font-weight: 400;
}

h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 56px;
    font-weight: 400;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 8px;
    font-weight: 400;
}

h5 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 400;
}

[type="checkbox"], [type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

.has-image[data-image-fit=contain] .fancybox__image {
    border-radius: var(--border-radius-card);
    transition: var(--transition);
}

._muted-text {
    color: var(--muted-color);
}

._noscroll {
    overflow: hidden;
}

.section__head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

._noimage img {
    object-fit: contain;
    padding: 3rem;
}


/* SWIPER */

.swiper-pagination {
    width: 100% !important;
}

.swiper-pagination.swiper-pagination__hidden {
    /* background-color: rgba(204, 16, 184, 0.45);*/
    z-index: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    bottom: 0;
}

.swiper-pagination__hidden .swiper-pagination-bullet {
    width: 100%;
    border-radius: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: transparent;
    margin: 0 !important;
    opacity: 0;
    bottom: 24px !important;
}

.swiper-pagination__hidden .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    bottom: 0;
    color: black;
    background-color: var(--brown);
    width: 100%;
    height: 4px;
}

.swiper-pagination__hidden .swiper-pagination-bullet::after {
    content: '';
    width: fit-content;
    height: 100%;
    position: absolute;
    left: 0;
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    padding: 0;
    display: flex;
    flex: 0 0 60px;
    height: 60px;
    width: 60px;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    font-size: .5rem;
    color: var(--white);
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1);
    border: 3px solid var(--border-color-gray);
    background-color: transparent;
    color: var(--white);
    font-weight: 500;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.25rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--white);
    border-color: transparent;
    color: var(--brown);
}

/* /SWIPER */