:root {
    --bg: #FE5C01;
}
.visible-xs {
    display: none !important;
}

.flex-b {
    display: flex;
    justify-content: space-between;
    align-items: center
}
.flex-s {
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.flex-r-reverse{
    flex-direction: row-reverse;
}
.pad-top {
    padding-top: 5em;
}
.pad-bot {
    padding-bottom: 5em;
}
.block {
    padding-top: 5em;
    padding-bottom: 5em;
}

.but {
    height: 3em;
    width: 13.5em;
    background: linear-gradient(180deg, #FEAA00 0%, #FE5C01 100%);
    box-shadow: 0px 3px 0px #C64400;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    transition: all linear .2s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    position: relative;
    z-index: 1;
    
}
.but span {
    font-size: .8em;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.but:not(.but_header-mod):hover {
    background: linear-gradient(180deg, #FE5C01 0%, #FEAA00 100%);
}
.but:focus {
    box-shadow: none;
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.26)
}

.input {
    width: 100%;
    height: 4.2em;
    padding-left: 1.5em;
    margin-bottom: 1.7em;
    border-radius: 2em;
    border: none;
    outline: none;
    background: #fff;
    display: block;
    font-size: .7em;
}

.input-wrap {
    flex-wrap: wrap;
    align-items: flex-start;
}
textarea.input {
    height: 8em;
    resize: none;
}
.error-text {
    color: #db0000;
    margin-top: .5em;
    font-size: .9em;
}

.polit {
    font-size: .6em;
    margin-top: 1.5em;
    line-height: 1.2em;
    letter-spacing: 0.01em;
}
.polit a {
    text-decoration: underline;
}

.headline {
    font-weight: bold;
    font-size: 2em;
    margin: 0 0 .8em;
    line-height: 120%;
}
.headline_mod {
    color: var(--bl);
    font-size: 1.8em;
    margin-bottom: 1em
}
.subtitle {
    font-size: 1.2em;
    line-height: 125%;
}
.headline span {
    background: var(--bg);
    padding: 0em .3em .2em;
    display: inline-block;
    color: #fff
}

.headline-block .headline {
    margin: 0
}
.headline-block {
    margin: 0 0 2.3em;
}

.wrapper {
    padding-left: 3em;
    padding-right: 3em;
}
.breadcrumbs {
    margin-bottom: 3.5em;
}
.breadcrumbs li {
    display: inline-block;
    font-size: .8em;
}
.breadcrumbs li:not(.active) a {
    color: #808080;
}
.breadcrumbs li.active a {
    color: var(--bg);
}

.header {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: all linear .2s
}
.header.scroll {
    padding-top: .5em;
    padding-bottom: .5em;
    background: #fff;
    box-shadow: 0 0 .5em 1px rgba(0, 0, 0, 0.1)
}
.menu {
/*    z-index: 9;*/
}
.nav-button {
    background: linear-gradient(180deg, #FEAA00 0%, #FE5C01 100%);
    box-shadow: 0px 3px 0px #C64400;
    border-radius: 2.5em;
    color: #fff;
    height: 3em;
    width: 7em;
    padding: .4em 1em .4em .4em;
    cursor: pointer;
    z-index: 99;
    position: relative;
}
.nav-button p {
    font-weight: bold;
    font-size: .9em;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.nav-control {
    width: 2.2em;
    height: 2.2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 50%;
    background: #fff;
}
.nav-control span {
    width: 1.2em;
    border-radius: 15px;
    height: .15em;
    background: var(--bg);
    transition: all linear .2s;
    margin: .13em 0
}
.nav-control.op span:nth-of-type(2) {
    opacity: 0;
}
.nav-control.op span:nth-child(1) {
    transform: translateY(.4em) translateX(0px) rotate(45deg) ;
}
.nav-control.op span:nth-child(3) {
    transform: translateY(-.4em) rotate(-45deg) ;
}

.main_menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100vh;
    overflow-y: scroll;
    background: rgb(243 243 243 / 99%);
    backdrop-filter: blur(10px);
    padding: 5em 3em 0;
    z-index: 9;
    transform: translateX(-110%);
    transition: all linear .3s
}
.main_menu.active {
    transform: translateX(0%);
}
.main_menu-link {
    font-weight: 800;
    font-size: 1.8em;
    text-transform: uppercase;
    color: #000;
    margin: .6em 0;
    display: block;
}
.main_menu-sublink {
    display: block;
    font-size: .9em;
    color: #000;
    padding-left: 2em;
    margin: .8em 0;
}
.main_menu-link:hover {
    color: var(--bg)
}
.logo {
    width: 12em;
    transition: all linear .2s
}
.logo>img {
    width: 100%;
}
.header.scroll .logo {
    width: 10em
}
.header_info {
    font-size: .8em;
    line-height: 1.2em
}
.header_info a {
    color: var(--bg);
}
.but_header {
    width: 12em;
    margin-left: 1.5em;
    padding: .4em 1em .4em .4em;
    text-align: left;
    justify-content: space-between;
}
.but_header-mod {
    background: linear-gradient(180deg, #35F27C 0%, #00BF4D 100%);
    box-shadow: 0px 3px 0px #029B3F;
}
.but_header .but_header-text {
    font-size: 1em;
}
.but_header-text span:first-child {
    font-size: .9em
}
.but_header-text span:last-child, .but_mod-header span:last-child {
    font-size: .6em;
    display: block;
    font-weight: normal;
    text-transform: none;
}
.but_header>img {
    width: 2.2em;
}
.but_mod-header {
    flex-direction: column;
}

.main {
    padding-top: 7.5em;
    min-height: 100vh;
    position: relative;
    padding-bottom: 3em;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
}
.main-contacts {
    min-height: auto;
    display: block;
}
.main-contacts .breadcrumbs {
    margin-bottom: 1.5em
}
.main-bg {
    background: url(../img/main-bg1.jpg) center/cover
}
.main-bg1 {
    background: url(../img/main-bg2.jpg) center/cover
}
.main-bg2 {
    background: url(../img/main-bg3.jpg) center/cover
}
.main-text {
    width: 43%;
    flex-shrink: 0;
}
.main_title {
    font-size: 3em;
    font-weight: bold;
    margin: 0 0 .75em;
}
.main_title--new {
    font-size: 2.5em;
    font-weight: bold;
    margin: 0 0 .75em;
}
.main_title span {
    background: var(--bg);
    color: #fff;
    padding: .05em .2em .1em;
/* margin-left: -.2em */
}

.main_title_promo{
    background: var(--bg);
    color: #fff;
    padding: .05em .2em .1em;
}
.main_subtitle {
    font-weight: normal;
    font-size: 1.2em;
    margin: 0 0 2em
}
.main_subtitle-new {
    font-weight: normal;
    font-size: .5em;
}
.main_info {
    position: absolute;
    bottom: 2em;
    color: #808080;
    font-size: .8em
}
.main-img {
    max-width: 55%;
    min-width: 43%
}
.main-img1 {
    width: 52.6%
}

.main .main-img {
    position: absolute;
    right: 0;
    bottom: 0
}
.main-bg2  .main-img {
    bottom: 3em;
    
}
.main-bg2 .main-img_smaller {
    min-width: 35%;
    right: 3em;
}

.include-item {
    position: absolute;
    width: auto;
    z-index: 3;  
}
.include-item1 {
    right: 22%;
    top: 22%
}

.include-item2 {
    right: 40%;
    top: 20%;
}

.include-item3 {
    right: 44%;
    top: 50%
}

.include-item .include-item-control {
    line-height: 0px;
    cursor: pointer;
    position: absolute;
    left: calc(50% - 1.51em);
    z-index: 2
}
.include-item .include-item-control img {
    width: 3.2em;
}
.include-item.open .include-item-control img {
    transform: rotate(45deg);
}

.include-item p {
    padding: .8em 1.2em;
    background: #fff;
    opacity: 0;
    -moz-opacity: 0;
    -o-opacity: 0;
    -webkit-opacity: 0;
    z-index: -9999;
    position: relative;
    border-radius: .5em;
    box-shadow: 5px 5px 20px 0px rgba(2, 2, 2, 0.15);
    margin: 0 0 1em;
    text-align: center;
    width: 12em;
    transform: scale(0);
}
.include-item_text {
    font-size: .8em;
}
.include-item_price {
    font-weight: 900;
    color: var(--bg);
    font-size: 2em;
    display: block;
}
.include-item p:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-left: .5em solid transparent;
    border-right: .5em solid transparent;
    border-top: .8em solid #fff;
    bottom: -.7em;
    left: calc(50% - .4em);
}
.include-item.open p {
    opacity: 1;
    -moz-opacity: 1;
    -o-opacity: 1;
    -webkit-opacity: 1;
    z-index: 8;
    transform: scale(1);
}
.label {
    position: absolute;
    bottom: 20%;
    left: 48.5%;
}
.circle-text {
    transform-origin: center;
    animation-name: label;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}
@keyframes label {
    from {transform: rotate(0deg)}
    to {transform: rotate(360deg)}
}

.benefits_bl, .rem_bl {
    flex-wrap: wrap;
    align-items: stretch;
}
.benefits_it {
    width: 32%;
    margin-bottom: 1em;
    padding: 1.5em 3em 1.5em 1.5em;
    background: #FFFFFF;
    box-shadow: 0px .5em 4em rgba(0, 0, 0, 0.1);
    border-radius: 1em;
}
.benefits_it>img {
    margin-right: 1.6em
}
.benefits_it p {
    font-size: .9em;
    line-height: 130%
}
.benefits_it p b {
    color: var(--bg)
}

.rem_it {
    padding: 1.5em 0 1.5em 2em;
    border-radius: 1em;
    margin-bottom: 2em;
    box-shadow: 0px .5em 4em rgba(0, 0, 0, 0.1);
    width: 48.5%;
    position: relative;
}
.hover_link {
    position: absolute;
    top: 0;
    left: 0;
    bottom :0;
    right: 0;
    z-index: 9;
}
.rem_it-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%
}
.rem_it-text span {
    color: #E6E6E6;
    font-weight: 900;
    font-size: 4em;
}
.rem_it-text p {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: .7em
}
.rem_it-text a {
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--bg);
    font-size: .8em;
    font-weight: bold;
}

.details {
    background: #FF823D;
    border-radius: 1em;
    padding: 2.5em 2.5em 1.5em 3em
}
.details h3 {
    font-size: 3em;
    line-height: 100%;
    color: #fff;
    margin: 0 0 .6em
}
.details .but {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFE8CC 100%);
    box-shadow: 0px 3px 0px #FF7020;
    color: var(--bg);
    width: 16em
}
.details .but:hover {
    background: linear-gradient(180deg, #FFE8CC 0%, #fff 100%);
}
.details>img {
    width: 52%;
    flex-shrink: 0;
   
}

 .details__left{margin-left: 2em}
 .details__right{margin-right: 2em}
.brands_slider {
    margin: 2em -.5em 0;
    padding-bottom: 2.5em
}
.brands_slider .slick-list {
    overflow: visible
}
.brands_slider_it {
    
    
}
.brands_slider_it>div, .brand_it {
    height: 6em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: .5em;
    box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.1);
    border-radius: 1em;
    background: #fff;
    position: relative;
}
.brands_bl, .brands_prem {
    column-gap: 1em;
    flex-wrap: wrap;
}
.brands_prem {
    width: 61%;
    margin-top: 3em
}
.brand_it {
    flex-direction: column;
 /*    width: 18.7%; */
    width: 15%;
    margin: 0 0 1em;
}
.brand_it img {
    /* width: 8em */
    width: 6em
}
.brand_it span {
    font-size: .7em;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-weight: bold;
    color: #808080;
}
.brand_it:hover {
    box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.3);
}
.brand_it:hover span {
    color: var(--bg)
}

.brand_it-prem {
    background: rgba(69, 69, 73, 0.3);
    backdrop-filter: blur(2px);
    height: 5em;
    width: 12.5em;
    border: 2px solid rgba(172, 170, 170, 0.2);
}
.brands_prem>p {
    width: 12.5em;
    text-align: center;
}
.brand_it-prem span {
    color: #464646;
    margin-top: .6em
}

.form-container {
    background: url(../img/bg1.jpg) center/cover;
    position: relative;
    
}
.form-container_mod {
    padding: 8em 0;
}
.form-container>img {
    position: absolute;
    bottom: 0;
    right: 3em;
    width: 40%
}
.form-container_bl {
    width: 48%
}
.form-container_bl .headline {
    margin-bottom: .4em
}
.form-container_bl .sub a {
    color: #000
}
.form-container_bl .sub+p {
    font-size: .7em;
    margin-top: .5em
}
.form-container_bl form {
    margin-top: 1.5em
}

.main_price {
    margin-top: 2.5em;
    margin-bottom: 4em;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1.3%;
}
.main_price .slick-list {
    overflow: visible;
}
.main_price-mod {
    align-items: stretch;
    margin-bottom: 0
}
.main_price_it {
    width: 24%;
    background: #FFFFFF;
    box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.1);
    border-radius: 1em;
    padding: 2em 2em 2.5em;
    margin-bottom: 2em;
    position: relative;
}

.main_price_it-mod {
    display: flex;
    flex-direction: column
}
.main_price_it-new{
    display: flex; 
    flex-direction: column;
    padding: 1.5em;
}
.main_price_list{
    font-size: .8em;
    line-height: 150%;
    margin-bottom: 1.2em
}
.main_price_it-mod .but {
    margin-top: auto !important;
}
.main_price-img {
    height: 8em;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main_price-img img {
    max-width: 100%;
    min-width: 50%;
}
.main_price-title {
    font-size: 1.1em;
    margin-bottom: 1.2em
}
.main_price-title-new{
    font-size: 1em;
    margin-top:0
}
.main_price-title+p {
    font-size: .8em
}
.main_price_it-mod>p {
    margin-bottom: 1.7em
}
.main_price-cost {
    font-size: 1.2em;
    display: block;
   /*  margin-top: 1.2em */
    margin-top: auto;
    font-weight: bold;
}
.main_price_it .but {
    width: 100%;
    margin-top: 1.25em
}

.condit_it {
    width: 49%;
    margin-bottom: 1em;
    border-radius: 1em;
    height: 13em;
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-left: 2.5em;
    padding-right: 20%;
    overflow: hidden;
}
.condit_title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: .7em
}
.condit_desc {
    font-size: .9em;
    line-height: 150%;
}
.condit_it span {
    font-size: .6em;
}
.condit_it>img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 45%;
    min-width: 30%;
}
.condit_it-mod {
    box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.1);
    width: 100%;
    background: #FFD0D0 url(../img/uslov7.png) right center/auto 100% no-repeat;
    padding-right: 45%
}
.condit_it-mod .condit_title {
    font-size: 1.5em
}

.otzyvy {
    margin: 2em -.5em 0;
    padding-bottom: 2em;
}
.otzyvy .slick-list {
    overflow: visible
}

.otzyv_it {
    margin: 1em;
    background: #FFFFFF;
    box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.1);
    border-radius: 1em;
    padding: 2em
}
.otzyv_head>img {
    width: 2em
}
.otzyv_head>span {
    color: #808080;
    font-weight: 700;
    font-size: .7em;
}
.otzyv_title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 1.1em 0 .5em
}
.otzyv_desc {
    font-size: .9em;
    line-height: 156%
}


.contact {
    position: relative;
    padding: 3.5em 3em;
}
.contacts_items {
    align-items: stretch;
    flex-wrap: wrap;
}
.contacts_it {
    width: 24%;
    background: #FFFFFF;
    box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.1);
    border-radius: 1em;
    padding: 2em;
    margin-top: 1em;
}
.contacts_it p, .contacts_it a {
    font-size: 1em;
    line-height: 142%;
    margin-top: 1em
}
.contacts_it a {
    color: var(--bg);
    display: block;
}
.contact-bl {
    background: #FFFFFF;
    box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.1);
    width: 21em;
    border-radius: 1em;
    padding: 2em;
    position: relative;
    z-index: 7;
}
.contact-p {
    margin-bottom: 1em
}
.contact-p span, .contacts_it span {
    font-size: .7em;
    color: #808080;
    margin-bottom: .8em;
    display: block
}
.contact-p a {
    color: #000
}
.soc-cont a {
    margin-right: 28px;
    font-weight: 450;
}

.map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #D9D9D9;
    filter: grayscale();
}
.main-map {
    position: static;
    height: 30em;
}

footer {
    padding: 3em 3em 2em;
}
.footer-top {
    align-items: flex-start;
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 1.5em;
}
.footer-first img {
    width: 12em;
    margin-bottom: 3em;
}
.footer-first p {
    font-size: .8em;
    color: #808080;
}
.main_link {
    font-weight: 700;
    font-size: .8em;
    text-transform: uppercase;
    margin-bottom: 1.5em;
    display: block;
    color: #000;
}
.main_link-cont .main_link {
    margin-bottom: 2em;
}
.serv-link a {
    font-size: .7em;
    margin-bottom: 1.2em;
    color: #808080;
    display: block;
}
.foot-info .but {
    margin: 0 0 1em;
}
.footer-bot {
    padding-top: 1.5em;
}
.footer-bot p {
    font-size: .7em;
}
.footer-bot img {
    width: 7.2em;
}

.premium-container {
    background: url(../img/bg2.jpg) center/cover;
    color: #fff;
    padding-top: 4em;
    padding-bottom: 4em
}

.icons_bl {
    column-gap: 1em;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 2.5em
}
.icon_it {
    background: #FFFFFF;
    box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.1);
    border-radius: 1em;
    margin-bottom: 1em;
    overflow: hidden;
    padding: 2em 1.8em;
    width: 23.85%;
}
.icon_it img {
    width: 2.5em;
    margin-bottom: 1.8em
}
.icon_it p {
    font-size: .9em;
    line-height: 155%
}
.icon_it p b {
    color: var(--bg);
}

.price_bl {
    align-items: stretch;
}
.price_it {
    background: #F4F4F4;
    border-radius: 1em;
    padding: 2em 2.5em;
    width: 49%;
}
.price_it>div:not(:last-child) {
    margin-bottom: 2em;
}
.price_it p {
    font-size: .9em;
    line-height: 167%
}
.price_it span {
    display: inline-block;
    padding: .5em;
    background: var(--bg);
    color: #fff;
    font-weight: bold;
    margin-top: .9em
}

.info_bl {
    align-items: stretch;
    margin-top: 2.5em;
    flex-wrap: wrap;
}
.info_it {
    width: 49%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.info_list {
    background: #FFFEDF;
    border-radius: 1em;
    padding: 1.5em;
    margin-bottom: 2.5em;
}
.info_list-mod {
    background: none;
    padding: 0;
}
.info_list li {
    list-style: disc;
    font-size: .9em;
    margin-left: 1em;
    line-height: 158%;
    margin-bottom: .7em;
}
.info_it>img {
    max-width: 100%;
    min-width: 90%;
    margin-bottom: 2em
}
.info_text {
    font-size: .9em;
    line-height: 160%;
}
.info_text a, .step_it-desc a {
    color: var(--bg);
    font-weight: bold;
    text-decoration: underline;
}

.after-container {
    background-size: cover;
    background-position: right center;
    padding-top: 4em;
    padding-bottom: 4em;
}
.after_it {
    margin-top: 1em
}
.after_it span {
    width: 6.2em;
}
.after_it img {
/*    min-width: 70%*/
}

.step_bl {
    align-items: stretch;
    flex-wrap: wrap;
}
.step_it {
    width: 32%;
    background: #FFFFFF;
    box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.1);
    border-radius: 1em;
    padding: 2em;
    margin-bottom: 1em;
}
.step_it-head span {
    font-weight: 900;
    font-size: 2em;
    color: #E6E6E6;
}
.step_it-head img {
    width: 11em;
}
.step_it-title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 1em 0;
}
.step_it-desc {
    font-size: .9em;
    line-height: 156%;
}
.step_it-desc b {
    color: var(--bg)
}

.more_info {
    align-items: flex-start;
}
.more_info>div {
    width: 49%;
    flex-shrink: 0;
}
.more_info .info_list {
    width: 49%;
}
.more_info-price {
    background: #FFECDB;
    border-radius: 1em;
    padding: 2.5em 2.5em 2em;
    position: relative;
}
.more_info-title {
    font-size: 1.2em;
}
.more_info-pr {
    background: #fff;
    border-radius: 20px;
    font-size: 2.5em;
    font-weight: bold;
    padding: .3em 1em;
    margin: .6em 0 .8em;
    display: inline-block
}
.more_info-price .but {
    width: 14em;
}
.more_info-dop {
    font-size: .7em;
    color: #808080;
    margin-top: 2em;
}
.more_info-price>img {
    position: absolute;
    right: 0;
    bottom: 0
}

.probl_bl img {
    width: 46%;
    margin-right: 3em;
    flex-shrink: 0
}
.probl_list {
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}
.probl_it {
    background: #FFFFFF;
    box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.1);
    border-radius: 1em;
    padding: .8em;
    width: 48.5%;
    margin-bottom: 1em
}
.probl_it span {
    width: 2.4em;
    height: 2.4em;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg);
    border-radius: .5em;
    font-weight: 900;
    color: #fff;
    margin-right: .7em;
    flex-shrink: 0
}
.probl_it p {
    font-size: .8em;
    line-height: 135%;
}
.content>img {
    width: 45.5%;
    flex-shrink: 0;
    margin-left: 4em;
}

.w-50 {
    width: 48%;
}
.w-30 {
    width: 30%;
}
.w-100 {
    width: 100%;
}

.politika .li, .politika .descr {
    font-size: .8em;
    line-height:150%;
}
.politika .descr {
    margin-bottom: 1em;
}

.page-description ul {
    margin-bottom: 1.5em;
}

.page-description ul li{
    list-style: disc;
    font-size: .9em;
    line-height: 158%;
    margin-bottom: 0.2em;
    margin-left: 1em;
}

.page-description h3{
margin:1em 0 0.4em 0;
}
.page-description a{
    color: var(--bg);
    font-weight: bold;
    text-decoration: underline;
}


.page-description p{
    font-size: .9em;
    line-height: 158%;
    margin-bottom: 0.7em;
}





#up {
    width: 3rem;
    height: 3rem;
    display: block;
    position: fixed;
    bottom: 3%;
    right: 2%;
    z-index: 9;
    background: #fff;
    border-radius: 50%;
}
#up img {
    width: 100%;
}

.list-flex{
    display: flex; 
    gap: 5px 25px; 
    flex-wrap: wrap;
}
.list-flex li{
    position: relative;
    margin: 0  !important; 
    list-style: none !important;
}

.list-flex li:not(:last-child):after {
    content: '/';
    position: absolute;
    top: 0;
    right: -20px;
}