/* общие свойства */
:root {
  --main-color: #3EB97E;
  --second-color: #FFB455;
  --third-color: #941942;
  --extra-color1: #C8E9D8;
  --gray-color: #787878;
}

*{
	font-family: "Ubuntu", sans-serif;
	box-sizing: border-box;
}

::selection{
	background: rgb(169, 169, 169, 0.5);
}

a{
	text-decoration:none;
	color: var(--gray-color);
}

button{
	color: black;
}

html{
	min-height: 99vh;
}

body{
	background: linear-gradient(180deg, #EBEBEB 0%, #E7FFF3 100%);
	overflow-y: auto;
	overflow-x: hidden;
	min-height: 99vh;
}

/* скролл */
*,
html * /* override x.xhtml.ru style */ 
{
  scrollbar-width: auto;
  scrollbar-color: var(--main-color) #F2F2F2;
}

*::-webkit-scrollbar,
html *::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}
*::-webkit-scrollbar-track,
html *::-webkit-scrollbar-track {
  background: var(--main-color);
}
*::-webkit-scrollbar-thumb,
html *::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 5px;
  border: 3px solid #F2F2F2;
}

header{
	position: relative;
	z-index: 1;
}

/* страницы ошибки */
.error-code{
	position: absolute; 
	top: -50px;
	right: 102px;
	/*z-index: 1;*/
}

.error-block{
	position: relative;
}

.error-block .offer-span1, .error-block .offer-span2{
	color: var(--gray-color);
	font-size: 27px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	position: absolute;
}

.error-block .offer-span1{
	top:89px;
	z-index:3;
}

.error-block h1{
	margin:0px;
	color: #000;
	font-size: 45px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	letter-spacing: 4.5px;
	text-transform: uppercase;
	position: absolute;
	top:145px;
	max-width:800px;
	z-index:3;
}

.error-block .offer-span2{
	top:316px;
	left:0px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	z-index:3;
}

.error-block h1 .offer-main-word{
	color: var(--main-color);
}

.error-block .write-button{
	position: absolute;
	top: 440px;
	width: 294px;
	z-index: 3;
}

.error-block .login-button{
	position: absolute;
	top: 330px;
	width: 294px;
	z-index: 3;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* индикатор прокрутки */
#progress-indicator-container{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.progress-indicator-wrapper {
  height: 6px;
  background: #EBEBEB;
}

.progress-indicator-wrapper .progress-bar {
  transition: 0s;
  height: 100%;
  background: var(--main-color);
  opacity: 0.5;
  width: 0%;
  box-shadow: 0 0 3px 2px;
}

/* общие свойства для блоков */
.block{
	margin: 0px 0px 50px 0px;
}

.max-container{
	background: var(--extra-color1);
	padding: 30px 0px 30px 0px;
	transform: translateX(-50%);
	position: relative;
	left: 50%;
	width: 100vw;
	text-align:center;
}

.block-title{
	text-align: center;
	font-size: 38px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%; /* 75px */
	letter-spacing: 4.5px;
	text-transform: uppercase;
	color: var(--main-color);
}

/* шапка */
#main-menu-wrapper{
	display: flex;
	width:100%;
	justify-content: space-between;
	align-items: center;
	margin-top:5px;
	margin-bottom: 10px;
}

#main-menu{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 35px;
	list-style: none;
	padding: 0;
	margin: 0;
}

#main-menu li, li.account li{
	margin: 5px 0 5px 0;
}

/*для кнопки аккаунта*/
li.account{
	list-style: none;
	padding: 0;
	margin: 0;
}

a.logout{
	cursor: pointer;
}

#main-menu a, li.account a{
	color: #787878;
	text-align: center;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	
}

#main-menu a, #contacts a, li.account a{
	transition: .3s;
}

@media (hover: hover){
	#main-menu a:hover, #contacts a:hover, li.account a:hover{
		color: var(--second-color);
	}
}



.is_submenu{
	border-bottom: 2px solid var(--main-color);
	position: relative;
	z-index: 10;
}

.is_submenu a{
	cursor: pointer;
}

.submenu{
	display: none;
	position: absolute;
	z-index: 1;
}

.submenu__list{
	list-style: none; 
	border-radius: 10px; 
	width: 180px; 
	display: flex; 
	flex-direction: column; 
	background: rgb(255, 255, 255, 0.9);
	box-shadow: 0px 0px 4px 0 rgb(0, 0, 0, 0.1);
	padding: 5px; 
	margin-top: 6px;
}
.submenu__list li{
	padding: 3px 0 3px 0;
}

.submenu__list li a{
	font-size: 18px !important;
	display: block !important;
	text-align: left !important;
}

#main-menu-wrapper #contacts{
	color: var(--main-color);
	text-align: right;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: flex-end;
	margin: 0;
}

#burger-main-menu-button{
	font-size: 25px;  
	padding: 5px;
	padding-right: 10px;
	position: relative;
	z-index: 2;
	display: none;
	color: #787878;
	transition: 0.3s;
	cursor: pointer;
}

#burger-main-menu-button:hover{
	color: var(--second-color);
	/*transition: 0.3s;*/
	transform: scaleX(1.1);
}

#burger-main-menu-items-wrapper{
	display: none;
	position: relative;
	z-index: 2;
	opacity: 0.7;
	margin-bottom: 15px;
}

#burger-main-menu-items{
	display: flex;  
	flex-direction: column; 
	background: white; 
	border-radius: 10px; 
	box-shadow: 0 0 2px gray; 
	font-size: 25px;  
	padding: 10px;
}


/* оффер */
.site-button{
	display: block;
	background: var(--main-color);
	box-shadow: 5px 5px 10px 0px rgba(62, 185, 126, 0.50);
	border-radius: 20px;
	padding: 10px;
	text-align: center;
	
	color: #FFF;
	text-align: center;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 37.5px */
	text-transform: uppercase;
	
	transition: 0.4s;
}

a:hover{
	color: inherit;
}

/*@media (hover: hover){*/
.site-button:hover{
	color: #FFF;
	background: var(--second-color);
	/*transition: 0.4s;*/
}
/*}*/

/*@media (hover: none){
.site-button:active{
	color: #FFF;
	background: var(--second-color);
	transition: 0.4s;
}
}*/

.main-block{
	height: 606px;
	position: relative;
}

.main-block .main-block__img{
	position:absolute; 
	top:180px;
	right:0px;
}

.main-block .offer-span1, .main-block .offer-span2{
	color: var(--gray-color);
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	position: absolute;
}

.main-block .offer-span1{
	top:89px;
	z-index:1;
}


.main-block h1{
	margin:0px;
	color: #000;
	font-size: 38px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	letter-spacing: 4.5px;
	text-transform: uppercase;
	position: absolute;
	top:145px;
	max-width:800px;
	z-index:1;
}

.main-block .offer-span2{
	top:286px;
	left:0px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	z-index:1;
}

.main-block h1 .offer-main-word{
	color: var(--main-color);
}

.main-block .write-button{
	position: absolute;
	top:440px;
	width:294px;
	z-index:1;
}

/* страницы с ошибками */
#error-code-content{
	color: var(--main-color);
	text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
	font-size: 300px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%; /* 450px */
	letter-spacing: 27px;
	text-transform: uppercase;
	
}

/* кнопка вверх */
#page-upper{
	width: 78px;
	height: 78px; 
	background: var(--main-color); 
	opacity:0.5; 
	position: fixed; 
	bottom: 20px; 
	right: 20px;
	text-align:center;
	border-radius: 20px;
	padding: 10px; 
	cursor: pointer;
	box-shadow: 5px 5px 4px 0px rgba(0, 0, 0, 0.25);
	display: none;
	border: none;
	z-index: 3;
	
	transition: 0.4s;
}

#page-upper img{
	height: 100%; 
	width: 100%;
}

#page-upper:hover{
	background: var(--second-color);
	/*transition: 0.4s;*/
	opacity: 0.7;
}

/* блок статистики */
.statistics-block .card-block {
	border-radius: 20px;
	background: linear-gradient(0deg, #FFF 0%, #FFF 100%);
	box-shadow: 5px 5px 4px 0px rgba(0, 0, 0, 0.25);
	padding: 15px 30px 15px 30px;	
	margin-top: 5px;
	margin-bottom: 5px;
}

.statistics-block .card-block .number, .statistics-block .card-block .info{
	display: block;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.statistics-block .card-block .number{
	font-size: 50px;
	padding: 15px 0px 15px 0px;
	transition: 0.2s;	
}

.statistics-block .card-block .number:hover{
	transform: scale(1.2);
	/*transition: 0.2s;*/
}

.statistics-block .card-block .info{
	font-size: 30px;
	color: var(--gray-color);
}

/* блок с этапами урока */
.lesson-stages-block .card-block{
	padding: 15px 30px 15px 30px;	
	margin-top: 5px;
	margin-bottom: 5px;
	cursor:pointer;
}	



.lesson-stages-block .card-block .icon-block{
	margin: 0 auto;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	margin-bottom: 20px;
	background: var(--main-color);
	cursor:pointer;
	border: none;
	
	transition: 0.4s;
}

.lesson-stages-block .card-block .icon-block .icon{
	width: 90px;
	height: 90px;
}

.lesson-stages-block .card-block .info{
	display: inline-block;
	color: var(--third-color);
	font-size: 23px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.lesson-stages-block .card-block .icon-block:hover{
	background: var(--second-color);
	/*transition: 0.4s;*/
}

.lesson-stages-block .info-block{
	background: rgba(255, 180, 85, 0.22); 
	box-shadow: 5px 5px 4px 0px rgba(0, 0, 0, 0.25);
	text-align:left;
	padding: 25px 55px 25px 55px;
	position: relative; 
	width: 100%;
}

.lesson-stages-block .info-block h3{
	color: var(--third-color);
	text-align: center;
	font-size: 23px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.lesson-stages-block .info-block .description{
	color: #000;
	padding: 20px 0px 20px 0px;
	font-size: 23px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}

.list{
	list-style: none;
	padding: 0px;
	margin-top: 20px;
}

.lesson-stages-block .info-block .list li{
	background: url(/img/lessons_stages_block/list_item.svg) no-repeat left center;
	color: var(--gray-color);
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding-left: 80px;
	line-height: 150%;
}

.lesson-stages-block .info-block .small-icon-block{
	position: absolute; 
	right: 0px; 
	bottom: 10px; 
	cursor: pointer;
	width: 80px;
	text-align: center;
	border: none;
	background: none;
}

.lesson-stages-block .info-block .small-icon-block .small-icon{
	width: 40px;
}

.courses-block{
	margin-top: 20px;
}

/* блок курсов */
.courses-block .card-block{
	padding: 20px;
	border-radius: 20px;
	background: linear-gradient(180deg, #C4E7D6 0%, rgba(196, 231, 214, 0.50) 100%, rgba(196, 231, 214, 0.60) 100%);
	box-shadow: 5px 5px 4px 0px rgba(0, 0, 0, 0.25);
	margin-bottom: 20px;
}

.courses-block .card-block .course-title, .courses-block .card-block .course-price{
	display: inline-block;
}

.courses-block .card-block .course-title{
	color: #000;
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.courses-block .card-block .main-text, .courses-block .card-block .extra-data{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.courses-block .card-block .course-price {
	color: var(--third-color);
	font-size: 25px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.courses-block .card-block .course-img{
	text-align: center;
	transition: 0.2s;
}

.courses-block .card-block .course-img:hover{
	/*transition: 0.2s;*/
	transform: scale(1.1);
}

.courses-block .card-block .course-description{
	color: var(--gray-color);
	font-size: 19px;
	font-style: normal;
	font-weight: 400;
	height: 100px;
	margin-bottom: 10px;
	overflow: hidden;
	line-height: 150%; /* 30px */
	
	
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.courses-block .card-block .course-age .course-age-text, .courses-block .card-block .course-level .course-level-text{
	color: #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

/* блок почему мы */
.why-block .why-card{
	display: flex;
	position: relative;
}

.why-block .why-block-cards-wrapper{
	padding-top: 30px;
}

.why-block .row{
	margin-bottom: 60px;
}

.why-block .why-card .card-rect{
	border-radius: 10px;
	background: var(--second-color);
	box-shadow: 5px 5px 4px 0px rgba(0, 0, 0, 0.25);
	width: 173px;
	min-width: 173px;
	height: 173px;
	padding: 20px;
	
	transition: 0.1s;
}

.why-block .why-card .card-rect:hover{
	padding: 15px;
	/*transition: 0.1s;*/
}

.why-block .why-card .card-rect .card-rect-inner{
	text-align:center;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2) inset;
	border-radius: 10px;
	width: 100%;
	height: 100%;
}

.why-block .why-card .card-rect .card-rect-inner img{
	width: 100%;
}

.why-block .why-card .card-text-block{
	font-style: normal;
	line-height: 150%; /* 30px */
	font-size: 22px;
	margin-left: 20px;
	width: 70%;
}

.why-block .why-card .card-text-block h3{
	color: var(--third-color);
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.why-block .why-card .card-text-block p {
	color: #000;
	font-weight: 400;
}

/* блок для отправки почты */
.form-block{
	position: relative;
}

.form-block img{
	pointer-events: none;
}

.form-block .form-header{
	width: 100%;
	height: 182px;
	border-radius: 10px;
	border: 1px solid #999;
	box-shadow: 5px 5px 4px 0px rgba(0, 0, 0, 0.25);
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	background: #ABE5B2;
	position: relative;
	
}

.form-block .form-header__icon{
	height: 100%;
	padding: 34px;
}

.form-block .block-title{
	height: 100%;
	padding: 28px;
	font-size: 45px;
	height: auto;
}

.form-block .block-part{
	margin: 15px 0px;
	width: 100%;
}

.form-block .sep2{
	display: flex;
	width: 100%;
	gap: 50px;
}

.form-block .block-part p{
	color: #000;
	font-size: 25px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%; /* 37.5px */
	text-transform: uppercase;
}

.form-block .block-part input, .form-block .block-part textarea{
	width: 100%;
	resize: none;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 5px 5px 4px 0px rgba(0, 0, 0, 0.25);
	border: 1px solid #ddd;
	font-size: 20px;
}

.block-part textarea{
	height: 150px;
}

.form-block .req{
	color: var(--third-color);
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%; /* 36px */
}

.form-hash-block{
	display: none;
}

.form-block .block-part input[type="checkbox"]{
	border: 1px solid #ddd;
	box-shadow: none;
	width: auto;
	border-radius: 5px;
	box-shadow: 5px 5px 4px 0px rgba(0, 0, 0, 0.25);
}

.form-block .block-part input[type="checkbox"] + label{
	padding-top: 5px;
}

.form-block .block-part label{
	margin-left: 10px;
	font-size: 20px;
}

.form-check-label a{
	color: var(--third-color);
	text-decoration: underline;
}

.form-block .block-part button{
	color: #fff;
	padding: 10px;
	border: none;
	
	min-height: 68px;
	
	display: block;
	background: var(--main-color);
	box-shadow: 5px 5px 10px 0px rgba(62, 185, 126, 0.50);
	border-radius: 20px;
	padding: 10px;
	text-align: center;
	
	text-align: center;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 37.5px */
	text-transform: uppercase;
	
	width: 100%;
	
	transition: 0.4s;
}

.form-block .block-part button:hover{
	background: var(--second-color);
	/*transition: 0.4s;*/
}

.form-block .block-part input:not([type=checkbox]):focus, 
.form-block .block-part textarea:focus,
.form-block .block-part button:focus
{
	/*outline: 2px solid var(--main-color);*/
	/*transition: 0.2s;*/
}

*:focus{
	/*outline: 2px solid gray;*/
}

.form-block .block-part input:not([type=checkbox]):focus, .form-block .block-part textarea:focus{
	background: #C8E9D8;
}

.form-block .block-part input[type=checkbox]:focus{
	/*outline: 2px solid var(--main-color);*/
	/*transition: 0.2s;*/
	outline: 2px solid black;
}

.form-block .block-part input[type=checkbox]{
	-webkit-appearance: none; /* Remove default appearance */
    -moz-appearance: none;
    appearance: none;
	height: 30px;
	width: 30px;
}

.form-block .block-part input[type=checkbox]:checked {
      background-color: var(--main-color);  /* Change background color when checked */
   }

.form-block .info-about{
	position: absolute;
	top: 60% ;
	left: 0;
	font-size: 50px;
	width: 100%;
	text-align: center;
	color: var(--third-color);
}


/* блок как проходит обучение */
.how-educate-block{
	position: relative;
	z-index: 0;
}

.how-educate-block .education-main__img{
	width: 670px;
	position: relative;
	z-index: 1;
}

.how-educate-block .platforms-block{
	position: absolute; 
	top: 330px; 
	left: 670px; 
	display: flex; 
	justify-content: center; 
	gap: 25px;
}

.how-educate-block .element__value_inner img, .platforms-block img{
	transition: 0.2s;
}

.how-educate-block .element__value_inner img:hover, .platforms-block img:hover{
	transform: scale(1.1);
	/*transition: 0.2s;*/
}

.how-educate-block-inner{
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.how-educate-block .element{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	z-index: 1;
}

.how-educate-block .element__title{
	display: flex;
	align-items: center;
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
	gap: 15px;
}

.how-educate-block .element__title .element__icon{
	/*width: 70px;
	height: 70px;*/
}

.how-educate-block .element__value{
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	line-height: 1;
	color: var(--third-color);
}

.how-educate-block .element__value .element__value_inner{
	text-align: right;
}

.how-educate-block .element__value .element__value_inner a{
	color: var(--third-color);
}

.how-educate-block .element__value .element__value_inner img{
	margin-left: 15px;
}
  
.how-educate-block h1{
	margin:0px;
	color: #000;
	font-size: 38px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	letter-spacing: 7px;
	text-transform: uppercase;
	position: absolute;
	top: 50px;
	left: 670px;
	max-width:200px;
	z-index: 1;
}

.how-educate-block h1 .offer-main-word{
	color: var(--main-color);
}

.how-educate-block .offer-span2{
	color: var(--gray-color);
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	position: absolute;
	top: 280px;
	left: 670px;
	max-width: 450px;
}

.how-educate-block .write-button{
	position: absolute;
	top:350px;
	left: 670px;
	width:400px;
	z-index:1;
}
  
.extra-offer-block{
	position: relative;
	z-index: 1;
}
  
/*блок мы предлагаем*/
.extra-offer-block li{
	background: url(/img/lessons_stages_block/list_item.svg) no-repeat;
	color: black;
	padding-top: 20px;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding-left: 80px;
	line-height: 1.5;
}  

.how-educate-block .blob1{
	position: absolute;
	top: 0px;
	right: 0px;
}

.how-educate-block .blob2{
	position: absolute;
	top: 550px;
	left: 30px;
}

.extra-offer-block .blob3{
	position: absolute;
	top: 150px;
	right: 0px;
}

.buttons-block{
	display: flex;
	justify-content: center;
	gap: 20px;
}

.buttons-block .site-button{
	width: 300px;
}


/* блок заказы (главный) */
.orders-main-block{
	height: 600px;
	position: relative;
}

.orders-main-block__img{
	position: absolute; 
	top: 0px;
	right: 0px;
}

.orders-main-block .offer-span1, .orders-main-block .offer-span2{
	color: var(--gray-color);
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	position: absolute;
}

.orders-main-block .offer-span1{
	top:44px;
	z-index: 1;
}


.orders-main-block h1{
	margin:0px;
	color: #000;
	font-size: 38px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 4.5px;
	text-transform: uppercase;
	position: absolute;
	top:99px;
	max-width:800px;
	z-index:1;
}

.orders-main-block .offer-span2{
	top:360px;
	left:0px;
	z-index: 1;
	max-width: 490px;
}

.orders-main-block h1 .offer-main-word{
	color: var(--main-color);
}

.orders-main-block .write-button{
	position: absolute;
	top:490px;
	width:294px;
	z-index:1;
}


/* блок что можно заказать */
.what-order-block{
	position: relative;
}

.what-order-block .list{
	position: relative;
	z-index: 1;
}

.what-order-block .list li{
	background: url(/img/lessons_stages_block/list_item.svg) no-repeat left center;
	color: var(--gray-color);
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding-left: 80px;
	line-height: 150%;
	color: black;
	margin-bottom: 30px;
}

abbr{
	color: var(--third-color);
	cursor: help;
	-webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

.order-main-data-block{
	margin-top: 100px;
	position: relative;
	height: 450px;
}

.order-main-data-block h3{
	color: var(--main-color);
	margin: 0px;
	letter-spacing: 2.5px;
	font-size: 35px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	z-index: 1;
}

.order-main-data-block .data-value-block{
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.order-main-data-block .data-value-block .value{
	display: block;
	color: gray;
	font-size: 25px;
	max-width: 220px;
}

.order-main-data-block .data-block{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.order-main-data-block .data-block__img{
	position:absolute; 
	top:0; 
	right:0;
}

.order-main-data-block .data-value-block img{
	padding-top: 10px;
}

.data-rule-block h2{
	margin:0px;
	letter-spacing: 2.5px;
	color: var(--main-color);
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	text-transform: uppercase;
}

.data-rule-block p{
	color: gray;
	line-height: 150%;
	font-size: 25px;
}

.data-rule-block h2 .important{
	color: var(--second-color);
}


/* страница курсов */
.courses-main-block{
	text-align:center;
}

.important-header{
	font-size: 50px;
	text-align:center;
	color: var(--main-color);
}

/* блок одного курса */
.one-course-block{
	margin-top: 60px;
	background: white;
	border: 1px solid #A6A6A6;
	border-radius: 20px;
	padding: 40px;
	position: relative;
	box-shadow: 2px 2px 4px 0px rgb(0, 0, 0, 0.25);
	/*height: 350px;*/
}

.one-course-block .course-clip{
	position: absolute; 
	left: -40px; 
	top: -32px;
}

.one-course-block:hover{
	/*height: auto;*/
}

.one-course-block .wrapper{
	overflow: hidden;
	height: 100%;
}



.one-course-block .paper-button{
	background: var(--main-color); 
	width: 80px; 
	height: 80px; 
	border-radius: 50px; 
	box-shadow: 5px 5px 4px 0px rgb(0, 0, 0, 0.25);
}

.one-course-block .header{
	display: flex;
	align-items: stretch;
	gap: 10px;
	margin-bottom: 10px;
}

.one-course-block .header img{
	transition: 0.2s;
}

.one-course-block .header img:hover{
	transform: scale(1.1);
	/*transition: 0.2s;*/
}

.one-course-block .header .chars{
	width: 100%;
	margin-bottom: 30px;
}

.one-course-block .header .chars .block-title{
	text-align: left;
	border-bottom: 2px solid var(--main-color);
	line-height: 1;
}

.one-course-block .header .chars ul{
	padding: 0;
	list-style: none;
	position: relative;
	margin-top: 10px;
}

.one-course-block .header .chars ul li{
	margin-bottom: 10px;
	position: relative;
	display: flex;
	justify-content: space-between;
	font-size: 26px;
	font-weight: 600;
	align-items: center;
}

.one-course-block .header .chars ul li .key{
	position: relative;
	text-transform: uppercase;
	background: white;
	padding-right: 10px;
}

.one-course-block .header .chars ul li .key img{
	padding-right: 10px;
}

.one-course-block .header .chars ul li .value{
	position: relative;
	color: var(--third-color);
	background: white;
	padding-left: 10px;
}


.one-course-block .header .chars ul li .dotted-element{
	position: absolute; 
	bottom: 10px; 
	width: 100%; 
	border: 1px dotted gray;
}

.one-course-block .desc{
	position: relative;
	font-size: 22px;
}

.one-course-block .desc a{
	font-weight: 600;
	color: var(--second-color);
}

.one-course-block .title{
	position: relative;
	color: var(--main-color);
	text-transform: uppercase;
	text-align: left;
	border-bottom: 2px solid var(--main-color);
	font-weight: 600;
	margin-top: 30px;
}


.one-course-block .list li{
	position: relative;
	background: url(/img/lessons_stages_block/list_item.svg) no-repeat left center;
	font-size: 23px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	padding-left: 80px;
	line-height: 150%;
	margin-bottom: 20px;
}

.one-course-block .list li .level, .one-course-block .list li .price{
	float: right;
	margin-left: 100px;
	color: var(--third-color);
	font-weight: 700;
}

.one-course-block .important-header{
	position: relative;
	margin-left: -40px;
	margin-right: -40px;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 10px;
	padding-bottom: 10px;
	background: var(--extra-color1);
	color: black;
	margin-top: 30px;
	text-align: left;
	font-size: 25px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 150%;
	border-bottom: 1px solid rgb(0, 0, 0, 0.1);
	border-top: 1px solid rgb(0, 0, 0, 0.1);
}

.message-file-block .upload-image {
	width: 20%;
}

.message-file-block .message-file-block-inner{
	text-align:center;
	background: white;
	box-shadow: 5px 5px 4px 0px rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	border: 1px solid #ddd;
	transition: 0.2s;
}

.message-file-block input[type=file] {
	display: none;
}

.message-file-block .message-file-block-inner:hover, .message-file-block-dragover{
	background: #DDD !important;
	transition: 0.2s;
}

#telegram-button, #vk-button{
	width: 50px;
	height: 50px; 
	background: var(--main-color); 
	opacity:0.5; 
	position: fixed; 
	left: 20px;
	text-align:center;
	border-radius: 10px;
	padding: 10px; 
	cursor: pointer;
	box-shadow: 5px 5px 4px 0px rgba(0, 0, 0, 0.25);
	border: none;
	z-index: 3;
	transition: 0.4s;
}

#telegram-button{
	bottom: 20px; 
}

#vk-button{
	bottom: 80px;
}


#telegram-button:hover, #vk-button:hover{
	background: var(--second-color);
    /*transition: 0.4s;*/
    opacity: 0.7;
}

/* Об авторе*/

.author-main-block{
	height: 500px;
	position: relative;
	margin-bottom: 50px;
}

.author-main-block .span1{
	color: var(--gray-color);
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    top: 100px;
    left: 0;
    max-width: 420px;
	z-index: 1;
}

.author-main-block h1{
	margin: 0px;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 7px;
    text-transform: uppercase;
    position: absolute;
    top: 146px;
    left: 0;
    max-width: 570px;
    z-index: 1;
}

.author-main-block h1 .main-word{
	color: var(--main-color);
}

/*.author-main-block .span2{
	color: var(--gray-color);
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    top: 270px;
    left: 0;
    max-width: 420px;
	z-index: 1;
}*/

.author-main-block .buttons{
	display: flex;
	position: absolute;
    top: 290px;
    left: 0;
	gap: 20px;
}

.cv-button, .portfolio-button{
	position: relative;
	z-index: 1;
	font-size: 20px;
	background: white;
	color: black;
	border: 1px solid #BEE3D1;
	box-shadow:5px 5px 5px 0px #BEE3D1;
}

.author-main-block .write-button{
	position: absolute;
    top: 420px;
    width: 400px;
    z-index: 1;
}

.author-main-block .img{
	position: absolute;
    top: 50px;
    right: 0;
}

/* CV */
.cv-block{
	position: relative;
	display: flex;
	flex-direction: column;
	margin-top: 100px;
	margin-bottom: 50px;
}

.main-part, .extra-part{
	z-index: 1;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	/*border: 1px solid black;*/
}

.part1, .part2{
	/*border: 1px solid black;*/
}

.main-part .part1 h2{
	font-size: 40px;
	font-weight: 900;
	color: var(--main-color);
	letter-spacing: 9px;
	line-height: 1.5;
	text-transform: uppercase;
}

.main-part .part1 p{
	color: black;
	font-size: 27px;
	font-weight: 700;	
}

.main-part .part2 img{
	transform: rotate(3deg);
	box-shadow: 5px 5px 4px 0px rgb(0, 0, 0, 0.25);
	border-radius: 20px;
	transition: 0.4s;
}

.main-part .part2 img:hover{
	transform: scale(1.03) !important;
	/*transition: 0.4s;*/
}

.cv-block .blob{
		position:absolute;
		top:170px;
		left:150px;
}

.cv-block .cv-list{
	padding: 0;
	margin: 0;
	margin-top: 25px;
}

.cv-block .cv-list h3{
	color: var(--third-color);
	font-size: 27px;
	font-weight: 700;	
}

.cv-block .cv-list li{
	margin-left: 20px;
	font-size: 23px;
	font-weight: 400;
}

.cv-block .cv-list .icons{
	display: flex;
	gap: 10px;
	list-style: none;
}

.cv-block .cv-list .icons li{
	margin-left: 0;
}

.cv-block .cv-list .icons img{
	width: 50px;
	transition: 0.4s;
}

.cv-block .cv-list .icons li img:hover{
	transform: scale(1.2);
	/*transition: 0.4s;*/
}

.cv-block .big-content{
	list-style: none;
}

.cv-block .big-content li{
	margin-left: 0;
	margin-bottom: 20px;
}

.cv-block .big-content li p{
	font-size: 23px;
	margin: 0;
	font-weight: 400;
}

.cv-block .big-content li .main{
	font-weight: 700;
	color: var(--main-color);
}

.cv-block .big-content li .description{
	margin-top: 20px;
}

.cv-block .big-content li .date{
	font-size: 20px;
	font-style: italic;
	color: var(--gray-color);
}

.skills-block .skills{
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
	margin-left: 0 !important;
}

.skills-block .skills span{
	background: rgb(62, 185, 126, .5);
	border-radius: 10px;
	padding: 10px 15px 10px 15px;
	font-size: 25px;
	line-height: 0.8;
	font-weight: 400;
	transition: 0.4s;
	box-shadow: 5px 5px 4px 0px rgb(0, 0, 0, .25);
}

.skills-block .skills span:hover{
	background: var(--second-color);
	/*transition: 0.4s;*/
}

.skills-block .skills-type{
	font-size: 25px;
	font-weight: 400;
	line-height: 0.8;
	margin-top: 30px;
	margin-bottom: 10px;
}

/* Портфолио */
.portfolio-block{
	border-radius: 10px;
}

.portfolio-block .accordion-item{
	
	background: transparent;
	border: none;
	border-radius: 10px;
	margin-bottom: 20px;
}

.portfolio-block .accordion-item button{
	font-size: 30px;
	font-weight: 700;
	color: var(--third-color);
	background: rgb(62, 185, 126, .25);
	box-shadow: 5px 5px 4px 0px rgb(0, 0, 0, 0.25);
	border: none;
	border-radius: 10px;
	transition: 0.4s;
}

.portfolio-block .accordion-item button:hover, .portfolio-block .accordion-item button:focus{
	background: rgb(255, 180, 85, .5);
	/*transition: 0.4s;*/
}

.portfolio-block .accordion-item button .extra{
	color: var(--gray-color);
	font-size: 27px;
}


.portfolio-block .accordion-item .accordion-button:not(.collapsed)::after{
    transform: rotate(0deg);
}

.portfolio-block .accordion-item .accordion-button::after{
	background-image: url("/img/portfolio_block/collapse.svg");
	transform: rotate(-180deg);
}

.portfolio-block .accordion-item .accordion-body .portfolio-block{
	display: flex;
}

.portfolio-block .accordion-body{
	margin-top: 20px;
	margin-bottom: 20px;
	position: relative;
}

.portfolio-block .accordion-body .main-portfolio-block{
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
}

.portfolio-block .accordion-body .main-portfolio-block .part1{
	z-index: 2;
}

.portfolio-block .accordion-item .accordion-body ul{
	padding-left: 0;
	line-height: 1.2;
	font-size: 25px;
}

.portfolio-block .accordion-item .accordion-body ul li{
	margin-left: 20px;
	font-size: 21px;
	margin-bottom: 10px;
}

.portfolio-block .accordion-item .accordion-body ul h3{
	font-weight: 700;
	margin-bottom: 20px;
}

.portfolio-block .accordion-item .accordion-body .part2 img{
	transform: rotate(3deg);
	box-shadow: 5px 5px 4px 0px rgb(0, 0, 0, 0.25);
	border-radius: 20px;
	transition: 0.4s;
	width: 500px;
}

.portfolio-block .accordion-item .accordion-body .part2 img:hover{
	transform: scale(1.03);
	/*transition: 0.4s;*/
}

.portfolio-block .accordion-body .main-portfolio-block .part1 .write-button{
	text-transform: none;
	width: 500px;
	font-size: 25px;
	margin-top: 30px;
	position: relative;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.portfolio-block .accordion-body .tags-block{
	position: relative;
	z-index: 1;
	margin-top: 30px;
	font-size: 25px;
}

.portfolio-block .accordion-body .tags{
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
}

.portfolio-block .accordion-body .tags span{
	background: rgb(62, 185, 126, .5);
	border-radius: 10px;
	padding: 10px 15px 10px 15px;
	font-size: 25px;
	line-height: 0.8;
	font-weight: 400;
	box-shadow: 5px 5px 4px 0px rgb(0, 0, 0, .25);
	transition: 0.4s;
}

.portfolio-block .accordion-body .tags span:hover{
	background: var(--second-color);
	/*transition: 0.4s;*/
}

/* Спиннер 1 */
.loader-1 {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  margin:15px auto;
  position: relative;

  background: #DCDCDC;
  box-shadow: -24px 0 #DCDCDC, 24px 0 #DCDCDC;
  box-sizing: border-box;
  animation: shadowPulse 2s linear infinite;
  transform: scale(1.7);
}

@keyframes shadowPulse {
  33% {
    background: #DCDCDC;
    box-shadow: -24px 0 var(--second-color), 24px 0 #DCDCDC;
  }
  66% {
    background: var(--second-color);
    box-shadow: -24px 0 #DCDCDC, 24px 0 #DCDCDC;
  }
  100% {
    background: #DCDCDC;
    box-shadow: -24px 0 #DCDCDC, 24px 0 var(--second-color);
  }
}


/* Транслятор */
/*https://cssloaders.github.io/*/
.loader-1{
	position: absolute;
	left: 49%;
	top: 40%;
}

.translator-block{
	margin-bottom: 0;
}



.translator-block span{
	text-align: center;
	display: block;
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 40px;
}

.translator-block a{
	color: var(--main-color);
	transition: 0.3s;
}

.translator-block a:hover{
	color: var(--third-color);
	/*transition: 0.3s;*/
}

.translator-info-block{
	position: relative;
	overflow: hidden;
}

.translator-info-block p{
	font-size: 20px;
	position: relative;
}

.translator-info-block p b{
	color: var(--main-color);
}

#oc-editor-wrapper{
	height: 485px;
	position: relative;
	margin-top: 15px; 
	border-radius: 10px; 
	box-shadow: 2px 2px 4px 0px gray; 
	border: 1px solid lightgray; 
	transition: 0.3s;
}

.oc-editor-wrapper-fullscreen{
	
	position: fixed !important;
	top: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	right: 0 !important;
	margin: 0 !important;
	z-index: 100 !important;
	border-radius: 0 !important;

	transition: 0.3s;
	background: white;
	height: 100% !important;
}

#oc-editor{
	border-radius: 10px; 
	display: none;
	width: 100%;
	height: 100%;
	
}

#fullscreen-button{
	position: absolute;
	z- index: 2;
	bottom: 10px;
	right: 35px;
	font-size: 20px;
	cursor: pointer;
	display: none;
	font-size: 26px;
	transition: 0.4s;
	color: var(--main-color);
}

#fullscreen-button:hover{
	color: var(--second-color);
	/*transition: 0.4s;*/
}

/*блок языков*/
.languages-random-block{
	position: relative;
	height: 400px;
	width: 100%;
	background: radial-gradient(rgb(72, 184, 123, 0.5), rgb(140, 240, 186, .3));
	overflow: hidden;
	margin-bottom: 0px;
	box-shadow: 5px 5px 4px 0 rgba(0, 0, 0, 0.25);
	margin-top: 20px;
	border-radius: 20px;
}

.languages-random-block a{	
	-webkit-animation: randomLanguageAnimation 8s infinite;
    -moz-animation: randomLanguageAnimation 8s infinite;
    -o-animation: randomLanguageAnimation 8s infinite;
    animation: randomLanguageAnimation 8s infinite;
}

.languages-random-block a:hover{
	color: var(--third-color) !important;
}

@keyframes randomLanguageAnimation {
  0%   { opacity:1; }
  50%  { opacity:0; font-size: 150%; }
  100% { opacity:1; }
}

/*блок входа*/
.login-block{
	position: fixed;
	left: 0;
	right: 0;
	top: 80px;
	bottom: 0;
	z-index: 0;
}

.login-block .glass-part{
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 0;
	backdrop-filter: blur(5px);
}

.login-block-inner{
	width: 855px;
	/*border-radius: 20px;*/
	/*box-shadow: 5px 5px 4px 0 rgb(0, 0, 0, .25);*/
	margin: 0 auto;
	display: flex;
	overflow: hidden;
	position: relative;
	/*height: 528px;*/
	top: calc(100% / 2 - 528px / 2);
	left: calc(100% / 2 - 50%);
	z-index: 1;
	transition: 0.3s;
}

.login-block-inner .left-part, .login-block-inner .right-part{
	padding: 10px;
}

.login-block-inner .left-part, .login-block-inner .right-part{
	width: 50%;
}

.login-block-inner .left-part{
	/*background: var(--main-color);*/
	text-align: center;
	/*color: white;*/
}

.login-block-inner .left-part h2, .login-block-inner .right-part h1{
	margin: 10px 0 30px 0;
	font-size: 27px;
	letter-spacing: 0px;
	text-transform: uppercase;
}
	
.login-block-inner .left-part p{
	font-size: 20px;
	line-height: 1.2;
	margin-top: 30px;
}

.login-block-inner .right-part{
	/*background: #C8E9D8;*/
}

.login-block-inner .right-part h1{
	font-size: 30px;
}

.login-block .form-block input, .login-block .right-part .check-data-block input{
	
	padding: 5px;
}

.login-block .form-block p, .login-block .form-block .right-part .check-data-block p{
	font-size: 24px;
	text-transform: none; 
	font-weight: 400;
	margin: 0;
	margin-bottom: 5px;
}

.login-block .form-block button{
	margin-top: 30px;
	font-size: 24px;
	min-height: 0;
	padding: 5px;
	border-radius: 10px;
}

.login-block .right-part .extra-img{
	position: absolute;
	top: 10px;
	right: 10px;
}

.login-block .right-part .check-data-block .block-part div img{
	height: 45px;
}

.login-block .right-part .attention{
	text-align: center;
	font-size: 18px;
	margin-bottom: 0;
}

/*Политика конфиденциальности*/
.privacy-block{
	margin-top: 40px;
}

.privacy-block h4{
	text-transform: uppercase;
	text-align: center;
	color: var(--main-color);
}

.privacy-block h5{
	margin-bottom: 20px;
}

.privacy-block .ol .li, .privacy-block .descr{
	line-height: 2;
	text-align: justify;
}

.privacy-block .purpose-table{
	border: 1px solid black;
}

.privacy-block .purpose-table td, .privacy-block .purpose-table th{
	padding: 10px;
	border: 1px solid black;
}

.privacy-block .mark{
	background: #C8E9D8;
	font-weight: 500;
	border-radius: 5px;
}

/*Предупреждение о куки*/
.cookie-warning-block{
	background: rgb(255, 180, 85, .2);
	z-index: 3;
	backdrop-filter: blur(20px);
	display: flex;
	gap: 10px;
	padding: 10px;
	align-items: center;
	justify-content: center;
	padding-top: 15px;
	margin-top: -5px;
	position: relative;
	box-shadow: 5px 5px 4px 0 rgb(62, 185, 126, .2);
}

.cookie-warning-empty{
	padding: 10px;
	height: 82px;
	margin-top: -5px;
	position: relative;
	display: none;
}

.cookie-warning-block_fixed{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding-top: 15px;
}

.cookie-warning-block span{
	display: inline-block;
	font-size: 19px;
	margin: 0;
}

.cookie-warning-block .write-button{
	border-radius: 10px;
	font-size: 16px;
	padding: 7px;
	text-transform: none;
	background: rgb(62, 185, 126, .75);
	box-shadow: none;
	cursor: pointer;
}

.cookie-warning-block .write-button:hover, .cookie-warning-block .write-button:focus{
	background: var(--second-color);
}


/* Кнопки аккаунта */
.account-list-item{
	color: #787878;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: 0.4s;
	cursor: pointer;
}

.account-list-item:hover{
	color: var(--second-color);
    /*transition: 0.4s;*/
}

/*Как проходит обучение*/
.platforms-block > div{
	display: flex;
	align-items: center;
}

article img{
	pointer-events: none;
}
