@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
body {
	font-family: 'Montserrat', sans-serif;
    margin: 0;
}
a {
    text-decoration: none;
    color: #0079f8;
}
#activities h2 {
	font-weight: bold;
    font-size: 54px;
    margin-bottom: 5rem;
	color: #1D3C6A;
}
h3 {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 5rem;
    color: #1D3C6A;
}
h4 {
	font-weight: bold;
    font-size: 20px;
	color: #1D3C6A;
}
#content_page {
    width: 100%;
    float: left;
}
header {
	height: 105px;
	margin: 13px 10px;
    display: flex;
    justify-content: space-between;
}
header > div:first-child {
	width: 105%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header > div:last-child {
	width: 20%;
}
#logo {
    width: 28%;
    position: relative;
}
#logo:before {
    content: '';
    position: absolute;
    right: -22px;
    top: 0;
    width: 15%;
    height: 105px;
    background: url(/assets/images/logo_arrows.png) no-repeat center;
    background-size: 100%;
}
#logo a {
    display: flex;
	height: 105px;
}
a:hover {
    text-decoration: none;
}
#logo img {
	height: 100%;
}
#logo .h001 {
    font-size: 0.6vw;
    padding: 1.2% 2.5%;
    line-height: 1.0rem;
    text-transform: uppercase;
    color: #0A3859;

    display: block;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}
header #tel {
    font-size: 1.8vw;
    font-weight: 900;
}
header #tel a {
	color: #0A3859;
}
header #tel a:hover {
	color: #0079F8;
}
header #menu {
    width: 55%;
    padding: 0 2%;
}
header #menu ul {
	list-style: none;
    margin: 0;
    padding: 0;
}
header #menu ul li {
    float: left;
    margin: 0 17px;
    max-height: 103px;
    position: relative;
    z-index: 1;
}
header #menu ul li a {
	color: #0A3859;
    font-size: .8vw;
    font-weight: 600;
    display: block;
    position: relative;
    text-transform: uppercase;
}
header #menu ul li a:hover {
	color: #0079F8;
}
header #menu ul li > a:before {
    content: "/";
    position: absolute;
    top: 0;
    right: -17px;
}
header #menu ul li:last-child a:before {
	display: none;
}
header #menu li .menu-child {
    display: none;
}
header #menu li:hover .menu-child {
    display: block;
    position: absolute;
    background: #FAF9FF;
    padding: 10px;
    width: 300%;
    line-height: normal;
    -webkit-box-shadow: 5px 5px 15px 5px rgb(0 0 0 / 8%);
    box-shadow: 5px 5px 15px 5px rgb(0 0 0 / 8%);
    border-left: 3px solid #1e9ccf;
}
header #menu .menu-child li {
    margin: 5px;
    width: 95%;
    padding: 0 0 0 15px;
    position: relative;
}
header #menu .menu-child li:before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 10px;
    left: 0;
    background: #d5d5d5;
}
header #menu .menu-child li:hover:before {
    background: #0079f8;
}
header #menu .menu-child li a {
    padding: 5px;
    border-bottom: 2px dotted #ccc;
    text-transform: initial;
}
header #menu .menu-child li > a:before {
    display: none;
}
#herb svg {
	float: right;
}
#ticker {
    width: 100%;
    background: #f8ea23;
    overflow: hidden;
}
#ticker > span {
	display: block;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    padding: 5px;
    width: 2000px;
    position: relative;
    left: 100%;
    animation: text 25s infinite linear;
}
@keyframes text {
  0%{
    transform: translate(0, 0);
  }
  
  100%{
    transform: translate(-200%, 0);
  }
}
#slider {
	width: 100%;
	height: 345px;
	position: relative;
	overflow: hidden;
}
#slider img {
    width: auto;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}
#slider #colslide {
    display: grid;
    grid-template-columns: 31.5% 34% 33%;
    height: 100%;
    color: #fff;
    align-content: space-between;
    align-items: stretch;
    position: relative;
}
#slider #colslide div {
    height: 345px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: normal;
}
#slider #colslide div:nth-child(2) {
    font-size: 22px;
    margin: -6% 0 0;
    padding: 0 12% 0 0;
}
#slider #colslide div:last-child {
    font-size: 20px;
    font-weight: 600;
    /*padding: 1% 0 0 0 ;*/
    margin: -6% 0 0;
    line-height: 35px;
    align-items: flex-start;
}
#slider #colslide div:last-child a:first-child {
    display: inline;
    margin: 0 0 6% 0;
    color: #0d385b;
    background: #f8ea23;
    padding: 10px 20px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    position: relative;
}
#slider #colslide div:last-child a:last-child:hover {
	/*border-bottom: 4px solid #ccc;*/
	color: #0079F8;
}
#slider #colslide div:last-child a:first-child:hover {
	color: #fff;
    background: #0079f8;
}
#slider #colslide div:last-child a svg {
    position: absolute;
    top: 0;
    right: -30px;
}
/* Menu slide */
#menu-toggle {
	display: none;
}
#menu-toggle.active {
	display: block;
}
#menu-slide {
	width: 100%;
	float: left;
    position: relative;
}
#menu-slide > div {
    width: 47%;
   	margin: -70px auto 0;
   	height: 150px;
}
#menu-slide ul {
	list-style: none;
    margin: 0;
    padding: 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background: #949498;
    display: grid;
    grid-template-columns: 16.66% 16.66% 16.66% 16.66% 16.66% 16.66%;
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.24);
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.24);
}
#menu-slide ul li {
	position: relative;
}
#menu-slide ul li a {
	color: #fff;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    height: 100%;
    line-height: normal;
    padding: 8%;
    position: relative;
    box-sizing: unset !important;
    /*box-sizing: inherit;*/
}
#menu-slide ul li a:before {
	content: "";
	width: 2px;
    height: 65%;
	background: #CCCCCC;
	position: absolute;
	top: 10%;
	right: 0;
}
#menu-slide ul li:last-child a:before {
	display: none;
}
#menu-slide ul li a img {
    margin: 5%;
}
#menu-slide ul li a:hover {
    background: #0079F8;
    color: #fff;
    top: -5%;
    height: 100%;
    padding: 5.5%;
}
#menu-slide ul li a:hover:before {
	display: none;
}
#menu-slide ul li a:hover img {
	margin: 5% 5% 10%;
}
#menu-slide ul li:last-child a:hover {
	-webkit-border-top-right-radius: 8px;
	-webkit-border-bottom-right-radius: 8px;
	-moz-border-radius-topright: 8px;
	-moz-border-radius-bottomright: 8px;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}
#menu-slide ul li:first-child a:hover {
	-webkit-border-top-left-radius: 8px;
	-webkit-border-bottom-left-radius: 8px;
	-moz-border-radius-topleft: 8px;
	-moz-border-radius-bottomleft: 8px;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}
#text-index {
	width: 100%;
	float: left;
}
#text-index > div {
	width: 83.5%;
    margin: 0 auto 80px;
    padding: 55px 0 0;
}
#text-index p {
    text-align: center;
    font-size: 24px;
    margin-bottom: 1.5rem;
}
#text-index p:nth-child(2) {
    font-size: 20px;
    color: #666;
}
#text-index p strong {
    font-weight: 900;
    font-size: 34px;
    animation: numbers 2s infinite alternate;
}
#text-index ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 0;
    width: 100%;
    max-height: 100%;
    display: grid;
    grid-template-columns: 24% 24% 24% 24%;
    line-height: 40px;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
}
#text-index ul li {
    font-size: 14px;
    color: #666;
    display: flex;
    font-weight: 500;
    line-height: 1.25;
    width: 100%;
    height: 100%;
    margin: 8px 0.5%;
    padding: 10px 16px;
    background: #f8f7f7;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
}
#text-index ul li span {
    /*font-size: 14px;*/
    /*color: #666;*/
}
@keyframes numbers {
	0% {
		color: #0079F8;
	}
	100% {
		color: #53A0F2;
	}
}
.block-inform {
    width: 83.5%;
    margin: 0 auto;
}
.block-inform h2 {
    font-size: 46px;
    line-height: 30px;
    font-weight: 700;
    color: #1d3c6a;
    margin: 0 0 50px;
}
.block-inform a {
    font-size: 16px;
    color: #666;
    line-height: 24px;
    height: 95px;
    overflow: hidden;
}
.block-inform a:hover {
    color: #0079f8;
}
.block-inform a.all-url {
    color: #0079f8;
    float: right;
    font-weight: 500;
}
#news a p {
    color: #0079f8;
    font-weight: 600;
    margin: 0;
}
#news a span:hover {
    color: #0079f8;
}
.block-inform #news > div a {
    font-size: 16px;
    color: #666;
    line-height: 24px;
    height: auto;
    display: flex;
    overflow: initial;
}
#activities {
	width: 100%;
    float: left;
    margin: 45px 0 0;
    -webkit-box-shadow: 0px 0px 40px 5px rgba(0,0,0,0.7);
    box-shadow: 0px 0px 40px 5px rgba(0,0,0,0.7);
    background: #08254F url(/assets/images/bg-activities.png) no-repeat 102% 220%;
}
#activities > div {
    margin: 0 auto;
    padding: 6% 0 2%;
    width: 65%;
    color: #B3B3B3;
    display: grid;
    grid-template-columns: 30% 30% 30%;
    justify-content: space-between;
}
#activities h2 {
    height: 200px;
    margin: 0;
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    color: #B3B3B3;
}
#activities > div > a {
	border: 4px solid #1D3C6A;
    margin: 0 0 68px;
    padding: 10%;
    color: #B3B3B3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    text-align: center;
    position: relative;
    box-sizing: unset;
    line-height: 1.2;
}
#activities > div > a:hover {
    border: 4px solid #B3B3B3;
    color: #fff;
}
#activities > div > a:nth-child(2), #activities > div > a:last-child {
    height: 120px;
}
#activities > div > a img {
    position: absolute;
    top: -30px;
    left: 10%;
    padding: 0 5%;
    background: #08254F;
}
#info {
	width: 100%;
	float: left;
    padding: 85px 0 0;
}
#info > div {
	width: 85%;
	margin: 0 auto;
}
#info h2 {
    font-weight: bold;
    font-size: 48px;
    margin-bottom: 5rem;
    color: #1D3C6A;
	text-align: center;
}
#officially, #news.threeblocks {
    display: flex;
    justify-content: space-between;
    margin: 0 0 130px;
    position: relative;
}
.news__attribute, #news.threeblocks .news__attribute {
    display: flex;
    position: absolute;
    bottom: 2%;
    left: 0;
    align-items: center;
    width: 100%;
    justify-content: space-evenly;
    color: #999;
    margin: 0;
    min-width: auto;
    height: auto;
}
.block-inform .news__attribute {
    position: initial;
    color: #666;
    justify-content: flex-start;
    margin: 10px 0 30px;
}
.block-inform .news__attribute i {
    margin: 0 10px 0 0;
}
.block-inform .news__attribute small {
    margin: 0 20px 0 0;
}
.news__attribute--time:before {
    content: attr(data-publication);
}
.news__attribute--views:before {
    content: attr(data-popularity);
    margin-right: 4px;
}
#officially > div {
	width: 21.6%;
}
#news.threeblocks {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    justify-items: center;
}
#news.threeblocks > div {
    width: auto;
    margin: 0 0 40px;
}
#officially  > a {
    position: absolute;
    right: 0;
    bottom: -20%;
    color: #666;
}
#officially  > a:hover {
	color: #0079f8;
	text-decoration: underline;
}
#officially > div a, #news.threeblocks > div a {
    height: 200px;
    border: 4px solid #ccc;
    display: flex;
    align-items: center;
    text-align: center;
    line-height: normal;
    padding: 3%;
    color: #666;
    position: relative;
}
#officially > div a:hover {
	border: 4px solid #0079F8;
	color: #0079F8;
}
#officially > div a:before, #news.threeblocks > div a:before {
    content: '';
    position: absolute;
    top: -25px;
    width: 90px;
    height: 50px;
}
#officially > div a:before, #news.threeblocks > div a:before {
	background: #fff url(/assets/images/icon_11.png) no-repeat center;
}
#advantages {
	width: 100%;
	float: left;
}
#advantages > div {
	margin: 0 auto;
	width: 86%;
}
#advantages > div > div {
	display: flex;
	justify-content: space-between;
    margin: 0 0 50px;
}
#advantages > div > div > div {
	width: 30%;
}
#advantages h3 {
	margin-bottom: 4.3rem;
    text-align: center;
}
#advantages h4 {
	padding: 0 0 0 70px;
	margin-bottom: 1rem;
	width: 78%;
}
#advantages > div > div > div:first-child h4 {
	background: url(/assets/images/icon_13.png) no-repeat left center;
}
#advantages > div > div > div:nth-child(2) h4 {
	background: url(/assets/images/icon_14.png) no-repeat left center;
}
#advantages > div > div > div:last-child h4 {
	background: url(/assets/images/icon_15.png) no-repeat left center;
}
#advantages ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#advantages ul li {
    font-size: 14px;
    line-height: normal;
    position: relative;
    padding: 5px 0 10px 20px;
}
#advantages ul li:before {
	content: '';
	position: absolute;
	left: 0;
	width: 1px;
	height: 30px;
	background: #ccc;
}
#advantages ul li a {
	color: #0079F8;
}
#advantages ul li:nth-child(5), #advantages ul li:nth-child(6), #advantages ul li:nth-child(7) {
	/*display: none;*/
    display: block;
}
#advantages ul li.active {
	display: block;
}
.home .more {
    display: table;
    margin: 0 auto;
    color: #1D3C6A;
    font-size: 20px;
    position: relative;
    cursor: pointer;
}
.home .more:hover {
	color: #0079f8;
}
.home .more:before, .home .more:after {
    content: '';
    position: absolute;
    width: 180%;
    top: 50%;
    left: -190%;
    height: 1.5px;
    background: #ccc;
}
.home .more:after {
	left: initial;
	right: -190%;
}
#statute {
	width: 100%;
	float: left;
}
#statute > div {
    width: 95%;
    margin: 0 auto;
    padding: 50px 0 0;
}
#statute > div h3 {
	text-align: center;
	margin-bottom: 4rem;
}
#text-bottom {
	display: flex;
}
#text-bottom > div:first-child {
	width: 32%;
}
#text-bottom > div:last-child {
    width: 68%;
    margin: 0 0 0 1.8%;
    padding: 0 0 0 1.4%;
    border-left: 1px solid #ccc;
}
#text-bottom > div:first-child img {
	float: right;
	animation-name: logo;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}
@keyframes logo {
	50% {
		opacity: 0.5;
	}
}
#text-bottom > div p {
    padding: 0 0 0 2%;
    position: relative;
}
#text-bottom > div p:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 13px;
    height: 13px;
    background: #B3B3B3;
}
#partners {
    width: 100%;
    float: left;
    margin: 0 0 65px;
}
#partners > div {
    width: 80%;
    margin: 110px auto 0;
}
#partners h3 {
	text-align: center;
}
#partners > div ul {
	list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 30% 30% 30%;
    /*justify-items: center;*/
    line-height: normal;
    justify-content: space-around;
}
#partners > div ul li {
    text-align: left;
    margin: 0 0 20px
}
#partners > div ul li a {
	display: block;
	color: #0079F8;
}
#partners > div ul img {
	margin: 0 20px 20px 0;
    float: left;
}
/* List-answers */
.article .list-answers li {
    margin-bottom: 4.7em;
}
.list-answers li > strong {
    position: relative;
}
.list-answers li > strong a, .library {
    color: #1069aa;
}
.list-answers li > strong:after, .library:after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: -30px;
    border: 2px dotted #B2B3B3;
    border-left: 0;
    border-bottom: 0;
}
.list-answers li p {
    margin-top: 1rem;
    margin-left: 1rem;
    line-height: normal;
}
.list-answers a.link-list {
    float: right;
    position: relative;
}
.list-answers a.link-list:before {
    content: '';
    position: absolute;
    bottom: 45%;
    right: 110%;
    width: 340%;
    height: 20px;
    border: 2px dotted #B2B3B3;
    border-right: 0;
    border-top: 0;
}
.list-answers li::marker {
    color: #1069aa;
    font-weight: bold;
}
/* price-table */
.price-table, .answer table {
    margin: 30px 0 0;
}
.price-table tbody, .answer thead, .answer tbody {
    border-top: 3px solid #0079F8;
    border-bottom: 3px solid #0079F8;
}
.price-table tr:nth-child(odd), .answer tr:nth-child(odd) {
    background: #f2f5f8;
}
.price-table h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1d3c8b;
}
.price-table tr td:first-child strong {
    margin: 0 0 0 30px;
}
.price-table tr td:first-child ul, .answer ul {
    list-style-type: square;
    margin-top: 1rem;
}
.price-table tr td:first-child ul li, .answer ul li {
    margin: 0;
    font-style: italic;
}
.price-table tr td:last-child {
    vertical-align: middle;
    text-align: center;
}
.price-table tr td:last-child strong {
    font-size: 22px;
    color: #fff;
    text-align: center;
    margin: 0 auto 10px;
    padding: 13px;
    display: inline-block;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background: #0079F8;
    border-top: 2px solid #ccc;
    border-left: 2px solid #ccc;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.price-table tr td:last-child span {
    display: block;
}
/* Seminar */
.seminar {

}
.seminar > div {
    width: 30.5%;
    position: relative;
    margin: 1%;
    height: 336px;
}
.seminar > div > div {
    background: #F6F5F5;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.seminar > div:hover > div {
    zoom: 110%;
    top: -5%;
    left: -3%;
    right: 0;
    position: absolute;
    width: 110%;
    z-index: 1;
    -webkit-box-shadow: 0px 0px 38px 0px rgb(0 0 0 / 60%);
    box-shadow: 0px 0px 38px 0px rgb(0 0 0 / 60%);
}
.seminar img {
    width: 100%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.seminar p {
    font-size: 18px;
    font-weight: bold;
    color: #08254F;
    text-align: left;
    height: 66px;
    overflow: hidden;
}
.seminar a {
    font-size: 18px;
}
.seminar .noneurl {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.seminar .noneurl span {
    background: #ccc;
    color: #fff;
    font-size: 18px;
    cursor: not-allowed;
}
.seminar .noneurl a {

}
/* Programs zab */
.program-zab {
    
}
.program-zab > div {
    width: 23%;
    height: 250px;
    position: relative;
    margin: 1%;
}
.program-zab > div a.img {
    height: 156px;
    overflow: hidden;
    background: #F8F7F7;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
.program-zab > div img {
    width: 100%;
}
.program-zab > div a {
    text-align: center;
    color: #08254F;
    font-size: 18px;
    font-weight: bold;
    display: block;
}
.program-zab > div:hover > div {
    zoom: 110%;
    top: -5%;
    left: -3%;
    right: 0;
    position: absolute;
    width: 110%;
    z-index: 1;
    -webkit-box-shadow: 0px 0px 38px 0px rgb(0 0 0 / 60%);
    box-shadow: 0px 0px 38px 0px rgb(0 0 0 / 60%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 0 !important;
}
/* kontakty */
#contact_block_grid {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    justify-content: center;
    justify-items: center;
    margin: 70px 0;
}
#contact_block_grid > div {
    text-align: center;
}
#contact_block_grid > div strong {
    color: #00355C;
    padding: 36px 0 15px;
    background: url(/assets/images/icon_letter.png) no-repeat top center;
}
#contact_block_grid > div:nth-child(2) strong {
    background: url(/assets/images/icon_mail.png) no-repeat top center;
}
#contact_block_grid > div:last-child strong {
    background: url(/assets/images/icon_tel.png) no-repeat top center;
}
#contact_block_grid > div span {
    display: block;
    color: #0079F8;
    font-weight: 600;
}
#contact_block_user {
    display: grid;
    grid-template-columns: 45% 45%;
    justify-content: center;
    justify-items: center;
}
#contact_block_user div {
    background: #f9f9f9;
    background: -moz-linear-gradient(-45deg, #f9f9f9 0%, #ebecec 100%);
    background: -webkit-linear-gradient(-45deg, #f9f9f9 0%,#ebecec 100%);
    background: linear-gradient(135deg, #f9f9f9 0%,#ebecec 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#ebecec',GradientType=1 );
    margin: 5px;
    width: 97%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-align: center;
}
#contact_block_user span {
    display: block;
}
#contact_block_user span:first-child {
    background: #D9DADA;
    color: #0079F8;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 1%;
    font-weight: 600;
}
#contact_block_user span:nth-child(2) {
    font-size: 24px;
    padding: 3%;
    font-weight: 600;
    color: #5B5B5B;
    line-height: normal;
}
#contact_block_user span:last-child {
    background: #0079F8;
    color: #fff;
    text-align: center;
    padding: 1.5%;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
#contact_block_user span:last-child:hover {
    background: #1E9CCF;
}
#contact_block_user span:last-child a {
    color: #fff;
    position: relative;
    font-size: 24px;
    font-weight: 600;
}
#contact_block_user span:last-child a:before, #contact_block_user span:last-child a:after {
    content: '';
    position: absolute;
    top: 5px;
}
#contact_block_user span:last-child a:before {
    left: -30px;
    width: 16px;
    height: 18px;
    background: url(/assets/images/icon_tel_01.png) no-repeat top center;
}
#contact_block_user span:last-child a:after {
    right: -30px;
    width: 19px;
    height: 21px;
    background: url(/assets/images/icon_viber_01.png) no-repeat top center;
}
/* agreement_block */
.agreement_block h3 {
    font-size: 1.5rem !important;
    position: relative;
    text-align: left;
    padding: 0 0 10px;
    color: #0079F8 !important;
}
.agreement_block h3:before, .agreement_block h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 5px;
}
.agreement_block h3:before {
    width: 10%;
    left: 0;
    border-top: 5px solid #EFC416;
}
.agreement_block h3:after {
    width: 89%;
    bottom: -3%;
    right: 0;
    border-top: 2px dotted #C5C6C6;
}
.agreement_block > div {
    border-left: 4px solid #B2B3B3;
    padding: 0 0 0 25px;
}
.agreement_block ul, #reg_block_three ul {
    padding: 0;
    margin: 20px 0;
    list-style: none;
}
.agreement_block ul li, .list_const li, #reg_block_three ul li {
    padding: 0 0 0 20px;
    position: relative;
}
.agreement_block ul li:before, .list_const li:before, #reg_block_three ul li:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #B3B3B3;
}
/* consultation */
#consultation h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 2rem;
}
#cons_block_users {
    display: flex;
    justify-content: space-between;
} 
#cons_block_users > div {
    width: 32%;
    display: flex;
    /*border: 2px solid #0079F8;*/
    /*-webkit-border-radius: 10px;*/
    /*-moz-border-radius: 10px;*/
    /*border-radius: 10px;*/
    -webkit-box-shadow: 5px 5px 10px 5px rgba(0,0,0,0.2);
    box-shadow: 5px 5px 10px 5px rgba(0,0,0,0.2);
}
#cons_block_users > div h4 {
    color: #0079F8;
    margin: 15px 0 0 25px;
}
#cons_block_users > div > div {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
}
#cons_block_users > div img {
    float: left;
    /*-webkit-border-top-left-radius: 6px;*/
    /*-webkit-border-bottom-left-radius: 6px;*/
    /*-moz-border-radius-topleft: 6px;*/
    /*-moz-border-radius-bottomleft: 6px;*/
    /*border-top-left-radius: 6px;*/
    /*border-bottom-left-radius: 6px;*/
}
#cons_block_users > div span {
    display: block;
    background: #898989;
    color: #fff;
    padding: 7px 0 7px 20px;
    font-size: 14px;
}
.list_const {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    display: grid;
    grid-template-columns: 47% 47%;
    justify-content: center;
    line-height: normal;
    align-items: center;
}
.list_const li {
    font-size: 14px;
    margin: 5px 5px 0 0;
}
#block_form_const, #block-pr > div {
    background: #f9fafa;
    background: -moz-linear-gradient(-45deg, #f9fafa 0%, #ebecec 100%);
    background: -webkit-linear-gradient(-45deg, #f9fafa 0%,#ebecec 100%);
    background: linear-gradient(135deg, #f9fafa 0%,#ebecec 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9fafa', endColorstr='#ebecec',GradientType=1 );
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    padding: 20px;
    margin: 0 0 50px;
    -webkit-box-shadow: 0px 55px 20px -45px rgba(0,0,0,0.5);
    box-shadow: 0px 55px 20px -45px rgba(0,0,0,0.5);
}
#block_form_const ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 24% 24% 24% 24%;
    justify-content: space-between;
    justify-items: center;
}
#block_form_const ul li {
    width: 100%;
    margin: 0 0 10px;
}
#block_form_const ul li a {
    display: block;
    font-size: 18px;
    padding: 20px;
    text-align: center;
    color: #00355C;
    font-weight: 600;
    background: #D9DADA;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
#block_form_const ul li a:hover {
    background: #898989;
    color: #fff;
    text-shadow: 3px 2px 3px rgba(255,255,255,.2);
}
#block_form_const p {
    color: #00355C;
    font-weight: 600;
    border-left: 4px solid #0079F8;
    padding: 10px;
}
#block_form_const > div {
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
}
#block_form_const > div > div:last-child {
    display: flex;
    align-items: center;
}
#block_form_const > div > div:last-child .fa {
    margin: 0 10px 0 0;
    color: #007bff;
}
#block_form_const > div button {
    width: 100%;
}
#block_form_const > div input {
    border: 2px solid #007bff;
}
#block_form_const button .fa {
    transform: scale(-1, 1);
}
.quest_block {
    margin: 0 0 70px;
}
.quest_block h4 {
    position: relative;
    display: flex;
    margin: 0 0 30px;
    padding: 0 0 10px;
}
.quest_block h4 > span {
    display: block;
    position: relative;
    color: #0079F8;
    width: 55%;
    border-bottom: 2px dotted #C5C6C6;
}
/*.quest_block h4:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 14%;
    border-top: 2px dotted #C5C6C6;
    width: 50%;
}*/
.quest_block .question {
    color: #00355C;
    margin: 15px;
    display: block;
    font-weight: 600;
}
.quest_block .answer {
    color: #898989;
    margin: 0 0 0 40px;
    padding: 0 0 0 45px;
    position: relative;
}
.answer table {
    width: 100% !important;
    margin: 0 0 20px;
}
.answer table tr, .answer table td {
    height: auto !important;
    vertical-align: middle !important;
    white-space: normal !important;
    width: auto !important;
}
.answer h3 {
    font-size: 24px !important;  
}
.answer h5 {
    font-size: 16px !important;  
}
.answer h2, .answer h3, .answer h4, .answer h5 {
    text-align: left !important;
    margin-bottom: 0.5rem !important;
    padding: 0;
    display: block;
    color: #000;
}
.quest_block .answer p:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: -10px;
    left: 10px;
    border-left: 2px dotted #C5C6C6;
    border-bottom: 2px dotted #C5C6C6;
}
.quest_block .news__attribute {
    left: initial;
    right: 0;
    width: auto;
}
.quest_block .news__attribute i {
    margin: 0 20px 0 0;
}
.quest_block .news__attribute a {
    display: flex;
    margin: 0 0 0 20px;
    font-size: 14px;
    align-items: center;
}
.quest_block .news__attribute a i {
    transform: scale(-1, 1);
}
.quest_block .news__attribute .viber {
    display: block;
    width: 21px;
    height: 21px;
    background: url(/assets/images/icon_viber.png) no-repeat top center;
    background-size: 100%;
    font-size: 0;
}
#questions .pagination {
    justify-content: center;
}
#registration > div {
    width: 100%;
    float: left;
    margin: 0 0 50px;
}
#registration h3 {
    color: #00355C;
    text-align: center;
}
#reg_block_one img {
    width: 15%;
    float: left;
    margin-right: 25px;
}
#reg_block_two p {
    padding: 12px 0 12px 23px;
    position: relative;
    border-left: 4px solid #B2B3B3;
}
#reg_block_three p {
    width: 100%;
    position: relative;
}
#reg_block_three p:before {
    content: '';
    position: absolute;
    width: 93%;
    height: 2px;
    top: 40%;
    right: 0;
    border-top: 2px dotted #C5C6C6;
}
#reg_block_three ul li {
    margin: 0 50px 0.8em;
}
/* Programs */
#programs > p {
    font-weight: 600;
}
#programs > a {
    background: url(/assets/images/icon_tel.png) no-repeat left;
    padding: 10px 0 10px 45px;
}
#programs .block-img {
    display: flex;
    margin: 50px 0;
}
#programs .block-img > div {
    width: 25%;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#programs .block-img > div img {
    margin: 0 0 20px;
}
#block-pr > div {
    position: relative;
    display: grid;
    grid-template-columns: 25% 30% 25% 20%;
    align-items: center;
}
#block-pr > div:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background: url(/assets/images/bg-pr_01.png) no-repeat 5% 0;
    background-size: 68%;
}
#block-pr > div:nth-child(2):before {
    background: url(/assets/images/bg-pr_02.png) no-repeat 5% 0;
    background-size: 68%;
}
#block-pr > div:nth-child(3):before {
    background: url(/assets/images/bg-pr_03.png) no-repeat 5% 0;
    background-size: 68%;
}
#block-pr > div:nth-child(4):before {
    background: url(/assets/images/bg-pr_04.png) no-repeat 5% 0;
    background-size: 68%;
}
.program-name {
    position: relative;
}
.program-name a {
    display: block;
    padding: 0 0 0 35px;
    font-weight: 800;
    color: #00355C;
}
.program-desc {
    position: relative;
    padding: 10% 0 10% 20px;
    border-left: 2px solid #0079F8;
    background: url(/assets/images/quotes.png) no-repeat 7% 0%;
}
#block-pr > div:nth-child(2) .program-desc {
    border-left: 2px solid #fabc85;
}
#block-pr > div:nth-child(3) .program-desc {
    border-left: 2px solid #e668b1;
}
#block-pr > div:nth-child(4) .program-desc {
    border-left: 2px solid #2cd97c;
}
.program-desc p {
    margin: 0;
}
.program-price {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.program-price strong {
    font-weight: 800;
    font-size: 29px;
    margin: 0 2%;
    line-height: 30px;
    color: #0079F8;
}
.program-price a {
    width: 70%;
    margin: 20px 0 0;
}
.program-image {
    position: relative;
    text-align: center;
}
.alert {
    background: #D59190 url(/assets/images/icon_22.png) no-repeat 2% center;
    padding: 0.2rem 1.25rem 0.2rem 3rem;
    margin: 0 auto 40px;
    color: #fff;
}
.library {
    position: relative;
    color: #00355C;
    font-weight: 600;
}
.dotted {
    border: 1px dotted #B2B3B3;
    margin-bottom: 1.8rem;
}
/* Breadcrumbs */
#breadcrumbs {
    margin: 0 auto 40px;
}
#breadcrumbs ul {
    /*width: 60%;*/
    margin: 0 auto;
}
#breadcrumbs ul li {
    font-size: 14px;
    margin-bottom: 0;
}
#breadcrumbs ul li a {
    position: relative;
    padding: 0 20px;
}
#breadcrumbs ul li a:after {
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f105";
    position: absolute;
    right: 0;
    top: 17%;
}
#breadcrumbs ul li:first-child a:before {
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f015";
    position: absolute;
    left: 0;
    top: 17%;
}
#breadcrumbs ul li span {
    padding: 0 15px;
    display: block;
}

/* SITEMAP */
#sitemap {

}
#sitemap a {
    display: block;
}
#sitemap > ul {
    display: grid;
    /*grid-template-columns: 25% 25% 25% 25%;*/
    grid-template-columns: 50% 50%;
    margin: 0;
    padding: 0;
    list-style: none;
}
#sitemap > ul > li {
    margin: 10px;
    padding: 10px;
}
#sitemap > ul > li > a {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    padding: 0 0 20px;
    position: relative;
    display: initial;
}
#sitemap > ul > li > a:after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: -40px;
    width: 30px;
    height: 22px;
    border-top: 2px dotted #B3B3B3;
    border-right: 2px dotted #B3B3B3;
}
.childcategory {
    list-style: none;
    margin: 0;
    padding: 0;
}
.childcategory > li {

}
.childcategory > li > a {
    font-weight: 600;
    margin: 20px 0 0 15px;
    padding: 0 0 0 20px;
    position: relative;
    color: #00355C;
}
.childcategory > li > a:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #B3B3B3;
}
/*.childcategory > li > a:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 30%;*/
/*    width: 1px;*/
/*    height: 20px;*/
/*    border-right: 2px dotted #B3B3B3;*/
/*}*/
.childurl {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}
.childurl2 {
    font-size: 0.9em;
    list-style: none;
    padding: 0;
    margin: 20px 0 20px 0;
}
.childurl li {

}
.childurl li a {
    margin: 0 0 0 20px;
    padding: 0 0 0 20px;
    position: relative;
}
.childcategory > li .childurl li a {
    margin: 0 0 0 50px;
    padding: 0 0 0 20px;
    position: relative;
}
.childcategory > li .childurl li .childurl2 li a {
    margin: 0 0 0 80px;
    padding: 0 0 0 25px;
    position: relative;
}
.childurl li a:before, .childurl li a:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #B3B3B3;
}
/* FOOTER */
footer {
	width: 100%;
	float: left;
	background: #08254F;
	color: #fff;
    -webkit-box-shadow: 0px 0px 50px 5px rgba(0,0,0,0.7);
    box-shadow: 0px 0px 50px 5px rgba(0,0,0,0.7);
}
footer > div {
	width: 70%;
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    justify-items: center;
}
footer > div > div:nth-child(2) {
	margin: 3% 5% 0 35%;
}
footer > div > div:last-child {
	margin: 3% 0 0 0;
}
#logo-footer a {
	display: flex;
    align-items: flex-start;
    color: #fff;
}
#logo-footer img {
    width: 74px;
    margin: 0 8px 0 0;
}
#logo-footer span {
    line-height: normal;
    font-size: 12px;
    color: #fff;
}
#telfooter {
    margin: 27px 0 0;
}
#telfooter a {
    font-weight: 900;
    font-size: 34px;
    color: #ccc;
}
#email {
	font-size: 19px;
	color: #ccc;
}
#site-info {
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 12px;
    margin: 2.5% auto;
}
footer > div ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
footer > div ul li {
	position: relative;
    padding: 0 0 10px 25px;
}
footer > div ul li:before {
	content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 10px;
    height: 10px;
    background: #ccc;
}
footer > div ul li a {
	color: #fff;
}
footer > div ul li a:hover {
	color: #0079F8;
}
footer > div h5 {
	color: #0079F8;
    margin: 0 0 1.5rem;
    font-size: 16px;
    position: relative;
}
footer > div h5:before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50%;
    height: 1px;
    border-bottom: 2px dotted #ccc;
}
p {
    line-height: 1.25;
    text-align: justify;
}
a {
    line-height: 1.25;
}
.img-article {
    float: right;
    width: 300px;
    padding: 0 0 30px 30px;
}
.article h3 {
    font-size: 1.7rem;
    color: #716f6f;
    font-weight: 700!important;
    margin-bottom: 2rem!important;
/*    text-align: center!important;*/
}
.article li {
    line-height: 1.25;
    margin-bottom: 0.8em;
}
.bg-light-grey {
    background-color: #ebebeb;
}
.border-2 {
    border: 2px solid #dee2e6!important;
}
table {
    border-collapse: collapse;
    border: 1px solid #ccc;
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    vertical-align: top;
    line-height: 1.25;
}
#error-page {
    padding: 60px 0;
    text-align: center;
}
#error-page img {
    animation: error404 2s infinite alternate;
}
@keyframes error404 {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.ellipsis {
    position: relative;
}
.ellipsis:before {
    content: '&nbsp;';
    visibility: hidden;
}
.ellipsis span {
    font-size: 18px !important;
    color: #0079F8 !important;
    font-weight: 500;
    line-height: 0.8em;
    position: absolute;
    left: 0;
    right: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#text-index .ellipsis span {
    position: initial;
    display: block;
    margin: 0 !important;
    white-space: normal;
    line-height: normal;
}
#text-index .ellipsis:before {
    display: none;
}
.button_cabinet {
    /*width: 350px;*/
    background:#CD1000;
    color:#fff;
    padding:10px 0;
    cursor:pointer;
    border:2px solid transparent;
}
.button_cabinet:hover {
    background:transparent;
    color:#CD1000;
    border:2px solid #CD1000;
}
.button_instruction {
    background:#0051A3;
    z-index:100;
    color: #fff;
    padding:10px 0;
    cursor:pointer;
    border:2px solid transparent;
}
.button_instruction:hover {
    background:transparent;
    color:#0051A3;
    border:2px solid #0051A3;

}




@media screen and (max-width: 667px) and (min-width: 320px) {
    .img-article {
        display: block;
        width: 100%;
        padding: 0  20px 20px 20px;
    }
    .article h2 {
		font-size: 20px;
	}
    .article h3 {
        font-size: 18px;
    }
	header {
		height: auto;
	    margin: 0;
	    padding: 15px;
        flex-direction: column;
	}
	header > div:first-child {
	    width: 100%;
	    flex-direction: column;
	}
	#logo {
		width: 100%;
	}
	#logo a {
	    display: flex;
	    height: 90px;
	    align-items: center;
	}
	#logo img {
	    height: 70%;
	}
	#logo .h001 {
	    font-size: .55rem;
	    padding: 3%;
	    width: 54%;
	    margin: 0;
	    line-height: normal;
	}
	#logo:before {
	    right: 13%;
	    top: 14px;
	    width: 31px;
	    height: 60px;
	    background-size: 90%;
	}
	#menu-toggle {
	    border: 0;
	    position: absolute;
	    top: 35px;
	    right: 10px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    height: 30px;
	    -webkit-border-radius: 5px;
	    -moz-border-radius: 5px;
	    border-radius: 5px;
	    background: transparent;
	}
	header #menu {
	    width: 100%;
	    position: absolute;
	    z-index: 1;
	    top: 100px;
	    left: -100%;
	    transition: left 1s;
	    padding: 0;
	}
	header #menu.active {
		left: 0;
	}
	header #menu ul {
	    display: flex;
	    flex-direction: column;
	    background: #186299;
        padding: 10px;
	}
	header #menu ul li {
	    margin: 2%;
	    padding: 0 0 2px;
	    border-bottom: 2px dotted #ccc;
        max-height: initial;
	}
	header #menu ul li a {
		color: #fff;
		font-size: 4.5vw;
	}
	header #menu ul li > a:before {
		display: none;
	}
    header #menu li .menu-child {
        display: block;
        width: 100% !important;
        background: transparent !important;
        position: inherit !important;
        float: left;
        margin: 10px 0;
        border-left: 3px solid #2fb5eb;
    }
    header #menu .menu-child li, header #menu .menu-child li a {
        border: none;
    }
	header > div:last-child {
	    display: none;
	}
	header #tel {
	    font-size: 8vw;
	}
    #breadcrumbs ul {
        width: 95%;
    }
	.home .more:before, .home .more:after {
		display: none;
	}
	#slider {
		height: auto;
	}
	#slider #colslide div {
		height: auto;
	    margin: 5%;
	}
	#slider #colslide div:first-child {
		display: none;
	}
	#slider #colslide div:nth-child(2), #slider #colslide div:last-child {
	    font-size: 16px;
	    margin: 5%;
	    padding: 0 12% 0 0;
	}
	#slider #colslide div:last-child {
		margin: 5% 5% 15%;
	}
	#slider #colslide {
		display: flex;
		flex-direction: column;
		background: #0a3859;
	}
	#menu-slide > div {
	    width: 90%;
	    margin: -30px auto 0;
	    height: auto;
	    position: relative;
	}
	#menu-slide ul {
		display: flex;
		flex-direction: column;
	}
	#menu-slide ul li:first-child a:hover, #menu-slide ul li:last-child a:hover {
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}
	#menu-slide ul li a img {
	    margin: 5%;
	}
	#menu-slide ul li a {
		padding: 3%;
	}
	#menu-slide ul li a:before {
		display: none;
	}
	#text-index > div {
	    width: 90%;
        margin: 0 auto 50px;
	}
	#text-index ul {
		display: block;
	}
	#text-index ul li {
	    font-size: 16px;
	}
	#text-index ul li span {
	    font-size: 10px;
	}
    .block-inform a.all-url {
        height: 50px;
    }
	#activities > div {
		padding: 0;
	    width: 90%;
	    display: flex;
	    flex-direction: column;
	}
	#activities > div > a {
		margin: 25px 0;
	}
	#activities > div > a:nth-child(2), #activities > div > a:last-child {
	    height: auto;
	}
	#activities h2 {
	    font-size: 2rem;
	    text-align: center;
	}
	#officially {
    	flex-direction: column;
    	margin: 0 0 30px;
	}
	#officially > div {
		width: 100%;
		margin: 0 0 30px;
	}
    #news.threeblocks {
        display: block;
    }
    .block-inform #news > div a {
        display: block;
    }
    .block-inform h2 {
        font-size: 36px;
    }
	#officially > a {
	    position: relative;
	    margin: 0 auto;
	}
	#advantages > div > div {
		display: flex;
		flex-direction: column;
	}
	#advantages > div > div > div {
		width: 100%;
	}
	#text-bottom {
	    display: flex;
	    flex-direction: column;
	}
	#text-bottom > div:first-child, #text-bottom > div:last-child {
		width: 100%;
	}
	#text-bottom > div:first-child {
		text-align: center;
	}
	#text-bottom > div:last-child {
	    width: 100%;
	    margin: 0 0 0 2.8%;
	    padding: 0 0 0 2.8%;
	}
	#text-bottom > div:first-child img {
	    margin: 0 auto 5%;
    	float: none;
	}
	#statute > div {
	    width: 85%;
	}
	#text-bottom > div p {
		padding: 0 5% 0 8%;
	}
	#partners {
		margin: 0 0 50px;
	}
	#partners > div {
	    width: 90%;
	    margin: 50px auto 0;
	}
	#partners > div ul {
		display: flex;
		flex-direction: column;
	}
    #cons_block_users {
        flex-direction: column;
    }
    #cons_block_users > div {
        width: 100%;
        margin: 0 0 20px;
    }
    .list_const {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    #block_form_const ul {
        grid-template-columns: 45% 45%;
        justify-content: space-between;
    }
    #block_form_const ul li a {
        display: block;
        font-size: 13px;
    }
    #block_form_const > div {
        display: flex;
        flex-direction: column;
    }
    #block_form_const > div button {
        margin: 0 0 20px;
    }
    .quest_block h4 {
        flex-direction: column;
    }
    .quest_block .news__attribute {
        position: initial;
    }
    .quest_block .news__attribute i {
        margin: 0 10px 0 0;
    }
    .quest_block .news__attribute small {
        font-size: 60%;
    }
    .quest_block .news__attribute a {
        font-size: 60%;
    }
    .quest_block {
        margin: 0 0 30px;
    }
    .quest_block p {
        margin: 0 0 0 10px;
    }
    #programs .block-img {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #programs .block-img > div {
        line-height: normal;
    }
    #programs .block-img > div {
        width: 45%;
    }
    #block-pr > div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    #block-pr > div:nth-child(1):before, #block-pr > div:nth-child(2):before, #block-pr > div:nth-child(3):before, #block-pr > div:nth-child(4):before {
        background-size: 25%;
    }
    .program-name {
        margin: 0 0 35px;
    }
    .program-image img {
        margin: 20px 0 0;
    }
    #contact_block_grid {
        display: flex;
        flex-direction: column;
        margin: 70px 0 0;
    }
    #contact_block_grid > div {
        margin: 0 0 50px;
    }
    #contact_block_user {
        grid-template-columns: 100%;
    }
    #registration > div p {
        text-align: left;
    }
    #reg_block_three p:before {
        width: 80%;
    }
    #reg_block_three ul li {
        margin: 0 0 0.8em;
    }
    .list-answers {
        padding: 0;
        margin: 0;
    }
    .list-answers a.link-list:before {
        width: 165%;
    }
    #error-page img {
        width: 100%;
    }
    #sitemap > ul {
        display: block;
    }
	footer > div {
	    width: 90%;
    	margin: 40px auto 0;
    	display: flex;
        flex-direction: column;
	}
	#logo-footer a {
		justify-content: center;
		align-items: center;
	}
	#email {
	    text-align: center;
	}
	footer > div > div:nth-child(2), footer > div > div:last-child {
	    margin: 10% 5%;
	}
	#site-info {
		padding: 5%;
	}


    .price-table {
        border: 0;
    }
    .price-table tbody {
        border: 0;
    }
    .price-table tr {
        display: flex;
        flex-direction: column;
        background: #f2f5f8;
        border: 1px solid #ccc;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
        margin-bottom: 20px;
        -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 22%);
        box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 22%);
    }
    .price-table tr td {
        border: 0;
    }
    .price-table h5 {
        margin: 0 0 15px 0;
        padding: 0 0 10px;
        border-bottom: 3px dotted #0079f8;
        font-size: 15px;
        text-shadow: 0 0px 5px #8cb1f7, 0 5px 20px #2847e833;
        text-align: center;
        color: #6a6af4;
        position: relative;
    }
    .price-table tr td:first-child ul {
        margin-bottom: 0;
    }
    .price-table tr td:last-child span {
        background: #d7e1eb;
        -webkit-border-bottom-right-radius: 15px;
        -webkit-border-bottom-left-radius: 15px;
        -moz-border-radius-bottomright: 15px;
        -moz-border-radius-bottomleft: 15px;
        border-bottom-right-radius: 15px;
        border-bottom-left-radius: 15px;
        border-top: 3px dotted #0079f8;
    }
    .price-table tr td:first-child strong {
        padding: 5px 0 5px 20%;
        margin: 0;
        background: url(./assets/images/quotes.png) no-repeat 7% 0%;
    }
    .seminar > div, .program-zab > div {
        width: 100%;
    }
    .program-zab > div > div a:last-child {
        padding: 0 10px;
    }
    .seminar > div:hover > div, .program-zab > div:hover > div {
        zoom: 100%;
        width: 105%;
    }
}