@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
	--default-color: #fff;
	--gradient-color: linear-gradient(180.00deg, rgb(65, 206, 0),rgb(46, 143, 0) 100%);
	--gray-color: radial-gradient(1705.00% 100.00% at 50% 100%,rgb(114, 114, 114),rgb(154, 154, 154) 100%);
	--green-color: rgb(65, 206, 0);
	--purple-color: #7030A0;
}

/* Scroll Bar */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track-piece {
	background-color: transparent;
	-webkit-border-radius: 8px;
}
::-webkit-scrollbar-thumb:vertical {
	height: 8px;
	background-color: var(--green-color);
	-webkit-border-radius: 5px;
}
::-webkit-scrollbar-thumb:horizontal {
	width: 8px;
	background-color: var(--green-color);
	-webkit-border-radius: 5px;
}

@keyframes grow {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(2.5);
	}
}
@keyframes grow-arrow {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.3);
	}
}
@-webkit-keyframes jittery {
	5%, 50% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	10% {
		-webkit-transform: scale(.95);
		transform: scale(.95)
	}
	15% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
	20% {
		-webkit-transform: scale(1.05) rotate(-5deg);
		transform: scale(1.05) rotate(-5deg)
	}
	25% {
		-webkit-transform: scale(1.05) rotate(5deg);
		transform: scale(1.05) rotate(5deg)
	}
	30% {
		-webkit-transform: scale(1.05) rotate(-3deg);
		transform: scale(1.05) rotate(-3deg)
	}
	35% {
		-webkit-transform: scale(1.05) rotate(2deg);
		transform: scale(1.05) rotate(2deg)
	}
	40% {
		-webkit-transform: scale(1.05) rotate(0);
		transform: scale(1.05) rotate(0)
	}
}
@keyframes jittery {
	5%, 50% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	10% {
		-webkit-transform: scale(.95);
		transform: scale(.95)
	}
	15% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
	20% {
		-webkit-transform: scale(1.05) rotate(-5deg);
		transform: scale(1.05) rotate(-5deg)
	}
	25% {
		-webkit-transform: scale(1.05) rotate(5deg);
		transform: scale(1.05) rotate(5deg)
	}
	30% {
		-webkit-transform: scale(1.05) rotate(-3deg);
		transform: scale(1.05) rotate(-3deg)
	}
	35% {
		-webkit-transform: scale(1.05) rotate(2deg);
		transform: scale(1.05) rotate(2deg)
	}
	40% {
		-webkit-transform: scale(1.05) rotate(0);
		transform: scale(1.05) rotate(0)
	}
}
@-webkit-keyframes heartbeat {
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
}
@keyframes heartbeat {
	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
*:before, *:after {
	box-sizing: border-box;
}
html {
	width: 100%;
	overflow-x: hidden;
}
body {
	background: linear-gradient(rgb(69, 39, 74), rgb(74, 39, 60), rgb(88, 47, 31));
	margin: 0;
	padding: 0;
	font: 500 18px/1.3 'Inter', sans-serif;
	color: var(--default-color);
}
ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	color: var(--default-color);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
input, button, select, textarea {
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
	font-family: 'Inter', sans-serif;
}
button, a {
	cursor: pointer;
	transition: 300ms;
}
table {
	border-collapse: collapse;
	width: 100%;
}
img {
	max-width: 100%;
}
.maxwidth {
	margin: 0 auto;
	min-width: 375px;
	height: 100%;
}
.fixed {
	width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
	max-width: 100%;
}
.fixed--1600 {
	width: 1640px;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.grid {
	display: grid;
}
.title {
	color: var(--default-color);
	font-size: 36px;
	line-height: 1.1;
	font-weight: 500;
}
.title--dark,
.title--dark * {
	color: #000;
}
.title * {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
}
.title--36 {
	font-size: 36px;
}
.title--44 {
	font-size: 44px;
}
.title--90 {
	font-size: 90px;
}
.title--bold {
	font-weight: bold;
}
.title--extra {
	font-weight: 900;
	text-transform: uppercase;
}
.title--center {
	text-align: center;
}
.underline {
	position: relative;
}
.underline > span {
	position: relative;
	z-index: 3;
}
.underline:after {
	content: '';
	background: rgb(92, 73, 255);
	height: 19px;
	position: absolute;
	bottom: 1px;
	left: 30px;
	right: -15px;
}
.btn {
	background: var(--gradient-color);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 9px 22px;
	color: #fff;
	transition: 300ms;
	text-align: center;
	text-decoration: none!important;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.2;
	max-width: 100%;
	border-radius: 50px;
	min-width: 175px;
	flex-wrap: nowrap;
}
.btn--bold {
	font-weight: bold;
}
.btn--middle {
	padding: 12px 26px;
}
.btn--big {
	padding: 14px 28px;
	font-size: 20px;
	min-width: 222px;
}
.btn--biggest {
	padding: 23px 28px;
	font-size: 20px;
	min-width: 222px;
}
.btn--gray {
	background: var(--gray-color);
}
.btn:hover {
	background: #000;
	color: #fff;
}
.btn--hider {
	width: 40px!important;
	min-width: 1px!important;
	padding-left: 0;
	padding-right: 0;
}
.btn--hider .btn__text {
	display: none;
}
.btn--hider .btn__arrow {
	margin-left: 0;
	position: relative;
	top: 2px;
}
.btn--hider .btn__arrow > svg {
	transform: rotate(-45deg);
}
.image img {
	display: block;
}
.image-responsive {
	height: 0;
	position: relative;
	padding-bottom: 52.6%;
}
.image-responsive--vertical {
	padding-bottom: 130%;
}
.image-responsive__image {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.overflow {
	overflow: hidden;
}
.input-class {
	background: #fff;
	border: 1px solid #aaa;
	display: block;
	width: 100%;
	height: 45px;
	padding: 0 14px;
	border-radius: 5px;
	transition: 300ms;
	text-align: left;
	color: #000;
	font-size: 15px;
}
textarea.input-class {
	height: 120px;
	padding: 15px 14px;
	resize: none;
}
select.input-class {
	background: url(../img/select-arrow.svg) no-repeat right 20px top 50%;
	appearance: none;
	-webkit-appearance: none;
	padding-right: 50px;
}
.input-class::placeholder {
	color: rgba(0, 0, 42, 0.5);
	transition: 300ms;
}
.input-class:focus::placeholder {
	font-size: 0;
}
.input-class:focus {
	border-color: var(--blue-color);
}
.is-table {
	width: 100%;
	border: none;
	border-collapse: collapse;
}
.is-table tbody tr:not(:last-child),
.is-table thead tr {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.is-table tbody tr:hover {
	background: rgba(0, 0, 0, 0.1)!important;
}
.is-table th,
.is-table td {
	font-size: 13px;
	text-align: left;
	font-weight: 400;
	/*border-left: 1px solid rgba(0, 0, 0, 0.3);*/
}
.is-table th:first-child,
.is-table td:first-child {
	text-align: left;
	border-left: none;
}
.is-table th {
	background: #E0E0E0;
	font-size: 14px;
	font-weight: bold;
	padding: 14px 18px;
}
.is-table td {
	padding: 10px 18px;
}
.is-table tbody tr:nth-child(2n) {
	background: #E0E0E0;
}
.is-table-div {
	overflow: auto;
}
.is-table__checkbox-td {
	width: 40px;
}
.is-table__id-td {
	width: 40px;
}
.is-table__actions-td {
	width: 100px;
}
.is-table__actions {
	gap: 5px;
}
.is-table__action {
	background: #dcdcdc;
	width: 28px;
	height: 28px;
	border-radius: 5px;
	justify-content: center;
	align-items: center;
}
.is-table tbody tr:nth-child(2n) .is-table__action,
.is-table tbody tr:hover .is-table__action {
	background: #f2f2f2;
}
.is-table__action > svg {
	width: 14px;
}
.is-table__action > svg > path {
	transition: 300ms;
}
.is-table__action:hover > svg > path {
	fill: #fff;
}
.is-table__action--edit:hover {
	background: var(--green-color)!important;
}
.is-table__action--delete:hover {
	background: var(--red-color)!important;
}
.is-table__input {
	height: 30px;
	background: transparent;
	display: block;
	width: 100%;
}
.is-text > * {
	margin-top: 17px;
}
.is-text > *:first-child {
	margin-top: 0;
}
.is-text ol li {
	list-style: numeric outside;
}
.is-text ul li {
	list-style: disc outside;
}
.is-text li:not(:last-child) {
	margin-bottom: 10px;
}
.is-text ol {
	margin-left: 14px;
}
.is-text ul  {
	margin-left: 20px;
}
.is-text li::marker {
	color: var(--blue-color);
}
.is-text p,
.is-text ol li,
.is-text ul li
{
    font-size: 21px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.5px;
}
/*.is-text *:not(ul):not(ol) + ul,
.is-text *:not(ul):not(ol) + ol {
	margin-top: 0;
}*/
.is-text h1, .author-block h1 {
	font-size: 50px;
}
.is-text h2 {
	font-size: 40px;
}
.is-text h3 {
	font-size: 36px;
}
.is-text h4 {
	font-size: 32px;
}
.is-text h5 {
	font-size: 28px;
}
.is-text h6 {
	font-size: 26px;
}
.is-text a {
	text-decoration: underline;
	color: #3dc100;
}
.is-text a:hover {
	text-decoration: none;
}
.is-text img {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	display: block;
	border-radius: var(--border-radius);
}
.is-text h1,
.is-text h2,
.is-text h3,
.is-text h4,
.is-text h5,
.is-text h6 {
	margin: 30px 0 10px 0;
	font-weight: bold;
}
.is-text > a {
	display: block;
}

.logo {
	position: relative;
}
.logo__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.logo__image {
	transition: 300ms;
	display: block;
	height: 53px;
}
.logo__link:hover + .logo__image {
	transform: translate(-4px, -4px);
}
.actions {
	gap: 17px;
}
.actions__text {
	text-align: center;
	font-size: 12px;
	margin-top: 10px;
}

.head__row {
	border-radius: 20px;
	align-items: center;
	justify-content: space-between;
	padding: 11px 29px 11px 29px;
	margin: 18px -29px 28px -29px;
}
.head__col--1 {
	flex-shrink: 0;
}
.head__col--2 {
	flex: 1;
}
.head__right {
	align-items: center;
	justify-content: flex-end;
	gap: 20px 48px;
}
.head__menu {
	gap: 12px 30px;
	align-items: center;
}
.head__menu-link {
	color: var(--default-color);
	font-size: 14px;
	transition: 300ms;
	position: relative;
}
.head__menu-link:after {
	background: var(--green-color);
	content: '';
	width: 0px;
	height: 1px;
	transition: 300ms;
	position: absolute;
	left: 0;
	top: calc(100% + 3px);
}
.head__menu-link:hover {
	color: var(--green-color);
	text-decoration: none;
}
.head__menu-link:hover:after {
	width: 100%;
}
.first__in {
	padding: 0 0 140px 0;
}
.first__box {
	background: url(../img/first-bg.png) no-repeat bottom center, rgba(0, 0, 0, 0.25);
	border-radius: 20px;
	box-shadow: 0px 4px 150px 0px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	padding: 45px 113px;
}
.first__row {
	align-items: center;
}
.first__col--1 {
	flex: 1;
	padding-right: 30px;
}
.first__col--2 {
	flex: 0 0 650px;
}
.first__title {
	visibility: hidden;
}
.first__title[data-typeit-id] {
	visibility: visible;
}
.first__title .title__font {
	line-height: 1;
	margin: 15px 0 10px 0;
	display: block;
}
.first__text {
	margin-top: 30px;
	font-size: 20px;
	line-height: 1.9;
}
.first__actions {
	margin-top: 46px;
}
.lth__in {
	position: relative;
}
.lth__cont {
	position: relative;
	z-index: 3;
}
.lth__cont img {
	display: block;
}
.lth__e {
	background: url(../img/lth.png) no-repeat center / contain;
	position: absolute;
}
.lth__e--size-1 {
	width: 48px;
	height: 148px;
}
.lth__e--size-2 {
	width: 142px;
	height: 312px;
}
.lth__e--size-3 {
	width: 224px;
	height: 485px;
}
.lth__e--opacity {
	opacity: 0.37;
}
.first__lth-e--1 {
	top: 100px;
	left: 24px;
}
.first__lth-e--2 {
	top: 402px;
	right: 127px;
}
.section__title {
	display: flex;
	justify-content: center;
}
.section__subtitle {
	text-align: center;
	font-size: 20px;
}
.how__in {
	padding: 0 0 154px 0;
}
.how__title {
	margin-bottom: 18px;
}
.how__items {
	position: relative;
	padding: 85px 0;
}
.how__items:after {
	content: '';
	background: url(../img/how-line.png) no-repeat;
	width: 1200px;
	height: 100%;
	position: absolute;
	top: 0;
	right: -80px;
}
.how__item {
	margin-bottom: 150px;
	position: relative;
	z-index: 3;
}
.how__item:last-child {
	margin-bottom: 0;
}
.how__item-in {
	align-items: center;
}
.how__item-col--1 {
	flex: 1;
	padding-rigth: 30px;
}
.how__item-col--2 {
	flex: 0 0 694px;
}
.how__item-lth-e--1 {
	top: -24px;
	left: -37px;
}
.how__item-lth-e--2 {
	bottom: -52px;
	right: -19px;
}
.how__item-image {
	border-radius: 10px;
	border: 1px solid #fff;
	box-shadow: 0 0 19px rgba(255, 255, 255, 0.35);
}
.how__item-cont {
	max-width: 590px;
}
.how__item-step {
	margin-bottom: 20px;
	font-weight: 900;
}
.how__item-step-underline:after {
	left: 4px;
	right: -7px;
	bottom: -5px;
}
.how__item-title {
	margin-bottom: 35px;
}
.how__item-text > p:not(:last-child) {
	margin-bottom: 20px;
}
.how__item-actions {
	margin-top: 30px;
}
.how__video {
	max-width: 1220px;
	margin: 145px auto 0 auto;
}
.how__video-box {
	background: linear-gradient(to right, #644c5e, #524b5c);
	border-radius: 20px;
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	padding: 100px 33px 15px 33px;
	text-align: center;
	position: relative;
}
.how__video-logo {
	justify-content: center;
	margin-bottom: 38px;
}
.how__video-play {
	justify-content: center;
	margin-bottom: 50px;
}
.how__video-text {
	transition: 300ms;
	margin-bottom: 95px;
}
.play-btn {
	background: #fff;
	width: 75px;
	height: 75px;
	border-radius: 50px;
	position: relative;
	transition: 300ms;
	overflow: hidden;
	cursor: pointer;
}
.play-btn:after {
	content: '';
	background: url(../img/play.svg) no-repeat center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 5%;
	transition: 300ms;
}
.play-btn:hover {
	transform: scale(0.95);
}
.how__video-line {
	justify-content: center;
}
.how__video-link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
.how__video-box:hover .play-btn {
	transform: scale(0.95);
}
.how__video-box:hover .how__video-text {
	color: var(--green-color);
}
.how__video-lth-e--1 {
	top: -57px;
	left: -88px;
}
.how__video-lth-e--2 {
	right: -95px;
	bottom: -61px;
}
.what__in {
	padding: 0 0 192px 0;
}
.what__title {
	margin-bottom: 50px;
}
.what__row {
	gap: 60px;
}
.what__col {
	flex: 1;
}
.what__item {
	margin-bottom: 92px;
}
.what__item:last-child {
	margin-bottom: 0;
}
.what__item-box {
	background: radial-gradient(2498.26% 141.42% at 0% 100%,rgb(34, 25, 46),rgb(65, 28, 81),rgb(69, 39, 74),rgb(55, 26, 49),rgb(57, 26, 49));
	border-radius: 20px;
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
	padding: 36px 23px 54px 23px;
}
.what__item-image img {
	width: 100%;
	heigth: auto;
}
.what__item-cont {
	padding: 40px 9px 0 19px;
}
.what__item-title {
	margin-bottom: 20px;
}
.what__items--right {
	padding-top: 241px;
}
.what__item-open {
	margin-top: 28px;
}
.what__item-open-link {
	border-bottom: 1px solid #fff;
	padding-bottom: 10px;
	transition: 300ms;
}
.what__item-open-link:hover {
	text-decoration: none;
	border-color: var(--green-color);
	color: var(--green-color);
}
.what__item-actions {
	margin-top: 40px;
}
.what__item-lth-e--1 {
	top: -21px;
	left: -31px;
}
.what__item-lth-e--2 {
	top: -53px;
	right: -27px;
}
.what__item-lth-e--3 {
	left: -29px;
	bottom: -30px;
}
.what__item-lth-e--4 {
	right: -23px;
	bottom: -26px;
}
.whom__in {
	padding: 0 0 172px 0;
}
.whom__title {
	margin-bottom: 64px;
}
.whom__items {
	grid-template-columns: repeat(2, 1fr);
	gap: 86px 43px;
}
.whom__item-in,
.whom__item-in .lth__in,
.whom__item-in .lth__cont {
	height: 100%;
}
.whom__item-box {
	background: radial-gradient(26246.44% 141.42% at 0% 100%,rgb(34, 25, 46),rgb(65, 28, 81),rgb(69, 39, 74),rgb(55, 26, 49),rgb(57, 26, 49));
	border-radius: 20px;
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
	padding: 30px 30px 30px 45px;
	align-items: center;
	height: 100%;
}
.whom__item-ico {
	flex: 0 0 96px;
}
.whom__item-ico > img {
	display: block;
}
.whom__item-cont {
	flex: 1;
	padding-left: 40px;
}
.whom__item-title {
	margin-bottom: 20px;
}
.whom__item-text {
	font-size: 20px;
}
.whom__item-lth-e {
	background-size: cover;
	width: 181px;
	height: 238px;
	left: -28px;
	top: 50%;
	transform: translateY(-50%);
}
.rates__in {
	padding: 0 0 204px 0;
}
.rates__title {
	margin-bottom: 25px;
}
.rates__subtitle {
	max-width: 1050px;
	margin: 0 auto 38px auto;
}
.rates__center {
	width: 1115px;
	margin: 0 auto;
	max-width: 100%;
}
.rates__tabs {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
	border-radius: 20px;
	justify-content: center;
}
.rates__tab {
	background: #F2F2F2;
	color: #7F7F7F;
	flex: 1;
	font-size: 30px;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 15px 10px;
	position: relative;
	transition: 300ms;
}
.rates__tab span {
	position: relative;
	z-index: 2;
}
.rates__tab i {
	font-size: 18px;
	color: #41CA00;
	display: block;
	font-style: normal;
	transition: 300ms;
}
.rates__tab:first-child {
	border-radius: 20px 0 0 20px;
}
.rates__tab:last-child {
	border-radius: 0 20px 20px 0;
}
.rates__tab:after {
	content: '';
	background: #7F7F7F;
	width: 1px;
	top: 13px;
	bottom: 13px;
	position: absolute;
	right: 0;
}
.rates__tab:last-child:after {
	display: none;
}
.rates__tab:hover {
	text-decoration: none;
}
.rates__tab:not(.rates__tab--active):hover {
	color: var(--green-color);
}
.rates__tab:before {
	content: '';
	background: var(--purple-color);
	border-radius: 20px!important;
	position: absolute;
	top: -7px;
	left: -7px;
	right: -7px;
	bottom: -7px;
	opacity: 0;
	transition: 300ms;
}
.rates__tab--active:before {
	opacity: 1;
}
.rates__tab--active {
	border-radius: 0!important;
	z-index: 2;
}
.rates__tab--active {
	color: #fff;
}
.rates__tab--active i {
	color: #fff;
}
.rates__tab--active:after {
	display: none;
}
.rates__all {
	margin-top: 50px;
}
.rates__items {
	gap: 26px;
	align-items: center;
	justify-content: center;
}
.rates__item {
	flex: 1;
}
.rates__box {
	background: #fff;
	border-radius: 20px;
	padding: 54px 30px 28px 30px;
	text-align: center;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.17);
	transition: 300ms;
	color: #000;
}
.rates__box:hover {
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.37);
}
.rates__item--center .rates__box {
	padding: 77px 30px 56px 30px;
}
.rates__stitle {
	color: #000;
	margin-bottom: 12px;
}
.rates__short {
	font-size: 20px;
	margin-bottom: 55px;
}
.rates__full {
	margin-bottom: 50px;
}
.rates__full ul {
	display: grid;
	grid-template-columns: 100%;
	gap: 15px;
}
.rates__cost {
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 25px;
}
.rates__cost-value {
	color: var(--purple-color);
}
.rates__current {
	margin: 40px;
	text-align: center;
	font-size: 50px;
	font-weight: 600;
}
.rates__cost-value > i {
	display: block;
	font-style: normal;
	font-size: 25px;
	color: var(--green-color);
	margin-top: 4px;
}
.rates__actions {
	justify-content: center;
}
.rates__lth-e--1 {
	top: -19px;
	left: -98px;
}
.rates__lth-e--2 {
	right: -101px;
	bottom: -31px;
}
.connect {
	background: url(../img/connect-bg.png) no-repeat bottom center;
}
.connect__in {
	padding: 109px 0 70px 0;
	text-align: center;
}
.connect__underline {
	justify-content: center;
	margin: 20px 0 12px 0;
}
.connect__underline .underline:after {
	height: 55px;
}
.connect__title {
	margin-bottom: 55px;
} 
.connect__actions {
	justify-content: center;
}
.connect__actions .btn {
	width: 443px;
}
.connect__bottom-text {
	text-align: center;
	margin-top: 155px;
	font-size: 12px;
}
.footer {
	background: linear-gradient(to right, #3a2028, #3a2029);
	padding: 37px 0 28px 0;
	color: #fff;
}
.footer__col--1 {
	flex: 0 0 450px;
}
.footer__col--2 {
	flex: 1;
}
.footer__logo {
	margin-bottom: 31px;
}
.footer__logo .logo__image {
	height: 73px;
}
.footer__text {
	line-height: 2.2;
}
.footer__right {
	width: 100%;
	justify-content: flex-end;
}
.footer__menus {
	gap: 30px;
}
.footer__menu {
	width: 300px;
}
.footer__menu-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 14px;
}
.footer__menu-list > li {
	margin-bottom: 8px;
}
.footer__menu-list > li:last-child {
	margin-bottom: 0;
}
.footer__menu-list > li > a {
	font-size: 16px;
	transition: 300ms;
}
.footer__menu-list > li > a:hover {
	color: var(--green-color);
	text-decoration: none;
}
.footer__social {
	align-items: center;
	gap: 22px;
}
.footer__social img {
	display: block;
	transition: 300ms;
}
.footer__social img:hover {
	transform: scale(0.92);
}
.footer__bottom {
	margin-top: 28px;
	align-items: center;
}
.footer__copy {
	font-size: 12px;
}
.footer__payments {
	justify-content: flex-end;
}

body.is-page {
	background: linear-gradient(180.00deg, rgb(220, 195, 195),rgb(255, 225, 190));
	color: #000;
}
body.is-page .head__row {
	background: rgba(0, 0, 0, 0.35);
	box-shadow: 0 4px 150px rgba(0, 0, 0, 0.25);
	margin-bottom: 0;
}

.tmpls__in {
	padding: 30px 0 64px 0;
}
.tmpls__col--1 {
	flex: 0 0 422px;
}
.tmpls__col--2 {
	flex: 1;
	padding-left: 25px;
}
.tmpls__title {
	margin-bottom: 55px;
}
.tmpls__search {
	background: #fff;
	overflow: hidden;
	border-radius: 20px;
	margin-bottom: 20px;
	position: relative;
	height: 53px;
}
.tmpls__search-input {
	height: 100%;
}
.tmpls__search-input > input {
	background: transparent;
	border: none;
	width: 100%;
	height: 100%;
	padding: 0 65px 0 22px;
	font-size: 16px;
	color: #000;
}
.tmpls__search-input > input::placeholder {
	transition: 300ms;
}
.tmpls__search-input > input:focus::placeholder {
	opacity: 0;
}
.tmpls__search-sbm {
	background: url(../img/search.svg) no-repeat center;
	width: 53px;
	height: 53px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	border-radius: 20px;
	transition: 300ms;
}
.tmpls__search-sbm:hover {
	background-color: #f2f2f2;
}
.tmpls__filter {
	padding: 0 0 0 22px;
}
.tmpls__filter-item {
	margin-bottom: 10px;
}
.tmpls__filter-item:last-child {
	margin-bottom: 0;
}
.tmpls__filter-item > label {
	cursor: pointer;
	display: flex;
}
.tmpls__filter-item > label > span {
	font-size: 16px;
	flex: 1;
	padding-left: 8px;
}
.tmpls__filter-item > label > input {
	width: 20px;
	height: 20px;
	border-radius: 5px;
	border: none;
	flex-shrink: 0;
}
.tmpls__items {
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.tmpls__item-box {
	background: #fff;
	border-radius: 20px;
	padding: 20px;
	transition: 300ms;
	position: relative;
}
.tmpls__item-image {
	margin-bottom: 15px;
	overflow: hidden;
}
.tmpls__item-image img {
	transition: 300ms;
}
.tmpls__item-image:after {
	content: '';
	background: url(../img/magnifying-glass-plus-svgrepo-com.svg) no-repeat center / contain, rgba(255, 255, 255, 0.8);
	background-size: 75%;
	width: 80px;
	height: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -40px 0 0 -40px;
	border-radius: 50px;
	transform: scale(0);
	transition: 300ms;
}
.tmpls__item-box:hover {
	box-shadow: 0 0 80px rgba(0, 0, 0, 0.25);
}
.tmpls__item-box:hover .tmpls__item-image:after {
	transform: scale(1);
}
.tmpls__item-box:hover .tmpls__item-image img {
	transform: scale(1.1);
}
.tmpls__item-link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}
.tmpls__item-categories {
	opacity: 0.6;
	font-size: 14px;
	margin-top: 8px;
	font-weight: 300;
}
.tmpls__actions {
	justify-content: center;
	margin-top: 65px;
}
.tmpls__actions .btn {
	width: 276px;
}
.connect--templates {
	background: url(../img/cbg.png) no-repeat bottom center / cover;
	color: #000;
	min-height: 1050px;
}
.connect__title--template {
	margin-bottom: 120px;
	padding-top: 100px;
}


.news__items--noslider {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin: 0;
}
.news__items--noslider .items-news__item {
	padding: 0;
}
.items-news__box {
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
	min-height: 370px;
	position: relative;
	padding: 30px;
	transition: 300ms;
	transition: 300ms;
}
.items-news__image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
.items-news__image-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: 300ms;
}
.items-news__image:before {
	content: '';
	background: linear-gradient(187.54deg, rgba(0, 0, 42, 0) 50%, rgba(0, 0, 42, 0.9) 94.54%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.items-news__cont {
	position: absolute;
	z-index: 3;
	color: #fff;
	bottom: 30px;
	left: 30px;
	right: 30px;
}
.items-news__go {
	position: absolute;
	top: 30px;
	right: 30px;
}
.items-news__title {
	margin-top: 16px;
}
.items-news__box:hover .items-news__image-img {
	transform: scale(1.05);
}
.items-news__box:hover {
	box-shadow: 0 0 120px rgba(0, 0, 0, 0.25);
}
.link-abs {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
.hover-linked:hover .btn--hider {
	width: auto!important;
	padding-left: 20px;
	padding-right: 20px;
}
.hover-linked:hover .btn--hider .btn__text {
	display: inline-block;
}
.hover-linked:hover .btn--hider .btn__arrow {
	margin-left: 10px;
}
.hover-linked:hover .btn--hider .btn__arrow > svg {
	transform: none;
}
.breadcrumbs__in {
	padding: 35px 0;
}
.breadcrumbs__str {
	font-weight: 400;
}
.breadcrumbs__str a {
	color: rgba(0, 0, 0, 0.35);
}
.blog {
	padding: 0px 0 100px 0;
}
.blog__title {
	margin-bottom: 60px;
}
.detail__main {
	position: relative;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}
.detail__image {
	position: relative;
	max-height: 630px;
}
.detail__image:before {
	content: '';
	/*background: linear-gradient(243.39deg, rgba(0, 0, 42, 0) 33.31%, rgba(0, 0, 42, 0.9) 83.65%);*/
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.detail__image-img {
	display: block;
	min-height: 500px;
	width: 100%;
	object-fit: cover;
}
.detail__date {
	position: absolute;
	top: 60px;
	left: 60px;
	z-index: 2;
}
.detail__info {
	position: absolute;
	left: 60px;
	bottom: 60px;
	right: 60px;
	z-index: 2;
}
.detail__title {
	color: #fff;
}
.detail__content {
	padding: 30px 60px 60px 60px;
	background: #fff;
	border-radius: 0 0 20px 20px;
}
.box-shadow {
    box-shadow: 0 0 20px 0px #0000003b;
    border-radius: 20px;
}
.detail__first-item {
	position: relative;
}
.detail__first-item-image img {
	display: block;
	width: 100%;
	min-height: 250px;
	object-fit: cover;
}
.detail__first-item-play {
	background: url(../img/play_arrow.svg) no-repeat center #fff;
	width: 80px;
	height: 80px;
	border-radius: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -40px 0 0 -40px;
	display: block;
	transition: 300ms;
}
.detail__first-item-play:hover {
	transform: scale(0.89);
}
.detail__text img {
	display: block;
	width: 100%;
	border-radius: 20px;
}
.labels {
	gap: 10px;
}
.labels__item {
	background: var(--green-color);
	padding: 8.5px 12px;
	border-radius: 50px;
	color: #fff;
	text-align: center;
	font-size: 17px;
	line-height: 1;
}
.labels--size-15 .labels__item {
	font-size: 15px;
	padding: 7.5px 12px;
}


/* Блок Автор */
.author-block {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    align-items: flex-start;
    background-color: white;
    padding: 60px 60px 0 60px;
}
.author-title {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.author-table {
    width: 35%;
    text-align: right;
    margin: 10px;
    border-collapse: collapse;
}
.author-row {
    vertical-align: top;
}
.author-info {
    padding: 0;
}
.author-label {
    font-weight: 800;
    margin: 0 0 6px 0;
}
.author-name {
    margin: 0 0 6px 0;
}
.author-link {
    color: #000;
    text-decoration: none;
}
.author-photo-cell {
    padding: 0;
    width: 140px;
}
.author-photo {
    border-radius: 100%;
    height: 120px;
    width: auto;
}