/*Обнуление*/
* {
	padding: 0;
	margin: 0;
	border: 0;
}
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus, :active { outline: none; }
a:focus, a:active { outline: none; }
nav, footer, header, aside { display: block; }
html, body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 12px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input, button, textarea { font-family: inherit; }
input::-ms-clear { display: none; }
button { cursor: pointer; }
button::-moz-focus-inner { padding: 0; border: 0; }
a, a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
ul li { list-style: none; }
img { vertical-align: top; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: 400; }
/*--------------------*/

@font-face {
	font-family: 'Ortica';
	src: url('../fonts/Ortica-Bold.eot');
	src: local('☺'), url('../fonts/Ortica-Bold.woff') format('woff'), url('../fonts/Ortica-Bold.ttf') format('truetype'), url('../fonts/Ortica-Bold.svg') format('svg');
	font-weight: 700;
	font-style: normal;
}

body {
	font-family: Forum;
	color: #5F5C5C;
	font-size: 14px;
	background-color: #ededed;
}

.wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	overflow: clip;
}

.page {
	flex: 1 1 auto;
}

[class*="__container"] {
	max-width: 1582px;
	margin: 0 auto;
	padding: 0 15px;
}

/* --------------------Header-------------------- */
.header {}
.header__container {
	display: flex;
	min-height: 164px;
	padding-top: 5px;
	padding-bottom: 5px;
	align-items: center;
}
.header__logo {
	width: 132px;
	/* height: 34px; */
}
.header__menu { flex: 1 1 auto; }
.menu {}
.menu__icon {}
.menu__list {
	display: flex;
	column-gap: 80px;
	row-gap: 10px;
	flex-wrap: wrap;
	padding-left: 20px;
	padding-right: 20px;
	align-items: center;
	justify-content: center;
}
.menu__item {}
.menu__link {
	font-size: 22px;
	line-height: 1.10;
	position: relative;
}
.menu__sub-list {
	position: absolute;
	background-color: #ffffff;
	padding: 25px;
	box-shadow: 2px 4px 8px rgba(123, 163, 223, 0.25);
	border-radius: 8px;
}
.menu__sub-link:hover { text-decoration: underline; }
.menu__sub-list li { margin: 0 0 25px 0; }
.menu__sub-list li:last-child { margin: 0; }
.menu__sub-link {
	color: #5F5C5C;
	font-size: 20px;
}
.menu__link:hover { text-decoration: underline; }
.header__people {
	display: flex;
	gap: 64px;
}
.header__account {}
.account-header {}
.header-icon {
	font-size: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.account-header__icon img {
	width: 20px;
	height: 20px;
}
.account-header__title {}
.header__login {}
.login-header {}
.login-header__icon img {
	width: 20px;
	height: 20px;
}
.login-header__title {}

.header__logo,
.header__login,
.header__account {
	position: relative;
	z-index: 2;
}

@media (max-width: 1406px) {
	.menu__list { column-gap: 30px; }
	.header__people { gap: 20px; }
}

@media (max-width: 1150px) {
	.icon-menu {
		display: block;
		flex: 0 0 30px;
		height: 18px;
		position: relative;
		z-index: 5;
		margin-left: 30px;
		background-color: #FBFBFB;
	}
	.icon-menu span,
	.icon-menu::before,
	.icon-menu::after {
		content: "";
		right: 0;
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: rgb(0, 0, 0);
		transition: all 0.3s ease 0s;
	}
	.icon-menu::before { top: 0; }
	.icon-menu::after { bottom: 0; }
	.icon-menu span { top: calc(50% - 1px); }
	.menu__body {
		position: fixed;
		width: 100%;
		height: 100%;
		background-color: #FBFBFB;
		left: -100%;
		top: 0;
		padding: 100px 15px 0 15px;
		overflow: auto;
		transition: left 0.3s ease 0s;
		z-index: 1;
	}
	.menu__body::before {
		content: "";
		width: 100%;
		position: fixed;
		top: 0;
		left: -100%;
		height: 80px;
		background-color: #FBFBFB;
		z-index: 99999;
	}
	.menu__list {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.menu__link { font-size: 32px; }
	.header__container { min-height: 90px; }
	.menu-open .icon-menu span { width: 0; }
	.menu-open .icon-menu::before {
		top: calc(50% - 1px);
		transform: rotate(-45deg);
	}
	.menu-open .icon-menu::after {
		bottom: calc(50% - 1px);
		transform: rotate(45deg);
	}
	.menu-open { overflow: hidden; }
}

@media (min-width: 1150px) {
	.menu__sub-list {
		transform: translate(0px, 10%);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: all 0.3s ease 0s;
	}
}

body._pc .menu__list > li:hover .menu__sub-list {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
	pointer-events: all;
}

.menu__arrow {
	display: none;
	position: relative;
	left: 160px;
	bottom: 20px;
}

body._touch .menu__list > li {}
body._touch .menu__link { flex: 1 1 auto; }
body._touch .menu__arrow {
	display: block;
	margin: 0 0 0 10px;
	transition: transform 0.3s ease 0s;
	width: 10px;
	height: 10px;
	border-top: 2px solid #5F5C5C;
	border-right: 2px solid #5F5C5C;
	transform: rotate(135deg);
}

body._touch .menu__list > li._active .menu__sub-list {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
	pointer-events: all;
	min-width: 207px;
}

body._touch .menu__item_sub {
	position: relative;
	top: 5px;
	min-width: 207px;
}

body._touch .menu__list > li._active .menu__arrow {
	transform: rotate(-45deg);
	bottom: 16px;
}

body._touch .menu__list > li._active {
	top: 5px;
	position: relative;
}

.menu-open .menu__body,
.menu-open .menu__body::before {
	left: 0;
}

@media (max-width: 1150px) {
	.menu__sub-list {
		flex: 1 1 100%;
		display: none;
		position: relative;
		transition: all 0.3s ease 0s;
		margin-bottom: 10px;
	}
	body._touch .menu__item_sub { top: 10px; }
	.menu__list > li._active .menu__sub-list { display: block; }
	.menu__arrow {
		position: relative;
		left: 210px;
		bottom: 25px;
	}
}

@media (max-width: 560px) {
	.header__logo img { width: 100px; }
	.header__logo { width: 100px; }
	.footer__container { min-height: 80px; }
}

@media (max-width: 350px) {
	.menu__body { padding: 100px 0 0 0; }
	.icon-menu { margin-left: 15px; }
}

/* ---------------------------------------- */
/* --------------------Page-------------------- */
.page {}
.page__container {}

.page-title {
	font-family: Ortica;
	font-size: 20px;
	line-height: 1.20;
	margin-bottom: 43px;
}

.input__list {
	display: flex;
	column-gap: 22px;
	margin-bottom: 96px;
	flex-wrap: wrap;
	row-gap: 22px;
}

.input__item h3 { margin-bottom: 14px; }

.input-text-1 {
	width: 155px;
	height: 38px;
	box-shadow: 2px 4px 8px rgba(123, 163, 223, 0.25);
	border-radius: 8px;
	padding-left: 20px;
	font-size: 14px;
	line-height: 1.12;
	padding-right: 20px;
}

.input-text-5 {
	width: 265px;
	height: 38px;
	box-shadow: 2px 4px 8px rgba(123, 163, 223, 0.25);
	border-radius: 8px;
	padding-left: 20px;
	font-size: 14px;
	line-height: 1.12;
	padding-right: 20px;
}

.input__item { position: relative; }
.input__item img {
	position: absolute;
	top: 45px;
	right: 15px;
	pointer-events: none;
}

.input-text-2 {
	width: 232px;
	height: 45px;
	box-shadow: 2px 4px 8px rgba(123, 163, 223, 0.25);
	border-radius: 8px;
	padding-left: 20px;
	padding-right: 15px;
	font-size: 14px;
	line-height: 1.12;
	color: #8F8E96;
}

.input-text-3 {
	width: 760px;
	height: 45px;
	box-shadow: 2px 4px 8px rgba(123, 163, 223, 0.25);
	border-radius: 8px;
	padding-left: 20px;
	padding-right: 15px;
	font-size: 14px;
	line-height: 1.12;
	color: #8F8E96;
}

@media (max-width: 400px) {
	.input-text-1, .select-1 {
		width: 290px;
	}
}

.input-border {
	padding-bottom: 50px;
	border-bottom: #4BA6D9 solid 1px;
}

.input-border__section {
	padding-bottom: 80px;
	margin-bottom: 80px;
	border-bottom: #e5e5e5 solid 2px;
}

.section-delimiter {
	padding-top: 40px;
	margin-bottom: 70px;
}

.section-delimiter__border {
	height: 2px;
	background: #4BA6D9;
	width: 100%;
	position: relative;
}

.section-delimiter__text {
	position: absolute;
	background-color: #fff;
	top: -12px;
	height: 24px;
	line-height: 24px;
	width: 140px;
	text-align: center;
	left: 50%;
	margin-left: -70px;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: .04em;
	color: #4BA6D9;
}

.input__list-2 {
	margin-bottom: 50px;
	display: flex;
    column-gap: 22px;
    flex-wrap: wrap;
    row-gap: 22px;
}

.input__list-3 {
	margin-bottom: 50px;
	display: flex;
    column-gap: 22px;
    flex-wrap: wrap;
    row-gap: 22px;
	flex-direction: column;
}

.radiobuttons label {
	cursor: pointer;
}

.wrapper-input__list {
	display: flex;
	/* gap: 32px; */
	flex-wrap: wrap;
	padding-top: 34px;
}

.btn {
	text-align: center;
	padding-top: 14px;
	padding-left: 10px;
}

.btn__item {
	display: inline-flex;
	text-align: center;
	cursor: pointer;
}

.btn__item img {
	position: static;
}

.btn__otstup {
	padding-top: 34px;
}

.input-block {
	display: flex;
	gap: 34px;
	row-gap: 34px;
	flex-wrap: wrap;
}

.radiobuttons__item:first-child {
	margin-bottom: 32px;
}

.radiobuttons {
	padding-top: 8px;
	width: auto;
}

.input-seven-1, .input-seven-2, .input-seven-3 {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.input-seven-2 {
	margin-bottom: 30px;
}

.cards {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 77.25px;
}

.inf-tooltip {
	position: relative;
	display: inline-block;
}

.inf-img {
	position: static!important;
	top: auto!important;
	right: auto!important;
	margin-left: 5px;
	width: 14px;
	height: 14px;
	pointer-events: auto!important;  	


}

.inf-tooltip .inf-text {
	visibility: hidden;
	width: 200px;
	background-color: #ccc;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;

	/* Position the tooltip text */
	position: absolute;
	z-index: 1;
	top: 125%;
	left: 50%;
	margin-left: -100px;
	z-index: 9999;

	/* Fade in tooltip */
	opacity: 0;
	transition: opacity 0.3s;	
}

.inf-tooltip .inf-text img {
	position: static!important;
	width: 200px;
}

.cont_select_center>.helper {
	font-size: 14px;
}  

.table-bordered {
	border: 1px solid #777;
}

.table-bordered td, .table-bordered th {
	border: 1px solid #777;
	padding: 6px 4px;
}

.base-size {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.base-size__select {
	margin-right: 30px;
}

.input {
	font-size: 14px;
    padding: 4px 4px;
	border: 1px solid #777;
	border-radius: 2px;
	width: 100%;
}

.autocomplete {
	position: absolute;
	top: 70px;
	z-index: 999;
	width: 100%;	
	display: none;
}
.autocomplete>ul {
	list-style-type: none;
	background: #fff;
	padding: 0;
	margin: 0;
	border-radius: 0px 0px 8px 8px;
    box-shadow: 2px 4px 8px rgba(123, 163, 223, 0.25);
    transition: all 375ms ease-in-out;
    font-size: 16px;
    line-height: 1.12;
    color: #8F8E96;
    max-height: 500px;
}
.autocomplete>ul li {
	border-bottom: 1px solid #e0e0e0;
    padding: 10px 2%;
    margin: 0px;
    transition: all 275ms ease-in-out;
    display: block;
    cursor: pointer;
    min-height: 38px;
    padding-left: 20px;
}
.autocomplete>ul li:hover {
	background-color: #eee;
}

.display-block {
	display: block;
}

.margin-bottom-10 {
	margin-bottom: 10px;
}

.text-center {
	text-align: center;
}

#fit_types {
	margin-top: 30px;
}

.add-monogram {
	display: flex;
	align-items: center;
}

.add-monogram>p {
	margin-top: 28px;
}

.add-monogram span {
	cursor: pointer;
}

.delete-monogram {
	display: flex;
	align-items: center;
}

.delete-monogram>p {
	margin-top: 28px;
}

.delete-monogram span {
	cursor: pointer;
}

.submit-button {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 30px;
}

form input[readonly] {
	background-color: #f5f5f5;
}

.btn__item {
	display: inline-block;
	background-color: #3360c2;
	border-radius: 6px;
	font-size: 15px;
	color: #fff;
	padding: 10px 20px;
  	margin-top: 15px;
}
.btn__item-text {
  font-size: 16px;
  cursor: pointer;
  margin-left: 10px;
}

.btn__item[disabled] {
	opacity: .5;
}

.select-3+.helper {
	width: 232px;
}

.select-2+.helper {
	width: 364px;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Show the tooltip text when you mouse over the tooltip container */
.inf-tooltip.hovered .inf-text {
	visibility: visible;
	opacity: 1;
}

.card {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.card__img img {
	width: 160px;
	height: 160px;
}

.card__title {
	margin-bottom: 24px;
}

.card__img {
	margin-bottom: 24px;
}

.card__input {
	margin-bottom: 30px;
}

#errors {
	display: none;
	margin-bottom: 20px;
	color: red;
}

#errors p {
	margin-bottom: 8px;
}

#errors ul {
	list-style-type: disc;
}

#errors ul li {
	list-style-type: disc;	
	margin-left: 40px;
}

@media (max-width: 360px) {
	.card__img img {
		width: 240px;
		height: 240px;
	}
}

.input-textarea {
	width: 100%;
	border-radius: 8px;
	box-shadow: 2px 4px 8px rgba(123, 163, 223, 0.25);
	padding: 30px;
}

.otstup {
	padding-top: 50px;
}

@media (max-width: 767px) {
	.cards {
		display: block;
	}

	.page-title {
		text-align: center;
	}

	[class*="page__"] {
		display: block;
	}
}

.popup__block p {
	padding-top: 45px;
	cursor: pointer;
	text-decoration: underline;
}

/* ---------Popup----------- */
.popup {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0, 0.8);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease 0s;
}

.popup__body {
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 10px;
}

.popup__content {
	background-color: #ffffff;
	color: #5F5C5C;
	max-width: 800px;
	padding: 30px;
	position: relative;
}

.popup__close {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 20px;
 	height: 20px;
  	background-color: #5F5C5C;
  	clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
	cursor: pointer;
}

.popup__text {
	font-size: 24px;
}

.popup__active {
	opacity: 1;
	visibility: visible;
}

.lock {
	overflow: hidden;
}

@media (max-width: 1086px) {
	.popup__block p {
		padding-top: 0px;
	}
}

@media (max-width: 926px) {
	.popup__block p {
		padding-top: 55px;
	}
}

@media (max-width: 554px) {
	.popup__block p {
		padding-top: 0px;
	}
}

/* ---------------------------------------- */
/* --------------------Footer-------------------- */
.footer {
}

.footer__container {
	min-height: 150px;
	text-align: center;
	align-items: center;
	display: flex;
	font-size: 16px;
	justify-content: space-between;
	border-top: #4BA6D9 solid 1px;
	column-gap: 30px;
}

.footer__container a {
	color: #8F8E96;
	line-height: 1.10;
}

@media (max-width: 560px) {
	.footer__container {
		min-height: 100px;
	}

	.footer__container img {
		width: 100px;
	}
}

.block-2 {
	display: none;
	padding-top: 34px;
}

.block-2:first-child {
	padding-top: 0;
}

.active {
	display: flex;
}

.block-3 {
	/* display: flex; */
}

/* /// END DECORATION CSS /// */
.icon_select_mate {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 14px;
    height: 22px;
    transition: all 275ms;
}

select {
    padding-left: 20px;
}

.select_mate {
    overflow: none;
    position: relative;
    float: left;
    /* min-width: 300px; */
    min-height: 38px;
    background-color: #fff;
    box-shadow: 2px 4px 8px rgba(123, 163, 223, 0.25);
    border-radius: 8px;
    transition: all 375ms ease-in-out;
    /* padding-left: 20px; */
   /* Oculto el elemento select */
}

.select_mate select {
    position: absolute;
    overflow: hidden;
    height: 0px;
    opacity: 0;
    z-index: -1;
}

.select_mate select>option {
	padding-left: 0;
}

.selecionado_opcion p {
    padding-left: 20px;
}

.select_mate[disabled] {
	background-color: #f5f5f5;
}

.select-item {
    padding-left: 0;
}

.cont_list_select_mate {
    position: relative;
    float: left;
    width: 100%;
}

.cont_select_int {
    position: absolute;
    left: 0px;
    top: -5px;
    z-index: 999;
    overflow: auto;
    height: 0px;
    width: 100%;
    background-color: #fff;
    padding: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    border-radius: 0px 0px 8px 8px;
    box-shadow: 2px 4px 8px rgba(123, 163, 223, 0.25);
    transition: all 375ms ease-in-out;
    font-size: 16px;
	line-height: 1.12;
	color: #8F8E96;
	max-height: 500px;
}

.cont_select_int li {
    position: relative;
    float: left;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    list-style-type: none;
    padding: 10px 2%;
    margin: 0px;
    transition: all 275ms ease-in-out;
    display: block;
    cursor: pointer;
	min-height: 38px;
    padding-left: 20px;
}

.cont_select_int li:last-child {
    border-radius: 3px;
    border-bottom: 0px;
}

.cont_select_int li:hover {
    background-color: #eee;
}

.cont_select_int .active {
    background-color: #eee;
    padding-left: 20px;
}

.cont_select_int>.search {
	margin: 5px 20px;
}

.cont_select_center {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

/* etiqueta <p> con la opcion selecionada */
.selecionado_opcion {
    padding-top: 13px;
    width: 96%;
    height: 38px;
    display: block;
    margin: 0px;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 10px;
    font-size: 14px;
}

.select-1 {
    width: 760px;
}

@media (max-width: 790px) {
	.select-1 {
		width: 625px;
	}
}

@media (max-width: 657px) {
	.select-1 {
		width: 495px;
	}
}

@media (max-width: 520px) {
	.select-1 {
		width: 364px;
	}
}

@media (max-width: 400px) {
	.select-1 {
		width: 290px;
	}

    .select-2 {
        width: 290px;
    }
}

.select-2 {
    width: 364px;
}

.select-3 {
    width: 155px;
}

.select-4 {
    width: 100px;
}

@media (max-width: 400px) {
    .select-2 {
        width: 290px;
    }
}


.orders-table {
	width: 100%;
	overflow-x: auto;
}
.orders-table table {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 16px rgba(123,163,223,0.10);
	font-size: 13px;
}
.orders-table th, .orders-table td {
	padding: 16px 12px;
	text-align: left;
}
.orders-table th {
	background: #f5f8fa;
	color: #4b4b4b;
	font-weight: 600;
	border-bottom: 2px solid #e5e5e5;
}
.orders-table tbody tr {
	transition: background 0.2s;
}
.orders-table tbody tr:nth-child(even) {
	background: #f9fbfd;
}
.orders-table tbody tr:hover {
	background: #eaf4fb;
}
.orders-table td {
	border-bottom: 1px solid #e5e5e5;
	vertical-align: top;
}
.orders-table tr:last-child td {
	border-bottom: none;
}
.orders-table th:first-child, .orders-table td:first-child {
	border-top-left-radius: 12px;
}
.orders-table th:last-child, .orders-table td:last-child {
	border-top-right-radius: 12px;
}
@media (max-width: 900px) {
	.orders-table tr {
		margin-bottom: 16px;
		box-shadow: 0 1px 6px rgba(123,163,223,0.10);
		border-radius: 8px;
		background: #fff;
	}
	.orders-table td {
		padding: 12px;
		border: none;
		position: relative;
	}
	.orders-table td:before {
		content: attr(data-label);
		font-weight: bold;
		color: #4BA6D9;
		display: block;
		margin-bottom: 6px;
	}
}

.action-badge {
	display: inline-block;
	background: #ededed;
	color: #333;
	border-radius: 6px;
	padding: 4px 12px;
	margin: 2px 0;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
	transition: background 0.2s;
}
.action-badge:hover {
	background: #d5d5d5;
	color: #222;
}
/* Save as CSV button */
.csv-btn {
	display: inline-block;
	background: #4BA6D9;
	color: #fff !important;
	font-size: 13px;
	font-weight: 600;
	border-radius: 8px;
	padding: 6px 18px;
	margin-top: 8px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(123,163,223,0.10);
	transition: background 0.2s;
}
.csv-btn:hover {
	background: #357bb7;
}
/* Pagination styles */
.pagination {
	margin: 32px 0 0 0;
	text-align: center;
}
.pagination .paging,
.pagination .paging_selected {
	display: inline-block;
	min-width: 38px;
	padding: 8px 14px;
	margin: 0 4px;
	border-radius: 6px;
	background: #ededed;
	color: #333;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: background 0.2s;
}
.pagination .paging:hover {
	background: #d5d5d5;
}
.pagination .paging_selected {
	background: #4BA6D9;
	color: #fff;
	cursor: default;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(123,163,223,0.10);
}

/* ---------Nav Grid (myaccount)----------- */
.nav-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}
.nav-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 32px 20px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 2px 4px 8px rgba(123,163,223,0.25);
	text-decoration: none;
	color: #5F5C5C;
	transition: transform 0.2s, box-shadow 0.2s;
}
.nav-card:hover {
	transform: translateY(-4px);
	box-shadow: 2px 8px 20px rgba(123,163,223,0.35);
}
.nav-card__icon {
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav-card__icon svg {
	width: 48px;
	height: 48px;
}
.nav-card__title {
	font-size: 18px;
	font-family: Forum;
	line-height: 1.2;
	text-align: center;
	color: #5F5C5C;
}
@media (max-width: 900px) {
	.nav-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 520px) {
	.nav-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.nav-card {
		padding: 24px 16px;
	}
	.nav-card__icon svg {
		width: 40px;
		height: 40px;
	}
	.nav-card__title {
		font-size: 16px;
	}
}


