@import url(../static/fonts/actay/stylesheet.css);
@import url(../static/fonts/nunito/stylesheet.css);

:root {
	--text-color: #42404c;
	--accent-color: #f1a502;
	--sub-color: #e47662;
	--thred-color: #fef0dd;
	--bg-color: #fffaf4;
	--white-color: #ffffff;
	--gold-color: #c69120;
	--main-gradient: linear-gradient(94.92deg, #f1a502 9.75%, #e47662 95.9%);
	--main-shadow: 4px 4px 7px rgba(241, 165, 2, 0.15);
	--notification-anim-color-start: #f1a502;
	--notification-anim-color-end: #f1a50200;
}

body {
	margin: 0;
	padding: 0;
}

.header__mobile {
	display: none;
}

.header {
	position: absolute;
	width: 100%;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	padding-top: 30px;
	align-items: center;
}

.header__logo {
	display: flex;
	min-width: 202px;
	height: min-content;
}

.nav {
	display: flex;
	gap: 56px;
	/* margin-right: auto; */
}

.nav__link {
	position: relative;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	cursor: pointer;
	color: var(--text-color);
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.nav__link::after {
	content: '';
	position: absolute;
	width: 0%;
	height: 1px;
	left: 0;
	bottom: 0;
	background-color: var(--text-color);
	transition: 0.2s ease-in-out;
}

.nav__link::before {
	content: '';
	position: absolute;
	width: 0%;
	height: 1px;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	transition: 0.15s ease-in;
	z-index: 2;
}

.nav__link:hover::after {
	width: 100%;
}

.nav__link:active::before {
	width: 100%;
}

/* .nav__link:hover{
    border-bottom: 1px solid var(--text-color)
} */
.header__buttons {
	display: flex;
	gap: 30px;
}

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

.block {
	min-height: 900px;
}

.block__inner {
	position: relative;
	width: 1170px;
}

.background {
	background: #fffaf4;
}

.grid__inner {
	/* display: flex; */
	height: 800px;
	display: grid;
	grid: 1fr / 1fr 800px;
}

.grid__content {
	margin-top: 180px;
	max-width: 538px;
	width: 538px;
}

.main__background {
	/* overflow: hidden; */
}

.main__wrapper {
	overflow: hidden;
}

.easy__wrapper {
	overflow: hidden;
}

.main__background img {
	/* margin-top: -55px; */
	/* height: 800px; */
	/* object-fit: none; */
	object-position: 0 -184px;
}

.title_actay {
	font-family: 'Actay Wide';
	font-style: normal;
	font-weight: 700;
	font-size: 52px;
	line-height: 66px;
	text-transform: uppercase;
	color: var(--text-color);
	margin: 0;
}

.title_nunito {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 700;
	font-size: 52px;
	line-height: 71px;
	text-transform: capitalize;
}

.main__subtitle {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 700;
	font-size: 22px;
	line-height: 30px;
	color: var(--accent-color);
}

.main_description {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: var(--text-color);
	max-width: 80%;
}

.buttons_wrapper {
	display: flex;
	align-items: center;
	gap: 30px;
}

.button_fill {
	background: var(--main-gradient);
	background-size: 100% 150%;
	box-shadow: var(--main-shadow);
	border-radius: 20px;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: var(--white-color);
	padding: 14px 33px;
	border: none;
	cursor: pointer;
	outline: none;
	transition: background-size 0.2s ease-in, filter 0.1s ease, box-shadow 0.2s ease-in;
}

.button_fill:hover {
	background-size: 200% 150%;
	box-shadow: 3px 2px 16px rgb(44 33 10 / 34%);
}

.button_fill:active {
	filter: brightness(0.8);
}

.button_stroke {
	padding: 14px 43px;
	border: 1px solid var(--accent-color);
	border-radius: 20px;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: var(--accent-color);
	background: transparent;
	cursor: pointer;
	outline: none;
	transition: background-size 0.2s ease-in, filter 0.1s ease, box-shadow 0.2s ease-in;
}

.button_stroke:hover {
	box-shadow: 3px 2px 16px rgb(44 33 10 / 34%);
}

.info {
	height: 644px;
	min-height: unset;
}

.info__inner {
	display: grid;
	grid: 1fr 1fr / 1fr 1fr;
	grid-template-areas:
		'DIAGRAM INFO'
		'DIAGRAM FENIC';
	padding-top: 100px;
	column-gap: 32px;
}

.info__background {
	grid-area: DIAGRAM;
}

.info__content {
	grid-area: INFO;
}

.info__image {
	grid-area: FENIC;
	display: flex;
	justify-content: flex-end;
}

.title {
	font-family: 'Actay Wide';
	font-style: normal;
	font-weight: 700;
	font-size: 25px;
	line-height: 32px;
	text-transform: uppercase;
	color: var(--text-color);
	margin: 0;
	padding: 0;
}

.description {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: var(--text-color);
}

.cards {
	min-height: 650px;
}

.cards__inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding-top: 100px;
}

.decor_image {
	position: absolute;
	left: 0;
	bottom: -187px;
}

.decor_image img {
	width: 299px;
	height: 323px;
}

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 30px;
	width: 370px;
	height: 307px;

	background: var(--white-color);
	border: 1px solid #f0f0f0;
	box-shadow: 0px 5px 15px #42404c12;
	border-radius: 30px;
}

.card__icon_wrapper {
}

.card__icon {
	margin-bottom: 29px;
}

.card__title {
	margin-bottom: 15px;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	text-transform: uppercase;
	color: var(--text-color);
}

.card__description {
	margin-bottom: 15px;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 22px;
	text-align: center;
	color: var(--text-color);
	padding: 0 15px;
}

.list {
	margin: 0;
	padding: 0;
}

.list_item {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 22px;
	color: var(--text-color);
	margin-bottom: 4px;
	list-style-position: inside;
}

.list_item::marker {
	color: var(--sub-color);
}

.decor_elem {
	position: absolute;
	width: 77px;
	height: 83px;
	bottom: -37px;
	left: -17px;
	background: var(--sub-color);
	border-radius: 20px 20px 15px 0px;
	z-index: -1;
}

.easy {
	min-height: 650px;
}

.flex__content {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 90px;
}

/* .table__wrapper {
	box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.15);
	border-radius: 20px;
	background-color: #fff;
	border: 1px solid #000;
	display: grid;
	width: 1168px;
}
.row {
	display: grid;
	grid: 1fr / 1fr 1fr 1fr 1fr;
}
.table_item__header {
	display: grid;
}
.table_item {
	display: grid;
} */
.table__inner {
	padding-top: 100px;
}

.table_title {
	max-width: 570px;
	margin-bottom: 39px;
}

.table__wrapper {
	display: table;
	border-collapse: collapse;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	background-color: #fff;
	border: 1px solid #ccc;
	width: 100%;
	box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.15);
}

.row {
	display: table-row;
}

.table_item,
.table_item__header {
	display: table-cell;
	padding: 9px 30px;
	text-align: left;
	vertical-align: middle;
	border: 1px solid #ccc;

	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;

	color: #000000;
}

.table_item__header {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 25px;
	color: var(--sub-color);
}

.table_item_title {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 25px;
	width: 286px;
	padding: 9px 12px;

	color: var(--accent-color);
}

.row:first-child .table_item__header:first-child {
	border-top-left-radius: 8px;
}

.row:first-child .table_item__header:last-child {
	border-top-right-radius: 8px;
}

.row:last-child .table_item:first-child {
	border-bottom-left-radius: 8px;
}

.row:last-child .table_item:last-child {
	border-bottom-right-radius: 8px;
}

.table__buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}

.modal_switch_wrapper {
	position: absolute;
	top: 20px;
	left: 20px;
}

.switch {
	display: flex;
	/* gap: 20px; */
}

.switch_option {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	padding: 8px 17px;
	border-radius: 14px;
	cursor: pointer;
}

.switch_option__active {
	background: #e47662;
	color: #fff;
}

.modal_layout {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: #00000050;
	z-index: 4;
}

.modal {
	/* justify-content: center; */
	position: relative;
	flex-direction: column;
	align-items: center;
	background-color: var(--thred-color);
	max-width: 430px;
	width: 430px;
	/* height: 479px; */
	border-radius: 40px;
	padding: 50px 30px 30px 50px;
	z-index: 3;
}

.modal__close_button {
	display: none;
}

.modal_layout {
	display: none;
}

.modal {
	display: none;
}

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

.modal__title {
	margin-top: 30px;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	text-transform: uppercase;
	color: var(--text-color);
}

.modal__desctiption {
	margin-top: 15px;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	color: var(--text-color);
}

.modal__form_wrapper {
	display: flex;
	flex-direction: column;
	/* gap: 15px; */
	width: 100%;
	margin-top: 30px;
}

.logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	width: 100%;
}

.input_text {
	border: 1px solid var(--text-color);
	border-radius: 20px;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	padding: 9px 17px;
	color: var(--text-color);
	background-color: transparent;
	outline: none;
	margin-bottom: 15px;
}

.input_text::placeholder {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
}

.modal .get_call_button {
	padding: 9px 33px;
	margin: 15px 0;
}

.checkbox_rounded {
	width: 15px;
	height: 15px;
	background-color: transparent;
	border-radius: 50%;
	vertical-align: middle;
	border: 1px solid #000;
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	cursor: pointer;
}

.checkbox_rounded:checked {
	position: relative;
	background-color: gray;
	padding: 1px;
}

.checkbox_rounded:checked::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	display: block;
	border-radius: 50%;
	border: 2px solid var(--thred-color);
}

.label_text {
	display: flex;
	align-items: center;
	gap: 15px;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	color: var(--text-color);
	user-select: none;
}

.modal__form_wrapper_auth {
	margin-top: 50px;
}

.label_text_auth {
	margin: 9px 0;
}

.link {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: var(--text-color);
	text-align: center;
	text-underline-offset: px;
}

.modal_link {
	margin-top: 15px;
}

.form__error_wrapper {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	color: var(--sub-color);
	margin-bottom: 10px;
	min-height: 23px;
}

.notification {
	display: none;
	position: fixed;
	justify-content: center;
	align-items: center;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 9999;
	background-color: #00000050;
	cursor: pointer;
}

.notification__container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	height: 100px;
	background: yellow;
	border-radius: 15px;
}

.notification__container[data-status='IDLE']::after {
	content: none;
	/* Скрыть псевдо-элемент, если статус IDLE */
}

.notification__container::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	/* box-shadow: 4px 4px 7px rgb(0 0 0 / 30%); */
}

.notification__container[data-status='ERROR'] {
	background: var(--sub-color);
	--notification-anim-color-start: #e47662;
	--notification-anim-color-end: #e4766200;
	animation: notification_start 0.5s cubic-bezier(0.04, 0.98, 1, 0.55);
}

.notification__container[data-status='SUCCESS'] {
	background: var(--accent-color);
	--notification-anim-color-start: #f1a502;
	--notification-anim-color-end: #f1a50200;
	animation: notification_start 0.5s cubic-bezier(0.04, 0.98, 1, 0.55);
}

.notification__container[data-status='IDLE'] {
	display: none;
	animation: notification_start 0.5s cubic-bezier(0.04, 0.98, 1, 0.55);
}

.notification__container[data-status='IDLE']::after {
	box-shadow: none !important;
}

.notification__container[data-status='PENDING'] {
	border: 4px solid;
	border-color: var(--accent-color) var(--accent-color) var(--accent-color) transparent;
	background: transparent;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: loader 1.5s linear infinite;
}

@keyframes notification_start {
	from {
		box-shadow: 0px 0px 0px 0px var(--notification-anim-color-start);
	}

	to {
		box-shadow: 0px 0px 0px 17px var(--notification-anim-color-end);
	}
}

@keyframes loader {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.notification__text {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: var(--text-color);
	text-align: center;
}

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

.footer__link {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: #d8d8d8;
}

.prices__wrapper {
	min-height: calc(100vh + 500px);
}

.prices__grid_inner {
	display: unset;
}

.prices {
	/* background-color: red; */
	width: 100%;
	/* display: flex; */
	/* gap: 15px; */
	padding-top: 100px;
}

.prices__cards {
	width: 100%;
	max-width: 1200px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px 15px;
	/* padding-top: 100px; */
}

.prices__title {
	font-family: 'Actay';
	font-style: normal;
	font-weight: 700;
	font-size: 52px;
	margin-bottom: 20px;
}

.prices__subtitle {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	width: 50%;
	max-width: 395px;
	margin-bottom: 50px;
	color: #42404c;
}

.package_card {
	flex-shrink: 1;
	/* width: 200px; */
	max-width: 203px;
	width: 223px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: space-around;
	background: #fff;
	transition: all 0.3s ease;
	padding: 20px;
	color: rgba(0, 0, 0, 0.85);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
	position: relative;
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	gap: 3px;
	/* color: #d8d8d8; */
}

.package_card:hover {
	border-color: rgba(241, 165, 2, 0.5);
	box-shadow: 0 4px 12px rgba(241, 165, 2, 0.12);
	transform: translateY(-2px);
}

.package_card__title {
	color: #c6c6c6;
	font-size: 15px;
}

.package_card__minutes {
	text-transform: uppercase;
	color: rgb(241, 165, 2);
	margin: 0;
	font-size: 23px;
}

.package_card__price {
	color: #42404c;
	text-align: start;
}

.package_card__price-span {
	font-size: 24px;
}

.package_card__icon {
	width: 32px;
	height: 32px;
	background-color: #fef0dd;
	border-radius: 0px 10px 0px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.package_card__price-block {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 15px;
	color: #42404c;
}

.package_card__text {
	max-width: 140px;
	font-size: 15px;
	margin: 0;
	text-align: start;
}

/* .walletBlock__title {
	font-size: 18px;
	font-weight: 600;
	color: #000;
}

.walletBlock__value {
	font-size: 24px;
	font-weight: 700;
	color: rgb(241, 165, 2);
} */

.active {
	font-weight: 700;
}

.footer {
	background-color: var(--gold-color);
	height: 82px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 50px 50px;
}

.footer_container {
	display: flex;
	gap: 40px;
	margin-left: auto;
}

.footer__menu {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.footer__menu_title {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	line-height: 22px;
	margin-bottom: 5px;
	color: #ebebea;
}

.footer__menu_link {
	/* text-decoration: none; */
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: #ebebea;
}

.footer__menu_company {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: #ebebea;
}

.footer__menu_mail {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	color: #fef0dd;
}

.copyright {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	color: #fef0dd;
}

/* ПАРТНЁРКА */

.partner {
	max-width: 100%;
	max-height: 100vh;
	height: 100vh;
	/* margin: 0 auto; */
	/* padding: 20px; */
	/* overflow: hidden; */
	font-family: 'Nunito';
}

.partner__card {
	position: relative;
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	min-height: 100vh;
}

.partner__text_content {
	box-sizing: border-box;
	position: relative;
	z-index: 2;
	width: 70%;
	padding: 40px;
	height: 100vh;
	background: linear-gradient(90deg, #fff 70%, rgba(255, 255, 255, 0.8) 90%, transparent);
}

.partner__background_image {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: auto;
	max-width: 60%;
	object-fit: cover;
	z-index: 1;
}

.partner__title {
	font-size: 28px;
	font-weight: bold;
	color: rgb(241, 165, 2);
	margin-bottom: 20px;
}

.partner__intro {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.partner__intro > strong {
	font-weight: bold;
}

.partner__subtitle {
	font-size: 22px;
	font-weight: bold;
	margin: 40px 0 20px;
}

.partner__list {
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
}

.partner__list_item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.partner__list_item_number {
	font-weight: bold;
	margin-right: 12px;
	color: #1976d2;
}

.partner__list_item_content {
	flex: 1;
	line-height: 1.5;
	font-size: 16px;
}

.partner__button_container {
	display: flex;
	justify-content: flex-start;
	margin-top: 40px;
	gap: 15px;
}

.partner__button {
	background-color: rgb(241, 165, 2);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 14px 36px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.partner__button :hover {
	background-color: rgb(220, 150, 0);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(241, 165, 2, 0.4);
}

.partner__button :active {
	transform: translateY(0);
}

.partner__button ::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
	z-index: -1;
}

.partner__button :hover::before {
	transform: translateX(100%);
}

.easy-block,
.easy-block__wrapper,
.easy-block__inner,
.easy-block__image-container,
.easy-block__content {
	all: initial;
	box-sizing: border-box;
	display: block;
}

.easy-block {
	width: 100%;
	padding-bottom: 40px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.easy-block__wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.easy-block__inner {
	display: flex;
	align-items: center;
	gap: 100px;
}

/* Стили для изображения */
.easy-block__image-container {
	width: 450px;
	height: 450px;
	flex-shrink: 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.easy-block__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.easy-block__image:hover {
	transform: scale(1.02);
}

/* Стили для текста */
.easy-block__content {
	flex: 1;
}

.easy-block__content-present {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 30px;
}

.easy-block__accent {
	color: #f1a502;
	font-weight: 600;
}

.easy-block__accent-light {
	color: #f1a502;
}

@media (max-width: 768px) {
	.partner__text_content {
		width: 100%;
		padding: 20px;
		background: rgba(255, 255, 255, 0.9);
	}

	.partner__background_image {
		width: 100%;
		max-width: 100%;
		opacity: 0.3;
	}

	.easy-block__inner {
		flex-direction: column;
		gap: 25px;
	}

	.easy-block__image-container {
		width: 100%;
		max-width: 450px;
		height: auto;
		aspect-ratio: 1/1;
	}

	.easy-block__content {
		text-align: center;
	}

	.easy-block__content-present {
		align-items: center;
	}
}

@media (max-width: 1280px) {
	.header {
		left: 20px;
		right: 20px;
		width: unset;
	}

	.block__wrapper {
		display: unset;
	}

	.block__inner {
		width: unset;
		padding-left: 20px;
		padding-right: 20px;
	}

	.main__wrapper {
		padding-left: 20px;
	}

	.grid__inner {
	}

	.grid__content {
		margin-top: 110px;
		max-width: 538px;
		width: 538px;
	}

	.main__background {
		width: min-content;
		height: 50vw;
	}

	.main__background img {
		margin-top: unset;
		height: 100%;
		object-fit: unset;
		object-position: unset;
	}

	.info__inner {
		box-sizing: border-box;
		width: 100%;
		grid: auto auto / 0.2fr 1fr;
		grid-template-areas:
			'DIAGRAM INFO'
			'DIAGRAM FENIC';
		align-items: center;
	}

	.info__background {
		min-width: 250px;
		width: 40vw;
	}

	.info__background img {
		width: 100%;
	}

	.cards__inner {
		flex-direction: column;
	}

	.card:first-child {
		margin-bottom: 90px;
	}

	.decor_image {
		bottom: -146px;
	}

	.easy__background {
		width: min-content;
		height: 30vw;
		margin-top: 108px;
		margin-left: -55px;
	}

	.easy__background img {
		height: 100%;
	}

	.prices__title,
	.prices__subtitle {
		margin-left: 30px;
	}

	.easy-block__image-container {
		width: 400px;
		height: 400px;
	}

	.easy-block__inner {
		gap: 40px;
	}
}

@media (max-width: 896px) {
	.header {
		display: none;
	}

	.grid__content {
		margin-top: 30px;
		width: unset;
		max-width: unset;
	}

	.title_actay {
		font-family: 'Actay Wide';
		font-style: normal;
		font-weight: 700;
		font-size: 26px;
		line-height: 33px;
	}

	.title_nunito {
		font-family: 'Nunito';
		font-style: normal;
		font-weight: 700;
		font-size: 26px;
		line-height: 35px;
	}

	.main__subtitle {
		font-family: 'Nunito';
		font-style: normal;
		font-weight: 700;
		font-size: 15px;
		line-height: 20px;
	}

	.main_description {
		font-family: 'Nunito';
		font-style: normal;
		font-weight: 400;
		font-size: 14px;
		line-height: 19px;
	}

	.grid__inner {
		grid: 1fr 1fr / 1fr;
		justify-items: center;
	}

	.info__inner {
		grid: auto auto / 1fr;
		grid-template-areas:
			'DIAGRAM DIAGRAM'
			'INFO INFO'
			'FENIC FENIC';
		justify-items: center;
		row-gap: 20px;
		padding-top: 50px;
	}

	.buttons_wrapper {
		align-items: stretch;
		gap: 15px;
		flex-direction: column;
	}

	.button_fill,
	.button_stroke {
		padding: 9px;
		font-size: 14px;
	}

	.title {
		font-family: 'Actay Wide';
		font-style: normal;
		font-weight: 700;
		font-size: 15px;
		line-height: 19px;
		text-transform: uppercase;
	}

	.description {
		font-family: 'Nunito';
		font-style: normal;
		font-weight: 400;
		font-size: 14px;
		line-height: 19px;
	}

	.easy__background {
		margin-top: unset;
		height: 44vw;
	}

	.table__inner {
		padding-bottom: 50px;
	}

	.main__background {
		width: unset;
		height: 50vw;
		min-width: 250px;
		min-height: 431px;
		margin-top: -120px;
		margin-right: -130px;
		z-index: -1;
	}

	.info__image_wrapper {
		width: 100%;
		max-width: 100%;
	}

	.info__image_wrapper img {
		width: 100%;
	}

	.info {
		height: unset;
		padding-bottom: 70px;
	}

	.table__container {
		width: 100%;
		overflow-x: auto;
		padding-bottom: 20px;
	}

	.table__container::-webkit-scrollbar {
		width: 5px;
		height: 2px;
		background-color: #f1a70a20;
		border-radius: 100px;
	}

	.table__container::-webkit-scrollbar-track {
		background-color: #f1a70a20;
		border-radius: 100px;
	}

	.table__container::-webkit-scrollbar-thumb {
		background-color: var(--accent-color);
		border-radius: 100px;
		height: 5px;
	}

	.header__mobile {
		display: unset;
		width: 100%;
	}

	.header__mobile > .header__wrapper {
		padding: 0 20px;
	}

	.header {
		display: none;
	}

	.header__buttons_mobile {
		display: flex;
		align-items: center;
		gap: 22px;
	}

	.nav__mobile {
		display: none;
		flex-direction: column;
		gap: 5px;
		align-items: center;
		justify-content: center;
		background-color: var(--accent-color);
		height: 100px;
		z-index: 15;
	}

	.nav__mobile > .nav__link {
		font-family: 'Nunito';
		font-style: normal;
		font-weight: 700;
		font-size: 15px;
		line-height: 20px;
		color: var(--white-color);
	}

	.flex__content {
		margin-top: 140px;
	}

	.header__mobile_burger {
		cursor: pointer;
	}

	.footer {
		flex-direction: column-reverse;
		gap: 15px;
		height: auto;
	}

	.footer_container {
		margin: auto;
	}

	.copyright {
		text-align: start;
	}

	.easy-block__image-container {
		width: 300px;
		height: 300px;
	}

	.easy-block__inner {
		gap: 30px;
	}
}

@media (max-width: 480px) {
	.header__mobile > .header__wrapper {
		padding: 0 10px;
	}

	.block__inner {
		padding-left: 10px;
		padding-right: 10px;
	}

	.card {
		box-sizing: border-box;
		width: 100%;
		padding: 20px 10px;
		height: unset;
		min-height: 307px;
	}

	.decor_image img {
		width: 234px;
		height: auto;
	}

	.decor_elem {
		left: -6px;
	}

	.list_item {
		font-family: 'Nunito';
		font-style: normal;
		font-weight: 400;
		font-size: 12px;
		line-height: 19px;
		text-indent: -19px;
		margin-left: 17px;
	}

	.easy__background {
		height: unset;
		width: 100%;
		margin-left: unset;
	}

	.table__wrapper {
		width: max-content;
	}

	.easy__background img {
		width: 100%;
		height: auto;
	}

	.table_item_title {
		padding: unset;
		font-size: 12px;
	}

	.table_item,
	.table_item__header {
		padding: 5px 5px;
		font-size: 12px;
		line-height: 16px;
	}

	/* .table_item {
		width: 120px;
	} */
	.table_item_title {
		width: 171px;
	}

	.grid__inner {
		overflow: hidden;
	}

	.table_item:not(.table_item_title) {
		width: 120px;
	}

	.modal {
		/* display: flex; */
		/* justify-content: center;
		align-items: center; */
		width: 100dvw;
		height: 100dvh;
	}

	.logo {
		justify-content: space-between;
	}

	.modal__close_button {
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px solid #000;
		padding: 5px;
		height: 15px;
		width: 15px;
		border-radius: 50%;
		font-family: 'Nunito';
		line-height: 100%;
		user-select: none;
	}

	.footer_container {
		flex-direction: column;
	}
}

.about_company {
	padding-top: 150px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.about_company__title {
	font-family: 'Actay Wide';
	font-style: normal;
	font-weight: 700;
	font-size: 52px;
	line-height: 66px;
	text-transform: uppercase;
	color: var(--text-color);
	margin: 0 0 40px 0;
}

.about_content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 80px;
}

.about_text {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.6;
	color: var(--text-color);
	grid-column: -1 / 1;
}

.about_text strong {
	font-weight: 700;
	color: var(--accent-color);
}

.about_image {
	/* border-radius: 20px; */
	overflow: hidden;
	/* height: 200px; */
	/* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); */
}

.about_image img {
	width: 100%;
	height: auto;
	display: block;
}

.about_contacts {
	background: var(--bg-color);
	border-radius: 30px;
	padding: 50px;
	margin-bottom: 80px;
}

.about_contacts__title {
	font-family: 'Actay Wide';
	font-style: normal;
	font-weight: 700;
	font-size: 25px;
	line-height: 32px;
	text-transform: uppercase;
	color: var(--text-color);
	margin-bottom: 40px;
	text-align: center;
}

.contacts_grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}

.contact_card {
	background: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: flex-start;
	gap: 20px;
	transition: transform 0.3s ease;
}

.contact_card:hover {
	transform: translateY(-5px);
}

.contact_icon {
	width: 50px;
	height: 50px;
	background: var(--thred-color);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact_icon img {
	width: 24px;
	height: 24px;
}

.contact_info h3 {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	color: var(--text-color);
	margin: 0 0 8px 0;
}

.contact_info a {
	font-family: 'Nunito';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact_info a:hover {
	color: var(--sub-color);
}

.about_cta {
	text-align: center;
	padding: 60px 0;
}

.about_cta__title {
	font-family: 'Actay Wide';
	font-style: normal;
	font-weight: 700;
	font-size: 25px;
	line-height: 32px;
	text-transform: uppercase;
	color: var(--text-color);
	margin-bottom: 30px;
}
.about_cta__buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

@media (max-width: 1200px) {
	.about_content {
		padding-left: 50px;
		padding-right: 50px;
	}
}

/* Mobile styles */
@media (max-width: 768px) {
	.about_company__title {
		font-size: 36px;
		line-height: 46px;
		text-align: center;
	}

	.about_content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about_contacts {
		padding: 30px 20px;
	}

	.contacts_grid {
		grid-template-columns: 1fr;
	}

	.contact_card {
		padding: 20px;
	}

	.about_cta {
		padding: 40px 0;
	}
}

@media (max-width: 480px) {
	.about_company {
		padding-top: 120px;
	}

	.about_company__title {
		font-size: 28px;
		line-height: 36px;
	}

	.about_text {
		font-size: 16px;
	}
}
.policy_link {
	color: #000;
}
