* {
	margin: 0;
	padding: 0;
}
html {
	height: 100%;
}
body {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-size: 14px;
	line-height: 16px;
	font-weight: 400;
	color: #1E1E1E;
	min-height: 100%;
  display: flex;
  flex-direction: column;
}
img, iframe {
	max-width: 100%;
	height: auto;
}
.content {
	width: 1170px;
	margin: auto;
	flex: 1;
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
		.content {
			width: calc(100% - 30px);
			margin: 0 15px;
		}
	}
	@media only screen and (max-width: 767px){
		.content {
			width: calc(100% - 30px);
			margin: 0 15px;
		}
	}
.logo {
	height: 100%;
	background: #FFFFFF;
	margin-right: 90px;
	float: left;
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
		.logo {
			margin-right: 27px;
		}
	}
	@media only screen and (max-width: 767px){
		.logo {
			float: none;
		}
	}
.burger-menu {
	display: none;
}
	@media only screen and (max-width: 767px){
		.burger-menu {
			display: block;
		}
	}
.burger-menu ul a {
	list-style-type: none;
	color: #FFFFFF;
    cursor: pointer;
    text-decoration: none;
}
.menu-btn {
	display: flex;
	align-items: center;
	position: absolute;
	top: 35px;
	right: 15px;
	width: 26px;
	height: 26px;
	cursor: pointer;
	z-index: 2;
}
	@media only screen and (max-width: 767px){
		.menu-btn {
			top: 15px;
		}
	}
.menu-btn > span,
.menu-btn > span::before,
.menu-btn > span::after {
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #616161;
	transition-duration: .25s;
}
.menu-btn > span::before {
	content: '';
	top: -4px;
}
.menu-btn > span::after {
	content: '';
	top: 4px;
}
.menubox{
	display: block;
	position: fixed;
	visibility: hidden;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 25px 0;
	list-style: none;
	background-color: var(--public-site-primary-color);
	opacity: 0.99;
	box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
	transition-duration: .25s;
	z-index: 1;
}
.menubox>li {
  display: block;
  padding: 18px 15px;
  text-decoration: none;
  transition-duration: .25s;
}
.menubox>li.active {
	font-weight: bold;
}
.menu-title {
	font-weight: bold;
	font-size: 28px;
	line-height: 33px;
	color: #FFFFFF;
}
#menu-toggle{
  opacity: 0;
}
#menu-toggle:checked ~ .menu-btn > span{
  transform: rotate(45deg);
}
#menu-toggle:checked ~ .menu-btn > span::before{
  top: 0;
  transform: rotate(0);
}
#menu-toggle:checked ~ .menu-btn > span::after{
  top: 0;
  transform: rotate(90deg);
}
#menu-toggle:checked ~ .menubox{
  visibility: visible;
  right: 0;
}
.main_menu>ul>li {
	display: inline-block;
	margin-right: 30px;
	margin-top: calc(44px / 2 - 16px / 2)
}
	@media only screen and (max-width: 767px){
		.main_menu>ul>li {
			display: none;
		}
		/*.main_menu>ul>li:nth-of-type(5n) {
			display: block;
			float: left;
			margin-left: 45px;
		}*/
	}
.main_menu a {
	color: #1E1E1E;
    cursor: pointer;
    text-decoration: none;
}
.main_menu>ul>li.active {
	font-weight: bold;
}
.main_menu .phone_number
{
	margin-right: 0;
}
.phone_number {
	float: right;
	position: relative;
}
.phone_number:before {
	content: "";
	position: absolute;
	background-size: cover;
	-webkit-mask-image: url(/assets/site/phone-icon.svg);
	mask-image: url(/assets/site/phone-icon.svg);
	-webkit-mask-size: cover;
	mask-size: cover;
	background-color: black;
	height: 23px;
	width: 23px;
	left: calc(-20px - 23px);
	top: calc(-1 * (23px / 2 - 16px / 2));
}
.main_block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
		.main_block {
			margin-top: 30px;
		}
	}
	@media only screen and (max-width: 767px){
		.main_block{
			margin-top: 30px;
		}
	}
h1 {
	font-weight: 700;
	font-size: 42px;
	line-height: 49px;
}
	@media only screen and (max-width: 767px){
		h1 {
			width: calc(100% - 30px);
			font-size: 32px;
			line-height: 37px;
		}
	}
#title_element_image {
	height: auto;
	max-width: 50%;
	float: right;
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
		#title_element_image {
			width: calc(50% - 15px);
			height: auto;
			margin-left: 0px;
			float: right;
		}
	}
	@media only screen and (max-width: 767px){
		#title_element_image {
			display: none;
		}
	}
.title_block {
	float: left;
	max-width: calc(50% - 35px);
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
		.title_block {
			width: 50%;
		}
	}
	@media only screen and (max-width: 767px){
		.title_block {
			width: 100%;
			max-width: none;
		}
	}
#title_block_name {
	font-size: 16px;
	line-height: 22px;
	width: 390px;
	margin-top: 16px;
}
	@media only screen and (max-width: 767px){
		#title_block_name {
			margin-top: 26px;
			width: 100%;
		}
	}
.red_button {
	color: #FFFFFF;
	border: none;

	background: var(--public-site-secondary-color);
}
.red_button:hover,.red_button:active {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), var(--public-site-secondary-color);
}
.red_button_main {
	padding: 18px 62px;
	margin-top: 25px;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	cursor: pointer;;
}
	@media only screen and (max-width: 767px){
		.red_button_main {
			margin-top: 26px;
		}
	}
.courses {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
	@media only screen and (max-width: 767px) {
		.courses {
    		grid-template-columns: repeat(1, 1fr);
		}
	}
	@media only screen and (min-width: 768px) and (max-width: 1279px) {
		.courses {
    		grid-template-columns: repeat(2, 1fr);
		}
	}
h2 {
	margin-top: 80px;
	font-weight: bold;
	font-size: 32px;
	line-height: 37px;
	margin-bottom: 50px;
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
		h2 {
			margin: 40px 0;
		}
	}
header {
	height: 44px;
	padding-top: 30px;
}
	@media only screen and (max-width: 767px){
		header {
			padding-top: 10px;
		}
	}
.courses_block {
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.courses_block:hover {
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1), 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.label_free {
	position: absolute;
	top: 0;
	right: 0;
	padding: 7px 14px;
	color: #FFFFFF;
	border: none;
	font-weight: bold;
	text-transform: uppercase;

	background: var(--public-site-secondary-color);
}
.label_sale {
	position: absolute;
	top: 0;
	right: 0;
	padding: 7px 9px;
	color: #FFFFFF;
	border: none;
	font-weight: bold;
	text-transform: uppercase;

	background: var(--public-site-secondary-color);
}
a:has(.courses_images) {
	width: 100%;
}
.courses_images {
	width: 100%;
    height: 204px;
    display: block;
    object-fit: cover;
}
.courses_block_content {
	padding: 25px 30px 30px 30px;
	overflow: hidden;
}
.courses_name {
	font-weight: bold;
	font-size: 18px;
	line-height: 21px;
}
.courses_name a {
    color: inherit;
    text-decoration: none;
}
.courses_name a:hover {
    text-decoration: underline;
}
.courses_discription {
	margin-top: 10px;
	line-height: 20px;
}
.courses_buy_info {
    overflow: hidden;
    background: white;
    padding: 5px 30px 10px 30px;
    box-sizing: border-box;
    width: 100%;
    margin-top: auto;
}
	@media only screen and (max-width: 767px){
		.courses_buy_info {
			padding-top: 0;
		}
	}
.courses_old_price {
  	position: relative;
	font-size: 16px;
	line-height: 19px;
	margin-right: 22px;
	float: left;
	margin-top: 16px;
}
.courses_old_price:before {
	border-bottom: 3px solid #1E1E1E;
    position: absolute;
    left: 2px;
    top: -1px;
    content: "";
    width: 100%;
    height: 50%;
    transform: rotate(24deg);
}
.courses_price {
	font-weight: bold;
	font-size: 18px;
	line-height: 21px;
	float: left;
	margin-top: 15px;
}
.courses_buy {
	position: relative;
	border-radius: 50%;
	background-color: var(--public-site-primary-color);
	width: 46px;
	height: 46px;
	float: right;
	display: inline-block;
}
.courses_buy:before {
	position: absolute;
	content: "";
	-webkit-mask-image: url(/assets/site/basket-icon.svg);
	mask-image: url(/assets/site/basket-icon.svg);
	-webkit-mask-size: cover;
	mask-size: cover;
	background-color: white;
	width: 22px;
	height: 19px;
	top: 13px;
  right: 12px;
}
.courses_buy:hover {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), var(--public-site-primary-color);
}
footer {
	margin-top: 50px;
	background: var(--public-site-primary-color);
	color: #FFFFFF;
}
footer a {
	color: #FFFFFF;
	text-decoration: none;
}
.footer_container {
	width: 1170px;
	padding-top: 39px;
	padding-bottom: 30px;
	margin: 0 auto;
	overflow: hidden;
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
		.footer_container {
			width: calc(100% - 30px);
		}
	}
	@media only screen and (max-width: 767px){
		.footer_container {
			width: calc(100% - 30px);
			padding: 80px 12px 28px 15px;
		}
	}
.footer_grid {
	display: grid;
	grid-template-areas: "logo menu doc contact";
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
		.footer_grid {
			grid-template-areas: "logo menu doc" "contact contact contact";
			grid-template-rows: 75px 75%;
    		grid-template-columns: 28% 25%;
		}
	}
	@media only screen and (max-width: 767px){
		.footer_grid {
			grid-template-areas: "logo contact" "menu menu" "doc doc";
		}
	}
.column_logo {
	grid-area: logo;
}
.column_menu {
	grid-area: menu;
}
.column_doc {
	grid-area: doc;
}
.column_contact {
	grid-area: contact;
}
.footer_element {
	margin-bottom: 22px;
}
.footer_column ul {
	list-style-type: none;
}
.footer_logo {
	max-width: 100px;
  max-height: 100px;
	float: left;
	margin-right: 110px;
}
	@media only screen and (max-width: 767px){
		.footer_logo {
			margin-right: 110px;
		}
	}
.footer_column {
	display: inline-block;
	margin-top: 10px;
	float: left;
}
.footer_column:nth-of-type(1) {
	margin-right: 71px;
}
.footer_column:nth-of-type(3) {
	float: right;
}
/*	@media only screen and (max-width: 767px){
		.footer_column:nth-of-type(3) {
			order: 1;
		}
		.footer_column:nth-of-type(1) {
			order: 2;
		}
		.footer_column:nth-of-type(2) {
			order: 3;
		}
	}*/
.footer_element_lean_text {
    margin-bottom: 9px;
    font-family: 'Rubik', sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 12px;
	line-height: 17px;
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
		.footer_column .phone_number {
			float: left;
			margin-left: 43px;
		}
	}
.footer_column .phone_number:before {
	background-color: white;
	width: 18px;
	height: 18px;
}
.footer_icon_block {
	margin-top: 36px;
	display: flex;
	justify-content: flex-end;
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
		.footer_icon_block {
			justify-content: flex-start;
		}
	}
.footer_icon {
	color: var(--public-site-primary-color);
	cursor: pointer;
    text-decoration: none;
    background-color: #FFFFFF;
    border-radius: 12px;
    width: 24px;
	height: 24px;
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 15px;
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
		.footer_icon:nth-of-type(1) {
			margin-left: 0px;
		}
	}
.copyright_block {
	padding-top: 36px;
	text-align: center;
	float: left;
	width: 100%;
	font-family: 'Rubik', sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 12px;
	line-height: 17px;
	opacity: 0.5;
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
		.copyright_block {
			padding-top: 71px;
		}
	}
.course_title_block {
	margin-top: 56px;
	width: 100%;
	display: inline-block;
}
	@media only screen and (max-width: 767px){
		.course_title_block {
			margin-top: 0px;
		}
		.course_title_block nav {
			display: none;
		}
	}
.course_title_navigation {
	font-family: Rubik;
	font-style: normal;
	font-weight: 300;
	font-size: 12px;
	line-height: 17px;
	list-style-type: none;
	display: inline-block;
	color: rgba(30, 30, 30, 0.5);
}
.course_title_navigation:nth-of-type(3) {
	color: rgba(30, 30, 30, 1.5);
}
.course_title_navigation a {
    color: inherit;
    text-decoration: none;
}
.course_title_navigation a:hover {
	text-decoration: underline;
}
.course_title_content {
	
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
		.course_title_content{
			
		}
	}
	@media only screen and (max-width: 767px){
		.course_title_content {
			
		}
	}
.course_title_image {
	width: 50%;
	float: right;
    height: auto;
    margin: 0 0 90px 50px;
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
		.course_title_image{
			
		}
	}
	@media only screen and (max-width: 767px){
		.course_title_image:not(.video) {
			display: none;
		}
		.course_title_image.video {
			width: 100%;
			margin-bottom: 30px;
		    margin-left: 0;
		    float: none;
		}
		.course_title_image.video iframe {
			width: 100%;
			height: auto;
			aspect-ratio: 16/9;
		}
	}	
.course_h1 {
	margin-top: 29px;
	margin-bottom: 23px;
	font-size: 32px;
	line-height: 37px;
}
	@media only screen and (max-width: 767px){
		.course_h1 {
			margin-right: 0;
		}
	}
.course_description {
	font-size: 16px;
	line-height: 22px;
}
.lessons_description_block {
	margin-top: 80px;
}
.course_h2 {
	margin-bottom: 25px;
}
.lessons_content {
	display: inline-block;
	width: calc(50% - 30px);
	margin-right: 15px;
	vertical-align: top;
}
.lessons_content:nth-of-type(2n) {
	margin-right: 0;
	margin-left: 15px;
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
		.lessons_content{
			width: 100%;
			margin-right: 0;
		}
		.lessons_content:nth-of-type(2n) {
			margin-left: 0;
		}
	}
	@media only screen and (max-width: 767px){
		.lessons_content {
			width: 100%;
			margin-right: 0;
		}
		.lessons_content:nth-of-type(2n) {
			margin-left: 0;
		}
	}
.lessons_title {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 10px;
	font-weight: bold;
	margin-top: 25px;
}
.lessons_description {
	font-weight: 300;
	font-size: 14px;
	line-height: 20px;
}
.course_h3 {
	margin-top: 80px;
	font-size: 32px;
	margin-bottom: 50px;
	line-height: 37px; 
}	
	@media only screen and (max-width: 767px){
		.course_h3 {
			margin-top: 35px;
    		margin-bottom: 20px;
		}
	}

.course_buying_blocks_container {
    display: grid;
    column-gap: 30px;
    row-gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.course_buying_block {
	background: #FFFFFF;
	box-shadow: 0px 4px 20px var(--public-site-primary-shadow-color);
	border-radius: 8px;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
	@media only screen and (max-width: 767px){
		.course_buying_block {
			width: 100%;
		}
	}	
.course_buying_container {
	padding: 40px;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    gap: 30px;
}
	@media only screen and (max-width: 767px){
		.course_buying_container {
			padding: 40px 15px;
		}
	}	
.course_buying_title {
	font-weight: bold;
	font-size: 22px;
	line-height: 31px;
	margin-bottom: 10px;
}
.course_buying_price {
	font-weight: bold;
	font-size: 32px;
	line-height: 39px;
	margin-bottom: 15px;
	display: inline-block;
}
.course_buying_old_price {
	font-weight: normal;
	position: relative;
	font-size: 24px;
}
.course_buying_old_price:before {
	border-bottom: 3px solid #1E1E1E;
    position: absolute;
    left: 2px;
    top: -1px;
    content: "";
    width: 100%;
    height: 50%;
    transform: rotate(24deg);
}
.course_buying_description_title {
	font-weight: bold;
	font-size: 22px;
	line-height: 31px;
	margin-bottom: 20px;
}
.course_buying_description {
	line-height: 20px;
	display: flex;
	align-items: center;
}
.course_buying_button {
	box-shadow: 0px 4px 20px var(--public-site-secondary-shadow-color);
	padding: 15px;
	font-family: Rubik;
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: 26px;
	text-align: center;
    cursor: pointer;
    width: 100%;
}
	@media only screen and (max-width: 767px){
		.course_buying_button {
		}
	}
.course_buying_doc {
	margin-bottom: 5px;
	font-size: 10px;
	line-height: 14px;
}
.document_navigation {
	margin-top: 50px;
}
	/*@media only screen and (max-width: 767px){
		.document_navigation {
			margin-top: 130px;
		}
	}*/
.document_title_navigation li {
	list-style-type: none;
	display: inline-block;
	color: rgba(30, 30, 30, 0.5);
	font-family: Rubik;
	font-style: normal;
	font-weight: 300;
	font-size: 12px;
	line-height: 17px;
}
.document_title_navigation li:nth-of-type(2){
	color: rgba(30, 30, 30, 1.0);
}
.document_title_navigation a {
    color: inherit;
    text-decoration: none;
}
.document_title_navigation a:hover {
	text-decoration: underline;
}
.document_h1 {
	margin-top: 35px;
	font-weight: bold;
	font-size: 32px;
	line-height: 37px;
}
.document_content {
	margin-top: 40px;
	font-weight: normal;
	font-size: 16px;
	line-height: 22px;
	width: calc(100% - 438px);
	padding-bottom: 30px;
}
	@media only screen and (min-width: 768px) and (max-width: 1279px){
			.document_content{
				width: 100%;
		}
	}
	@media only screen and (max-width: 767px){
		.document_content {
			width: 100%;
		}
	}
ul, ol {
    padding: 0;
    margin: 0 0 10px 25px;
}