@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-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: 65%;
	}
}
@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 10px;
	}
}
@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: 34px;
	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-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;
	}
	.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;
}
/* 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: none;
}
.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 img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
@media (max-width:767px) {
	.article-box__img {
		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 {
	color: rgb(81, 88, 177);
	text-decoration: underline;
}
.article-text a: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;
}
@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;
}	
/* 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 .author {
	margin: 0 0 8px;
	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;
}
.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 #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 #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 #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 #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;
	}
}