@font-face {
font-family: "Beast_vs_SpreadTall"; 
src: url("./fonts/Beast_vs_SpreadTall.ttf") format("truetype"); 
font-style: normal; 
font-weight: normal; 
} 
@font-face {
font-family: "Montserrat"; 
src: url("./fonts/Montserrat-VariableFont_wght.ttf") format("truetype"); 
font-style: normal; 
font-weight: normal; 
} 

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 16px;
    font-family: var(--font-family);
    overflow-x: hidden;	
}
body {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    background-color: #ffffff;
    margin: 0;
    font-family: var(--font-family);
	overflow: hidden;
    line-height: normal;
    color: var( --black);
}
body.compensate-for-scrollbar {
    margin-right: 0 !important;
}
* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
header *,
.main *,
footer * {
	-webkit-transition: 0.1s all;
	-o-transition: 0.1s all;
	transition: 0.1s all;
}
textarea {
	font-size: 1em;
    font-family: var(--font-family);
}
/*h3
h1, h2 {
    font-size: 2.25em;
	font-weight: 600;
	padding-bottom: 40px;
	line-height: 1.5;
}
 {
	font-family: Roboto;
	text-align: center;
	font-weight: bold;
	font-size: 1.875em;
	line-height: 1.5;
	color: #343434;
	padding-bottom: 40px;
}

h6 {   
    font-size: 1.25em;	
	padding-bottom: 25px;
}
p {
	font-size: 1em;	
	line-height: 1.5;
}

a {
    cursor: pointer;
	color: #000000;
	border-bottom-color: transparent;
	-moz-text-decoration: none;
}
a:hover,
a:focus,
a:active {
	color: #000000;
}
a:-webkit-any-link:focus {
    outline-offset: none;	
}
a:link {
	text-decoration: none;
}
a:focus {
    outline: 0;
}*/
a:focus,
input:focus,
button:focus,
span.menu-arrow:focus
 {
    outline: 2px solid #040404;
}
p > a {
    text-decoration: underline;
    line-height: 1.65em;
}
b, strong {
    font-weight: bold;
}
i {
	font-style: italic;
}
ol {
	list-style-type: decimal;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    -webkit-padding-start: 40px;
            padding-inline-start: 40px;
}
img {
   /* max-width: 100%;*/
	vertical-align: middle;
}
small {
	font-size: 0.875em;
}
dl {
    line-height: 1.875em;
}
table[border="0"] tr td {
	border: none !important;
}
.main-overlay {
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #84848460;
    z-index: 5;
}

.blind {
  background: var(--primary-light);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 10px;
  
}
.blind div{
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}

.active-menu .main-overlay {
	display: block;
}
.wrap {
	width: 100%;
	padding-left: 40px;
	padding-right: 40px;
	margin: 0 auto;
}
.wrap-sm {
	width: 100%;
	padding-left: 60px;
	padding-right: 60px;
	margin: 0 auto;
}

.wrap-sm-no-padding {
	width: 100%;
	margin: 0 auto;
	padding-top: 20px;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.flex-center {
	margin: 0 auto;
	 display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.galery-box a {
    width: 360px;
   margin-right: 30px;
}
.block-center {
	margin: 0 auto;
}
.width-100 {
	width: 100%;
}

.width-100 a{
	color: var(--primary);
}

.column-40 {
	-webkit-box-flex: 2;
	    -ms-flex: 2;
	        flex: 2;
}
.column-50 {
	width: 50%;
}
.column-60 {
	-webkit-box-flex: 3;
	    -ms-flex: 3;
	        flex: 3;
}
.flex-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.flex-start {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.flex-left {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.flex-base {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
}
.flex-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.flex-around {
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}
.flex-wrap {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

header {
	background: var(--primary);
	color: var(--white);
    -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
            box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}
.active-menu header {
    position: relative;
    z-index: 10;
}
.logo- {
    max-width: 100px;
    /* padding: 0px 0px 1px 0px; */
    margin-right: 15px;
    height: auto;
}
.footer-logo-line .logo {
	max-width: 75px;

}
.logo- img{
	width: 100%;
}
.name {
    font-family: 'Beast_vs_SpreadTall';
    font-style: normal;
    /* font-weight: bold; */
    font-size: 2em;
    letter-spacing: 0.05em;
    /* text-transform: uppercase; */
    color: #fff;
    line-height: 1.3;
    text-align: center;
}

.name-up {
    font-family: 'TimesNewRomanPSMT';
    /* font-style: normal; */
    font-size: 0.5em;
    letter-spacing: 0.05em;
    font-style: italic;
}
.phone, 
.email {
	font-weight: bold;
}
.appointment {
    color: #50C0CC;
    border: 2px solid #50C0CC;
    padding: 12.5px 25px;
    border-radius: 10px;
}
.appointment:hover {
    background: #50C0CC;
    color: #fff;
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}
.hotline {
    color: #67c3b3;
    border: 2px solid #67c3b3;
    padding: 12.5px 25px;
    border-radius: 10px;
}
.hotline:hover {
	background: #67c3b3;
    color: #fff;
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}

.flex-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 10px;
}


.hotline-new {
    color: #37abb0;
    border: 2px solid #37abb0;
    padding: 6.5px 45px;
    border-radius: 10px;
    background: #fff;
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: 8px;
    box-shadow: 2px 2px 1px 0px #817f7f;
}
.hotline-new:hover {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}

.header-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.soc-icon-header {
	width: 30px;
}
.soc-icon-header:hover {
    background: #fff;
    border-radius: 50%;
    -webkit-transform: scale(1.15);
	    -ms-transform: scale(1.15);
	        transform: scale(1.15);
}

.slider-gosuslug {
	padding-right: 20px;
}

.header-btns a {
	margin: 0 10px;
	line-height: 1;
}

.header-btns a:last-child {
	margin-right: 0;
}

.header-contacts {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 10px;
   /* margin-top: 15px;*/
}
.header-contacts i {
    color: #4dc0cc;
    margin: 0 5px 0 19px;
    line-height: 1;
}

.header-contact  {
    font-weight: 600;
    font-size: 1.1em;
}


hr {    
    display: block;
    unicode-bidi: unset;
    -webkit-margin-before: 0;
            margin-block-start: 0;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    -webkit-margin-start: unset;
            margin-inline-start: unset;
    -webkit-margin-end: unset;
            margin-inline-end: unset;
    overflow: hidden;
    border-style: solid;
    border-width: 0;
	border-bottom: 1px solid #D7D7D7;
}
.flex-stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}
.flex-end{
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

nav ul,
nav > ul > div {    
	display: -webkit-box;    
	display: -ms-flexbox;    
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
nav ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	position: relative;
}
nav ul li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	padding: 15px;
	font-size: 0.75em;
	letter-spacing: 0.05em;
	color: var(--white);
	
}
.menu a {
	text-transform: uppercase;
	white-space: nowrap;
}
.child-menu {
    display: none;
}
.child-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0px 0px 5px 5px;
    z-index: 1;
}
.child-menu li {
	width: 100%;
}
.child-menu li a {
	text-transform: none;
	padding: 10px 20px;
    min-width: 200px;
	width: 100%;
	position: relative;
	color: #000;
}

.child-menu li:hover {
	background: var(--primary);
}

.child-menu li a.parent::after {
    content: "";
    display: block;
    position: absolute;
    background: url(./images/menu-arrow.png) 100% no-repeat;
    width: 20px;
    height: 20px;
    right: 10px;
}
.child-menu li:hover > a {	
	color: var(--white);
}
.child-menu li:hover > a.parent::after {	
	background: url(./images/menu-arrow_active.png) 100% no-repeat;
}
nav.with-search {
    position: relative;
    z-index: 5;
}
nav.menu li:hover a,
.child-menu li:hover a {
	text-decoration: none;
}
nav.menu > ul > li:hover {
	/*
	border-top: 2px solid var(--white);
	margin-top: -2px;
	*/
}



nav.menu > ul > li:hover > a{
	color: var(--black);
}
nav.menu > ul > li > .active {
    background: var(--primary);
    color: var(--white);
}
li:hover .child-menu {
    display: block;
}
li:hover .child-menu .child-menu {
	display: none;
}
.child-menu li:hover .child-menu {
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
}
.search-btn img {
	width: 19px;
    height: 16px;
    max-width: unset;
    cursor: pointer;
}
.search-line {
    display: none;
    position: absolute;
    width: 0;
    z-index: 0;
    padding: 15px 0;
    top: -10px;
    left: -3px;
    -webkit-transition: width 200ms linear;
    -o-transition: width 200ms linear;
    transition: width 200ms linear;
}
.search-line input[type="text"] {
	width: 100%;
}
.active-search .search-line {
    display: block !important;  
	z-index: 10;
}
.active-search .subheader-line{
	z-index: 0;
}
.active-search .search-btn img {
    display: none;
}
.active-search .search-btn:after {
    content: "\2573";
	font-weight: bold;
	color: var(--white);
	cursor: pointer;	
}
a.search-btn:hover {
    text-decoration: none !important;
}
.subheader-menu {
    position: relative;
}

.active-menu .subheader-menu .menu {
    display: block;
	z-index: 20;
}
.active-menu .menu .child-menu ul {
	width: 100%;
    text-transform: none !important;
    border-bottom: 1px solid #85E1D2;
    border-top: 1px solid #85E1D2;
}

.active-menu .menu ul .child-menu a {
	text-transform: none;
}
.active-menu .menu ul li {
    border-bottom: 1px solid var(--black);
}
.active-menu .menu ul li {
	border-bottom: 1px solid var(--black);
}
.active-menu .menu a {
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    width: 100%;
    text-align: center;
}
.active-menu .menu .search-btn {
	display: none;
}
.active-menu .btn-menu span {
    display: none;
}
.active-menu .btn-menu:after {
    content: "\2715";
    color: var(--white);
    font-size: 1.875em;
}
.blind img {
    width: 40px;
    padding-right: 15px;
}
.blind {
	padding-right: 0;
}
.menu ul > li.mainpage > a {
	padding-left: 0;
}
.sitemap {
    background: var(--white);
    border-radius: 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sitemap:hover {
    transform: scale(1.05);
    transition: all 0.4s;
}
.slider {
   /* padding-top: 25px;*/
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    /* align-items: center; */
    /* background: url(/images/slider_29_2.jpg) 0% 80% no-repeat; */
    /* background-size: cover; */
    /* -webkit-box-shadow: 0px 4px 4px rgb(0 57 63 / 28%); */
    /* box-shadow: 0px 4px 4px rgb(0 57 63 / 28%); */
    /* color: #FFFFFF; */
    /* text-shadow: 1px 1px 0px #2c2d2e, 4px 2px 3px #040404; */
}

.frosted_glass {
    backdrop-filter: blur(4px);
    padding: 15px 15px 6px 15px;
    border-radius: 15px;
    background: #0000002b;
    width: fit-content;
}

.frosted_glass:last-child {
	margin-top: 20px;
}

/*
.white-text > *,
.white-text a {
	color: var(--primary);
}
.main h1 {
	font-weight: bold;
	color: #343434;
    font-size: 1.875em;
    padding-bottom: 40px;
}
*/
section.department {
    /* background: #EEF4F8; */
    position: relative;
    height: auto;
}

section.department::after {
    /* background: #EEF4F8; */
    background-attachment: fixed !important;
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover !important; 
    background: url(/local/templates/semashko/images/about1.png);*/
    -webkit-box-shadow: inset 5px 0px 4px rgba(0, 0, 0, 0.1);
    box-shadow: inset 5px 0px 4px rgba(0, 0, 0, 0.1);
    filter: hue-rotate(323deg);
    content: "";
  	opacity: 0.2;
  	top: 0;
  	left: 0;
  	bottom: 0;
  	right: 0;
  	position: absolute;
  	z-index: -1;   
}

.row {
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	width: 100%;
}
.row > *{
	-webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
	        box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
	background: #fff;
	color: #50C0CC;
	padding: 15px 40px;
	font-weight: bold;
	width: 22.5%;
    text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.row-tabs{
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
}
.row-tabs > * {
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: auto;
	cursor: pointer;
}
.row-tabs .active {
    color: #00849F;
    background: transparent;
}
.stat-block {
    display: block;
	font-weight: normal;
	-webkit-box-shadow: none !important;
	        box-shadow: none !important;
    padding: 0;
    width: 33.3333%;
	color: #404040;
}
.stat-block_text {
	color: #404040;
}
.stat-block_number {
	font-size: 1.875em;
	color: #50C0CC;
	font-weight: bold;
	padding-bottom: 10px;
}
.img-after {
	position: relative;
}
.img-after::after {
	content:"";
    width: 75px;
    height: 75px;
	background: url(./images/butterflyes.png) 50% 50% no-repeat;
	position: absolute;
	top: -25px;
	left: 25px;
}
.services {
    margin-top: 40px;
  /*  -webkit-box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.1);
   */
}
.services-item {
    display: grid;
    grid-template-columns: repeat( auto-fill, 310px );
    grid-template-rows: 100px;
    gap: 20px;
    grid-auto-flow: dense;
}

.services a {
    color: var(--white);
    /* border-radius: 25px 5px; */
    padding: 30px 20px;
    box-shadow: 1px 1px 3px 0px rgb(0 0 0 / 42%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.services a:nth-child(odd) {
    background: var(--blue-light);
    color: var(--black);
}
.services a:nth-child(even) {
	background: var(--primary);
}
.specialists {
	-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
	        box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}


.specialist {
    display: block;
    font-weight: normal;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    width: 33.3333%;
    color: #404040;
    margin: 0;
    text-align: center;
}

.specialist_name {
    font-weight: bold;
	padding: 0 35px;
    line-height: 1.5em;
	display: block;
}
.specialist_position {
	padding: 0 35px 10px;
    line-height: 1.5em;
    font-size: 0.875em;
    min-height: 80px;
}
.specialist_photo {
    -webkit-box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
    background: #fff;
    height: 224px;
    width: 166px;
    margin: 10px auto;
    border-radius: 5px;
}
.specialist img {
    display: block;
    height: 224px;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
}
.specialists .slick-slider .slick-dots {
    position: static;
}
.specialists .slick-dotted.slick-slider {
    margin-bottom: 0;
}
.padding-20 {
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
}

.padding-20-h {
	padding-left: 20px;
	padding-right: 20px;
}
.padding-30-h {
	padding-left: 30px;
	padding-right: 30px;
}
.padding-40-h {
	padding-left: 40px;
	padding-right: 40px;
}

.padding-10-v {
	padding-top: 10px;
	padding-bottom: 10px;
}
.padding-20-v {
	padding-top: 20px;
	padding-bottom: 20px;
}
.padding-40-v {
	padding-top: 40px;
	padding-bottom: 40px;
}
.padding-60-v {
	padding-top: 60px;
	padding-bottom: 60px;
}

.padding-10-t {
	padding-top: 10px;
}
.padding-15-t {
	padding-top: 15px;
}
.padding-20-t{
	padding-top: 20px;
}
.padding-40-t {
	padding-top: 40px;
}

.padding-10-b {
	padding-bottom: 10px;
}
.padding-20-b{
	padding-bottom: 20px;
}
.padding-40-b {
	padding-bottom: 40px;
}
.padding-60-b {
	padding-bottom: 60px;
}

.padding-40-r {
	padding-right: 40px;
}
.padding-40-l {
	padding-left: 40px;
}

.padding-15-40 {
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 40px;
	padding-right: 40px;	
}
.margin-40-b {
	margin-bottom: 40px;
}
.license {
    position: relative;
    overflow: hidden;
}
.license::after {
    content: "";
    opacity: 0.2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    overflow: hidden;
    background-color: #898989;
    background: url(/local/templates/ib9/./images/license_bgr.jpg) 50% 50% no-repeat;
    background-size: 100%;
    background-size: cover;
    background-attachment: fixed;
}

.license .license_item {
	-webkit-box-shadow: none;
	        box-shadow: none;
	background: transparent;
	color: #50C0CC;
	padding: 0;
    text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;    
}
.license .license_item img {
	max-height: 300px;
}

.license_item-link img {
	max-width: 100%;
}

.left-text {
	text-align: left;
}
.right-text {
	text-align: right;
}

.dispancer-block {
	position: relative;
	overflow: hidden;
	min-height: 450px;
    background: url(./images/disp.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.theme-background-50{
	background: #50C0CC;
	position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
	z-index: 0;
}
.dispancer-block > *:not(.theme-background-50) {
	position: relative;
	z-index: 1;
}
.dispancer-block button:first-child {
	margin-right: 30px;
}

.info-blocks .row > *{
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: normal;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;	
}
.info-blocks h6 {
	color: #040032;
	padding: 10px 0;
	font-weight: 600;
}
.info-blocks_item {
	border-radius: 5px;
}
.info-blocks_links a {
    display: block;
    line-height: 1.5em;
    color: #50C0CC;
    padding: 7px 0;
}
.btn {
	background: #00849F;
	color: #fff;
	border: 2px solid #00849F;
	font-weight: normal;
	border-radius: 10px;
    padding: 12.5px 30px;
    line-height: 1;
}
button.btn:hover,
button.btn:active,
button.btn:focus,
.btn:hover,
.btn:active,
.btn:focus {
    color: #00849F;
    background: transparent;
}
.white-btn {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
    border-radius: 30px;
	font-weight: normal;
	padding: 12.5px 30px;
	line-height: 1;
}
.white-btn:hover,
.white-btn:active,
.white-btn:focus {
    background: #00849F;
    border-color: #00849F;
}
.show-more {
	line-height: 1.1;
	padding: 12px;
	border: 2px solid #00849F;
    border-radius: 10px;
    color: #00849F;
    display: block;
    margin: 30px auto 20px;
	width: 135px;
	text-align: center;
}
.show-more:hover,
.show-more:active,
.show-more:focus {
    color: #fff;
    background: #00849F;
}
.more-details {
	color: #50C0CC;
	padding: 5px 0 0;
	line-height: 1;
	text-align: right;
    display: block;
}
.more-details:hover,
.more-details:active,
.more-details:focus {
    color: #50C0CC;
}
.school-block {
	position: relative;
	overflow: hidden;
    background: url(./images/school-bkgr.jpg) 50% 50% no-repeat;
    background-size: cover;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}
.school-block .dates-block .dates-block_item {
    width: 22.5%;
}
.school-block .row-tabs .btn {
    margin-right: 30px;
}
.school-block .row-tabs .btn:last-child {
    margin-right: 0;
}
.dates-block_item {
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
	        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
	color: #303030;
	font-weight: normal;
	border-radius: 5px;
	padding: 10px 20px;
	-webkit-box-pack: left;
	    -ms-flex-pack: left;
	        justify-content: left;
}
.dates-block_name {
    width: 100%;
}
.dates-block_date_num {
    font-weight: bold;
    font-size: 1.25em;
}
.dates-block_date_month {
    font-size: 0.875em;
}
.dates-block_date_time {
    font-weight: bold;
	padding-top: 7px;
}
.v-line {
	height: 100%;
    width: 0px;
    background: #303030;
	padding: 35px 0.5px;
	margin: 0 20px;
}
input[type="text"],
input[type="date"],
textarea {
    background: #FFFFFF;
    -webkit-box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.5);
            box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    width: 18.5%;
    border: none;
    text-align: left;
    padding: 10px 30px;
	font-weight: normal;
	line-height: 1;
}

input[type="submit"] {
    width: 18.5%;
    padding: 10px 30px;
}

.news-block .row > *{
	display: block;
	font-weight: normal;
	padding: 0;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.news-block h6 {
	color: #040032;
	padding: 10px 0;
	font-weight: 600;
}
.news-block_list {
	width: 80%;
}
.news-block_item a {
    display: block;
    line-height: 2em;
}
.news-block_list.slick-slider .slick-track, 
.news-block_list.slick-slider .slick-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}
.news-block_list.slick-slider .slick-slide > div {
	height: 100%;
}
.news-block_item {
    color: #000000;
    position: relative;
    padding-bottom: 70px;
	height: 100%;
}
.news-block a.show-more {
    margin: 0;
    text-align: center;
    line-height: 1.1;
	padding: 12px;
    position: absolute;
    left: 0;
    bottom: 10px;
}
.news-block_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 200px;
    overflow: hidden;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.news-block_img img{
	display: block;
    height: auto;
    width: 100%;
    margin-bottom: 10px;
}
.news-block_date {
    position: absolute;
    bottom: 0px;
    right: 0px;
    display: block;
    background: #50C0CC;
    color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
}
.news-block_item.news-block_more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-evenly;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: center;
    height: auto;
    padding: 10px 0;
}
a.show-all {
	color: #fff;
    background: #00849F;
    line-height: 1.1;
	padding: 12px;
    border: 2px solid #00849F;
    border-radius: 10px;    
    display: block;
    width: 135px;
    text-align: center;
}
a.show-all:hover, 
a.show-all:active, 
a.show-all:focus {
    color: #00849F;
    background: #fff;
}

.media-data .row > *{
	font-weight: normal;
	padding: 0;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.media-data h6 {
	color: #040032;
	padding: 10px 0;
}
.media-data_list {
	width: 100%;
}
.media-data_item a {
    display: block;
    line-height: 2em;
}
.media-data_item {
	color: #000000;
}
.media-data_img {
	position: relative;
	width: 100%;
}
.media-data_img img{
	display: block;
    height: 200px;
    width: auto;
    margin: 0 auto;
}
.media-data_title {
    position: absolute;
    bottom: 0px;
    right: 0px;
    display: block;
    background: #50C0CC;
    color: #fff;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
    line-height: 1;
}

.important-dates .dates-block_item {
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	color: #fff;
	font-weight: normal;
	border-radius: 5px;
	padding: 10px 20px;
	-webkit-box-pack: left;
	    -ms-flex-pack: left;
	        justify-content: left;
	background: var(--primary);
	text-decoration: none;
	border: 1px solid var(--primary);
	transition: all 0.4s;
}
.important-dates .dates-block_item:hover {
	color:  var(--primary);
	background: var(--white);
	transition: all 0.4s;
}

.important-dates .dates-block_item:hover .v-line {
    background: var(--primary);
    transition: all 0.4s;
}

.important-dates .v-line {
    background: #fff;
}
.feedback-block {
	position: relative;
	overflow: hidden;
    
}
.feedback-block::after {
	content: "";
	opacity: 0.3;
  	top: 0;
  	left: 0;
  	bottom: 0;
  	right: 0;
  	position: absolute;
  	z-index: -1;   
	overflow: hidden;
    background: url(./images/image_4127700.jpg) 50% 50% no-repeat;
    background-size: 100%;
    background-size: cover;
    background-attachment: fixed;
}
.feedback-block form {
    width: 75%;
}
.feedback-block input[type="text"],
.feedback-block textarea {
    width: 100%;
	margin-bottom: 20px;
	margin-right: 20px;
	text-align: left;
	font-weight: normal;
	background: #FFFFFF;
    -webkit-box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.5);
            box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    border: none;
    padding: 10px 30px;
	line-height: 1;
}
.feedback-block input[type="submit"] {
    width: 46%;
	margin: 20px 0 0;
}
.feedback-block .form-checkbox {
	margin: 15px 0 0;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
}
.anticorrupt-text {
    opacity: 0.8;
    background: #ffffff;
}
.anticorrupt-text strong {
	white-space: nowrap;
}

.news-bg_img, .info-bg-img, .reviews-block {
	position: relative;
}

.reviews-block:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background: url('/local/templates/concept/images/Rectangle 680.png');
    clip-path: polygon(0 30%, 100% 30%, 100% 100%, 0% 100%);
}

.news-bg_img:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background: url('/local/templates/concept/images/Rectangle 679.png');
    clip-path: polygon(0 10%, 100% 10%, 100% 100%, 0% 100%);
}

.info-bg-img:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background: url('/local/templates/concept/images/Rectangle 678.png');
    clip-path: polygon(0 10%, 100% 10%, 100% 100%, 0% 100%);
}


.reviews-block_item {
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	background: #fff;
	position: relative;
	padding: 20px 30px 30px;
	border-radius: 5px;
}
.reviews-block_date {
	background: transparent;
    color: rgba(0, 0, 0, 0.5);
    padding: 0;
    width: auto;
    height: auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-right: 0;
}
.reviews-block_date_num {
	font-size: 1em;
}
.reviews-block_date_month {
	font-size: 0.75em;
}
.reviews-block_text {
	text-align: left;
    padding-top: 20px;
    font-size: 14px;
	line-height: 200%;
	margin-bottom: 48px;
	color: var(--black);
	height: 95px;
    overflow: hidden;
}
.reviews-block_title {
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent;
    color: #000;
    padding: 0;
    font-weight: normal;
    width: auto;
    text-align: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	height: 50px;
}
.reviews-block_title_name {
	font-weight: bold;
    line-height: 1.5;
	background: var(--primary);
	color: #ffffff;
	border-radius: 30px;
	text-align: center;
	position: relative;
	padding: 3px 10px;
    min-width: 150px;
}
.reviews-block_title_name span {
    position: relative;
}
.reviews-block_title_name:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    border: 15px solid transparent;
    border-top: 15px solid var(--primary);;
    border-left: 15px solid var(--primary);;
}
.reviews-block_date_position {
	font-weight: bold;
	font-size: 1em;
	color: #50C0CC;
	padding: 0 20px;
}
.reviews-block_list * {
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}
.reviews-block_list .slick-list {
    overflow: unset;
	z-index: 1;
}
.reviews-block_list .slick-slide {
    opacity: 0;
    z-index: 0;
    position: relative;
}
.reviews-block_list.slick-slider button {
    z-index: 2;
}
.reviews-block_list .slick-slide.slick-active {
    opacity: 1;
}
.reviews-block_item.opened {
	-webkit-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.15);
	        box-shadow: 0 0px 20px rgba(0, 0, 0, 0.15);
	border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.reviews-block_item.opened .reviews-block_header{
    position: relative;
    z-index: 1;
}
.reviews-block_item.opened .reviews-block_text {
    position: absolute;
    background: #fff;
    height: auto;
    z-index: 1;
    width: 100%;
    left: 0;
    padding: 20px 30px 30px;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    -webkit-box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.15);
}
.reviews-block_item span.more-details {
	text-decoration: underline;
	cursor: pointer;
}
.reviews-block_item span.more-details:hover {
	text-decoration: none;
}

.answers-block .answers-block_item {
	width: 49%;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
}
.answers-block .title {
    color: #fff;
    padding: 15px 30px;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border: none;
    line-height: 1.5;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0 0;    
    font-size: 1em;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
	height: 60px;
    background-color: #00849F;
}
.first-accordion-block .title {
    background: #67C3B3;	
}
.first-accordion-block a.show-all {
	background: transparent;
	border-color: #67C3B3;
	color: #67C3B3;
	margin-top: 20px;
}
.first-accordion-block a.show-all:hover,
.first-accordion-block a.show-all:active,
.first-accordion-block a.show-all:focus {
	background: #67C3B3;
	color: #fff;
}
.second-accordion-block .title {
	background: #50C0CC;
}
.second-accordion-block a.show-all {
	background: transparent;
	border-color: #50C0CC;
	color: #50C0CC;
	margin-top: 20px;
}
.second-accordion-block a.show-all:hover,
.second-accordion-block a.show-all:active,
.second-accordion-block a.show-all:focus {
	background: #50C0CC;
	color: #fff;
}
.answers-block .title {
    padding: 15px 60px 15px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
	font-size: 1.125em;
    position: relative;
}

.answers-block .content {
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background: #fff;
    overflow: hidden;
    padding: 0;
	display: none;
}
.answers-block .first-accordion-block .content a {
	color: #67C3B3;
	text-decoration: underline;
}
.answers-block .second-accordion-block .content a {
	color: #50C0CC;
	text-decoration: underline;
}
.answers-block .content a:hover {
	text-decoration: none;
}
.answers-block .title .dropdown {
	background: url(./images/accordion-arrow.png) 100% no-repeat;
    width: 14px;
    height: 9px;
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
    position: absolute;
    right: 30px;
    top: 45%;
}
.answers-block .active .title .dropdown {
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
}
.answers-block .content p {
	padding: 5px 0;
}

.accordion-block_item {
	margin-bottom: 9px;
}
.accordion-block_item.active {
	margin-bottom: 0;
}

.first-accordion-block {
    max-height: 600px;
    overflow: auto;
	direction: rtl;
}
.first-accordion-block .title,
.first-accordion-block .content {
    margin-left: 30px;
	direction: ltr;
}
.first-accordion-block::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
-webkit-box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.3);
        box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.3);
background-color: #fff;
}
.first-accordion-block::-webkit-scrollbar {
width: 10px;
background-color: #F5F5F5;
}
.first-accordion-block::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #67C3B3;
}
.second-accordion-block {
    max-height: 600px;
    overflow: auto;
}
.second-accordion-block .title,
.second-accordion-block .content {
    margin-right: 30px;
}
.second-accordion-block::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	-webkit-box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.3);
	        box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.3);
	background-color: #fff;
}

.second-accordion-block::-webkit-scrollbar {
	width: 10px;
	background-color: #F5F5F5;
}
.second-accordion-block::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #50C0CC;
}

.first-accordion-block {
	scrollbar-color: rgb(103,195,179) rgba(189, 189, 189, 0.5);
  	scrollbar-width: thin;
}
.second-accordion-block {
	scrollbar-color: rgb(80,192,204) rgba(189, 189, 189, 0.5);
  	scrollbar-width: thin;
}

.resourses-block .resourses-block_item {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0px 20px;
    font-weight: bold;
    width: auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.resourses-block .resourses-block_item:hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}
.resourses-block_banners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
}
.resourses-block_banner {
    -webkit-box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
            box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 22.5%;
}
.resourses-block_banner img {
	border-radius: 5px;
}
.resourses-block .resourses-block_item span,
.resourses-block .resourses-block_banner span {
	display: none !important;
}

.footer-block {
    background: #343434;
}

.footer-logo-line p {
	color: #9F9F9F;	
	display: -webkit-box;	
	display: -ms-flexbox;	
	display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
	font-size: 0.875em;
	padding-top: 10px;
}
.footer-logo-line h6 {
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 10px 0;
    font-size: 1.125em;
    font-weight: normal;
}
.footer-logo-line img {
    /*-webkit-filter: grayscale(1);
            filter: grayscale(1);*/
	padding-right: 20px;
}
.footer-menu {
    background: #50C0CC;
	width: 17%;	
}
.footer-menu nav a {
    color: #fff;
    text-transform: uppercase;
    padding: 7px 20px;
    letter-spacing: 0.05em;
    font-size: 0.875em;
}
.footer-menu *:not(img) {
	width: 100%;
}
.footer-menu nav.footer-menu_other a {
	padding: 5px 20px;
	text-transform: none;
}
.footer-logo-line {
	border-bottom: 1px solid #828282;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 30px 10px;
    margin-right: 30px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.footer-contacts {
	width: 48%;
}
.footer-contacts-line {
    padding: 10px 30px 0;
    margin-right: 30px;
}
.footer-contacts-line .row div {
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent;
    color: #fff;
    padding: 0;
    font-weight: normal;
    width: 50%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.footer-contacts-line .row div.footer-contact_item_name {
    padding: 10px 0;
	display: block;
    text-align: left;
	color: #fff;
	width: auto;
}
.footer-contacts-line .row div.footer-contact_item_phone {
	font-weight: normal;
	font-size: 14px;
	line-height: 1.5;
	width: auto;
	font-weight: 300;
}
.footer-contact_item_name h6 {
	padding: 0 0 4px;
	font-size: 1em;
	font-weight: 500;
}
.footer-contact_item_name p {
	font-size: 0.875em;
	font-weight: 300;
}

nav a:hover,
a.phone:hover,
a.email:hover {
    text-decoration: underline;
}
.arrow-left,
.arrow-right {
	width: 15px;
    padding: 0;
	background: url(./images/carousel-arrow.png) 100% no-repeat;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.arrow-left {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.slick-slider .slick-prev { 
	transform: rotate(0deg);
    
}
.slick-slider .slick-next {
	transform: rotate(180deg);
}
.slick-slider .slick-arrow {
    position: absolute;
    top: 10px;
    right: 0;
    /* left: 0; */
    display: block;
    border: 2px solid var(--primary);
    background: var(--white);
    width: 54px;
    height: 54px;
    background-position: right 50% bottom 50%;
    border-radius: 50%;
    background-image: url(/local/templates/concept/./images/arrow-slider.svg);
    background-size: 15px 25px;
    background-repeat: no-repeat;
    transition: all 0.4s;
}
.slick-slider .slick-arrow:hover{
   cursor: pointer;
  background: var(--primary);
  background-image: url(./images/arrow-slider-.svg);
  background-repeat: no-repeat;
  background-position: right 50% bottom 50%;
  background-size: 15px 25px;
  transition: all 0.4s;
}


.slick-slider .slick-prev:before {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}
.slick-slider button {
    color: transparent;
    background-color: transparent;
    border: none;
}
.slick-slider .slick-list {
    margin: 0 60px;
}
.slick-slider .slick-slide {
    margin: 0 20px;
}
.slick-slider .slick-dots li button:before {
    content: "";
    width: 10px;
    height: 10px;
    background: #d5d5d5;
    border-radius: 10px;
	opacity: 1;
}
.slick-slider .slick-dots li.slick-active button:before {
	background: #50C0CC;
}
.slick-slider .slick-dots {
    bottom: -60px;
}

.news-block_list.slick-slider .slick-slide {
	margin-left: 0;
	margin-right: 30px;
}
.news-block_list.slick-slider .slick-list {
    margin: 0 30px 0 0;
}

.reviews-block .slick-list{
	padding: 5px 0;
}

.resourses-block .slick-slide > div {
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.resourses-block .slick-slide img {
    margin: 0 auto;
}
.department a {
    border-radius: 30px;
    padding: 20px 9px;
    box-shadow: 2px 17px 21px 2px;
    background: var(--primary-light);
    color: #ffffff;
    transition: all 0.4s;
    margin-bottom: 20px;
    margin-right: 20px;
    height: 70px;
    border: 1px solid var(--primary);
}
.department a:hover {
	color: #040404;
	transform: translateY(-7px);
	transition: all 0.4s;
	background: var(--primary);
}

.services a:hover {
	-webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.25);
	        box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.25);
	-webkit-transform: scale(1.025);
	    -ms-transform: scale(1.025);
	        transform: scale(1.025);
	       
}

.department a:visited {
	color: #ffffff;
}
.department a:hover,
.department a:active,
.department a:focus
 {
	color: #040404;
}
.info-blocks_links a:hover {
    text-decoration: underline;
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}
/*.copyright {
    font-size: 0.75em;
    color: #cecece;
    padding: 20px 20px 0;
}*/
.title_blue {
	font-weight: normal;
    font-size: 1.25em;
	color: #00849F;
}
#arrowTop {
    position: fixed;
    bottom: 10px;
    right: 15px;
    width: 35px;
    height: 49px;
    z-index: 999;
    cursor: pointer;
    border: 3px solid var(--primary);
    padding: 6px;
    border-radius: 16px;
    background: transparent;
}
#arrowTop i {
    color: var(--primary);
    font-size: 1.9em;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*#arrowTop::after {
    content: "";
    background: url(/local/templates/common/./images/arrowTop.png) 50% 50% no-repeat;
    width: 30px;
    height: 30px;
    display: block;
}
#arrowTop:hover::after {
	content: "";
    background: url(./images/arrowTop-hover.png) 50% 50% no-repeat;
    width: 30px;
    height: 30px;
    display: block;
}
#arrowTop:active::after {
	content: "";
    background: url(./images/arrowTop-active.png) 50% 50% no-repeat;
    width: 30px;
    height: 30px;
    display: block;
}*/
#leftFeedback {
    position: fixed;
    bottom: 15%;
    left: 0;
    width: 51px;
    height: 237px;
    z-index: 999;
    cursor: pointer;
    color: #50c0cc;
    background: url(./images/feedback-btn.png);
    background-size: cover;
    visibility: hidden;
}
#popupFeedback,
#popupPrivatePolicy {
	opacity: 1;
    visibility: visible;
	-webkit-transition: all 0.2s cubic-bezier(0.39, 0.58, 0.57, 1) 300ms;
	-o-transition: all 0.2s cubic-bezier(0.39, 0.58, 0.57, 1) 300ms;
	transition: all 0.2s cubic-bezier(0.39, 0.58, 0.57, 1) 300ms;
}
#popupFeedback[hidden],
#popupPrivatePolicy[hidden] {
	opacity: 0;
    visibility: hidden;
}
#popupFeedback,
#popupPrivatePolicy {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 9999;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.popupOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #84848460;
    z-index: -1;
}
.popupContainer {
    background: #fff;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
	padding: 40px;
    position: relative;
    margin: 30px;
    text-align: center;
	max-width: 480px;
	color: #000000;
}
#popupPrivatePolicy .popupContainer {
    overflow: auto;
    max-height: 500px;
	text-align: left;
	font-size: 0.875em;
}
.popupClose {
    position: absolute;
    top: 15px;
    right: 15px;
	cursor: pointer;
}
.popupContainer form {
    padding-top: 25px;
    text-align: left;
}
.popupContainer form label {    
	color: #808080;
	display: block;
}
.popupContainer form label input,
.popupContainer form label textarea {
	padding: 12px 20px;
    margin: 5px 0 12px;
	display: block;
	width: 100%;
    -webkit-box-shadow: inset 1px 1px 4px #00000080;
            box-shadow: inset 1px 1px 4px #00000080;
    border-radius: 1px;
    border: none;
}
.popupContainer form label input::-webkit-input-placeholder, .popupContainer form label textarea::-webkit-input-placeholder {
  color: #c1c1c1;
}
.popupContainer form label input::-moz-placeholder, .popupContainer form label textarea::-moz-placeholder {
  color: #c1c1c1;
}
.popupContainer form label input:-ms-input-placeholder, .popupContainer form label textarea:-ms-input-placeholder {
  color: #c1c1c1;
}
.popupContainer form label input::-ms-input-placeholder, .popupContainer form label textarea::-ms-input-placeholder {
  color: #c1c1c1;
}
.popupContainer form label input::placeholder,
.popupContainer form label textarea::placeholder {
  color: #c1c1c1;
}
.popupContainer form label span {
	color: #FF0000;
	padding: 0 5px;
}
.form-checkbox {    
    margin: 25px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;	
}
.form-checkbox p {
	color: #818181;
	font-size: 0.875em;
}
.form-checkbox .show-private-policy {
    color: #00849F;
	text-decoration: none;
}
.form-checkbox .show-private-policy:hover {
	text-decoration: underline;
}
.form-custom-checkbox {
    height: 20px;
    width: 20px;
    display: inline-block;
    margin-right: 10px;
    -webkit-box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.18);
            box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.18);
    border-radius: 2px;
	position: relative;
	cursor: pointer;
}
.form-custom-checkbox.checked:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(./images/checked.png) 50% 50% no-repeat;
    width: 20px;
    height: 20px;
}
.popupContainer form .btn{
    margin: 0 auto;
    display: block;
}


.accordion-item  {
    margin: 10px 0;
}
.accordion-item .title {
    background: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border: none;
    line-height: 1.5;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0 0;
    font-size: 1em;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    padding: 15px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.accordion-item .content {
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background: #fff;
    overflow: hidden;
    padding: 0;
    overflow-x: auto;
}
.accordion-item .title .dropdown {
	background: url(./images/accordion-arrow.png) 100% no-repeat;
    width: 14px;
    height: 9px;
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
	margin-right: 10px;
}
.accordion-item.active .title .dropdown {
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
}

/***************Content page****************/
.inner-page {
    min-height: 600px;
}
.inner-page h1 {
    font-size: 1.5em;
    font-weight: 600;
    text-align: center;
    padding: 40px 0;
}
.inner-page h6 {
    font-weight: bold;
    font-size: 1.25em;
    padding: 20px 0 10px;
}
.inner-page h3 {
	text-align: left;
    line-height: 1.2;
	font-size: 1.25em;
    padding: 20px 0 10px;
}
.inner-page p {
    padding: 5px 0;
}
.inner-page a {
   /* color: var(--primary);
    text-decoration: underline;*/
}
.inner-page ul {
    list-style-type: disc;
    -webkit-padding-start: 40px;
            padding-inline-start: 40px;
}
.inner-page li {
    padding: 5px 0;
}
.inner-page table {
    width: 100%;
}
.inner-page table tr td {
    padding: 2px 10px;
    border: 1px solid;
    width: auto;
	vertical-align: top;
}
.inner-page .department {
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
}
.inner-page .department a {
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    background: var(--blue-light);
    color: #000;
    font-weight: normal;
    text-decoration: none;
    padding: 20px 20px;
    display: block;
    margin: 5px;
    text-decoration: none;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.inner-page .department a:hover {
    z-index: 1;
	color: #fff;
    background: var(--primary);
	font-weight: bold;
}
.inner-page .important-dates .dates-block_item {
	margin-bottom: 20px;
}
[hidden] {
	display: none !important;
}
table.map-columns tr td {
    border: none;
}

.active-search .search-line:before {
	content: "";
    background: url(./images/opened-search.png) no-repeat;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: 40%;
    left: 10px;
}
.search-line input[type="text"]::-webkit-input-placeholder, input[type="text"].search-suggest::-webkit-input-placeholder {
  color: #C5C5C4;
}
.search-line input[type="text"]::-moz-placeholder, input[type="text"].search-suggest::-moz-placeholder {
  color: #C5C5C4;
}
.search-line input[type="text"]:-ms-input-placeholder, input[type="text"].search-suggest:-ms-input-placeholder {
  color: #C5C5C4;
}
.search-line input[type="text"]::-ms-input-placeholder, input[type="text"].search-suggest::-ms-input-placeholder {
  color: #C5C5C4;
}
.search-line input[type="text"]::placeholder,
input[type="text"].search-suggest::placeholder {
  color: #C5C5C4;
}
.search-line input[type="text"],
input[type="text"].search-suggest {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #D1D3D4;
    border-radius: 30px;
	padding-left: 40px;
}
.search-page table tr td {
    vertical-align: middle;
}

.row > a.no-item,
a.no-item {
	 -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border: none !important;
	background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.img-left_text {
	margin: 7px 7px 7px 0; 
	float: left;
}


article {  
    -webkit-column-count:2;  
    -moz-column-count:2;  
    column-count: 2;
    text-align: justify;
    column-gap: 30px;
    background: #ececec9c;
    padding: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 10px 13px 8px 1px rgba(34, 60, 80, 0.18);
-moz-box-shadow: 10px 13px 8px 1px rgba(34, 60, 80, 0.18);
box-shadow: 10px 13px 8px 1px rgba(34, 60, 80, 0.18);
}  

.gray {
	 filter: grayscale(1);
}

.social-links {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.social-link {
	max-width: 65px;
}
.social-link i {
	font-size: 2.2em;
}
.social-link:hover i {
	transition: all 0.5s;
	transform: scale(1.2);
	text-decoration: none;
}
.footer-menu .social-link {
	max-width: 75px;
}

.social-link img {
    width: 100%;
    border-radius: 12px;
    transform: scale(1);
    box-shadow: 0 0 5px 5px rgb(34 60 80 / 20%);
    transition: box-shadow 0.5s, transform 0.5s;
   /* background-color: #50c0cc;*/
}

.social-link:hover img{
	transform: scale(1.2);
    box-shadow: 0 0 15px 7px rgba(34, 60, 80, 0.2);
    transition: box-shadow 0.5s, transform 0.5s;
}

.flex-container {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flex-item {
    list-style-type: none;
    width: 367px;
    /* height: 221px; */
    /* margin-top: 10px; */
    line-height: 140px;
    text-align: center;
    margin-bottom: 60px;
}



/********Нумерованный список***********/

.rectangle {
    counter-reset: li; 
    list-style: none; 
    font: 16px ;
    padding: 0;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
    }
    .rectangle a {
    border-radius: 24px 4px;
    position: relative;
    display: block;
    padding: 11px 15px;
    margin: 0px 0px 0px 40px;
    background: #D3D4DA;
    color: #444;
    text-decoration: none;
    transition: all .3s ease-out;
}
    .rectangle a:hover {
    background: #5bc0cc;
    color: #fff;
    }       
    .rectangle a:before {
    border-radius: 16px;
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -2.5em;
    top: 50%;
    color: #444;
    margin-top: -1em;
    background: #5bc0cc;
    height: 2em;
    width: 2em;
    line-height: 2em;
    text-align: center;
    font-weight: bold;
    }
    .rectangle a:after {
    position: absolute;
    content: "";
    border: .5em solid transparent;
    left: -1em;
    top: 50%;
    margin-top: -.5em;
    transition: all .3s ease-out;
    }
    .rectangle a:hover:after {
    left: -.6em;
    border-left-color: #5bc0cc;
    }
    
.useful-info {
    display: flex;
   	padding: 0;
}

.useful-info {
    display: flex;
   	padding: 0;
}
.useful-info-div {
	margin-right: 40px;
}

.useful-info-div:hover {
-webkit-box-shadow: 4px 4px 8px 6px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 4px 4px 8px 6px rgba(34, 60, 80, 0.2);
box-shadow: 4px 4px 8px 6px rgba(34, 60, 80, 0.2);
}
.useful-info-item img {
	object-fit: cover;
}
    

.useful-info .slick-track
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.useful-info .slick-slide {
    float: none;
}

.useful-info-block .slick-dotted.slick-slider {
    margin-bottom: 0;
}
.useful-dots {
	list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1.5em;
}
.useful-dots button {
    color: transparent;
    background: transparent;
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 0;
    border-radius: 10px;
    border: none;
    background: #ECEFF4;
}
.useful-dots .slick-active button {	
    background: #004099;
}
.useful-info-block .slick-slide > div {
    height: auto;
    display: block;
}
.useful-info-block .slick-slide > div > div {
    display: block !important;
    width: 90% !important;
	height: auto;
    max-height: 240px;
    overflow: hidden;
	text-align: center;
    margin: 0 auto;
}
.useful-info-block .slick-slide .with-border-block {
	border: 1px solid #ebebeb;
}
.useful-info-block .slick-slide img {
    display: block;
    text-align: center;
    margin: 0 auto;
}
.useful-info-block .slick-slide.slick-active:first-child > div > div {
	text-align: left !important;
    margin: 0 !important;
}
.useful-info-block .slick-slide.slick-active:last-child > div > div {
	text-align: right !important;
    margin: 0 0 0 100% !important;
}
@media screen and (max-width: 600px) {
	.useful-info {
	    display: block;
	   	padding: 2em 0 0;
	}
}
@media screen and (max-width: 568px) {
.useful-info-div {
    margin-right: 40px;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

}
@media screen and (max-width: 380px) {
	.useful-info-block .slick-slide > div > div {
	    width: 240px !important;
		height: 240px;
	    margin: 0 auto;
	}
	.useful-info-block .slick-slide img {
	    height: 100%;
	    width: auto;
	}
}

/*********Слайдер*************/
.swiper, .swiper-rewievs {
  width: 100%;
  height: auto;
}

.slider-one {
    object-fit: cover;
    width: 100%;
    height: inherit;
    padding: 22px;
    /*background: #50c0cc0d;
     background-attachment: fixed !important; */
    
   
     /*-webkit-box-shadow: inset 5px 0px 4px rgba(0, 0, 0, 0.1); 
     box-shadow: inset 5px 0px 4px rgba(0, 0, 0, 0.1); 
     filter: hue-rotate(323deg); 
     position: absolute; */
}


.slider-one::after {
    /* background: #EEF4F8; */
    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover !important; */
     background-image: url(/images/sleder-1.jpg);
    -webkit-box-shadow: inset 5px 0px 4px rgba(0, 0, 0, 0.1);
    box-shadow: inset 5px 0px 4px rgba(0, 0, 0, 0.1);
   
    content: "";
  	opacity: 0.65;
  	top: 0;
  	left: 0;
  	bottom: 0;
  	right: 0;
  	position: absolute;
  	z-index: -1;   
}

.slider-two, .slider-three{
    object-fit: cover;
    width: 100%;
    height: inherit;
    padding: 22px;
    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-box-shadow: inset 5px 0px 4px rgba(0, 0, 0, 0.1);
    box-shadow: inset 5px 0px 4px rgba(0, 0, 0, 0.1);  
}

.slider-two {
	background-image: url(/images/banner_stom.jpg);
    }
.slider-three { 
     background-image: url(/images/banner_clh.jpg);  
}


.sliderBx {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sliderBx-right {
  width: 300px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sliderBx-right img {
  width: 100%;
}
.slederBx-left h3 {
    text-decoration: underline;
    font-size: 1.8em;
    color: rgb(14 14 14);
}
.content {
	margin-bottom: 40px;
	margin-top: 5px;
}  
.content-one span:nth-child(1) {
    color: #fff;
    background: #50c0cc;
    border-radius: 50%;
    padding: 5px;
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    font-weight: 600;
    text-align: center;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-one p {
  color: darkgray;
  font-size: 1.2em;
}
.content-one span:nth-child(2) {
  font-size: 1.3em;
  color: #ff3547;
  font-weight: 600;
}
.content-one:nth-child(2) span:nth-child(2) {
  font-size: 1em;
  color: rgb(14 14 14);
  font-weight: 400;
}
.content-one {
    margin-left: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.flex-dc {
  display: flex;
  flex-direction: column;
}
.slederBx-left .fa-search {
  font-size: 3.7em;
  color: #ff3547;
  transform: rotate(90deg);
  margin-right: 20px;
}
.flex-center {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.slider-btn {
    display: block;
    background: #50c0cc;
    padding: 15px 20px;
    text-decoration: none;
    color: #fff;
    margin-top: 30px;
    width: 35%;
    border-radius: 8px;
    text-align: center;
    margin: auto;
}
.slider-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.black-text {
	color: #000;
}
/************блок главного врача**************/
.mainDoc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: 1px solid rgb(126, 120, 120); */
    padding: 15px;
    width: 400px;
    margin: auto;
    margin-bottom: 20px;
}
.mainDoc:hover {
  box-shadow: 0 0 5px 5px rgba(0,0,0,0.2); 
}
.mainDoc img {
  
  border-radius: 10px;
  box-shadow: 0 5px 30px 0 rgba(0,0,0,0.2);
}
.ContentBx {
    text-align: center;
    margin-left: 20px;
    line-height: 30px;
    font-size: 1.3em;
    font-weight: 600;
    margin-top: 20px;
    color: #000;
}

.about a {
	color: #4dc0cc;
   font-weight: 600;
}
.slider-link {
    display: block;
    background: #50c0cc4a;
    padding: 20px 10px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 15px;
}

.link-history {
    background-image: url(/images/60547.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    /* background: #ccf4eb; */
    padding: 15px 64px;
    /* border-radius: 4px 24px; */
    color: #fff !important;
    
}

.link-history:hover {
	color: #fff;
	filter: hue-rotate(45deg);
}
.new-card:link {
    margin: 10px 0;
    padding: 8px;
    text-decoration: none;
}

.new-card:hover {
  box-shadow: 0 0 5px 5px rgba(0,0,0,0.2); 
}


/***********Эфектф для ссылок*************/

.link-hover {
    border-radius: 5px;
    padding: 20px 9px;
    box-shadow: 2px 17px 21px 2px;
    background: #50c0cc;
    color: #ffffff;
    transition: all 0.4s;
    margin-bottom: 20px;
    margin-right: 20px;
    height: 70px;
}  

.link-hover:hover {
	color: #040404;
	transform: translateY(-20px);
	transition: all 0.4s;
}

.select-period, .input- {
    background: #FFFFFF;
    box-shadow: inset 1px 1px 4px rgb(0 0 0 / 50%);
    border-radius: 2px;
    width: 30%;
    border: none;
    text-align: left;
    padding: 10px 30px;
    font-weight: normal;
    line-height: 1;
    color: #222;
}

.flex-form  {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}

/* End */ 



/*********************Форма справка налог**************************/


.form-items {
    display: flex;
    align-items: baseline;
    justify-content: space-evenly;
}

 .form-input {
    
    width: 100%;
   
}

.flex-dates {
    gap: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
   /* -ms-flex-wrap: nowrap;*/
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: stretch;
}

/****************Галерея*********************/

.galery-wrapper {
	max-width: 100%;	
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 15px;
	margin: 40px;
	
}
/*
section .galery-wrapper {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 40px 10px;
    text-align: center;
}
*/
/*****Галерея где картинки по размерам блока*******/
section .galery-wrapper {
	max-width: 100%;	
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 15px;
	margin: 40px 10px;
}


section .galery-wrapper a {
    height: 214px;
    overflow: hidden;
}

section .galery-wrapper a img {

    object-fit: cover;
    width: 100%;
    height: 260px;

}

/*********************отделения**********************/

.branch-items {
	position: relative;
	max-width: 100%;	
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 15px;
	margin: 40px;
	
}

.branch-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    background-color: #c5ebec;
    padding: 15px;
    text-align: center;
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 600;
    box-shadow: 5px 5px 10px 2px rgb(0 0 0 / 20%);
    border-radius: 5px;
    transition: all 0.4s;
}

.branch-item:hover {
	background-color: #a3c4c5;
	transition: all 0.4s;
}

section .branch-items {
    position: relative;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 15px;
    margin: 10px;
}
section .branch-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    background-color: #c5ebec;
    padding: 15px;
    text-align: center;
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 600;
    box-shadow: 5px 5px 10px 2px rgb(0 0 0 / 20%);
    border-radius: 5px;
    transition: all 0.4s;
}

/*******************/

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img{
  width: 97px;
  
}

.full-name {
  display: flex;
  flex-direction: column;
  max-width: 273px;
  row-gap: 5px;
}

.full-name span:first-child {
  font-size: 12px;
  line-height: 130%;
}

.full-name span:last-child {
  font-weight: 600;
  font-size: 18px;
  line-height: 129%;
}

.box-center {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.adress {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.adress img{
  width: 20px;
}

.adress span:first-child {
  font-weight: 600;
  font-size: 14px;
  line-height: 200%;
}
.search {
  position: relative;
}

.search input {
  width: 442px;
  height: 44px;
  background: var(--primary-light);
  border: none;
  padding: 0 20px;
  outline: none;
  border-radius: 5px;
}

.search input::placeholder {
  color: var(--white);
  font-family: var(--font-family);
}

.search button {
  position:absolute;
  top: 0;
  right: 13px;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
}

.contacts-items {
    max-width: 340px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 24px;
   /* margin-left: auto;*/
}

.contacts-item {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  line-height: 130%;
}

.contacts-item span{
  font-weight: 600;
}

