@charset "UTF-8";
@font-face {
  font-family: 'Montserrat';
  src:  url('../fonts/Montserrat-Light.woff2') format('woff2'),
        url('../fonts/Montserrat-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src:  url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src:  url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src:  url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
	font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src:  url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ZonaPro';
  src:  url('../fonts/ZonaPro-SemiBold.woff2') format('woff2'),
        url('../fonts/ZonaPro-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
	font-display: swap;
}
@font-face {
  font-family: 'ZonaPro';
  src:  url('../fonts/ZonaPro-Bold.woff2') format('woff2'),
        url('../fonts/ZonaPro-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ZonaPro';
  src:  url('../fonts/ZonaPro-ExtraBold.woff2') format('woff2'),
        url('../fonts/ZonaPro-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/*Обнуление*/
*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}
nav,footer,header,aside{display: block;}
html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;}
input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;max-width:100%;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}
/*--------------------*/
/* body */
body {
	display: flex;
	flex-direction: column;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	background: #fffffe;
	color: #3C4352;
}
@media (max-width:991px) {
	body.lock-scroll {
		overflow: hidden;
	}
}
/* main */
main {
	flex-grow: 1;
}
section {
  padding: 60px 0;
}
@media (max-width:991px) {
  section {
    padding: 45px 0;
  }
}
@media (max-width:767px) {
  section {
    padding: 30px 0;
  }
}
.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}
.section-blue {
	background: #f5f9fa;
}
.section-orange {
	background: rgba(251, 244, 234, 0.4);
}
.style-bg {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.title-h1 {
  font-weight: 700;
  font-size: 42px;
  line-height: 42px;
  margin-bottom: 25px;
}
.title-h2 {
  font-family: 'ZonaPro', sans-serif;
  font-weight: 600;
	font-size: 38px;
	line-height: 45px;
	position: relative;
	margin-bottom: 30px;
}
.title-h2::after {
	content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 3px;
  border-radius: 5px;
  background: #64A02A;
}
.title-h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 35px;
}
@media (max-width:991px) {
  .title-h1 {
    font-size: 38px;
  }
  .title-h2 {
    font-size: 34px;
    margin-bottom: 25px;
  }
  .title-h3 {
    font-size: 30px;
    margin-bottom: 35px;
  }
}
@media (max-width:767px) {
  .title-h1 {
    font-size: 32px;
    line-height: 34px;
  }
  .title-h2 {
    font-size: 26px;
    line-height: 32px;
  }
	.title-h2::after {
		bottom: -10px;
	}
  .title-h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 25px;
  }
}
.text {
	font-size: 18px;
  margin-bottom: 24px;
}
.text-destription {
  margin-bottom: 40px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.margin-auto {
	margin: 0 auto;
}
.padding0 {
	padding: 0;
}
@media (max-width:991px) {
  .text-sm-center {
    text-align: center;
  }
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  .mb-sm-30 {
    margin-bottom: 30px;
  }
	.margin-sm-auto {
		margin: 0 auto;
	}
}
@media (max-width:767px) {
  .mb-xs-30 {
    margin-bottom: 30px;
  }
}
/* button */
.button {
	display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 70px;
	min-width: 230px;
	font-family: 'ZonaPro', sans-serif;
  font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	padding: 10px 33px 10px 33px;
  text-align: center;
  color: #fff;
  outline: none;
	background: linear-gradient(360deg, #FF7E01 0%, #FFB133 100%);
	box-shadow: 0px 3px 0px #FFB233;
	border-radius: 3px;
	transition: ease 0.3s;
}
.button:hover {
	box-shadow: 0px 15px 24px rgba(255, 149, 24, 0.4), 0px 3px 0px #FFB233;
}
.button span{
	position: relative;
	z-index: 1;
}
@media (max-width:767px) {
	.button {
		font-size: 16px;
    line-height: 20px;
    padding: 10px 20px 10px 20px;
    min-height: 55px;
		min-width: 205px;
	}
}
.button:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	background: linear-gradient(360deg, #FF7A00 33.85%, #FF9C1E 100%);
	opacity: 0;
	transition: opacity 0.3s;
}
.button:hover:after {
	opacity: 1;
}
.button:active:after {
	opacity: 1;
	background: linear-gradient(360deg, #FF7A00 33.85%, #FF9C1E 100%);
}
.button .btn__icon {
	z-index: 1;
  width: 18px;
  height: 19px;
  margin: 0;
  position: absolute;
  right: 24px;
}
@media (max-width:767px) {
  .button .btn__icon {
    width: 16px;
    height: 18px;
    right: 16px;
  }
}
.button.btn-buy {
	background: transparent;
	border: 1px solid #FFFFFF;
	box-shadow: none;
}
.button.btn-buy:hover {
	background: transparent;
	border: 1px solid transparent;
}
.button.btn-buy:after {
	background: linear-gradient(360deg, #FF7A00 33.85%, #FF9C1E 100%);
}
.button.btn-buy:active:after {
	background: linear-gradient(360deg, #FF7A00 33.85%, #FF9C1E 100%);
	box-shadow: inset 0px 2px 6px rgba(0, 0, 0, 0.15);
}
.button-arrow {
	position: absolute;
	pointer-events: none;
	right: -95px;
  top: -38px;
}
/* list */
.list {
  margin-bottom: 30px;
  padding-left: 24px;
}
.list li {
	list-style-type: disc;
  font-size: 15px;
  padding-bottom: 5px;
}
.list li::marker {
	color: #3C4352;
	font-size: 12px;
	padding-left: 12px;
}
/* link */
.link {
	color: #3A3F53;
	transition: ease .1s;
}
.link:hover {
	color: #5F94FD;
	font-weight: 700;
	text-decoration: underline;
}
/* header */
.header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
}
.header:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: ease .3s;
	background: transparent;
	z-index: 2;
}


.header-index.header-index-fixed {
  position: fixed;
	background: #fff;
  border-bottom: 1px solid #E6EEF1;
}
.header-index.header-index-fixed:before {
	background: #fff;
}
.header-index.header-index-fixed .header__button .button.btn-buy {
	color: #3C4352;
	border: 1px solid #3C4352;
}
.header-index.header-index-fixed .header__button .button.btn-buy:hover {
	color: #fff;
	border: 1px solid transparent;
}

.header-article .header {
	position: relative;
}
.header__body {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}
@media (max-width:767px) {
	.header__body {
		height: 70px;
	}
}
.header__logo {
	position: relative;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header__logo img {
	max-width: 100%;
	display: block;
}
.header__logo-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: 11px;
	margin-top: 3px;
}
.header__logo-title {
	font-weight: 700;
	font-size: 14px;
	line-height: 14px;
	color: #262626;
}
@media (max-width:450px) {
	.header__logo-title {
		width: 120px;
	}
}
.header__burger {
	display: none;
}
.header__menu {
	display: flex;
	justify-content: space-between;
	height: 100%;
	width: 73%;
}
@media (max-width:1199px) {
	.header__menu {
		width: 70%;
	}
}
@media (max-width:991px) {
	.header__burger {
		display: block;
		position: relative;
		width: 40px;
		height: 40px;
		background: #E7EFF2;
		border-radius: 2px;
		z-index: 3;
	}
	.header__burger span {
		background: #265086;
		position: absolute;
		left: 20%;
		top: 20px;
		width: 60%;
		height: 1px;
		transition: all 0.3s ease 0s;
	}
	.header__burger.active span {
		transform: scale(0);
	}
	.header__burger:before,
	.header__burger:after {
		content: '';
		background: #265086;
		position: absolute;
		width: 60%;
		height: 1px;
		left: 20%;
		transition: all 0.2s ease 0s;
	}
	.header__burger:before {
		top: 9px;
	}
	.header__burger.active:before {
		transform: rotate(45deg);
		top: 20px;
	}
	.header__burger:after {
		bottom: 9px;
	}
	.header__burger.active:after {
		transform: rotate(-45deg);
		bottom: 19px;
	}
	.header.header-open:before {
		background: rgba(255, 255, 255, 0.9);
		opacity: 1;
		z-index: 51;
	}
	.header.header-open .header__burger {
		z-index: 51;
	}
	.header__menu {
		position: absolute;
		justify-content: flex-start;
		align-items: center;
    flex-direction: column;
		top: -165px;
		left: -15px;
		width: calc(100% + 30px);
		height: initial;
		overflow: auto;
		background-color: #fff;
		padding: 0px 10px 15px 10px;
		opacity: 0;
		transition: all 0.3s ease 0s;
	}
	.header__menu.active {
		top: 70px;
		opacity: 1;
	}
	.header__menu .header__list {
		display: flex;
		justify-content: center;
    align-items: center;
    flex-wrap: wrap;
		height: auto;
	}
}
/* @media (max-width:767px) {
	.header__menu.active {
		top: 70px;
	}
	.header__burger {
		width: 30px;
		height: 30px;
	}
	.header__burger span {
		top: 15px;
	}
	.header__burger:before {
		top: 9px;
	}
	.header__burger.active:before {
		top: 14px;
	}
	.header__burger:after {
		bottom: 9px;
	}
	.header__burger.active:after {
		bottom: 14px;
	}
} */
.header__list {
	display: flex;
	align-items: center;
	height: 100%;
	position: relative;
	z-index: 2;
	margin: 0 39px 0 15px;
}
@media (max-width:991px) {
	.header__list {
		display: block;
		margin: 0;
	}
}
.header__list li {
	display: flex;
	align-items: center;
	text-align: center;
	height: 100%;
	margin: 0 16.5px;
}
@media (max-width:1199px) {
	.header__list {
		margin: 0 15px;
	}
	.header__list li {
		margin: 0 7px;
	}
}
@media (max-width:991px) {
	.header__list li {
		margin: 0;
		margin-bottom: 0px;
		height: auto;
	}
	.header__list li a {
		font-size: 14px;
	}
}
@media (max-width:767px) {
	
}
.header__list > li:first-child {
	margin-left: 0px;
}
.header__list > li:last-child {
	margin-right: 0px;
}
.header__link,
.header__menu-text {
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	color: #3C4352;
	position: relative;
	transition: ease 0.3s;
}
.header__link::after,
.header__menu-text::after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 0%;
	height: 3px;
	border-radius: 5px;
	background: #ff9c1f;
	transition: ease 0.3s;
}
@media (max-width:991px) {
	.header__link,
	.header__menu-text {
		font-size: 14px;
		padding: 10px;
    margin: 0 auto 10px;
	}
	.header__link::after, .header__menu-text::after {
		bottom: 6px;
	}
}
.header__menu-text {
	padding-right: 20px;
}
.header__link:hover::after,
.header__menu-text:hover::after {
	/* background-size: 100% 100%; */
	width: 60%;
}
.header__sub-menu {
	display: none;
	position: absolute;
	min-width: 480px;
	left: -34px;
	top: 100%;
	padding: 20px 30px 25px;
	background: #fff;
	box-shadow: 0px 15px 14px rgba(0, 0, 0, 0.2);
}
@media (max-width:991px) {
	.header__sub-menu {
		position: relative;
    min-width: initial;
    left: 0;
		margin-top: 15px;
		padding: 0px;
	}
}
.header__sub-menu .header__link {
	font-weight: 300;
	font-size: 16px;
	line-height: 16px;
	padding-left: 3px;
	margin-left: 20px;
}
@media (min-width:992px) {
	.header__open-menu:hover .header__menu-text {
		color: #5F94FD;
	}
	.header__open-menu:hover .header__sub-menu .header__arrow {
		left: -20px;
	}
	.header__open-menu:hover > .header__arrow:before,
	.header__open-menu:hover > .header__arrow:after {
		background: #5F94FD;;
	}
	.header__open-menu:hover .header__sub-menu .header__arrow:before,
	.header__open-menu:hover .header__sub-menu .header__arrow:after {
		transform: rotate(135deg);
		left: 0;
		top: 5px;
	}
	.header__open-menu:hover .header__sub-menu .header__arrow:before {
		transform: rotate(-135deg);
		left: 0;
		top: 9px;
	}
}
.header__sub-menu li {
	padding-bottom: 18px;
	transition: ease 0.2s;
	margin-right: 0;
	padding-bottom: 0;
}

.header__sub-menu li a {
	padding: 9px 0;
}
@media (min-width:992px) {
	.header__sub-menu .header__link:hover {
		margin-left: 35px;
	}
}
.header__sub-menu li:last-child {
	padding-bottom: 0;
}
.header__open-menu {
	cursor: default;
}
@media (max-width:991px) {
	.header__open-menu {
		display: flex;
    flex-direction: column;
	}
	.header__open-menu > .header__arrow {
		top: -9px;
    right: 5px;
	}
}
@media (min-width:992px) {
	.header__open-menu:hover .header__sub-menu {
		display: block;
		cursor: default;
	}
}
@media (max-width:991px) {
	.sub-menu-active {
		display: block;
	}
	.header__menu-text.sub-menu-active {
		color: #5F94FD;
	}
	.sub-menu-active + .header__arrow:before,
	.sub-menu-active + .header__arrow:after {
		background: #5F94FD;
	}
	.sub-menu-active + .header__arrow:before {
		left: 3px;
	}
	.sub-menu-active + .header__arrow:after {
		left: 6px;
	}
	.header__sub-menu.sub-menu-active .header__arrow:before,
	.header__sub-menu.sub-menu-active .header__arrow:after {
		transform: rotate(135deg);
		left: 0;
		top: 5px;
	}
	.header__sub-menu.sub-menu-active .header__arrow:before {
		transform: rotate(-135deg);
		left: 0;
		top: 9px;
	}
	.header__sub-menu li {
		padding-bottom: 0;
	}
	.header__sub-menu li a {
		padding: 15px;
	}
}
.header__arrow {
	position: relative;
	top: -1px;
  right: 11px;
}
.header__arrow:before,
.header__arrow:after {
	position: absolute;
  top: 0px;
  left: 3px;
  width: 2px;
  height: 6px;
  z-index: 1;
  content: "";
  -webkit-transition: all .23s;
  transition: all .23s;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #3A3F53;
}
.header__arrow:before {
	left: 6px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media (min-width:992px) {
	.header__open-menu:hover .header__arrow:before {
		left: 3px;
	}
	.header__open-menu:hover .header__arrow:after {
		left: 6px;
	}
}
.header__button {
	display: flex;
	align-items: center;
	z-index: 2;
}
.header__button .button {
	min-height: 48px;
	min-width: initial;
	font-size: 14px;
	padding: 3px 35px 3px 35px;
}
.header__button .button.btn-buy {
	margin-left: 12px;
	padding: 3px 38px 3px 38px;
}
.header-article .header__button .button.btn-buy {
	color: #3C4352;
	border: 1px solid #3C4352;
}
.header-article .header__button .button.btn-buy:hover {
	color: #fff;
	border: 1px solid transparent;
}
.header__button .button:before {
	display: none;
}
.header__button .button .btn__icon {
	width: 13px;
	height: 15px;
	right: 16px;
	margin: 0px;
}
.header__button .button.btn-buy .btn__icon {
	width: 19px;
	height: 16px;
}

.header-footer__none-btn .header__button,
.header-footer__none-btn .footer__column-btn {
	display: none;
}

.header-fixed {
	padding-top: 80px;
}
.header-fixed .header {
	position: fixed;
	background: #fff;
	border-bottom: 1px solid #E6EEF1;
}
.header-fixed .header:before {
	background: #fff;
}
.header-fixed .header__button .button.btn-buy {
	color: #3C4352;
	border: 1px solid #3C4352;
}
.header-fixed .header__button .button.btn-buy:hover {
	color: #fff;
	border: 1px solid transparent;
}
.main__header-fixed .aside-menu__sticky,
.main__header-fixed .aside-slide  {
	top: 90px;
}
@media (max-width:767px) {
	.header-fixed {
		padding-top: 70px;
	}
	.main__header-fixed .aside-menu__sticky,
	.main__header-fixed .aside-slide {
		top: 80px;
	}
}

@media (max-width:991px) {
	.header__button .button.btn-buy {
		color: #3C4352;
    border: 1px solid #3C4352;
	}
	.header__button .button.btn-buy:hover {
		color: #fff;
    border: 1px solid transparent;
	}
}
/* hero */
.hero {
	padding: 0;
}
.hero__wrap {
	padding: 220px 0 150px;
	max-width: 1920px;
	margin: 0 auto;
	background: url(../img/hero-bg.webp) center/cover no-repeat;
}
.hero__wrap.hero__wrap-registry {
	padding: 220px 0 70px;
}
@media (max-width:991px) {
	.hero__wrap {
		padding: 150px 0 110px;
	}
	.hero__wrap.hero__wrap-registry {
		padding: 150px 0 50px;
	}
}
@media (max-width:767px) {
	.hero__wrap {
		padding: 100px 0 75px;
		background: url(../img/hero-bg@2.webp) center/cover no-repeat;
	}
	.hero__wrap.hero__wrap-registry {
		padding: 100px 0 50px;
	}
}
.hero__block {
}
.hero-h1 {
	font-family: 'ZonaPro', sans-serif;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 40px;
	line-height: 47px;
	margin-bottom: 16px;
}
.hero__text {
	font-size: 28px;
	margin-bottom: 36px;
}
@media (max-width:991px) {
	.hero-h1 {
		font-size: 36px;
	}
	.hero__text {
		font-size: 24px;
	}
}
@media (max-width:767px) {
	.hero-h1 {
		font-size: 30px;
		line-height: 40px;
	}
	.hero__text {
		font-size: 20px;
    max-width: 280px;
	}
}
@media (max-width:450px) {
	.hero-h1 {
		font-size: 24px;
    line-height: 32px;
	}
}
.hero__bottom {
	display: flex;
	flex-wrap: wrap;
}
.hero__bottom-btn {
	display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-right: 26px;
}
@media (max-width:767px) {
	.hero__bottom {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
	}
	.hero__bottom-btn {
		align-items: flex-start;
		margin-right: 0px;
		margin-bottom: 15px;
	}
}
.hero__registry {
	margin-top: 50px;
	font-size: 18px;
	font-weight: 400;
	line-height: 140%;
}
.registry-link {
	color: #62AB3D;
	transition: ease .3s;
	text-decoration-line: underline;
	text-decoration-color: #62AB3D;
}
.registry-link:hover {
	text-decoration-line: none;
	text-decoration-color: transparent;
}
@media (max-width:991px) {
	.hero__registry {
		margin-top: 40px;
	}
}
@media (max-width:767px) {
	.hero__registry {
		margin-top: 25px;
		text-shadow: 0px 0px 0px black;
	}
}
/* for-windows */
.for-windows {
  font-size: 16px;
	line-height: 22px;
  margin-top: 24px;
}
@media (max-width:991px) {
	.for-windows {
    margin-top: 15px;
	}
}
/* video-popup */
.video-popup {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
  position: relative;
}
.video-popup__text {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'ZonaPro', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	color: #3C4352;
}
.video-popup__btn-wrap {
	display: flex;
	align-items: center;
	transform: rotate(315deg) translate(0%, 0%);
	margin-right: 12px;
	padding: 5px;
	border-radius: 50%;
	border: 1px solid rgba(255, 132, 7, 0);
	transition: ease .3s;
}
.video-popup__btn {
	background: #FFFFFF;
	border: 6px solid #FF8B0D;
	border-right: 6px solid #F2F3F3;
	border-bottom: 6px solid #F2F3F3;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	transition: ease .3s;
}
.video-popup__btn::before {
	content: '';
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
	border: 10px solid transparent;
	border-left: 15px solid rgba(255, 139, 13, 0.5);
	top: 9px;
	left: 18px;
	transform: rotate(45deg) translate(60%, 42%);
	transition: ease .3s;
}
.video-popup__btn::after {
	content: '';
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 6px solid transparent;
	border-left: 10px solid #fff;
	top: 20px;
  left: 27px;
  transform: rotate(45deg) translate(26%, 55%);
}
.video-popup:hover .video-popup__btn {
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
}
.video-popup:active .video-popup__btn-wrap {
	border: 1px solid rgba(255, 132, 7, 0.4);
}
.video-popup:active .video-popup__btn::before {
	border-left: 15px solid rgba(255, 139, 13, 1);
}
.mfp-bg {
	background: #ECF2F5;
	opacity: 0.7;
}
.mfp-wrap .mfp-content {
	border: 15px solid #FFFFFF;
	border-radius: 6px;
}
.mfp-wrap .mfp-close {
	background: #FFFFFF;
	box-shadow: 0px 0px 8px rgba(0, 21, 36, 0.15);
	color: #FF8407;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
	opacity: 1;
	top: -35px;
	right: -70px;
	font-weight: 200;
  font-family: initial;
  font-size: 38px;
	transition: ease .3s;
}
.mfp-wrap .mfp-close:hover {
	opacity: 0.8;
	box-shadow: 0px 4px 20px rgb(0 0 0 / 25%);
}
.mfp-wrap .mfp-close:active  {
	top: -34px;
}
@media (max-width:991px) {
	.mfp-wrap .mfp-close {
		top: -65px;
    right: -15px;
	}
}
.mfp-wrap img.mfp-img {
	padding: 0;
}
.mfp-wrap .mfp-figure:after {
	display: none;
}
.mfp-wrap .mfp-counter {
	right: 20px;
}
/* ZOOM */
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  background: rgba(0, 0, 0, 0.502);
	opacity: 1;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}
/* mfp-fade */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
.section-background__top {
	max-width: 1920px;
	margin: 0 auto;
	background: url(../img/section-background-top.webp) center/cover no-repeat;
}
.section-background__bottom {
	max-width: 1920px;
	margin: 0 auto;
	background: url(../img/section-background-bottom.webp) center/cover no-repeat;
}
@media screen and (max-width: 991px) {
	.section-background__top{background:none}
	.section-background__bottom{background:none}
}
/* textbook */
.textbook {
	padding: 70px 0 50px;
	overflow-x: hidden;
}
@media (max-width:991px) {
	.textbook {
		padding: 50px 0;
	}
}
@media (max-width:767px) {
	.textbook {
		padding: 30px 0;
	}
}
.textbook__wrap {
	max-width: 1920px;
	margin: 0 auto;
	position: relative;
}
.textbook__wrap::before {
	content: url(../img/textbook/bg2.webp);
	position: absolute;
	right: 0;
	top: -50px;
	z-index: 0;
}
.textbook__wrap::after {
	content: url(../img/textbook/bg3.webp);
	position: absolute;
	left: 0;
	bottom: -80px;
	z-index: 0;
}
@media (max-width:991px) {
	.textbook__wrap::before {
		top: -40px;
	}
	.textbook__wrap::after {
		bottom: -50px;
	}
}
@media (max-width:767px) {
	.textbook__wrap::before {
		top: -20px;
	}
	.textbook__wrap::after {
		bottom: -30px;
	}
}
@media (max-width:399px) {
	.textbook__wrap::after {
		display: none;
	}
}
.textbook .title-h2-black {
  font-size: 25px;
	margin-bottom: 30px;
}
.textbook-text {
	line-height: 33px;
	text-align: center;
	margin-bottom: 40px;
}
@media (max-width: 767px) {
	.textbook .title-h2-black {
		font-size: 22px;
		line-height: 28px;
		margin-bottom: 20px;
	}
	.textbook-text {
		line-height: 28px;
    margin-bottom: 20px;
	}
}
@media (max-width: 399px) {
	.textbook .title-h2-black {
    font-size: 18px;
    line-height: 22px;
	}
}
.textbook-interest__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 60px -15px 10px;
	position: relative;
	z-index: 1;
}
@media (max-width: 767px) {
	.textbook-interest__row {
		margin: 30px -15px 10px;
	}
}
.textbook-interest__column {
	width: 33.333%;
	display: flex;
	justify-content: center;
	/* min-height: 420px; */
  padding: 0px 15px;
	margin-bottom: 30px;
}
@media (max-width:991px) {
	.textbook-interest__column {
		width: 50%;
		min-height: auto;
	}
}
@media (max-width:767px) {
	.textbook-interest__column {
		margin-bottom: 20px;
	}
}
@media (max-width: 600px) {
	.textbook-interest__column {
		width: 100%;
	}
}
.textbook-interest__columns-item {
	display: flex;
	flex-direction: column;
	width: 100%;
	border: 1px solid #F3F4F6;
	background: #fffffe;
	border-radius: 6px;
	transition: ease .3s;
}
.textbook-interest__columns-item:hover {
	box-shadow: 0px 6px 50px rgba(0, 21, 36, 0.15);
}
.textbook-interest__columns-item.textbook-interest__columns-item-none-hover:hover {
	box-shadow: none;
}
.textbook-interest__item-image {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 0;
	position: relative;
	transition: ease 0.3s;
	padding-bottom: 61.85%;
}
.textbook-interest__item-image img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
}
.textbook-interest__item-ltitle {
	text-align: center;
	padding: 21px 10px 25px;
	font-weight: 600;
	font-size: 22px;
	line-height: 27px;
	color: #3C4352;
	transition: ease .3s;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.textbook-interest__item-text {
	display: flex;
	flex-direction: column;
	transition: ease .3s;
	/* visibility: hidden;
	opacity: 0;
	height: 0; */
	opacity: 1;
	visibility: visible;
	height: initial;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #3C4352;
	padding: 0px 25px 10px;
	position: relative;
	transition: ease .3s;
  top: -12px;
}
.textbook-interest__columns-item:hover .textbook-interest__item-text {
	opacity: 1;
	visibility: visible;
	height: initial;
}
@media (max-width:991px) {
	.textbook-interest__item-text {
		opacity: 1;
		visibility: visible;
		height: initial;
	}
}
@media (max-width:767px) {
	.textbook-interest__item-text {
		padding: 0px 15px 0px;
	}
}
.textbook-interest__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	color: rgba(60, 67, 82, 0.8);
	margin-top: 10px;
}
.textbook-interest__btn:hover {
	text-decoration: underline;
}
.textbook-interest__btn img {
	margin-right: 8px;
}
.textbook-bottom {
	display: flex;
	justify-content: center;
	align-items: center;
}
.textbook-wrapper {
    position: relative;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    
    padding: 50px 90px 60px;
}
.textbook-slide .swiper-slide {
	visibility: hidden;
	opacity: 0;
}
.textbook-slide .swiper-slide.swiper-slide-visible {
	visibility: visible;
	opacity: 1;
	display: flex;
	height: auto;
}
.textbook-slide .textbook-interest__column {
	width: 100%;
	min-height: initial;
	align-items: initial;
}
.textbook-interest__item-image.image-popup {
	position: relative;
}
.textbook-interest__item-image.image-popup::after {
	content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%) scale(0);
  transition: ease .3s;
  z-index: 1;
  background: url(../img/article/zoom.svg) center/cover no-repeat;
}
.textbook-interest__item-image.image-popup:hover::after {
	transform: translate(-50%, -50%) scale(1);
}
.textbook-slide .textbook-interest__item-ltitle {
	padding: 24px 10px 24px;
}
.textbook-slide .textbook-interest__item-text {
	top: 0;
	opacity: 1;
	height: initial;
	visibility: visible;
	font-size: 14px;
	padding: 12px 15px 0px;
}
.textbook-slide .swiper-button-prev,
.textbook-slide-video .swiper-button-prev {
	top: 30%;
	left: -60px;
}
.textbook-slide .swiper-button-next,
.textbook-slide-video .swiper-button-next {
	top: 30%;
	right: -60px;
}
@media (max-width:1400px) {
	.textbook-slide .swiper-button-prev,
	.textbook-slide-video .swiper-button-prev {
		top: 30%;
		left: -5px;
	}
	.textbook-slide .swiper-button-next,
	.textbook-slide-video .swiper-button-next {
		top: 30%;
		right: -5px;
	}
}
@media (max-width:767px) {
	.textbook-slide .swiper-button-prev,
	.textbook-slide-video .swiper-button-prev {
		top: 45%;
		left: 0;
	}
	.textbook-slide .swiper-button-next,
	.textbook-slide-video .swiper-button-next {
		top: 45%;
		right: 0;
	}
}
.textbook-interest__columns-link .textbook-interest__item-ltitle {
	padding: 24px 24px 10px;
	align-items: flex-start;
	text-align: left;
}
.textbook-interest__columns-link .textbook-interest__item-text {
	padding: 12px 0 0;
	font-size: 14px;
	top: 0;
	text-align: left;
}
.textbook-slide .tag-cloud {
	padding: 0 24px 0;
}

.textbook-slide-video {
	margin: 30px -15px 45px;
}
.textbook-slide-video .textbook-interest__column {
	width: 100%;
	align-items: initial;
}
.textbook-slide-video .swiper-slide.swiper-slide-visible {
	visibility: visible;
	opacity: 1;
	display: flex;
	height: auto;
}
/* .textbook-slide-video .swiper-slide {
	visibility: hidden;
	opacity: 0;
} */
.textbook-interest__columns-link.play-in-popup .textbook-interest__item-image::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 74px;
	height: 74px;
	transform: translate(-50%, -50%);
	z-index: 1;
	background: url(../img/article/play-video.svg) center/cover no-repeat;
	background-size: 74px;
}
.textbook-interest__columns-link.play-in-popup .textbook-interest__item-image::after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: none;
  background: linear-gradient(180deg, rgba(46, 46, 54, 0.8) 0%, rgba(6, 12, 33, 0.88) 112.54%);
  opacity: 0.5;
  transition: ease 0.4s;
}
.textbook-interest__columns-link.play-in-popup:hover .textbook-interest__item-image::after {
	background: linear-gradient(180deg, rgba(46, 46, 54, 0.8) 0%, rgba(6, 12, 33, 0.88) 112.54%);
	opacity: 0;
	transition: ease 0.4s;
}
.textbook-slide-video .textbook-interest__item-ltitle {
	padding: 15px;
}
.textbook-slide-video .textbook-interest__item-text {
	top: 0;
}
.btn-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
/* section-tabs */
.section-tabs {
	padding: 50px 0 50px;
}
@media (max-width:991px) {
	.section-tabs {
		padding: 40px 0;
	}
}
@media (max-width:767px) {
	.section-tabs {
		padding: 30px 0;
	}
}
.section-tabs .title-h2-black {
	margin-bottom: 50px;
}
@media (max-width:991px) {
	.section-tabs .title-h2-black {
		margin-bottom: 25px;
	}
}
.tabs-block {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
	margin-top: 50px;
}
@media (max-width:767px) {
	.tabs-block {
		margin-top: 30px;
		flex-direction: column;
	}
}
.swiper-tabs__container {
	position: relative;
	width: 60%;
	padding-bottom: 36.7%;
	margin-right: 20px;
  margin-left: 12.5px;
}
@media (max-width:991px) {
	.swiper-tabs__container {
		width: 50%;
		padding-bottom: 33.7%;
		margin-left: 0;
	}
}
@media (max-width:767px) {
	.swiper-tabs__container {
		width: 100%;
		padding-bottom: 60%;
	}
}
#swiper-tabs,
#swiper-tabs .swiper-slide img,
#swiper-tabs .swiper-slide video {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}
#swiper-tabs .swiper-slide img,
#swiper-tabs .swiper-slide video {
	opacity: 0;
	transition: ease .3s;
}
#swiper-tabs .swiper-slide-active img,
#swiper-tabs .swiper-slide-active video {
	opacity: 1;
}
#swiper-tabs .swiper-slide {
	border: 20px solid rgba(255, 255, 255, 0);
	border-radius: 6px;
}
#swiper-tabs .swiper-slide-next,
#swiper-tabs .swiper-slide-prev {
	border: 20px solid rgba(255, 255, 255, 0.7);
}
#swiper-tabs .swiper-slide-active {
	border: 20px solid #FFFFFF;
}

#swiper-tabs-one,
#swiper-tabs-one .swiper-slide img,
#swiper-tabs-one .swiper-slide video {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}
#swiper-tabs-one .swiper-slide img,
#swiper-tabs-one .swiper-slide video {
	opacity: 0;
	transition: ease .3s;
}
#swiper-tabs-one .swiper-slide-active img,
#swiper-tabs-one .swiper-slide-active video {
	opacity: 1;
}
#swiper-tabs-one .swiper-slide {
	border: 20px solid rgba(255, 255, 255, 0);
	border-radius: 6px;
}
#swiper-tabs-one .swiper-slide-next,
#swiper-tabs-one .swiper-slide-prev {
	border: 20px solid rgba(255, 255, 255, 0.7);
}
#swiper-tabs-one .swiper-slide-active {
	border: 20px solid #FFFFFF;
}

#swiper-tabs-two,
#swiper-tabs-two .swiper-slide img,
#swiper-tabs-two .swiper-slide video {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}
#swiper-tabs-two .swiper-slide img,
#swiper-tabs-two .swiper-slide video {
	opacity: 0;
	transition: ease .3s;
}
#swiper-tabs-two .swiper-slide-active img,
#swiper-tabs-two .swiper-slide-active video {
	opacity: 1;
}
#swiper-tabs-two .swiper-slide {
	border: 20px solid rgba(255, 255, 255, 0);
	border-radius: 6px;
}
#swiper-tabs-two .swiper-slide-next,
#swiper-tabs-two .swiper-slide-prev {
	border: 20px solid rgba(255, 255, 255, 0.7);
}
#swiper-tabs-two .swiper-slide-active {
	border: 20px solid #FFFFFF;
}

.tabs-navigation {
	display: flex;
	width: 40%;
	padding-right: 13px;
}
@media (max-width:991px) {
	.tabs-navigation {
		width: 50%;
	}
}
@media (max-width:767px) {
	.tabs-navigation {
		width: 100%;
		padding: 0;
		margin-bottom: 15px;
	}
}
.tabs-links-container {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	padding: 0;
	list-style-type: none;
	margin: 0;
}
.tabs-link,
.tabs-link-one,
.tabs-link-two {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 60px;
	cursor: pointer;
	font-size: 22px;
	position: relative;
	z-index: 1;
	transition: ease .3s;
	padding: 5px 20px 5px 20px;
	margin-bottom: 8px;
}
.tabs-link-one::after {
	content: '↓';
	position: absolute;
	right: 12px;
	top: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid #3C4352;
	color: #3C4352;
	border-radius: 50%;
	font-size: 16px;
  font-family: monospace;
  font-weight: 500;
	transition: ease .3s;
}
.tabs-link-one:hover::after {
	border: 1px solid #64A02A;
	color: #64A02A;
}
.tabs-link-one:hover .tabs-link__number {
	color: #64A02A;
}
.tabs-link-one .tabs-link__top {
	padding-right: 45px;
}
.tabs-link-one .tabs-link-body {
	border-left: none;
	font-size: 16px;
	line-height: 22px;
	margin-top: 0;
}
.tabs-link.active,
.tabs-link-one.active,
.tabs-link-two.active {
	height: initial;
	min-height: 285px;
}
.tabs-link-one.active {
	background: linear-gradient(172.11deg, #FCFEFE 46.28%, rgba(255, 255, 255, 0) 95.69%);
	border-radius: 6px;
}
.tabs-link-one.active::after {
	border: 1px solid #64A02A;
	color: #64A02A;
	transform: rotate(180deg);
	right: 13px;
	top: 17px;
}
@media (max-width:1199px) {
	.tabs-link.active,
	.tabs-link-one.active,
	.tabs-link-two.active {
		height: initial;
		min-height: inherit;
	}
}
@media (max-width:991px) {
	.tabs-link,
	.tabs-link-one,
	.tabs-link-two {
		padding: 5px 0px 5px 0px;
	}
}
@media (max-width:767px) {
	.tabs-link,
	.tabs-link-one,
	.tabs-link-two {
		font-size: 20px;
	}
}
/* .tabs-link:hover {
	background: #5E5E7A;
} */
.tabs-link:last-child,
.tabs-link-one:last-child,
.tabs-link-two:last-child {
	margin-bottom: 0;
}
.tabs-link__top {
	display: flex;
	align-items: center;
}
.tabs-link__number {
	font-family: 'ZonaPro', sans-serif;
	font-weight: 700;
	font-size: 30px;
	margin-right: 30px;
	transition: ease .3s;
}
.tabs-link.active .tabs-link__number,
.tabs-link-one.active .tabs-link__number,
.tabs-link-two.active .tabs-link__number {
	color: #64A02A;
}
.tabs-link-body {
	width: 100%;
	height: 0;
	opacity: 0;
	font-size: 18px;
	margin: 30px 0 0 15px;
	padding: 0 20px 25px 55px;
	border-left: 1px solid #C2C6D1;
}
.tabs-link.active .tabs-link-body,
.tabs-link-one.active .tabs-link-body,
.tabs-link-two.active .tabs-link-body {
	opacity: 1;
	visibility: visible;
	height: initial;
	transition: ease .3s;
}
@media (max-width:991px) {
	.tabs-link-body {
		margin: 15px 0 0 15px;
    padding: 5px 15px 20px 20px;
	}
}
/* section-catalog */
.section-catalog {
	padding: 50px 0px 80px;
}
@media (max-width:991px) {
	.section-catalog {
		padding: 40px 0px 40px;
	}
}
@media (max-width:767px) {
	.section-catalog {
		padding: 30px 0px 30px;
	}
}
.section-catalog .title-h2,
.section-catalog .text {
	padding: 0 15px;
}
.catalog {
	max-width: 1950px;
	margin: 40px auto;
	overflow: hidden;
	padding: 10px 15px;
}
@media (max-width:767px) {
	.catalog {
		margin: 20px auto;
	}
}
.catalog .swiper-wrapper {
	transition-timing-function: linear !important; 
}
.catalog .swiper-slide {
	border-radius: 6px;
	box-shadow: 0px 0px 8px rgba(0, 21, 36, 0.15);
	transition: shadow .3s;
}
.catalog .swiper-slide:hover {
	box-shadow: none;
}
/* .catalog .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide > .catalog-block  {
	opacity: 0.5;
	filter: blur(2px);
}
.catalog .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide > .catalog-block  {
	opacity: 0.5;
	filter: blur(2px);
}
@media (max-width:1500px) {
	.catalog .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide > .catalog-block  {
		opacity: initial;
		filter: initial;
	}
	.catalog .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide > .catalog-block  {
		opacity: initial;
		filter: initial;
	}

	.catalog .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide > .catalog-block  {
		opacity: 0.5;
		filter: blur(2px);
	}
	.catalog .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide > .catalog-block  {
		opacity: 0.5;
		filter: blur(2px);
	}
}
@media (max-width:1300px) {
	.catalog .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide > .catalog-block  {
		opacity: initial;
		filter: initial;
	}
	.catalog .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide > .catalog-block  {
		opacity: initial;
		filter: initial;
	}

	.catalog .swiper-slide-next + .swiper-slide + .swiper-slide > .catalog-block  {
		opacity: 0.5;
		filter: blur(2px);
	}
	.catalog .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide > .catalog-block  {
		opacity: 0.5;
		filter: blur(2px);
	}
}
@media (max-width:991px) {
	.catalog .swiper-slide-next + .swiper-slide + .swiper-slide > .catalog-block  {
		opacity: initial;
		filter: initial;
	}
	.catalog .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide > .catalog-block  {
		opacity: initial;
		filter: initial;
	}

	.catalog .swiper-slide-next + .swiper-slide + .swiper-slide > .catalog-block  {
		opacity: 0.5;
		filter: blur(2px);
	}
}
@media (max-width:767px) {
	.catalog .swiper-slide-next + .swiper-slide + .swiper-slide > .catalog-block  {
		opacity: initial;
		filter: initial;
	}

	.catalog .swiper-slide-next + .swiper-slide > .catalog-block  {
		opacity: 0.5;
		filter: blur(2px);
	}
} */
.catalog-block {
	display: flex;
	background-image: linear-gradient(90deg, #ffcc92 0%, #ffac60 50%, #ff8507 100%);
	border-radius: 6px;
	border: 6px solid #fff;
	transition: opacity .3s;
}
.catalog-block:hover {
	padding: 6px;
	border: 0px solid transparent;
}
.catalog-img {
	display: flex;
	justify-content: center;
	align-content: center;
	height: 170px;
	padding: 20px;
	width: 100%;
	background: #fff;
}
.catalog-img img {
	object-fit: contain;
}
.catalog-explanation {
	font-size: 14px;
	line-height: 20px;
	margin: 65px auto 0;
	display: flex;
	justify-content: center;
	transform: translateX(-40%);
	max-width: 230px;
	position: relative;
	z-index: 1;
}
.catalog-explanation::after {
	content: '';
  position: absolute;
  left: -70px;
  top: -36px;
  width: 70px;
  height: 60px;
  background: url(../img/catalog-explanation.svg) no-repeat;
}
.catalog-explanation::before {
	content: '';
  position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	left: -70px;
	top: -95px;
  width: 65px;
  height: 65px;
  background: url(../img/catalog-grab.svg) no-repeat;
}
@media (max-width:767px) {
	.catalog-explanation {
		transform: translateX(0%);
		max-width: 215px;
	}
	.catalog-explanation::after {
		display: none;
	}
	.catalog-explanation::before {
		left: -50px;
    top: -5px;
		background-size: 50px;
	}
}
/* section-textures */
.section-textures {
	background: #DCE8EC;
}
.tabs-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 60px 0 30px;
}
@media (max-width:767px) {
	.tabs-wrapper {
		margin: 40px 0 30px;
	}
}
.tabs {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 35%;
	padding: 45px 0;
	position: relative;
}
@media (max-width:1300px) {
	.tabs {
		width: 40%;
		padding: 20px 0 45px;
	}
}
@media (max-width:1100px) {
	.tabs {
		width: 50%;
		padding: 0px 0 45px;
	}
}
@media (max-width:991px) {
	.tabs {
		width: 100%;
	}
}
.tab {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	margin: 7.5px;
}
.tab-img {
	border: 3px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: ease .3s;
	width: 90px;
	height: 90px;
	opacity: 0.6;
}
@media (max-width:767px) {
	.tab-img {
		width: 75px;
    height: 75px;
	}
}
.tab:hover .tab-img {
	opacity: 1;
}
.tab-img::after {
	content: url(../img/tab-focus.svg);
	background: rgba(196, 196, 196, 0.6);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	border-radius: 6px;
	transition: ease .3s;
	opacity: 0;
}
.tab:hover .tab-img::after {
	opacity: 1;
}
.tab.active .tab-img {
	border: 3px solid #FFFFFF;
	opacity: 1;
}
.tabs-content {
	width: 65%;
	display: flex;
	flex-wrap: wrap;
	padding-right: 65px;
}
@media (max-width:1300px) {
	.tabs-content {
		width: 60%;
		padding-right: 35px;
	}
}
@media (max-width:1100px) {
	.tabs-content {
		width: 50%;
		padding-right: 20px;
	}
}
@media (max-width:991px) {
	.tabs-content {
		width: 75%;
		margin: 0 auto 20px;
		padding-right: 0px;
	}
}
@media (max-width:767px) {
	.tabs-content {
		width: 100%;
	}
}
.tab-item {
	width: 100%;
}
.tab-body {
}
.tab-item-img {
	border: 15px solid #FFFFFF;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 0;
	position: relative;
	transition: ease 0.3s;
	padding-bottom: 53.8%;
}
.tab-item-img img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
}
.tab-explanation {
	font-size: 14px;
	line-height: 20px;
	margin: 0 auto 0;
	display: flex;
	justify-content: center;
	transform: translateX(-40%);
	max-width: 230px;
	position: absolute;
	z-index: 1;
	bottom: -10px;
	left: 50%;
}
.tab-explanation::after {
	content: '';
	position: absolute;
	left: -70px;
	top: -36px;
	width: 70px;
	height: 60px;
	background: url(../img/catalog-explanation.svg) no-repeat;
}
@media (max-width:499px) {
	.tab-explanation {
		transform: translateX(-50%);
		max-width: initial;
		width: 75%;
	}
	.tab-explanation::after {
		display: none;
	}
}
/* accordion */
.accordion-block {
	margin: 24px 0;
}
.accordion {
	margin-bottom: 30px;
  background: #E6EFF1;
	border-radius: 6px;
	transition: ease .3s;
}
.accordion:hover,
.accordion.in {
  background: #FFFFFF;
	opacity: 0.7;
	box-shadow: 0px 0px 8px rgba(0, 21, 36, 0.15);
}
.accordion-heading {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 55px 5px 40px;
	min-height: 70px;
  font-weight: 600;
	font-size: 18px;
	transition: ease .3s;
	position: relative;
}
@media (max-width:767px) {
	.accordion-heading {
    font-size: 16px;
		padding: 5px 45px 5px 15px;
	}
}
.accordion-heading.in::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: calc(100% - 80px);
	height: 1px;
	margin: 0 auto;
	background: rgba(187, 210, 218, 0.5);
}
.spoiler-arrow {
  position: relative;
  margin-left: 14px;
  top: -3px;
}
.spoiler-arrow:before,
.spoiler-arrow:after {
	position: absolute;
  top: 0px;
  left: 0px;
  width: 2px;
  height: 24px;
  z-index: 1;
  content: "";
  -webkit-transition: all .23s;
  transition: all .23s;
  transform: rotate(90deg);
  background: #000000;
}
.spoiler-arrow:before {
	left: 0px;
	transform: rotate(0deg);
}
.spoiler-title.closed .spoiler-arrow:before {
	left: 3px;
}
.spoiler-title.closed .spoiler-arrow:after {
	left: 8px;
}
.accordion-heading .spoiler-arrow {
	top: -12px;
	right: -10px;
}
.accordion-heading .spoiler-arrow:before,
.accordion-heading .spoiler-arrow:after {
	background: #3C4352;
	width: 2px;
	height: 24px;
	transition: ease .3s;
}
.accordion-heading.in .spoiler-arrow:before {
	transform: rotate(-45deg);
}
.accordion-heading.in .spoiler-arrow:after {
	transform: rotate(45deg);
}
.accordion-collapse {
	display: none;
  background-color: #fff;
	border-radius: 6px;
	padding: 16px 100px 15px 40px;
}
@media (max-width:767px) {
	.accordion-collapse {
		padding: 15px;
	}
}
.accordion-collapse p:last-child {
	margin-bottom: 5px;
}
@media (max-width:767px) {
	.accordion-collapse p {
		font-size: 16px;
		line-height: 26px;
	}
}
.accordion-body__text {
	font-size: 16px;
	font-weight: 600;
}
/* footer */
.footer {
	background: #15616C;
}
.footer__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 35px 0;
}
.footer__row.footer__row-two {
	justify-content: flex-start;
}
@media (max-width:991px) {
	.footer__row {
		margin: 25px 0 20px;
		justify-content: center;
	}
}
@media (max-width:767px) {
	.footer__row {
		margin-bottom: 0px;
	}
}
.footer__column {
	padding-right: 15px;
	opacity: 0.8;
}
.footer__row.footer__row-two .footer__column {
	padding-right: 100px;
}
.footer__column-btn .footer__columns-item {
	display: flex;
	flex-direction: column;
}
.footer__column-btn .button {
	line-height: 20px;
	align-self: center;
	max-width: 205px;
	min-width: 142px;
	min-height: 48px;
	font-size: 14px;
	padding: 3px 30px 3px 30px;
	margin-bottom: 15px;
}
@media (max-width:991px) {
	.footer__column,
	.footer__row.footer__row-two .footer__column {
		padding: 0 15px 40px;
		flex: 0 0 50%;
	}
}
@media (max-width:767px) {
	.footer__column,
	.footer__row.footer__row-two .footer__column {
		padding: 0 0px 40px;
		flex: 0 0 100%;
	}
}
.footer__column:last-child {
	padding-right: 0;
}
@media (max-width:991px) {
	.footer__columns-item {
		text-align: center;
	}
}
.footer__item-title {
	font-family: 'ZonaPro', sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: #FFFFFF;
	margin-bottom: 13px;
}
.footer__item-link {
	display: block;
	line-height: 34px;
	color: #ffffff;
	transition: ease 0.3s;
}
@media (max-width:991px) {
	.footer__item-link{
		line-height: 30px;
	}
}
.footer__item-link:hover {
	color: #FF9202;
	text-decoration: underline;
}
.footer__copy {
	background: #0B3C45;
	font-weight: 300;
	font-size: 14px;
	line-height: 14px;
	color: #fff;
	padding: 12px 0 12px;
}
@media (max-width:767px) {
	.footer__copy {
		line-height: 20px;
    padding: 10px;
	}
}
.footer__copy-block {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.footer__copy-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 23px;
	font-family: 'ZonaPro', sans-serif;
	font-weight: 700;
	font-size: 12px;
	line-height: 14px;
	padding: 5px 0 5px;
}
.footer__copy-logo img {
	margin-right: 8px;
	position: relative;
  top: -2px;
}
/* swiper */
.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: '→';
  color: #B2B7CC;
  transition: ease .3s;
}
.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: '←';
  color: #B2B7CC;
  transition: ease .3s;
}
.swiper-button-next, 
.swiper-button-prev {
	width: 65px;
	height: 65px;
	background: #FFFFFF;
	border-radius: 50%;
	border: 2px solid #fff;
	transition: ease .3s;
}
.swiper-button-next:hover, 
.swiper-button-prev:hover {
	border: 2px solid #FF8508;
}
.swiper-button-next:after, 
.swiper-button-prev:after {
	font-size: 29px;
	font-family: monospace;
	color: #FF8205;
}
@media (max-width:767px) {
	.swiper-button-next, 
	.swiper-button-prev {
		width: 42px;
		height: 42px;
	}
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
	pointer-events: initial;
}

.swiper-horizontal .swiper-pagination {
	bottom: 0;
	padding: 5px 0;
}
.swiper-pagination-bullet {
	transition: ease .3s;
}
.swiper-pagination-bullet:hover {
	opacity: 1;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	opacity: 1;
}
.swiper-pagination-bullet {
  background: linear-gradient(0deg, #B0B0B0, #B0B0B0), linear-gradient(0deg, #DDDDDD, #DDDDDD), #DDDDDD;
  opacity: 0.4;
  box-shadow: 0px 13px 27px -2px rgba(37, 45, 108, 0.08);
  width: 17px;
  height: 17px;
}
/* section-benefits */
.section-benefits {
}
.benefits {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 60px -15px 30px;
}
.benefits-column {
	width: 277px;
	margin: 0 15px;
	margin-bottom: 30px;
}
.benefits-column-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 70px 15px;
	background: #f8fbfc;
	box-shadow: 0px 0px 8px rgba(0, 21, 36, 0.15);
	border-radius: 6px;
}
.benefits-img {
	display: flex;
	justify-content: center;
	align-items: center;
  max-width: 66px;
	max-height: 66px;
	min-height: 66px;
	margin-bottom: 24px;
}
.benefits-text {
	text-align: center;
}
/* section-examples */
.section-examples {
	padding: 60px 15px;
}
@media (max-width:991px) {
	.section-examples {
		padding: 40px 15px;
	}
}
@media (max-width:767px) {
	.section-examples {
		padding: 30px 15px;
	}
}
.examples {
	position: relative;
	max-width: 1440px;
	margin: 40px auto;
	overflow: hidden;
	padding: 10px 0px 55px;
}
.examples .swiper-slide {
	transform: scale(0.8);
	opacity: 0.3;
	transition: ease .3s;
}
.examples .swiper-slide.swiper-slide-active {
	transform: scale(1);
	opacity: 1;
	background: transparent;
	position: relative;
}
.examples-block {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: ease 0.3s;
	padding-bottom: 61%;
}
.examples .swiper-slide.swiper-slide-active .examples-block::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(180deg, rgba(67, 67, 67, 0) 53.45%, rgba(67,67,67, 0.85) 90.85%);
}
.examples-block img,
.examples-block video {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
	border-radius: 3px;
}
.examples-text {
	position: absolute;
	text-align: center;
	bottom: 50px;
	color: #FFFFFF;
	left: 0;
	right: 0;
	z-index: 1;
}
@media (max-width:991px) {
	.examples-text {
		bottom: 30px;
	}
}
.examples .swiper-button-prev {
	left: 21.5%;
}
.examples .swiper-button-next {
	right: 21.5%;
}
@media (max-width:500px) {
	.examples .swiper-button-prev {
		left: 5px;
	}
	.examples .swiper-button-next {
		right: 5px;
	}
}

/* section-reviews */
.section-reviews {
}
.text-num {
	font-weight: 600;
	font-size: 22px;
}
.reviews-wrapper {
	position: relative;
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
	overflow: hidden;
	padding: 50px 90px 60px;
}
@media (max-width:1400px) {
	.reviews-wrapper {
		padding: 50px 15px 60px;
	}
}
@media (max-width:991px) {
	.reviews-wrapper {
		padding: 40px 15px 40px;
	}
}
@media (max-width:767px) {
	.reviews-wrapper {
		padding: 30px 15px 30px;
	}
}
.reviews {
	width: 100%;
	overflow: hidden;
	padding: 50px 0 60px;
}
.reviews .swiper-slide {
	display: flex;
	height: initial;
}
.reviews-slider__item {
	background: #FFFFFF;
	border: 1px solid #F3F4F6;
	border-radius: 6px;
	padding: 30px;
	position: relative;
	transition: ease .3s;
}
.reviews .swiper-slide-active + .swiper-slide .reviews-slider__item {
	box-shadow: 0px 6px 50px rgba(0, 21, 36, 0.15);
}
@media (max-width:991px) {
	.reviews .swiper-slide-active .reviews-slider__item {
		box-shadow: 0px 6px 50px rgba(0, 21, 36, 0.15);
	}
	.reviews .swiper-slide-active + .swiper-slide .reviews-slider__item {
		box-shadow: none;
	}
}
.reviews-slider__quotes {
	position: absolute;
	top: -10px;
	right: 7%;
	background: #FF8407;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.reviews-slider__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 10px;
}
.reviews-slider__img {
	width: 64px;
	height: 64px;
	text-align: center;
	overflow: hidden;
	border-radius: 50%;
	margin: 0 auto;
}
.reviews-slider__right {
	margin-bottom: 10px;
}
.reviews-slider__item-name {
	font-size: 22px;
	line-height: 27px;
	margin-right: 10px;
}
.reviews-slider__item-prof {
}
.reviews__ratings-stars {
	display: flex;
}
@media (max-width:500px) {
	.reviews-slider__item {
		padding: 15px;
	}
	.reviews .swiper-slide-active .reviews-slider__item {
		box-shadow: none;
	}
	.reviews-slider__item-text {
		font-size: 14px;
	}
}
.reviews .swiper-button-next {
	right: 0;
}
.reviews .swiper-button-prev {
	left: 0;
}
.reviews .swiper-button-next:hover, 
.reviews .swiper-button-prev:hover {
	border: 2px solid #FF8508;
}
@media (max-width:1400px) {
	.reviews .swiper-button-next {
		top: initial;
		bottom: 50px;
		right: 20%;
	}
	.reviews .swiper-button-prev {
		top: initial;
		bottom: 50px;
		left: 20%;
	}
}
@media (max-width:991px) {
	.reviews .swiper-button-next {
		bottom: 30px;
		right: 10%;
	}
	.reviews .swiper-button-prev {
		bottom: 30px;
		left: 10%;
	}
}
.reviews.swiper-horizontal .swiper-pagination {
	bottom: 50px;
}
/* section-downloads */
.section-downloads {
	padding: 0;
}
.downloads-wrap {
	max-width: 1920px;
	padding: 0 15px;
	margin: 0 auto;
	background: url(../img/downloads-bg.webp) right bottom no-repeat;
}
@media (max-width:1510px) {
	.downloads-wrap {
		background-position: 120% 100%;
	}
}
@media (max-width:1199px) {
	.downloads-wrap {
		background-position: 135% 100%;
	}
}
@media (max-width:991px) {
	.downloads-wrap {
		background-position: 190% 100%;
		padding: 0;
	}
}
@media (max-width:830px) {
	.downloads-wrap {
		background-position: 215% 100%;
		padding: 0;
	}
}
@media (max-width:767px) {
	.downloads-wrap {
		background-position: 100% 0;
    background-size: 400px;
	}
}
@media (max-width:450px) {
	.downloads-wrap {
    background-size: 320px;
	}
}
@media (max-width:350px) {
	.downloads-wrap {
    background-size: 250px;
	}
}
.downloads-block {
	display: flex;
	flex-wrap: wrap;
}
.downloads-left {
	width: 55%;
	padding: 80px 0 60px;
}
@media (max-width:991px) {
	.downloads-left {
		width: 60%;
		padding: 50px 15px 50px 0;
	}
}
@media (max-width:767px) {
	.downloads-left {
		width: 100%;
		padding: 25px 0 25px 0;
		order: 2;
		text-align: center;
	}
}
.downloads-left .for-windows {
	margin-left: 31px;
}
@media (max-width:767px) {
	.downloads-left .for-windows {
		margin-left: 0px;
	}
}
.downloads-title {
	font-family: 'ZonaPro', sans-serif;
	font-weight: 600;
	font-size: 34px;
	line-height: 40px;
	margin-bottom: 35px;
}
.downloads-block .list li {
	font-size: 18px;
}
@media (max-width:767px) {
	.downloads-left .downloads-title {
		text-align: center;
		font-size: 26px;
    line-height: 32px;
	}
	.downloads-left .list {
		text-align: left;
	}
}
.downloads-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 45%;
}
.downloads-img {
	max-width: 400px;
}
@media (max-width:991px) {
	.downloads-right {
		width: 40%;
	}
}
@media (max-width:767px) {
	.downloads-right {
		width: 100%;
		order: 1;
		padding: 20px 0;
	}
}
/* #toTop */
#toTop {
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
  visibility: hidden;
	width: 62px;
	height: 62px;
	text-align: center;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0px 0px 20px 2px rgb(0 0 0 / 5%);
	position: fixed;
	bottom: 50px;
	right: 30px;
	transition: ease .3s;
	z-index: 10;
}
#toTop:hover {
	box-shadow: 0px 0px 20px 2px rgb(0 0 0 / 15%);
}

#toTop.show {
  opacity: 1;
  visibility: visible;
}
.chevron {
	position: relative;
	width: 28px;
	height: 4px;
	cursor: pointer;
	transition: transform .3s, -webkit-transform .3s;
	transform: rotate(0);
	opacity: 1;
}
@media (max-width:767px) {
	.chevron {
		width: 14px;
		height: 3px;
	}
}
.chevron:before,
.chevron:after {
	position: absolute;
	top: 0;
	display: block;
	width: 50%;
	height: 100%;
	content: ' ';
	background: #262938;
}
.chevron:before {
	left: 0;
	transform: skew(0deg, -40deg);
	border-top-left-radius: 2px;
	border-bottom-left-radius: 15px;
}
.chevron:after {
	right: 0;
	width: 50%;
	transform: skew(0deg, 40deg);
	border-top-right-radius: 2px;
	border-bottom-right-radius: 15px;
}
@media (max-width:767px) {
	#toTop {
		width: 35px;
    height: 35px;
		bottom: 30px;
	}
}
/* article */
.article-hero {
	padding: 54px 0 30px;
	max-width: 1920px;
	margin: 0 auto;
	background: #faefe0 url(../img/article/article-hero-bg.webp) right no-repeat;
}
@media (max-width:767px) {
	.article-hero {
		padding: 35px 0 15px;
	}
}
.article-hero__block {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: 50px -15px;
}
@media (max-width:991px) {
	.article-hero__block {
		margin: 40px -15px;
	}
}
@media (max-width:767px) {
	.article-hero__block {
		margin: 30px -15px;
	}
}
.img-slider,
.img-slider-text {
	width: 60%;
	padding: 0 15px 0;
	position: relative;
}
@media (max-width:991px) {
	.img-slider,
	.img-slider-text {
		width: 80%;
		margin: 0 auto 60px;
	}
}
@media (max-width:767px) {
	.img-slider,
	.img-slider-text {
		width: 100%;
	}
}
.img-slider .swiper-wrapper {
	box-shadow: 0px 31px 50px rgba(0, 21, 36, 0.15);
}
.img-slider-text .swiper-slide {
	opacity: 0 !important;
}
.img-slider-text .swiper-slide.swiper-slide-visible {
	opacity: 1 !important;
}
.img-slider .swiper-slide,
.img-slider-text .swiper-slide-block {
	position: relative;
	border: 15px solid #FFFFFF;
	border-radius: 6px;
	padding-bottom: 54%;
}
.img-slider-text .swiper-slide-block {
	box-shadow: 0px 0px 20px rgba(0, 21, 36, 0.15);
}
.img-slider .swiper-slide img,
.img-slider-text .swiper-slide-block img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.img-slider-text p {
	margin: 10px auto 0;
	text-align: center;
}
.img-slider.swiper-horizontal .swiper-pagination,
.img-slider-text.swiper-horizontal .swiper-pagination {
	width: 100px !important;
	bottom: -50px;
}
.img-slider .swiper-pagination-bullet,
.img-slider-text .swiper-pagination-bullet {
	background: #FF8B0E;
	box-shadow: none;
	width: 10px;
	height: 10px;
	transform: scale(1);
	transition: ease .3s;
	opacity: 0.3;
}
.img-slider .swiper-pagination-bullet:hover,
.img-slider-text .swiper-pagination-bullet:hover {
	background: linear-gradient(360deg, #FF7E01 0%, #FF9C1E 100%);
	opacity: 1;
}
.img-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main,
.img-slider-text .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	background: transparent;
	padding: 5px;
	border: 0.5px solid #FF8508;
	opacity: 1;
	position: relative;
	top: -5px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 22px;
	height: 22px;
}
.img-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main::after,
.img-slider-text .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main::after {
	background: linear-gradient(360deg, #FF7E01 0%, #FF9C1E 100%);
	content: '';
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.article-hero__links {
	width: 40%;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
	align-self: center;
}
@media (max-width:991px) {
	.article-hero__links {
		width: 100%;
		align-items: center;
	}
}
@media (max-width:767px) {
	.article-hero__links {
		align-items: flex-start;
	}
}
.article-hero__link {
	display: flex;
	color: #3C4352;
	line-height: 42px;
	margin-bottom: 16px;
}
.article-hero__link:hover {
	color: #3C714E;
}
@media (max-width:767px) {
	.article-hero__link {
		line-height: 32px;
	}
}
.article-hero__link-num {
  font-family: 'ZonaPro', sans-serif;
	font-size: 24px;
	font-weight: 700;
	margin-right: 15px;
}
.article-hero__link-text {
	position: relative;
	padding-right: 10px;
}
.article-hero__link-arrow {
	position: relative;
}
.article-hero__link-arrow::before,
.article-hero__link-arrow::after {
	content: '';
	position: absolute;
	top: 7px;
	right: -13px;
	width: 2px;
	height: 8px;
	z-index: 1;
	background: #3C4352;
	transition: all .23s;
	transform: rotate(135deg);
}
.article-hero__link-arrow:before {
	top: 7px;
	right: -17px;
	transform: rotate(225deg);
}
.article-hero__link:hover .article-hero__link-arrow::before,
.article-hero__link:hover .article-hero__link-arrow::after {
	color: #3C714E;
}
.article-hero .for-windows {
	margin-left: 31px;
}
@media (max-width:991px) {
	.article-hero .for-windows {
		margin-left: 0px;
		text-align: center;
	}
}
@media (max-width:767px) {
	.article-hero .for-windows {
		text-align: left;
		margin-left: 24px;
	}
}
/* breadcrumbs */
.section-breadcrumbs {
	max-width: 1920px;
	margin: 0 auto;
	padding: 14px 0;
	border-top: 1px solid #E6EEF1;
	border-bottom: 1px solid #E6EEF1;
}
#breadcrumbs {
	font-size: 12px;
}
#breadcrumbs a {
	color: #3C4352;
	padding: 17px 0;
	transition: ease .3s;
}
#breadcrumbs a:hover {
	color: #15616C;
	text-decoration: underline;
}
#breadcrumbs > span {
	position: relative;
}
#breadcrumbs > span::after {
	content: '→';
	font-size: 13px;
	font-family: sans-serif;
	padding: 0px 3px;
}
#breadcrumbs > span:last-child {
	color: #15616C;
}
#breadcrumbs > span:last-child::after {
	display: none;
}
.section-breadcrumbs + .section-article {
	padding: 35px 0 35px;
}
.section-article {
	padding: 75px 0 35px;
}
@media (max-width:991px) {
	.section-article {
		padding: 50px 0 35px;
	}
}
@media (max-width:767px) {
	.section-article {
		padding: 35px 0 35px;
	}
}
.section-article__top {
	padding: 18px 0 35px;
}
.article-block {
	display: flex;
	flex-wrap: wrap;
  position: relative;
}
@media (max-width:767px) {
	.article-block {
		flex-direction: column;
	}
}
.article-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 40px;
}
@media (max-width:767px) {
	.article-box  {
		flex-direction: column;
	}
}
.article-box__img {
	width: 165px;
	margin-right: 40px;
	position: relative;
	padding-bottom: 175.75px;
}
.article-box__img-01 {
	width: 162px;
	margin-right: 40px;
	position: relative;
	padding-bottom: 139.75px;
}
.article-box__img img, .article-box__img-01 img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
@media (max-width:767px) {
	.article-box__img, .article-box__img-01 {
		margin: 0 auto 10px;
	}
}
.article-box__text {
	flex: 1;
}
.article-box__title {
  font-family: 'ZonaPro', sans-serif;
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 24px;
}
.article {
	width: calc(100% - 410px);
	margin: 0 auto;
}
@media (max-width: 1199px) {
	.article {
		width: calc(100% - 330px);
	}
}
@media (max-width: 991px) {
	.article {
		width: 100%;
	}
}
.article-contents {
	border: 1px solid #3C714E;
	border-radius: 6px;
	padding: 36px;
	margin-bottom: 45px;
}
@media (max-width:767px) {
	.article-contents {
		padding: 15px;
	}
}
.article-contents__title {
  font-family: 'ZonaPro', sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 26px;
	margin-bottom: 24px;
}
.article-contents li {
	list-style-type: none;
	margin-bottom: 10px;
}
.article-contents li img {
	margin-left: 5px;
}
.article-contents .scroll-link {
	font-weight: 600;
	font-size: 16px;
	color: #3C4352;
	line-height: 22px;
	transition: ease .3s;
}
.article-contents .scroll-link:hover {
	color: #15616C;
	text-decoration: underline;
}
.author {
	margin: 48px 0 24px;
	display: flex;
	flex-wrap: wrap;
}
.author-img {
	margin-right: 16px;
	overflow: hidden;
	width: 60px;
	height: 60px;
	border-radius: 50%;
}
.author-block {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.author-name {
  font-family: 'ZonaPro', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 21px;
}
.author-name a {
	text-decoration: underline;
	color: #376EAE;
}
.author-article {
	font-size: 14px;
	line-height: 20px;
	opacity: 0.7;
}
.author-article a {
	text-decoration: underline;
}
.author-block:hover a {
	text-decoration: none;
}
.author-ratings {
	display: flex;
	align-items: center;
}
.author-stars {
	display: flex;
	margin-right: 8px;
}
.author-stars img {
	margin-right: 2px;
}
.author-date {
	font-size: 14px;
	line-height: 20px;
}

.title-h1-article {
  font-family: 'ZonaPro', sans-serif;
	font-weight: 600;
	font-size: 38px;
	line-height: 45px;
	position: relative;
	margin-bottom: 40px;
}
.title-h1-article::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 88px;
	height: 3px;
	border-radius: 5px;
	background: #64A02A;
}
.title-h1-article.text-center {
  text-align: center;
}
.title-h1-article.text-center::after {
	content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 3px;
  border-radius: 5px;
  background: #64A02A;
}
.title-h1-article.none-border {
	margin-bottom: 24px;
}
.title-h1-article.none-border::after {
	display: none;
}
@media (max-width: 991px) {
	.title-h1-article {
    font-size: 34px;
	}
}
@media (max-width: 767px) {
	.title-h1-article {
    font-size: 26px;
    line-height: 32px;
	}
}
.tag-cloud {
	margin-bottom: 24px;
}
.button-transparent {
	border: 0.5px solid rgba(60, 67, 82, 0.4);
	border-radius: 3px;
	display: inline-block;
	color: #3C4352;
	font-size: 12px;
	line-height: 20px;
	padding: 3px 6px 3px 6px;
	background: transparent;
	text-transform: none;
	min-height: 26px;
	margin-right: 8px;
	margin-bottom: 8px;
	transition: ease .3s;
}
.button-transparent:hover {
	border: 0.5px solid #3C4352;
}
.article-text {
	margin-bottom: 24px;
}
.article-text a,
a.text-link {
	color: rgb(81, 88, 177);
	text-decoration: underline;
}
.article-text a:hover,
a.text-link:hover {
	text-decoration: none;
}
.title-h2-article {
  font-family: 'ZonaPro', sans-serif;
	font-weight: 600;
	font-size: 30px;
	line-height: 35px;
	margin: 48px 0 24px;
}
.img-article {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.img-block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 24px 0 24px;
	position: relative;
  padding-bottom: 66%;
}
.img-block.img-block__min {
  padding-bottom: 53%;
}
.img-block.img-block__big {
  padding-bottom: 70%;
}
.img-article .img-block {
	margin: 24px 0 0;
}
.img-article .img-block__text {
	margin: 10px 0 24px;
}
.img-block img {
	border: 15px solid #FFFFFF;
	border-radius: 6px;
	box-shadow: 0px 0px 8px rgba(0, 21, 36, 0.3);
	position: absolute;
	left: 50%;
	top: 50%;
	vertical-align: middle;
	transform: translate(-50%, -50%);
	object-fit: cover;
	display: flex;
	margin: 0 auto;
	max-height: 100%;
}
@media (max-width:767px) {
	.img-block img {
		width: 100%;
	}
}
.img-block__text {
	font-size: 15px;
	margin-top: 10px;
}
.list-dots {
	padding-left: 25px;
	margin: 24px 0;
}
.list-dots li {
	list-style-type: disc;
	font-size: 15px;
}
.list-dots li::marker {
	font-size: 12px;
}
@media (max-width:767px) {
	.list-dots li {
		margin-bottom: 5px;
	}
}
.article-green {
	display: flex;
	flex-wrap: wrap;
	background: #3C714E url(../img/article/article-green.webp) right no-repeat;
	background-size: auto 100%;
	border-radius: 6px;
	color: #EBEBEB;
	padding: 0 34px 0 48px;
	margin: 48px 0 48px;
}
@media (max-width:767px) {
	.article-green  {
		padding: 0 25px;
	}
}
@media (max-width:650px) {
	.article-green  {
		background-size: 200px;
		background-position: right bottom;
	}
}
.article-green__text {
	width: 60%;
	padding: 34px 15px 60px 0;
}
@media (max-width:650px) {
	.article-green__text {
		width: 100%;
		padding: 20px 0px 40px 0;
	}
}
.article-green__title {
  font-family: 'ZonaPro', sans-serif;
	font-weight: 600;
	font-size: 34px;
	line-height: 40px;
	margin-bottom: 12px;
}
@media (max-width:767px) {
	.article-green__title {
		font-size: 26px;
    line-height: 30px;
	}
}
.article-green p {
	font-size: 15px;
	line-height: 24px;
	margin-bottom: 8px;
}
.article-green__img {
	width: 40%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
	position: relative;
}
.article-green__img img {
	position: absolute;
	left: auto;
	top: auto;
	bottom: auto;
	right: auto;
	width: 100%;
	height: 100%;
	max-width: 230px;
	max-height: 245px;
	object-fit: cover;
}
@media (max-width:650px) {
	.article-green__img {
		width: 100%;
		padding-bottom: 245px;
	}
	.article-green__img img {
		bottom: 10px;
	}
}
.article-green__btn {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.article-green__btn .button {
	margin-right: 12px;
	margin-top: 10px;
}
.article-green__btn .for-windows {
	font-size: 14px;
	margin: 10px 0 0;
}

.create-project {
	display: flex;
	flex-wrap: wrap;
	margin: 48px 0 48px;
}
.create-project__text {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	max-width: 245px;
	margin-bottom: 20px;
}
.create-project__arrow {
	width: 43px;
	color: #FF8205;
	font-family: monospace;
	text-align: right;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	margin-left: 5px;
}
.create-project__arrow::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -2px;
	height: 2px;
	width: 100%;
	background: #FF8205;
}
.create-project__btn .article-btn {
	margin: 0;
}

.article-ratings {
	margin: 48px 0 25px;
}
.article-ratings__title {
	font-weight: 700;
	font-size: 22px;
	line-height: 26px;
	margin-bottom: 16px;
}
/* rating */
#page-rating-block {
  height: 24px;
  line-height: 24px;
  cursor: default;
}
#page-rating-block .hidden {
  visibility: hidden;
}
.rating-img {
  cursor: pointer;
  vertical-align: middle;
  margin: 0 -3px;
  border-left : 3px solid transparent;
  border-right: 3px solid transparent;
  margin-top: -3px;
}
.rating-img.hover {
  padding: 16px 16px 0 0;
  width  : 0;
  height : 0;
  background: url('../img/ratingStarHover.webp');
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}
.rating-img.nocursor {
  cursor: default;
}
#page-rating-value {
  vertical-align: top;
  font-size: 15px;
  color: #404040;
  font-weight: 600;
}
#page-rating-uservalue {
  display: inline-block;
  min-width: 8ch;
}
#page-rating-uservalue span {
	font-weight: 700;
}
#page-rating-block {
  position: relative;
	top: 1px;
  display: flex; 
	align-items: center;
  height: 16px;
  line-height: 16px;
  font-size: inherit; 
}
#page-rating-block .hidden { 
  visibility: visible; 
  display: none; 
}
#page-rating-block .rating-img { 
  margin: -3px -2px 0 -2px; 
}
#page-rating-value { 
  margin: 0 7px; 
}
#page-rating-info  {
	display: flex;
	text-align: center;
  font-size: 14px;
  vertical-align: middle;
  margin-left: 4px;
	line-height: 17px;
  opacity: 0.7;
}
#page-rating-count {
	margin: 0 2px 0 5px;
	font-weight: 700;
}
.title-h2-article__line {
	font-family: 'ZonaPro', sans-serif;
	font-weight: 600;
	font-size: 30px;
	line-height: 35px;
	position: relative;
	margin-bottom: 40px;
}
.title-h2-article__line::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 88px;
	height: 3px;
	border-radius: 5px;
	background: #64A02A;
}
/* aside-menu */
.aside-menu {
	position: relative;
  flex: 0 0 auto;
  align-self: start;
  top: 10px;
  right: 0;
	width: 320px;
	margin-left: 90px;
	padding: 0 5px 15px;
}
.aside-menu__sticky {
	position: sticky;
	max-height: 90vh;
	overflow-y: auto;
}
.aside-slide {
	position: sticky;
	max-height: 90vh;
	overflow-y: hidden;
}
.aside-slide .swiper-slide {
	height: auto;
}
.aside-slide .swiper-scrollbar-drag {
	cursor: pointer;
	background-color: #FF8205;
}
@media (max-width:1199px) {
	.aside-menu {
		margin-left: 10px;
	}
}
@media (max-width:991px) {
	.aside-menu {
		display: none;
		width: 100%;
    margin-left: 0;
    height: initial;
	}
}
.aside-menu .tag-cloud {
	padding: 0 15px;
	margin-bottom: 20px;
}
.aside-menu__title {
  font-family: 'ZonaPro', sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 26px;
	display: flex;
	align-items: center;
	padding: 0 15px;
	margin-bottom: 4px;
}
.aside-menu__title img {
	margin-right: 8px;
}
.aside-card {
	padding: 15px;
	border-radius: 6px;
	transition: ease .3s;
}
.aside-card:hover {
	box-shadow: 0px 0px 8px rgba(0, 21, 36, 0.15);
}
.aside-card__link {
	display: flex;
	flex-direction: column;
	color: #3C4352;
}
.aside-card__link-img {
	border-radius: 6px;
	margin-bottom: 16px;
}
.aside-card__title {
  font-family: 'ZonaPro', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 21px;
	margin-bottom: 10px;
}
.aside-card__text {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 16px;
}
.aside-card__video {
	display: flex;
	flex-direction: column;
	position: relative;
	color: #fff;
	border-radius: 6px;
	margin: 15px;
	padding: 180px 15px 15px;
	transition: ease .3s;
	overflow: hidden;
}
.aside-card__video::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50px;
	width: 82px;
	height: 82px;
	transform: translateX(-50%);
	z-index: 1;
	background: url(../img/article/play-video.svg) center/cover no-repeat;
}
.aside-card__video::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: ease .3s;
	background: rgba(67,67,67, 0.45);
}
.aside-card__video:hover::after {
	background: rgba(67,67,67, 0.7);
}
.aside-card__video-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
  height: 100%;
	z-index: 0;
	object-fit: cover;
}
.aside-card__video .aside-card__title {
	z-index: 1;
}
.aside-card__video .aside-card__text {
	z-index: 1;
	margin-bottom: 7px;
}
.aside-card__background {
	background: url(../img/article/aside4.webp) top right no-repeat;
	background-size: 100%;
	margin: 0 15px;
}
.aside-card__background .aside-card__link-img {
	align-self: flex-end;
	max-width: 234px;
}
.aside-card__background .button {
	font-size: 16px;
	line-height: 20px;
	padding: 10px 20px 10px 20px;
	min-height: 55px;
	min-width: initial;
	align-self: flex-start;
}
.aside-contents {
	margin-bottom: 48px;
}
.aside-contents__title {
	font-family: 'ZonaPro', sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 26px;
	margin-bottom: 24px;
}
.aside-contents .list-number {
	padding-right: 10px;
}
.aside-contents li {
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	padding-left: 12px;
	margin-bottom: 14px;
}
.aside-contents li:nth-child(n+10) {
	padding-left: 0;
	margin-left: 12px;
}
.aside-contents li a {
	display: flex;
	align-items: flex-start;
	color: #3C4352;
}
.aside-contents li a:hover {
	transition: ease .3s;
	color: #15616C;
	text-decoration: underline;
}
.aside-contents li a img {
	margin-left: 10px;
}
.aside-contents li .list-dots {
	padding-left: 0px;
	margin: 10px 0 24px;
}
.aside-contents li .list-dots li {
	padding-left: 0px;
	margin-bottom: 10px;
}
.article-hero__background {
	background: #fef7f0;
}
.article-hero .author {
	margin: 0 0 24px;
}
.article-hero-h2 {
	font-family: 'ZonaPro', sans-serif;
	font-weight: 600;
	font-size: 38px;
	line-height: 45px;
	margin-bottom: 24px;
}
@media (max-width: 991px) {
	.article-hero-h2 {
    font-size: 34px;
	}
}
@media (max-width: 767px) {
	.article-hero-h2 {
    font-size: 26px;
    line-height: 32px;
	}
}
.article-hero__data {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(187, 210, 218, 0.4);
	margin-bottom: 24px;
}
.article-hero__data-ratings {
	padding-right: 33px;
	line-height: 20px;
	margin-right: 33px;
	margin-bottom: 10px;
	border-right: 1px solid #EBEBEB;
}
.article-hero__data-ratings #page-rating-count {
	font-weight: 400;
}
.article-hero__data-ratings #page-rating-uservalue span {
	font-weight: 400;
}
.article-hero__data-text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-right: 1px solid #EBEBEB;
	padding-right: 33px;
	margin-right: 33px;
	font-size: 14px;
	line-height: 20px;
	color: rgba(60, 67, 82, 0.8);
	margin-bottom: 10px;
}
.article-hero__data-text:last-child {
	border-right: none;
}
.article-hero__data-text img {
	margin-right: 8px;
}
.article-hero__white {
	background: #fffffe;
	padding: 48px 0 6px;
}
.article-hero__data-full {
	/* justify-content: space-between; */
}
.article-hero__data-full .article-hero__data-text {
	padding-right: 0;
	margin-right: 0;
	justify-content: center;
	/* flex: auto; */
	padding: 0 33px;
}
.article-hero__data-full .article-hero__data-text:first-child,
.article-hero__data-full .article-hero__data-text.article-hero__data-ratings {
	justify-content: flex-start;
	padding-left: 0;
}
.article-hero__data-full .article-hero__data-text:last-child {
	justify-content: flex-end;
	padding-right: 0;
}
.article-hero__data-full .article-hero__data-text .button-transparent {
	margin-bottom: 2px;
  margin-top: 2px;
}

.article-hero__data.article-hero__data-author {
	justify-content: space-between;
}
.article-hero__data-author .author {
	margin: 0 20px 10px 0;
	padding-right: 20px;
	position: relative;
}
.article-hero__data-author .author::after {
	content: '';
	position: absolute;
	right: 0;
	top: 20px;
	width: 1px;
	height: 20px;
	background: #EBEBEB;
}
.article-hero__data-author .author-name a {
	font-size: 16px;
}
.article-hero__data-author .author-article {
	font-size: 12px;
}
.article-hero__data-author .article-hero__data-text {
	padding-right: 20px;
  margin-right: 20px;
}
.article-hero__data-author .article-hero__data-ratings {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}
@media (max-width: 991px) {
	.article-hero__data.article-hero__data-author {
		justify-content: flex-start;
	}
	.article-hero__data-full {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
	}
	.article-hero__data-full .article-hero__data-text {
		padding: 0;
		border: none;
	}
}
/* video-thumbnail */
.video-thumbnail-block {
  max-width: 100%;
	margin: 48px 0 24px;
}
.video-thumbnail {
  position: relative;
  padding-bottom: 56.2%;
  height: 0;
  overflow: hidden;
  border-radius: 6px;
}
.video-thumbnail iframe,
.video-thumbnail object,
.video-thumbnail embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-thumbnail__image {
  width: 100%;
	height: 100%;
	object-fit: cover;
}
.video-thumbnail__preview {
  position: relative;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-thumbnail__content {
  display: none;
}
.video-thumbnail--active .video-thumbnail__preview {
  display: none;
}
.video-thumbnail--active .video-thumbnail__content {
	display: block;
	position: absolute;
	max-width: 100%;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.video-thumbnail__preview::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 136px;
	height: 136px;
	transform: translate(-50%, -50%);
	z-index: 1;
	background: url(../img/article/play-video.svg) center/cover no-repeat;
}
.video-thumbnail__preview:after{
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
	height: 100%;
	background: none;
  background: linear-gradient(180deg, rgba(46, 46, 54, 0.8) 0%, rgba(6, 12, 33, 0.88) 112.54%);
	opacity: 0.5;
	transition: ease 0.4s;
}
.video-thumbnail__preview:hover:after {
  background: linear-gradient(180deg, rgba(46, 46, 54, 0.8) 0%, rgba(6, 12, 33, 0.88) 112.54%);
	opacity: 0;
	transition: ease 0.4s;
}
@media (max-width:767px) {
	.video-thumbnail__preview::before {
		width: 82px;
		height: 82px;
	}
}
/* youtube-popup */
.youtube-popup {
	display: flex;
	flex-direction: column;
	position: relative;
	padding-bottom: 56.2%;
	height: 0;
	overflow: hidden;
	border-radius: 6px;
	margin: 48px 0 24px;
}
.youtube-popup::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 136px;
	height: 136px;
	transform: translate(-50%, -50%);
	z-index: 1;
	background: url(../img/article/play-video.svg) center/cover no-repeat;
}
.youtube-popup:after{
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
	height: 100%;
	background: none;
  background: linear-gradient(180deg, rgba(46, 46, 54, 0.8) 0%, rgba(6, 12, 33, 0.88) 112.54%);
	opacity: 0.5;
	transition: ease 0.4s;
}
.youtube-popup:hover:after {
  background: linear-gradient(180deg, rgba(46, 46, 54, 0.8) 0%, rgba(6, 12, 33, 0.88) 112.54%);
	opacity: 0;
	transition: ease 0.4s;
}
.youtube-popup img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	object-fit: cover;
}
@media (max-width:767px) {
	.youtube-popup::before {
		width: 82px;
		height: 82px;
	}
}
.article-img-slider {
	position: relative;
	margin: 24px 0 64px;
}
.article-img-slider .img-slider {
	width: initial;
	padding: 0;
}
.article-img-slider .img-slider .swiper-wrapper {
	box-shadow: none;
}
.article-img-slider .img-slider .swiper-slide {
	border: none;
}
.article-img-slider .img-slider .swiper-slide img {
	border-radius: 6px;
}
.article-img-slider .swiper-button-next {
	right: -70px;
}
.article-img-slider .swiper-button-prev {
	left: -70px;
}
@media (max-width:1300px) {
	.article-img-slider .swiper-button-next {
		right: -25px;
	}
	.article-img-slider .swiper-button-prev {
		left: -25px;
	}
}
@media (max-width:991px) {
	.article-img-slider .swiper-button-next {
		right: -15px;
	}
	.article-img-slider .swiper-button-prev {
		left: -15px;
	}
}
.related-article {
	display: flex;
	flex-wrap: wrap;
	padding: 18px 0;
	background: #FFFFFF;
	box-shadow: 0px 0px 8px rgba(0, 21, 36, 0.15);
	border-radius: 6px;
	max-width: 585px;
	transition: ease .3s;
	position: relative;
	margin: 48px auto;
}
.related-article:hover {
	box-shadow: 0px 31px 50px rgba(0, 21, 36, 0.15);
}
@media (max-width:600px) {
	.related-article {
		align-items: center;
		margin: 24px auto;
	}
}
.related-article__link {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	color: #3C4352;
}
.related-article__img {
	width: 260px;
	max-width: 100%;
	margin: 0 18px;
	position: relative;
	padding-bottom: 164px;
}
.related-article__img img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
}
.related-article__img img {
	border-radius: 6px;
}
@media (max-width:600px) {
	.related-article__link {
		flex-direction: column;
	}
	.related-article__img {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto 10px;
		padding: 0 18px 164px;
	}
}
.related-article__text {
	display: flex;
	flex-direction: column;
	margin: 0 18px;
	flex: 1;
}
.related-article__title {
	font-weight: 600;
	font-size: 18px;
	line-height: 21px;
	margin-bottom: 16px;
}
.related-article .tag-cloud {
	position: absolute;
	left: 315px;
	bottom: -14px;
}
@media (max-width:600px) {
	.related-article__title {
		margin-bottom: 8px;
	}
	.related-article .tag-cloud {
		position: relative;
		left: initial;
		bottom: initial;
		margin: 0 18px;
	}
}
.list-number {
	padding-left: 25px;
	margin: 24px 0;
}
.bold {
	font-weight: 600;
}
.article-btn {
	display: flex;
	width: fit-content;
	flex-direction: column;
	align-items: flex-start;
	text-align: center;
	margin: 24px 0;
}
.article-btn.article-btn__center {
	margin: 24px auto;
}
.article-btn .for-windows {
	margin: 24px auto 0;
}
.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 48px -8px 24px;
}
.gallery-big {
	width: 85%;
	padding: 0 8px;
}
@media (max-width:600px) {
	.gallery-big {
		width: 100%;
		margin-bottom: 15px;
	}
}
.gallery-big a {
	display: flex;
	flex-direction: column;
	position: relative;
	padding-bottom: 67%;
	height: 0;
	overflow: hidden;
	border: 5px solid transparent;
	transition: ease .3s;
	border-radius: 10px;
}
.gallery-big a:hover {
	border: 5px solid #fea526;
}
.gallery-big a::after {
	content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%) scale(0);
	transition: ease .3s;
  z-index: 1;
  background: url(../img/article/zoom.svg) center/cover no-repeat;
}
.gallery-big a:hover::after {
	transform: translate(-50%, -50%) scale(1);
}
/* .gallery-big a::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(180deg, rgba(67, 67, 67, 0) 53.45%, rgba(67,67,67, 0.85) 90.85%);
	z-index: 1;
} */
.gallery-big img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	object-fit: cover;
}
.gallery-big span {
	position: absolute;
  text-align: center;
  bottom: 35px;
  color: #FFFFFF;
  left: 10px;
  right: 10px;
	line-height: 20px;
  z-index: 1;
}
@media (max-width:600px) {
	.gallery-big span {
		bottom: 20px;
		font-size: 14px;
	}
}
.gallery-little {
	width: 15%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 0 8px;
}
.gallery-little a {
	display: flex;
	flex-direction: column;
	position: relative;
	padding-bottom: 91.53%;
	width: 100px;
	height: 0;
	overflow: hidden;
	border: 2px solid transparent;
	opacity: 0.45;
	transition: ease .3s;
	border-radius: 8px;
	margin-bottom: 16px;
}
@media (max-width:600px) {
	.gallery-little {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
    align-items: initial;
	}
	.gallery-little a {
		padding-bottom: 17.745%;
		margin-bottom: 0;
	}
}
.gallery-little a:hover {
	border: 2px solid #fea526;
	opacity: 1;
}
.gallery-little a::after {
	content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%) scale(0);
	transition: ease .3s;
  z-index: 1;
  background: url(../img/article/zoom.svg) center/cover no-repeat;
}
.gallery-little a:hover::after {
	transform: translate(-50%, -50%) scale(1);
}
.gallery-little a:last-child {
	margin-bottom: 0;
}
.gallery-little img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 104%;
	z-index: 0;
	object-fit: cover;
}
.gallery-all-img {
	display: none;
}
.mfp-gallery .mfp-bottom-bar {
	margin: 0;
}
.mfp-gallery .mfp-title {
	margin: 0 -15px;
	border: 15px solid #FFFFFF;
  border-radius: 6px;
	color: #3C4352;
	text-align: center;
	background: #fff;
	padding-right: 0;
}
.mfp-gallery .mfp-counter {
	top: -30px;
}
.blockquote {
	display: flex;
	flex-wrap: wrap;
	max-width: 645px;
	margin: 24px auto;
	padding: 24px;
	background: #F5F8F9;
	border: 1px solid #E6EFF1;
	border-radius: 6px;
}
.blockquote-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background: #D1E3BF;
	border-radius: 50%;
	margin-right: 24px;
}
.blockquote a {
	color: rgb(81, 88, 177);
	text-decoration: underline;
}
.blockquote a:hover {
	text-decoration: none;
}
@media (max-width:600px) {
	.blockquote {
		padding: 15px;
	}
	.blockquote-img {
		margin-right: 15px;
	}
}
.blockquote-img__orange {
	background: #FFD9B2;
}
.blockquote-text {
	flex: 1;
	font-size: 14px;
	line-height: 20px;
	max-width: 460px;
}	
.list-number a:not(.related-article__link) {
	color: rgb(81, 88, 177);
	text-decoration: underline;
}
.list-number a:not(.related-article__link):hover {
	text-decoration: none;
}
/* telegram */
.telegram-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
	background: url(../img/telegram-bg.webp) center/cover no-repeat;
	margin: 48px 0 48px;
}
.telegram-img {
  flex: 1;
  position: relative;
  padding-bottom: 315px;
}
.telegram-img img {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 100%;
  max-height: 100%;
}
.telegram-info {
  width: 380px;
  margin-left: 30px;
}
.telegram-text {
  color: #3C4352;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  padding-top: 50px;
}
.telegram-btn {
  border-radius: 3px;
	background: linear-gradient(0deg, #097FBD 0%, #178FCE 100%);
	box-shadow: 0px 3px 0px 0px #249EDE, 0px 15px 24px 0px rgba(22, 142, 205, 0.40);
}
.telegram-btn img {
  margin-right: 13px;
	position: relative;
	z-index: 2;
}
.telegram-btn:hover {
	box-shadow: 0px 3px 0px 0px #249EDE, 0px 15px 24px 0px rgba(22, 142, 205, 0.40);
}
.telegram-btn:after {
	background: linear-gradient(0deg, #0887cc 0%, #179ae0 100%);
}
@media (max-width: 767px) {
  .telegram-block {
    flex-direction: column;
    align-items: center;
  }
  .telegram-img {
    width: 100%;
    padding-bottom: 50%;
		display: flex;
    justify-content: center;
    align-items: center;
  }
	.telegram-img img {
    left: auto;
    right: auto;
	}
  .telegram-info {
    margin: 0 15px 0;
    width: initial;
		text-align: center;
  }
}
@media (max-width: 575px) {
  .telegram-img {
    padding-bottom: 80%;
  }
	.telegram-text {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
    padding-top: 35px;
	}
}

.article-downloads {
	display: flex;
	flex-wrap: wrap;
	background: #FFFFFF url(../img/article/article-downloads.webp) top right no-repeat;
	box-shadow: 0px 0px 8px rgba(0, 21, 36, 0.15);
	border-radius: 6px;
	padding: 48px 36px 38px 36px;
	margin: 48px 0 48px;
}
.article-downloads .title-h2-article {
	width: 100%;
	font-weight: 700;
	font-size: 22px;
	line-height: 26px;
	max-width: 440px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	margin: 0 0 16px;
}
.article-downloads__text {
	width: 50%;
	padding-right: 15px;
}
.article-downloads .list-dots {
	margin: 0 0 16px;
}
.article-downloads .article-btn {
	margin: 0 0 10px;
}
.article-downloads__img-top {
	margin-bottom: 16px;
}
.article-downloads__img {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.article-downloads__img img {
	max-width: 255px;
}
.article-downloads .article-text {
	margin-bottom: 16px;
}
.article-downloads.article-downloads-mini {
	background: #FFFFFF;
	padding: 30px;
}
.article-downloads.article-downloads-mini .article-downloads__text {
	width: 60%;
}
.article-downloads.article-downloads-mini .title-h2-article {
	max-width: 100%;
}
.article-downloads.article-downloads-mini .article-downloads__img {
	width: 40%;
}
.article-downloads.article-downloads-mini .article-downloads__img img {
	width: 100%;
	max-width: 270px;
}
@media (max-width:650px) {
	.article-downloads  {
		padding: 25px 25px 25px;
	}
	.article-downloads__img-top {
    display: flex;
		margin: 0 auto 10px;
	}
	.article-downloads .title-h2-article {
		text-align: center;
		max-width: 100%;
		order: 2;
	}
	.article-downloads__text {
		width: 100%;
		order: 3;
		padding: 10px 0 0;
	}
	.article-downloads .article-text {
		text-align: center;
	}
	.article-downloads__img {
		width: 100%;
		order: 1;
		margin-bottom: 15px;
	}
	.article-downloads .article-btn {
		margin: 0 auto 10px;
	}
	.article-downloads.article-downloads-mini {
		padding: 25px;
	}
	.article-downloads.article-downloads-mini .article-downloads__text {
		width: 100%;
	}
	.article-downloads.article-downloads-mini .article-downloads__img {
		width: 100%;
	}
}
.article-author {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #E6EFF1;
	border-radius: 6px;
	padding: 30px 15px 14px 36px;
}
.article-author__block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
.article-author__block--no-order > * {
	order:0
}
.article-author .author {
	margin: 0 0 8px;
	order: 1;
}
.article-author .list-dots, .article-author .list-number {
	margin: 12px 0 20px 0;
	order: 1;
}
.article-author__link {
	display: flex;
	font-size: 12px;
	line-height: 20px;
	color: #3C4352;
	position: relative;
	order: 2;
	margin-right: 30px;
	padding-right: 8px;
}
.article-author__link:hover {
	text-decoration: underline;
}
.article-author__link::after {
	position: absolute;
	right: -16px;
	top: 0;
	content: '→';
	font-family: monospace;
	font-size: 19px;
}
.article-author .article-text {
	max-width: 570px;
	order: 3;
	width: 100%;
}

.article-author.article-author__center {
	padding: 20px 20px 0;
	margin: 24px auto;
	max-width: 680px;
}
.article-author.article-author__center .author-img {
	width: 50px;
	height: 50px;
}
.article-author.article-author__center .article-text {
	max-width: 100%;
}
@media (max-width:600px) {
	.article-author {
		padding: 15px;
	}
	.article-author .author {
		order: 1;
	}
	.article-author__link {
		order: 3;
	}
	.article-author .article-text {
		order: 2;
		margin-bottom: 10px;
	}
}

.article-link {
	display: inline-flex;
	font-weight: 800;
	font-size: 12px;
	line-height: 14px;
	color: #FF8407;
	position: relative;
	margin-right: 30px;
	padding-right: 8px;
}
.article-link:hover {
	text-decoration: underline;
}
.article-link::after {
	position: absolute;
	right: -16px;
	top: 0;
	content: '→';
	font-family: monospace;
	font-size: 19px;
}

.title-h2-program {
	font-family: 'ZonaPro', sans-serif;
	font-weight: 600;
	font-size: 30px;
	line-height: 35px;
	margin: 48px 0 24px;
}
.program {
	margin: 48px 0 48px;
	border-bottom: 1px solid rgba(187, 210, 218, 0.5);
}
.program-block {
	display: flex;
	flex-direction: column;
	margin: 0 0 14px;
}
.program-block__top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(187, 210, 218, 0.5);
}
.program-title {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	min-height: 32px;
}
.program-title img {
	margin-right: 8px;
}
.title-h3-program {
	font-family: 'ZonaPro', sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 26px;
	margin: 24px 0;
}
.program-title .title-h3-program {
	margin: 0;
}
.program-recommend {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}
.program-recommend-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	background: #D1E3BF;
	border-radius: 50%;
	margin-left: 8px;
}
.program-block__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 24px;
}
.program-block__text {
	margin: 0 10px 10px 0;
}
.program-block__text:last-child {
	margin-right: 0;
}

.list-block {
	display: flex;
	flex-wrap: wrap;
	margin: 40px -15px 24px;
}
.list-block-item {
	padding: 0 15px;
	width: 50%;
}
@media (max-width:767px) {
	.list-block-item {
		width: 100%;
		margin-bottom: 10px;
	}
}
.list-title {
	font-family: 'ZonaPro', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 21px;
	margin-bottom: 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.list-title img {
	margin-right: 10px;
}
.list-dash {
	margin: 16px 0 10px;
	padding-left: 30px;
}
.list-dash li {
	position: relative;
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 15px;
}
.list-dash li::before {
	content: '';
	position: absolute;
	left: -30px;
	top: 50%;
	width: 12px;
	height: 2px;
	background: #3C4352;
	border-radius: 100px;
}
.list-block .list-block-item:first-child .list-dash li::before {
	background: #64A02A;
}
.list-block .list-block-item:first-child .list-dash li::after {
	content: '';
	position: absolute;
	left: -30px;
	top: 50%;
	width: 12px;
	height: 2px;
	background: #64A02A;
	transform: rotate(90deg);
	border-radius: 100px;
}
/* order */
.order-hero {
	padding: 0;
}
.order-hero__wrap {
	padding: 74px 0 265px;
  max-width: 1920px;
  margin: 0 auto;
  /* background: #fcf7ef url(../img/order/order-bg.webp) top right no-repeat; */
	background: #fcf7ef;
}
@media (max-width:767px) {
	.order-hero__wrap {
		padding: 30px 0 265px;
	}
}
.order-hero__block {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.order-hero__img {
	width: 35%;
	padding-right: 15px;
}
@media (max-width:767px) {
	.order-hero__img {
		width: 100%;
		padding-right: 0;
		order: 2;
	}
}
.order-hero__text {
	width: 65%;
}
@media (max-width:767px) {
	.order-hero__text {
		width: 100%;
		order: 1;
	}
}
.order-hero__title {
	font-family: 'ZonaPro', sans-serif;
	font-weight: 600;
	font-size: 38px;
	line-height: 45px;
	margin-bottom: 26px;
}
.order-hero .list-dots {
	margin: 0 0 15px;
	font-weight: 500;
	line-height: 38px;
}
.order-hero .list-dots li {
	font-size: 18px;
}
.order-hero .list-dots li::marker {
	font-size: 15px;
}
@media (max-width:767px) {
	.order-hero .list-dots {
		line-height: 28px;
	}
}
/* tickets */
.section-ticket {
	margin-top: -266px;
	padding: 60px 0 45px;
}
@media (max-width:991px) {
	.section-ticket {
		margin-top: -251px;
	}
}
@media (max-width:767px) {
	.section-ticket {
		margin-top: -231px;
	}
}
.ticket-h2 {
	font-family: 'ZonaPro', sans-serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 35px;
	text-align: center;
	margin-bottom: 40px;
}
@media (max-width:767px) {
	.ticket-h2  {
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 20px;
	}
}
.ticket-sale {
  font-size: 25px;
  font-weight: 700;
  color: #dd0404;
}
.tickets {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
  margin: 63px -15px 50px;
}
.tickets-block {
	display: flex;
	width: 33.333%;
	padding: 0 15px;
}
@media (max-width:991px) {
	.tickets-block {
		width: 50%;
	}
}
@media (max-width:767px) {
	.tickets-block {
		width: 80%;
	}
}
@media (max-width:500px) {
	.tickets-block {
		width: 100%;
	}
}
.ticket-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  background: #FFFFFF;
  border-radius: 7px 0px 0px 0px;
	background: #F4F8F9;
	border: 1px solid #E6E6E6;
  margin-bottom: 30px;
}
.ticket__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #9eabaf;
  border-radius: 5px 0px 0px 0px;
  position: relative;
  padding: 27px 34px;
  text-align: center;
}
.ticket__top-sale {
	position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 6px;
  font-family: 'ZonaPro', sans-serif;
  font-weight: 600;
  font-size: 20px;
  width: 130px;
  height: 130px;
  background-color: transparent;
  color: rgb(255, 255, 255);
  width: 0;
  height: 0;
  border-top: 92px solid #858F93;
  border-left: 92px solid transparent;
}
.ticket__top-sale span {
	position: absolute;
	left: -50px;
	top: -45px;
	transform: rotate(45deg) translate(-50%, -50%);
}
.ticket__top-border {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ticket__top-text {
	font-family: 'ZonaPro', sans-serif;
  font-weight: 400;
  font-size: 16px;
	margin-bottom: 5px;	
}
.ticket__top-versia {
	font-family: 'ZonaPro', sans-serif;
  font-weight: 700;
  font-size: 25px;
}
.ticket__text {
  padding: 20px 17px 50px;
  flex: 1 1 auto;
}
.tickets .list {
  margin-bottom: 0;
}
.tickets .list li {
  font-size: 16px;
	margin-bottom: 3px;
}
.ticket__price {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  font-size: 30px;
  margin-bottom: 28px;
}
.price-old {
  position: relative;
	color: #9D9D9D;
	font-family: 'ZonaPro', sans-serif;
	font-weight: 600;
	font-size: 20px;
  margin-right: 20px;
}
.price-old:after, .price-old:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  display: inline-block;
  transform: rotate(35deg);
  left: 0%;
  top: 50%;
  background: #3C4352;
  opacity: 0.5;
}
.price-old:after {
  transform: rotate(35deg);
}
.price-old:before {
  transform: rotate(-35deg);
}
.price {
	font-family: 'ZonaPro', sans-serif;
	font-weight: 600;
	font-size: 28px;
	line-height: 41px;
}
.price-r {
	font-weight: 400;
	color: #717070;
}
.ticket__price.ticket__price-little {
  margin-top: 25px;
}
.ticket__price.ticket__price-little .price-old {
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  color: #979797;
  margin-right: 14px;
}
.ticket__price.ticket__price-little .price-old:after, .ticket__price.ticket__price-little .price-old:before {
  background: #979797;
  transform: rotate(15deg);
}
.ticket__price.ticket__price-little .price-old:after {
  transform: rotate(-15deg);
}
.ticket__price.ticket__price-little .price {
  font-weight: 500;
  font-size: 24px;
  line-height: 18px;
}
.tickets .button {
  margin-bottom: 37px;
  min-height: 57px;
	min-width: initial;
  padding: 10px 80px 10px 47px;
}
.tickets .btn__icon {
  width: 22px;
  height: 22px;
  right: 36px;
}
.ticket-premium .ticket__top {
  background: #3d9fac;
}
.ticket-premium .ticket__top-sale {
	border-top: 92px solid #398f9b;
}
.ticket-profi {
  background: #EDFFEF;
	border: 1px solid #5D9463;
	margin-top: -28px;
}
@media (max-width:991px) {
	.ticket-profi {
		margin-top: 0;
	}
}
.ticket-profi .ticket__top {
  background: #5D9463;
	padding: 0 34px 27px;
}
.ticket-profi .ticket__top-sale {
	border-top: 92px solid #4C8152;
}
.ticket__bestseller {
	font-family: 'ZonaPro', sans-serif;
	color: #3C4352;
	line-height: 27px;
	font-size: 16px;
	box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.13);
	background: #5D9463;
	display: flex;
	justify-content: center;
	border-radius: 5px 0px 0px 0px;
	position: relative;
	top: -4px;
	margin-bottom: 28px;
}
.ticket__bestseller span {
	background: #FFD875;
	border-radius: 0px 0px 3px 3px;
	margin: 0 auto;
	padding: 0 16px;
}
.payment-options {
	font-family: 'ZonaPro', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
	gap:25px
}

@media screen and (max-width: 767px) {
	.payment-options{flex-direction:column;justify-content:center;align-items:center}
}

.payment-options img {
/*	padding: 10px 20px;*/
	filter: saturate(0.5);
}
.support-iframe {
	width: 100%;
	border: none;
}
/* section-benefits */
.section-get {
	padding: 45px 0 60px;
}
.get {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 60px -15px 30px;
}
.get-column {
	width: 33.333%;
	padding: 0 15px;
	margin-bottom: 30px;
}
@media (max-width:991px) {
	.get-column {
		width: 50%;
	}
}
@media (max-width:767px) {
	.get-column {
		width: 80%;
	}
}
@media (max-width:450px) {
	.get-column {
		width: 100%;
	}
}
.get-column-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 70px 15px;
	background: #f8fbfc;
	box-shadow: 0px 0px 8px rgba(0, 21, 36, 0.15);
	border-radius: 6px;
	position: relative;
}
.get-num {
	position: absolute;
	left: 25px;
	top: 25px;
	font-family: 'ZonaPro', sans-serif;
	font-weight: 700;
	font-size: 30px;
	color: #69A230;
}
.get-img {
	display: flex;
	justify-content: center;
	align-items: center;
  max-width: 66px;
	max-height: 66px;
	min-height: 66px;
	margin-bottom: 36px;
}
.get-text {
	text-align: center;
	font-weight: 400;
	font-size: 20px;
	line-height: 26px;
}
.ticket-link {
	font-weight: 400;
	font-size: 18px;
	text-decoration: underline;
	color: #3835D8;
}
.ticket-link:hover {
	text-decoration: none;
}

.order-hero.upgrade .order-hero__wrap {
	padding: 74px 0 65px;
  max-width: 1920px;
  margin: 0 auto;
	background: #fcf7ef;
}
@media (max-width:767px) {
	.order-hero.upgrade  .order-hero__wrap {
		padding: 30px 0 35px;
	}
}
.upgrade-block {
	padding: 50px 0 15px;
}
.upgrade-btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.upgrade-btn .button {
	margin-bottom: 24px;
	min-height: 57px;
	min-width: initial;
	padding: 10px 80px 10px 47px;
}
/* comments */
#comments #comments-header {
  font-size: 22px;
  line-height: 26px;
	font-weight: 400;
	padding-left: 30px;
	display: block;
	position: relative;
}
#comments #comments-header::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: #64A02A;
	border-radius: 15px;
}
#comments #comments-list {
	margin-top: 45px;
	padding-left: 30px;
}
#comments #comments-all {
  color: #161A23;
}
#comments .comment-avatar {
  display: none;
}
#comments .comment-author {
  font-size: 16px;
  line-height: 20px;
	font-weight: 700;
}
#comments .comment-time {
  font-weight: 500;
  font-size: 12px;
	font-style: normal;
  color: #BEBEBE;
	top: initial;
	bottom: 30px;
}
#comments .comment-body {
	margin-top: 10px;
  font-weight: 500;
	font-size: 16px;
  padding-right: 160px;
	padding-bottom: 40px;
	border-bottom: 1px solid #E3E3E3;
}
#comments form {
  display: flex;
  flex-wrap: wrap;
	background: rgba(220, 232, 236, 0.54);
	padding: 27px 82px 38px 33px;
}
#comments .comments-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 25px;
	color: #3C4352;
	margin-bottom: 17px;
	width: 100%;
}
#comments .btn-more {
  margin: 0 auto 20px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#comments .btn-more span {
	display: flex;
	justify-content: center;
	align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #FFFFFF;
  background: linear-gradient(180deg, #92B1BB 0%, #7B99A3 100%);
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.08);
	border-radius: 2px;
  width: 150px;
  height: 44px;
  padding: 5px;
	transition: none;
	cursor: pointer;
}
#comments .btn-more span:hover {
  background: linear-gradient(180deg, #88B1BE 0%, #65858F 85.23%);
}
#comments .btn-more span:active {
  background: #B1C0C6;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.08);
}

#comments #comments-form-top {
	flex: 1;
	flex-direction: column;
}
#comments #comments-form input, 
#comments #comments-form textarea {
  font-weight: 400;
	font-size: 16px;
	line-height: 22px;
  background: #FFFFFF;
	border: 1px solid #E1E8EB;
	border-radius: 3px;
}
#comments #comments-form-main {
	width: 100%;
	margin-top: 10px;
}
#comments #comments-form-extra {
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: #90ABB4;
  margin-top: 0;
	text-align: left;
	float: left;
}
#comments #comments-form-textarea {
  height: 105px;
  margin-top: 0px;
}
#comments #comments-captcha {
	margin: 0 0 0 17px;
	flex: 0 0 132px;
	height: 160px;
	background: #CED4D7;
	border-radius: 4px;
	padding: 10px;
}
#comments .captcha-img {
	margin: 10px 0;
	border-radius: 4px;
}
#comments .comments-btn {
  background: linear-gradient(180deg, #92B1BB 0%, #7B99A3 100%);
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.08);
	border-radius: 2px;
  width: 150px;
  height: 44px;
  padding: 5px;
  text-decoration: none;
  text-transform: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #FFFFFF;
  margin-top: 5px;
	float: right;
	transition: none;
}
#comments .comments-btn:hover {
  background: linear-gradient(180deg, #88B1BE 0%, #65858F 85.23%);
}
#comments .comments-btn:active {
  background: #B1C0C6;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.08);
}
@media (max-width:767px) {
  .comments-section #comments {
    margin: 30px 0 40px;
  }
  #comments .comment-time {
    font-size: 15px;
  }
	#comments #comments-list {
		padding-left: 0;
	}
	#comments form {
		padding: 20px;
	}
}  
@media (max-width:580px) {
  #comments #comments-list {
    margin-top: 30px;
  }
  #comments .comment-time {
    position: relative;
    display: flex;
    left: 0;
    right: initial;
  }
  #comments .comment-body {
    padding-right: 0;
  }
  #comments .comment {
    padding: 0 0 20px 0;
  }
	#comments #comments-form-top {
		flex: initial;
    width: 100%;
	}
	#comments form {
		position: relative;
	}
	#comments #comments-form-main {
		margin-top: 184px;
	}
	#comments #comments-form-body {
    position: absolute;
    justify-content: center;
    align-items: center;
    width: calc(100% - 40px);
    top: 120px;
	}
	#comments .comments-btn {
		margin-top: 20px;
	}
	#comments #comments-form-extra {
		position: absolute;
	}
}
/* contacts */
.contacts-hero {
	padding: 70px 0 30px;
	background: #f9f2e8;
}
.contacts-hero .article-text {
	max-width: 575px;
	margin: 0 auto;
}
.contacts-hero-block {
	display: flex;
	margin: 65px -15px 50px;
}
.contacts-hero-left {
	background: #FFF;
	border: 1px solid #ebebeb;
	padding: 38px 28px 44px 22px;
	display: flex;
	position: relative;
	margin: 15px;
	width: calc(65% - 30px);
}
.contacts-hero-leaf {
	position: absolute;
	top: 3px;
	left: -35px;
}
.contacts-hero-img {
	width: 321px;
	margin-right: 14px;
}
.contacts-hero-info {
	flex: 1;
}
.contacts-hero-name {
	font-family: 'ZonaPro', sans-serif;
	font-size: 22px;
	margin-bottom: 3px;
}
.contacts-hero-editor {
	font-family: 'ZonaPro', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	margin-bottom: 19px;
}
.contacts-hero-text {
	margin-bottom: 19px;
}
a.contacts-hero-mail {
	font-family: 'ZonaPro', sans-serif;
	color: #1942BE;
	font-size: 16px;
	line-height: 22px;
	text-decoration: underline;
	text-decoration-color: transparent;
	transition: ease .3s;
}
a.contacts-hero-mail:hover {
	text-decoration-color: #1942BE;
}
.contacts-hero-right {
	background: #FFF;
	border: 1px solid #ebebeb;
	padding: 17px 20px 28px 20px;
	position: relative;
	margin: 15px;
	width: calc(35% - 30px);
	display: flex;
	flex-direction: column;
	align-items: center;
}
a.contacts-btn {
	display: flex;
	justify-content: center;
  align-items: center;
	border-radius: 3px;
	border: 1px solid #3C4352;
	color: #3C4352;
	text-align: center;
	font-family: 'ZonaPro', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.72px;
	line-height: 1.2;
	padding: 15px 17px 12px 20px;
	transition: ease .3s;
}
a.contacts-btn:hover {
	border: 1px solid #1942BE;
	color: #1942BE;
}
a.contacts-btn img {
	margin-right: 10px;
	filter: brightness(0);
	transition: ease .3s;
}
a.contacts-btn:hover img {
	filter: brightness(1);
}
.contacts-hero-right a.contacts-btn {
	margin-top: 10px;
}
.contacts-hero-leaf2 {
	position: absolute;
	bottom: 45px;
	right: -60px;
}

.contacts-soc {
  display: flex;
	flex-direction: column;
	align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.contacts-soc-title {
	font-family: 'ZonaPro', sans-serif;
	text-align: center;
	font-size: 22px;
	font-weight: 700;
}
.contacts-soc-block {
	display: flex;
	flex-wrap: wrap;
	margin-top: 13.5px;
}
.contacts-soc-link {
  width: 53px;
	height: 53px;
	margin: 13.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  transition: ease .3s;
}
.contacts-soc-link:hover {
  box-shadow: 4px 5px 13px 0px rgb(0 0 0 / 33%);
}
.contacts-soc-link img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.section-contacts {
	background: linear-gradient(180deg, #88BCDD 0%, rgba(152, 196, 223, 0.50) 100%);
	background: linear-gradient(180deg, #f9f7f3 0%, rgb(242 247 251) 100%);
}
.contacts-instructions-block {
	margin-top: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}
a.contacts-instructions-link {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #3D3D3F;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-decoration-line: underline;
	text-decoration-color: #3D3D3F;
}
a.contacts-instructions-link:hover {
	color: #1942BE;
	text-decoration-color: #1942BE;
}
a.contacts-instructions-link img {
	margin-right: 20px;
	filter: brightness(0);
	transition: ease .3s;
}
a.contacts-instructions-link:hover img {
	filter: brightness(1);
}
@media (max-width: 1350px) {
	.contacts-hero-leaf {
		left: -15px;
    max-width: 50px;
	}
	.contacts-hero-leaf2 {
		right: -16px;
    max-width: 55px;
	}
}
@media (max-width: 1199px) {
	.contacts-hero-left {
    padding: 30px 20px 30px 20px;
    width: calc(60% - 30px);
	}
	.contacts-hero-img {
    width: 260px;
    margin-right: 14px;
	}
	.contacts-hero-right {
    width: calc(40% - 30px);
	}
}
@media (max-width: 991px) {
	.contacts-hero {
    padding: 50px 0 30px;
	}
	.contacts-hero-block {
    margin: 50px -15px 50px;
		flex-direction: column;
	}
	.contacts-hero-left {
    width: calc(100% - 30px);
	}
	.contacts-hero-right {
    width: calc(100% - 30px);
	}
}
@media (max-width: 767px) {
	a.contacts-instructions-link {
		font-size: 20px;
	}
}
@media (max-width: 575px) {
	.contacts-hero-left {
		flex-direction: column;
		padding: 20px 15px;
	}
	.contacts-hero-img {
		max-width: 260px;
		width: 100%;
		margin: 0 0 15px;
	}
	.contacts-hero-name {
		font-size: 20px;
	}
	.contacts-hero-right {
		padding: 15px;
	}
	a.contacts-instructions-link {
    font-size: 18px;
	}
}

.reviews-section {
  padding: 60px 0 80px;
}
.reviews__block {
  display: flex;
  flex-wrap: wrap;
  margin: 78px -13.5px 30px;
}
.reviews__item {
  border: 1px solid #EBEBEB;
  background: #FFF;
  box-shadow: 0px 6px 50px rgba(0, 21, 36, 0.15);
  width: calc(50% - 27px);
  padding: 47px 39px 41px 50px;
  margin: 0 13.5px 57px;
	position: relative;
}
.reviews__info {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.reviews__top {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.reviews__left {
  display: flex;
  flex-direction: column;
}
.reviews__name {
	font-family: 'ZonaPro', sans-serif;
  font-size: 22px;
  color: #3D3D3F;
  margin-right: 20px;
  margin-bottom: 5px;
}
.reviews__right {
  display: flex;
}
.reviews__soc {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
	overflow: hidden;
  background: #FFFEFE;
  transition: ease .3s;
	position: absolute;
	left: 50px;
	top: -20px;
}
.reviews__text {
  color: #3C4352;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
  flex-grow: 1;
}
a.reviews__link {
  display: flex;
	align-items: center;
	color: #3C4352;
  font-size: 16px;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  cursor: pointer;
  margin-top: 25px;
  transition: ease .3s;
}
a.reviews__link:hover {
  opacity: 1;
  color: #1942BE;
  text-decoration-color: #1942BE;
}
.reviews__link svg {
	margin-left: 10px;
}
a.reviews__link:hover svg path {
	fill: #1942BE;
}

.reviews__item.reviews__item-big {
  width: calc(100% - 27px);
	margin-bottom: 20px;
	padding: 28px 43px 37px 45px;
	display: flex;
}
.reviews__item.reviews__item-big .reviews__soc {
	position: relative;
	left: initial;
	top: initial;
	margin-bottom: 5px;
	transition: ease .3s;
}
.reviews__item.reviews__item-big .reviews__soc:hover {
	box-shadow: 0px 0px 10px rgba(64, 101, 214, 0.79);
}
.reviews__img {
	margin-right: 45px;
	width: 105px;
	height: 105px;
	min-width: 105px;
	min-height: 105px;
	max-width: 105px;
	max-height: 105px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border-radius: 50%;
}
.reviews__img img {
	position: absolute;
	top: auto;
  bottom: auto;
  left: auto;
  right: auto;
	object-fit: cover;
}
@media (max-width: 991px) {
	.reviews-section {
    padding: 50px 0 50px;
	}
	.reviews__block {
    margin: 60px -13.5px 30px;
	}
  .reviews__item {
    padding: 30px 20px 20px;
  }
  .reviews__item.reviews__item-big {
    padding: 20px;
  }
	.reviews__img {
    margin-right: 25px;
  }
}
@media (max-width: 767px) {
	.reviews-section {
    padding: 30px 0 30px;
	}
  .reviews__item {
    width: 100%;
    padding: 25px 15px 15px;
		margin: 0 13.5px 40px;
  }
}
@media (max-width: 575px) {
	.reviews__block {
    margin: 45px -13.5px 30px;
	}
  .reviews__item.reviews__item-big {
    padding: 15px;
		flex-direction: column;
		align-items: center;
  }
	.reviews__img {
    margin: 0 0 20px;
	}
}
/* yandex-dzen */
.yandex-dzen {
  margin: 35px 0;
  display: flex;
	flex-wrap: wrap;
  align-items: center;
}
.yandex-dzen-subscribe {
  color: #3C4352;
	font-size: 16px;
	font-weight: 700;
	margin: 5px 18px 5px 0;
}
.yandex-dzen-link {
  padding: 0 15px 0;
	margin: 5px 18px 5px 0;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  border: 1px solid #dfe274;
  text-decoration: none;
  transition: ease .3s
}
.yandex-dzen-link:hover {
  box-shadow: 3px 4px 14px 0 rgb(223 226 116)
}
.soc-link {
  width: 34px;
	height: 34px;
	margin: 5px 18px 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  transition: ease .3s;
}
.soc-link:hover {
  box-shadow: 4px 5px 13px 0px rgb(0 0 0 / 33%);
}
.soc-link img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/* welcome */
.welcome-hero {
	background: #fffffe;
  padding: 55px 0;
}
.welcome-block {
	display: flex;
	flex-wrap: wrap;
}
.welcome-video {
	width: 100%;
	max-width: 540px;
}
.welcome-video .youtube-popup {
	margin: 0;
}
.welcome-video .youtube-popup::before {
	background: url(../img/welcome-video.svg) center/cover no-repeat;
	width: 101px;
	height: 101px;
}
.welcome-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	flex: 1;
	width: 100%;
	margin-left: 55px;
}
.welcome-title {
	font-family: 'ZonaPro', sans-serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 600;
	line-height: 145%;
	margin-bottom: 22px;
}
.welcome-text {
	font-family: 'ZonaPro', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.list-check {
	margin: 22px 0;
}
.list-check li {
	background: url(../img/list-check.svg) no-repeat 0px 4px;
	position: relative;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	padding-left: 25px;
	margin-bottom: 12px;
}
.welcome-bottom {
	margin-top: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	text-align: center;
}
.welcome-sale {
	text-align: center;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: 27px; 
	margin-bottom: 32px;
}
.welcome-sale span {
	color: #64A02A;
}
.welcome-cart {
	position: relative;
	z-index: 2;
	margin-right: 10px;
}
.welcome-btn .button {
	padding: 10px 46px 10px 46px;
}
.welcome-btn .for-windows {
	color: #6A6A6A;
}
@media only screen and (max-width: 1199px) {
	.welcome-block {
		justify-content: center;
		align-items: center;
    flex-direction: column;
	}
	.welcome-info {
		align-items: center;
		margin: 35px 0 0;
	}
	.welcome-title {
		text-align: center;
	}
	.welcome-text {
		text-align: center;
	}
}

/* o-nas */
.about-hero {
	padding: 0 0 50px;
	/* background: linear-gradient(90deg, #f7efe1 0%, rgb(249 242 232) 100%); */
}
.about-hero .about-hero-block {
	max-width: 970px;
	margin: 0 auto;
}
.about-top {
	padding: 50px 0 50px;
	position: relative;
	background: linear-gradient(8deg, rgb(136 188 221 / 10%) 4%, rgba(136, 188, 221, 0) 71%);
	overflow: hidden;
}
.about-top::before {
	content: '';
	position: absolute;
	right: -400px;
	top: 0;
	border-radius: 100%;
	background: radial-gradient(50% 50% at 50% 50%, rgb(255, 239, 215) 0%, rgb(255, 239, 215) 100%);
	filter: blur(324px);
	width: 1317px;
	height: 2259px;
	z-index: -1;
}
@media (max-width:767px) {
	.about-hero {
		padding: 0 0 25px;
	}
	.about-top {
		padding: 50px 0 25px;
	}
}
.textbook-about {
	padding-bottom: 60px;
}
.textbook-about .textbook-interest__column {
	width: 25%;
	min-width: 290px;
	padding: 0px 13px;
}
.textbook-about .textbook-interest__columns-item {
	box-shadow: 0 6px 50px 0 rgba(0, 21, 36, 0.15);
	position: relative;
	top: 0;
	transition: ease .3s;
}
.textbook-about .textbook-interest__columns-item:hover {
	top: -7px;
}
.textbook-about .textbook-interest__item-image {
	overflow: hidden;
	border-radius: 6px;
}
.textbook-about .textbook-interest__item-ltitle {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	text-align: center;
}
.textbook-about .textbook-interest__item-text {
	text-align: center;
	padding: 10px 0 0;
}

.textbook-autors.about-top {
	padding: 65px 0 15px;
}
.textbook-autors .textbook-interest__row {
	margin: 0 -15px 0;
	padding-bottom: 15px;
}

.map-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.map-block {
	border: 10px solid #fff;
	border-radius: 6px;
	box-shadow: 0 31px 50px 0 rgba(0, 21, 36, 0.15);
	background: #dfecf4;
	position: relative;
}
@keyframes downUp {
  from {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  to {
    transform: translateY(0px);
  }
}
@keyframes Scale {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(1.7);
  }
  to {
    transform: scale(1);
  }
}
.map-point {
	position: absolute;
	line-height: 0;
	transition: ease 1.5s;
}
.map-point.map-point-anim {
  animation: downUp 1.5s ease-in-out infinite;
}
.map-point.map-point-small {
	border-radius: 50%;
	box-shadow: 0 1px 4px 0 rgba(120, 82, 82, 0.25);
}
.map-point.map-point-small.map-point-anim {
  animation: Scale 1.5s ease-in-out infinite;
}
.map-point.map-point-anim:hover,
.map-point.map-point-small.map-point-anim:hover {
	animation: none;
}
.map-point1 {
	left: 176px;
	top: 296px;
}
.map-point2 {
	left: 144px;
  top: 337px;
}
.map-point3 {
	left: 226px;
	top: 337px;
}
.map-point4 {
	left: 130px;
  top: 380px;
}
.map-point5 {
	left: 181px;
  top: 407px;
}
.map-point6 {
	left: 173px;
	top: 441px;
}
.map-point7 {
	left: 319px;
	top: 459px;
}
.map-point8 {
	left: 253px;
	top: 546px;
}
.map-point9 {
	left: 474px;
	top: 383px;
}

.map-point-small1 {
	left: 306px;
	top: 219px;
}
.map-point-small2 {
	left: 259px;
  top: 265px;
}
.map-point-small3 {
	left: 232px;
  top: 286px;
}
.map-point-small4 {
	left: 220px;
  top: 308px;
}
.map-point-small5 {
	left: 246px;
  top: 301px;
}
.map-point-small6 {
	left: 276px;
	top: 288px;
}
.map-point-small7 {
	left: 293px;
  top: 280px;
}
.map-point-small8 {
	left: 302px;
	top: 314px;
}
.map-point-small9 {
	left: 278px;
  top: 323px;
}
.map-point-small10 {
	left: 322px;
	top: 322px;
}
.map-point-small11 {
	left: 290px;
	top: 334px;
}
.map-point-small12 {
	left: 292px;
	top: 353px;
}
.map-point-small13 {
	left: 307px;
  top: 342px;
}
.map-point-small14 {
	left: 378px;
	top: 361px;
}
.map-point-small15 {
	left: 367px;
	top: 343px;
}
.map-point-small16 {
	left: 406px;
	top: 327px;
}
.map-point-small17 {
	left: 435px;
	top: 334px;
}
.map-point-small18 {
	left: 452px;
	top: 343px;
}
.map-point-small19 {
	left: 480px;
  top: 316px;
}
.map-point-small20 {
	left: 445px;
	top: 300px;
}
.map-point-small21 {
	left: 487px;
	top: 270px;
}
.map-point-small22 {
	left: 516px;
	top: 266px;
}
.map-point-small23 {
	left: 542px;
  top: 266px;
}
.map-point-small24 {
	left: 542px;
	top: 221px;
}
.map-point-small25 {
	left: 554px;
	top: 195px;
}
.map-point-small26 {
	left: 491px;
  top: 170px;
}
.map-point-small27 {
	left: 423px;
	top: 206px;
}
.map-point-small28 {
	left: 636px;
	top: 188px;
}
.map-point-small29 {
	left: 528px;
	top: 340px;
}
.map-point-small30 {
	left: 590px;
	top: 339px;
}
.map-point-small31 {
	left: 650px;
  top: 330px;
}
.map-point-small32 {
	left: 679px;
  top: 284px;
}
.map-point-small33 {
	left: 750px;
	top: 231px;
}
.map-point-small34 {
	left: 804px;
  top: 184px;
}
.map-point-small35 {
	left: 724px;
  top: 327px;
}
.map-point-small36 {
	left: 781px;
	top: 334px;
}
.map-point-small37 {
	left: 746px;
	top: 370px;
}
.map-point-small38 {
	left: 781px;
	top: 370px;
}
.map-point-small39 {
	left: 811px;
	top: 366px;
}
.map-point-small40 {
	left: 896px;
  top: 379px;
}
.map-point-small41 {
	left: 862px;
	top: 316px;
}
.map-point-small42 {
	left: 832px;
	top: 271px;
}
.map-point-small43 {
	left: 832px;
  top: 238px;
}
.map-point-small44 {
	left: 874px;
	top: 220px;
}
.map-point-small45 {
	left: 903px;
  top: 252px;
}
.map-point-small46 {
	left: 914px;
  top: 293px;
}
.map-point-small47 {
	left: 1059px;
  top: 279px;
}
.map-point-small48 {
	left: 332px;
	top: 417px;
}
.map-point-small49 {
	left: 293px;
	top: 453px;
}
.map-point-small50 {
	left: 299px;
  top: 469px;
}

.map-place {
	position: absolute;
  right: 50%;
  top: 63px;
  transform: scale(0);
  backdrop-filter: blur(12.600000381469727px);
  box-shadow: 0 0 8px 0 rgba(0, 21, 36, 0.1);
  background: rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  color: #3c4352;
	white-space: nowrap;
	z-index: 1;
	transition: ease .2s;
}
.map-point-small .map-place {
	top: 38px;
}
.map-point:hover .map-place {
	transform: scale(1) translate(50%, -50%);
}

.map-nums {
	display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px -12.5px 0;
  position: relative;
  z-index: 1;
}
.map-num {
	width: calc(25% - 25px);
	box-shadow: 0 0 8px 0 rgba(0, 21, 36, 0.1);
	background: rgba(255, 255, 255, 0.7);
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-width: 260px;
	padding: 30px 25px;
	margin: 0 12.5px 25px;
}
.map-num-title {
	font-weight: 600;
	font-size: 22px;
	text-align: center;
	margin-bottom: 10px;
}
.map-num-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 137%;
	text-align: center;
	color: #3c4352;
}
@media (max-width:1250px) {
	.map-block {
		width: 1200px;
		transform: scale(.8);
		margin: -50px 0;
	}
}
@media (max-width:991px) {
	.map-block {
		transform: scale(.6);
		margin: -110px 0;
	}
	.map-point:hover .map-place {
		transform: scale(1.3) translate(50%, -50%);
	}
}
@media (max-width:767px) {
	.map-block {
		transform: scale(.45);
		margin: -165px 0;
	}
	.map-point:hover .map-place {
		transform: scale(2) translate(50%, -50%);
	}
}
@media (max-width:575px) {
	.map-block {
		transform: scale(.28);
		margin: -230px 0;
	}
	.map-place {
		display: none;
	}
}

.about-center {
	padding: 60px 0  20px;
	background: #e5edf1;
}
.about-choice {
	margin: 80px -15px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.about-choice-item {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-width: 290px;
	max-width: 305px;
	width: 100%;
	margin: 0 15px 70px;
}
.about-choice-img {
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 60px;
	margin-bottom: 22px;
}
.about-choice-img img {
	max-height: 100%;
}
.about-choice-text {
	font-weight: 500;
	font-size: 22px;
	text-align: center;
	color: #5a6170;
}
@media (max-width:991px) {
	.about-choice {
		justify-content: center;
	}
}
@media (max-width:767px) {
	.about-choice {
		margin: 60px -15px 0;
	}
	.about-choice-item {
		margin: 0 15px 50px;
	}
}

.about-bottom {
	padding: 40px 0 25px;
	position: relative;
	background: linear-gradient(8deg, rgba(136, 188, 221, 0) 71%, rgb(136 188 221 / 2%) 4%);
	overflow: hidden;
}
.about-bottom::before {
	content: '';
	position: absolute;
	left: -540px;
	bottom: 120px;
	border-radius: 100%;
	background: radial-gradient(50% 50% at 50% 50%, rgb(255, 239, 215) 0%, rgb(255, 239, 215) 100%);
	filter: blur(324px);
	width: 1405px;
	height: 1318px;
	z-index: -1;
}
.about-block {
	max-width: 945px;
	margin: 80px auto 30px;
}
.about-application-item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 75px;
}
.about-application-img {
	width: 350px;
	box-shadow: 0 6px 50px 0 rgba(0, 21, 36, 0.15);
	border: 7px solid #fff;
	border-radius: 6px;
}
.about-application-info {
	flex: 1;
	margin-left: 40px;
}
.about-application-item__inversion .about-application-info {
	margin-left: 0px;
	margin-right: 40px;
}
.about-application-title {
	font-weight: 600;
	font-size: 22px;
	color: #3c4352;
	margin-bottom: 15px;
}
.about-block .article-text {
	margin-bottom: 7px;
}
.about-block .list-dots {
	margin: 7px 0;
}
.about-block .list-dots li {
	line-height: 20px;
}
@media (max-width:991px) {
	.about-choice {
		justify-content: center;
	}
}
@media (max-width:767px) {
	.about-bottom {
		padding: 50px 0 25px;
	}
	.about-block {
    margin: 50px auto 30px;
	}
	.about-application-item {
		margin-bottom: 30px;
		flex-direction: column;
	}
	.about-application-img {
		order: 1;
	}
	.about-application-info {
		order: 2;
		margin: 30px 0 0;
	}
}
@media (max-width:575px) {
	.about-application-img {
		max-width: 290px;
	}
}

.about-soc {
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding-bottom: 25px;
}
.about-soc-block {
	display: flex;
	justify-content: center;
	align-items: center;
  flex-wrap: wrap;
  margin: 0 auto 35px;
}
.about-soc-link {
	width: 39px;
	height: 40px;
	margin: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border-radius: 11px;
	overflow: hidden;
	transition: ease .3s;
}
.about-soc-link:hover {
	box-shadow: 4px 5px 13px 0px rgb(0 0 0 / 33%);
}
.about-soc-link img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about-registry-border {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	box-shadow: 0 0 8px 0 rgba(0, 21, 36, 0.1);
	background-image: linear-gradient(90deg, #ffcc92 0%, #ffac60 50%, #ff8507 100%);
	border-radius: 6px;
	padding: 1px;
}
.about-registry {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	padding: 13px 34px;
	border-radius: 6px;
	background: #fff;
	font-size: 18px;
}
.about-registry img {
	margin-right: 10px;
}
.about-registry .registry-link {
	margin-left: 5px;
}

@media (max-width:767px) {
	.about-registry {
		flex-direction: column;
		text-align: center	;
	}
	.about-registry img {
		margin: 0 0 10px;
	}
	.about-registry .registry-link {
		margin: 10px 0 0;
	}
}

/** order business **/
.order-hero__wrap-corp {
	padding: 40px 0;
	background: #fcf7ef;
}

.order-bis-block{padding: 80px 0 40px;position: relative;overflow: hidden;}
.order-bis-block::before {
	content: '';
	position: absolute;
	right: -540px;
	top: 150px;
	background: radial-gradient(50% 50% at 50% 50%, rgb(255, 239, 215) 0%, rgb(255, 239, 215) 100%);
	border-radius: 100%;
	filter: blur(324px);
	width: 1405px;
	height: 818px;
	z-index: -1;
}
.order-bis-block__title{font-family: 'ZonaPro', sans-serif;font-weight: 600;font-size: 30px;line-height: 117%;text-align: center;color: #3c4352;margin-bottom:16px;}
.order-bis-block__desc{font-family: 'ZonaPro', sans-serif;font-weight: 400;font-size: 20px;line-height: 190%;text-align: center;color: #3c4352;margin-bottom:50px; position: relative;}
.order-bis-block__desc::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 88px;
	height: 3px;
	border-radius: 5px;
	background: #64A02A;
}

.order-bis-table{margin: 0 auto 40px;max-width: 1040px;}
.order-bis-table__wide {max-width: 1106px;}
.order-bis-table__container{display:flex;flex-direction:column;gap:20px}
.order-bis-table__item{display:flex;justify-content:space-between;align-items:center;height:66px;padding:0 26px 0 25px;border: 2px solid #ededed;border-radius:12px}
.order-bis-table__item:nth-child(odd){background: #fcf7ef;}
.order-bis-table__item__value{width:200px;text-align:center;font-size:16px;font-weight:600;}
.order-bis-table__item__discount{width:120px;text-align:center;font-size:16px;font-weight:400;}
.order-bis-table__item__price{width:130px;text-align:center;font-size:16px;font-weight:400;}
.order-bis-table__item__action{display:flex;justify-content:center;align-items:center;gap:15px;flex-wrap:wrap}
.order-bis-btn{display: flex;align-items: center;transition:.3s;padding:0 25px;border: 1px solid #3c4352;border-radius: 3px;height: 42px;font-weight: 700;font-size: 14px;letter-spacing: 0.02em;text-align: center;color: #3c4352;}
.order-bis-btn:hover{background: linear-gradient(360deg, #FF7E01 0%, #FFB133 100%);border: 1px solid transparent;color: #fff;}
.order-bis-block__info{max-width:1080px;margin:0 auto 24px;font-size:16px;text-align:center}
.order-bis-block__info span{font-weight:600}
.order-bis-block__action{display:flex;justify-content:center;align-items:center}
.order-bis-block__action__btn{transition:.3s;display:flex;justify-content:center;align-items:center;color:#333;height:51px;border: 1px solid #3c4352;border-radius: 3px;padding: 16px 38px;font-weight: 700;font-size: 16px;letter-spacing: 0.02em;text-align: center;color: #3c4352;}
.order-bis-block__action__btn:hover{background: linear-gradient(360deg, #FF7E01 0%, #FFB133 100%);border: 1px solid transparent;color:#fff}
.order-bis-table__item__action .button {
	min-height: 42px;
	min-width: 124px;
	font-size: 14px;
	box-shadow: 0 3px 0 0 #ffb233, 0 15px 24px 0 rgba(255, 149, 24, 0.4);
}

.order-bis__reester {
	box-shadow: 0 0 8px 0 rgba(0, 21, 36, 0.1);
	background: rgba(255, 255, 255, 0.7);
	border-radius: 6px;
	border: 1px solid #ff9618;
	max-width: 763px;
	margin: 80px auto 20px;
	padding: 28px 50px;
}
.order-bis__reester-title {
	font-family: 'ZonaPro', sans-serif;
	font-weight: 600;
	font-size: 22px;
	line-height: 140%;
	display: inline-flex;
	align-items: center;
	color: #3c4352;
	margin-bottom: 15px;
}
.order-bis__reester-title img {
	margin-right: 10px;
}
.order-bis__reester-text {
}

.order-bis__section {
	padding-top: 40px;
	position: relative;
	overflow: hidden;
}
.order-bis__section::before {
	content: '';
	position: absolute;
	left: -540px;
	bottom: 0px;
	background: radial-gradient(50% 50% at 50% 50%, rgb(222, 237, 248) 0%, rgb(222, 237, 248) 100%);
	border-radius: 100%;
	filter: blur(324px);
	width: 1405px;
	height: 818px;
	z-index: -1;
}

@media screen and (min-width: 1200px) {
  .order-bis-table__item__discount{transform:translateX(-40px)}
  .order-bis-table__item__price{transform:translateX(-40px)}
}

@media screen and (max-width: 991px) {
  .order-bis-table__item{flex-direction:column;justify-content:center;gap:10px;height:auto;padding:20px}
  .order-bis-table__item__discount--empty{display:none}
  .order-bis-table__item__value{width:180px}
}

@media screen and (max-width: 767px) {
  .order-bis-block__title{font-size:24px}
  .order-bis-block__desc{font-size:16px}
  .order-bis-block__info{font-size:16px}
  .order-bis-block__action__btn{font-size:18px}
	.order-bis__reester {
    padding: 15px;
		margin: 50px auto 20px;
	}
	.order-bis__reester-title {
    font-size: 18px;
	}
}

/* popup */

.popup{position:relative;width:100%;max-width:790px;margin:auto}
.popup-close{position:absolute;top:0;right:-35px;display:flex;justify-content:center;align-items:center;width:30px;height:30px;cursor:pointer}
.popup-close:hover .popup-close__icon{transform:scale(1.2)}
.popup-close__icon{transition:.3s}
.popup-container{overflow:hidden;position:relative;z-index:1;background:#f0f4e5;width:100%;padding:40px 30px 50px;border:2px solid #fff;border-radius:10px;box-shadow:0 5px 50px rgba(0, 20, 35, .15)}
.popup-content{position:relative;z-index:1;width:100%;max-width:460px}
.popup-title{font-size:20px;font-weight:600;letter-spacing:.45px}
.popup-border{background:#64a02a;width:90px;height:2px;margin:15px 0;border-radius:2px}
.popup-desc{margin-bottom:10px;line-height:1.4;font-size:16px}
.popup-pic{position:absolute;top:0;right:0;bottom:0;left:0;z-index:0;pointer-events:none}
.popup-pic__blur{position:absolute;top:50%;right:-150px;transform:translateY(-50%);background:#64a02a;width:300px;height:400px;border-radius:50%;filter:blur(150px) opacity(.7)}
.popup-pic__book{position:absolute;right:-240px;bottom:-80px;background:url('../img/popup/book.webp') no-repeat center / cover;width:601px;height:413px}
.popup-pic__flower-01{position:absolute;top:0;left:0;background:url('../img/popup/flower-01.webp') no-repeat center / cover;width:198px;height:173px}
.popup-pic__flower-02{position:absolute;bottom:0;right:0;background:url('../img/popup/flower-02.webp') no-repeat center / cover;width:340px;height:356px}
.popup-form{margin-top:15px}
.popup-form__fieldset{display:flex;align-items:center;margin-bottom:10px}
.popup-form__input{background:#fff;width:220px;height:36px;padding:15px;font-size:13px;border:1px solid #d5dfb9;border-right:0;border-radius:6px 0 0 6px}
.popup-form__input::placeholder{color:#3c4352;opacity:.55}
.popup-form__button{position:relative;z-index:1;display:flex;justify-content:center;align-items:center;gap:10px;background:linear-gradient(0, #529a0c 0%, #73d613 100%);color:#fff;fill:#fff;height:42px;padding:0 25px;border-radius:5px}
.popup-form__button:hover::after{opacity:1}
.popup-form__button::after{opacity:0;pointer-events:none;transition:.3s;position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;content:'';background:#529a0c;border-radius:inherit}
.popup-form__button__text{font-size:12px;font-weight:700;letter-spacing:.45px}
.popup-form__button__icon{width:13px;height:100%}
.popup-form__check{position:relative;display:flex;align-items:start;gap:5px;text-align:left}
.popup-form__check.error .popup-form__check__replace{border-color:#f05050}
.popup-form__check__input{position:absolute;z-index:-1;opacity:0}
.popup-form__check__input:checked ~ .popup-form__check__replace::after{opacity:1}
.popup-form__check__replace{position:relative;flex-shrink:0;background:#fff;width:15px;height:16px;border:1px solid #d5dfb9;border-radius:3px;cursor:pointer}
.popup-form__check__replace:hover{border-color:#64a02a}
.popup-form__check__replace:hover::after{opacity:.5}
.popup-form__check__replace::after{opacity:0;position:absolute;top:0;right:0;bottom:0;left:0;content:'';display:flex;justify-content:center;align-items:center;background:url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.83329 0.75L3.87496 6.70833L1.16663 4' stroke='%2364A02A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat center}
.popup-form__check__text{transform:translateY(2px);color:#737980;line-height:1.2;font-size:11px}
.popup-form__check__text a{color:#64a02a;font-weight:500}
.popup-form__check__text a:hover{text-decoration:underline}

.popup-form__input.error{border-color:#f05050}
.popup-form__input.error::placeholder{color:#f05050;opacity:1}
.popup-form__input.done{border-color:#52b25c}
.popup-form__input.done::placeholder{color:#52b25c;opacity:1}

@media screen and (max-width:991px) {
	.popup-close{top:-35px;right:0}
	.popup-pic__blur{right:-270px}
}

@media screen and (max-width:767px) {
	.popup-container{padding:40px 20px}
	.popup-content{max-width:100%;text-align:center}
	.popup-title{}
	.popup-title br{display:none}
	.popup-border{margin-right:auto;margin-left:auto}
	.popup-desc{font-size:14px}
	.popup-pic{display:none}
	.popup-form{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%}
	.popup-form__check{max-width:220px}
}

@media screen and (max-width: 575px) {
	.popup-form__fieldset{flex-direction:column;justify-content:center;gap:10px}
	.popup-form__input{width:100%;max-width:200px;height:40px;border-right:1px solid #d5dfb9;border-radius:6px}
	.popup-form__button{width:100%;max-width:200px}
}

.mfp-popup-modal{position:fixed!important;top:0!important;height:100%!important;overflow-y:scroll;overflow-x:hidden}
.mfp-popup-modal.mfp-bg{background:rgba(30, 20, 10, 0.3);opacity:1;backdrop-filter:blur(5px);-webkit-backdrop-filter:blur(5px)}
.mfp-popup-modal .mfp-content{border:0;border-radius:0}

.article-expert{margin-bottom:60px}
.article-expert-title{margin-bottom:30px;font-family:'ZonaPro', sans-serif;font-size:22px;font-weight:700}
.article-expert-grid{display:grid;gap:15px;grid-template-columns:repeat(2, 1fr)}
.article-expert-item{position:relative;display:flex;flex-direction:column;justify-content:start;align-items:center;background:#fff;color:#3c4352;padding:25px 25px 30px;border:1px solid rgba(60, 65, 80, .1);border-radius:6px}
.article-expert-item-special{margin:1px;box-shadow:0 10px 25px rgba(255, 150, 25, .4);border:0}
.article-expert-item-special::before{position:absolute;top:-1px;right:-1px;bottom:-1px;left:-1px;z-index:-1;content:'';background:linear-gradient(0, #ff7e01 0%, #ff9c1e 100%);border-radius:inherit}
.article-expert-item__icon{display:flex;justify-content:center;align-items:center;width:42px;height:42px;margin-bottom:10px}
.article-expert-item__icon img{display:block}
.article-expert-item__name{margin-bottom:15px;font-size:22px;font-weight:600;text-align:center}
.article-expert-item__desc{margin-bottom:15px;text-align:center;font-size:15px;font-weight:500}
.article-expert-item__list{margin-bottom:30px}
.article-expert-item__list__item{position:relative;margin-bottom:15px;padding-left:23px;font-size:15px}
.article-expert-item__list__item:last-child{margin-bottom:0}
.article-expert-item__list__item.check-icon::before{position:absolute;top:8px;left:0;content:'';width:12px;height:10px;background:url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.7212 0.778745C11.3499 0.406968 10.747 0.407202 10.3752 0.778745L4.31744 6.83674L1.62503 4.14435C1.25325 3.77257 0.650609 3.77257 0.278832 4.14435C-0.0929441 4.51613 -0.0929441 5.11877 0.278832 5.49055L3.6442 8.85592C3.82998 9.04169 4.07357 9.13481 4.31719 9.13481C4.5608 9.13481 4.80463 9.04192 4.9904 8.85592L11.7212 2.12492C12.0929 1.7534 12.0929 1.1505 11.7212 0.778745Z' fill='%232BC48A'/%3E%3C/svg%3E%0A") no-repeat center}
.article-expert-item__list__item.times-icon::before{position:absolute;top:7px;left:0;content:'';width:10px;height:11px;background:url("data:image/svg+xml,%3Csvg width='10' height='11' viewBox='0 0 10 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.10138 5.49967L9.84024 1.76065C9.94309 1.65772 9.99984 1.52041 10 1.37398C10 1.22748 9.94325 1.09 9.84024 0.987236L9.5126 0.659675C9.40959 0.556504 9.27228 0.5 9.12569 0.5C8.97935 0.5 8.84203 0.556504 8.73902 0.659675L5.00016 4.39846L1.26114 0.659675C1.15829 0.556504 1.02089 0.5 0.87439 0.5C0.728049 0.5 0.59065 0.556504 0.487805 0.659675L0.16 0.987236C-0.0533333 1.20057 -0.0533333 1.54756 0.16 1.76065L3.89894 5.49967L0.16 9.23854C0.0570732 9.34163 0.000406504 9.47894 0.000406504 9.62537C0.000406504 9.77179 0.0570732 9.90911 0.16 10.0121L0.487724 10.3397C0.590569 10.4428 0.728049 10.4993 0.874309 10.4993C1.02081 10.4993 1.15821 10.4428 1.26106 10.3397L5.00008 6.60081L8.73894 10.3397C8.84195 10.4428 8.97927 10.4993 9.12561 10.4993H9.12577C9.27219 10.4993 9.40951 10.4428 9.51252 10.3397L9.84016 10.0121C9.94301 9.90919 9.99976 9.77179 9.99976 9.62537C9.99976 9.47894 9.94301 9.34163 9.84016 9.23862L6.10138 5.49967Z' fill='%23E24C4B'/%3E%3C/svg%3E%0A") no-repeat center}
.article-expert-item__button{width:100%;max-width:270px;min-height:54px;margin-top:auto}
.article-expert-item__button-border{background:0;color:#474747;box-shadow:none;border:1px solid rgba(60, 67, 82, 0.4)}
.article-expert-item__button-border:hover{color:#fff;border:1px solid rgba(60, 67, 82, 0);box-shadow:none}

.article-expert-rating{display:flex;align-items:center;gap:8px;margin:0 auto 30px}
.article-expert-rating svg{white-space:nowrap;flex-shrink:0;width:19px;height:19px}
.article-expert-rating__stars{position:relative}
.article-expert-rating__stars__empty{display:flex;align-items:center;gap:6px}
.article-expert-rating__stars__empty svg{fill:#ebebeb}
.article-expert-rating__stars__filled{overflow:hidden;position:absolute;top:0;left:0;display:flex;align-items:center;gap:6px}
.article-expert-rating__stars__filled svg{fill:#fabb00}
.article-expert-rating__value{font-size:14px}

@media screen and (max-width:991px) {
	.article-expert-title{text-align:center}
}

@media screen and (max-width: 767px) {
	.article-expert-grid{grid-template-columns:repeat(1, 1fr)}
	.article-expert-item{width:100%;max-width:400px;padding:20px}
	.article-expert-item__name{margin-bottom:10px;font-size:18px}
	.article-expert-rating{margin-bottom:20px}
}

.ticket__info{background:rgba(75, 189, 87, 0.2);margin-bottom:24px;padding:23px 10px;text-align:center;border:1px solid rgba(93, 148, 99, 0.58);border-radius:7px}
.ticket__info__title{margin-bottom:3px;font-size:15px;font-weight:600}
.ticket__info__desc{font-size:15px;font-weight:400}

.payment-grid{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:15px 20px}
.payment-item{position:relative;display:flex;justify-content:center;align-items:center;width:50px;height:50px}
.payment-item.is-tooltip{z-index:5}
.payment-item:hover .payment-item__text{opacity:1}
.payment-item__icon{display:flex;justify-content:center;align-items:center}
.payment-item__icon-visa{width:34px;height:41px}
.payment-item__icon-mir{width:48px;height:14px}
.payment-item__icon-sber{width:36px;height:36px}
.payment-item__icon-sbp{width:30px;height:37px}
.payment-item__icon-cashless{width:37px;height:37px}
.payment-item__icon-foreign{width:30px;height:30px}
.payment-item__icon__img{width:100%;height:100%;object-fit:contain;object-position:center}
.payment-item__text{opacity:0;transition:.3s;position:absolute;bottom:calc(100% + 10px);left:-5px;z-index:5;white-space:nowrap;display:flex;justify-content:center;align-items:center;background:#fff;color:#414651;height:30px;padding:0 10px;text-align:center;font-family: 'Roboto Medium', sans-serif;font-size:12px;font-weight:500;border-radius:7px;filter:drop-shadow(0px 2px 6px rgba(0, 0, 0, .15));pointer-events:none}
.payment-item__text::before{position:absolute;bottom:-4px;left:15px;z-index:-1;content:'';background:#fff;width:12px;height:12px;transform:rotate(45deg)}

@media screen and (max-width: 1199px) {
	.payment-item__text{left:auto;right:-5px}
	.payment-item__text::before{right:15px;left:auto}
}

@media screen and (max-width: 767px) {
	.payment-item__text{right:auto;left:50%;transform:translateX(-50%)}
	.payment-item__text::before{left:calc(50% - 6px);right:auto}
}

@media screen and (max-width: 575px) {
	.payment-grid{max-width:200px;margin:0 auto}
	.payment-item__text{font-size:12px}
}

.popup-bd{position:relative;width:100%;max-width:790px;margin:80px auto}
.popup-bd-container{overflow:hidden;position:relative;z-index:1;display:flex;flex-direction:column;justify-content:start;align-items:start;background:#f0f4e5;width:100%;padding:40px 30px 65px;border:2px solid #fff;border-radius:10px;box-shadow:0 5px 50px rgba(0, 20, 35, .15)}
.popup-bd-content{position:relative;z-index:5}
.popup-bd-title{line-height:1.55;margin-bottom:20px;letter-spacing:0.6px;font-family:'ZonaPro', sans-serif;font-size:22px;font-weight:600}
.popup-bd-title span{display:inline-flex;justify-content:center;align-items:center;background:linear-gradient(0, #529a0c 0%, #73d613 100%);color:#fff;height:32px;padding:0 12px;letter-spacing:0.1px;font-weight:700;border-radius:1000px}
.popup-bd-desc-01{line-height:1.3;margin-bottom:15px;font-size:18px}
.popup-bd-desc-01 span{font-weight:700}
.popup-bd-desc-02{line-height:1.3;margin-bottom:20px;font-size:16px;font-weight:700;font-style:italic}
.popup-bd-button{}
.popup-bd-button span{position:relative;z-index:5}
.popup-bd-pic{position:absolute;top:0;right:0;bottom:0;left:0;}
.popup-bd-pic__img{position:absolute;top:0;right:0;bottom:0;left:0;background:url('../img/popup/birthday.webp') no-repeat top right / cover}
.popup-bd-close{transition:.2s;position:absolute;right:-60px;top:-20px;background:#fff;stroke:#ff8407;display:flex;justify-content:center;align-items:center;box-shadow:0 0 8px rgba(0, 21, 36, 0.15);width:40px;height:40px;border-radius:50%;cursor:pointer}
.popup-bd-close:hover{background:#ff8407;stroke:#fff}
.popup-bd-close__icon{width:28px;height:28px}

@media screen and (max-width:991px) {
	.popup-bd-close{top:-60px;right:0}
}

@media screen and (max-width:767px) {
	.popup-bd-container{padding:30px 20px 40px 20px}
	.popup-bd-content{margin:0 auto;text-align:center}
	.popup-bd-pic{opacity:.2}
}

@media screen and (max-width: 575px) {
	.popup-bd-content{max-width:330px}
	.popup-bd-title{font-size:20px;letter-spacing:0}
	.popup-bd-title br{display:none}
	.popup-bd-desc-01{font-size:16px}
	.popup-bd-desc-01 br{display:none}
	.popup-bd-desc-02 br{display:none}
}

.order-tabs .order-hero__wrap{padding:75px 0 350px}
.order-tabs .section-ticket{margin-top:-350px}
.order-tabs .tickets{margin-top:43px}

.lic-head__action{display:flex;justify-content:center;align-items:center}
.lic-head__action__inner{display:flex;justify-content:center;align-items:center;gap:10px;background:#fff;padding:4px;border-radius:3px}
.lic-head__action__button{transition:.3s;display:flex;justify-content:center;align-items:center;color:#333;height:56px;padding:0 40px;font-size:16px;letter-spacing:0.025em;border-radius:3px;cursor:pointer}
.lic-head__action__button.is-selected{pointer-events:none;background:linear-gradient(180deg, #78b43e 0%, #5a9620 100%);color:#fff;text-shadow:-.5px 0 0 #fff, .5px 0 0 #fff;box-shadow:0 8px 8px -4px rgba(24, 75, 35, .08), 0 4px 6px -4px rgba(24, 75, 39, .12)}
.lic-head__action__button:not(.is-selected):hover{color:#78b43e}

@media screen and (max-width: 575px) {
	.lic-head__action__button{height:50px;padding:0 20px}
}

.header__support{position:relative;z-index:3;display:flex;align-items:center;gap:4px;color:#1942be;line-height:1;font-size:14px;font-weight:600}
.header__support:hover span{border-color:#1942be}
.header__support span{transition:.3s ease-in-out;border-bottom:1px solid transparent}

.thanks-downloading{background:url('../img/thanks-downloading/bg.webp') no-repeat center top / cover}

@media screen and (max-width: 991px) {
	.thanks-downloading br{display:none}
}

.t-lead{margin:110px 0 100px}
.t-lead-title{color:#3c4352;line-height:1.2;margin-bottom:15px;font-family:'ZonaPro', sans-serif;font-size:40px;font-weight:800;text-align:center;text-transform:uppercase}
.t-lead-desc{color:#000;line-height:1.2;margin-bottom:70px;text-align:center}
.t-lead-grid{display:flex;justify-content:space-between;align-items:center;gap:80px 50px;margin-bottom:80px;padding:0 0 0 45px}
.t-lead-frame{position:relative;z-index:1;width:100%;max-width:624px}
.t-lead-frame::before{position:absolute;top:-20px;right:-20px;bottom:-20px;left:-20px;z-index:-5;content:'';background:#fff;box-shadow:-29px 31px 50px rgba(0, 21, 36, 0.15);border-radius:6px}
.t-lead-frame::after{position:absolute;top:5px;right:5px;bottom:-45px;left:-45px;z-index:-10;content:'';background:#fff;opacity:.7;border-radius:6px}
.t-lead-frame__container{overflow:hidden;position:relative;padding-bottom:calc(392 / 720 * 100%)}
.t-lead-frame__container__video{position:absolute;top:0;right:0;bottom:0;left:0;height:100%}
.t-lead-info{display:flex;flex-direction:column;gap:25px}
.t-lead-info__item{}
.t-lead-info__item__title{margin-bottom:15px;font-size:22px;font-weight:600}
.t-lead-info__item__desc{}
.t-lead-download{text-align:center}
.t-lead-download a{transition:.3s ease-in-out;color:#1942be;border-bottom:1px solid #1942be}
.t-lead-download a:hover{border-color:transparent}

.t-stats{margin-bottom:100px}
.t-stats-grid{display:grid;grid-template-columns:repeat(4, 1fr);gap:25px}
.t-stats-item{background:rgba(255, 255, 255, 0.7);padding:30px 20px;border-radius:6px;box-shadow:0 0 8px  rgba(0, 21, 36, 0.1);text-align:center}
.t-stats-item__value{margin-bottom:10px;font-size:22px;font-weight:600}
.t-stats-item__desc{}

.t-reviews{margin-bottom:100px}
.t-reviews-title{margin-bottom:75px}
.t-reviews-grid{display:flex;flex-direction:column;gap:20px}
.t-reviews-item{display:flex;gap:45px;background:#fff;padding:45px 45px  55px;border:1px solid #ebebeb;box-shadow:0 6px 50px  rgba(0, 21, 36, .15);border-radius:6px}
.t-reviews-item__pic{flex-shrink:0;width:106px;height:106px;border-radius:50%;overflow-x:hidden}
.t-reviews-item__info{padding-top:5px}
.t-reviews-item__info__head{display:flex;align-items:center;gap:23px;margin-bottom:17px}
.t-reviews-item__info__head span{font-family:'ZonaPro', sans-serif;font-size:22px}
.t-reviews-item__info__head img{flex-shrink:0;width:40px;height:40px}
.t-reviews-item__info__body{line-height:1.4}

.t-promo{position:relative;width:100%;max-width:1920px;margin:0 auto}
.t-promo-grid{display:flex;justify-content:end;align-items:center;gap:70px;min-height:585px;padding:95px 0 60px}
.t-promo-pic{position:relative;flex-shrink:0;width:100%;max-width:381px}
.t-promo-pic::before{position:absolute;top:-90px;left:-1335px;bottom:0;z-index:-1;content:'';background:url('../img/thanks-downloading/pic.webp') no-repeat right bottom / cover;width:1684px;height:586px}
.t-promo-pic__container{position:relative;width:100%;padding-bottom:calc(431 / 381 * 100%)}
.t-promo-pic__container img{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;object-fit:cover;object-position:center}
.t-promo-info{width:100%;max-width:510px}
.t-promo-info__title{line-height:1.2;margin-bottom:35px;font-family:'ZonaPro', sans-serif;font-size:34px;font-weight:700;letter-spacing:0.03em}
.t-promo-info__desc{line-height:1.4;margin-bottom:15px;font-weight:700}
.t-promo-info__desc span{color:#64a02a}
.t-promo-info__list{}
.t-promo-info__list li{padding-bottom:2px}
.t-promo-info__button{}

.popup-btn{transition:.3s;animation:up 1s infinite alternate linear;opacity:0;pointer-events:none;position:absolute;top:30px;right:60px;z-index:100;display:flex;align-items:center;justify-content:center;width:210px;height:90px;padding-right:10px;gap:15px;filter:drop-shadow(0 10px 15px  rgba(15, 25, 40, .1))}
.popup-btn.popup-btn-active{opacity:1}
.popup-btn::after{position:absolute;top:calc(50% - 6px);left:50%;z-index:-1;content:'';transform:translate(-50%, -50%);background:url('../img/thanks-downloading/mouse-bg.svg') no-repeat center / contain;width:210px;height:100%}
.popup-btn svg{flex-shrink:0;width:32px;height:32px}
.popup-btn span{color:#1942be;line-height:1.2;font-size:16px;font-weight:600}
.popup-btn span br{display:block}

@keyframes up {
	0%{transform:translateY(0)}
	100%{transform:translateY(-20px)}
}

@media (max-width: 767px) {
	.popup-btn{display:none}
}

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

}

@media screen and (max-width: 991px) {
	.t-lead-title{font-size:32px}
	.t-lead-grid{flex-direction:column;justify-content:center;align-items:center;padding:0}
	.t-lead-info{flex-direction:column;justify-content:center;align-items:center;text-align:center}
	.t-stats-grid{grid-template-columns:repeat(2, 1fr)}
	.t-reviews-title{margin-bottom:60px}
	.t-reviews-item{gap:30px;padding:30px}
	.t-promo-grid{flex-direction:column;justify-content:center;align-items:center;gap:30px;min-height:auto;padding:0 0 60px 0}
	.t-promo-pic{max-width:280px;margin-left:-10%}
	.t-promo-pic::before{display:none}
	.t-promo-info{display:flex;flex-direction:column;justify-content:center;align-items:center}
	.t-promo-info__title{font-size:28px;text-align:center}
	.t-promo-info__desc{text-align:center}
}

@media screen and (max-width: 767px) {
	.t-lead{margin-bottom:80px}
	.t-lead-frame::before, .t-lead-frame::after{display:none}
	.t-lead-desc{margin-bottom:40px}
	.t-lead-grid{gap:40px;margin-bottom:40px}
	.t-stats-{margin-bottom:80px}
	.t-reviews{margin-bottom:80px}
}

@media screen and (max-width: 575px) {
	.t-lead-title{font-size:28px}
	.t-lead-info__item__title{font-size:20px}
	.t-stats-grid{grid-template-columns:repeat(1, 1fr)}
	.t-stats-item__value{font-size:20px}
	.t-reviews-item{flex-direction:column;justify-content:center;align-items:center;padding:30px 20px}
	.t-reviews-item__info{padding-top:0}
	.t-reviews-item__info__head{justify-content:center;align-items:center;width:100%}
	.t-reviews-item__info__head span{font-size:20px}
	.t-reviews-item__info__head img{width:32px;height:32px}
}

.list-check{}
.list{}

.popup-project{position:relative;width:100%;max-width:790px;margin:auto}
.popup-project-close{position:absolute;top:0;right:-35px;display:flex;justify-content:center;align-items:center;width:30px;height:30px;cursor:pointer}
.popup-project-close:hover .popup-project-close__icon{transform:scale(1.2)}
.popup-project-close__icon{transition:.3s}
.popup-project-container{overflow:hidden;position:relative;z-index:1;display:flex;justify-content:space-between;align-items:center;gap:30px 10px;background:#f0f4e5;width:100%;padding:40px 20px 40px 30px;border:2px solid #fff;border-radius:10px;box-shadow:0 5px 50px rgba(0, 20, 35, .15)}
.popup-project-info{position:relative;z-index:1;width:100%;max-width:320px}
.popup-project-info__title{line-height:1.55;margin-bottom:20px;letter-spacing:0.6px;font-family:'ZonaPro', sans-serif;font-size:22px;font-weight:600}
.popup-project-info__list{margin:0 0 15px 0}
.popup-project-info__list li{margin-bottom:8px}
.popup-project-info__button{min-width:202px;min-height:48px;padding:10px 18px;letter-spacing:0.06em;font-family:'ZonaPro', sans-serif;font-size:12px;font-weight:600}
.popup-project-info__button svg{position:relative;z-index:1;margin-left:10px}
.popup-project-info__pic{width:100%;max-width:410px}
.popup-project-info__pic__container{position:relative;overflow:hidden;width:100%;padding-bottom:calc(217 / 410 * 100%);border-radius:4px}
.popup-project-info__pic__container img{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;object-position:center;object-fit:cover}
.popup-project-decor{position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}
.popup-project-decor__left{position:absolute;top:2px;left:2px;z-index:1;background:url('../img/popup/project-decor-left.svg') no-repeat center / contain;width:149px;height:155px}
.popup-project-decor__right{position:absolute;top:2px;right:2px;z-index:1;background:url('../img/popup/project-decor-right.svg') no-repeat center / contain;width:171px;height:169px}
.popup-project-decor__dog{position:absolute;top:-85px;right:95px;z-index:1;background:url('../img/popup/project-dog.webp') no-repeat center / contain;width:249px;height:137px}

@media screen and (max-width:991px) {
	.popup-project-close{top:-35px;right:0}
}

@media screen and (max-width:767px) {
	.popup-project{max-width:450px}
	.popup-project-container{flex-direction:column;justify-content:center;align-items:center;padding:40px 20px}
	.popup-project-info{display:flex;flex-direction:column;justify-content:center;align-items:center;max-width:410px}
	.popup-project-info__title{text-align:center}
	.popup-project-decor__dog{right:auto;left:50%;transform:translateX(-50%)}
}

@media screen and (max-width: 379px) {
	.popup-project-info__title{font-size:18px}
}

.img-zoom{overflow:hidden;position:relative;display:block}
.img-zoom:hover::before{opacity:1}
.img-zoom::before{opacity:0;transition:.3s ease-in-out;position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:'';background:rgba(0, 0, 0, .25) url('../img/article/zoom.svg') no-repeat center / contain;background-size:32px}

.textbook-slide-infographics{margin:30px 0 75px 0}
/*.textbook-slide-infographics .swiper-arrows{display:none}*/
.textbook-slide-infographics-item{width:100%}
.textbook-slide-infographics-item__container{position:relative;background:#f2f2f2;width:100%;padding-bottom:calc(578 / 938 * 100%)}
.textbook-slide-infographics-item__img{position:absolute;top:0;right:0;bottom:0;left:0;content:'';width:100%;height:100%;object-fit:cover;object-position:center}

.textbook-slide-infographics .swiper-button-prev, .textbook-slide-infographics .swiper-button-next {top:50%;transform:translateY(-50%);margin:0;}

.textbook-slide-infographics .swiper-button-prev{left:-75px}
.textbook-slide-infographics .swiper-button-next{right:-75px}

@media (max-width:1400px) {
	.textbook-slide-infographics .swiper-button-prev{left:-20px}
	.textbook-slide-infographics .swiper-button-next{right:-20px}
}
@media (max-width:767px) {
	.textbook-slide-infographics .swiper-button-prev{left:-15px}
	.textbook-slide-infographics .swiper-button-next{right:-15px}
}

/** update user **/
.order-hero__wrap-user{padding:90px 0;background:#fcf7ef}
.order-hero__wrap-user{}

.order-hero__text__promo{color:#3c4352;margin-bottom:30px;font-weight:700}
.order-hero__text__action{display:flex;align-items:center;gap:30px}
.order-hero__text__button{}
.order-hero__text__price{font-family:'ZonaPro', sans-serif;font-size:28px;font-weight:600}

/** arrows reviews **/
.reviews-block{position:relative}
.reviews-block .swiper-button-prev{left:-80px}
.reviews-block .swiper-button-next{right:-80px}
.reviews-block .swiper-pagination{bottom:0!important}

@media screen and (max-width: 1400px) {
	.reviews-wrapper{padding-right:0;padding-left:0}
	.reviews-block{padding:0 15px}
	.reviews-block .swiper-button-prev{width:50px;height:50px;transform-origin:center;left:-10px}
	.reviews-block .swiper-button-next{width:50px;height:50px;transform-origin:center;right:-10px}
}

@media screen and (max-width: 767px) {
	.swiper-button-prev{display:none}
	.swiper-button-next{display:none}
	.reviews-block{padding:0}
}

.table-privacy-wrap {overflow:auto;width:100%;max-width:100%}
.table-privacy{border-collapse:collapse;border:1px solid #000;font-size:10px;width:100%}
.table-privacy caption{margin-bottom:15px}
.table-privacy th,
.table-privacy tr,
.table-privacy td{border:1px solid #000;padding:5px}