.transparent-img__section-top {
  margin: 0;
  padding-top: 70px;
	background: linear-gradient(90deg, rgba(213, 217, 223, 0.6) 0%, rgba(232, 232, 232, 0.6) 100%);
}
.transparent-img__img {
	display: flex;
	justify-content: center;
	align-items: center;
}
.button-group {
	display: flex;
  flex-wrap: wrap;
	margin: 30px auto 15px;
	justify-content: center;
  padding: 0;
	gap: 20px 30px;
}
.button-group .btn-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
	padding: 0;
}
.button-group .button-green {
  display: inline-flex;
  justify-content: center;
  align-items: center;
	gap: 12px;
  position: relative;
  min-height: 60px;
	min-width: 215px;
	border-radius: 10px;
	padding: 12px 36px;
  font-weight: 700;
	font-size: 18px;
	line-height: 150%;
	text-align: center;
	color: #fff;
  background: #00ab47;
  transition: ease .3s;
  text-decoration: none;
}
.button-group .button-green:hover {
  background: #00cc55;
}
.button-group .support-white {
  font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	text-align: center;
	color: rgba(11, 36, 71, 0.5);
  margin-top: 8px;
}

.transparent-img__section {
	margin: 100px 0;
}

.text-left {
	text-align: left !important;
}

.twentytwenty-block__wide {
	max-width: 100%;
}
.twentytwenty-block__wide .img-content {
  max-width: 100%;
  height: 0;
  border-radius: 20px;
  padding: 0 0 45.046%;
  overflow: hidden;
}
.twentytwenty-block__wide .twentytwenty-handle {
	margin-left: -20px;
}

.method-wrap {
	margin: 63px 0;
}
.method-text {
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	color: #0b2447;
	text-align: center;
	margin-bottom: 23px;
}
.method-block {
	background: #f9fafb;
	border-radius: 15px;
	padding: 30px 40px 10px 40px;
}
.method-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	font-weight: 700;
	font-size: 22px;
	line-height: 150%;
	color: #0b2447;
	margin-bottom: 20px;
}
.method-link:hover {
	text-decoration: underline;
}

.service-block__big.service-block {
	gap: 30px 63px;
	margin: 40px 0 60px;
}
.service-block__big .service-item {
  width: initial;
  flex: 1;
}
.service-block__big .online-h3 {
  font-weight: 700;
	font-size: 30px;
	line-height: 150%;
	color: #0b2447;
	margin: 0;
}
.service-block__big .service-item__img {
  flex: initial;
  width: 100%;
  max-width: 560px;
  margin: 0;
}
.service-block__big .service-item__img img {
	border-radius: 9px;
	box-shadow: 0 0 48px 0 rgba(11, 36, 71, 0.15);
}
.service-item__text {
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	text-align: center;
	color: #96a1b0;
	margin-top: 23px;
}

/* video-thumbnail */
iframe {
  border: none;
}
.video-thumbnail-block {
  max-width: 100%;
	margin: 30px 0 30px;
}
.video-thumbnail {
  position: relative;
  padding-bottom: 45.046%;
  height: 0;
  overflow: hidden;
  border-radius: 9px;
}
.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: 80px;
	height: 80px;
	transform: translate(-50%, -50%);
	z-index: 1;
	background: url(../images/transparent-img/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: rgba(0, 0, 0, 1);
	opacity: 0.4;
	transition: ease 0.4s;
}
.video-thumbnail__preview:hover:after {
  background: rgba(0, 0, 0, 1);
	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: 45.046%;
	height: 0;
	overflow: hidden;
	border-radius: 9px;
	margin: 30px 0 30px;
}
.youtube-popup::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 80px;
	height: 80px;
	transform: translate(-50%, -50%);
	z-index: 1;
	background: url(../images/transparent-img/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: rgba(0, 0, 0, 1);
	opacity: 0.4;
	transition: ease 0.4s;
}
.youtube-popup:hover:after {
  background: rgba(0, 0, 0, 1);
	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;
	}
}

.border-text {
	background: #f2f4f6;
	border-radius: 20px;
	padding: 32px 52px;
	margin: 40px 0;
}
.border-text .online-text {
	margin: 0;
}
.link-violet {
	text-decoration: underline;
	color: #6534ac;
}
.link-violet:hover {
	text-decoration: none;
}

.list-num-wrap {
	margin: 40px 0;
}
.list-num-block {
	display: flex;
	margin: 23px 0;
}
.list-num {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 79px;
	width: 56px;
	min-width: 56px;
	height: 56px;
	box-shadow: 0 0 20px 0 rgba(11, 36, 71, 0.15);
	background: #fff;
	font-weight: 700;
	font-size: 22px;
	line-height: 150%;
	text-align: center;
	background: linear-gradient(90deg, #fc6076 0%, #ff9a44 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-right: 20px;
}
.list-num-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.list-num-title {
	font-weight: 700;
	font-size: 22px;
	line-height: 150%;
	color: #0b2447;
	margin-bottom: 10px;
}
.list-num-text {
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	color: #0b2447;
}

.transparent-img__center {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 63px 0;
}
.transparent-img__center img {
	border-radius: 9px;
	box-shadow: 0 0 48px 0 rgba(11, 36, 71, 0.15);
}
.transparent-img__center-text {
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	text-align: center;
	color: #96a1b0;
	margin-top: 23px;
}

.blockquote {
	border-left: 10px solid #edd118;
	padding-left: 23px;
	margin: 40px 0;
	max-width: 1000px;
}
.blockquote span {
	font-weight: 700;
}

.prefooter-section {
	background: linear-gradient(90deg, rgba(213, 217, 223, 0.6) 0%, rgba(232, 232, 232, 0.6) 100%);
	padding: 70px 0 90px;
}
.prefooter-block {
	display: flex;
	justify-content: center;
	gap: 30px 70px;
}
.prefooter-img {
	max-width: 446px;
}
.prefooter-info {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	flex: 1;
}
.prefooter-info .button-group {
  margin: 30px 0 15px;
  justify-content: flex-start;
}


@media (max-width:1199px) {
	.transparent-img__section-top {
		padding-top: 50px;
	}
	.transparent-img__section {
    margin: 80px 0;
	}
	.method-block {
    padding: 30px 25px 10px 25px;
	}
	.service-block__big.service-block {
		gap: 30px;
	}
	.service-block__big .service-item__img {
		max-width: 460px;
	}
	.service-block__big .online-h3 {
		line-height: 120%;
	}
	.border-text {
    padding: 30px 25px;
	}
	.prefooter-block {
		gap: 30px;
	}
}
@media (max-width:991px) {
	.method-link {
		font-size: 18px;
	}
	.service-block__big.service-block {
		flex-direction: column;
		gap: 25px;
		margin: 40px 0 45px;
	}
	.service-block__big .service-item {
		margin: 0;
		order: 2;
    max-width: 560px;
	}
	.service-block__big .service-item__img {
    max-width: 560px;
    order: 1;
  }
	.service-item__text {
		margin-top: 10px;
	}
	.prefooter-section {
		padding: 40px 0;
	}
	.prefooter-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width:767px) {
	.transparent-img__section {
    margin: 55px 0;
  }
	.list-num {
		width: 40px;
    min-width: 40px;
    height: 40px;
		font-size: 18px;
		margin-right: 15px;
	}
}
@media (max-width:575px) {
	.method-wrap {
    margin: 40px 0;
	}
	.method-block {
    padding: 20px 15px 10px 15px;
  }
	.service-block__big.service-block {
    margin: 25px 0 35px;
  }
	.transparent-img__center {
		margin: 40px 0;
	}
}