:root {
	--blue-color: #29166f;
	--sky-color: #3eb5f1;
	--light-color:#93d7f8;
}
html, body{
	margin: 0;
	padding: 0;
	min-height: 100%;
	font-family: Arial Narrow,Arial,sans-serif; 
}
body,input{
	font-size: 16px;
	-webkit-font-smoothing: subpixel-antialiased !important;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
}
h1,h2,h3,h4{
	margin: 0;
}
p{
	margin-top: 0;
}
ul,menu{
	margin: 0;
	padding: 0;
}
li{
	list-style: none;
}
a{
	outline: none;
	text-decoration: none;
	color: inherit;
}
button{
	outline: none;
	cursor: pointer;
	border: none;
	padding: 0;
}
a img {
	border: none;
}
img{
	max-width: 100%;
}
input{
	-webkit-appearance: none;
	box-shadow: none;
	-webkit-box-shadow: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-webkit-appearance: none;
	outline: none;
	border: none;
}
* {
	outline: none !important;
	word-wrap: break-word;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.clearfix:before,
.clearfix:after {
	content: "";
	display: block;
}
.clearfix:after {
	clear: both;
}
.overflowHid {
	overflow: hidden;
}
.d-flex{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: block;
	display: flex;
	-webkit-flex-flow: row wrap;
}
.s-between{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.btn-line {
	position: relative;
}
.btn-line svg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.btn-line rect {
	fill: none;
	/*stroke: #86bff1;*/
	stroke-width: 2;
	stroke-dasharray: 422, 0;
	transition: all 0.35s linear;
}
.btn-line:hover rect {
	stroke-width: 5;
	stroke-dasharray: 15, 310;
	stroke-dashoffset: 48;
	transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.wrapper{
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding:0 14px;
}
.sticky{
	position: sticky;
	top: 0;
	z-index: 9;
}
.title-line{
	text-align: center;
	display: flex;
	align-items: center;
	font-size: 21px;
	font-weight: 400;
}
.title-line span{
	padding: 0 15px;
	color: var(--blue-color);
	text-transform: uppercase;
}
.title-line:before{
	content: "";
	display: inline-block;
	height: 1px;
	background: #c5c5c5;
	flex-grow: 2;
	flex-shrink: 1;
	flex-basis: 0;
}
.title-line:after{
	content: "";
	display: inline-block;
	height: 1px;
	background: #c5c5c5;
	flex-grow: 2;
	flex-shrink: 1;
	flex-basis: 0;
}
.top-bar{
	background: var(--light-color);
	color: #ffffff;
	border-bottom: 2px solid #fff;
	position: sticky;
	z-index: 10;
	top: -47px;
	transition: all 0.8s;
}
.top-bar.sticky{
	top: 0px;
	transition: all 0.8s;
}
.top-bar .d-flex{
	align-items: center;
}
.top-bar__contacts-list{
	background: var(--sky-color);
	min-height: 45px;
	text-align: center;
	font-size: 15px;
	padding: 0 30px;
}
.top-bar__contacts-list li{
	padding: 4px;
}
.top-bar__contacts-title{
	color: #fff798;
}
.top-bar__btn-popup{
	cursor: pointer;
	padding-left: 11px;
	padding-right: 37px;
}
.top-bar__btn-item{
	width: 20px;
	height: 2px;
	list-style: disc;
	background: #fff;
	margin: 3px 0;
	display: block;
	position: relative;
	transition: all 0.4s;
}
.top-bar__btn-item:nth-child(2){
	width: 16px;
}
.top-bar__btn-item:before{
	content: "";
	display: inline-block;
	width: 4px;
	height: 4px;
	background: #fff;
	position: absolute;
	top: -1px;
	left: -7px;
	border-radius: 50%;
	transition: all 0.4s;
}
.top-bar__btn-popup:hover .top-bar__btn-item,
.top-bar__btn-popup:hover .top-bar__btn-item:before,
.top-bar__btn-popup.active .top-bar__btn-item,
.top-bar__btn-popup.active .top-bar__btn-item:before{
	background-color: #fff798;
}
.top-bar__nav-list{
	max-width: 600px;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.top-bar__lang{
	margin-left: auto;
}
.top-bar__lang-list{
	min-height: 45px;
	background: var(--sky-color);
	padding: 7px;
	cursor: pointer;
	position: relative;
}
.top-bar__lang-list li{
	padding: 5px;
	font-size: 14px;
}
.top-bar__lang-item__dd{
	display: none;
	width: 100%;
	background: var(--sky-color);
	padding: 10px;
	position: absolute;
	left: 0;
	top: 100%;
	text-align: center;
}
.top-bar__lang-item__dd a{
	transition: all 0.4s;	
}
.top-bar__lang-item__dd a:hover{
	color: #fff798;
}
.top-bar__search{
	margin-left: auto;
	transition: all 0.4s;
}
.top-bar__search-form{
	opacity: 0;
	transform: translate(55px);
	transition: all 0.4s;
}
.top-bar__search-form.active{
	opacity: 1;
	padding: 5px 10px;
	transform: translate(0px);
}
.top-bar__search-iput{
	padding: 5px 0;
	width: 0;
	opacity: 0;
	transition: all 0.5s;
}
.top-bar__search-btn{
	font-size: 16px;
	display: none;
	background: var(--sky-color);
	color: #fff;
	font-family: 'Oswald';
	padding: 2px 0px;
	opacity: 0;
	transition: all 0.4s;
}
.top-bar__search-form.active .top-bar__search-iput{
	padding: 5px;
	width: 205px;
	opacity: 1;
}
.top-bar__search-form.active .top-bar__search-btn{
	padding: 2px 10px;
	width: auto;
	opacity: 1;
	display: block;
}
.top-bar__search-btn:hover{
	color: #fff798;
}
.top-bar__show-search{
	width: 52px;
	min-height: 45px;
	background: var(--sky-color);
	position: relative;
	cursor: pointer;
}
.top-bar__show-search:before{
	content: "";
	width: 13px;
	height: 13px;
	border: 2px solid #fff;
	border-radius: 50%;
	display: block;
	position: absolute;
	top: 11px;
	left: 15px;
	transition: all 0.2s;
}
.top-bar__show-search:after{
	content: "";
	width: 10px;
	height: 4px;
	border-radius: 0px 2px 2px 0px;
	display: block;
	position: absolute;
	top: 28px;
	left: 29px;
	transform: rotate(45deg);
	background: #fff;
	transition: all 0.2s;
}
.top-bar__show-search.close-search:before{
	width: 25px;
	height: 4px;
	border-radius: 0;
	border: 0;
	background: #fff;
	transform: rotate(-45deg);
	top: 47%;
	left: 26%;
}

.top-bar__show-search.close-search:after{
	width: 25px;
	height: 4px;
	top: 47%;
	left: 27%;
	border-radius: 0;
}
.header{
	background: #fff;
	padding: 12px;
	border-bottom: 2px solid #fff;
}
.header__logo{
	width: calc(100% - 132px);
}
.header__logo-link{
	align-items: center;
}
.header__logo-link img{
	max-width: 116px;
}
.header__title{
	max-width: 595px;
	font-size: 24px;
	font-weight: 400;
	color: #3b3b3b;
	margin: 0 auto;
	text-align: center;
	text-transform: uppercase;
}
.top-nav__list{
	max-width: 800px;
	width: 100%;
	justify-content: space-around;
	/* padding: 17px 0; */
}
.top-nav__link{
	padding: 5px 10px;
	position: relative;
}
.top-nav__link span{
	font-family: initial;
    font-size: 23px;
    position: absolute;
    top: 1px;
    right: -10px;
}
.top-nav{
	background: var(--blue-color);
	border-bottom: 1px solid #adadad;
	position: sticky;
	top: 0;
	z-index: 9;
	transition: all 0.8s;
}
.top-nav.sticky{
	top: 47px;
}
.top-nav__item{
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	transition: all 0.4s;
	font-size: 15px;
	/*position: relative;*/
	padding: 17px 0;
}
.top-nav__item.active,
.top-nav__item:hover .top-nav__link{
	color: var(--light-color);
}
.dd-menu .top-nav__link{
	padding-right: 21px;
}
.dd-menu .top-nav__link:before{
	content: "";
	display: block;
	width: 13px;
	height: 1px;
	background: #fff;
	position: absolute;
	right: 0px;
	top: 13px;
}
.dd-menu .top-nav__link:after{
	content: "";
	display: block;
	width: 1px;
	height: 13px;
	background: #fff;
	position: absolute;
	right: 6px;
	top: 7px;
}
.dd-menu:hover .top-nav__link:before,
.dd-menu:hover .top-nav__link:after,
.top-nav__item.active .top-nav__link:before,
.top-nav__item.active .top-nav__link:after{
	background: var(--light-color);
}
.top-nav__list-dd{
	min-width: 211px;
	max-width: 300px;
	position: absolute;
	top: 100%;
	background: #e3f2f8;
	color: var(--blue-color);
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
	padding: 14px 17px;
	opacity: 0;
	transform: scaleY(0);
	transform-origin: 0 0 0;
	transition: all .3s ease 0s;
	visibility: hidden;
}
.top-nav__item:hover .top-nav__list-dd{
	transform: scaleY(1);
	visibility: visible;
	opacity: 1;
}
.top-nav__item-dd{
	border-bottom: 1px solid var(--sky-color);
}
.top-nav__link-dd{
	font-size: 18px;
	font-weight: 500;
	text-transform: none;
	display: inline-block;
	padding-top: 11px;
	padding-left: 19px;
	padding-bottom: 15px;
	position: relative;
}
.top-nav__link-dd:before{
	content: "";
	display: block;
	width: 6px;
	height: 11px;
	position:absolute;
	top: 16px;
	left: 6px;
	background-image: url(../img/arrow-dd-icon.png);
	opacity: 0;
	transition: all 0.4s;
}
.top-nav__link-dd:hover:before,
.top-nav__item-dd.active .top-nav__link-dd:before{
	opacity: 1;
}
#example-one {
	position: relative;
} 

#magic-line {
	position: absolute;
	top: 0px;
	left: 0;
	width: 100px;
	height: 2px;
	background: #fff502;
	overflow: visible !important;
}
.magic-line-after{
	display: block;
	width: 100%;
	height: 100%;
}
.magic-line-after:after{
	content:"";
	width: 11px;
	height: 11px;
	display: block;
	position: absolute;
	bottom: -7px;
	left: 50%;
	background: linear-gradient(135deg, transparent 0%, transparent 50%, #fff502 51%, #fff502 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fff673', GradientType=1 );
	transform: rotate(45deg) translate(-50%, 0);
	transition: all 0.4s;
}
.top-nav__soc{
	margin-left: auto;
}
.top-nav__soc-list{
	height: 100%;
	align-items: center;
}
.top-nav__soc-list__item{
	padding: 0 8px;
	height: 100%;
}
.top-nav__soc-list__item a{
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}
.top-nav__soc-list__item a:after{
	content:"";
	width:0%;
	height:2px;
	display:block;
	position:absolute;
	top:0;
	background:#fff502;
	opacity:0;
	transition:all 0.6s;
}
.top-nav__soc-list__item a:hover:after{
	width:100%;
	opacity:1;
}
.top-nav__soc-list__item img{
	transition: all 0.4s;
}
.top-nav__soc-list__item a:hover img{
	opacity: 0;
}
.icon-hover{
	position: absolute;
	opacity: 0;
}
.top-nav__soc-list__item a:hover .icon-hover{
	opacity: 1;
}
.quote{
	padding: 95px 0;
	padding-bottom: 40px;
}
.quote__item{
	position: relative;
}
.quote__des{
	max-width: 434px;
	min-height: 429px;
	background: var(--sky-color);
	color: #fff;
	font-size: 18px;
	padding: 40px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-image: url(../image/quote-img.png);
	background-position: center right;
	background-repeat: no-repeat;
	position: absolute;
	top: -35px;
	right: 0;
}
.quote__des p{
	line-height: 36px;
}
.quote__des h3{
	font-weight: 400;
	text-align: right;
	margin-top: 50px;
}
.slider__item img{
	width: 100%;
}
.lyceum{
	padding: 70px 0;
}
.line:before{
	content: "";
	width: 114px;
	height: 4px;
	display: block;
	position: absolute;
	top: 0;
	background: #fff502;
}
.title{
	color: #29166f;
	font-size: 30px;
	font-weight: 700;
	line-height: 30px;
	text-transform: uppercase;
	position: relative;
	padding: 17px 8px;
}
.lyceum__des{
	padding: 0 25px;
	font-size: 20px;
}
.lyceum__btn{
	max-width: 173px;
	color: #3d3d3d;
	font-size: 18px;
	stroke: #86bff1;
	font-weight: 700;
	text-transform: uppercase;
	padding: 11px 15px;
	margin-left: 25px;
	display: flex;
	align-items: center;
	align-content: space-between;
	margin-top: 40px;
}
.lyceum__btn img{
	margin-left:auto;
}
.professions{
	padding-top: 70px;
	padding-bottom: 160px;
	background-image: url(../image/professions-bg.jpg);
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
.professions .title{
	color: #fff502;
	margin-bottom: 50px;
}
.professions .line:before{
	background: #fff;
}
.professions__item-title{
	color: #85bef1;
	font-size: 24px;
	font-weight: 700;
	line-height: 30px;
	text-transform: uppercase;
	margin-left: 25px;
	margin-bottom: 25px;
}
.professions__item p{
	max-width: 800px;
	color: white;
	font-size: 20px;
	line-height: 30px;
	margin-left: 25px;
}
.professions__btn{
	max-width: 173px;
	stroke: #fff;
	color: #f8f400;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 11px 15px;
	margin-left: 25px;
	display: flex;
	align-items: center;
	align-content: space-between;
	margin-top: 40px;
}
.professions__btn img{
	margin-left:auto;
}
.professions .slick-prev{
	width: 40px;
	height: 40px;
	top: auto;
	bottom: -80px;
	left: 36%;
	background: var(--sky-color);
	border-radius: 50%;
	transition: all 0.4s;
}
.professions .slick-next{
	width: 40px;
	height: 40px;
	top: auto;
	bottom: -80px;
	right: auto;
	left: 40%;
	background: var(--sky-color);
	border-radius: 50%;
	transition: all 0.4s;
}
.professions .slick-next:before,
.professions .slick-prev:before{
	content: "";
	width: 7px;
	height: 11px;
	display: inline-block;
	font-size: 0px;
	background-image: url(../img/arrow-slide.png);
}
.professions .slick-next:before{
	background-position: right;
}
.professions .slick-next:hover,
.professions .slick-prev:hover{
	opacity: 0.5;
}
.request{
	padding: 80px 0 150px 0;
}
.request__form-wrap{
	min-height: 570px;
	background-image: url(../img/request-bg.png);
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
}
.request__form-gradient{
	position: relative;
	z-index: 1;
	margin-top: 50px;
	padding-top: 100px;
	background-repeat: no-repeat;
	background: rgba(255,255,255,1);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 80%, rgba(255,255,255,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(20%, rgba(255,255,255,0)), color-stop(80%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 80%, rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 80%, rgba(255,255,255,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 80%, rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 80%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 );
}
.request__form{
	max-width: 694px;
	width: 100%;
	margin: 0 auto;
	min-height: 200px;
	text-align: center;
	padding: 53px 20px 100px 20px;
	background: #fff;
	position: relative;
	box-shadow: 0 0 58px rgba(218, 218, 218, 0.75);
}
.request__form:before,
.request__form:after{
	content: "";
	width: calc(100% - 45px);
	height: 100px;
	position: absolute;
	top: -35px;
	left: 50%;
	transform: translate(-50%, 0);
	display: block;
	z-index: -1;
	background: #fff;
	box-shadow: 0 0 95px rgba(218, 218, 218, 0.58);
}
.request__form:before{
	width: calc(100% - 85px);
	top: -55px;
}
.request__form input,
.request__form select{
	max-width: 480px;
	width: 100%;
	color: #a1a2a4;
	background-color: #f8f9fb;
	border: 1px solid #ebeced;
	border-radius: 3px;
	margin: 15px 0;
	padding: 14px 20px;
	display: inline-block;
}
.request__form select{
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url(../img/select-arrow.png);
	background-repeat: no-repeat;
	background-position-x: 98%;
	background-position-y: center;
	cursor: pointer;
	font-size: 16px;
	font-weight: 100;
	color: #757575;
}
.request__form .upload-btn{
	position:relative;
	min-height: 38px;
	padding-left: 0;
	color: transparent;
}
.upload-btn:after{
	content:"Обзор";
	font-size: 18px;
	color:#757474;
	display: block;
	background: #e3f2f8;
	position: absolute;
	right: 0;
	top: 0;
	height:100%;
	padding: 14px 18px;
	cursor:pointer;
	box-sizing: border-box;
}
.upload-btn::-ms-browse{
	font-size:40px !important;
}
.upload-btn::-webkit-file-upload-button{
	background:#e3f2f8 !important;
	width: 0px;
	/*opacity: 0;*/
	margin-top: -1px;
	margin-left: -50px;
	border: none;
}
.wrap-upload-btn{
	max-width: 480px;
	width: 100%;
	position: relative;
	display: inline-block;
}
.wrap-upload-btn span{
	position: absolute;
	top: 50%;
	left: 2px;
	transform: translate(0%, -52%);
	z-index: 1;
	display: block;
	padding-left: 16px;
	font-size: 18px;
	color: #757575;
	background: #f8f9fb;
}
.request__form-btn{
	max-width: 480px;
	width: 100%;
	display: inline-block;
	background-color: var(--blue-color);
	border: 1px solid #ebeced;
	border-radius: 3px;
	color: #fff;
	font-size: 18px;
	padding: 12px;
	margin-top: 45px;
	position: relative;
	transition: all 0.4s;
}
.request__form-btn:hover{
	background-color: #524190;
}
.weekdays{
	background: #e3f2f8;
	padding: 95px 0;
}
.weekdays__slide .slick-list{
	margin: 0 50px;
}
.weekdays__slide .slick-track{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.weekdays .slick-slide{
	margin: 13px;
	height: auto;
}
.weekdays .slick-slide > div{
	height: 100%;
}
.weekdays__item{
	height: 100%;
}
.weekdays__item a{
	height: 100%;
	display: block;
	padding: 20px 16px;
	border: 1px solid #818181;
	background: #fff;
	transition: all 0.4s;
}
.weekdays__img{
	position: relative;
}
.weekdays__img img{
	width: 100%;
	max-height: 240px;
	height: 100%;
	object-fit: cover;
}
.weekdays__date{
	width: 89px;
	height: 59px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: var(--sky-color);
	color: #fff;
	padding-left: 8px;
	transition: all 0.4s;
}
.weekdays__day{
	font-size: 28px;
	font-weight: 700;
}
.weekdays__month{
	font-size: 14px;
}
.weekdays__year{
	font-size: 20px;
	position: absolute;
	right: -7px;
	top: 18px;
	transform: rotate(-90deg);
}
.weekdays__item h3{
	font-size: 16px;
	font-weight: 500;
	color: #3d3d3d;
	margin: 30px 0;
	text-transform: uppercase;
	transition: all 0.4s;
}
.weekdays__item:hover a{
	border: 1px solid #fff502;
}
.weekdays__item:hover .weekdays__date{
	color: var(--blue-color);
	background: #fff502;
}
.weekdays__item:hover h3{
	color: var(--blue-color);
	font-weight: bold;
}
.weekdays .slick-prev{
	width: 40px;
	height: 40px;
	left: 0;
	background: var(--sky-color);
	border-radius: 50%;
	transition: all 0.4s;
}
.weekdays .slick-next{
	width: 40px;
	height: 40px;
	right: 0;
	background: var(--sky-color);
	border-radius: 50%;
	transition: all 0.4s;
}
.weekdays .slick-next:before,
.weekdays .slick-prev:before{
	content: "";
	width: 7px;
	height: 11px;
	display: inline-block;
	font-size: 0px;
	background-image: url(../img/arrow-slide.png);
}
.weekdays .slick-next:before{
	background-position: right;
}
.weekdays .slick-next:hover,
.weekdays .slick-prev:hover{
	opacity: 0.5;
}
.contacts__item{
	flex-grow: 1;
	text-align: center;
	padding: 70px 10px;
}
.contacts__item:hover img{
    transform:rotatey(360deg);
}
.contacts__item img{
	margin-bottom: 20px;
	transition:all 0.8s;
}
.contacts__item h3{
	margin-bottom: 10px;
}
.contacts__item div{
	line-height: 30px;
}
#map{
	width: 100%;
	height: 400px;
}
.professions-all{
	padding: 70px 0;
}
.professions-all__list{
	max-width: 1160px;
	margin: 30px auto;
}
.professions-all__item{
	width: calc(33.3333333% - 30px);
	margin: 15px;
	border: 1px solid #818181;
	transition: all 0.4s;
	background: #f2f2f2;
}
.professions-all__item:hover{
	border: 1px solid var(--light-color);
	box-shadow: 0 0 28px rgba(0, 0, 0, 0.25);
	background: var(--light-color)
}
.professions-all__item:hover .professions-all__img:before{
	border: 10px solid var(--light-color);
}
.professions-all__item:hover .professions-all__des{
	color: var(--blue-color)
}
.professions-all__img{
	position: relative;
}
.professions-all__img img{
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
}
.professions-all__img:before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid transparent;
	position: absolute;
	box-sizing: border-box;
	transition: all 0.4s;
}
.professions-all__des{
	color: #3d3d3d;
	padding: 20px;
	transition: all 0.4s;
}
.professions-all__des-activity,
.professions-all__des-time-title{
	display: block;
	margin-bottom: 10px;
}
.professions-all__des-title{
	display:block;
	margin-bottom: 20px;
}
.content{
	padding: 60px 0;
}
.content ul,menu{
	margin: inherit;
	padding-left: 20px;
}
.content li{
	list-style: inherit;
}
.content a{
	outline: inherit;
	text-decoration: inherit;
	color: blue;
}
.content-des{
	padding: 0 8px;
	font-size: 20px;
}

.prof-gal{
	max-width: 1000px;
	width: 100%;
	margin: 60px auto;
}
.prof-gal__item{
	max-width: calc(50% - 40px);
	width: 100%;
	margin: 20px;
	cursor: pointer;
	position: relative;
}
.prof-gal__item:before{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	transition: all 0.4s;
}
.prof-gal__item:after{
	content: "";
	display: block;
	width: 96px;
	height: 96px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(.5);
	background-image: url(../img/zoom-icon.png);
	background-position: center;
	transition: all 0.6s;
	opacity: 0;
}
.prof-gal__item:hover:before{
	opacity: 0.65;
}
.prof-gal__item:hover:after{
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}
.prof-gal__item img{
	width: 100%;
	height: 100%;
}


.footer{
	padding: 30px 0;
	background: var(--blue-color);
}
.footer__item{
	color: #fff;
	text-align: center;
	font-size: 18px;
}
.gerb-mob{
	display: none;
}
@media screen and (max-width: 1060px) {
	.professions .slick-next{
		left: 45%;
	}
}
@media screen and (max-width: 1010px) {
	.top-bar .wrapper{
		position: relative;
	}
	.top-bar__nav-item a {
		padding: 12px 12px;
	}
	.top-bar__search-form{
		position: absolute;
		top: 0;
		right: 67px;
		background: #3eb5f1;
		height: 100%;
		z-index: 1;
	}
}
@media screen and (max-width: 950px) {
	.top-nav{
		width: 30px;
		height: 15px;
		position: fixed;
		top: 65px;
		right: 10px;
		background: none;
		border-bottom: 3px solid #442e95;
		z-index: 101;
		transition: all 0.4s;
	}
	.top-nav:after,
	.top-nav:before{
		content:"";
		display:block;
		width:100%;
		height:3px;
		background:#442e95;
		transition: all 0.4s;
	}
	.top-nav:after{
		margin-top:3px;
	}
	.top-nav.close:before{
		margin-left: -3px;
		transform: rotate(45deg) translate(15%, 0%);
	}
	.top-nav.close:after{
		margin-left: -3px;
		transform: rotate(-45deg) translate(15%, 0%);
	}
	.top-nav.close{
		border-bottom: 3px solid transparent;
		z-index: 999;
	}
	.top-nav__list{
		/*display: none;*/
	}
	.top-nav__list{
		position: fixed !important;
		top: 100%;
		left: 0;
		transition: all 0.4s;
		width: 100%;
		height: 100%;
		background: white;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-content: center;
		text-align: center;
		opacity: 0.5;
		z-index: -1;
	}
	.top-nav__list.open{
		top: 0;
		opacity: 1;
	}
	.top-nav__list.open .top-nav__item{
		padding: 8px 0;
	}
	.quote{
		margin: 10px 0;
	}
	.news__item {
		width: calc(33.3333333% - 20px);
		margin: 10px;
	}
	.quote__des {
		max-width: 100%;
		min-height: auto;
		position: static;
		transform: none;
		padding: 19px;
	}
	.quote__des h3{
		margin-top: 0;
	}
	.partners__list {
		padding: 0 20px;
	}
	.partners__list .slick-prev{
		left: 0;
	}
	.partners__list .slick-next{
		right: 0;
	}
	.map iframe{
		height: 300px;
	}
	.main-content__aside{
		width: 100%;
		max-width:100%;
		position: static;
		margin-bottom: 20px;
	}
	.main-content__wrap{
		width: 100%;
		padding-left: 0;
	}
	.top-nav__item {
		color: #3c3c3c;
	}
	.top-nav__list-dd {
		width: 211px;
		position: static;
		background: none;
		color: var(--blue-color);
		box-shadow: none;
		padding: 14px 17px;
		opacity: 1;
		transform: scaleY(1);
		visibility: visible;
	}
	.dd-menu .top-nav__link:before,
	.dd-menu .top-nav__link:after{
		background: #3c3c3c;
	}
	.top-nav__item-dd{
		border-bottom: 0;
	}
	.top-nav__link-dd {
		padding-top: 0px;
		padding-left: 0;
		padding-bottom: 6px;
	}
	.top-nav__link-dd:before{
		top: 5px;
		left: -11px;
	}
	#magic-line{
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.header img{
		max-width: 70px;
	}
	.header__logo-link{
		justify-content: center;
	}
	.header__title {
		font-size: 16px;
		text-align: center;
		margin: 20px 0;
	}
	.header__arms{
		margin: 0 auto;
	}
	.news__item {
		width: calc(50% - 20px);
		margin: 10px;
	}
	.agency__item {
		width: 100%;
		padding: 25px 20px;
		border-right: 0;
		border-bottom: 1px solid #c5c5c5;
	}
	.base__item {
		width: 33.333333%;
	}
	.search__item {
		width: 100%;
	}
	.search__item:first-child:after{
		content: none;
	}
	.search__enrollee{
		margin: 0 auto;
		margin-top: 40px;
	}
	.association__50 {
		width: 100%;
	}
	.association__title {
		text-align: center;
	}
	.association__50:nth-child(2) .association__title {
		text-align: center;
	}
	.questions__50 {
		width: 100%;
	}
	.questions__50:first-child {
		border-right:0;
	}
	.partition-Map__item{
		width: 100%;
	}
	.cooperation__item{
		width: 50%;
	}
	.partition-Map{
		bottom: -500%;
	}
	.search__enrollee img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.main-content__nav-link {
		color: #4e4e4e;
		font-size: 16px;
		line-height: 28px;
	}
	.professions-all__item {
		width: calc(50% - 30px);
	}
	.prof-gal__item {
		max-width: calc(50% - 20px);
		width: 100%;
		margin: 10px;
	}
	.top-nav__list.d-flex {
		display: block;
		height: 100vh;
		overflow: auto;
		padding: 20px 0;
	}
	.top-nav__list-dd{
		margin:0 auto;
	}
	.weekdays__slide .slick-track{
		display: block;
	}
	.weekdays__slide .slick-list{
		margin: 0 0px;
	}
	.weekdays .slick-next,
	.weekdays .slick-prev{
		display:none !important;
	}
	.top-bar__show-search{
		margin-left: auto;
	}

}
@media screen and (max-width: 705px){
	.top-bar{
		z-index: 100;
	}
	.top-bar__nav{
		width: 30px;
		height: 15px;
		border-bottom: 3px solid #fff;
		z-index: 1;
		transition: all 0.4s;
	}
	.top-bar__nav.close{
		position: fixed;
		right: 10px;
		top: 20px;
	}
	.top-bar__nav:after,
	.top-bar__nav:before{
		content:"";
		display:block;
		width:100%;
		height:3px;
		background:#fff;
		transition: all 0.4s;
	}
	.top-bar__nav:after{
		margin-top:3px;
	}
	.top-bar__nav.close:before{
		margin-left: -3px;
		transform: rotate(45deg) translate(15%, 0%);
	}
	.top-bar__nav.close:after{
		margin-left: -3px;
		transform: rotate(-45deg) translate(15%, 0%);
	}
	.top-bar__nav.close{
		border-bottom: 3px solid transparent;
	}
	.top-bar__nav-list{
		position: fixed !important;
		top: 100%;
		left: 0;
		transition: all 0.4s;
		width: 100%;
		height: 100%;
		background: var(--blue-color);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-content: center;
		text-align: center;
		opacity: 0.5;
		z-index: -1;
		z-index: -1;
	}
	.top-bar__nav-list.open{
		top: 0;
		opacity: 1;
	}
	.top-bar__nav-item.active{
		width: 100%;
	}
	.top-bar__nav-item a{
		width: 100%;
	}
	.news__item{
		width: 100%;
	}
	.news__img img{
		width: 100%;
		height: 150px;
		object-fit: cover; 
	}
	.feedback__item{
		width: 100%;
	}
	.feedback__item:first-child{
		display: none;
	}
	.search__form{
		padding-right: 0;
	}
	.search__form-item{
		flex-direction: column;
	}
	.search__form-lable{
		flex-basis: 0;
		margin-bottom: 10px;
	}
	.search__btn-wrap{
		text-align: center;
	}
}
@media screen and (max-width: 570px) {
	.top-bar{
		top: -76px;
	}
	.top-bar__contacts{
		width: 100%;
		text-align: center;
	}
	.top-bar__contacts-list{
		padding: 0 5px;
		flex-direction: column;
	}
	.top-bar__search{
		margin-top: 1px;
	}
	.top-bar__search-form{
		height: 45px;
		top: auto;
		bottom: 0;
		padding: 4px 10px;
	}
	.upload-btn:after{
		z-index: 1;
	}
	.header__logo{
		width: 100%;
	}
	.gerb-mob{
		display: inline-block;
		margin-left: 10px;
	}
	.header__arms{
		display: none;
	}
}
@media screen and (max-width: 500px) {
	.base__item{
		width: 50%;
	}
	.cooperation__item{
		width: 100%;
	}
	.cooperation {
		padding: 70px 0;
	}
	.cooperation__link img{
		width: 100%;
	}
	.professions .slick-next {
		left: 57%;
	}
	.professions-all__item {
		width: calc(100% - 30px);
	}
	.top-bar.d-flex {
		align-items: center;
		flex-direction: column;
	}
}
@media screen and (max-width: 390px) {
	.contacts__item{
		flex-basis: 100%;
	}
	.top-bar__search-form.active{
		max-width: calc(100% - 52px);
		position: static;
	}
	.top-bar__search-form.active .top-bar__search-iput{
		max-width: calc(100% - 60px);
	}
}