/*@import url('https://web.archive.org/web/20240531225034cs_/https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700;800&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;880;900&family=Open+Sans:wght@400;700;800&display=swap');

* {
  box-sizing: border-box;
}

.new-disable {
    display: none!important;
}

html {

  --full-width: 100vw;
  --site-width: 1600px;
  /*--font-family: 'Open Sans', sans-serif;*/
  --font-family: 'Inter', sans-serif;
  --color: black;
  --color-warn: #CB482E;
  --color-black: #2d2d2d;
  --bg-color: #057e58; /*#55A381;*/
  --bg-color-rgb: 5, 126, 88;
  --bg-color-op: rgba(var(--bg-color-rgb), 0.9);
  --header-height: 115px;
  --bg-color-lite: #55A381;
}

 
body {
  font-family: var(--font-family);
  background-color: #fff;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
}

body.mobile-menu-opened {
  overflow-y: hidden;
  --bg-color-op: rgba(var(--bg-color-rgb), 0.95);
}

.site-width {
  width: var(--site-width);
  margin: 0 auto;
}

td {
  vertical-align: top;
}

em {
  font-style: italic;
}

strong {
  font-weight: 600;
  letter-spacing: 0.3px;
}

.mobile-only {
    display: none;
}

#body {
  margin: var(--header-height) auto 0;
  background-color: white;
  flex-grow: 1;
  flex-shrink: 0;
  width: 100%;
}

#header {
  overflow: hidden;
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  /*background-color: var(--bg-color);*/
  background-color: var(--bg-color-op);
  z-index: 9999;
  height: var(--header-height);
}

#header a#logo {
  display: block;
  background-image: url(../images/sro_logo.svg);
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 95px;
  width: 428px;
  flex-grow: 0;
}

#header .form-search {
    align-self: center;
    flex-grow: 1;
    border: none;
    visibility: hidden;
}

#header-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

#header .mobile-menu-button {
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#header .mobile-menu-open-trigger {
    background-image: url(../images/icons/menu.svg);
    width: 60px;
    height: 60px;
    align-self: center;
    margin-right: 0px;
    position: relative;
}

#header .mobile-menu-button.mobile-menu-open-trigger:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--color-warn);
    z-index: -100;
    transition: 0.5s top;
}

#header .mobile-menu-button.mobile-menu-open-trigger:hover:before {
    top: 100%;
}


#header .mobile-menu-button.mobile-menu-close-trigger { 
    display: none;
}


#header .menu {
    display: flex;
    align-items: center;
    font-size: 18px;
    text-transform: uppercase;
    /* color: white; */
    gap: 34px;
}

#header .menu a {
    color: white;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--bg-color-lite);
    text-underline-offset: 7px;
    transition: 0.5s all;
}

#header .menu a:hover {
    color: var(--color-warn);
}

#header .phone {
    color: white;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#header .phone span.descr {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
}


#header .social-media {
  display: flex;
  align-items: center;
  gap: 10px;
}

#header #tg {
    background-image: url(../images/icons/tg.svg);
    border-radius: 25%;
    /* background-color: white; */
}

#header #vk {
    background-image: url(../images/icons/vk-small.svg);
}

.social-media > * {
    height: 48px;
    width: 48px;
    background-size: contain;
}




#dynamic-menu {
    display: none;
    position: fixed;
    z-index: 999999;
    top: var(--header-height);
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-color-op);
    overflow-y: auto;

}

#dynamic-menu .wrapper {
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}

.mobile-menu-opened #dynamic-menu  {
  display: block;
}

.mobile-menu-close-trigger.button {
  position: absolute;
  height: 48px;
  width: 48px;
  background-image: url(../images/icons/close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 0px;
  right: 0px;
  cursor: pointer;
}

#dynamic-menu a {
  color: white;
  text-decoration: none;
  line-height: 110%;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 18px;
  transition: 0.5s all;
}

#dynamic-menu a:hover {
  color: var(--color-warn);
}

#dynamic-menu ul.menu {
    display: grid;
    gap: 60px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

#dynamic-menu .parent > a {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 110%;
    display: inline-block;
}

#dynamic-menu .parent > a {
    border-bottom: 2px solid;
    width: 100%;
    padding-bottom: 6px;
}



#content {
    width: var(--site-width);
    margin: 0 auto;
    padding-top: 60px;
}

#content ul li {
    margin-bottom: 10px;
}

.blog .items{
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(450px, 1fr) );
    gap: 2px;
}

.blog .items-row {
    display: contents;
}

.blog .row-separator {
    display: none;
}

.blog h1, .tag-category h1 {
    grid-column: 1/-1;
    text-align: center;
    position: relative;
}

.subheader {
    position: absolute;
    font-size: 18px;
    right: 0;
}

.sro-news .items {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(450px, 1fr) );
    /*grid-template-columns: repeat(5, 1fr);*/
    gap: 40px;
}

.sro-news.blog .item {
    outline: none;
    padding: 0;
    background-color: #FAFAFA;
    border-radius: 8px;
    overflow: hidden;

    padding: 20px;
}

span.goto-all {
    display: none;
}

.sro-news.blog .item h2 a {
    font-size: 14px;
    text-decoration: none;
    line-height: 130%;
    display: inline-block;
}


.blog a.item_image {
    width: 100%;
    display: block;
    position: relative;
    margin-bottom: 14px;
}

.blog a.item_image:before {
    content: "";
    padding-top: 100%;
    display: block;
}

.blog a.item_image .wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.blog a.item_image .wrapper img {
    width: 100%;
    flex-grow: 1;
    object-fit: cover;
}

.blog a.item_image .wrapper img.default {
    object-position: center;
    object-fit: scale-down;
    /*border: 1px solid;*/
}



.blog .item {
  padding: 30px 40px;
  border-radius: 8px;
  /*border: 2px solid var(--bg-color);*/
  outline: 2px solid var(--bg-color);
}

.blog.secondary .items-more.items {
    gap: 20px;
}

.blog.secondary .item {
    outline: 2px solid #FAFAFA;
    background-color: #FAFAFA;
}

.blog.vopros .item {
    background-image: url(../images/icons/question.svg);
    background-repeat: no-repeat;
    background-size: calc(70%);
    background-position: calc(100% + 154px);
}

.blog .item h2 a {
  color: var(--color);
  font-weight: 800;
  text-decoration: none;
  font-size: 20px;
  /* text-transform: uppercase; */
  line-height: 130%;
  transition: 0.5s;
}

#content .blog .item h2 a:hover, .blog .item h2 a:hover, .tag.items .item h2 a:hover {
  color: var(--bg-color-lite);
}


.mainpage .article-info { 
  display: none;
}

.blog .item h2 {
  margin: 45px 0;
}    

#content h1, span.h1, .sro-news h1, .sro-vopros h1 {
  font-size: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 40px;
  line-height: 120%;
}


#content .blog .item dd.create{
  font-size: 12px;
}

.sro-news {
    width: var(--site-width);
    margin: 0 auto;
}
                                                                   
.sro-news.blog .item h2 {
    margin: 10px 0;   
}

.sro-vopros {
    width: var(--site-width);
    margin: 0 auto;
}

.blog.sro-vopros {
    margin-top: 60px;
}

.blog.sro-vopros .items {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(250px, 1fr) );
    gap: 20px;
    margin-top: 20px;
}

.blog.sro-vopros .item {
    padding: 20px 20px;
    border-radius: 8px;
    outline: 2px solid #FAFAFA;
    background-color: #FAFAFA;
    background-image: url(../images/icons/question.svg);
    background-repeat: no-repeat;
    background-size: calc(100%);
    background-position: calc(100% + 154px);
}

.blog.sro-vopros a.item_image {
    display: none;
}

.blog.sro-vopros dd {
    display: none;
}


.f2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}


#footer {
  background-color: var(--bg-color);
  margin-top: 60px;
  color: white;
}

#footer .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}


.developer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #cccccc;
    font-size: 0.666rem;
    line-height: 110%;
    column-gap: 10px;
    height: 24px;
}

.developer a {
    background-image: url(https://uppersite.ru/logo-min.svg);
    background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    align-self: stretch;
    width: 24px;
}


/*---- main page ---*/

#big-wallpapier {
    display: flex;
    justify-content: center;
    overflow: visible;
    position: relative;
    height: 90vh;
    margin-top: calc(0px - var(--header-height));
}

#wallpapier {
  width: 100vw;
  height: 100vh;
  background-image: url(../images/mainpage/wallpapier.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  flex-shrink: 0;
}

#big-wallpapier video {
  width: 100vw;
  object-fit: cover;
  position: absolute;
  height: 90vh;
  object-position: top;
  left: 0;
  top: 0;
}

#promo-text {
    position: absolute;
    top: var(--header-height);
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 60px;
    line-height: 120%;
}

#promo-text .years {
  position: absolute;
  top: 40px;
} 

.years span:nth-child(2) {
    display: block;
    color: var(--color-warn);
    font-size: 67%;
    line-height: 100%;
}

.interes {
    color: var(--color);
    font-size: 20px;
    position: absolute;
    bottom: 20px;
    line-height: 150%;
    right: 20px;
}

/*--*/

.vstuplenie {
  background-color: var(--bg-color-lite);
  color: white;
  position: relative;
  overflow: hidden;
}

.vstuplenie:before {
    content: "";
    position: absolute;
    top: 50px;
    right: -150px;
    background-image: url(../images/gr_1.png);
    width: 800px;
    height: 800px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(-15deg);
    z-index: 0;
}

.vstuplenie .wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.vstuplenie .h1 {
  font-size: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 100%;
}

.vstuplenie .h1 > span {
    font-size: 61%;
}

.vstvznos {
    margin-top: 60px;
    display: grid;
    grid-column-gap: 20px;
    grid-template-areas:
        "year str1"
        "year str2";
}

.vstuplenie .h1 .vstvznos .year {
    font-size: 120px;
    grid-area: year;
    line-height: 88px;
}

.vstuplenie .h1 .vstvznos .str1 {
    grid-area: str1;
    font-size: 44px;
}

.vstuplenie .h1 .vstvznos .str2 {
    grid-area: str2;
    font-size: 27px;
    text-align: justify;
    line-height: 100%;
}

.vstuplenie .h1 .vstvznos .str2:after {
  content: "";
  display: inline-block;
  width: 50%;
  line-height: 0;
  font-size: 0;
}

.vstuplenie .vstvznos .year, .vstuplenie .vstvznos .str1 span {
  color: var(--color-black);
  font-weight: bold;
} 


.vstuplenie li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 140%;
}

.vstuplenie li:before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../images/li-sro.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    flex-grow: 0;
    flex-shrink: 0;
}

.vstuplenie li strong {
  color: var(--color-black);
}

/*----*/
.obuchenie {
  position: relative;
  z-index: 99;
  margin-bottom: 120px;
}

.obuchenie .h1 {
    color: var(--color-warn);
    line-height: 146%;
    margin-top: -60px;
    display: block;
}

.article-obuchenie .obuchenie .h1 {
    margin-top: 0;
}

.obuchenie .h1 > span {
  display: block;
}

.obuchenie .discount .comment {
    font-size: 18px;
    color: var(--bg-color);
    font-weight: bold;
    text-align: center;
    line-height: 100%;
    margin-top: -40px;
}

.obuchenie .discount .procent{
    font-size: 200px;
    font-weight: 900;
    color: var(--bg-color);
    text-align: center;
    line-height: 100%;
}

.obuchenie .discount small{
    font-size: 120px;
}

.obuchenie .prem li {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 140%;
}

.obuchenie .prem li:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../images/li-sro-green.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    flex-grow: 0;
    flex-shrink: 0;
}

.obuchenie .prem li strong {
  color: var(--color-black);
}

.obuchenie h2 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 40px;
}

.obuchenie .partners {
  text-align: center;
  font-size: 14px;
}

.obuchenie .partners h4 {
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 20px;
}

.obuchenie .partners ul {
    display: grid;
    grid-template-columns: repeat(3, auto);
}

.obuchenie .partners ul li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}


.obuchenie .partners .city {
    text-transform: uppercase;
    font-weight: bold;
    color: var(--color-warn);
}

.obuchenie .partners .name {
    font-weight: 400;
    line-height: 120%;
    display: inline-block;
    border-right: 1px solid;
    padding: 0 20px;
}

.obuchenie .partners li:last-child .name {
  border-right: none;
}

/*----  наставничество  ---*/

ul.principles, ul.we-offer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    gap: 40px;
    margin-left: 0!important;

    counter-reset: section;
}

ul.principles > li {
    list-style: none;
}

ul.principles > li h3{
    color: var(--color-warn);
    font-weight: bold;
    letter-spacing: 0.3px;
    border-bottom: 1px solid;
    padding-bottom: 10px;
}

.nastavnichestvo .targets {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: center;
    gap: 20px;
    margin-left: 0!important;   
}

.nastavnichestvo ul.targets > li {
    color: var(--color);
    line-height: 140%;
    font-style: italic;
    padding: 30px 40px;
    border-radius: 8px;
    border: 2px solid var(--bg-color);
    list-style: none;
    align-items: center;
    display: flex;
}

.nastavnichestvo .how-to {
    text-align: center;
    margin-left: 0!important;
}

.nastavnichestvo .how-to li {
    list-style: none;
}

.nastavnichestvo .how-to > li {
    margin-bottom: 30px!important;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nastavnichestvo .how-to li h3 {
    color: var(--bg-color);
    font-weight: 600;
}

.nastavnichestvo .how-to > li li {
    max-width: 500px;
}

ul.we-offer li {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

ul.we-offer li:before {
    counter-increment: section;
    content: counter(section);
    display: block;
    background-color: var(--color-warn);
    padding: 10px;
    border-radius: 100px;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 150%;
    margin-bottom: 20px;
}

/*-----*/

#map-block {
  position: relative;
  margin-top: 160px;
}

#map-block .wrapper {
  position: relative;
}

#map-block .content {
  position: relative;
  z-index: 99;
}

#map-block .h1 {
    color: var(--color-warn);
    text-align: right;
    display: block;
    margin-bottom: 5px;
}

#map-block .h1 > span:first-child {
  font-size: 94px;
}

#map-block .h1 > span {
  display: block;
  line-height: 130%;
}

#map-block .hash {
    font-weight: bold;
    text-transform: uppercase;
    text-align: right;
}

#map-block .hash > span{
    display: block;
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

#map-block .circle {
    position: absolute;
    top: -40px;
    left: 0;
    height: 200px;
    width: 200px;
    background-image: url(../images/mainpage/text-circle.svg);
    background-repeat: no-repeat;
    background-size: contain;

    -webkit-animation: rotating 8s linear infinite;
    animation: rotating 8s linear infinite;
}


/*---*/

#partners {
    background-color: var(--bg-color-lite);
    padding: 60px 0;
    margin-top: 120px;
}

#partners .h1 {
  color: white;
}

#partners .banners {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

#partners .banners a {
    background-color: white;
    padding: 15px;
    display: flex;
}

/*------------------*/


#content h1[itemprop="name"] {
    text-align: center;
    margin-bottom: 40px;
}

#content .item-page h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

#content p {
    margin-bottom: 20px;
}


[itemprop="articleBody"] {
  margin-top: 40px;
}


.article-info {
    margin-bottom: 20px;
    line-height: 100%;
    display: grid;
    grid-template-columns: min-content min-content;
    grid-column-gap: 10px;
}

dd.modified, dd.create {
    color: var(--color-black);
    text-transform: none;
    font-weight: normal;
    font-size: 10px;
    font-style: italic;
    display: contents;
}

dd.modified:before {
    content: "Обновлено: ";
}

dd.create:before {
    content: "Создано: ";
}

.sro-news dd.create:before {
    content: unset;
}

.sro-news dd.create {
    text-align: center;
    display: block;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
}



.article-info time {
    text-align: right;
}





.pagination {
  text-align: center;
  margin-top: 40px;
}


.pagination ul li{
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  zoom: 1;
}

.pagination span.pagenav {
  color: var(--color-warn);
  font-weight: bold;
}



.reestr_upr .title, .reestr_akkr .title {
  display: inline-block;
  font-size: 16px;
  vertical-align: top;
  font-weight: 600;
  max-width: 450px;
}


.reestr_upr div.entry, .reestr_akkr div.entry {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 20px;
}


.reestr_upr .entry > span, .reestr_akkr .entry > span  {
    display: contents;
}


.reestr_upr .title:before,  .reestr_akkr .title:before {
    content: "";
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #dddddd;
    right: -40px;
    position: absolute;
}

.reestr_upr .title, .reestr_upr .data, .reestr_akkr .title, .reestr_akkr .data {
    position: relative;
    padding-bottom: 10px;
}

.reestr_upr .data:before, .reestr_akkr .data:before {
    content: "";
    bottom: 0;
    left: -40px;
    border-bottom: 1px solid #dddddd;
    right: 0px;
    position: absolute;
}


.download.reestr-au {
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.download.reestr-au a {
  display: inline-flex;
  align-items: center;
}

.download.reestr-au a:before {
    content: "";
    height: 50px;
    width: 50px;
    background-image: url(../images/icons/excel-file.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    margin-right: 10px;
}


#content .blog-reestr-au .items, .tag.items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

#content .blog-reestr-au .item, .tag.items .item {
    padding: 0;
    border-radius: unset;
    border: unset;
    outline: unset;
}

#content .blog-reestr-au .item dd.create {
    display: none;
}

#content .blog-reestr-au .item h2 {
    margin: 0;
}

#content .blog .item h2 a, .tag.items .item h2 a, .blog .item h2 a {
    color: var(--color);
    font-weight: 800;
    text-decoration: underline;
    font-size: 17px;
    line-height: 130%;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
    text-decoration-color: #aaa;
}

.sro-news.blog .item h2{
    text-align: center;
    padding: 10px;
}


.end_phrase {
    color: var(--color-warn);
    font-size: 120%;
    font-weight: bold;
}

table.data-table tr:first-child td {
    font-size: 12px;
    text-align: center;
    background-color: #55a281;
    color: white;
    vertical-align: middle;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 110%;
}

.downloads {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-bottom: 80px;
}


.downloads a {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 200px;
  gap: 20px;
  color: var(--color-black);
  text-decoration: none;
  text-align: center;
  line-height: 110%;
}  


.downloads a:before {
  content: "";
  height: 140px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-grow: 0;
}

.downloads a[href$=".pdf"]:before {
  background-image: url('../images/icons/pdf-file.svg');
} 

.downloads a[href$=".doc"]:before, .downloads a[href$=".docx"]:before {
  background-image: url('../images/icons/word-file.svg');
} 

.downloads a[href$=".xls"]:before, .downloads a[href$=".xlsx"]:before {
  background-image: url('../images/icons/excel-file.svg');
} 

/*--- TODO ---*/
.downloads table, .downloads tbody, .downloads tr, .downloads td, .downloads p {
  display: contents;
}

.downloads img, .downloads br {
  display: none;
}

.dw time {
    display: block;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
}

#content h2.table-header {
    font-size: 15px;
    font-weight: bold;
    margin-top: 60px;
    margin-bottom: 20px;
}

#content h3.table-header {
    margin-top: -20px;
    font-size: 14px;
    font-style: italic;
}

.doc {
    display: contents;
}

.doc .time-update {
  display: none;
}

#map {
  height: 600px!important;
  margin-bottom: 40px;
}

.mesto {
    cursor: pointer;
    text-decoration: underline dashed 1px;
    color: #007458;
}

#content .filial h2 {
    margin-bottom: 40px;
    text-underline-offset: 8px;
    text-transform: uppercase;
}

#content .filial h3, #content .banks h3 {
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    letter-spacing: 0.2px;
}

.filial {
    padding: 30px 40px;
    border-radius: 8px;
    border: 2px solid var(--bg-color);
}

.filial .descr {
    text-align: center;
    margin-top: -30px;
    margin-bottom: 20px;
    color: var(--bg-color);
    font-weight: bold;
}

.filial .descr.main {
  color: var(--color-warn);
}

.filial .comment {
    text-align: center;
    margin-bottom: 40px;
    background-color: #efefef;
    padding: 20px;
    border-radius: 10px;
}

.filial h3, .banks h3 {
  order: 1;
}

.filial .field:before, .banks .field:before {
  content: "";
  order: 2;
  flex-grow: 1;
  border-bottom: 1px dotted #efefef;
}

.filial .field, .banks .field {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    justify-content: space-between;
    clear: both;
}

.filial .field span, .banks .field span {
  order: 3;
}

.banks {
  display: grid!important;
  margin-top: 40px;
}


.banks > div {
    padding: 30px 40px;
    border-radius: 8px;
    border: 2px solid var(--bg-color);
}

img.qr {
    float: right;
    max-width: 120px;
    position: relative;
    top: -20px;
}

h1.rekvizity {
  display: block!important;
  color: var(--color-warn);
  border-bottom: 4px solid;
  padding-bottom: 6px;
  margin-top: 60px;
}


.annotation {
    padding: 40px;
    border: 1px solid var(--bg-color);
    text-align: center;
    font-size: 16px;
    line-height: 140%;
    /* font-weight: bold; */
}

.annotation em {
  font-style: normal;
}

.remark {
    background-color: #efefef;
    float: right;
    font-size: 16px;
    margin-left: 30px;
    padding: 20px;
    width: 35%;
}

.remark .warn {
  color: var(--color-warn);
}


.col2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}


.vid-dolgnika {
    margin-bottom: 40px;
    margin-top: 40px;
}

.vid-dolgnika > div {
    color: var(--color);
    line-height: 140%;

    font-style: italic;

    padding: 30px 40px;
    border-radius: 8px;
    border: 2px solid var(--bg-color); 
}

#ch-vznosy {
    margin-top: -40px;
}

#ch-vznosy th {
    color: var(--color-warn);
    font-weight: bold;
    letter-spacing: 0.3px;
    padding-top: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid;
}

#ch-vznosy td:first-child {
    width: 60%;
    padding-right: 40px;
}

#ch-vznosy td {
    border-bottom: 1px solid #dddddd;
    padding-top: 15px;
    padding-bottom: 15px;
    vertical-align: middle;
}

.chlenskiy-vznos h3 {
    font-weight: bold;
}

.persons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    list-style: none;
}

#content .persons li {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 40px;
    align-items: center;
    border: 1px solid #dddddd;
    justify-content: center;
    margin-left: unset;
    /* padding-right: unset; */
    box-shadow: 0px 0px 10px 0px #dddddd;
}

.persons .name {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dddddd;
    flex-grow: 1;
    color: #55a281;
    display: block;
    margin-bottom: 20px;
}

.persons .descr {
    text-align: center;
    font-size: 14px;
    line-height: 110%;
    display: block;
    /* color: #cb472e; */
    font-weight: bold;
}

.persons .contacts {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 130%;
    margin-top: 20px;
}

.contacts > * {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.persons .contacts > *:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

.persons .contacts > *.whatsapp:before {
    background-image: url(../images/icons/whatsapp.svg);
}

.persons .contacts > *.phone:before {
    background-image: url(../images/icons/phone.svg);
}

.persons .contacts > *.mobile:before {
    background-image: url(../images/icons/mobile.svg);
}

.persons .contacts > *.email:before {
    background-image: url(../images/icons/email.svg);
}

#content h4 {
    color: #55a281;
    font-weight: bold;
    font-size: 19px;
    margin-bottom: 6px;
}

#tags {
    margin-bottom: 40px;
}

.tag-category h1:before {
    content: "#";
}

.tags li {
    list-style: none;
}

#content .tags {
    margin-left: unset;
}

.tags li a:before {
    content: "#";
}

.search-query.input-medium {
    max-width: 550px;
    width: 100%;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    color: var(--color-black);
    font-family: var(--font-family);

    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

div.finder.findarea {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

*:focus {
    outline: none;
}


button.findarea {
    border: 1px solid white;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-left: -12px;
    background-color: var(--bg-color);
    width: 50px;
    cursor: pointer;
    transition: 0.5s background-color;
    background-image: url(../images/icons/search.svg);
    background-position: center;
    background-repeat: no-repeat;
}

button.findarea:hover { 
    background-color: var(--color-warn);
}

.menu-search-wrapper {
    margin-bottom: 30px;
}


#footer .menu a {
    color: white;
    display: inline-flex;
    gap: 3px;
}

#footer .menu a:before {
    content: "";
    background-image: url(../images/icons/map.svg);
    background-position: left center;
    background-repeat: no-repeat; 
    width: 24px;
    height: 24px;
}

.img-in-content.right {
    float: right;
    max-width: 300px;
    margin-left: 40px;
}

.img-in-content.right img {
    width: 100%;
}

/*-------------*/

    
 

  #content h3{
    font-size: 20px;
    margin-bottom: 20px;
  }
  #content ol li{
    list-style: decimal outside none;
    margin-left: 30px;
    padding-right: 100px;
  }
  


  #content .moduletable.contacts{
    float: right;
    width: 290px;
  }
  #content table.stati{
    width: 100%;
  }
    #content table.stati tr td{
      padding: 10px 13px 40px 0;
      width: 50%;
    }
      #content table.stati tr td img.icon{
        float: left;
        margin-right: 10px;
        margin-top: -10px;
      }
      
      #content table.stati tr td span.remarka {
        float: left;
        font-size: 12px;
        font-style: italic;
        line-height: 14px;
        margin-top: 6px;
        padding-left: 10px;
      }



.small_annotation{  
  font-size: 11px;
}



table.graphics tr td{
  border: 1px solid #000;
  padding: 0 10px;
  vertical-align: middle;
  width: 33.33%;
}

#content ul{
  list-style-type: disc;
    margin-left: 40px;
}


#promo .item-136{
  margin-bottom: 32px!important;
}

.right_foto {
  float: right;
  font-size: 11px;
  line-height: 11px;
  text-align: center;
  width: 160px;
  margin-left: 40px;
}

.right_foto > img {
  width: 160px;
}

.reestr_upr .name, .reestr_akkr .name{
  display: none!important;
}


.right_block {
  float: right;
  padding-left: 40px;
  width: 360px;
  margin-top:  25px;
}

.shortlen {
  width: 570px !important;
}

.custom.promo{
  position: relative;  
  z-index: 0;
}


.tagspopular {
  clear: both;
  overflow: hidden;
}

.tagspopular li {
  display: inline-block;
  padding: 6px;
}




table.data-table {
  margin-bottom: 10px;    
}

table.data-table td {
    border: 1px solid #cdcdcd;
    padding: 10px;
    font-size: 13px;
}

table.data-table td[colspan] {
    text-align: center;
    background-color: #cdcdcd;
}





table.data-table td:first-child {
    min-width: 50px;
}

img.pull-right {
    float: right;
    margin-left: 40px;
    margin-bottom: 40px;
    max-width: 600px;
}


#xmap ul {
    display: none;
}

#xmap ul.visible {
    display: block;
}

/*
     FILE ARCHIVED ON 22:50:34 May 31, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 16:16:02 May 14, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.46
  exclusion.robots: 0.041
  exclusion.robots.policy: 0.032
  esindex: 0.009
  cdx.remote: 79.066
  LoadShardBlock: 135.514 (3)
  PetaboxLoader3.datanode: 180.431 (5)
  load_resource: 217.373
  PetaboxLoader3.resolve: 160.701
  loaddict: 30.447
*/