.call-block {
    width: 100%;
    padding: 100px 96px;
}

.call-block-list {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.call-block-item {
    overflow: hidden;
    position: relative;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    padding: 40px 40px 0 40px;
    border-radius: 24px;
    background: #eef5fd;
}

.call-block-item > img {
    width: 100%;
    height: auto;
    margin-top: auto;
}

.call-block-item-wrapper {
    padding: 0 54px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.call-block-item-title {
    margin: 0;
    color: var(--text-primary, #000);
    font-family: "Daikon";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}

.call-block-item-text {
    margin: 0;
    color: var(--text-secondary, #475569);
    font-family: Daikon;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.call-block-cards-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 0 64px 20px 64px;
    gap: 12px;
    height: 100%;
}

.call-block-cards-list > div:first-child {
    align-self: flex-start;
    margin-bottom: -20px;
    z-index: 2;
}

.call-block-cards-list > div:last-child {
    align-self: flex-end;
    z-index: 1;
}

.call-block-card {
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    width: 100%;
    max-width: 390px;
    margin-top: 18px;
    position: relative;
    box-shadow: -15px 15px 25px 0 rgba(45, 88, 134, 0.05);
}

.call-block-card-tag {
    margin-bottom: 12px;
}

.call-block-card-text {
    margin: 0;
    color: var(--text-primary, #000);
    font-family: 'Daikon', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.call-block-subscribe-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    margin-top: 32px;
}

.call-block-subscribe-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 24px 40px 24px;
    max-width: 450px;
    width: 100%;
    position: relative;
    box-shadow: 0px 15px 35px rgba(45, 88, 134, 0.08);
    margin-bottom: -50px;
    text-align: left;
    transform: rotate(2deg);
}

.call-block-subscribe-title {
    margin: 0 0 12px 0;
    color: var(--text-primary, #000);
    font-family: 'Daikon', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 130%;
}

.call-block-subscribe-desc {
    margin: 0;
    color: var(--text-secondary, #475569);
    font-family: 'Daikon', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
}

.call-block-subscribe-btn {
    position: absolute;
    bottom: 85px;
    right: -24px;
    text-decoration: none;
    z-index: 2;
    transform: rotate(4deg);
}

@media screen and (max-width: 1700px) {
    .call-block-cards-list {
        padding-inline: 0;
    }

    .call-block-card-text {
        font-size: 14px;
    }
}

@media screen and (max-width: 1580px) {
    .call-block-item {
        height: 500px;
    }
    
    .call-block-item-wrapper {
        padding: 0;
    }
}

@media screen and (max-width: 1279px) {
    .call-block {
        padding: 64px 24px;
    }

    .call-block-list {
        grid-template-columns: 1fr;
    }

    .call-block-item {
        height: 450px;
        margin: 0 auto;
        max-width: 612px;
        padding: 30px 30px 0 30px;
    }

    .call-block-item-title {
        font-size: 18px;
    }

    .call-block-item-text {
        font-size: 16px;
    }

    .call-block-card-text {
        font-size: 16px;
    }

    .call-block-cards-list {
        padding-inline: 0;
    }
}

@media screen and (max-width: 599px) {
    .call-block {
        padding: 42px 14px;
    }

    .call-block-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .call-block-item {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 390px;
        padding: 24px 20px 0 20px;
        gap: 24px;
    }

    .call-block-cards-list > div:first-child {
        margin-bottom: -15px;
    }

    .call-block-card {
        max-width: 85%;
        padding: 12px;
    }

    .call-block-subscribe-card {
        max-width: 90%;
        padding: 20px 20px 32px 20px;
    }

    .call-block-subscribe-btn {
        right: -10px;
        bottom: 75px;
    }
}

.dashboards-block {
	padding: 100px 96px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
}

.dashboards-block-title {
	margin: 0;
	width: 100%;
	color: var(--text-primary, #000);
	font-family: "Daikon";
	font-size: 34px;
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
}

.dashboard-list {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.dashboard-item-wrapper {
	overflow: hidden;
	position: relative;
	border-radius: 18px;
	transition: all linear var(--animation-duration);
	/* !deprecated */
	/* @media (min-width: 1280px) {
		transform: translateY(1px);
	} */
}

.dashboard-item-wrapper:hover,
.dashboard-item-wrapper:focus {
	@media (min-width: 1280px) {
		transform: translateY(4px);
	}
}

.dashboard-item {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 34px 16px;
	gap: 12px;
	border-radius: 18px;
	border: 1px solid var(--border-color-defoult, #cbd5e1);
	background: var(--bg-content, #fff);
	box-shadow: none;
	transition: all linear var(--animation-duration);
}

.dashboard-item:hover,
.dashboard-item:focus {
	text-decoration: none;
	border-color: var(--core-colors-primary-accent-500, #2065f2);
	box-shadow:
		-18px 52px 15px 0 rgba(136, 159, 205, 0),
		-12px 33px 14px 0 rgba(136, 159, 205, 0.02),
		-7px 19px 12px 0 rgba(136, 159, 205, 0.07),
		-3px 8px 9px 0 rgba(136, 159, 205, 0.12),
		-1px 2px 5px 0 rgba(136, 159, 205, 0.13);
}

.dashboard-item-text {
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	word-break: break-word;

	color: var(--core-colors-neutral-black, #000);
	font-family: Daikon;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

.dashboard-item-logo {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	transition: transform calc(var(--animation-duration) * 2);
}

.dashboard-item:hover .dashboard-item-logo,
.dashboard-item:focus .dashboard-item-logo {
	transform: scale(1.5);
}

.dashboard-item-circle {
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	width: 150px;
	height: 150px;
	border-radius: 999px;
	background-color: var(--bg-info, rgba(0, 105, 255, 0.1));
	transition: all linear 350ms;
}

.dashboard-item:hover > .dashboard-item-circle,
.dashboard-item:focus > .dashboard-item-circle {
	width: 200%;
	height: 200%;
}

@media screen and (max-width: 1279px) {
	.dashboards-block {
		padding: 64px 24px;
	}

	.dashboards-block-title {
		font-size: 28px;
	}

	.dashboard-list {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 14px;
	}

	.dashboard-item-wrapper {
		width: calc((100% / 2) - (14px / 2));
	}

	.dashboard-item-text {
		font-size: 16px;
	}
}

@media screen and (max-width: 599px) {
	.dashboards-block {
		padding: 42px 14px;
	}

	.dashboard-item {
		flex-direction: column-reverse;
		padding: 16px 8px;
		gap: 44px;
	}

	.dashboard-item-logo {
		width: 42px;
		height: 42px;
	}

	.dashboard-item-text {
		font-size: 14px;
		text-align: center;
	}

	.dashboard-item-circle {
		top: -70px;
		left: 50%;
		transform: translateX(-50%);
	}

	.dashboards-block > .ua-btn {
		width: 100%;
	}
}

:root {
	--color-bg1: #005dc2;
	--color-bg2: #0d1f3a;
	--color1: 5, 40, 112;
	--color2: 13, 31, 58;
	--color3: 3, 67, 185;
	--color4: 0, 33, 97;
	--color5: 0, 45, 137;
	--color-interactive: 0, 85, 213;
	--circle-size: 200%;
	--blending: unset;
}

@keyframes moveInCircle {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes moveVertical {
	0% {
		transform: translateY(-50%);
	}
	50% {
		transform: translateY(50%);
	}
	100% {
		transform: translateY(-50%);
	}
}

@keyframes moveHorizontal {
	0% {
		transform: translateX(-50%) translateY(-10%);
	}
	50% {
		transform: translateX(50%) translateY(10%);
	}
	100% {
		transform: translateX(-50%) translateY(-10%);
	}
}

.gradient-bg {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
	top: 0;
	left: 0;

	svg {
		display: none;
	}

	.gradients-container {
		filter: url(#goo) blur(40px);
		width: 100%;
		height: 100%;
	}

	.g1 {
		position: absolute;
		background: radial-gradient(
				circle at center,
				rgba(var(--color1), 0.8) 0,
				rgba(var(--color1), 0) 50%
			)
			no-repeat;
		mix-blend-mode: var(--blending);

		width: var(--circle-size);
		height: var(--circle-size);
		top: calc(50% - var(--circle-size) / 2);
		left: calc(50% - var(--circle-size) / 2);

		transform-origin: center center;
		animation: moveVertical 20s ease infinite;

		opacity: 1;
	}

	.g2 {
		position: absolute;
		background: radial-gradient(
				circle at center,
				rgba(var(--color2), 0.8) 0,
				rgba(var(--color2), 0) 50%
			)
			no-repeat;
		mix-blend-mode: var(--blending);

		width: var(--circle-size);
		height: var(--circle-size);
		top: calc(50% - var(--circle-size) / 2);
		left: calc(50% - var(--circle-size) / 2);

		transform-origin: calc(50% - 400px);
		animation: moveInCircle 13s reverse infinite;

		opacity: 1;
	}

	.g3 {
		position: absolute;
		background: radial-gradient(
				circle at center,
				rgba(var(--color3), 0.8) 0,
				rgba(var(--color3), 0) 50%
			)
			no-repeat;
		mix-blend-mode: var(--blending);

		width: var(--circle-size);
		height: var(--circle-size);
		top: calc(50% - var(--circle-size) / 2 + 200px);
		left: calc(50% - var(--circle-size) / 2 - 500px);

		transform-origin: calc(50% + 400px);
		animation: moveInCircle 26s linear infinite;

		opacity: 1;
	}

	.g4 {
		position: absolute;
		background: radial-gradient(
				circle at center,
				rgba(var(--color4), 0.8) 0,
				rgba(var(--color4), 0) 50%
			)
			no-repeat;
		mix-blend-mode: var(--blending);

		width: var(--circle-size);
		height: var(--circle-size);
		top: calc(50% - var(--circle-size) / 2);
		left: calc(50% - var(--circle-size) / 2);

		transform-origin: calc(50% - 200px);
		animation: moveHorizontal 26s ease infinite;

		opacity: 0.7;
	}

	.g5 {
		position: absolute;
		background: radial-gradient(
				circle at center,
				rgba(var(--color5), 0.8) 0,
				rgba(var(--color5), 0) 50%
			)
			no-repeat;
		mix-blend-mode: var(--blending);

		width: calc(var(--circle-size) * 2);
		height: calc(var(--circle-size) * 2);
		top: calc(50% - var(--circle-size));
		left: calc(50% - var(--circle-size));

		transform-origin: calc(50% - 800px) calc(50% + 200px);
		animation: moveInCircle 13s ease infinite;

		opacity: 1;
	}

	.interactive {
		position: absolute;
		background: radial-gradient(
				circle at center,
				rgba(var(--color-interactive), 0.8) 0,
				rgba(var(--color-interactive), 0) 50%
			)
			no-repeat;
		mix-blend-mode: var(--blending);

		width: 100%;
		height: 100%;
		top: -50%;
		left: -50%;

		opacity: 0.7;
	}
}

.general-block {
	position: relative;
	height: calc(100vh - 100px);
	min-height: 590px;
	max-height: 840px;
	margin: 8px 40px 0 40px;
	padding: 20px 96px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 56px;
}

.general-block-bg {
	width: calc(100vw - 80px);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 42px;
	/* background: linear-gradient(0deg, #005dc2 0%, #0d1f3a 100%); */
	overflow: hidden;
}

.general-block-bg1 {
	height: 90%;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translate(-50%);
}

.general-block-bg2 {
	height: 90%;
	position: absolute;
	bottom: 0;
	right: 0;
	transform: translate(50%);
}

.general-block-title {
	margin: 0;
	color: var(--text-ondark, #fff);
	text-align: center;
	font-family: "Daikon";
	font-size: 94px;
	font-style: normal;
	font-weight: 600;
	line-height: 110%;
	z-index: 10;
}

.general-block-search {
	position: relative;
	width: 500px;
	z-index: 10;
}

.general-block-search > img {
	width: 16px;
	height: 16px;
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: all var(--animation-duration);
}

.general-block-search-input {
	width: 100%;
	height: 54px;
	border-radius: 32px;
	border: 1px solid rgba(32, 101, 242, 0.5);
	background: var(--core-colors-primary-200, rgba(3, 80, 165, 0.2));
	padding-left: 54px;
	padding-right: 20px;

	color: var(--text-ondark, #fff);
	text-overflow: ellipsis;
	font-family: Daikon;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

.general-block-search-input:hover {
	border: 1px solid var(--core-colors-primary-accent-500, #2065f2);
	outline: 1px solid var(--core-colors-primary-accent-500, #2065f2);
	background: none;
}

.general-block-search-input:focus {
	border: 1px solid var(--core-colors-primary-accent-500, #2065f2);
	background: var(--core-colors-primary-50, rgba(3, 80, 165, 0.05));
	outline: none;
}

.general-block-search-input:hover + img,
.general-block-search-input:focus + img {
	transform: translateY(-50%) scale(1.5);
}

.general-block-search-input::placeholder {
	color: var(--text-ondark, #fff);
	text-overflow: ellipsis;
	font-family: Daikon;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

.dataset-categories {
	padding: 24px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	z-index: 10;
}

.dataset-category-list {
	max-height: 90px;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.dataset-category-item {
	height: 41px;
	max-width: 350px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid var(--border-color-defoult, #cbd5e1);
	background: var(--bg-content, #fff);
	transition:
		border linear var(--animation-duration),
		background linear var(--animation-duration);
}

.dataset-category-item:hover,
.dataset-category-item:focus {
    text-decoration: none;
    color: inherit;
	border: 1px solid var(--input-border-active, #2065f2);
	background:
		linear-gradient(
			0deg,
			var(--bg-hover, rgba(32, 101, 242, 0.1)) 0%,
			var(--bg-hover, rgba(32, 101, 242, 0.1)) 100%
		),
		var(--bg-content, #fff);
}

.dataset-category-item-logo {
	height: 24px;
	width: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.dataset-category-item-name {
	color: var(--text-primary, #000);
	font-family: Daikon;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

.dataset-category-item:hover > .dataset-category-item-name,
.dataset-category-item:focus > .dataset-category-item-name {
	color: var(--text-accent-hover, #2065f2);
}

@media screen and (max-width: 1279px) {
	.general-block {
		padding: 136px 24px;
		margin: 0 24px;
	}

	.general-block-bg {
		width: 100%;
	}

	.general-block-title {
		font-size: 64px;
	}

	.general-block-search {
		width: 100%;
	}

	.dataset-categories {
		padding: 0;
	}

	.dataset-category-list {
		max-height: 139px;
	}
}

@media screen and (max-width: 599px) {
	.general-block {
		padding: 80px 14px;
		margin: 0 14px;
	}

	.general-block-bg1 {
		transform: translate(-60%);
	}

	.general-block-bg2 {
		transform: translate(60%);
	}

	.general-block-title {
		font-size: 36px;
	}

	.dataset-category-list {
		max-height: 188px;
	}
}

* {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

html {
	font-family: Daikon;
}

.homepage-container {
	max-height: 0;
	overflow: hidden;
	margin: 0 auto;
	max-width: 1920px;
	width: min(calc(100vw - 6px), 1920px);
	display: flex;
	flex-direction: column;
}

.homepage-container ul {
	padding: 0;
}

.manager-block {
	margin: 100px 96px;
	padding: 42px 72px;
	display: flex;
	flex-direction: column;
	gap: 36px;
	border-radius: 32px;
	background: var(
		--gradient-vertical,
		linear-gradient(0deg, #005dc2 0%, #0d1f3a 100%)
	);
}

.manager-block-title {
	color: var(--text-ondark, #fff);
	font-family: "Daikon";
	font-size: 34px;
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
}

.manager-block-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
}

.manager-block-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
}

.manager-block-logo {
	flex-shrink: 0;
	width: 170px;
	height: auto;
}

.manager-block-text {
	display: flex;
	flex-direction: column;
	gap: 24px;

	color: var(--text-ondark, #fff);
	font-family: Daikon;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

.manager-block-text a:hover,
.manager-block-text a:focus {
	color: inherit;
	text-decoration: none;
	opacity: 0.8;
}

.manager-block-widget {
	flex-shrink: 0;
	width: 340px;
	display: flex;
	flex-direction: column;
	border-radius: 24px;
	background: var(--core-colors-neutral-white, #fff);
	box-shadow: -18px 52px 15px 0 rgba(136, 159, 205, 0),
		-12px 33px 14px 0 rgba(136, 159, 205, 0.01),
		-7px 19px 12px 0 rgba(136, 159, 205, 0.02),
		-3px 8px 9px 0 rgba(136, 159, 205, 0.03),
		-1px 2px 5px 0 rgba(136, 159, 205, 0.04);
}

.manager-block-widget-header {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 8px 16px;
	background: var(--bg-main, #f1f5f9);
	border-radius: 24px 24px 0 0;
}

.manager-block-widget-header-logo {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.manager-block-widget-header-title {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;

	color: var(--text-accent, #0350a5);
	font-family: "Daikon";
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
}

.manager-block-widget-content {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-align: center;
}

.manager-block-widget-content-text {
	overflow: hidden;
	color: var(--text-primary, #000);
	text-overflow: ellipsis;

	font-family: Daikon;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

.manager-block-widget-content-value {
	overflow: hidden;
	color: var(--core-colors-primary-accent-500, #2065f2);
	text-overflow: ellipsis;

	font-family: "Daikon";
	font-size: 94px;
	font-style: normal;
	font-weight: 600;
	line-height: 110%;
}

@media screen and (max-width: 1279px) {
	.manager-block {
		margin: 64px 24px;
		padding: 24px;
	}

	.manager-block-title {
		font-size: 28px;
	}

	.manager-block-wrapper {
		flex-direction: column;
	}

	.manager-block-logo {
		width: 134px;
		height: auto;
	}

	.manager-block-text {
		font-size: 16px;
	}

	.manager-block-text > a {
		font-size: 16px;
	}

	.manager-block-widget {
		width: 100%;
	}

	.manager-block-widget-header-title {
		font-size: 18px;
	}

	.manager-block-widget-content {
		gap: 4px;
	}

	.manager-block-widget-content-text {
		font-size: 16px;
	}

	.manager-block-widget-content-value {
		font-size: 64px;
	}
}

@media screen and (max-width: 599px) {
	.manager-block {
		margin: 42px 14px;
	}

	.manager-block-logo {
		display: none;
	}

	.manager-block-widget-content-value {
		margin-bottom: 12px;
		font-size: 36px;
	}
}

.new-datasets-block {
	padding: 100px 96px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
}

.new-datasets-block-title {
	margin: 0;
	width: 100%;
	color: var(--text-primary, #000);
	font-family: "Daikon";
	font-size: 34px;
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
}

.new-dataset-list {
	margin: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.new-dataset-item {
	width: calc((100% / 3) - (48px / 3));
	border-radius: 18px;
	border: 1px solid var(--border-color-defoult, #cbd5e1);
	background: var(--bg-content, #fff);
	box-shadow: -18px 52px 15px 0 rgba(136, 159, 205, 0),
		-12px 33px 14px 0 rgba(136, 159, 205, 0.01),
		-7px 19px 12px 0 rgba(136, 159, 205, 0.02),
		-3px 8px 9px 0 rgba(136, 159, 205, 0.03),
		-1px 2px 5px 0 rgba(136, 159, 205, 0.04);
	transition: all var(--animation-duration);
	position: relative;
	overflow: hidden;
}

.new-dataset-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 18px;
	background: linear-gradient(
		132deg,
		rgba(255, 255, 255, 0) 26.75%,
		rgba(229, 240, 254, 0.5) 69.17%,
		rgba(168, 204, 255, 0.5) 104.83%
	);
	transform: translate(100%);
	transition: transform calc(var(--animation-duration) * 2);
	pointer-events: none;
	z-index: 0;
}

.new-dataset-item:hover::before,
.new-dataset-item:focus::before {
	transform: translate(0);
}

.new-dataset-item:hover,
.new-dataset-item:focus {
	text-decoration: none;
	border-color: var(--input-border-hover, #2065f2);
	box-shadow: -18px 52px 15px 0 rgba(136, 159, 205, 0),
		-12px 33px 14px 0 rgba(136, 159, 205, 0.02),
		-7px 19px 12px 0 rgba(136, 159, 205, 0.07),
		-3px 8px 9px 0 rgba(136, 159, 205, 0.12),
		-1px 2px 5px 0 rgba(136, 159, 205, 0.13);

	@media (min-width: 1280px) {
		transform: translateY(4px);
	}
}

.new-dataset-item * {
	z-index: 1;
}

.new-dataset-item__link {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 18px;
	gap: 12px;
	background-color: transparent;
	border: none;
	text-align: start;
}

.new-dataset-item__link:hover,
.new-dataset-item__link:focus {
	text-decoration: none;
}

.new-dataset__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.new-dataset__item__format-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.new-dataset__item__format-item {
	padding: 7px 12px;
	border-radius: 8px;
	border: 1px solid black;
	border-color: var(--data-icons-icon, #0069ff);
	background: var(--data-icons-icon-bg, rgba(0, 105, 255, 0.05));

	color: var(--text-primary, #000);
	text-align: center;
	font-family: Daikon;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 12px;
}

.new-dataset-item-title {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	align-self: stretch;
	word-break: break-word;

	color: var(--text-primary, #000);
	font-family: "Daikon";
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
}

.new-dataset-item-text {
	width: fit-content;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	align-self: stretch;
	word-break: break-word;

	color: var(--core-colors-primary-500, #0350a5);
	font-family: Daikon;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.new-dataset-item-info {
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 14px;

	color: var(--text-secondary, #475569);

	font-family: Daikon;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0.07px;
}

.new-dataset-item-info > div {
	display: flex;
	align-items: center;
	gap: 4px;
}

.new-datasets-block-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
}

@media screen and (max-width: 1279px) {
	.new-datasets-block {
		padding: 64px 24px;
	}

	.new-datasets-block-title {
		font-size: 28px;
	}

	.new-dataset-list {
		gap: 14px;
	}

	.new-dataset-item {
		width: calc((100% / 2) - (14px / 2));
	}

	.new-dataset-item-title {
		font-size: 18px;
	}

	.new-dataset-item-text {
		font-size: 16px;
	}
}

@media screen and (max-width: 599px) {
	.new-datasets-block {
		padding: 42px 14px;
	}

	.new-dataset-item {
		width: 100%;
	}
}

@media screen and (max-width: 599px) {
	.new-datasets-block-controls > button,
	.new-datasets-block-controls > a {
		width: 100%;
	}
}

.news-block {
	padding: 100px 96px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
}

.news-block-title {
	margin: 0;
	width: 100%;
	color: var(--text-primary, #000);
	font-family: "Daikon";
	font-size: 34px;
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
}

.news-list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.news-item {
	overflow: hidden;
	width: calc((100% / 4) - (24px * 3 / 4));
	transition: all var(--animation-duration);
	border-radius: 24px;
	border: 1px solid var(--border-color-defoult, #cbd5e1);
	background: var(--bg-content, #fff);
	box-shadow: -18px 52px 15px 0 rgba(136, 159, 205, 0),
		-12px 33px 14px 0 rgba(136, 159, 205, 0.01),
		-7px 19px 12px 0 rgba(136, 159, 205, 0.02),
		-3px 8px 9px 0 rgba(136, 159, 205, 0.03),
		-1px 2px 5px 0 rgba(136, 159, 205, 0.04);
}

.news-item:hover,
.news-item:focus {
	border: 1px solid var(--core-colors-primary-accent-500, #2065f2);
	box-shadow: -18px 52px 15px 0 rgba(136, 159, 205, 0),
		-12px 33px 14px 0 rgba(136, 159, 205, 0.02),
		-7px 19px 12px 0 rgba(136, 159, 205, 0.07),
		-3px 8px 9px 0 rgba(136, 159, 205, 0.12),
		-1px 2px 5px 0 rgba(136, 159, 205, 0.13);

	@media (min-width: 1280px) {
		transform: translateY(4px);
	}

	@media (max-width: 599px) {
		box-shadow: none;
	}
}

.news-item-link {
	display: flex;
	flex-direction: column;
    height: 100%;
}

.news-item-link:hover,
.news-item-link:focus {
	text-decoration: none;
}

.news-item-photo {
	position: relative;
	width: 100%;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--animation-duration);
}

.news-item-photo-overlay {
	position: absolute;
	inset: 0;
}

.news-item:hover .news-item-photo-overlay,
.news-item:focus .news-item-photo-overlay {
	background: linear-gradient(
		180deg,
		rgba(28, 62, 130, 0) 37.5%,
		#1c3e82 100%
	);
}

.news-item-photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-item-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px;
    flex: 1;
}

.news-item-text {
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	align-self: stretch;
	word-break: break-word;

	color: var(--text-primary, #000);
	font-family: Daikon;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

.news-item-metadata {
	display: flex;
	align-items: center;
	gap: 14px;
    margin-top: auto;
	color: var(--text-secondary, #475569);

	font-family: Daikon;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0.07px;
}

.news-item-metadata > div {
	display: flex;
	align-items: center;
	gap: 4px;
}

@media screen and (max-width: 1279px) {
	.news-block {
		padding: 64px 24px;
	}

	.dashboards-block-title {
		font-size: 28px;
	}

	.news-item {
		width: calc((100% / 2) - (24px / 2));
	}

	.news-item-text {
		font-size: 16px;
	}
}

@media screen and (max-width: 599px) {
	.news-block {
		padding: 42px 14px;
	}

	.news-item {
		width: 100%;
	}

	.news-block .ua-btn {
		width: 100%;
	}
}

.popular-block {
	padding: 100px 96px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
}

.popular-block__header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.popular-block__header-title {
	margin: 0;

	color: var(--text-primary, #000);
	font-family: "Daikon";
	font-size: 34px;
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
}

.popular-block__tab-list {
	display: flex;
	align-items: center;
	margin: 0;
}

.popular-block__tab-item > button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	width: 100%;
	border: 1px solid var(--border-color-defoult, #cbd5e1);
	background: var(--bg-content, #fff);
	padding: 8px 16px;
	cursor: pointer;
	transition: background var(--animation-duration);

	color: var(--text-primary, #000);
	font-family: Daikon;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

.popular-block__tab-item > button:hover,
.popular-block__tab-item > button:focus {
	background: var(--bg-hover, rgba(32, 101, 242, 0.1));
}

.popular-block__tab-item > button > svg {
	color: var(--text-accent, #0350a5);
}

.popular-block__tab-item > button.active {
	border: 1px solid var(--button-primary-primary, #0350a5);
	background: var(--button-primary-primary, #0350a5);
	color: var(--text-ondark, #fff);
}

.popular-block__tab-item > button.active > svg {
	color: var(--text-ondark, #fff);
}

.popular-block__tab-item:first-child > button {
	border-radius: 999px 0 0 999px;
}

.popular-block__tab-item:last-child > button {
	border-radius: 0 999px 999px 0;
}

.popular-block__tab-item:not(:first-child) {
	margin-left: -1px;
}

.popular-block__tabs-container {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.popular-block__tabs-scroll {
	display: flex;
	width: 100%;
	@media (min-width: 600px) {
		transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	}
}

.popular-block__list-wrapper {
	min-width: 100%;
	width: 100%;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.popular-block__list {
	width: 100%;
	height: 584px;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 24px;
	margin: 0;
}

.popular-block__item {
	height: 280px;
	width: calc((100% / 3) - (48px / 3));
}

.popular-block__item-link {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 18px;
	gap: 8px;
	border-radius: 18px;
	border: 1px solid var(--border-color-divider, #e2e8f0);
	background: var(--bg-content, #fff);
	transition: all var(--animation-duration);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.popular-block__item-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 18px;
	background: linear-gradient(
		132deg,
		rgba(255, 255, 255, 0) 26.75%,
		rgba(229, 240, 254, 0.5) 69.17%,
		rgba(168, 204, 255, 0.5) 104.83%
	);
	transform: translate(100%);
	transition: transform calc(var(--animation-duration) * 2);
	pointer-events: none;
	z-index: 0;
}

.popular-block__item-link:hover::before,
.popular-block__item-link:focus::before {
	transform: translate(0);
}

.popular-block__item-link:hover,
.popular-block__item-link:focus {
    text-decoration: none;
    border-color: var(--input-border-hover, #2065f2);

    @media (min-width: 1280px) {
        transform: translateY(4px);
    }
}

/* Додайте це для того, щоб контент був поверх псевдоелемента */
.popular-block__item-link > * {
	position: relative;
	z-index: 1;
}

.popular-block__item-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	column-gap: 16px;
	row-gap: 8px;
}

.popular-block__item-header__info {
	display: flex;
	flex-direction: column;
	margin-right: auto;
}

.popular-block__item-header__info-title {
	margin: 0;

	color: var(--core-colors-neutral-Black, #000);
	font-family: Daikon;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0.07px;
}

.popular-block__item-header__info-text {
	margin: 0;

	color: var(--core-colors-primary-500, #0350a5);
	text-overflow: ellipsis;
	font-family: "Daikon";
	font-size: var(--text-h3, 24px);
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
}

.popular-block__item__format-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.popular-block__item__format-item {
	padding: 7px 12px;
	border-radius: 8px;
	border: 1px solid black;
	border-color: var(--data-icons-icon, #0069ff);
	background: var(--data-icons-icon-bg, rgba(0, 105, 255, 0.05));

	color: var(--text-primary, #000);
	text-align: center;
	font-family: Daikon;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 12px;
}

.popular-block__item-title {
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	word-break: break-word;

	color: var(--text-primary, #000);
	font-family: "Daikon";
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 115%;
}

.popular-block__item-text {
	margin: 0;
	margin-top: 6px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	word-break: break-word;

	color: var(--text-primary, #000);
	font-family: Daikon;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

.popular-block__item-info__list {
	display: flex;
	align-items: center;
	gap: 14px;
    margin-top: auto;
}

.popular-block__item-info__list--wrapper {
    display: flex;
    gap: 14px;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.popular-block__item-info__item {
	display: flex;
	align-items: center;
	gap: 4px;

	color: var(--text-secondary, #475569);
	font-family: Daikon;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0.07px;
}

.popular-block__list-button {
	margin: 0 auto;
	width: fit-content;
}

@media screen and (max-width: 1279px) {
	.popular-block {
		padding: 64px 24px;
	}

	.popular-block__header {
		flex-direction: column;
		align-items: start;
		gap: 36px;
	}

	.popular-block__header-title {
		font-size: 28px;
	}

	.popular-block__tab-list {
		width: 100%;
	}

	.popular-block__tab-item {
		width: calc(100% / 3);
	}

	.popular-block__tab-item > button {
		font-size: 16px;
	}

	.popular-block__list {
		height: 868px;
		gap: 14px;
	}

	.popular-block__item {
		width: calc((100% / 2) - (14px / 2));
	}

	.popular-block__item-title {
		font-size: 18px;
	}

	.popular-block__item-text {
		font-size: 16px;
	}
}

@media screen and (max-width: 599px) {
	.popular-block {
		padding: 42px 14px;
	}

	.popular-block__tab-list {
		flex-direction: column;
		gap: 4px;
	}

	.popular-block__tab-item {
		width: 100%;
	}

	.popular-block__tab-item > button {
		border-radius: 999px !important;
		margin: 0 !important;
	}

	.popular-block__list {
		height: 280px;
	}

	.popular-block__item {
		width: 100%;
	}

	.popular-block__list-button {
		width: 100%;
	}
}

.statistics-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    padding: 100px 96px;
    color: var(--text-primary, #000);
    font-family: "Daikon", sans-serif;
    box-sizing: border-box;
    width: 100%;
}

.chart-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    overflow: visible;
    position: relative;
}

.statistics-block-divider {
    width: 2px;
    background: rgba(114, 181, 255, 0.20);
    align-self: stretch;
    margin: 35px 80px;
}

.stat-value {
    margin-top: 24px;
    margin-bottom: 4px;
    color: var(--text-secondary, #475569);
    text-align: center;
    font-family: "Daikon";
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.96px;
}

.stat-label {
    color: var(--text-secondary, #475569);
    text-align: center;
    font-family: Daikon;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    word-wrap: break-word;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.chart-container {
    width: 100%;
    max-width: 100%;
    min-height: 180px;
    height: auto;
    aspect-ratio: 16 / 9;
    position: relative;
    min-width: 0;
    overflow: visible;
    box-sizing: border-box;
}

.stat-footer {
    text-align: center;
    margin-top: -10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 5px;
}

.trend-value {
    font-size: 13px;
    font-weight: 500;
    margin-top: 5px;
    color: #3182ce;
}

.trend-icon {
    font-size: 10px;
    margin-right: 3px;
}

@media (max-width: 1500px) {
    .statistics-block-divider {
        margin: 35px 20px;
    }
}

@media (max-width: 1279px) {
    .statistics-container {
        grid-template-columns: 1fr;
        padding: 100px 40px;
        gap: 40px;
    }

    .statistics-block-divider {
        width: 210px;
        height: 2px;
        margin: 0 auto;
        align-self: auto;
    }

    .chart-card {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .chart-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .chart-card {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .statistics-container {
        padding: 64px 24px;
    }

    .chart-container {
        min-height: 160px;
        max-width: 100%;
        padding: 0;
    }

    .chart-card {
        max-width: 100%;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 599px) {
    .statistics-container {
        padding: 42px 14px;
    }
}
