* {
	box-sizing: border-box;
}

html, body {    
	overflow-x: hidden;
	height: 100%;     /*--ДОБАВКА ДЛЯ ФОНА------====================--*/
}

body {
	font-family: 'Montserrat';
	font-size: 16px;
	background-color: #f3f6e2;
	line-height: 1.2;  /*--МЕЖ/СТРОЧНЫЙ ИНТЕРВАЛ--*/
	min-width: 320px;
	position: relative;
	margin: 0;
	padding: 0;
	padding-bottom: 150px; /*--ВРЕМЕННО тень от бел блока шапки--*/
}

h1,h2,h3,h4,h5,h6 {
	margin-top: 0;
	margin-bottom: 20px;
}

strong {
	font-weight: 700;
}
.colortext-1 {
	color: red; /* КРАСНЫЙ цвет выделения */
}
.colortext-2 {
	color: rgb(0, 132, 255); /* ГОЛУБОЙ цвет выделения */
}
.colortext-3 {
	color: rgb(3, 110, 114); /* МОРСКАЯ ВОЛНА цвет выделения */
}
.colortext-4 {
	color: rgb(124, 4, 172); /* ПУРПУРНЫЙ цвет выделения */
}
.colortext-5 {
	color: rgb(172, 71, 4); /* ОРАНЖЕВЫЙ цвет выделения */
}
.colortext-6 {
	color: rgb(81, 80, 80); /* ТЕМНО-СЕРЫЙ цвет выделения */
	
}
a {
	color: inherit;   /*--наследование цвета родителя--*/
	text-decoration: none;  /*--убираем подчеркивание--*/
}

.container {
	max-width: 1200px;  /*--макс. ширина контейнера--*/
	padding: 0 20px;    /*--слева и справа отступы 20пикс--*/
	margin: 0 auto;     /*--находится по вертик. центру--*/
}

input, textarea {
	background-color: #F6F6F6;
	font-family: 'Montserrat';
}
input::placeholder, 
textarea::placeholder {
	color: #9F9F9F;
}

.def-title {   /*--ОФОРМЛЕНИЕ ВСЕХ ЗАГОЛОВКОВ--*/
	font-size: 42px;
	font-weight: 700;
	position: relative;
	margin-bottom: 25px;
	line-height: 1.4;
}
.def-title::before { /*--полоска с левой стороны 6 пикс--*/
	content: '';
	height: 6px;
	width: 100%;
	position: absolute;
	top: 30px;
	left: calc(-100% - 25px);
	background-color: #9f0824;
}
.center-title {
	font-size: 42px;
	font-weight: 700;
	color: #000;
	text-align: center;
	margin-bottom: 40px;
}
.center-title::after { /*--полоска с левой стороны 3 пикс--*/
	content: '';
	height: 3px;
	width: 70px;
	background-color: #D62E4C;
	display: block;
	margin: 15px auto 0 auto;
}
.color-white {
	color: #fff;
}
.center-title.color-white::after {
	background-color: #fff;
}

.def-desc {
	color: #363535;
	font-size: 14px;
	line-height: 1.9;	
}

.def-desc1 {
	color: #363535;
	font-size: 14px;
	line-height: 1.9;
	text-align: center;
	margin-bottom: 30px;
}

.def-desc2 {
	color: #f1f1f1;
	font-size: 14px;
	line-height: 1.9;
}
.def-desc strong {
	color: #000;
}
.def-desc-write {    /*---белый шрифт----*/
	color: rgb(255, 255, 255);
	font-size: 14px;
	line-height: 1.9;
}
.def-btn {    /*--ОФОРМЛЕНИЕ ВСЕХ КНОПОК--*/
	background-color:#de14d7;
	border-radius: 25px;    /*--ИЗМ   закругление кнопок--*/
	padding: 15px 45px;  /*--отступ ВН 15   ЛП 45 пикс--*/
	display: inline-block;   /*--ширина кнопки в АВТОМАТЕ--*/
	transition: background-color 0.35s ease;  /*--анимация при наведении--*/
	font-size: 16px;
	color: #fff;
}
.def-btn:hover {
	background-color: #9c0797;
}

/*-------------HEADER TOP START---- ВЕРХНИЙ------------------------*/
.header-top {
	background-color: rgb(1, 27, 73); 
	color: #fff; /*--цвет текста--*/
	padding: 18px 0 55px 0; /*--отступ верх 18  низ 62 пикс--*/
	font-size: 14px;
}
.header-row {
	display: flex; /*--распологаем в строчку--*/
	align-items: center;  /*--выравнивание по вертикали--*/
}
.header-right {
	display: flex; /*--распологаем в строчку--*/
	column-gap: 74px; /*--выравнивание по правому краю--*/
	margin-left: auto; /*--горизонтальные отступы--*/
}
.header-info {
	display: flex; /*--распологаем в строчку--*/
	align-items: center; /*--выравнивание по вертикали--*/
}
.header-info img {
	margin-right: 16px; /*--отступ от иконки до текста--*/
	max-width: 21px; /*--ограничение ширины иконки--*/
}
.header-info img:hover {   /* НАВЕДЕНИЕ КУРСОРА НА МЕНЮ INFO*/
	background-color: #9c0797;
	box-shadow: 1px 5px 5px 1px rgba(0, 0, 0, 0.91);
}
.header-social {
	display: flex;  /*--распологаем в строчку--*/
	align-items: center;  /*--выравнивание по вертикали--*/
	column-gap: 28px;    /*--горизонтальные отступы--*/
}
.header-social a img:hover  {  /* НАВЕДЕНИЕ КУРСОРА НА МЕНЮ SOCIAL*/
	background-color: #9c0797;
	box-shadow: 1px 5px 5px 1px rgba(0, 0, 0, 0.91);
}

/*------------------НИЖНИЙ ХЕДЕР--------------------------------------------------*/
.header-bottom {  
	position: absolute;
	z-index: 2;  /*--вперед на 2 уровня--*/ 
	top: 60px;   /*--поднимаем вверх на 60 пикс--*/
	left: 50%;
	transform: translateX(-50%);
	max-width: 1200px;  /*--снова задаем ширину 1200 пикс--*/
	width: 100%;
}
.header-bottom-row {
	display: flex;  /*--распологаем в строчку--*/
	background-color: #de14d7;
	color: #fff;   /*--цвет текста--*/
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.11);
}
.header-logo {
	background-color: #fff;
	padding: 15px 60px 15px 40px;  /*--В Н 15пик, Л 60 П 40пикс--*/
	display: flex;    /*--распологаем в строчку--*/
	align-items: center;   /*--выравнивание по вертикали--*/
	clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 0 50%, 0% 0%);  /*-БЛОК В ИДЕ СТРЕЛКИ--*/
}
.header-logo img {
	max-width: 180px;
}
.header-nav {  /* ----НИЖНИЙ КРАСНЫЙ ХЕДЕР-----*/
	padding: 10px 60px;  /*--В Н 10пик, Л П 60пикс--*/
	margin-left: auto;   /*--выравнивание по правому краю--*/
}
.header-nav ul {/*------ ОСНОВНОЕ МЕНЮ------------------------ */
	display: flex;  /*--распологаем в строчку--*/
	list-style-type: none;  /*--убираем пункты нумерации--*/
	padding: 0;   /*--обнуляем отступ--*/
	column-gap: 50px;   /*--горизонтальные отступы--*/
}
.header-nav ul > li:hover {  /* НАВЕДЕНИЕ КУРСОРА НА МЕНЮ*/
	color: rgb(255, 242, 2);	
	text-shadow: 0 4px 4px #000;
	background-color: #ac10a6;
}
.header-nav ul > li:hover {  /* НАВЕДЕНИЕ КУРСОРА НА МЕНЮ*/
	color: rgb(255, 242, 2);	
	text-shadow: 0 4px 4px #000;
}
.header-nav ul ul {   /* ВЫПАДАЮЩЕЕ ПОДМЕНЮ ПРИ НАВЕДЕНИИ*/
	display: none;
	position: absolute;
	background-color: #de14d7;
	color: #fff;
	width:160px;     /*подменю расширяем до 140 пикс */
	margin-left: -25px; /*ПОДМЕНЮ СМЕЩАЕМ ВЛЕВО */
	}
.header-nav ul ul a {
	line-height: 2;
 }
.header-nav li:hover ul {
	display: block;
}
.header-nav li:hover li {/* НАВЕДЕНИЕ КУРСОРА НА МЕНЮ*/
	display: block;
	background-color: #ac10a6;
	text-align: center;
	margin-top: 5px;
}
/*-------------HEADER TOP END--- ВЕРХНИЙ------------------------------------------*/

/*-------------S-BANNER--START----------------------------------------------------*/
.banner-swiper .swiper-slide {
	padding: 175px 0;  /*--В Н 175пикc, Л П 0пикс--*/
	color: #fff;    /*--цвет текста--*/
	text-align: center;   /*--текст по центру--*/
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 640px;  /*--минимальная высота баннера--*/
}
.banner-swiper .swiper-slide::before {
	content: '';  /*--темная подложка  фильтр--*/
	display: block;  /*--распологаем в блок вертик--*/
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(10, 4, 4, 0.30); /*--цвет с прозрачностью 30%--*/
	z-index: -1;   /*--назад на 1 уровень--*/ 
}
.banner-content {
	max-width: 750px;  /*-макс ширина контента в баннере--*/
	margin: 0 auto;   /*--центрируем по центру вертикали--*/ 
}
.banner-subtitle {
	font-size: 16px;  /*--размер шрифта--*/
	text-transform: uppercase;  /*--все буквы заглавные--*/ 
	margin-bottom: 10px;  /*--Отступ вниз 10 пикс--*/ 
	text-shadow: 0 3px 3px #000; /*-Тень от букв--*/
}
.banner-title {
	font-size: 46px;  /*--размер шрифта--*/
	font-weight: 300;    /*--шрифт тонкий--*/
	line-height: 1.3;   /*--межстрочный интервал--*/
	text-shadow: 0 8px 8px #000; 
}
.swiper-button-next {  /*--КНОПКА ВПЕРЕД в ПРАВО--*/
	right: 40px;
}
.swiper-button-prev {  /*--КНОПКА НАЗАД в ЛЕВО--*/
	left: 40px;
}
.swiper-button-next,   /*--КНОПКА ВПЕРЕД в ПРАВО--*/
.swiper-button-prev {  /*--КНОПКА НАЗАД в ЛЕВО--*/
	color: #fff;
	background-color:  #252e51b4; /*--цвет фона кнопки--*/
	width: 60px;  /*--ширина фона кнопки--*/
	height: 60px;  /*--высота фона кнопки--*/
}
.swiper-button-next:after, 
.swiper-button-prev:after {
	font-size: 28px;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 30px;
}
.swiper-pagination-bullet {   /*--3 полоски кадров слайера--*/
	width: 52px;    /*--длина полоски--*/
	height: 11px;   /*--высота полоски--*/
	border-radius: 0;  /*--углы без скругления--*/
	background-color: #D9D9D9;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background-color:  #b40aae; /*--цвет при АКТИВЕ--*/
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 10px
}
/*-------------S-BANNER--END--------------------------------------------------------*/


/*-------------ABOUT--О НАС---START----------------------------------------------------*/
.s-about {
	padding: 90px 0;  /*--В Н 90пикc, Л П 0пикс--*/	
}
.about-row {
	display: flex;
	align-items: center;
}
.s-about .def-desc {
	margin-bottom: 30px;
}
.about-left {
	margin-right: 90px;
	max-width: 505px;
}
.about-right {
	width: 600px;
}
.about-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 30px; /*--закругдение углов 4 пикс--*/
	border: 3px solid; /*--контур картинки 4 пикс--*/
	color: #fff;   /*--цвет контура белый--*/
	box-shadow: 0px 14px 14px 0px rgba(0, 0, 0, 0.41); /*---тень контура----*/
}

/*-------------ABOUT--О НАС---END----------------------------------------*/

/*----------------- НАШ ЦЕНТР-- START------------------------------------ */
.s-numbers {
	background-color: rgb(1, 27, 73);
	color: #ffffff;  /*--Цвет цифр и текста справа--*/
	padding: 72px 0;
}
.s-numbers .def-title::before {
	background-color: #fff; /*--цвет линии слева--*/
}
.numbers-row {
	display: flex;
}
.numbers-left {
	width: 50%;
	padding-right: 100px;
	border-right: 1px solid #D5D5D5;
}
.numbers-right {
	width: 50%;
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(2, 300px);
	row-gap: 60px;
	text-align: center;
}
.numbers-num {
	font-size: 52px;
	font-weight: 900;
	margin-bottom: 5px;
	line-height: 1.3;
}
.numbers-desc {
	font-weight: 300;
}		

/*--======================== НАШ ЦЕНТР--END ========================================- */


/*--===================== Services START ===============================------ */
.s-services {
	padding: 100px 0;
	
	background-color: #f3f6e2;
}
.services-row {
	display: flex;
	column-gap: 35px;
}
.services-item {
	box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.40);
	width: 33.3%;
	height: 100%;
	border-radius:  10px  10px; /*закругление всех углов */ 
	margin-top: 15px;  
}
.services-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px  10px  0px 0px;/*закругление верхних углов */  
}
.services-body {
	padding: 20px 20px 30px 20px;
	background-color: #c7c5c5;
	border-radius: 0px 0px  10px  10px; /*закругление нижних углов */   
}
.services-title {
	font-size: 18px;
	text-align: center;
}

.services-btn {
	width: 100%;
	text-align: center;
	padding: 12px 45px;
	margin: -10px 0px -10px 0px;
}

/*--================== Services--END-================================------ */

/*--==================SECTION GALLARY--START-================================------ */

.container-gallery {
	padding: 30px;
	background-color: rgb(161, 161, 161);
}
.center-title-2 {     /*--ТЕКСТ В БАННЕРЕ --*/
	font-size: 42px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	margin-bottom: 40px;
}
.center-title-2::after { /*--полоска снизу 3 пикс--*/
	content: '';
	height: 3px;
	width: 70px;
	background-color: #fffbfc;
	display: block;
	margin: 15px auto 0 auto;
}

.center-title-2 {
	text-align: center;
	padding: 10px;
}

.gallery-image {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-image img {
  height: 300px;
  width: 470px;
  transform: scale(1.0);
  transition: transform 0.4s ease;

}

.img-box {
  box-sizing: content-box;
  margin: 20px;
  height: 300px;
  width: 470px;
  overflow: hidden;
  display: inline-block;
  color: white;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.51);
}

.caption {
  position: absolute;
  bottom: 5px;
  left: 20px;
  opacity: 0.0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  text-align: left;  
}

.transparent-box {
  height: 300px;
  width: 470px;
  box-shadow: 0px 12px 12px 0px rgba(0, 0, 10px, 0.80);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
}

.img-box:hover img { 
  transform: scale(1.3);
  max-width: 500px;
  max-height: 330px;
}

.img-box:hover .transparent-box {
  background-color:rgba(0, 0, 0, 0.5);
}

.img-box:hover .caption {
  transform: translateY(-20px);
  opacity: 1.0;
  font-size: 16px;
}

.img-box:hover {
  cursor: pointer;
}

.caption > p:nth-child(2) {
  font-size: 16px;
}

.opacity-low {
  opacity: 0.5;
}
/*--==================SECTION GALLARY--END-================================------ */


/*----================= Why START--- ПОЧЕМУ МЫ? ===========================-------*/
.s-why {
	padding: 100px 0;
}
.why-row {
	display: flex;
	align-items: center;
}
.why-left {
	max-width: 505px;
	margin-right: 30px;
}
.s-why .def-desc {
	margin-bottom: 55px;
}
.why-features-item {
	display: flex;
	margin-bottom: 45px;
	max-width: 350px;
}
.why-features-icon {
	margin-right: 15px;
}
.why-features-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}
.why-features-desc {
	color: #6D6A6A;
}
.why-right {
	margin-left: auto;
	margin-top: 40px;
	margin-bottom: 40px;
}
.why-right img {
	display: block;
	border-radius: 30px; /*--закругдение углов 4 пикс--*/
	border: 3px solid; /*--контур картинки 4 пикс--*/
	color: #fff;   /*--цвет контура белый--*/
	box-shadow: 0px 14px 14px 0px rgba(0, 0, 0, 0.41); /*---тень контура----*/
}
/*---============ Why END ПОЧЕМУ МЫ?===================--------- */


/*-----================= АДМИНИСТРАЦИЯ ===============------------- */
.wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 40px;
	
  }
.center-title {
  text-align: center;
  padding: 10px;
}
.user-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 10px;
	padding: 40px;
	width: 1000px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 20px -5px rgba(0,0,0,0.5);
	margin-top:  20px; 
  }
   
  .user-card:before {
	 content: '';
	 position: absolute;
	 height: 300%;
	 width: 350px;
	 background: #035dd1;
	 top: -60px;
	 left: -75px;
	 z-index: 0;
	 transform: rotate(0deg);
   }
   
   .user-card-img {
	 display: flex;
	 justify-content: center;
	 align-items: center;   
	 z-index: 3;
   }
   
   .user-card-img img {
	 width: 200px;
	 height: 260px;
	 object-fit: cover;
   }
   
   .user-card-info {
	 text-align: center;
	 margin-left: 50px;
   }
   
   .user-card-info h2 {
	 font-size: 24px;
	 margin: 0;
	 margin-bottom: 10px;
	 color: #031088;
   }
   
   .user-card-info p {
	 font-size: 16px;
	 margin-bottom: 2px;
	 
   }
   .user-card-info p span {
	font-weight: 700;
	margin-right: 10px;
  }

   @media only screen and (min-width: 768px) {
	 .user-card {
	   flex-direction: row;
	   align-items: flex-start;
	 }   
	 .user-card-img {
	   margin-right: 20px;
	   margin-bottom: 0;
	 }
   
	 .user-card-info {
	   text-align: left;
	   margin-left: 30px;
	   margin-right: 30px;
	  }
	}
   
  
   @media (max-width: 767px){
	 .wrapper{
		padding-top: 3%;
	 }
	 .user-card:before {
		width: 300%;
		height: 200px;
		transform: rotate(0);
	 }

	 .user-card-info {
		text-align: center;
		margin-left: 20px;
		margin-right: 30px;
	   }
	 .user-card-info h2 {
		margin-top: 25px;
		font-size: 35px;
		
	 }
	 .user-card-info p span {
		display: block;
		margin-bottom: 15px;
		font-size: 18px;
	 }
   }
  
/*---=================== АДМИНИСТРАЦИЯ END =====================---*/


/*--==================== Reviews START =====================------- */
.s-reviews {
	padding: 100px 0;
	
}
.s-reviews .swiper-pagination {
	bottom: 0;
	position: static;
	margin-top: 40px;
}
.reviews-item {
	background-color: #fff;
	box-shadow: 0px 4px 4px 0px rgba(95, 87, 87, 0.12);
}
.reviews-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.reviews-body {
	padding: 5px 30px 20px 30px;
}
.reviews-name {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 4px;
}
.reviews-profi {
	font-weight: 500;
	color: #979494;
	margin-bottom: 15px;
}
.reviews-comment {
	color: #8A8787;
	margin-bottom: 20px;
}
.reviews-social {
	border-top: 1px solid #C5B8B8;
	padding-top: 20px;
	display: flex;
	align-items: center;
	column-gap: 25px;
}
.reviews-social a {
	display: inline-block;
	transition: filter 0.5s ease;
}
.reviews-social a:hover {
	filter: invert(1);
}
/* -================== Reviews END ========================--- */
	
/* Partners START */
.s-partners {
	padding: 30px 0;
}
.partners-row {
	display: flex;
	align-items: center;
	column-gap: 70px;
	animation: move 20s linear infinite;
}
.partners-item img {
	max-width: 250px;
	max-height: 50px;
}

@keyframes move {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}
/*--===================== Partners END ===========================---- */



/* --========================= Form START ==========================--- */
.s-form {
	padding: 80px 0;
	background-color: rgb(202, 202, 202);
}
.form-row {
	display: flex;
	align-items: center;
}
.form-left {
	max-width: 500px;
	margin-right: 70px;
}
.s-form .def-desc {
	margin-bottom: 30px;
}
.form-image img {
	max-width: 100%;
}
/*--====================== FORM END ===============================---- */


/*--====================== АККОРДИОН START ==================================---*/
.acor-container2 {
    margin: 20px 20px;
	max-width: 1000px;
	background-color:#fffb96 ;
}

.acor-container2 .acor-body {
    width: calc(100% - 40px);
    margin: 0 auto;
    height: 0;
    color: rgba(0, 0, 0, 0);
    background-color: #BFE2FF;
    line-height: 18px;
    padding: 0 30px;
    box-sizing: border-box;
    transition: color 0.5s, padding 0.5s;
    overflow: hidden;
    font-family: 'Montserrat';
    font-size: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2), 0 5px 8px rgba(0,0,0,0.2);
}
.acor-container2 .acor-body p {
    margin: 0 0 10px;
	font-weight: bold;
	color: #171717;
}
.acor-container2 label {
    cursor: pointer;
    background-color: #880e93;
    display: block;
    padding: 15px 20px;
    width: 100%;
    color: #ffffff;
    font-weight: bold;
    box-sizing: border-box;
    z-index: 100;
    font-family:'Montserrat';  
    font-size: 18px;
    margin: 0 0 5px;
    transition: color .35s;
}
.acor-container2 label:hover {
    color: #FFF;
}
.acor-container2 input{
    display: none;
}
.acor-container2 label:before {
    content: '\276F';
    float: right;
}
.acor-container2 input:checked + label {
    background-color:#880e93 ;
    color: #eaff00;
    box-shadow: 0 8px 26px rgba(0,0,0,0.4), 0 28px 30px rgba(0,0,0,0.3);
}
.acor-container2 input:checked + label:before {
    transition: transform .35s;
    transform: rotate(90deg);
}
.acor-container2 input:checked + label + .acor-body {
    height: auto;
    margin-top: -5px;
    color: #000;
    padding: 20px 30px 10px;
}

/*--====================== АККОРДИОН END ==================================---*/


/*--======================== FOOTER START ===========================----- */
.site-footer {
	background-color:  rgb(1, 27, 73);
	color: #fff;
	font-size: 14px;
}
.footer-row {
	display: flex;
}

.footer-left {
	max-width: 268px;
	padding: 60px 60px 60px 0;
	border-right: 1px solid rgba(239, 239, 239, 0.24);
}
.footer-logo {
	margin-bottom: 25px;
}

.footer-right {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 60px 0 60px 60px;
}
.footer-desc {
	color: #D2D2D2;
	line-height: 1.7;
}
.footer-title {
	font-size: 18px;
	margin-bottom: 18px;
}
.footer-nav ul {
	list-style-type: none;
	padding: 0;
	font-size: 14px;
	color: #E0E0E0;
}
.footer-nav ul li:nth-last-child(n+2) {
	margin-bottom: 15px;
}
.footer-nav ul li a:hover {
	color: #fff;
}
.footer-info-item {
	display: flex;
	align-items: center;
}
.footer-info-item:nth-last-child(n+2) {
	margin-bottom: 22px;
}
.footer-info-icon {
	margin-right: 14px;
}
.footer-info-icon img {
	vertical-align: middle;
	transform: translateY(-2px);
}
.footer-social {
	display: flex;
	column-gap: 30px;
}
.footer-social a {
	transition: 0.35s ease;
}
.footer-social a:hover {
	filter: brightness(3);
}

.footer-copyright {
	border-top: 1px solid rgba(239, 239, 239, 0.24);
	padding: 24px 0 30px 0;
	text-align: center;
	color: #D2D2D2;
}
/* ---===================Footer END--==================================== */
/*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/


/*--======----PAGE CONTACTS---=======----СТАРТ========================-- */
/*-------- Контейнер, содержащий изображение и текст-----*/
.container-contacts {
    position: relative;
    text-align: center;
    color: white;
	font-family:'Montserrat' ;
	font-size: 72px;
	text-shadow: 0 8px 8px #000; 
}
/*-----ТЕКСТ ПО ЦЕНТРУ---------- */
.name-page-contacts {
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.contacts{
	width: 100%;
	min-height: 100vh;
	background: #051937;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap
  }
  .contacts .heading {
	font-size: 15px;
	margin-bottom: 40px;
  }
  .contacts .contact {
	flex: 50%;
	padding: 20px 20px;
	text-align:center;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
	color: #fff;
	gap: 40px;
  }
  .contacts .contact h1 {
	color: rgb(75, 255, 249);
	font-size: 45px;
	margin-bottom: 30px;
  }
  .contacts .contact h2 {
	color: rgb(184, 186, 186);
	font-size: 30px;
  }
  .contacts .contact p {
	color: rgb(253, 255, 255);
	font-size: 20px;
	padding-bottom: 50px;
  }
  .contacts .contact-map {
	flex: 50%;
  }
  .contacts .contact-map iframe {
	width: 100%;
	min-height: 70vh;
	padding:  30px 30px; 
  }
   /*-------картинки филиалов --------- */  
  .с-contacts {
	padding: 100px 0;
  }
   .contacts-row {
	display: flex;
	column-gap: 35px;
  }
  .contacts-item {
	box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.40);
	width: 33.3%;
	height: 100%;
	border-radius:  10px  10px; /*закругление всех углов */  	
	margin-top: 15px;  
  }
  .contacts-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px  10px  0px 0px;/*закругление верхних углов */  
  }
  .contacts-body {
	padding: 20px 20px 10px 20px;
	background-color: #c7c5c5;
	border-radius: 0px 0px  10px  10px; /*закругление нижних углов */   
  }
  .contacts-title {
	font-size: 18px;
	text-align: center;
  }
  
  /*Responsive START --- АДАПТАЦИЯ СТРАНИЦЫ*/
@media screen and (max-width: 992px) {
	.с-contacts {
		padding: 60px 0;
	}
	.contacts-row {
		column-gap: 20px;
	}
	.contacts-title {
		font-size: 18px;
		line-height: 1.5;
	}
}
	/* contacts 992 END */

	@media screen and (max-width: 768px) {	
	/* Services 768 START */
	.contacts-title {
		font-size: 16px;
	}
	.contacts-body {
		padding: 10px 15px 20px 15px;
	}
	.contacts-row {
		flex-wrap: wrap;
		row-gap: 20px;
	}
	.contacts-item {
		width: calc(50% - 10px);
	}
	/* Services 768 END */
}

@media screen and (max-width: 768px) {	
	/* Services 575 START */
		.contacts-row {
			justify-content: center;
		}
		.contacts-item {
			width: 250px;
		}
		/* Services 575 END */
}

  /*-=======---PAGE CONTACTS----END--============================-- */



/*--======----PAGE NEWS----- НОВОСТИ--СТАРТ========================-- */
/* ----Контейнер, содержащий изображение и текст ----*/
.container-news {
    position: relative;
    text-align: center;
    color: white;
	font-family:'Montserrat' ;
	font-size: 72px;
	text-shadow: 0 8px 8px #000; 
}
/* --Центрированный текст---- */
.name-page-news {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.post-wrap {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
 }

 .post-item {
	padding: 10px;
	max-width: 300px;
	max-height: 300px;
	margin-bottom: 30px;
 }
 .post-item-wrap {
	position: relative;
 }
 .post-item img {
	display: block;
	width: 100%;
	border-radius: 15px;
 }
 .post-item:hover .post-info {
	opacity: 1;
 }
 .post-link {
	text-decoration: none;
 }
 .post-info {
	background: linear-gradient(to bottom, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .5) 100%);
	color: white;
	opacity: 0;
	position: absolute;
	bottom: 0;
	width: 100%;
	transition: .5s linear;
	border-radius: 0px 0px 15px 15px;  /*--закруглены нижние углы--- */
 }
 .post-meta {
	text-transform: uppercase;
	line-height: 18px;
	font-weight: 500;
	font-size: 12px;
	padding: 0 0 10px 15px;
	margin-bottom: 15px;
	position: relative;
	display: inline-flex;
	align-items: center;
	border-bottom: 3px solid #9f0824;
 }
 .post-date:after {
	content: "\2022";
	margin: 0 6px;
	font-size: 14px;
 }
 .post-title {
	padding: 0 15px;
	font-weight: 600;
	margin-bottom: 15px;
 }
 
 @media (min-width: 768px) {
	.post-item {
	   flex-basis: 50%;
	   flex-shrink: 0;
	}
 }
 @media (min-width: 960px) {
	.post-item {
	   flex-basis: 33.333333333%;
	}
 }
/*-================= НОВОСТИ--NEWS--====--END--====================================*/

/*-================= SECTION--TEACHERS- -START--====================================*/
.wrapper-department {
    display: flex; 
    flex-flow: wrap;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.card-department {
    width: 280px;
    height: 220px;
    background: #fff;
    display: flex;
    align-items: flex-end;
    margin: 30px 15px 80px 15px;    /*-ИЗМ --*/
    position: relative;
    border-radius: 15px;
	border: 3px solid; /*--контур картинки 4 пикс--*/
	color: #fff;   /*--цвет контура белый--*/
	box-shadow: 0px 14px 14px 0px rgba(0, 0, 0, 0.41); /*---тень контура----*/
}

.card-department img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px; 
}
.card-department .info-department {
    position: relative;
    color: #fffb96;
    z-index: 3;
    opacity: 1;
}

.card-department .info-department h2 {
    line-height: 28px;  /* 40  -- ИЗМ --*/
    margin-bottom: 80px;
	margin-left: 10px;
	text-align: center;
	text-shadow: 0 4px 4px #000; 
}
.card-department .info-department .btn {
    background: #fff;
    padding: 10px  10px;
    color: #000;
    font-size: 12px;
    cursor: pointer;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: .4s ease-in-out;
    position: absolute;
	bottom: 10px;
	right: 95px;
}  
.card-department .info-department .btn:hover {
    background: #fc5185;
    color: #fff;
}

/*-================= SECTION -- TEACHERS 1,2,3,--=--START--====================================*/
/* ----Контейнер, содержащий изображение и текст ----*/
.container-teachers {
    position: relative;
    text-align: center;
    color: white;
	font-family:'Montserrat';
	font-size: 72px;
	text-shadow: 0 8px 8px #000; 
}
/* --Центрированный текст---- */
.name-page-teachers {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* Условная расстановка картинок для различных устройств  */

.wrapper {
	display: flex; 
	flex-flow: wrap;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #dec1f5;
}

.card {
	width: 280px;
	height: 360px;
	background: #fff;
	display: flex;
	align-items: flex-end;
	margin: 35px 15px;    /*-ИЗМ --*/
	position: relative;
	transition: 0.5s all ease-in-out;	
	border-radius: 15px; 
}
.card:hover {
	transform: translateY(-10px);
}
.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(5, 18, 35, 0.3), rgb(8, 38, 73));
	z-index: 2;
	opacity: 0;
	transition: 0.5s all;
	border-radius: 15px; 
}
.card:hover::before {
	opacity: 1;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 15px; 
}
.card .info {
	position: relative;
	color: #fffb96;
	z-index: 3;
	opacity: 0;
	transform: translateY(30px);
	transition: 0.5s all;
}
.card:hover .info {
	opacity: 1;
	transform: translateY(0);
}
.card .info h3 {
	text-align: center; /* ДОБАВЛ--*/
	line-height: 28px;  /* 40  -- ИЗМ --*/
	margin-bottom: 30px;
	margin-left: 15px;	/* 40  -- ИЗМ ----------------*/
}
.card .info p {
	font-size: 15px;
	letter-spacing: 1px;
	margin-bottom: 90px;
	text-align: center; /* ДОБАВЛ-------*/
	padding: 5px;       /* -- ДОБАВЛЕНО ----------------*/
	margin-left: 5px;	/*-- ИЗМЕНЕНО----------------*/
}
.card .info .btn {
	background: #fff;
	padding: 10px  10px;
	color: #000;
	font-size: 12px;
	cursor: pointer;
	border-radius: 20px;
	text-decoration: none;
	font-weight: bold;
	transition: .4s ease-in-out;
	position: absolute;
	left: 90px;
	top: 170px ;
}  
.card .info .btn:hover {
	background: #fc5185;
	color: #fff;
	box-shadow: 0 7px 10px rgba(0, 0, 0, 0.5);
}
/*--========- TEACHERS 4 ------- --=====*/
/*--========-PAGE TEACHERS--ПЕДАГОГИ----- END --======================================-- */


/*--========-PAGE ABOUT US-- О ЦЕНТРЕ-----START --======================================-- */
.container-3 {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
    background: white;
}
.post-3 {
    padding: 2em 0 1em;
	
}
.post-image-3 img {
    width: 30%;
    margin: 0 0 20px 0;
}
.post-content-3 h1 {
    color: #031088;
    font-weight: bold;
    margin-bottom: 10px;
	font-size: 25px;
}
.post-meta {
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    font-size: .8em;
}
.post-meta:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #222;
}

.post-content-3 p {
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: justify;
	color: #000000;
}
@media screen and(max-width: 768px){
    .container-3 {
        padding: 0 45px;
    }
    .post-image-3 img {
        float: left;
        width: 300px;
        margin: 0 30px 20px -45px;
        border: 10px solid #DDDDDF;
        border-left-width: 0;
    }
}
   /*-------------- ACORDION -------------------------*/
.acor-container {
    margin: 20px auto;
	max-width: 1000px;
	background-color:#fffb96 ;
}

.acor-container .acor-body {
    width: calc(100% - 40px);
    margin: 0 auto;
    height: 0;
    color: rgba(0, 0, 0, 0);
    background-color: #BFE2FF;
    line-height: 18px;
    padding: 0 30px;
    box-sizing: border-box;
    transition: color 0.5s, padding 0.5s;
    overflow: hidden;
    font-family: 'Montserrat';
    font-size: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2), 0 5px 8px rgba(0,0,0,0.2);
}
.acor-container .acor-body p {
    margin: 0 0 10px;
	font-weight: bold;
	color: #171717;
}
.acor-container label {
    cursor: pointer;
    background-color: #0e5393;
    display: block;
    padding: 15px 20px;
    width: 100%;
    color: #ffffff;
    font-weight: bold;
    box-sizing: border-box;
    z-index: 100;
    font-family:'Montserrat';  
    font-size: 18px;
    margin: 0 0 5px;
    transition: color .35s;
}
.acor-container label:hover {
    color: #FFF;
}
.acor-container input{
    display: none;
}
.acor-container label:before {
    content: '\276F';
    float: right;
}
.acor-container input:checked + label {
    background-color: #285f8f;
    color: #eaff00;
    box-shadow: 0 8px 26px rgba(0,0,0,0.4), 0 28px 30px rgba(0,0,0,0.3);
}
.acor-container input:checked + label:before {
    transition: transform .35s;
    transform: rotate(90deg);
}
.acor-container input:checked + label + .acor-body {
    height: auto;
    margin-top: -5px;
    color: #000;
    padding: 20px 30px 10px;
}
/* ----Контейнер, содержащий нумерованный список ----*/
list-type2{
	max-width: 900px;
	margin: 0 auto;
	}
	
	.list-type2 ol{
	counter-reset: li;
	list-style: none;
	font-size: 16px;
	font-weight: bold;
	padding: 0;
	margin-bottom: 4em;
	}
	
	.list-type2 ol ol{
	margin: 0 0 0 15px;
	}
	
	.list-type2 a{
	position: relative;
	display: block;
	padding: .4em .4em .4em 2em;
	margin: 8px 70px;
	background: #9c0797;
	color: #ffffff;
	text-decoration: none;
	transition: all .2s ease-in-out;
	border-radius: 5px;
	}
	
	.list-type2 a:hover{
	background: #d6d4d4;
	text-decoration:none;
	transform: scale(1.1);
	color: #3d3b3b;
	}
	
	.list-type2 a:before{
	content: counter(li);
	counter-increment: li;
	position: absolute;
	left: -25px;
	top: 50%;
	margin-top: -20px;
	background: #0e5393;
	height: 2em;
	width: 2em;
	line-height: 2em;
	border: .3em solid #fff;
	text-align: center;
	font-weight: bold;
	color:#FFF;
	border-radius: 10px;
	}


/*--========-PAGE ABOUT US-- О ЦЕНТРЕ----- END --======================================-- */


/*--========-PAGE GALLERY-- ГАЛЕРЕЯ-----START--======================================-- */
/* ----Контейнер, содержащий изображение и текст ----*/
.container-gallery2 {
    position: relative;
    text-align: center;
    color: white;
	font-family:'Montserrat';
	font-size: 72px;    /*--РАЗМЕР ЗАГОЛОВЕА НАЗВАНИЯ СТРАНИЦЫ--*/
	text-shadow: 0 8px 8px #000; 
	margin-left: -30px;
	margin-right: -30px;
}
.container-gallery2 img {
   margin-top: 0px;
   margin-bottom: -15px;
}

/* --Центрированный текст---- */
.name-page-gallery {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*--------------Gallery---START-- ГАЛЕРЕЯ-------------- */
.s-gallery {
	padding: 100px 0;
	background-color:  #ededed; ;
}
.gallery-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 40px;
}
.gallery-wrap a {
	position: relative;
	overflow: hidden;
}
.gallery-item:nth-child(n+7) {
	display: none;
}
.gallery-wrap a.gallery-visible {
	display: block;
}
.gallery-wrap a img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;     
}
.gallery-wrap a:hover::before, 
.gallery-wrap a:hover::after, 
.gallery-wrap a:hover .gallery-border {
	opacity: 1;
}

.gallery-wrap a::before {
	content: 'Увеличить';
	background-color: rgba(68, 62, 62, 0.72);
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 22px;
	padding-top: 50px;
	margin-top: -20px;
	opacity: 0;
	transition: 0.5s ease;
}
.gallery-wrap a::after {
	content: '';
	background-image: url('../images/magnify.svg');
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
	width: 35px;
	height: 35px;
	z-index: 1;
	position: absolute;
	margin-top: -20px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: 0.5s ease;
}
.gallery-border {
	border: 1px solid #fff;
	width: calc(100% - 35px);
	height: calc(100% - 35px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: 0.5s ease;
}

.gallery-btn {
	text-align: center;
	margin-top: 44px;
}
/*----------- Gallery END----ГАЛЕРЕЯ----------- */
/*--========-PAGE GALLERY-- ГАЛЕРЕЯ----- END --======================================-- */





/*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
/*---------------- Responsive START --- АДАПТАЦИЯ САЙТА---------------------- */
@media screen and (max-width: 1200px) {

	/* Header 1200 START */
	.header-logo {
		padding: 15px 50px 15px 20px;
	}
	.header-nav {
		padding: 10px 20px;
	}
	/* Header 1200 END */

	/* Numbers 1200 START */
	.numbers-left {
		padding-right: 50px;
	}
	.numbers-right {
		grid-template-columns: repeat(2, 200px);
	}
	/* Numbers 1200 END */

	/* Why us 1200 START */
	.why-right img {
		max-width: 450px;
	}
	/* Why us 1200 END */

}


/*================= Сontact us 1050 START======================= 

/*================= Сontact us 1050 END=========================== */



@media screen and (max-width: 992px) {
	
	/* Header 992 START */
	.header-logo {
		padding: 10px 30px 10px 20px;
	}
	.header-logo img {
		max-width: 130px;
	}
	.header-top {
		font-size: 12px;
	}
	.header-right {
		column-gap: 30px;
	}
	.header-info img {
		margin-right: 5px;
		max-width: 18px;
	}
	.header-social {
		column-gap: 15px;
	}
	.header-social a img {
		max-width: 18px;
	}
	.header-nav ul {
		font-size: 14px;
		column-gap: 30px;
	}
	/* Header 992 END */


	/* Banner 992 START */
	.banner-swiper .swiper-slide {
		padding: 100px 20px 130px 20px;
	}
	.swiper-button-next {
		right: 20px;
	}
	.swiper-button-prev {
		left: 20px;
	}
	.swiper-button-next, 
	.swiper-button-prev {
		width: 40px;
    	height: 40px;
	}
	.swiper-button-next:after, 
	.swiper-button-prev:after {
		font-size: 20px;
	}
	.banner-title {
		font-size: 32px;
	}
	.banner-subtitle {
		font-size: 14px;
	}
	.def-btn {
		padding: 12px 40px;
		font-size: 14px;
	}
	/* Banner 992 END */


	/* About 992 START */
	.about-row {
		display: block;
	}
	.about-left {
		margin: 0 auto 30px auto;
	}
	.s-about .def-desc {
		margin-bottom: 20px;
	}
	.about-right {
		margin: 0 auto;
		width: 100%;
		max-width: 505px;
	}
	/* About 992 END */

	/* Numbers 992 START */
	.s-numbers .def-title {
		margin-bottom: 20px;
	}
	.s-numbers .def-title br {
		display: none;
	}
	.numbers-row {
		display: block;
	}
	.numbers-left {
		padding-right: 0;
		padding-bottom: 22px;
		margin-bottom: 30px;
		border-right: none;
		border-bottom: 1px solid #D5D5D5;
		width: auto;
	}
	.numbers-right {
		width: auto;
		grid-template-columns: repeat(2, 1fr);
		row-gap: 25px;
	}
	.numbers-num {
		font-size: 36px;
	}
	.numbers-desc {
		font-size: 14px;
	}
	/* Numbers 992 END */

	/* Services 992 START */
	.s-services {
		padding: 60px 0;
	}
	.services-row {
		column-gap: 20px;
	}
	.services-title {
		font-size: 18px;
		line-height: 1.5;
	}
	.services-btn {
		padding: 10px 25px;
	}
	/* Services 992 END */

	/* Gallery 992 START */
	.s-gallery {
		padding: 60px 0;
	}
	.gallery-wrap {
		grid-gap: 20px;
	}
	/* Gallery 992 END */

	/* Why us 992 START */
	.s-why {
		padding: 60px 0;
	}
	.why-row {
		display: block;
	}
	.why-left {
		margin: 0 auto;
	}
	.why-right {
		max-width: 500px;
		margin: 0 auto;
	}
	.why-right img {
		width: 100%;
	}
	.why-features-icon img {
		max-width: 25px;
	}
	.why-features-title {
		font-size: 16px;
	}
	.why-features-desc {
		font-size: 14px;
	}
	/* Why us 992 END */

	/* Our team 992 START */
	.s-team {
		padding: 60px 0;
	}
	.team-row {
		column-gap: 20px;
	}
	.team-body {
		padding: 15px 20px 30px 20px;
	}
	.team-profi {
		font-size: 14px;
	}
	.team-name {
		font-size: 18px;
	}
	/* Our team 992 END */

	/* Reviews 992 START */
	.s-reviews {
		padding: 60px 0;
	}
	/* Reviews 992 END */

	/* Form 992 START */
	.s-form {
		padding: 60px 0;
	}
	.form-row {
		display: block;
	}
	.form-left {
		margin: 0 auto 30px auto;
	}
	.form-right {
		margin: 0 auto;
		max-width: 425px;
		width: 100%;
	}
	/* Form 992 END */

	/* Footer 992 START */
	.footer-row {
		display: block;
	}
	.footer-left {
		max-width: none;
		border-right: none;
		padding-right: 0;
	}
	.footer-right {
		padding: 0;
		margin-bottom: 30px;
	}
	/* Footer 992 END */

}

@media screen and (min-width: 768px) {

	.header-mobile-logo,
	.hamburger,
	.header-mobile-wrap {
		display: none;
	}

}

@media screen and (max-width: 768px) {

	/* All styles 768 START */
	.def-title {
		font-size: 32px;
		margin-bottom: 20px;
		line-height: 1.3;
	}
	.def-title::before {
		top: 23px;
		left: calc(-100% - 10px);
	}
	.center-title {
		font-size: 32px;
		line-height: 1.3;
	}
	.center-title::after {
		width: 50px;
	}
	/* All styles 768 END */

	/* Header 768 START */
	.header-top {
		padding: 0;
		border-bottom: 1px solid #9F9F9F;
	}
	.header-desc,
	.header-right,
	.header-bottom {
		display: none;
	}
	.header-mobile-logo {
		background-color: #fff;
		padding: 8px 40px 8px 20px;
		display: flex;
		align-items: center;
		clip-path: polygon(0px 0px, 100% 0%, 82.68% 101.20%, 0px 100%);
		margin-left: -20px;
	}
	.header-mobile-logo img {
		max-width: 110px;
	}

	.hamburger {
		margin-left: auto;
		cursor: pointer;
		width: 26px;
		height: 11px;
		position: relative;
	}
	.hamburger span {
		height: 1px;
		width: 26px;
		background-color: #fff;
		display: block;
		transition: 0.5s ease;
		position: absolute;
	}
	.hamburger span:first-child {
		top: 0;
	}
	.hamburger span:last-child {
		bottom: 0;
	}
	
	.hamburger.is-active span:first-child {
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
	}
	.hamburger.is-active span:last-child {
		top: 50%;
		transform: translateY(-50%) rotate(-45deg);
	}
	.header-mobile-wrap {       /* --------------МОБИЛЬНОЕ МЕНЮ --------- */
		background-color: #18353E;
		color: #fff;
		padding: 30px 20px;
		text-align: center;
		position: absolute;
		top: 49px;
		left: 0;
		width: 100%;
		z-index: 12;
		display: none;
	}
	.header-mobile-nav {
		margin-bottom: 40px;
	}
	.header-mobile-nav ul {
		list-style-type: none;
		padding: 0;
	}
	.header-mobile-nav ul li {   /*---- МОБИЛЬНОЕ МЕНЮ ----*/
		margin-bottom: 25px;
	}
	.header-mobile-nav ul > li:hover {  /* НАВЕДЕНИЕ КУРСОРА НА МОБ.МЕНЮ*/
		color: rgb(255, 242, 2);	
		text-shadow: 0 4px 4px #000;
	}
	.header-mobile-nav ul li ul li { /*--МОБИЛЬНОЕ ПОДМЕНЮ */
		display: none;
		margin-bottom: 1px;
		background-color: rgb(4, 78, 78);
		padding: 15px 20px;
		color: #fff;
	}		
	.header-mobile-nav  li:hover ul {
		display: block;
	}
	.header-mobile-nav ul li:hover li {   /*--НАВЕДЕНИЕ КУРСОРА НА ПОДМЕНЮ--*/
		display: block;
		background-color: rgb(6, 102, 102);
		color: rgb(255, 242, 2) ;
		text-shadow: 0 4px 4px #000;
		text-align: center;
	}
	.header-mobile-info {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 25px;
	}
	.header-mobile-info img {
		margin-right: 12px;
	}
	.header-mobile-social {
		margin-top: 40px;
		display: flex;
		justify-content: center;
		column-gap: 28px;
	}
	.header-mobile-social a:hover img {   /*--НАВЕДЕНИЕ КУРСОРА НА ИКОНКИ--*/
		display: block;
		background-color: rgb(159, 2, 117);
		box-shadow:0 4px 4px #000;
	}
	/* Header 768 END */

	/* Banner 768 START */
	.swiper-button-next, 
	.swiper-button-prev {
		display: none;
	}
	/* Banner 768 END */

	/* About 768 START */
	.s-about {
		padding: 45px 0;
	}
	/* About 768 END */

	/* Services 768 START */
	.services-title {
		font-size: 16px;
	}
	.services-body {
		padding: 10px 15px 20px 15px;
	}
	.services-btn {
		font-size: 12px;
	}
	.services-row {
		flex-wrap: wrap;
		row-gap: 20px;
	}
	.services-item {
		width: calc(50% - 10px);
	}
	/* Services 768 END */


	/* Gallery 768 START */
	.gallery-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
	/* Gallery 768 END */

    /* Anti_corruption 768 START */ 
	.container-gallery2 {
  		font-size: 55px;
	}
	/* Anti_corruption 768 END */  

	
	/* Our team 768 START */
	.team-row {
		flex-wrap: wrap;
		row-gap: 20px;
	}
	.team-item {
		width: calc(50% - 10px);
		height: auto;
	}
	/* Our team 768 END */


	/* Reviews 768 START */
	.reviews-body {
		padding: 5px 20px 20px 20px;
	}
	.reviews-name {
		font-size: 18px;
	}
	.reviews-profi {
		font-size: 14px;
	}
	.reviews-comment {
		font-size: 14px;
	}
	/* Reviews 768 END */

	/* Footer 768 START */
	.site-footer {
		text-align: center;
	}
	.footer-right {
		display: block;
	}
	.footer-info-item {
		justify-content: center;
	}
	.footer-social {
		justify-content: center;
		margin-top: 40px;
	}
	.footer-nav {
		margin-bottom: 30px;
	}
	/* Footer 768 END */

}


@media screen and (max-width: 575px) {

	/* All styles START */
	.def-title {
		text-align: center;
	}
	.def-title::before {
		display: none;
	}
	.def-title::after {
		content: '';
		height: 1px;
		width: 50px;
		background-color: #D62E4C;
		display: block;
		margin: 20px auto 0 auto;
	}
	.def-title.color-white::after {
		background-color: #fff;
	}
	/* All styles END */

	/* Banner 575 START */
	.banner-swiper .swiper-slide {
		padding: 60px 20px 100px 20px;
	}
	.banner-subtitle {
		font-size: 12px;
	}
	.banner-title {
		font-size: 28px;
		line-height: 1.5;
	}
	.banner-btn {
		padding: 10px 30px;
		font-size: 12px;
	}
	/* Banner 575 END */

	/* About 575 START */
	.s-about .def-btn {
		display: block;
		text-align: center;
		max-width: 180px;
		margin: 0 auto;
		padding: 12px 20px;
	}
	/* About 575 END */

	/* Services 575 START */
	.services-row {
		justify-content: center;
	}
	.services-item {
		width: 250px;
	}
	/* Services 575 END */

	/* Gallery 575 START */
	.s-gallery {
		padding: 40px 0;
	}
	.gallery-wrap {
		grid-gap: 15px;
	}
	.gallery-btn {
		margin-top: 30px;
	}
	.container-gallery2 {
		font-size: 35px;
	}
	/* Gallery 575 END */

	/* Our team 575 START */
	.team-item {
		width: 100%;
	}
	/* Our team 575 END */

	/* Partners 575 START */
	.partners-row {
		column-gap: 40px;
		animation: move 5s linear infinite;
	}
	.partners-item img {
		max-width: 200px;
	}
	/* Partners 575 END */

/*----- Form 575 START----- */
	.form-right form {
		padding: 50px 30px;
	}
	.form-right form input, 
	.form-right form textarea {
		font-size: 12px;
		margin-bottom: 20px;
	}
	/* Form 575 END */

/* ------PAGE CONTACTS START-------- */
	.container-contacts {
		font-size: 42px;
	}
/*------- PAGE CONTACTS END ----------*/

/* -------PAGE NEWS START----------- */
	.container-news {
		font-size: 42px;
	}
/*--- PAGE NEWS END------------------ */

/*-------PAGE TEACHERS START--------- */
	.container-teachers {
		font-size: 42px;
	}
/*--- PAGE NEWS END------ */	


}

			/*------=====Responsive END====------*/