html {
	scroll-behavior: smooth;
}

body {
	font-family: Poppins,sans-serif;
	background-color: #e0e0e0;
	color: #1e1e1e;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
}

a {
	text-decoration: none;
	color: inherit;
}

ul,li {
	list-style-type: none;
	padding: 0;
}

h1,h2,h3,h4,h5,h6,.span-title {
	color: #000;
	line-height: 1.5;
}

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

.content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	font-size: 1rem;
	line-height: 1.5;
	padding: 0 1rem;
}

@media (max-width: 568px) {
	.content-wrapper {
		padding: 0 .75rem;
	}
}

.block-wrapper,.content_wrap {
	background-color: #fafafa;
	border-radius: 1.5rem;
	padding: 0 1rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (max-width: 568px) {
	.block-wrapper,.content_wrap {
		padding: .5rem;
		border-radius: .5rem;
	}
}

.block h2.section-title {
	font-size: 1.75rem;
	line-height: 2em;
	font-weight: 700;
	position: relative;
	padding-bottom: 1rem;
	margin: 0;
}

.block h2.section-title:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #0288d1;
	height: 4px;
	width: 125px;
}

.block h3.section-title {
	font-weight: 700;
	font-size: 1.35rem;
	line-height: 1.625;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.wrapper>main {
	flex: 1;
}

.secondary-button {
	background-color: #f57c00;
	color: #fff;
	border-radius: 10px;
	padding: .5rem 1rem;
	font-weight: 600;
	line-height: 1.5;
	display: block;
}

.secondary-button:active,.secondary-button:hover {
	background-color: #e65100;
}

.tertiary-button {
	background-color: #7b1fa2;
	color: #fff;
	border-radius: 10px;
	padding: .5rem 1rem;
	font-weight: 600;
	line-height: 1.5;
}

.tertiary-button:active,.tertiary-button:hover {
	background-color: #4a148c;
}

.icon-button {
	height: 40px;
	width: 40px;
	background: #ffffff1a;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s;
}

.icon-button:hover {
	background: #fff3;
}

.icon-button__icon {
	aspect-ratio: 1;
	width: 1.1rem;
}

main.page {
	padding: 2rem 0 3.375rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.table-wrapper {
	overflow: auto;
	padding: 2px;
}

.table-wrapper--bordered th,.table-wrapper--bordered td,.table-wrapper--tr-border tr {
	border: 1px solid #BDBDBD;
}

.table-wrapper table {
	border-collapse: collapse;
	border-radius: 12px;
	border-style: hidden;
	box-shadow: 0 0 0 1px #bdbdbd;
	overflow: hidden;
	width: 100%;
}

.table-wrapper thead {
	background-color: #e0e0e0;
}

.table-wrapper td,.table-wrapper th {
	padding: 1rem 1.5rem;
}

.screenbox {
	margin: 0;
}

.screenbox picture {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.screenbox figcaption {
	font-size: .875rem;
	color: #bdbdbd;
	font-style: italic;
	font-weight: 500;
	text-align: center;
}

.screenbox img {
	max-width: 60%;
	border-radius: 10px;
	margin-bottom: 10px;
}

@media (max-width: 768px) {
	.screenbox img {
		max-width: 90%;
	}
}

@media (max-width: 375px) {
	.screenbox img {
		max-width: 100%;
	}
}

.secondary {
	color: #bdbdbd;
	font-size: .875rem;
}

.paper-secondary {
	color: #b3e5fc;
}

.article.block {
	padding: 1rem;
}

@media (max-width: 568px) {
	.article.block {
		padding: 1rem .5rem;
	}
}

.article .content-wrapper {
	border-radius: 16px;
	background-color: #fafafa;
}

@media (max-width: 992px) {
	.article .content-wrapper {
		padding: 1rem;
	}
}

@media (max-width: 568px) {
	.article .content-wrapper {
		padding: 1rem .75rem;
	}
}

.list {
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.list li {
	position: relative;
	padding-left: 1.25rem;
}

.list li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background-color: #0288d1;
	border-radius: 50%;
}

ol {
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .75rem;
	margin: 0;
	list-style: none;
	counter-reset: my-awesome-counter;
}

ol li {
	counter-increment: my-awesome-counter;
	margin: .25rem;
	display: flex;
	align-items: center;
}

ol li:before {
	content: counter(my-awesome-counter);
	background: #0288d1;
	width: 1.5rem;
	height: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	line-height: 2rem;
	color: #fff;
	text-align: center;
	margin-right: .5rem;
	aspect-ratio: 1;
}

details summary::-webkit-details-marker {
	display: none;
}

details>summary {
	list-style: none;
	text-align: start;
}

details>summary::marker,details>summary::-webkit-details-marker {
	display: none;
}

.table.features tr:nth-child(2n) {
	background-color: #e0e0e0;
}

p.section-title-paragraph {
	font-size: 1.75rem;
	line-height: 2em;
	font-weight: 700;
	position: relative;
	padding-bottom: 1rem;
	margin: 0;
}

.section-title-paragraph:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #0288d1;
	height: 4px;
	width: 125px;
}

*,*:after,*:before {
	box-sizing: border-box;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

main {
	display: block;
}

h1 {
	font-size: 2em;
	margin: 0 0 .67em;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace,monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b,strong {
	font-weight: bolder;
}

code,kbd,samp {
	font-family: monospace,monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

img {
	border-style: none;
}

button,input,optgroup,select,textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,input {
	overflow: visible;
}

button,select {
	text-transform: none;
}

[type=button],[type=reset],[type=submit],button {
	-webkit-appearance: button;
}

[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: .35em .75em .625em;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type=checkbox],[type=radio] {
	box-sizing: border-box;
	padding: 0;
}

[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button {
	height: auto;
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

ul,p,h3,h1 {
	margin: 0;
}

@font-face {
	font-family:Poppins;font-style:normal;font-weight:400;font-display:swap;src:url(pxiEyp8kv8JHgFVrJJnecmNE-CIpeJEZw.woff2) format("woff2");unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

@font-face {
	font-family:Poppins;font-style:normal;font-weight:400;font-display:swap;src:url(pxiEyp8kv8JHgFVrJJfecg-cpxAROuN.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
	font-family:Poppins;font-style:normal;font-weight:500;font-display:swap;src:url(pxiByp8kv8JHgFVrLGT9Z1JlFc-K-H4Q0z8D2.woff2) format("woff2");unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

@font-face {
	font-family:Poppins;font-style:normal;font-weight:500;font-display:swap;src:url(pxiByp8kv8JHgFVrLGT9Z1xlFQ-C8OXljZJ.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
	font-family:Poppins;font-style:normal;font-weight:600;font-display:swap;src:url(pxiByp8kv8JHgFVrLEj6Z1JlFc-K-Cn4C8475.woff2) format("woff2");unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

@font-face {
	font-family:Poppins;font-style:normal;font-weight:600;font-display:swap;src:url(pxiByp8kv8JHgFVrLEj6Z1xlFQ-zEkxB9Mr.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

@font-face {
	font-family:Poppins;font-style:normal;font-weight:700;font-display:swap;src:url(pxiByp8kv8JHgFVrLCz7Z1JlFc-K-DDaViAzG.woff2) format("woff2");unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

@font-face {
	font-family:Poppins;font-style:normal;font-weight:700;font-display:swap;src:url(pxiByp8kv8JHgFVrLCz7Z1xlFQ-Qrb0O0WB.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

.breadcrumbs__list {
	display: flex;
	flex-direction: row;
	gap: .5rem;
}

.breadcrumbs__item:not(:first-child):before {
	content: "/";
	display: inline-block;
	touch-action: none;
	margin-right: .2rem;
	color: inherit;
}

.breadcrumbs__item:last-child {
	color: #bdbdbd;
}

.breadcrumbs__link {
	line-height: 1.25;
	font-weight: 500;
}

.rating-stars {
	display: flex;
	flex-direction: row;
	gap: .25rem;
}

.rating-stars__star,.rating-stars__half,.rating-stars__empty {
	width: 20px;
	height: 20px;
	background-size: cover;
	background-repeat: no-repeat;
}

.rating-stars__star {
	background-image: url(star-full-Bbv8XLqn.svg);
}

.rating-stars__half {
	background-image: url(star-half-kVkH2Gfw.svg);
}

.rating-stars__empty {
	background-image: url(star-empty-De0bhzbi.svg);
}

.rating-stars__total {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: .875rem;
}

.author .author__wrapper {
	background-color: #e0e0e0;
	padding: 1.5rem;
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.author__header {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
}

@media (max-width: 768px) {
	.author__header {
		padding: 1rem;
	}
}

@media (max-width: 556px) {
	.author__header {
		padding: .5rem;
	}
}

.author__avatar {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 50%;
}

.author__name {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: .5rem;
	line-height: 1.5em;
	font-weight: 600;
	margin-bottom: .5em;
}

.author__name svg {
	width: 24px;
	height: 24px;
}

.author__body {
	line-height: 1.5em;
	font-weight: 500;
}

.author__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: .5rem;
}

@media (max-width: 768px) {
	.author__footer {
		flex-direction: column;
		align-items: start;
	}
}

.author__socials {
	display: flex;
	gap: .625rem;
}

.author__socials a {
	display: block;
}

.author__socials img {
	width: 32px;
	height: 32px;
	aspect-ratio: 1;
}

.author__link {
	text-decoration: underline;
	font-weight: 600;
	line-height: 1.5em;
}

.author .paper-secondary {
	color: #424242;
}

.pros-cons__lists {
	display: flex;
	flex-direction: row;
	gap: 1rem;
}

@media (max-width: 768px) {
	.pros-cons__lists {
		flex-direction: column;
	}
}

.pros-cons__lists ul {
	background-color: #e0e0e0;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: .75rem;
	padding: 1rem;
	border-radius: 16px;
	flex: 1;
}

.pros-cons__lists ul img {
	touch-action: none;
}

.pros-cons__lists ul li {
	display: flex;
	gap: .5rem;
	line-height: 1.5;
	align-items: start;
}

.content-navigation .block-wrapper {
	gap: 0;
}

.content-navigation__list {
	color: #1e1e1e;
	display: flex;
	flex-direction: column;
	gap: .5rem;
	align-items: start;
	overflow: hidden;
	max-height: 0;
	margin: 0;
	opacity: 0;
	transition: all .3s ease-out;
	flex-wrap: nowrap;
}

.content-navigation__list.open {
	padding-top: 1rem;
	max-height: 1000px;
	opacity: 1;
}

.content-navigation__list li {
	font-weight: 500;
	border-radius: 32px;
	position: relative;
	height: 100%;
}

.content-navigation__list li a {
	display: block;
	border-radius: inherit;
	padding: .25rem .5rem;
	padding-right: 38px;
}

.content-navigation__list li a svg {
	position: absolute;
	right: 7px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	aspect-ratio: 1;
	height: 24px;
}

.content-navigation__button.section-title {
	font-size: 1.75rem;
	line-height: 2em;
	font-weight: 700;
	position: relative;
	padding-bottom: 1rem;
	margin: 0;
	display: flex;
	align-items: center;
	gap: .5rem;
	width: 100%;
	color: #000;
}

.content-navigation__button.section-title img:first-child {
	height: 1.75rem;
}

.content-navigation__button.section-title span {
	flex: 1 0 auto;
	text-align: start;
}

.content-navigation__button.section-title img:last-child {
	height: .875rem;
}

.content-navigation__button.section-title:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #0288d1;
	height: 4px;
	width: 125px;
}

.content-navigation .section_nav__handler {
	transition: transform .3s ease;
	width: 10px;
	height: 7px;
}

.content-navigation .section_nav__handler.rotated {
	transform: rotate(180deg);
}

.content-navigation svg {
	width: 24px;
	height: 24px;
}

.faq__title {
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 20px;
}

.faq__item {
	border-bottom: 1px solid #BDBDBD;
	padding: .5em;
}

.faq__question {
	font-size: 1.125rem;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: .75rem;
	gap: .75rem;
}

.faq__question h3 {
    font-size: 1.125rem;
}

.faq__icon svg {
	display: inline-block;
	min-width: 16px;
	width: 16px;
	height: 10px;
	background-size: contain;
	background-repeat: no-repeat;
	transition: transform .3s ease;
}

.faq__item[open] .faq__icon {
	transform: rotate(180deg);
}

.faq__answer {
	line-height: 1.5;
	margin-bottom: .75rem;
}

.action-1 .container {
	max-width: 768px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.action-1__content {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 1rem;
}

@media (max-width: 556px) {
	.action-1__content {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.action-1__content {
		margin-bottom: 1rem;
	}
}

.action-1__logo {
	height: 70px;
	aspect-ratio: 1;
	border-radius: 50%;
	margin-right: -20px;
	position: relative;
	z-index: 1;
}

@media (max-width: 556px) {
	.action-1__logo {
		margin: 0 auto;
		translate: 0 30%;
	}
}

.action-1__text {
	padding: .5rem 1rem .5rem 1.875rem;
	color: #fff;
	background-color: #0288d1;
	font-size: 1.125rem;
	line-height: 24px;
	font-weight: 500;
	border-radius: 8px;
}

@media (max-width: 556px) {
	.action-1__text {
		padding: 1.25rem 1.875rem .625rem;
		padding-top: 30px;
		text-align: center;
	}
}

.action-1 .secondary-button {
	display: block;
}

.action-1__secondary {
	color: #bdbdbd;
}

.action-1__footer {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	gap: .75rem;
}

.action-2 {
	color: #fff;
}

.action-2__wrapper {
	background-color: #0288d1;
	border-radius: 16px;
	display: flex;
	gap: 1.5rem;
	padding: 1em;
	align-items: center;
}

@media (max-width: 556px) {
	.action-2__wrapper {
		flex-direction: column;
		padding: 12px 24px 16px;
	}
}

.action-2__header {
	border-radius: 50%;
	width: 80px;
	height: 80px;
	aspect-ratio: 1;
	padding: .625rem;
	background-color: #0288d1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.action-2__header img {
	width: 100%;
}

.action-2__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: .25rem;
}

.action-2__subtitle {
	font-size: .875rem;
	font-weight: 600;
	line-height: 1.75em;
}

.action-2__offer {
	font-size: 1.625rem;
	font-weight: 700;
}

.action-2__footer .secondary-button {
	padding: 12px;
	text-transform: uppercase;
}

.header {
	background-color: #0288d1;
	height: 82px;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header .container {
	display: flex;
	align-items: center;
	padding: 1.5rem;
	height: inherit;
	gap: .5rem;
}

@media (max-width: 992px) {
	.header .container {
		padding: .75rem;
	}
}

@media (max-width: 768px) {
	.header .container {
		padding: .5rem;
	}
}

.header__logo {
	max-height: 40px;
}

.header .logo__icon {
	max-height: 50px;
}

@media (max-width: 375px) {
	.header .logo__icon {
		max-width: 130px;
	}
}

.header__logo-wrapper {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	align-items: center;
}

@media (max-width: 375px) {
	.header__logo-wrapper {
		gap: .25rem;
	}
}

.header button.header__burger {
	display: none;
	touch-action: none;
}

@media (max-width: 992px) {
	.header button.header__burger {
		display: flex;
		touch-action: auto;
	}
}

.header .navigation-wrapper {
	display: flex;
	transition: all .4s ease-in-out;
	flex: 1;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

@media (max-width: 992px) {
	.header .navigation-wrapper {
		position: fixed;
		left: -120%;
		top: 0;
		background-color: #0288d1;
		height: 100vh;
		overflow-y: auto;
		width: 320px;
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
		flex-direction: column;
		justify-content: start;
	}
}

.header .navigation-wrapper__header {
	display: none;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0 1rem 1rem;
}

@media (max-width: 992px) {
	.header .navigation-wrapper__header {
		display: flex;
	}
}

.header .navigation-wrapper.hide {
	position: relative;
	z-index: -1;
}

@media (min-width: 992px) {
	.header .navigation-wrapper.hide {
		opacity: 0;
		touch-action: none;
	}
}

.header .navigation-wrapper.active {
	left: 0;
}

.header .navigation {
	position: relative;
}

@media (max-width: 992px) {
	.header .navigation {
		order: 2;
		width: 100%;
	}
}

.header .navigation__list {
	display: flex;
	gap: .5rem;
	align-items: center;
	transition: opacity .2s;
}

@media (max-width: 992px) {
	.header .navigation__list {
		align-items: stretch;
		width: 100%;
		flex-direction: column;
	}
}

.header .navigation__item a {
	padding: .5rem .75rem;
	color: #fff;
	white-space: nowrap;
	display: block;
	transition: all .3s;
}

@media (max-width: 992px) {
	.header .navigation__item a {
		width: 100%;
		padding: 1rem;
	}
}

.header .navigation__controls {
	display: flex;
	align-items: center;
	gap: 1rem;
}

@media (max-width: 992px) {
	.header .navigation__controls {
		flex: 1;
	}
}

@media (max-width: 375px) {
	.header .navigation__controls {
		gap: 0;
	}
}

.header .dropdown {
	position: relative;
}

.header .dropdown__button {
	color: #fff;
	padding: .5rem .75rem;
	display: flex;
	gap: .5rem;
	align-items: center;
}

@media (max-width: 992px) {
	.header .dropdown__button {
		padding: 1rem;
		width: 100%;
		text-align: start;
	}
}

.header .dropdown__handler {
	transition: all .3s ease-in-out;
	width: 10px;
	height: 7px;
}

.header .dropdown__header {
	display: flex;
	align-items: center;
	cursor: pointer;
	background: none;
	border: none;
}

.header .dropdown__content {
	top: 135%;
	box-shadow: none;
	position: absolute;
	background-color: #0288d1;
	padding: .5rem;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height .3s ease,opacity .3s ease;
	width: 90%;
	left: 5%;
	min-width: 160px;
}

@media (max-width: 992px) {
	.header .dropdown__content {
		top: 80%;
	}
}

.header .dropdown__content li {
	padding: .25rem 0;
}

.header .dropdown__content a {
	color: #fff;
	text-decoration: none;
	border-bottom: none;
}

.header .dropdown.active .dropdown__content {
	max-height: 200px;
	opacity: 1;
}

.header .dropdown.active .dropdown__handler {
	rotate: 180deg;
}

.header .language-button {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: .25rem;
	cursor: pointer;
	transition: all .2s;
}

.header .language-button:active {
	scale: .9;
}

.header .language-button__code {
	color: #fff;
	text-transform: uppercase;
}

.header .language-button__icon img {
	border-radius: 4px;
	width: 25px;
	aspect-ratio: 1;
}

.search-bar {
	width: 100%;
	gap: .75rem;
	flex: 1;
	justify-content: flex-end;
	align-items: center;
	display: flex;
	z-index: 100;
	position: relative;
}

.search-bar .icon-button {
	flex-direction: column;
}

.search-bar .icon-button .close,.search-bar .icon-button.active .search {
	display: none;
}

.search-bar .icon-button.active .close {
	display: block;
}

.search-bar__form {
	padding: 10px;
	display: flex;
	width: 0;
	overflow: hidden;
	transition: all .3s ease-in-out;
	background: #fff3;
	border-radius: 8px;
	align-items: center;
	gap: .5rem;
	opacity: 0;
	touch-action: none;
	position: absolute;
	right: 120%;
}

@media (max-width: 992px) {
	.search-bar__form {
		position: fixed;
		top: 85px;
		left: 5%;
		max-width: 90%;
		background-color: #0288d1;
		box-shadow: 0 4px 12px #00000026,0 2px 4px #0288d133;
	}
}

.search-bar__form input {
	background-color: transparent;
	border: none;
	width: 100%;
	color: #fff;
	height: 100%;
}

@media (max-width: 556px) {
	.search-bar__form input {
		width: inherit;
	}
}

.search-bar__form input::placeholder {
	color: #ffffff82;
}

.search-bar__form input:focus {
	border: none;
	outline: none;
}

.search-bar__form.active {
	z-index: 21;
	touch-action: auto;
	opacity: 1;
	width: 400px;
}

@media (max-width: 992px) {
	.search-bar__form.active {
		width: 100%;
	}
}

.footer {
	background-color: #212121;
	padding: 2.5rem 1rem 1.875rem;
	gap: 30px;
	color: #fff;
	position: relative;
}

.footer .logo {
	margin-bottom: 1rem;
}

.footer__col-title {
	font-size: 1.125rem;
	line-height: 1.4em;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.footer:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: url(footer-bg-CiZWduiB.svg);
	z-index: 0;
	background-size: contain;
}

.footer .container {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.footer__content {
	display: flex;
	flex-direction: row;
	gap: 30px;
	margin-bottom: 1.875rem;
}

@media (max-width: 992px) {
	.footer__content {
		flex-wrap: wrap;
	}
}

.footer .footer__col {
	flex: 1;
}

@media (max-width: 768px) {
	.footer .footer__col:first-child {
		flex: 1 0 auto;
		text-align: center;
		width: 100%;
		justify-content: center;
		align-items: center;
		display: flex;
		flex-direction: column;
	}
}

@media (max-width: 556px) {
	.footer .footer__col {
		flex: 1;
	}
}

.footer .logo {
	height: 80px;
	display: block;
}

.footer .logo img {
	height: 100%;
}

.footer .socials {
	display: flex;
	gap: 1rem;
}

.footer .content-section {
	font-size: .875rem;
	margin-bottom: 2rem;
}

.footer .content-section p {
	margin: 8px 0;
}

.footer .footer__nav ul {
	display: grid;
	gap: .75rem 1.5rem;
	grid-template-columns: repeat(2,1fr);
}

.footer__partners {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
	border-bottom: 1px solid #FF6F00;
	padding-bottom: 1.875rem;
}

.footer__copyright {
	text-align: center;
	max-width: 600px;
	color: #ffffffb3;
	font-size: .875rem;
	line-height: 21px;
	margin: 0 auto;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00000080;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity .3s ease;
}

.modal.show {
	display: flex;
	opacity: 1;
	z-index: 2000;
}

.modal .modal-content {
	background-color: #fafafa;
	padding: 1.25rem;
	border-radius: 5px;
	max-width: 500px;
	width: 100%;
	animation: slide-in .3s ease-out;
	position: relative;
}

.modal .close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 1.5rem;
	cursor: pointer;
}

.modal.langs-modal .table-countries {
	display: grid;
	grid-template-columns: repeat(5,1fr);
	gap: .75rem;
}

.modal.langs-modal .table-countries .table-countries__title {
	line-height: 28px;
	text-transform: uppercase;
}

.modal.langs-modal .table-countries li {
	padding: 1.25rem;
}

.modal.langs-modal .table-countries li.selected a {
	position: relative;
}

.modal.langs-modal .table-countries li.selected a:after {
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	bottom: 40%;
	right: -5%;
	background-image: url(check-filled-BHTS-kOd.svg);
	background-position: center;
	background-size: cover;
}

.modal.langs-modal .table-countries li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.modal.langs-modal .table-countries li img {
	width: 30px;
	height: 30px;
	aspect-ratio: 1;
	border-radius: 6px;
	margin: 0 auto;
	border: 1px solid #BDBDBD;
}

@keyframes slide-in {
	0% {
		transform: translateY(-50px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.cookie-modal {
	position: fixed;
	width: 80%;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #0288d1;
	padding: 1.5rem 1.25rem;
	z-index: 2000;
	color: #fff;
	display: flex;
	flex-direction: row;
	line-height: 1.5;
	gap: 1.5rem;
	align-items: center;
	margin: 0 auto;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

@media (max-width: 768px) {
	.cookie-modal {
		width: 100%;
		flex-direction: column;
	}
}

.cookie-modal>div {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	flex: 1;
}

.cookie-modal a {
	text-decoration: underline;
}

.cookie-modal__title {
	font-size: 1rem;
	font-weight: 600;
}

.cookie-modal p,.cookie-modal__button {
	font-size: .875rem;
}

body {
	background-color: #fafafa;
}

.page.home {
	padding-top: 0;
	gap: 1rem;
}

.page.home .content-wrapper {
	gap: 1.25rem;
}

.banner {
	background: #0288d1;
	padding: 3rem 0;
	color: #fff;
	display: flex;
}

@media (max-width: 992px) {
	.banner {
		background: #0288d1;
	}
}

.banner__content {
	flex: 3;
}

.banner h1 {
	margin: 0 0 1rem;
	color: #fff;
}

.banner__description {
	margin-bottom: 0;
	line-height: 1.5em;
}

.banner .container {
	display: flex;
	flex-direction: row;
}

@media (max-width: 768px) {
	.banner .container {
		grid-template-columns: 1fr;
		flex-direction: column;
	}
}

.banner-action {
	display: flex;
	flex-direction: column;
	gap: .25rem;
	text-align: center;
	flex: 2;
}

.banner-action--row {
	background-color: #0288d1;
	flex-direction: row;
	justify-content: start;
	gap: .625rem;
	color: #fff;
	padding: 3.125rem 2.5rem;
	text-align: start;
	border-radius: 10px;
	align-items: center;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

@media (max-width: 768px) {
	.banner-action--row {
		flex-direction: column;
		text-align: center;
	}
}

.banner-action--row .banner-action__caption {
	font-size: 1.5rem;
	line-height: 1.5em;
}

.banner-action--row .banner-action__icon {
	position: absolute;
	right: -50px;
	bottom: -20%;
	height: 100%;
	aspect-ratio: 1;
	width: auto;
	z-index: -2111;
	object-fit: cover;
}

@media (max-width: 566px) {
	.banner-action--row .banner-action__icon {
		position: relative;
		inset: unset;
		height: auto;
		width: 240px;
		height: 170px;
	}
}

.banner-action--row .banner-action__secondary {
	margin: 0;
}

.banner-action--row .banner-action__actions {
	flex-direction: column;
}

.banner-action--row .row-content {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1120;
}

.banner-action__icon {
	width: 130px;
	margin-bottom: .375rem;
	margin: 0 auto;
}

.banner-action__caption {
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.5em;
	display: block;
}

.banner-action__title {
	font-weight: 700;
	font-size: 2.25rem;
}

.banner-action__secondary {
	color: #bdbdbd;
	font-size: .875rem;
	line-height: 1.5em;
	margin-bottom: 1.25rem;
	display: block;
}

.banner-action__actions {
	display: flex;
	flex-direction: row;
	gap: .625rem;
	text-transform: uppercase;
	max-width: 400px;
	width: 100%;
	margin: 0 auto;
}

.banner-action__actions button,.banner-action__actions a {
	padding: 12px 24px;
	display: flex;
	align-items: center;
	text-align: center;
	border-radius: 12px;
}

.banner-action__link {
	flex: 1;
	justify-content: center;
}

.banner-action__code {
	color: inherit;
	border-radius: 12px;
	border: 1px dashed #FAFAFA;
	background-color: #fff3;
	justify-content: space-between;
	font-weight: 600;
	flex: 1;
}

.platforms {
	display: flex;
	flex-direction: column;
	gap: .25rem;
}

.platforms .logo-wrapper {
	position: relative;
	display: inline-block;
}

.platforms .logo-wrapper:after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 50px;
	height: 50px;
	background: #000;
	border-radius: 50%;
	opacity: .8;
	filter: blur(13px);
	z-index: -1;
}

.platforms .logo-wrapper .platforms__logo {
	display: block;
	max-width: 110px;
	height: 50px;
	border-radius: 1rem;
	filter: drop-shadow(2px 4px 6px black);
	width: 110px;
	object-fit: contain;
}

.platforms__item {
	position: relative;
	z-index: 2;
	justify-content: space-between;
	gap: 1rem;
	background-color: #e0e0e0;
	padding: 12px;
	border-radius: 8px;
	display: grid;
	grid-template-columns: repeat(1,1fr 1fr 1fr);
	align-items: center;
}

@media (max-width: 992px) {
	.platforms__item {
		display: grid;
		grid-template-columns: repeat(3,1fr);
		width: auto;
	}
}

@media (max-width: 556px) {
	.platforms__item {
		grid-template-columns: repeat(2,1fr);
	}

	.platforms__item .platforms__actions {
		grid-column: span 2;
	}
}

.platforms__item>div {
	display: flex;
	justify-content: center;
	gap: 1rem;
	width: 100%;
}

@media (max-width: 992px) {
	.platforms__item>div {
		flex-direction: column;
		gap: 6px;
	}
}

.platforms__header {
	display: flex;
	flex-direction: row;
}

@media (max-width: 556px) {
	.platforms__header {
		justify-content: center;
		align-items: center;
	}
}

.platforms__reviews {
	font-weight: 600;
	color: #0288d1;
	display: flex;
	align-items: center;
	gap: .5rem;
	flex-direction: row;
}

.platforms div.platforms__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

@media (max-width: 992px) {
	.platforms div.platforms__actions {
		flex-direction: column-reverse;
		gap: 6px;
	}
}

.platforms div.platforms__actions a {
	font-size: .875rem;
	font-weight: 500;
	padding: .5rem .625rem;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	width: 100%;
	text-align: center;
}

.platforms div.platforms__actions a.read {
	border: 1px solid #0288D1;
	color: #424242;
}

@media (max-width: 992px) {
	.platforms div.platforms__actions a.read {
		border: none;
		text-decoration: underline;
	}
}

.platforms__ratings {
	display: flex;
	flex-direction: row;
	gap: .5rem;
	align-items: center;
	font-size: .875rem;
	line-height: .5;
	color: #0288d1;
	width: 100%;
	justify-content: center;
	font-weight: 600;
}

@media (max-width: 992px) {
	.platforms__ratings {
		justify-content: start;
	}
}

@media (max-width: 556px) {
	.platforms__ratings {
		justify-content: center;
	}
}

.platforms__statistic {
	display: flex;
	align-items: center;
	gap: .5rem;
}

.platforms__statistic .statistic__category {
	border-radius: 5px;
	background-color: #81d4fa;
	color: #fff;
	padding: 3px 5px;
	font-size: .875rem;
	font-weight: 500;
}

.platforms__statistic .statistic__category.top {
	background-color: #7b1fa2;
}

.platforms__statistic .statistic__category.new {
	background-color: #f57c00;
}

.platforms__statistic .statistic__total {
	font-weight: 700;
	font-size: 1.25rem;
	color: #0288d1;
}

:root {
    --primary-hero-text-color: #FFFFFF;
    --primary-hero-color: #0288D1;
    --font-color: #D6D6D6;
    --logo-background: #000;
}

.action-demo {
    color: var(--primary-hero-text-color);
    margin-top: 1rem;
}

.action-demo div.container.content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .action-demo div.container.content-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
}

.action-demo__left {
    background-color: var(--primary-hero-color);
    border-radius: 16px;
    padding: 1em;
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 556px) {
    .action-demo__left {
        padding: 0.75rem;
    }
}

.action-demo__right {
    margin-top: 0.5rem;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 992px) {
    .action-demo__right {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .brand-box {
        min-width: 280px;
    }
}

.action-demo__right .secondary-button {
    width: 100%;
    text-align: center;
}

.action-demo__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.action-demo__header .secondary-button {
    font-size: 0.875rem;
}

.action-demo__title {
    font-size: 1.25rem;
    line-height: 2em;
    font-weight: 700;
    padding-bottom: 0.25rem;
}

.brand-box {
    background-color: var(--primary-hero-color);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 1rem;
    border-radius: 16px;
    max-width: 300px;
}

@media (max-width:768px) {
    .brand-box {
        width: 100%;
        max-width: initial;
    }

    .action-demo__header .secondary-button {
        display: none;
    }

    .action-demo__right {
        min-width: initial;
    }
}

.brand-box img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    padding: 0.25rem;
}

.brand-box .secondary-button {
    font-size: 0.875rem;
}

.brand-box .paper-secondary {
    font-size: 0.625rem
}

.brand-box__name {
    font-size: 1rem;
    font-weight: 500;
    line-height: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--font-color);
    text-align: center;
    margin-bottom: 12px;
}

.brand-box__header-link {
    width: 45px;
    height: 45px;
    background-color: var(--logo-background);
    border-radius: 50%;
    overflow: hidden;
    display: block;
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
}

.action-demo__call-action {
    padding: 12px 24px;
    font-size: 16px;
    background-color: var(--primary-hero-color);
    color: var(--primary-hero-text-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.action-demo__call-action:hover {
    transition: all 0.2s;
    scale: 1.1;
}

.iframe-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.iframe-placeholder::after {
    content: '';
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    position: absolute;
    /* background-image: url('/img/iframe-placeholder.webp'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.iframe-placeholder::before {
    content: '';
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #00000048;
}

.review-item {
    background-color: #F8F8FF;
    color: #2C2A3A;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(100, 87, 166, 0.2), 0px 2px 4px rgba(255, 111, 97, 0.1);
    margin-bottom: 20px;
    padding: 20px;
}

.review-item__wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-item__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.review-item__info {
    flex: 1;
}

.review-item__name {
    font-weight: bold;
    color: #1E1A29;
    font-size: 18px;
}

.review-item__date {
    font-size: 14px;
    color: #c5c5c5;
}

.review-item__body {
    font-size: 16px;
    color: #2C2A3A;
    margin: 15px 0;
}

.review-item__rating {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.review-item__rating-title {
    font-size: 14px;
    color: #c5c5c5;
    margin-right: 10px;
}

.rating-full {
    display: flex;
    align-items: center;
}

.review__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 600px;
    box-sizing: border-box;
}

.review__form_wrap,
.review__form_inputs,
.review__form_row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review__rating_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-area {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.rating-area input {
    display: none;
}

.rating-area label {
    font-size: 30px;
    color: #2C2A3A;
    cursor: pointer;
    transition: color 0.3s;
}

.rating-area input:checked~label,
.rating-area label:hover,
.rating-area label:hover~label {
    color: gold;
}

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

.review__form_input_wrap {
    flex: 1;
}

.review__txt {
    width: 100%;
    height: 100px;
    padding: 10px;
    border-radius: 4px;
    resize: none;
}

.review__form input:not(.rating-area input),
.review__txt {
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 16px;
    line-height: 1.5;
    color: #2C2A3A;
    background-color: #fff;
    border: 1px solid #D4E9F9;
    border-radius: 4px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.review__form .review__form_input:focus,
.review__txt:focus {
    border-color: #E6BE00;
    outline: 0;
    box-shadow: 0 0 5px #FFE680;
}

@media (max-width:768px) {
    .review__form_inputs {
        flex-direction: column;
    }
}

.average-rating-inline {
    background-color: #F4F3FC;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(100, 87, 166, 0.15), 0 2px 4px rgba(255, 111, 97, 0.08);
    padding: 14px 18px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 16px;
    color: #2C2A3A;
}

.average-rating-inline .title {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.average-rating-inline .value {
    font-size: 26px;
    font-weight: 800;
    color: #E6BE00;
    margin-left: 6px;
}

.average-rating-inline .stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.average-rating-inline .stars svg {
    width: 20px;
    height: 20px;
}

@media (max-width:600px) {
    .average-rating-inline {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}


/* article.css */
.banner .content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 0 1rem;
}

.banner__title {
	font-size: 2.5rem;
	line-height: 1.5em;
	font-weight: 700;
}

.banner__info {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 2rem;
}

@media (max-width: 768px) {
	.banner__info {
		flex-wrap: wrap;
		display: grid;
		grid-template-columns: repeat(2,1fr);
	}
}

.banner__info>div:nth-child(3) {
	order: 1;
}

.banner__info>div:nth-child(2) {
	order: 2;
}

.banner__info .info-header {
	display: flex;
	flex-direction: row;
	gap: .7rem;
	align-items: center;
}

@media (max-width: 768px) {
	.banner__info .info-header {
		width: 100%;
	}
}

.banner__info .info-header div {
	display: flex;
	justify-content: start;
	align-items: start;
	flex-direction: column;
}

.banner__rating {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	line-height: .5;
}

@media (max-width: 768px) {
	.banner__rating {
		order: 0;
		justify-content: start;
	}
}

.banner__avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1.5px solid #FAFAFA;
}

.banner__property {
	font-size: .875rem;
	font-weight: 500;
	color: #1e1e1e;
}

.banner .secondary {
	font-size: .75rem;
	font-weight: 500;
	color: #bdbdbd;
	margin-bottom: .25rem;
}

.banner__image {
	width: 100%;
	height: 100%;
	max-height: 450px;
	object-fit: cover;
	border-radius: 16px;
}

.container.content-wrapper a {
	color: #3366CC;
	transition: color 0.2s;
}

.container.content-wrapper a:hover,
.container.content-wrapper a:focus {
	color: #254688;
	text-decoration: underline;
}
