@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
	--blue: #006cfd;
	--dark-blue: #0d162e;
	--white: #fff;
	--grey: #777;
}

body {
	background: var(--white);
	color: var(--dark-blue);
	font-family: "Grtsk Peta";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
}

.body-wrapper {
	overflow: hidden;
	position: relative;
}

.section {
	margin-bottom: 150px;
}

.container {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 100px;
}


.text-90 {
	font-size: 90px;
	line-height: 100%;
}


.text-50 {
	font-size: 50px;
	line-height: normal;
}

.text-40 {
	font-size: 40px;
	line-height: normal;
}

.text-26 {
	font-size: 26px;
	line-height: normal;
}

.text-24 {
	font-size: 24px;
	line-height: normal;
}

.text-25 {
	font-size: 25px;
	line-height: normal;
}

.text-20 {
	font-size: 20px;
	line-height: 130%;
}

.text-22 {
	font-size: 22px;
	line-height: 130%;
}

.text-16 {
	font-size: 16px;
	line-height: 130%;
}

.text-14 {
	font-size: 14px;
	line-height: 130%;
}


.fw-500 {
	font-weight: 500;
}

.fw-600 {
	font-weight: 600;
}

.fw-700 {
	font-weight: 700;
}

b {
	font-weight: 700;
}

.content p:not(:last-child) {
	margin-bottom: 20px;
}

.content b {
	font-weight: 500;
}

.content ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.content ul:not(:last-child) {
	margin-bottom: 20px;
}

.content ul>li {
	position: relative;
	padding-left: 20px;

}

.content ul>li::before {
	display: block;
	content: '';
	width: 3px;
	height: 3px;
	background: currentColor;
	position: absolute;
	top: 9px;
	left: 8px;
}

.content h2 {
	font-size: 20px;
	line-height: 130%;
	margin-bottom: 20px;
	font-weight: 500;
}

.btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border-radius: 8px;
	background: var(--blue);
	color: #fff;
	padding: 16px 34px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	cursor: pointer;
	gap: 10px;
}

.btn:hover {
	background-color: #0056c9;
}

.btn_white {
	background-color: #fff;
	color: var(--blue);
}

.btn_white:hover {
	background-color: #e0edff;
}

.btn_light-blue {
	background-color: #e6f0ff;
	color: var(--blue);
}

.btn_light-blue:hover {
	background-color: #d9e8ff;
}

.btn_rounded {
	border-radius: 30px;
	border: 1px solid #006CFD;
	background: #F3F5FA;
	color: #031D40;
	padding: 10px 20px;
}

.btn_rounded:hover {
	background-color: #fff;
}

.select {
	display: flex;
	width: 100%;
	position: relative;
}

.select__btn {
	border-radius: 30px;
	border: 1px solid #B1BAD2;
	background: var(--white);
	padding: 12px 20px;
	gap: 10px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: all ease 0.5s;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.select__btn-text {
	width: 100%;
}

.select__caret {
	display: flex;
	transition: all ease 0.5s;
}

.select__field {
	display: none;
}

.select__body {
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
	width: 100%;
	height: fit-content;
	z-index: 2;
	display: flex;
	gap: 5px;
	flex-direction: column;
	opacity: 0;
	pointer-events: none;
	border-radius: 30px;
	border: 1px solid #B1BAD2;
	background: var(--white);
	padding: 12px 20px;
}

.select__item {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.select__item_disabled {
	display: none;
}

.select__item_active {
	color: var(--grey);
}

.select_open .select__body {
	pointer-events: all;
	opacity: 1;
}

.select_open .select__btn {
	background: #F3F5FA;
}

.select_open .select__caret {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.tab__link {
	cursor: pointer;
}

.tab__item:not(.tab__item_active) {
	display: none;
}

.header {
	width: 100%;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	padding: 11px 0;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	position: relative;
	z-index: 10;
}

.header_fixed {
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 10;
}

.header__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header__menu-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	padding: 12px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.header__menu-btn svg:nth-child(2) {
	display: none;
}

.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header .nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100dvh;
	background-color: var(--white);
	z-index: -1;
	padding: 100px 140px;
	overflow-y: auto;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.header .nav::-webkit-scrollbar {
	display: none;
}

.header .nav__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[4];
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin: 0 auto;
	width: 100%;
	max-width: 1160px;
}

.header .nav__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header .nav__link_lvl1 {
	color: rgba(105, 119, 151, 0.5);
	padding-bottom: 24px;
	border-bottom: 1px solid #c0c9dd;
	margin-bottom: 24px;
	min-height: 90px;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.header .nav__link_lvl2 {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header .nav__link_lvl2:hover {
	color: #4f5c79;
}

.header .nav__submenu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
}

.header_open .nav {
	-webkit-transform: none;
	transform: none;
}

.header_open .header__menu-btn svg:nth-child(1) {
	display: none;
}

.header_open .header__menu-btn svg:nth-child(2) {
	display: block;
}

.header_open .header__logo {
	opacity: 0;
	pointer-events: none;
}

.header_fixed.header_scroll {
	background-color: var(--white);
}

.header_fixed:not(.header_scroll) .header__menu-btn svg:nth-child(1) path {
	fill: var(--white);
}

.header_fixed:not(.header_scroll) .header__logo svg path {
	fill: var(--white);
}

.title-h2 {
	margin-bottom: 40px;
}

.entrance {
	position: relative;
	z-index: 1;
}

.entrance__bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -1;
}

.entrance__bg video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top right;
	object-position: top right;
}

.entrance__wrapper {
	height: 500px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	gap: 40px;
	color: var(--white);
}


.news__slide {
	display: flex;
	width: 100%;
	max-width: 560px;
}

.news__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
	gap: 30px;
}

.news-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	height: 100%;
	min-height: 310px;
	border-radius: 24px;
	background: #F3F5FA;
	padding: 30px;
	border: 2px solid transparent;
	transition: all ease 0.5s;
}

.news-card:hover {
	background-color: var(--white);
	border-color: #F3F5FA;
}

.news-card__top {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.news-card__tag {
	color: var(--grey);
	text-transform: uppercase;
	padding: 8px 20px;
	border-radius: 20px;
	display: flex;
	width: fit-content;
}

.news-card__date {
	margin-top: auto;
	color: var(--grey);
}

.news-card__title {
	color: var(--blue);
}

.news__navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

.news__prev,
.news__next {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all ease 0.5s;
	width: 50px;
	height: 50px;
	cursor: default;
	border: 1px solid transparent;
}


.news__prev:not(.swiper-button-disabled),
.news__next:not(.swiper-button-disabled) {
	background-color: #F3F5FA;
	cursor: pointer;
}

.news__prev.swiper-button-lock,
.news__next.swiper-button-lock {
	opacity: 0;
	pointer-events: none;
}

.news__prev:not(.swiper-button-disabled):hover,
.news__next:not(.swiper-button-disabled):hover {
	border-color: #B1BAD2;
}

.interview-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 24px;
	background: #F3F5FA;
	padding: 20px 30px;
	width: 100%;
	height: 100%;
	min-height: 300px;
	gap: 20px;
	border: 2px solid transparent;
	transition: all ease 0.5s;
}

.interview-card:hover {
	background-color: var(--white);
	border-color: #F3F5FA;
}

.interview-card__bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.interview-card__date {
	color: var(--grey);
}

.interview-card__title {
	color: var(--blue);
}

.interview-card__img {
	display: flex;
	width: 80px;
	min-width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
}

.interview-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.interview-card__img:nth-child(2) {
	margin-left: -20px;
}

.interview-card__img-list {
	display: flex;
}

.contacts_blue {
	padding: 60px 0;
	background: #F3F5FA;
}



.contacts__wrapper {
	display: flex;
	gap: 120px;
	justify-content: space-between;
}

.contacts__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	row-gap: 60px;
	width: 100%;
	max-width: 1140px;
}

.contacts__link {
	text-decoration: underline;
}

.contacts__photo {
	display: flex;
	width: 160px;
	min-width: 160px;
	height: 160px;
	border-radius: 50%;
	overflow: hidden;
}

.contacts__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.contacts__item {
	display: flex;
	gap: 10px;
}

.contacts__body {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 290px;
}

.contacts__telegram {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: auto;
	color: #00000080;
}

.contacts__name {
	margin-bottom: 5px;
}

.contacts__email {
	margin-top: 15px;
	color: var(--blue);
	text-decoration: underline;
}

.contacts__label {
	margin-top: 5px;
	min-height: 21px;
	color: #00000080;
}

.contacts__scroll-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	cursor: pointer;
	color: var(--grey);
	margin-top: auto;
	margin-left: auto;
}

.contacts__scroll-btn-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: all ease 0.5s;
	background-color: var(--white);
	border: 1px solid transparent;
}

.contacts__scroll-btn:hover .contacts__scroll-btn-icon {
	border-color: #B1BAD2;
}


.progress__wrapper {
	border-radius: 24px;
	background: linear-gradient(129deg, var(--Brand-Lapis, #006CFD) -1.75%, var(--Solid-White, #FFF) 106.1%);
	color: var(--white);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
	position: relative;
}

/* .progress__wrapper:hover .progress__img img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
} */

.progress__body {
	padding: 100px;
	padding-right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	gap: 40px;
	width: 100%;
	max-width: 708px;
}

.progress__btn {
	min-width: 296px;
}

.progress__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 800px;
	height: auto;
}

.progress__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top left;
	object-position: top left;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.progress__qr {
	display: flex;
	width: 190px;
	height: 190px;
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 2;
}

.progress__qr img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


.services__heading {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	z-index: 1;
	padding: 160px 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	height: 600px;
	color: var(--white);
}

.services__heading:hover .services__heading-bg img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.services__heading-bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
}

.services__heading-bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.services__subtitle {
	width: 100%;
	max-width: 585px;
}

.services__wrapper {
	display: flex;
	gap: 20px;
	width: 100%;
}

.services__item-title {
	margin-bottom: 40px;
}

.services__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.services__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	padding: 22px 20px;
	border-radius: 16px;
	position: relative;
}

.services__link:hover {
	background-color: #f3f5fa;
}

.services__link:hover .services__link-arrow {
	opacity: 1;
}

.services__link:not(:last-child)::after {
	display: block;
	content: "";
	width: calc(100% - 32px);
	height: 1px;
	position: absolute;
	left: 50%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #f3f5fa;
}

.services__link-arrow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	opacity: 0;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.services__logo {
	display: flex;
	flex-direction: column;
	align-items: center;

	border-radius: 24px;
	overflow: hidden;
	padding: 80px 40px;
	min-height: 600px;
	width: 100%;
	max-width: 995px;

	background-image: url(../img/services/bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.services__logo-img {
	display: flex;
	width: 100%;
	max-width: 404px;
}

.services__logo-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.services__logo-btn {
	margin-top: 43px;
	gap: 10px;
	padding: 10px 20px;
	color: #000;
}

.services__body {
	width: 100%;
	max-width: 705px;
}

.page-with-sidebar {
	padding: 100px 0;
}

.page-with-sidebar__wrapper {
	display: grid;
	grid-template-columns: 220px auto;
	gap: 50px;
}

.sidebar {
	display: flex;
	flex-direction: column;
	padding-right: 10px;
	border-right: 1px solid #B1BAD2;
}

.sidebar__nav {
	width: 100%;
	height: fit-content;
}

.sidebar__nav-list {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding-left: 0;
	margin: 0;
	list-style: none;
}

.sidebar__nav-link {
	display: flex;
	width: 100%;
	position: relative;
}

.sidebar__nav-link_lvl1 {
	border-radius: 16px;
	padding: 22px 20px;
}

.sidebar__nav-link_active {
	background: #F3F5FA;
	color: var(--grey);
}

.sidebar__nav-item:nth-child(-n + 2) .sidebar__nav-link_lvl1:not(.sidebar__nav-link_active)::after {
	display: block;
	content: '';
	width: 100%;
	height: 1px;
	background: #B1BAD2;
	position: absolute;
	bottom: 0;
	left: 0;
}

.sidebar__nav-submenu {
	padding: 0 20px 22px;
	margin: 0;
	list-style: none;
}

.sidebar__nav-link_lvl2 {
	padding: 9px 10px;
	border-radius: 10px;
}

.breadcrumbs {
	margin: 100px 0 60px;
	color: var(--grey);
}

.page-with-sidebar .breadcrumbs {
	margin-top: 0;
}

.breadcrumbs__wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	padding-left: 0;
	margin: 0;
	list-style: none;
}

.breadcrumbs__item:not(:last-child) {
	position: relative;
	display: flex;
	align-items: center;
	gap: 7px;
}

.breadcrumbs__item:not(:last-child)::after {
	display: block;
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}

.catalog__heading {
	display: flex;
	gap: 20px;
	align-items: flex-end;
	justify-content: space-between;
}

.catalog__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.catalog__controls {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
	align-items: center;
}

.catalog__pagination {
	display: flex;
	align-items: center;
	gap: 5px;
}

.catalog__pagination-link {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	border: 1px solid transparent;
	transition: all ease 0.5s;
	min-width: 50px;
	width: 50px;
	height: 50px;
}

.catalog__pagination-link_active {
	border-color: #B1BAD2;
	background-color: #F3F5FA;
}

.catalog__pagination-link_next {
	background-color: #F3F5FA;
	color: var(--grey);
}

.catalog__pagination-link:not(.catalog__pagination-link_active):hover {
	background-color: var(--blue);
	color: var(--white);
}

.catalog__pagination-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 40px;
	width: 40px;
	height: 40px;
}

.catalog__filter {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	flex-grow: 1;
}

.catalog__filter-item {
	width: 100%;
	max-width: 270px;
}

.photo-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 280px;
	width: 100%;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding: 20px;
	color: var(--white);
}

.photo-card__img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.photo-card__img::before {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	background: linear-gradient(180deg, rgba(208, 216, 233, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%);
	transition: all ease 0.5s;
}

.photo-card__img::after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	background: linear-gradient(180deg, rgba(208, 216, 233, 0.00) 35.1%, #006CFD 100%);
	transition: all ease 0.5s;
	opacity: 0;
}

.photo-card:hover .photo-card__img::before {
	opacity: 0;
}

.photo-card:hover .photo-card__img::after {
	opacity: 1;
}

.photo-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.photo-card__label {
	opacity: 0.8;
	transition: all ease 0.5s;
	margin-top: 5px;
}


.download-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	height: 100%;
}

.download-card__img {
	display: flex;
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.download-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.download-card__icon {
	display: flex;
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 2;
	transition: all ease 0.5s;
	opacity: 0;
}

.download-card__img:hover .download-card__icon {
	opacity: 1;
}

.download-card__desc {
	color: var(--grey);
}

.catalog__list_with-big-cards .catalog__card:nth-child(2),
.catalog__list_with-big-cards .catalog__card:nth-child(6),
.catalog__list_with-big-cards .catalog__card:nth-child(8) {
	grid-row: span 2;
}


.contacts__heading-desc {
	margin-top: 30px;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid #B1BAD2;
}

.article {
	margin: 100px 0 150px;
}

.article__heading {
	display: grid;
	grid-template-columns: 270px auto;
	gap: 20px;
	margin-bottom: 50px;
}

.article__heading-date {
	color: var(--grey);
}

.article__heading-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	max-width: 995px;
}

.article__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	height: fit-content;
}

.article__content {
	padding-left: 290px;
	width: 100%;
	max-width: 1140px;
}

.article__content-block:not(:last-child) {
	margin-bottom: 20px;
}

.article-block-img {
	padding: 20px 0;
}

.article-block-img__label {
	margin-top: 5px;
	color: var(--grey);
}

.article-block-img__img {
	display: flex;
	width: 100%;
	height: auto;
	aspect-ratio: 1.77;
	border-radius: 24px;
	overflow: hidden;
}

.article-block-img__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.article-block-citation {
	display: flex;
	gap: 20px;
	padding: 20px;
	border-radius: 16px;
	background-color: #C1E8FD;
}

.article-block-citation__icon {
	display: flex;
	height: fit-content;
}

.article-block-citation__author {
	margin-top: 16px;
	color: var(--grey);
}

.article-block-table {
	padding: 20px 0;
}

.article-block-table__title {
	margin-bottom: 10px;
}

.article-block-table__label {
	margin-top: 10px;
	color: var(--grey);
}

.article-block-table table {
	border-collapse: collapse;
	width: 100%;
}

.article-block-table th {
	background: #F3F5FA;
	font-weight: 500;
	padding: 10px 20px;
	text-align: left;
	border-bottom: 1px solid #B1BAD2;
}

.article-block-table th[colspan] {
	text-align: center;
}

.article-block-table th:first-child {
	border-right: 1px solid #B1BAD2;
}

.article-block-table td {
	padding: 10px 20px;
}

.article-block-table td:first-child {
	font-weight: 500;
	box-shadow: 4px 0 4px 0 rgba(0, 0, 0, 0.05);
	border-right: 1px solid #B1BAD2;
}

.article-block-table tr:nth-child(even) td {
	background: #F3F5FA;
}

.article-block-table tr:last-child td {
	border-bottom: 1px solid #B1BAD2;
}

.article-block-table__table {
	width: 100%;
	overflow-x: auto;
}

.article__bottom {
	display: flex;
	gap: 20px;
	margin-top: 20px;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid #B1BAD2;
}

.article__bottom-link {
	color: var(--grey);
}

.article__bottom-link a {
	text-decoration: underline;
}

.article__interviewee {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	background: #F3F5FA;
	width: fit-content;
	padding: 20px;
}

.article__interviewee-name {
	margin-top: 15px;
}

.article__interviewee-position {
	color: var(--grey);
	margin-top: 3px;
}

.logo-block {
	padding: 60px 0;
	border-bottom: 1px solid #B1BAD2;
	position: relative;
}

.logo-block_grey::after {
	display: block;
	content: '';
	width: calc(100% + 150px);
	height: 100%;
	position: absolute;
	z-index: -1;
	top: 0px;
	left: -50px;
	background-color: #F3F5FA;
}

.breadcrumbs+.logo-block {
	padding-top: 0;
}

.logo-block:last-child {
	border: none;
}

.logo-block__title {
	width: 100%;
	max-width: 560px;
}

.logo-block__heading {
	display: flex;
	gap: 20px;
}

.logo-block__heading:not(:last-child) {
	margin-bottom: 20px;
}

.logo-block__heading-body {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 705px;
	gap: 20px;
}

.logo-block__heading-body_row {
	flex-direction: row;
	justify-content: space-between;
}

.logo-block__heading-desc p:not(:last-child) {
	margin-bottom: 1em;
}

.logo-block__heading-desc_fit {
	width: 100%;
	max-width: 415px;
}

.logo-block__heading-btns {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.logo-block__heading-btns_row {
	flex-direction: row;
}

.logo-block__full {
	border-radius: 24px;
	background: #F3F5FA;
	padding: 40px;
	display: grid;
	grid-template-columns: 530fr 700fr;
	gap: 30px;
	align-items: center;
}

.logo-block__full-colors {
	display: flex;
	width: 100%;
	max-width: 280px;
}

.logo-block__full-colors img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.logo-block .tab__header {
	display: flex;
	gap: 20px;
	margin-top: 40px;
}

.logo-block .tab__link {
	color: var(--grey);
	padding-bottom: 4px;
}

.logo-block .tab__link_active {
	border-bottom: 1px solid #000;
	color: #000;
}

.logo-block__full-logo {
	display: flex;
	width: fit-content;
	height: 150px;
}

.logo-block__full-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.logo-block__img {
	display: flex;
	/* width: 100%; */
	max-width: 560px;
}

.logo-block__img_short {
	max-width: 235px;
}

.logo-block__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.logo-block__img-list {
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.logo-block__img-list_bg {
	border-radius: 24px;
	background: #F3F5FA;
	padding: 40px;
}

.logo-block__color-version {
	display: flex;
	gap: 20px;
	width: 100%;
}

.logo-block__color-version-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	height: auto;
	width: 100%;
	padding: 30px;
	border-radius: 24px;
	background: #F3F5FA;
}

.logo-block__color-version-card_black {
	color: var(--white);
	background-color: #000;
}

.logo-block__color-version-card_blue {
	color: var(--white);
	background-color: var(--blue);
}

.logo-block__color-version-bottom {
	display: flex;
	gap: 20px;
	width: 100%;
}

.logo-block__color-version-logo {
	max-width: 100%;
	/* width: 100%; */
	height: fit-content;
}

.logo-block__color-version-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.logo-block__forbidden {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.logo-block__forbidden-label {
	margin-top: 10px;
	color: #031D40;
}

.logo-block__forbidden-img {
	display: flex;
	width: 100%;
	height: fit-content;
}

.logo-block__forbidden-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.logo-block__partner {
	display: grid;
	gap: 40px;
	row-gap: 80px;
	grid-template-columns: 690fr 465fr;
	justify-content: space-between;
	padding: 30px;
	border-radius: 24px;
	background: #F3F5FA;
}

.logo-block__partner-img {
	display: flex;
	max-width: 100%;
	width: fit-content;
}

.logo-block__partner-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.logo-block__position {
	display: flex;
	gap: 20px;
}

.logo-block__position-label {
	margin-top: 10px;
}

.logo-block__position-img {
	display: flex;
	width: 100%;
	height: fit-content;
}

.logo-block__position-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.logo-block__position-item {
	width: 100%;
}

.typography__title {
	margin-bottom: 20px;
}

.typography__wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.typography__item {
	display: flex;
	flex-direction: column;
	padding: 30px;
	border-radius: 24px;
	background: #F3F5FA;
	color: #2B2D33;
	min-height: 500px;
}

.typography__item_wide {
	grid-column: span 2;
}

.typography__font-alphabet {
	max-width: 385px;
}

.typography__body-row {
	display: flex;
	gap: 40px;
}

.typography__body-col {
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.typography__body-col_border::after {
	display: block;
	content: '';
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0px;
	right: -20px;
	background-color: #B1BAD2;
}

.typography__font-name {
	margin-bottom: 13px;
}

.typography__font-char {
	margin-top: auto;
	line-height: 80%;
}

.typography__font-char:not(:last-child) {
	margin-bottom: 30px;
}

.typography__item-bottom {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #B1BAD2;
}

.typography__item-bottom-font {
	display: flex;
	align-items: flex-end;
	margin-bottom: 20px;
}

.typography__item-bottom-name {
	font-size: 60px;
	line-height: 80%;
}

.typography__item-bottom-text {
	max-width: 350px;
}

.typography__item-bottom-label {
	margin-left: -10px;
}

.typography__item-text {
	margin-top: 20px;
}

.section-typography {
	padding-bottom: 60px;
	margin-bottom: 60px;
	border-bottom: 1px solid #B1BAD2;
}

.colors__tile-name {
	margin-bottom: 10px;
}

.colors__tile {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	border-radius: 24px;
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	white-space: nowrap;
}

.colors__wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.colors__main-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.colors__main-list .colors__tile:first-child {
	grid-column: span 2;
	grid-row: span 2;
	aspect-ratio: unset;
}

.colors__main {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 20px;
}

.colors__panel {
	border-radius: 24px;
	background: #F3F5FA;
	padding: 20px;
}

.colors__title {
	margin-bottom: 20px;
}

.colors__subtitle {
	margin-bottom: 20px;
}

.colors__secondary-list {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
}

.colors__secondary-label {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-top: 20px;
}

.colors__secondary-bottom {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 20px;
	margin-top: 20px;
}

.colors__secondary-row {
	display: flex;
	gap: 10px;
}

.colors__secondary-img {
	display: flex;
	width: 100%;
	height: auto;
}

.colors__secondary-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: top center;
}

.colors__gradient-wrapper {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 20px;
}

.colors__gradient-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.colors__gradient-item {
	display: flex;
	gap: 10px;
}

.colors__gradient-img {
	display: flex;
	min-width: 130px;
	width: 130px;
	height: 130px;
}

.colors__gradient-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: top left;
}

.colors__gradient-bg-list {
	display: flex;
	gap: 5px;
	height: 100%;
}

.colors__gradient-bg {
	width: 100%;
	height: auto;
	min-height: 345px;
	border-radius: 24px;
}


.formats__title {
	margin-bottom: 20px;
}

.formats__main {
	padding: 30px;
	border-radius: 24px;
	background: #F3F5FA;
	margin-bottom: 20px;
}

.formats__main-title {
	margin-bottom: 16px;
}

.formats__main-list {
	display: flex;
	gap: 16px;
}

.formats__main-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 10px;
	padding: 20px;
	border-radius: 24px;
	background-color: #fff;
}

.formats__side-title {
	margin-bottom: 30px;
}

.formats__side-wrapper {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.formats__side-step {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 20px;
}

.formats__side-step-body {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	max-width: 850px;
	margin-left: auto;
}

.formats__side-img {
	display: flex;
	max-width: 100%;
	height: auto;
}

.formats__side-img img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	object-position: bottom center;
}

.formats__side-row {
	display: flex;
	gap: 30px;
}

.formats__side-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
	/* width: 100%; */
}

.formats__side-bottom-desc {
	margin-top: 20px;
}


.formats__side-bottom {
	display: grid;
	grid-template-columns: 313fr 125fr 95fr 235fr 117fr 70fr 220fr;
	gap: 20px;
	width: 100%;
}

.formats__side-bottom .formats__side-img:nth-child(2) {
	grid-column: span 2;
}

.formats__side-bottom .formats__side-img:nth-child(6),
.formats__side-bottom .formats__side-img:nth-child(7) {
	grid-row: span 2;
	grid-column: span 2;
}

.formats__side-bottom .formats__side-img:nth-child(8),
.formats__side-bottom .formats__side-img:nth-child(9) {
	grid-column: span 3;
}

.formats__side-bottom .formats__side-img:nth-child(n + 6) img {
	width: 100%;
}

/*  min  */
@media screen and (min-width: 769px) {
	.br-mobile {
		display: none;
	}
}

/*  max  */
@media screen and (max-width: 1700px) {
	.catalog__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.catalog__list_with-big-cards .catalog__card:nth-child(6) {
		grid-row: auto;
	}

	.catalog__list_with-big-cards .catalog__card:nth-child(4) {
		grid-row: span 2;
	}
}

@media screen and (max-width: 1600px) {
	.typography__wrapper {
		display: flex;
		flex-direction: column;
	}
}

@media screen and (max-width: 1500px) {
	.container {
		padding: 0 40px;
	}

	.news__slider {
		overflow: visible;
	}
}

@media screen and (max-width: 1400px) {
	.page-with-sidebar__wrapper {
		display: block;
	}

	.sidebar {
		display: none;
	}

	.catalog__list {
		grid-template-columns: repeat(3, 1fr);
	}

	.catalog__list_with-big-cards .catalog__card:nth-child(6) {
		grid-row: span 2;
	}

	.catalog__list_with-big-cards .catalog__card:nth-child(4) {
		grid-row: auto;
	}
}

@media screen and (max-width: 1300px) {
	.contacts__wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.services__wrapper {
		flex-direction: column;
	}

	.services__logo {
		max-width: none;
	}
}

@media screen and (max-width: 1200px) {
	.colors__main {
		display: flex;
		flex-direction: column;
	}

	.colors__secondary-bottom {
		display: flex;
		flex-direction: column-reverse;
	}

	.colors__gradient-wrapper {
		display: flex;
		flex-direction: column;
	}

	.colors__secondary-list {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media screen and (max-width: 1024px) {
	.header .nav {
		padding: 60px 84px;
	}

	.header .nav__list {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}

	.contacts__list {
		display: flex;
		flex-direction: column;
	}

	.progress__wrapper {
		flex-direction: column;
	}

	.progress__body {
		padding: 40px 20px 0;
		max-width: none;
	}

	.catalog__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.catalog__list_with-big-cards .catalog__card:nth-child(6) {
		grid-row: auto;
	}

	.catalog__list_with-big-cards .catalog__card:nth-child(4) {
		grid-row: span 2;
	}

	.article__content {
		padding: 0;
	}

	.article__heading {
		display: flex;
		flex-direction: column;
	}

	.article__interviewee {
		order: 3;
	}

	.article__interviewee-name {
		margin: 0;
	}

	.article__interviewee {
		flex-direction: row;
		gap: 15px;
		align-items: center;
	}

	.logo-block__heading {
		flex-direction: column;
	}

	.logo-block__title {
		max-width: none;
	}

	.logo-block__heading-body {
		max-width: none;
	}

	.logo-block__color-version {
		flex-direction: column;
	}

	.logo-block__forbidden {
		grid-template-columns: 1fr 1fr;
	}

	.logo-block__partner {
		display: flex;
		flex-direction: column;
		gap: 40px;
		padding: 20px;
	}

	.logo-block__partner-img {
		height: 40px;
	}

	.logo-block__position {
		flex-direction: column;
	}

	.colors__secondary-list {
		grid-template-columns: repeat(3, 1fr);
	}

	.formats__main-list {
		flex-direction: column;
	}

	.formats__side-step {
		display: flex;
		flex-direction: column;
	}

	.formats__side-row {
		flex-direction: column;
	}

	.formats__side-bottom {
		gap: 8px;
		grid-template-columns: 50fr 30fr 50fr 52fr 48fr 100fr;
	}

	.formats__side-bottom-heading {
		margin-bottom: 12px;
		grid-column: span 6;
		order: -5;
	}

	.formats__side-bottom .formats__side-img:nth-child(2) {
		grid-column: span 3;
		margin-left: auto;
		width: 60%;
	}

	.formats__side-bottom .formats__side-img:nth-child(4) {
		order: -2;
	}

	.formats__side-bottom .formats__side-img:nth-child(5) {
		order: -1;
	}


	.formats__side-bottom .formats__side-img:nth-child(6) {
		grid-row: auto;
		grid-column: span 4;
	}

	.formats__side-bottom .formats__side-img:nth-child(7) {
		grid-row: auto;
	}

	.formats__side-bottom .formats__side-img:nth-child(8),
	.formats__side-bottom .formats__side-img:nth-child(9) {
		grid-column: span 6;
	}
}

@media screen and (max-width: 768px) {
	.text-90 {
		font-size: 65px;
		line-height: 120%;
	}

	.catalog__list {
		display: flex;
		flex-direction: column;
	}

	.catalog__heading {
		flex-direction: column;
		align-items: flex-start;
	}

	.catalog__filter {
		width: 100%;
		justify-content: flex-start;
	}

	.catalog__list_with-big-cards {
		display: grid;
		gap: 10px;
	}

	.catalog__pagination {
		display: none;
	}

	.download-card__icon {
		opacity: 1;
		right: 10px;
		bottom: 10px;
	}

	.contacts__heading-desc {
		display: none;
	}

	.contacts__heading {
		margin-bottom: 40px;
	}

	.contacts__wrapper {
		gap: 0;
	}

	.logo-block__full {
		display: flex;
		flex-direction: column-reverse;
	}

	.logo-block .tab__header {
		justify-content: center;
	}

	.logo-block__heading-body_row {
		flex-direction: column;
	}

	.logo-block__heading-btns {
		flex-direction: row;
	}

	.logo-block__heading-desc_fit {
		max-width: none;
	}

	.typography__body-row {
		flex-direction: column;
	}

	.typography__body-col_border::after {
		bottom: -20px;
		left: 0;
		right: unset;
		top: unset;
		width: 100%;
		height: 1px;
	}

	.colors__main-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.colors__main-list .colors__tile:first-child {
		grid-row: auto;
		aspect-ratio: 1/1;
	}

	.colors__secondary-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.colors__gradient-bg {
		min-height: 87px;
		grid-column: span 2;
	}

	.colors__gradient-bg-list {
		display: grid;
		grid-template-columns: 3fr 1fr 2fr 2fr 1fr 3fr;
	}

	.colors__gradient-bg:nth-child(10),
	.colors__gradient-bg:nth-child(13) {
		grid-column: auto;
	}
}

@media screen and (max-width: 570px) {
	.container {
		padding: 0 10px;
	}

	.section {
		margin-bottom: 80px;
	}

	.title-h2 {
		margin-bottom: 20px;
	}

	body {
		font-size: 16px;
		line-height: 150%;
	}

	.text-90 {
		font-size: 40px;
		line-height: 100%;
	}

	.text-50 {
		font-size: 30px;
		line-height: normal;
	}

	.text-40 {
		font-size: 25px;
		line-height: normal;
	}

	.text-24 {
		font-size: 20px;
		line-height: 100%;
	}

	.text-26 {
		font-size: 20px;
		line-height: normal;
	}

	.text-20 {
		font-size: 16px;
		line-height: normal;
	}

	.btn {
		padding: 14px 35px;
	}

	.header {
		padding: 0;
	}

	.header__wrapper {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.header .nav {
		padding: 28px 16px;
	}

	.header .nav__list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 20px;
	}

	.header .nav__link_lvl1 {
		font-size: 24px;
		min-height: 0;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	.header .nav__submenu {
		gap: 5px;
	}

	.header__logo {
		height: 30px;
		width: 85px;
	}

	.header__logo svg {
		width: 100%;
		height: 100%;
	}

	.entrance {
		border-radius: 0 0 24px 24px;
		overflow: hidden;
		margin-bottom: 50px;
	}

	.entrance__wrapper {
		gap: 15px;
		height: 170px;
	}

	.news__slide {
		max-width: 320px;
	}

	.news__bottom {
		margin-top: 20px;
	}

	.news-card {
		padding: 20px;
		min-height: 280px;
	}

	.news-card__tag {
		padding: 5px 10px;
		font-size: 15px;
	}

	.interview-card {
		padding: 20px;
		justify-content: space-between;
	}

	.contacts__photo {
		min-width: 120px;
		width: 120px;
		height: 120px;
	}

	.contacts__label {
		min-height: 0;
	}

	.contacts__email {
		margin-top: 5px;
		margin-bottom: 23px;
	}

	.progress__btn {
		width: 100%;
	}

	.progress__qr {
		display: none;
	}

	.progress__wrapper {
		gap: 20px;
		margin: 0 -10px;
	}

	.services__logo {
		min-height: 0;
		width: calc(100% + 20px);
		height: auto;
		aspect-ratio: 0.906;
		margin: 0 -10px;
		padding: 50px;
		background-image: url(../img/services/bg_mob.png);

	}

	.services__logo-img {
		max-width: 250px;
	}

	.services__logo-btn {
		margin-top: 30px;
	}

	.catalog__controls {
		margin-top: 20px;
	}

	.page-with-sidebar {
		padding-top: 30px;
	}

	.breadcrumbs {
		margin-top: 30px;
		margin-bottom: 20px;
	}

	.article {
		margin: 40px 0 80px;
	}

	.article__heading {
		margin-bottom: 20px;
	}

	.article__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.btn_rounded {
		padding: 10px 20px;
	}

	.article__interviewee {
		width: 100%;
	}

	.article__interviewee .interview-card__img {
		min-width: 60px;
		width: 60px;
		height: 60px;
	}

	.logo-block__full {
		padding: 20px;
	}

	.logo-block .tab__header {
		margin-top: 30px;
	}

	.logo-block__img-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.logo-block__img:first-child {
		grid-column: span 2;
		margin: 0 auto;
	}

	.logo-block__img_short:first-child {
		width: 50%;
	}

	.logo-block__img-list_bg {
		padding: 20px;
	}

	.logo-block__forbidden {
		gap: 10px;
	}

	.typography__font-char {
		font-size: 150px !important;
	}

	.typography__item {
		padding: 20px;
		min-height: 0;
	}

	.colors__tile {
		padding: 10px;
	}

	.colors__gradient-item {
		display: flex;
		flex-direction: column;
	}

	.colors__gradient-img {
		width: 100%;
		height: auto;
		/* aspect-ratio: 1/1; */
	}
}

.uk-lightbox {
	background-color: rgba(0, 0, 0, 0.92);
}