@font-face {
	font-weight: 400;
	font-family: Opsilon;
	font-style: normal;
	src: url("../fonts/Opsilon-Regular.woff2") format("woff2");
	font-display: swap
}

@font-face {
	font-weight: 400;
	font-family: VictorMono;
	font-style: normal;
	src: url("../fonts/VictorMono-Regular.woff2") format("woff2");
	font-display: swap
}

@font-face {
	font-weight: 700;
	font-family: VictorMono;
	font-style: normal;
	src: url("../fonts/VictorMono-Bold.woff2") format("woff2");
	font-display: swap
}

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

*:focus-visible {
	outline: none;
	opacity: .6
}

html {
	height: 100%;
	scroll-behavior: smooth
}

img {
	object-fit: contain;
	display: block;
	max-width: 100%;
	height: auto
}

body {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 320px;
	min-height: 100%;
	margin: 0;
	font-size: 20px;
	line-height: 140%;
	font-weight: 400;
	font-style: normal;
	font-family: VictorMono, Arial, sans-serif;
	color: #fff;
	background-color: #1a272e
}

@media (max-width: 1024px) {
	body {
		font-size: 18px;
		line-height: 130%
	}
}

@media (max-width: 768px) {
	body {
		font-size: 16px
	}
}

main {
	flex-grow: 1
}

.overlay {
	overflow: hidden
}

.overlay:after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	z-index: 4;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #1a272e;
	opacity: .7
}

.modal-overlay {
	overflow: hidden
}

.modal-overlay:after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #1a272e;
	opacity: .7
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(100%)
}

.highlight-main {
	color: #fdcf01
}

.highlight-additional {
	color: #ff4795
}

.bg-image:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover
}

@media (max-width: 768px) {
	.bg-image:before {
		content: none
	}
}

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

@media (max-width: 1439px) {
	.container {
		padding: 0 120px
	}
}

@media (max-width: 1240px) {
	.container {
		padding: 0 40px
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 10px
	}
}

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

.content p {
	margin: 0;
	font-weight: 700;
	letter-spacing: -.1px
}

.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
	font-family: Opsilon, Arial, sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	margin: 10px 0 0
}

.content h2 {
	font-size: 26px;
	line-height: 160%
}

.content h3 {
	font-size: 24px;
	line-height: 140%
}

.content h4,
.content h5,
.content h6 {
	font-size: 22px;
	line-height: 140%
}

.content ul,
.content ol {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	letter-spacing: -.1px;
	font-weight: 700
}

.content ol {
  counter-reset: num
}

.content ol > li {
  display: grid;
  grid-template-columns: min-content auto;
  column-gap: 14px
}

.content ol > li::before {
  content: counter(num) ".";
  counter-increment: num;
  flex-shrink: 0;
  color: #fdcf01
}

.content ul > li {
  display: grid;
  grid-template-columns: min-content auto;
  column-gap: 14px
}

.content ul > li::before {
  content: "";
  position: relative;
  top: 11px;
  display: block;
  width: 18px;
  height: 6px;
  background-color: #fdcf01;
}

.content li ul {
  grid-column: 2;
  list-style-type: disc;
  gap: 0;
  padding-left: 21px;
}

.content li ul > li {
  display: list-item;
}

.content li ul > li::before {
  content: none;
}

.content li ol {
  grid-column: 2;
  gap: 0;
}

.content li ol > li::before {
  color: currentColor;
}

.content a {
	color: currentColor;
	transition: color .3s;
	text-underline-offset: 3px
}

.content a:hover {
	color: #fdcf01
}

@media (max-width: 1024px) {
	.content {
		gap: 16px
	}

	.content h2 {
		font-size: 24px
	}

	.content h3 {
		font-size: 22px
	}

	.content h3,
	.content h4,
	.content h5,
	.content h6 {
		font-size: 20px
	}

	.content ul,
	.content ol {
		gap: 20px
	}
}

@media (max-width: 768px) {
	.content {
		gap: 10px
	}

	.content h2 {
		font-size: 22px;
		line-height: 120%
	}

	.content h3 {
		font-size: 20px
	}

	.content h4,
	.content h5,
	.content h6 {
		font-size: 18px;
		line-height: 120%
	}

	.content ul,
	.content ol {
		gap: 15px
	}

	.content ul > li {
		column-gap: 8px
	}

	.content ul > li:before {
		top: 9px;
		width: 9px;
		height: 3px
	}

  .content ol > li {
    column-gap: 8px;
  }
}

.list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-weight: 700
}

.list__item {
	display: grid;
	grid-template-columns: min-content auto;
	column-gap: 14px
}

.list__item:before {
	content: "";
	position: relative;
	top: 11px;
	display: block;
	width: 18px;
	height: 6px;
	background-color: #fdcf01
}

@media (max-width: 1024px) {
	.list {
		gap: 20px
	}
}

@media (max-width: 768px) {
	.list {
		gap: 15px
	}

	.list__item {
		column-gap: 8px
	}

	.list__item:before {
		top: 9px;
		width: 9px;
		height: 3px
	}
}

.sublist {
	grid-column: 2;
	list-style-type: disc;
	gap: 0;
	padding-left: 21px
}

.sublist__item {
	display: list-item
}

.sublist__item:before {
	content: none
}

.heading {
	font-family: Opsilon, Arial, sans-serif;
	font-size: 120px;
	line-height: 110%;
	font-weight: 400;
	color: #efefef;
	letter-spacing: 4px;
	text-align: center
}

@media (max-width: 1240px) {
	.heading {
		font-size: 100px
	}
}

@media (max-width: 1024px) {
	.heading {
		font-size: 80px
	}
}

@media (max-width: 768px) {
	.heading {
		font-size: 50px
	}
}

.title {
	font-family: Opsilon, Arial, sans-serif;
	font-size: 60px;
	line-height: 110%;
	font-weight: 400
}

@media (max-width: 1240px) {
	.title {
		font-size: 50px
	}
}

@media (max-width: 1024px) {
	.title {
		font-size: 42px
	}
}

@media (max-width: 768px) {
	.title {
		font-size: 38px
	}
}

.subtitle {
	font-family: Opsilon, Arial, sans-serif;
	font-size: 40px;
	line-height: 110%;
	font-weight: 400
}

@media (max-width: 1240px) {
	.subtitle {
		font-size: 34px
	}
}

@media (max-width: 1024px) {
	.subtitle {
		font-size: 30px
	}
}

@media (max-width: 768px) {
	.subtitle {
		font-size: 24px
	}
}

.subheading {
	font-family: Opsilon, Arial, sans-serif;
	font-size: 32px;
	line-height: 120%;
	font-weight: 400
}

@media (max-width: 1024px) {
	.subheading {
		font-size: 28px
	}
}

@media (max-width: 768px) {
	.subheading {
		font-size: 22px
	}
}

.button {
	display: block;
	padding: 18px 32px;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	font-family: Opsilon, Arial, sans-serif;
	font-size: 32px;
	line-height: 120%;
	border-radius: 80px;
	border: 1px solid currentColor;
	box-shadow: -5px 9px 0 currentColor;
	color: currentColor;
	transition: background-color .3s;
	cursor: pointer
}

.button:hover {
	background-color: #ff4795
}

@media (max-width: 1024px) {
	.button {
		font-size: 28px;
		padding: 15px 25px
	}
}

@media (max-width: 768px) {
	.button {
		font-size: 22px;
		padding: 10px;
		border-radius: 60px;
		box-shadow: -4px 7px 0 currentColor
	}
}

.button--small {
	padding: 12px 20px;
	font-size: 24px;
	line-height: 100%;
	box-shadow: -4px 6px 0 currentColor
}

@media (max-width: 1024px) {
	.button--small {
		font-size: 22px
	}
}

@media (max-width: 768px) {
	.button--small {
		font-size: 20px;
		padding: 10px
	}
}

@media (max-width: 425px) {
	.button--small {
		font-size: 18px;
		padding: 7px
	}
}

.button--dark {
	color: #fff;
	background-color: #1a272e
}

.button--light {
	color: #1a272e;
	background-color: #fff
}

.button-tab {
	display: block;
	padding: 8px 28px;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	font-family: Opsilon, Arial, sans-serif;
	font-size: 28px;
	line-height: 100%;
	border-radius: 100px;
	cursor: pointer
}

@media (max-width: 1240px) {
	.button-tab {
		font-size: 26px
	}
}

@media (max-width: 1024px) {
	.button-tab {
		padding: 8px 15px;
		font-size: 24px
	}

	.button-tab--small {
		padding: 8px 15px;
		font-size: 20px
	}
}

@media (max-width: 768px) {
	.button-tab {
		font-size: 20px
	}

	.button-tab--small {
		padding: 5px 7px;
		font-size: 16px
	}
}

.button-tab--dark {
	background-color: #1a272e;
	color: #fff;
	border: 2px solid #ffffff
}

.button-tab--dark:hover {
	background-color: #ffffff1a
}

.button-tab--light {
	background-color: #fff;
	color: #1a272e;
	border: 2px solid #1a272e
}

.button-tab--light:hover {
	background-color: #1a272e1a
}

.button-tab.is-active {
	background-color: #fdcf01;
	color: #1a272e;
	border-color: #fdcf01;
	pointer-events: none
}

.type-tab-buttons {
	display: flex;
	background-color: #1a272e;
	padding: 4px;
	border-radius: 10px
}

.type-tab-buttons__item {
	flex-grow: 1;
	padding: 8px 32px;
	font-size: 18px;
	line-height: 100%;
	background-color: transparent;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-family: Opsilon, Arial, sans-serif;
	cursor: pointer
}

.type-tab-buttons__item:hover {
	background-color: #ffffff1a
}

.type-tab-buttons--big .type-tab-buttons__item {
	padding: 6px 40px;
	font-size: 24px;
	line-height: 120%
}

.type-tab-buttons__item.is-active {
	background-color: #fff;
	color: #1a272e;
	box-shadow: inset -2px -2px #3e79ee40;
	pointer-events: none
}

@media (max-width: 1024px) {
	.type-tab-buttons--big .type-tab-buttons__item {
		font-size: 20px
	}
}

@media (max-width: 768px) {
	.type-tab-buttons__item {
		padding: 6px 20px;
		font-size: 16px
	}

	.type-tab-buttons--big .type-tab-buttons__item {
		padding: 6px 15px;
		font-size: 18px
	}
}

@media (max-width: 425px) {
	.type-tab-buttons--big .type-tab-buttons__item {
		padding: 6px 10px;
		font-size: 16px
	}
}

.slider-button {
	position: relative;
	width: 46px;
	height: 46px;
	background-color: transparent;
	color: inherit;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: color .3s, opacity .3s
}

.slider-button:after {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	-webkit-mask-image: url("../images/arrow.svg");
	mask-image: url("../images/arrow.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	background-color: currentColor
}

.slider-button:hover {
	color: #ff4795
}

.slider-button:disabled {
	pointer-events: none;
	opacity: .5
}

@media (max-width: 1024px) {
	.slider-button {
		width: 40px;
		height: 40px
	}
}

@media (max-width: 768px) {
	.slider-button {
		width: 30px;
		height: 30px
	}
}

.slider-button--next {
	transform: scaleX(-1)
}

.showmore-button {
	display: inline-block;
	background-color: transparent;
	border: none;
	border-bottom: 2px solid currentColor;
	padding: 10px 0 4px;
	text-decoration: none;
	color: currentColor;
	font-size: inherit;
	line-height: inherit;
	font-family: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	cursor: pointer;
	transition: color .3s
}

.showmore-button:hover {
	color: #ff4795
}

.phone {
	display: flex;
	align-items: center;
	gap: 6px;
	color: currentColor;
	font-size: 18px;
	line-height: 100%;
	font-family: Opsilon, Arial, sans-serif;
	text-decoration: none;
	transition: color .3s
}

.phone:hover {
	color: #ff4795
}

.phone__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px
}

@media (max-width: 768px) {
	.phone__icon {
		display: none
	}
}

@media (max-width: 425px) {
	.phone {
		font-size: 16px;
		line-height: 100%
	}
}

.review {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 50px;
	background-color: #fff;
	color: #324855;
	font-weight: 700;
	letter-spacing: 1px;
	border-radius: 60px;
	padding: 30px 35px 30px 32px;
	min-height: 380px
}

.review__text {
	margin: 0
}

@media (max-width: 1024px) {
	.review {
		border-radius: 40px;
		padding: 25px
	}
}

@media (max-width: 768px) {
	.review {
		min-height: 280px
	}
}

@media (max-width: 425px) {
	.review {
		padding: 20px;
		border-radius: 25px
	}
}

.blog-item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	border-radius: 60px;
	overflow: hidden;
	min-height: 380px;
	background-color: #1a272e;
	color: #fff;
	text-decoration: none;
	transition: color .3s, background-color .3s
}

.blog-item:hover {
	color: #ff4795
}

.blog-item__image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%
}

.blog-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.blog-item__text {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px 53px 30px 32px;
	background: linear-gradient(transparent, #000)
}

.blog-item__title {
	margin: 0;
	font-family: Opsilon, Arial, sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 24px;
	line-height: 120%
}

.blog-item__caption {
	margin: 0;
	max-width: 310px
}

@media (max-width: 1024px) {
	.blog-item {
		border-radius: 40px;
		min-height: 320px
	}

	.blog-item__text {
		gap: 10px;
		padding: 25px
	}

	.blog-item__title {
		font-size: 22px
	}
}

@media (max-width: 768px) {
	.blog-item {
		min-height: 280px
	}

	.blog-item__text {
		gap: 5px
	}

	.blog-item__date {
		font-size: 16px
	}

	.blog-item__title {
		font-size: 20px;
		max-width: 400px
	}
}

@media (max-width: 425px) {
	.blog-item {
		border-radius: 30px;
		min-height: 224px
	}

	.blog-item__text {
		padding: 20px
	}

	.blog-item__date {
		font-size: 14px
	}

	.blog-item__title {
		font-size: 18px
	}
}

.blog-item--showmore {
	justify-content: space-between;
	padding: 16px 53px 30px 32px;
	background-color: #ff4795
}

.blog-item--showmore:before {
	content: "";
	display: block;
	width: 45px;
	height: 45px;
	background-color: currentColor;
	-webkit-mask-image: url("../images/arrow.svg");
	mask-image: url("../images/arrow.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	transform: rotate(135deg);
	margin-top: 7px;
	margin-left: -5px;
	transition: transform .3s
}

.blog-item--showmore:hover {
	background-color: #db2975;
	color: currentColor
}

.blog-item--showmore:hover:before {
	transform: rotate(180deg)
}

@media (max-width: 1024px) {
	.blog-item--showmore {
		padding: 25px
	}

	.blog-item--showmore:before {
		margin-top: 0
	}
}

@media (max-width: 768px) {
	.blog-item--showmore:before {
		width: 35px;
		height: 35px
	}
}

@media (max-width: 425px) {
	.blog-item--showmore {
		padding: 20px
	}

	.blog-item--showmore:before {
		margin-left: 0
	}
}

.nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: 4px;
	row-gap: 9px
}

.nav__link {
	padding: 5px 13px;
	border-radius: 70px;
	font-size: 16px;
	line-height: 100%;
	box-shadow: -1px 2px 0 currentColor
}

.nav__link.is-active {
	border: 1px solid transparent;
	box-shadow: none;
	color: #ff4795;
	pointer-events: none
}

.footer .nav__link {
	padding: 8px 20px;
	font-size: 18px
}

@media (max-width: 1024px) {
	.footer .nav__link {
		padding: 5px 13px;
		font-size: 16px
	}
}

.catalog-preview {
	display: flex;
	justify-content: center;
	align-items: flex-start
}

.catalog-preview__product-wrapper {
	flex-shrink: 1;
	width: 540px
}

.catalog-preview__product {
	display: none;
	flex-direction: column;
	align-items: center;
	margin-top: 56px
}

.catalog-preview__product.is-active {
	display: flex
}

.catalog-preview__image {
	width: 100%;
	aspect-ratio: 540/586
}

.catalog-preview__image img {
	width: 100%;
	height: 100%
}

.catalog-preview__image--typed {
	display: none
}

.catalog-preview__image--typed.is-active {
	display: block
}

.catalog-preview__type-tab {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: -172px;
	max-width: 423px;
	padding: 16px 71px;
	background-color: #fff;
	border: 2px solid #1a272e;
	border-radius: 30px
}

.catalog-preview__type-tab-text {
	display: block;
	text-transform: lowercase;
	font-size: 22px;
	line-height: 130%;
	font-weight: 700;
	text-align: center
}

.catalog-preview__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 46px;
	max-width: 510px;
	background-color: #fff;
	color: #1a272e;
	padding: 40px 35px;
	border-radius: 60px;
	box-shadow: inset 0 -10px #a6a6a640
}

.catalog-preview__tab-button-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px
}

.catalog-preview__tab-content {
	display: none
}

.catalog-preview__tab-content.is-active {
	display: flex
}

.catalog-preview__tab-content-price {
	display: flex;
	flex-direction: column;
	gap: 28px
}

.catalog-preview__tab-content-price--typed {
	display: none
}

.catalog-preview__tab-content-price--typed.is-active {
	display: flex
}

.catalog-preview__tab-content-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	text-align: center
}

.catalog-preview__tab-content-text {
	font-size: 18px;
	line-height: 130%;
	font-weight: 700;
	color: #7e7e7e;
	letter-spacing: -.2px;
	text-transform: lowercase
}

.catalog-preview__tab-content-price-small {
	font-family: Opsilon, Arial, sans-serif;
	font-size: 60px;
	line-height: 110%
}

.catalog-preview__tab-content-price-big {
	font-family: Opsilon, Arial, sans-serif;
	font-size: 90px;
	line-height: 100%;
	letter-spacing: 2px
}

.catalog-preview__button {
	max-width: 360px;
	margin-top: 20px;
	width: 100%
}

@media (max-width: 1240px) {
	.catalog-preview__product-wrapper {
		width: 50%;
		max-width: 460px
	}

	.catalog-preview__info {
		padding: 30px 25px;
		gap: 35px;
		width: 50%
	}

	.catalog-preview__tab-content-price {
		gap: 20px
	}

	.catalog-preview__tab-content-price-big {
		font-size: 80px
	}

	.catalog-preview__button {
		margin-top: 10px
	}

	.catalog-preview__type-tab {
		gap: 25px;
		max-width: 380px;
		padding: 16px 40px;
		margin-top: -162px
	}

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

@media (max-width: 1024px) {
	.catalog-preview {
		gap: 10px;
    align-items: flex-end;
	}

	.catalog-preview__info {
		padding: 30px 20px;
		gap: 25px
	}

	.catalog-preview__product {
		margin-top: 0
	}

	.catalog-preview__tab-button-wrapper {
		max-width: 400px;
		column-gap: 3px;
		row-gap: 5px
	}

	.catalog-preview__tab-content-price-small {
		font-size: 50px
	}

	.catalog-preview__tab-content-price-big {
		font-size: 60px
	}

	.catalog-preview__button {
		max-width: 300px;
		margin-top: 0
	}

	.catalog-preview__type-tab {
		gap: 15px;
		padding: 16px 30px;
		margin-top: -142px;
		max-width: 360px
	}

	.catalog-preview__type-tab-text {
		font-size: 18px
	}
}

@media (max-width: 768px) {
	.catalog-preview {
		padding: 0;
		justify-content: center;
		gap: 5px;
    align-items: flex-start;
	}

	.catalog-preview__tab-button-wrapper {
		max-width: 300px;
		column-gap: 2px
	}

	.catalog-preview__type-tab {
		gap: 10px;
		max-width: 180px;
		padding: 10px;
		border-radius: 25px;
		margin-top: -130px;
		margin-left: 50px
	}

	.catalog-preview__info {
		gap: 15px;
		border-radius: 0;
		box-shadow: none;
		background-color: transparent;
		padding: 20px 0 0;
		width: 51%
	}

	.catalog-preview__product-wrapper {
		width: 63%;
		max-width: 300px;
		margin-left: -59px
	}

	.catalog-preview__type-tab-text {
		font-size: 14px
	}

	.catalog-preview__tab-content-price {
		gap: 10px
	}

	.catalog-preview__tab-content-text {
		font-size: 14px
	}

	.catalog-preview__tab-content-price-small {
		font-size: 30px
	}

	.catalog-preview__tab-content-price-big {
		font-size: 40px
	}

	.catalog-preview__button {
		max-width: 230px
	}
}

@media (max-width: 425px) {
	.catalog-preview {
		flex-direction: column;
		gap: 0
	}

	.catalog-preview__product-wrapper {
		width: 280px;
		max-width: none;
		margin-bottom: 10px;
		align-self: center;
		margin-left: 0
	}

	.catalog-preview__type-tab {
		max-width: 220px;
		margin-left: 0;
		margin-top: -110px
	}

	.catalog-preview__info {
		width: 100%;
		border-top: 2px solid #7e7e7e
	}
}

.short-feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	padding: 32px 54px;
	background-color: #fff;
	border-radius: 60px;
	font-family: Opsilon, Arial, sans-serif;
	font-size: 32px;
	line-height: 120%;
	text-align: center
}

.short-feature__icon {
	width: 52px;
	height: 52px;
	color: #ff4795;
	flex-shrink: 0
}

.short-feature__icon svg {
	width: 100%;
	height: 100%
}

@media (max-width: 1240px) {
	.short-feature {
		gap: 15px;
		padding: 35px;
		font-size: 28px
	}

	.short-feature__icon {
		width: 40px;
		height: 40px
	}
}

@media (max-width: 1024px) {
	.short-feature {
		padding: 30px 20px;
		gap: 10px;
		border-radius: 50px;
		font-size: 22px
	}
}

@media (max-width: 768px) {
	.short-feature {
		padding: 15px;
		gap: 5px;
		border-radius: 20px;
		font-size: 18px
	}

	.short-feature__icon {
		width: 25px;
		height: 25px
	}
}

@media (max-width: 425px) {
	.short-feature {
		padding: 15px 10px;
		font-size: 16px
	}
}

.sales-banner {
	position: relative;
	z-index: 2;
	color: #fff;
	border-radius: 60px;
	overflow: hidden;
	transform: rotate(-4deg)
}

.sales-banner__slider {
	position: relative
}

.sales-banner__slider-wrapper {
	align-items: stretch
}

.sales-banner__slider-item {
	position: relative;
	height: auto;
	display: flex;
	justify-content: space-between;
	border-radius: 60px;
	background-color: #1a272e;
	overflow: hidden;
	box-shadow: 0 10px #494949;
	margin-bottom: 10px
}

.sales-banner__item {
	position: relative;
	transform: rotate(4deg);
	transform-origin: 0%;
	margin-right: -240px;
	padding: 98px 0 65px 43px;
	z-index: 1
}

.sales-banner__item-text {
	margin: 0
}

.sales-banner__item-button {
	display: inline-block;
	margin-top: 70px
}

.sales-banner__slider-item-image {
	align-self: flex-end;
	flex-shrink: 0;
	width: 50%;
	max-width: 507px;
	aspect-ratio: 507/440
}

.sales-banner__slider-item-image img {
	width: 100%;
	height: 100%
}

.sales-banner__slider-button-wrapper {
	position: absolute;
	left: 47px;
	top: 40px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 28px;
	transform: rotate(4deg)
}

@media (max-width: 1240px) {
	.sales-banner__slider-item-image {
		width: 450px
	}

	.sales-banner__item {
		max-width: 700px
	}
}

@media (max-width: 1024px) {
	.sales-banner__item {
		max-width: 600px;
		padding: 78px 0 55px 36px;
		margin-right: -160px
	}

	.sales-banner__item-button {
		margin-top: 40px
	}

	.sales-banner__slider-item-image {
		max-width: 320px
	}

	.sales-banner__slider-button-wrapper {
		left: 42px;
		top: 30px;
		gap: 20px
	}
}

@media (max-width: 768px) {
	.sales-banner {
		border-radius: 40px;
		transform: none
	}

	.sales-banner__slider-item {
		border-radius: 40px;
		box-shadow: none;
		margin-bottom: 0
	}

	.sales-banner__item {
		max-width: 540px;
		padding: 30px 0 85px 20px;
		transform: none;
		min-height: 325px
	}

	.sales-banner__item-text {
		font-size: 30px
	}

	.sales-banner__item-button {
		margin-top: 20px
	}

	.sales-banner__slider-item-image {
		max-width: 260px;
		opacity: .4
	}

	.sales-banner__slider-button-wrapper {
		top: auto;
		bottom: 30px;
		left: 30px;
		transform: none
	}
}

@media (max-width: 425px) {
	.sales-banner {
		border-radius: 30px
	}

	.sales-banner__slider-item {
		flex-direction: column;
		border-radius: 30px
	}

	.sales-banner__item {
		padding: 15px 15px 0;
		min-height: 170px;
		margin-right: 0
	}

	.sales-banner__item-text {
		font-size: 26px
	}

	.sales-banner__slider-item-image {
		opacity: .2;
		max-width: 220px;
		margin-top: -100px
	}

	.sales-banner__slider-button-wrapper {
		bottom: 20px;
		left: 20px
	}
}

.delivery-banner {
	position: relative;
	color: #1a272e;
	background-color: #fff;
	border-radius: 60px;
	box-shadow: 0 10px #494949;
	transform: rotate(-4deg);
	z-index: 2
}

.delivery-banner__wrapper {
	display: flex;
	justify-content: space-between;
	overflow: hidden;
	border-radius: 60px
}

.delivery-banner__text {
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 46px 0 40px 34px;
	transform: rotate(4deg);
	z-index: 1
}

.delivery-banner__title {
	max-width: 512px;
	margin: 0 0 20px
}

.delivery-banner__subtitle {
	color: #324855;
	font-weight: 700;
	letter-spacing: 1px;
	max-width: 350px;
	margin: 0 0 70px
}

.delivery-banner__button {
	display: inline-block;
	align-self: flex-start
}

.delivery-banner__image {
	align-self: flex-end;
	flex-shrink: 1;
	width: 366px;
	min-width: 100px;
	aspect-ratio: 366/440;
	transform: rotate(4deg);
	transform-origin: 0;
	margin-right: 31px
}

.delivery-banner__image img {
	width: 100%;
	height: 100%
}

@media (max-width: 1240px) {
	.delivery-banner__title {
		max-width: 498px
	}
}

@media (max-width: 1024px) {
	.delivery-banner__title {
		max-width: 412px
	}

	.delivery-banner__subtitle {
		margin: 0 0 55px
	}

	.delivery-banner__image {
		width: 291px;
		margin-right: 0
	}
}

@media (max-width: 768px) {
	.delivery-banner {
		border-radius: 40px;
		transform: none;
		box-shadow: none
	}

	.delivery-banner__wrapper {
		position: relative;
		border-radius: 40px
	}

	.delivery-banner__text {
		padding: 30px 0 30px 20px;
		transform: none
	}

	.delivery-banner__title {
		max-width: 370px;
		font-size: 5.5vw;
		margin: 0 0 10px
	}

	.delivery-banner__subtitle {
		max-width: 330px;
		margin: 0 0 15px;
		font-size: 16px;
		line-height: 1.3
	}

	.delivery-banner__button {
		margin-top: auto
	}

	.delivery-banner__image {
		transform: none;
		max-width: 300px
	}
}

@media (max-width: 425px) {

	.delivery-banner,
	.delivery-banner__wrapper {
		border-radius: 25px
	}

	.delivery-banner__text {
		padding: 15px 0 15px 15px
	}

	.delivery-banner__subtitle {
		font-size: 14px;
		line-height: 110%;
		margin: 0 0 10px
	}

	.delivery-banner__image {
		margin-right: -10px
	}
}

.reviews-slider {
	position: relative;
	max-width: 1050px;
	margin: 0 auto;
	padding: 40px 0 31px
}

.reviews-slider__button-wrapper {
	position: absolute;
	right: 0;
	top: -10px;
	transform: translateY(-100%);
	display: flex;
	gap: 27px
}

@media (max-width: 1440px) {
	.reviews-slider {
		max-width: none
	}

	.reviews-slider__button-wrapper {
		right: 195px
	}
}

@media (max-width: 1240px) {
	.reviews-slider__button-wrapper {
		right: 40px;
		top: -5px
	}
}

@media (max-width: 768px) {
	.reviews-slider {
		padding: 25px 0 20px
	}

	.reviews-slider__button-wrapper {
		right: 20px;
		gap: 17px
	}
}

.accordion {
	display: flex;
	flex-direction: column;
	gap: 4px
}

.accordion__item {
	background-color: #fff;
	border-radius: 20px;
	padding-bottom: 24px
}

.accordion__item-button {
	display: inline-flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	width: 100%;
	background-color: transparent;
	border: none;
	padding: 24px 32px 0;
	border-radius: 20px;
	font-family: Opsilon, Arial, sans-serif;
	font-size: 24px;
	line-height: 120%;
  color: #1a272e;
	transition: color .3s;
	cursor: pointer
}

.accordion__item-button:after {
	content: "";
	flex-shrink: 0;
	display: block;
	width: 18px;
	height: 18px;
	background-color: currentColor;
	-webkit-mask-image: url("../images/plus.svg");
	mask-image: url("../images/plus.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: transform .3s
}

.accordion__item-button:hover {
	color: #ff4795
}

.accordion__item-title {
	max-width: 404px;
	text-align: start
}

.accordion__item-text {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s
}

.accordion__item-text-content {
	margin: 0;
	padding: 24px 32px 0;
	font-weight: 700
}

.accordion__item-button.is-active:after {
	transform: rotate(45deg)
}

@media (max-width: 1024px) {
	.accordion__item {
		padding-bottom: 20px
	}

	.accordion__item-button {
		padding: 20px 20px 0;
		font-size: 22px
	}

	.accordion__item-text-content {
		padding: 16px 20px 0
	}
}

@media (max-width: 425px) {
	.accordion__item {
		padding-bottom: 15px;
		border-radius: 15px
	}

	.accordion__item-button {
		padding: 15px 15px 0;
		font-size: 20px
	}

	.accordion__item-text-content {
		padding: 15px 15px 0
	}
}

.brand-banner {
	position: relative;
	padding-bottom: 10px;
	transform: rotate(-4deg);
	transform-origin: 0;
	z-index: 2
}

.brand-banner:before {
	content: "";
	position: absolute;
	left: -23px;
	top: 50px;
	display: block;
	width: 156px;
	aspect-ratio: 146/334;
	background-image: url("../images/cat-balloon-2.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: rotate(4deg)
}

.brand-banner:after {
	content: "";
	position: absolute;
	right: -47px;
	top: -4px;
	display: block;
	width: 240px;
	aspect-ratio: 207/408;
	background-image: url("../images/cat-balloon-3.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: rotate(4deg)
}

.brand-banner__wrapper {
	background-color: #1a272e;
	color: #fff;
	border-radius: 60px;
	padding: 96px 50px 55px;
	display: flex;
	flex-direction: column;
	gap: 47px;
	align-items: center;
	box-shadow: 0 10px #494949
}

.brand-banner__button {
	transform: rotate(-4deg);
	position: relative;
	z-index: 1
}

.brand-banner__logo {
	position: relative;
	z-index: 1;
	width: 690px;
	aspect-ratio: 690/167
}

.brand-banner__logo img {
	width: 100%;
	height: 100%
}

@media (max-width: 1240px) {
	.brand-banner:before {
		left: 3%;
		width: 150px
	}

	.brand-banner:after {
		right: 3%;
		width: 210px
	}

	.brand-banner__logo {
		width: 670px
	}
}

@media (max-width: 1024px) {
	.brand-banner__wrapper {
		padding: 60px 30px 35px
	}

	.brand-banner:before {
		width: 100px
	}

	.brand-banner:after {
		width: 150px
	}

	.brand-banner__logo {
		width: 560px
	}
}

@media (max-width: 768px) {
	.brand-banner {
		transform: none;
		padding-bottom: 0
	}

	.brand-banner__wrapper {
		padding: 40px 30px 30px;
		box-shadow: none;
		gap: 30px;
		border-radius: 40px
	}

	.brand-banner:before {
		width: 10%
	}

	.brand-banner:after {
		top: 5%;
		width: 16%
	}

	.brand-banner__logo {
		width: 300px
	}
}

@media (max-width: 425px) {
	.brand-banner__wrapper {
		padding: 20px 10px 15px;
		border-radius: 25px
	}

	.brand-banner:before {
		opacity: .6
	}

	.brand-banner:after {
		opacity: .6
	}

	.brand-banner__logo {
		width: 200px
	}
}

.catalog-tab {
	display: flex;
	flex-direction: column;
	gap: 80px
}

.catalog-tab__button-wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px
}

.catalog-tab__content {
	display: none;
	flex-wrap: wrap;
	gap: 10px
}

.catalog-tab__content.is-active {
	display: flex
}

.catalog-tab__content--poppers {
	gap: 30px
}

@media (max-width: 1240px) {
	.catalog-tab {
		gap: 60px
	}
}

@media (max-width: 1024px) {
	.catalog-tab {
		gap: 40px
	}

	.catalog-tab__content--poppers {
		gap: 20px
	}
}

@media (max-width: 768px) {
	.catalog-tab {
		gap: 25px
	}

	.catalog-tab__content--poppers {
		gap: 10px
	}
}

.product-preview-card {
	position: relative;
	display: grid;
	background-color: #fff;
	box-shadow: inset 0 -10px #a6a6a640;
	border-radius: 60px;
	color: #1a272e
}

.product-preview-card__link {
	position: absolute;
	inset: 0;
	border-radius: 60px;
	color: transparent;
	box-shadow: inset 0 0 15px currentColor;
	transition: color .3s
}

.product-preview-card__link:hover {
	color: #1a272e
}

.product-preview-card__info {
	grid-area: info;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px
}

.product-preview-card__title {
	margin: 0 0 20px
}

.product-preview-card__weight {
	font-size: 17px;
	line-height: 130%;
	font-weight: 700;
	letter-spacing: .3px;
	margin-bottom: 30px
}

.product-preview-card__price {
	grid-area: price;
	display: flex;
	flex-wrap: wrap;
	column-gap: 40px;
	row-gap: 10px
}

.product-preview-card__price--typed {
	display: none
}

.product-preview-card__price--typed.is-active {
	display: flex
}

.product-preview-card__price-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 2px;
	flex-shrink: 0
}

.product-preview-card__price-text {
	text-transform: lowercase;
	color: #7e7e7e
}

.product-preview-card__price-number {
	font-size: 60px;
	line-height: 110%;
	font-family: Opsilon, Arial, sans-serif
}

.product-preview-card__image {
	grid-area: image;
	align-self: end
}

.product-preview-card__image img {
	width: 100%;
	height: 100%
}

.product-preview-card__image--typed {
	display: none
}

.product-preview-card__image--typed.is-active {
	display: block
}

.product-preview-card__type-tab-buttons {
	position: relative;
	justify-self: start;
	margin-bottom: 12px;
	z-index: 1
}

.product-preview-card__button {
	position: relative;
	grid-area: button;
	z-index: 1
}

.product-preview-card--big {
	width: 100%;
	grid-template-areas: "info   image""price  image""price button";
	grid-template-columns: 1fr 1fr;
	padding: 40px 50px 40px 40px
}

.product-preview-card--big .product-preview-card__image {
	width: 450px;
	max-width: 450px;
	aspect-ratio: 450/268;
	justify-self: end
}

.product-preview-card--big .product-preview-card__button {
	justify-self: end;
	font-size: 24px;
	line-height: 100%;
	padding: 13px 74px;
	box-shadow: -4px 6px 0 currentColor
}

.product-preview-card--small {
	width: calc(50% - 15px);
	grid-template-areas: "info""image""button";
	padding: 32px;
	justify-items: center;
	gap: 60px
}

.product-preview-card--small .product-preview-card__image {
	width: 290px;
	aspect-ratio: 1/1;
	margin-top: 5px
}

.product-preview-card--small .product-preview-card__button {
	width: 360px
}

@media (max-width: 1240px) {
	.product-preview-card__price {
		flex-direction: column;
		justify-content: flex-end
	}
}

@media (max-width: 1024px) {
	.product-preview-card__price-number {
		font-size: 40px
	}

	.product-preview-card--big .product-preview-card__image {
		width: 100%
	}

	.product-preview-card--small {
		gap: 30px;
		width: calc(50% - 10px)
	}

	.product-preview-card--small .product-preview-card__image {
		width: 50%
	}

	.product-preview-card--small .product-preview-card__button {
		width: 70%
	}
}

@media (max-width: 768px) {

	.product-preview-card,
	.product-preview-card__link {
		border-radius: 30px
	}

	.product-preview-card__title {
		margin: 0 0 10px
	}

	.product-preview-card__info {
		gap: 5px
	}

	.product-preview-card__weight {
		font-size: 14px;
		letter-spacing: normal;
		margin-bottom: 15px
	}

	.product-preview-card__price-number {
		font-size: 36px
	}

	.product-preview-card__type-tab-buttons {
		margin-bottom: 6px
	}

	.product-preview-card--big {
		grid-template-columns: 1fr 1.5fr;
		grid-template-areas: "info  info""price image""price button";
		padding: 25px 20px
	}

	.product-preview-card--big .product-preview-card__image {
		max-width: 330px
	}

	.product-preview-card--big .product-preview-card__button {
		font-size: 20px;
		padding: 10px 40px;
		margin-right: -7px
	}

	.product-preview-card--small {
		padding: 25px;
		gap: 10px;
		width: calc(50% - 5px)
	}

	.product-preview-card--small .product-preview-card__image {
		min-width: 100px
	}

	.product-preview-card--small .product-preview-card__button {
		width: 80%
	}
}

@media (max-width: 425px) {
	.product-preview-card {
		grid-template-columns: 1fr;
		grid-template-areas: "info""price""image""button";
		gap: 0;
		padding: 20px 15px
	}

	.product-preview-card__info {
		margin-bottom: 15px
	}

	.product-preview-card__title {
		margin: 0 0 10px
	}

	.product-preview-card__price {
		margin-bottom: 15px
	}

	.product-preview-card__weight {
		margin-bottom: 5px
	}

	.product-preview-card .product-preview-card__button {
		width: 100%
	}

	.product-preview-card--big .product-preview-card__image {
		margin-bottom: 0;
		justify-self: start
	}

	.product-preview-card--small {
		width: 100%;
		padding: 30px
	}
}

.detail-card {
	background-color: #fff;
	color: #1a272e;
	border-radius: 60px;
	padding: 40px 35px
}

.detail-card__wrapper {
	position: relative;
	display: grid;
	grid-template-areas: "title  image""price  image""button image""type   type";
	grid-template-columns: auto auto;
	row-gap: 24px;
	column-gap: 20px;
	padding-bottom: 60px;
	border-bottom: 1px solid #324855
}

.detail-card__image {
	grid-area: image;
	width: 523px;
	aspect-ratio: 523/562;
	justify-self: end
}

.detail-card__image img {
	width: 100%;
	height: 100%
}

.detail-card__image--typed {
	display: none
}

.detail-card__image--typed.is-active {
	display: block
}

.detail-card__title {
	grid-area: title;
	margin: 0 0 16px
}

.detail-card__price {
	grid-area: price;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	row-gap: 16px;
	column-gap: 40px;
	align-self: end
}

.detail-card__price--typed {
	display: none
}

.detail-card__price--typed.is-active {
	display: flex
}

.detail-card__price-wrapper {
	display: flex;
	flex-direction: column;
	gap: 6px
}

.detail-card__price-text {
	color: #324855;
	font-weight: 700;
	letter-spacing: 1px
}

.detail-card__price-number {
	font-size: 60px;
	line-height: 110%;
	font-family: Opsilon, Arial, sans-serif
}

.detail-card__button {
	grid-area: button;
	width: 100%;
	max-width: 360px;
	align-self: end
}

.detail-card__text-wrapper {
	padding-top: 40px;
}

.detail-card__type-tab {
	grid-area: type;
	margin-top: -172px;
	justify-self: end;
	align-self: end;
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 423px;
	padding: 16px 71px;
	background-color: #fff;
	border: 2px solid #1a272e;
	border-radius: 30px;
	z-index: 1
}

.detail-card__type-tab-text {
	display: block;
	text-transform: lowercase;
	font-size: 22px;
	line-height: 130%;
	font-weight: 700;
	text-align: center
}

@media (max-width: 1240px) {
	.detail-card__wrapper {
		grid-template-columns: auto 50%;
		padding-bottom: 40px
	}

	.detail-card__text-wrapper {
		padding-top: 30px
	}

	.detail-card__image {
		width: 100%
	}
}

@media (max-width: 1024px) {
	.detail-card {
		padding: 35px 30px
	}

	.detail-card__wrapper {
		gap: 15px
	}

	.detail-card__title {
		margin: 0 0 10px
	}

	.detail-card__price-wrapper {
		gap: 3px
	}

	.detail-card__price-number {
		font-size: 50px
	}

	.detail-card__image {
		align-self: center
	}

	.detail-card__button {
		max-width: 310px
	}

	.detail-card__type-tab {
		gap: 15px;
		padding: 16px 20px;
		max-width: 300px
	}

	.detail-card__type-tab-text {
		font-size: 18px
	}
}

@media (max-width: 768px) {
	.detail-card {
		border-radius: 40px;
		padding: 30px 25px
	}

	.detail-card__wrapper {
		grid-template-columns: 1fr;
		grid-template-areas: "title""image""type""price""button";
		gap: 0;
		justify-items: center
	}

	.detail-card__title {
		margin: 0 0 15px;
		text-align: center
	}

	.detail-card__price {
		flex-direction: row;
		margin-top: 20px;
		text-align: center;
		justify-content: space-around
	}

	.detail-card__image {
		max-width: 400px;
		justify-self: center
	}

	.detail-card__type-tab {
		justify-self: center;
		margin-top: -111px;
		gap: 10px;
		max-width: 260px;
		padding: 10px;
		border-radius: 25px
	}

	.detail-card__type-tab-text {
		font-size: 14px
	}

	.detail-card__button {
		margin-top: 20px;
		max-width: 260px
	}
}

@media (max-width: 425px) {
	.detail-card {
		border-radius: 30px;
		padding: 20px 15px
	}

	.detail-card__wrapper {
		justify-items: center;
		padding-bottom: 30px
	}

	.detail-card__price {
		flex-direction: column;
		row-gap: 10px
	}

	.detail-card__price-number {
		font-size: 40px
	}

	.detail-card__text-wrapper {
		padding-top: 20px
	}
}

.delivery-tab__button-wrapper {
	width: 334px;
	background-color: #2a343a;
	margin: 0 auto
}

.delivery-tab__content {
	display: none;
	grid-template-areas: "info image""add  add";
	column-gap: 30px;
	row-gap: 42px;
	grid-template-columns: 1fr 1fr;
	padding: 80px 0
}

.delivery-tab__content.is-active {
	display: grid
}

.delivery-tab__info {
	grid-area: info
}

.delivery-tab__title {
	margin: 0 0 20px
}

.delivery-tab__text {
	display: flex;
	flex-direction: column;
	gap: 10px;
	letter-spacing: 1px;
	margin: 0
}

.delivery-tab__image {
	grid-area: image;
	width: 511px;
	aspect-ratio: 511/262;
	margin-bottom: -42px;
	align-self: end
}

.delivery-tab__image img {
	width: 100%;
	height: 100%
}

.delivery-tab__additional {
	grid-area: add;
	display: flex;
	flex-direction: column;
	gap: 10px
}

.delivery-tab__additional-item {
	background-color: #fff;
	color: #324855;
	border-radius: 60px;
	padding: 32px
}

.delivery-tab__subtitle {
	margin: 0 0 24px;
	color: #1a272e
}

.delivery-tab__subtitle--centered {
	max-width: 560px;
	text-align: center;
	margin: 0 auto 40px
}

.delivery-tab__additional-text {
	max-width: 739px
}

.delivery-tab__button {
	margin: 0 auto;
	width: 100%;
	max-width: 360px
}

@media (max-width: 1024px) {
	.delivery-tab__content {
		grid-template-areas: "info""image""add";
		grid-template-columns: 1fr;
		padding: 50px 0;
		gap: 20px
	}

	.delivery-tab__info {
		max-width: 895px
	}

	.delivery-tab__title {
		margin: 0 0 10px
	}

	.delivery-tab__additional-item {
		border-radius: 40px;
		padding: 25px
	}

	.delivery-tab__subtitle {
		margin: 0 0 17px
	}

	.delivery-tab__subtitle--centered {
		max-width: 480px;
		margin: 0 auto 25px
	}

	.delivery-tab__image {
		margin-bottom: -20px;
		justify-self: center
	}
}

@media (max-width: 768px) {
	.delivery-tab__content {
		padding: 30px 0;
		gap: 15px
	}

	.delivery-tab__info {
		padding: 0 15px
	}

	.delivery-tab__image {
		margin-bottom: -15px;
		width: 100%;
		max-width: 450px
	}

	.delivery-tab__additional {
		gap: 5px
	}

	.delivery-tab__additional-item {
		border-radius: 30px;
		padding: 20px 15px
	}

	.delivery-tab__title {
		margin: 0 0 5px
	}

	.delivery-tab__subtitle {
		margin: 0 0 10px
	}

	.delivery-tab__subtitle--centered {
		margin: 0 auto 15px
	}

	.delivery-tab__button {
		max-width: 280px
	}
}

@media (max-width: 425px) {
	.delivery-tab__content {
		padding: 25px 0;
		gap: 10px
	}

	.delivery-tab__button-wrapper {
		width: 200px
	}

	.delivery-tab__info {
		padding: 0
	}

	.delivery-tab__image {
		margin-bottom: -10px
	}

	.delivery-tab__additional-item {
		border-radius: 20px;
		padding: 15px 10px
	}
}

.text-block {
	display: grid;
	grid-template-areas: "text image""add  add";
	column-gap: 10px;
	justify-content: center;
	align-items: start;
	background-color: #fff;
	color: #1a272e;
	border-radius: 60px;
	padding: 32px;
	overflow: hidden
}

.text-block__wrapper {
	grid-area: text;
	display: flex;
	flex-direction: column;
	gap: 24px
}

.text-block__wrapper--centered {
	align-items: center;
	text-align: center
}

.text-block__content {
	margin: 0;
	font-weight: 700;
	letter-spacing: -.1px
}

.text-block__content--additional {
	grid-area: add;
	margin-top: 30px
}

.text-block__title {
	margin: 0
}

.text-block__title--centered {
	text-align: center
}

.text-block__image {
	grid-area: image
}

.text-block__image img {
	width: 100%;
	height: 100%
}

.text-block__amount-list {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 8px;
	list-style-type: none;
	padding: 0;
	margin: 16px 0 0
}

.text-block__amount-item {
	font-family: Opsilon, Arial, sans-serif;
	font-size: 24px;
	line-height: 100%;
	border: 2px solid currentColor;
	border-radius: 40px;
	padding: 8px 22px;
	letter-spacing: .7px
}

.text-block__attention {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	background-color: #f2f2f2;
	border-radius: 60px;
	padding: 32px;
	text-align: center;
	margin-top: 8px
}

.text-block__attention-text {
	font-size: 26px;
	line-height: 140%;
	font-weight: 700;
	max-width: 890px;
	margin: 0
}

.text-block__text-highlighted {
	max-width: 872px;
	margin: 0
}

.text-block__button {
	width: 100%;
	max-width: 360px
}

@media (max-width: 1024px) {
	.text-block {
		border-radius: 40px;
		padding: 25px 20px
	}

	.text-block__wrapper {
		gap: 15px
	}

	.text-block__amount-item {
		font-size: 20px;
		padding: 6px 16px
	}

	.text-block__amount-list {
		gap: 6px;
		margin: 12px 0 0
	}

	.text-block__attention {
		gap: 15px;
		border-radius: 40px;
		padding: 25px 20px
	}

	.text-block__attention-text {
		font-size: 20px
	}

	.text-block__content--additional {
		margin-top: 15px
	}
}

@media (max-width: 768px) {
	.text-block {
		grid-template-areas: "text""add""image";
		border-radius: 30px;
		padding: 20px 15px
	}

	.text-block__wrapper {
		gap: 10px
	}

	.text-block__image {
		justify-self: center
	}

	.text-block__amount-list {
		gap: 4px
	}

	.text-block__amount-item {
		font-size: 18px;
		padding: 4px 10px
	}

	.text-block__attention {
		gap: 10px;
		border-radius: 30px;
		padding: 20px 15px
	}

	.text-block__attention-text {
		font-size: 18px
	}

	.text-block__content--additional {
		margin-top: 10px
	}
}

@media (max-width: 425px) {
	.text-block {
		border-radius: 20px;
		padding: 15px 10px
	}

	.text-block__amount-item {
		font-size: 16px
	}

	.text-block__attention {
		border-radius: 20px;
		padding: 15px 10px
	}

	.text-block__attention-text {
		font-size: 16px
	}

	.text-block__content--additional {
		margin-top: 5px
	}

	.text-block__text-highlighted {
		font-size: 20px
	}
}

.feature {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 18px;
	background-color: #fff;
	color: #1a272e;
	border-radius: 60px;
	padding: 32px;
	min-height: 320px;
	box-shadow: inset 0 -10px #a6a6a640
}

.feature__text {
	display: flex;
	flex-direction: column;
	gap: 18px;
	color: #324855
}

.feature__title {
	margin: 0
}

.feature__description {
	margin: 0;
	max-width: 408px;
	font-weight: 700
}

.feature__icon {
	flex-shrink: 0;
	color: #ff4795;
	width: 42px;
	height: 42px
}

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

@media (max-width: 1024px) {
	.feature {
		gap: 10px;
		border-radius: 40px;
		padding: 25px;
		min-height: 280px
	}

	.feature__text {
		gap: 10px
	}
}

@media (max-width: 768px) {
	.feature {
		gap: 20px;
		min-height: auto;
		padding: 20px 15px;
		border-radius: 30px
	}

	.feature__text {
		gap: 20px
	}

	.feature__description {
		max-width: none
	}

	.feature__icon {
		width: 30px;
		height: 30px
	}
}

@media (max-width: 425px) {
	.feature {
		gap: 15px;
		border-radius: 20px;
		box-shadow: none
	}

	.feature__text {
		gap: 10px
	}

	.feature__icon {
		width: 26px;
		height: 26px
	}
}

.blog-detail-card {
	display: flex;
	flex-direction: column;
	gap: 40px;
	background-color: #fff;
	color: #1a272e;
	padding: 40px 35px;
	border-radius: 60px;
	box-shadow: inset 0 -10px #a6a6a640
}

.blog-detail-card__title {
	margin: 0
}

.blog-detail-card__date {
	display: block;
	color: #324855;
	font-weight: 700;
	margin-bottom: 16px
}

.blog-detail-card__image {
	width: 100%;
	aspect-ratio: 980/551;
	border-radius: 24px;
	overflow: hidden
}

.blog-detail-card__image img {
	width: 100%;
	height: 100%;
  object-fit: cover
}

.blog-detail-card__attention {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 32px;
	border-radius: 60px;
	background-color: #f2f2f2;
	text-align: center
}

.blog-detail-card__attention-title {
	margin: 0
}

.blog-detail-card__attention-text {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: .2px;
	max-width: 776px;
	margin: 0
}

.blog-detail-card__attention-button {
	display: inline;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: #ff4795;
	text-decoration: underline;
	border: none;
	cursor: pointer;
	transition: color .3s
}

.blog-detail-card__attention-button:hover {
	color: #db2975
}

@media (max-width: 1024px) {
	.blog-detail-card {
		padding: 35px
	}

	.blog-detail-card__attention-text {
		font-size: 22px
	}
}

@media (max-width: 768px) {
	.blog-detail-card {
		padding: 30px 20px;
		border-radius: 40px;
		gap: 30px
	}

	.blog-detail-card__date {
		margin-bottom: 10px
	}

	.blog-detail-card__attention {
		border-radius: 40px;
		padding: 20px 15px
	}

	.blog-detail-card__attention-text {
		font-size: 16px;
		max-width: 530px
	}
}

@media (max-width: 425px) {
	.blog-detail-card {
		padding: 25px 10px;
		border-radius: 30px;
		gap: 20px;
		box-shadow: none
	}

	.blog-detail-card__title {
		font-size: 28px
	}

	.blog-detail-card__attention {
		border-radius: 30px;
		padding: 15px
	}
}

.order-methods {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 20px
}

.order-methods__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: calc(50% - 10px);
	background-color: #f2f2f2;
	border-radius: 60px;
	padding: 60px 70px;
	text-align: center
}

.order-methods__item-title {
	max-width: 270px
}

.order-methods__item-button {
	width: 100%;
	margin-top: auto
}

@media (max-width: 1024px) {
	.order-methods__item {
		gap: 10px;
		border-radius: 40px;
		padding: 30px 20px;
		text-align: center
	}

	.order-methods__item-title {
		max-width: 240px
	}

	.order-methods__item-button {
		max-width: 300px
	}
}

@media (max-width: 768px) {
	.order-methods {
		flex-direction: column;
		align-items: center;
		gap: 10px
	}

	.order-methods__item {
		width: 100%;
		max-width: 380px;
		gap: 15px;
		padding: 20px
	}

	.order-methods__item-title {
		max-width: 290px
	}

	.order-methods__item-button {
		max-width: 260px
	}
}

@media (max-width: 425px) {
	.order-methods__item {
		max-width: none;
		border-radius: 30px;
		gap: 10px
	}

	.order-methods__item-title {
		max-width: 200px
	}

	.order-methods__item-button {
		max-width: 220px
	}
}

.modal {
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 50
}

.modal__wrapper {
	min-height: 444px;
	max-height: calc(100vh - 100px);
	display: grid;
	grid-template-areas: "title   button""content content";
	grid-template-rows: min-content 1fr;
	row-gap: 60px;
	column-gap: 10px;
	padding: 32px;
	border-radius: 60px;
	background-color: #fff;
	color: #1a272e;
	box-shadow: 0 10px #f2f2f2;
	overflow-y: auto
}

.modal__title {
	grid-area: title;
	align-self: center
}

.modal__button {
	grid-area: button;
	align-self: start;
	justify-self: end;
	margin-top: 10px;
	border: none;
	padding: 10px;
	background-color: transparent;
	color: #1a272e;
	cursor: pointer;
	transition: color .3s
}

.modal__button:before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	-webkit-mask-image: url("../images/plus.svg");
	mask-image: url("../images/plus.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	background-color: currentColor;
	transform: rotate(45deg)
}

.modal__button:hover {
	color: #ff4795
}

.modal__content {
	grid-area: content;
	align-self: start
}

@media (max-width: 1024px) {
	.modal__wrapper {
		min-height: 340px;
		row-gap: 40px;
		border-radius: 40px;
		padding: 30px 20px
	}

	.modal__button {
		margin-top: 2px
	}
}

@media (max-width: 768px) {
	.modal__wrapper {
		width: max-content;
		margin: 0 auto;
		grid-template-areas: "title   button""content content";
		min-height: 280px;
		max-height: calc(100vh - 50px);
		row-gap: 20px;
		padding: 20px
	}

	.modal__title {
		text-align: center;
		font-size: 30px
	}

	.modal__button {
		padding: 7px;
		margin-top: 0;
		margin-right: -5px
	}

	.modal__button:before {
		width: 22px;
		height: 22px
	}
}

@media (max-width: 425px) {
	.modal__wrapper {
		width: 100%;
		grid-template-areas: ".       title   button""content content content";
		grid-template-columns: 1fr auto 1fr;
		row-gap: 15px;
		padding: 20px 15px;
		border-radius: 30px
	}

	.modal__title {
		max-width: 200px;
		font-size: 28px
	}

	.modal__button:before {
		width: 20px;
		height: 20px
	}
}

.modal.is-modal-opened {
	display: flex
}

.header {
	position: relative;
	padding: 32px 0 17px;
	color: #fff;
	background-color: #1a272e;
	z-index: 5
}

.header__wrapper {
	display: flex;
	gap: 24px;
	justify-content: space-between;
	align-items: center
}

.header__logo {
	flex-shrink: 0;
	width: 145px;
	height: 35px
}

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

.header__logo[href] {
	transition: opacity .3s
}

.header__logo[href]:hover {
	opacity: .7
}

.header__phone {
	flex-shrink: 0
}

.header__nav-button {
	position: relative;
	display: none;
	flex-shrink: 0;
	width: 30px;
	height: 25px;
	color: #fff;
	background-color: transparent;
	padding: 0;
	border: none;
	cursor: pointer;
	transition: color .3s
}

.header__nav-button:hover {
	color: #ff4795
}

.header__nav-button-item {
	display: block;
	width: 100%;
	height: 3px;
	background-color: currentColor;
	transition: width .1s .2s
}

.header__nav-button-item:before {
	content: "";
	position: absolute;
	top: 0;
	display: block;
	width: 100%;
	height: 3px;
	background-color: currentColor;
	transition: transform .3s, top .3s .3s
}

.header__nav-button-item:after {
	content: "";
	position: absolute;
	bottom: 0;
	display: block;
	width: 100%;
	height: 3px;
	background-color: currentColor;
	transition: transform .3s, bottom .3s .3s
}

@media (max-width: 1024px) {
	.header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		padding: 15px 0
	}

	.header__wrapper {
		gap: 34px
	}

	.header__nav {
		display: none
	}

	.header__nav-button {
		display: block
	}

	.header__phone {
		margin-left: auto
	}
}

@media (max-width: 768px) {
	.header__logo {
		width: 120px;
		height: 29px
	}
}

@media (max-width: 425px) {
	.header__wrapper {
		gap: 10px
	}

	.header__phone {
		margin-left: 0
	}

	.header__nav-button {
		width: 26px;
		height: 21px
	}
}

.header.is-menu-opened .header__nav {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	max-height: calc(100vh - 65px);
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	align-items: stretch;
	justify-content: stretch;
	gap: 0;
	padding: 15px 40px;
	background-color: #1a272e;
	font-size: 20px;
	line-height: 100%;
	text-align: end;
	overflow-y: auto;
	border-top: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff
}

.header.is-menu-opened .header__nav .nav__link {
	padding: 13px 0;
	border: none;
	border-radius: 0;
	box-shadow: none;
	transition: color .3s;
	background-color: transparent
}

.header.is-menu-opened .header__nav .nav__link:hover {
	background-color: transparent;
	color: #ff4795
}

.header.is-menu-opened .header__nav-button-item {
	width: 0
}

.header.is-menu-opened .header__nav-button-item:before {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	transition: top .3s, transform .3s .3s
}

.header.is-menu-opened .header__nav-button-item:after {
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
	transition: bottom .3s, transform .3s .3s
}

@media (max-width: 1024px) {
	.header.is-menu-opened .header__nav .nav__link {
		text-align: end
	}
}

@media (max-width: 768px) {
	.header.is-menu-opened .header__nav {
		max-height: calc(100vh - 59px)
	}
}

@media (max-width: 425px) {
	.header.is-menu-opened .header__nav {
		padding: 15px 20px
	}
}

.hero {
	position: relative
}

.hero:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("../images/hero/hero-caption.svg");
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 100%, 401px, cover;
	z-index: -3
}

.hero:after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
  right:0;
	display: block;
	height: 157px;
	min-height: 50px;
	background-color: #fdcf01;
  clip-path: polygon(0 0, 100% 85%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 85%, 100% 100%, 0 100%);
	z-index: -1
}

.hero__wrapper {
	position: relative;
	max-width: 1440px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	padding-top: 23px
}

.hero__text {
	position: relative;
	margin-right: -90px;
	z-index: 2
}

.hero__title,
.hero__subtitle {
	position: relative;
	margin: 0;
	background-color: #fff;
	color: #1a272e;
	border-radius: 50%
}

.hero__title:after,
.hero__subtitle:after {
	content: "";
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-left: 30px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 100px solid #ffffff
}

.hero__title {
	width: 695px;
	padding: 51px 94px;
	transform: rotate(-8deg)
}

.hero__title:after {
	left: 293px;
	bottom: -74px;
	transform: rotate(-8deg)
}

.hero__subtitle {
	width: 482px;
	left: 228px;
	top: 39px;
	padding: 89px 48px 67px 56px;
	transform: rotate(6deg)
}

.hero__subtitle:after {
	right: -39px;
	bottom: 102px;
	transform: rotate(72deg)
}

.hero__title-text,
.hero__subtitle-text {
	position: relative;
	z-index: 1;
	display: block
}

.hero__image {
	position: relative;
	margin-top: -23px;
	margin-right: 72px;
	width: 552px;
	aspect-ratio: 552/816;
	z-index: -2
}

.hero__image img {
	width: 100%;
	height: 100%
}

@media (max-width: 1440px) {
	.hero:before {
		height: 401px
	}

	.hero:after {
    height: 100px;
	}
}

@media (max-width: 1439px) {
	.hero__text {
		width: 54%
	}

	.hero__title {
		width: 85%;
		font-size: 3.5vw
	}

	.hero__subtitle {
		width: 60%;
		font-size: 2.5vw
	}

	.hero__image {
		width: 38%
	}
}

@media (max-width: 1240px) {
	.hero__title {
		padding: 40px 80px
	}

	.hero__subtitle {
		padding: 50px 45px;
		left: 176px;
		top: 15px
	}

	.hero__subtitle:after {
		right: -22px;
		bottom: 26px;
		transform: rotate(84deg)
	}
}

@media (max-width: 1024px) {
	.hero {
		padding-top: 65px
	}

	.hero__title {
		padding: 30px 60px
	}

	.hero__title:after {
		left: 184px
	}

	.hero__subtitle {
		padding: 40px 35px;
		left: 140px
	}

	.hero__subtitle:after {
		bottom: 11px
	}

	.hero__image {
		margin-right: 0
	}

	.hero__text {
		margin-right: -10px
	}
}

@media (max-width: 768px) {
	.hero {
		padding-top: 59px
	}

  .hero::after {
    height: 50px
  }

	.hero__image {
		margin-top: 30px
	}

	.hero__text {
		margin-right: 30px;
		text-align: center
	}

	.hero__title {
		padding: 30px 30px 25px;
		width: 90%
	}

	.hero__title:after {
		left: 110px;
		bottom: -40px;
		border-left: 15px solid transparent;
		border-right: 10px solid transparent;
		border-bottom: 70px solid #ffffff
	}

	.hero__subtitle {
		padding: 30px 20px 25px;
		width: 85%;
		left: 70px;
		top: 7px;
		font-size: 3.5vw
	}

	.hero__subtitle:after {
		right: -2px;
		bottom: 12px;
		transform: rotate(83deg);
		border-left: 15px solid transparent;
		border-right: 10px solid transparent;
		border-bottom: 70px solid #ffffff
	}
}

@media (max-width: 425px) {
	.hero__wrapper {
		flex-direction: column-reverse
	}

	.hero:before {
		height: 100%;
		bottom: auto;
		background-size: auto 490px;
		background-position: left top
	}

  .hero::after {
    bottom: auto;
    top: 507px
  }

	.hero__text {
		width: 100%;
		background-color: #fdcf01;
		padding: 0 20px 30px;
		text-align: start;
		margin-right: 0
	}

	.hero__image {
		width: 320px;
		margin: 0 auto
	}

	.hero__title,
	.hero__subtitle {
		position: relative;
		left: 0;
		top: 0;
		width: 100%;
		transform: none;
		border-radius: 30px;
		padding: 20px
	}

	.hero__title:after,
	.hero__subtitle:after {
		bottom: auto;
		border-left: 30px solid transparent;
		border-right: 20px solid transparent;
		border-bottom: 100px solid #ffffff
	}

	.hero__title {
		margin-bottom: 10px;
		font-size: 28px;
		line-height: 110%
	}

	.hero__title:after {
		top: -80px;
		left: 52px;
		transform: rotate(20deg)
	}

	.hero__subtitle {
		font-size: 24px;
		line-height: 110%
	}

	.hero__subtitle:after {
		top: -45px;
		right: 150px;
		transform: rotate(-48deg)
	}
}

.short-catalog {
	position: relative;
	margin-top: -1px;
	background-color: #fdcf01;
	color: #1a272e;
	padding: 30px 0 81px
}

.short-catalog:before {
	background-image: url("../images/bg/short-catalog-bg.png")
}

.short-catalog__container {
	position: relative;
	z-index: 1
}

.short-catalog__title {
	margin: 0 0 0 -94px;
	max-width: 620px;
	padding: 50px 54px 50px 94px;
	background-color: #fff;
	border-radius: 50%
}

.short-catalog__preview {
	margin-top: -90px
}

@media (max-width: 1240px) {
	.short-catalog__title {
		padding: 40px 63px 40px 75px;
		margin-left: 0;
		margin-bottom: 80px
	}
}

@media (max-width: 1024px) {
	.short-catalog {
		padding: 30px 0 70px
	}

	.short-catalog__title {
		max-width: 450px;
		padding: 35px 45px 35px 60px
	}
}

@media (max-width: 768px) {
	.short-catalog {
		padding: 30px 0
	}

	.short-catalog__wrapper {
		background-color: #fff;
		border-radius: 40px;
		padding: 20px 10px;
		overflow: hidden
	}

	.short-catalog__title {
		padding: 0;
		margin: 0 auto;
		text-align: center;
		max-width: 600px
	}

	.short-catalog__preview {
		margin-top: 0
	}
}

@media (max-width: 425px) {
	.short-catalog__title {
		margin-bottom: 15px
	}
}

.short-features {
	position: relative;
	background-color: #fdcf01;
	color: #1a272e;
	margin-top: -1px
}

.short-features:before {
	background-image: url("../images/bg/short-features-bg.png")
}

.short-features__container {
	position: relative;
	z-index: 1
}

.short-features__wrapper {
	padding: 60px 0 144px
}

.short-features__content {
	position: relative;
	margin-right: -95px;
	display: grid;
	grid-template-areas: "list title""list image"
}

.short-features__title {
	grid-area: title;
	position: relative;
	align-self: start;
	margin: 10px 0 0 -44px;
	max-width: 595px;
	padding: 60px 42px 53px 76px;
	background-color: #fff;
	border-radius: 50%;
	transform: rotate(2deg)
}

.short-features__title:after {
	content: "";
	position: absolute;
	bottom: -72px;
	right: 164px;
	display: block;
	width: 0;
	height: 0;
	border-left: 30px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 100px solid #ffffff;
	transform: rotate(158deg)
}

.short-features__title-text {
	position: relative;
	z-index: 1;
	display: block
}

.short-features__list {
	grid-area: list;
	position: relative;
	z-index: 1;
	margin: 190px 0 160px;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 10px;
	max-width: 508px
}

.short-features__image {
	grid-area: image;
	align-self: end;
	justify-self: end;
	width: 607px;
	aspect-ratio: 603/836;
	min-width: 425px;
	margin-left: 32px;
	margin-top: -63px
}

.short-features__image img {
	width: 100%;
	height: 100%
}

.short-features__banner {
	width: 100%;
	margin-top: -136px
}

@media (max-width: 1240px) {
	.short-features__wrapper {
		padding: 40px 0 120px
	}

	.short-features__title {
		margin: 0;
		max-width: 500px;
		padding: 40px 30px 40px 66px
	}

	.short-features__content {
		margin-right: 0
	}

	.short-features__list {
		max-width: 420px;
		margin-left: auto
	}

	.short-features__image {
		margin-top: 0;
		margin-left: auto;
		width: 100%;
		max-width: 550px
	}

	.short-features__banner {
		margin-top: -110px
	}
}

@media (max-width: 1024px) {
	.short-features__wrapper {
		padding: 30px 0 100px
	}

	.short-features__title {
		margin-left: auto;
		max-width: 420px;
		padding: 30px 50px 30px 60px
	}

	.short-features__title:after {
		bottom: -45px;
		right: 144px;
		transform: rotate(188deg)
	}

	.short-features__list {
		max-width: 340px;
		margin: 100px 0
	}

	.short-features__image {
		margin-top: -30px;
		max-width: 450px
	}

	.short-features__banner {
		margin-top: -100px
	}
}

@media (max-width: 768px) {
	.short-features {
		overflow: hidden
	}

	.short-features__wrapper {
		padding: 30px 0 50px
	}

	.short-features__title {
		max-width: 340px;
		margin-left: -130px;
		padding: 40px 25px 30px;
		text-align: center;
		align-self: start
	}

	.short-features__title:after {
		right: 73px;
		bottom: -47px;
		transform: rotate(136deg)
	}

	.short-features__list {
		max-width: 320px;
		margin: 160px 0 95px
	}

	.short-features__image {
		width: 40%;
		min-width: 320px;
		margin: 0 0 0 -15px
	}

	.short-features__banner {
		margin-top: -80px
	}
}

@media (max-width: 425px) {
	.short-features__wrapper {
		padding: 30px 0
	}

	.short-features__content {
		grid-template-areas: "title title""list .";
		grid-template-columns: auto 1fr;
		row-gap: 10px;
		margin-bottom: 20px
	}

	.short-features__title {
		max-width: none;
		width: 100%;
		margin: 0;
		padding: 20px;
		border-radius: 30px;
		transform: none
	}

	.short-features__title:after {
		content: none
	}

	.short-features__list {
		max-width: 180px;
		gap: 5px;
		margin: 0
	}

	.short-features__image {
		position: absolute;
		left: 45%;
		bottom: -90px;
		min-width: 300px;
		z-index: -1
	}

	.short-features__banner {
		margin: 0
	}
}

.short-about {
	padding: 60px 0 0
}

.short-about__wrapper {
	position: relative;
	display: grid;
	grid-template-areas: "subtitle subtitle""image    title""image    text";
	grid-template-columns: 1fr 510px;
	align-items: start
}

.short-about__wrapper:before {
	content: "";
	position: absolute;
	right: 184px;
	top: -64px;
	display: block;
	width: 195px;
	aspect-ratio: 195/265;
	background-image: url("../images/cat-balloon-1.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain
}

.short-about__subtitle {
	grid-area: subtitle;
	position: relative;
	width: 573px;
	margin: 0;
	padding: 27px;
	border: 3px solid #ffffff;
	background-color: #1a272e;
	border-radius: 40px
}

.short-about__subtitle:before,
.short-about__subtitle:after {
	content: "";
	position: absolute;
	display: block;
	aspect-ratio: 1/1;
	border-radius: 50%;
	border: 3px solid #ffffff
}

.short-about__subtitle:before {
	width: 22px;
	right: -31px;
	top: 10px
}

.short-about__subtitle:after {
	width: 16px;
	right: -51px;
	top: -3px
}

.short-about__title {
	grid-area: title;
	position: relative;
	margin: -27px 0 0 -106px;
	width: 594px;
	padding: 58px 107px;
	background-color: #fff;
	color: #1a272e;
	border-radius: 50%;
	transform: rotate(-3deg)
}

.short-about__title:after {
	content: "";
	position: absolute;
	left: -35px;
	bottom: 13px;
	display: block;
	width: 0;
	height: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-bottom: 100px solid #ffffff;
	transform: rotate(-115deg)
}

.short-about__title-text {
	position: relative;
	z-index: 1;
	display: block;
	transform: rotate(3deg)
}

.short-about__subtitle-text {
	display: block
}

.short-about__image {
	grid-area: image;
	width: 100%;
	max-width: 550px;
	aspect-ratio: 531/661;
	margin-left: -17px;
	margin-top: -14px
}

.short-about__image img {
	width: 100%;
	height: 100%
}

.short-about__text {
	grid-area: text;
	align-self: start;
	margin-top: 42px;
	margin-bottom: 73px;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 1px;
	color: #efefef;
	width: 510px
}

.short-about__text-content {
	margin-bottom: 9px
}

@media (max-width: 1240px) {
	.short-about__image {
		margin: 0 auto
	}

	.short-about__title {
		width: 400px;
		padding: 40px 50px;
		margin-top: 10px;
		margin-left: 0
	}

	.short-about__text {
		margin-top: 62px;
		margin-bottom: 102px
	}
}

@media (max-width: 1024px) {
	.short-about {
		padding: 30px 0 0
	}

	.short-about__wrapper {
		grid-template-areas: "image subtitle""image title""text text";
		grid-template-columns: 1fr 1fr
	}

	.short-about__wrapper:before {
		top: auto;
		bottom: 80px;
		right: 0;
		width: calc(100% - 530px);
		max-width: 200px
	}

	.short-about__subtitle {
		width: 100%;
		padding: 20px;
		border-radius: 30px;
		margin-left: -20px
	}

	.short-about__title {
		width: 100%;
		max-width: 355px;
		transform: rotate(3deg);
		padding: 40px 30px 40px 50px
	}

	.short-about__title:after {
		left: 0;
		bottom: 77px;
		transform: rotate(-55deg)
	}

	.short-about__image {
		width: 100%
	}

	.short-about__text {
		margin: 0
	}
}

@media (max-width: 768px) {
	.short-about__wrapper {
		grid-template-areas: "subtitle subtitle""image    title""text     text";
		grid-template-columns: 55% 45%
	}

	.short-about__wrapper:before {
		bottom: auto;
		top: 50%;
		width: 50%;
		max-width: 260px;
		right: 5%;
		opacity: .1
	}

	.short-about__subtitle {
		width: 90%;
		max-width: 500px;
		padding: 15px;
		border-radius: 20px;
		margin-left: 0
	}

	.short-about__subtitle:before {
		width: 18px;
		right: -30px;
		top: 3px
	}

	.short-about__subtitle:after {
		width: 13px;
		right: -45px;
		top: -7px
	}

	.short-about__title {
		font-size: 5.5vw;
		padding: 30px 20px;
		text-align: center
	}

	.short-about__title:after {
		left: -17px;
		bottom: 9px;
		transform: rotate(-100deg);
		border-left: 20px solid transparent;
		border-right: 20px solid transparent
	}

	.short-about__text {
		font-size: 16px;
		margin-left: 20px;
		margin-top: 20px;
		width: 300px
	}

	.short-about__image {
		max-width: 340px
	}
}

@media (max-width: 425px) {
	.short-about__wrapper {
		grid-template-areas: "subtitle""title""image""text";
		grid-template-columns: 1fr
	}

	.short-about__wrapper:before {
		right: 0;
		top: 60%
	}

	.short-about__subtitle {
		padding: 10px;
		margin-bottom: 15px;
		border-radius: 10px;
		border-width: 2px
	}

	.short-about__subtitle:before,
	.short-about__subtitle:after {
		border-width: 2px
	}

	.short-about__subtitle:before {
		width: 14px;
		right: -20px;
		top: 0
	}

	.short-about__subtitle:after {
		width: 10px;
		right: -30px;
		top: -8px
	}

	.short-about__title {
		transform: none;
		max-width: 250px;
		border-radius: 20px;
		padding: 20px;
		margin: 0 0 10px auto;
		font-size: 28px;
		line-height: 110%
	}

	.short-about__title:after {
		left: 50%;
		bottom: -20px;
		border-left: 20px solid transparent;
		border-right: 20px solid transparent;
		border-bottom: 60px solid #ffffff;
		transform: rotate(180deg) translate(50%)
	}

	.short-about__title-text {
		transform: none
	}

	.short-about__image {
		max-width: 300px;
		margin: 0 0 15px
	}

	.short-about__text {
		margin: 0;
		padding: 0 10px
	}
}

.index-delivery {
	padding: 107px 0 192px
}

.index-delivery__banner {
	width: 100%
}

@media (max-width: 768px) {
	.index-delivery {
		padding: 60px 0
	}
}

@media (max-width: 425px) {
	.index-delivery {
		padding: 30px 0
	}
}

.short-reviews {
	position: relative;
	margin-top: -1px;
	background-color: #fdcf01;
	color: #1a272e;
	padding: 140px 0
}

.short-reviews:before {
	background-image: url("../images/bg/short-reviews-bg.png")
}

.short-reviews__wrapper {
	position: relative;
	z-index: 1
}

.short-reviews__title {
	margin: 0 200px 0 0
}

.short-reviews__button {
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: lowercase
}

@media (max-width: 1024px) {
	.short-reviews {
		padding: 60px 0
	}
}

@media (max-width: 768px) {
	.short-reviews {
		padding: 40px 0
	}

	.short-reviews__wrapper {
		max-width: 510px;
		margin: 0 auto
	}

	.short-reviews__title {
		margin: 0 150px 0 10px
	}

	.short-reviews__button {
		margin-left: 10px
	}
}

@media (max-width: 425px) {
	.short-reviews__title {
		margin: 0 100px 0 10px
	}
}

.short-reviews--dark {
	background-color: #1a272e;
	color: #fff
}

.faq {
	position: relative;
	margin-top: -1px;
	background-color: #fdcf01;
	color: #1a272e;
	padding-bottom: 20px
}

.faq:before {
	background-image: url("../images/bg/faq-bg.png")
}

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

.faq__content {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(auto, 510px));
	grid-template-rows: auto 1fr;
	justify-content: space-between;
	grid-template-areas: "image title""image list"
}

.faq__image {
	grid-area: image;
	align-self: end;
	max-width: 510px;
	aspect-ratio: 510/831
}

.faq__image img {
	width: 100%;
	height: 100%
}

.faq__title {
	grid-area: title;
	margin: 80px 0 50px
}

.faq__list {
	grid-area: list;
	padding-bottom: 110px
}

@media (max-width: 1024px) {
	.faq__content {
		grid-template-columns: minmax(240px, auto) minmax(370px, auto);
		grid-template-areas: "title title""image list"
	}

	.faq__image {
		max-width: 320px
	}

	.faq__title {
		grid-area: title;
		margin: 40px 0
	}

	.faq__list {
		padding-bottom: 70px
	}
}

@media (max-width: 768px) {
	.faq__wrapper {
		max-width: 680px;
		margin: 0 auto
	}

	.faq__content {
		grid-template-columns: auto;
		grid-template-areas: "title""list""image"
	}

	.faq__list {
		padding-bottom: 0
	}

	.faq__image {
		width: 200px;
		margin: 0 auto
	}

	.faq__title {
		text-align: center
	}

	.faq__banner {
		max-width: 510px;
		margin: -85px auto 0
	}
}

@media (max-width: 425px) {
	.faq__title {
		text-align: start;
		margin: 20px 0 30px
	}

	.faq__banner {
		margin-top: -45px
	}
}

.footer {
	position: relative;
	padding: 30px 0 60px;
	background-color: #fdcf01;
	color: #1a272e;
	margin-top: -1px;
	z-index: 1
}

.footer__wrapper {
	display: flex;
	gap: 24px;
	justify-content: space-between;
	align-items: center
}

.footer__phone {
	flex-shrink: 0
}

@media (max-width: 1024px) {
	.footer {
		padding: 20px 0
	}

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

@media (max-width: 768px) {
	.footer {
		padding: 15px 0;
		border-top: 1px solid currentColor
	}

	.footer__nav {
		max-width: 460px
	}
}

.footer--dark {
	background-color: #1a272e;
	color: #efefef
}

.catalog {
	padding: 43px 0 120px
}

.catalog__title {
	margin: 0 0 24px
}

@media (max-width: 1024px) {
	.catalog {
		padding: 85px 0 100px
	}
}

@media (max-width: 768px) {
	.catalog {
		padding: 79px 0 60px
	}
}

.detail {
	padding: 43px 0 120px
}

@media (max-width: 1024px) {
	.detail {
		padding-top: 85px
	}
}

@media (max-width: 768px) {
	.detail {
		padding: 79px 0 60px
	}
}

.delivery {
	padding: 43px 0 60px
}

.delivery__title {
	margin: 0 0 20px
}

@media (max-width: 1024px) {
	.delivery {
		padding: 85px 0 20px
	}
}

@media (max-width: 768px) {
	.delivery {
		padding: 79px 0 15px
	}
}

@media (max-width: 425px) {
	.delivery__title {
		margin: 0 0 15px
	}
}

.law {
	padding: 43px 0 140px
}

.law__title {
	margin: 0 0 80px
}

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

.law__text {
	display: flex;
	flex-direction: column;
	gap: 24px;
	background-color: #fff;
	color: #1a272e;
	border-radius: 60px;
	padding: 32px
}

.law__subtitle {
	margin: 0
}

.law__content {
	max-width: 831px
}

.law__attention {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	background-color: #ff4795;
	color: #fff;
	border-radius: 60px;
	padding: 32px;
	text-align: center;
	letter-spacing: 1px
}

.law__attention-text {
	margin: 0;
	font-size: 24px;
	line-height: 150%;
	font-weight: 700;
	max-width: 890px
}

.law__subtitle--centered {
	text-align: center;
	max-width: 872px;
	margin: 0 auto
}

.law__button {
	width: 100%;
	max-width: 360px;
	margin: 16px auto 0
}

@media (max-width: 1024px) {
	.law {
		padding: 85px 0 100px
	}

	.law__title {
		margin: 0 0 40px
	}

	.law__text {
		gap: 20px;
		border-radius: 40px;
		padding: 25px 20px
	}

	.law__attention {
		gap: 15px;
		border-radius: 40px;
		padding: 20px
	}

	.law__attention-text {
		font-size: 20px;
		max-width: 800px
	}

	.law__button {
		margin: 10px auto 0
	}
}

@media (max-width: 768px) {
	.law {
		padding: 79px 0 100px
	}

	.law__title {
		margin: 0 0 30px
	}

	.law__attention-text {
		font-size: 16px
	}

	.law__text {
		gap: 15px;
		border-radius: 30px;
		padding: 20px 15px
	}

	.law__attention {
		gap: 10px;
		border-radius: 30px;
		padding: 15px 10px;
		letter-spacing: normal
	}

	.law__button {
		margin: 5px auto 0;
		max-width: 280px
	}
}

@media (max-width: 425px) {
	.law {
		padding: 79px 0 30px
	}

	.law__title {
		margin: 0 0 20px
	}

	.law__attention-text {
		font-size: 14px
	}

	.law__text {
		gap: 10px;
		border-radius: 20px;
		padding: 15px 10px
	}

	.law__attention {
		gap: 5px;
		border-radius: 20px
	}

	.law__subtitle--centered {
		font-size: 18px
	}

	.law__button {
		margin: 0 auto
	}
}

.wholesale {
	padding: 43px 0 140px
}

.wholesale__title {
	margin: 0 0 80px
}

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

.wholesale__image {
	width: 317px;
	aspect-ratio: 317/251
}

@media (max-width: 1024px) {
	.wholesale {
		padding: 85px 0 100px
	}

	.wholesale__title {
		margin: 0 0 40px
	}

	.wholesale__image {
		width: 100%;
		max-width: 280px
	}
}

@media (max-width: 768px) {
	.wholesale {
		padding: 79px 0 100px
	}

	.wholesale__title {
		margin: 0 0 30px
	}

	.wholesale__image {
		max-width: 400px;
		margin-bottom: -20px;
		margin-top: 15px
	}
}

@media (max-width: 425px) {
	.wholesale {
		padding: 79px 0 30px
	}

	.wholesale__title {
		margin: 0 0 20px
	}

	.wholesale__info {
		gap: 5px
	}

	.wholesale__image {
		max-width: 300px;
		margin-bottom: -15px;
		margin-top: 10px
	}
}

.contacts {
	padding: 43px 0 140px
}

.contacts__title {
	margin: 0 0 80px
}

.contacts__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style-type: none;
	padding: 0;
	margin: 0
}

.contacts__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
	background-color: #fff;
	color: #1a272e;
	border-radius: 60px;
	padding: 32px
}

.contacts__subtitle {
	margin: 0;
	font-family: Opsilon, Arial, sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 120%;
	color: #7e7e7e;
	text-transform: uppercase
}

.contacts__text[href] {
	color: #ff4795;
	text-underline-offset: 8px;
	transition: color .3s
}

.contacts__text[href]:hover {
	color: #db2975
}

@media (max-width: 1024px) {
	.contacts {
		padding: 85px 0 100px
	}

	.contacts__title {
		margin: 0 0 40px
	}

	.contacts__item {
		border-radius: 40px;
		padding: 25px 20px
	}

	.contacts__subtitle {
		font-size: 22px
	}
}

@media (max-width: 768px) {
	.contacts {
		padding: 79px 0 100px
	}

	.contacts__title {
		margin: 0 0 30px
	}

	.contacts__list {
		gap: 5px
	}

	.contacts__item {
		gap: 5px;
		border-radius: 30px;
		padding: 15px
	}

	.contacts__subtitle {
		font-size: 18px
	}

	.contacts__text {
		font-size: 26px
	}

	.contacts__text[href] {
		text-underline-offset: 4px
	}
}

@media (max-width: 425px) {
	.contacts {
		padding: 79px 0 30px
	}

	.contacts__title {
		margin: 0 0 20px
	}

	.contacts__item {
		border-radius: 20px
	}

	.contacts__subtitle {
		font-size: 16px
	}
}

.error {
	padding: 33px 0 0
}

.error__container {
	max-width: 1200px;
	min-width: 320px;
	margin: 0 auto
}

.error__wrapper {
	display: grid;
	grid-template-areas: "text  image""title title";
	margin-left: -32px
}

.error__image {
	grid-area: image;
	width: 473px;
	aspect-ratio: 473/655;
	margin-left: -96px
}

.error__image img {
	width: 100%;
	height: 100%
}

.error__text {
	grid-area: text;
	display: flex;
	flex-direction: column;
	margin-top: 7px
}

.error__subtitle {
	position: relative;
	margin: 0;
	background-color: #fff;
	color: #1a272e;
	border-radius: 50%;
	width: 775px;
	padding: 89px 92px 75px 108px
}

.error__subtitle:after {
	content: "";
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-left: 35px solid transparent;
	border-right: 35px solid transparent;
	border-bottom: 120px solid #ffffff;
	right: -50px;
	bottom: 80px;
	transform: rotate(122deg)
}

.error__subtitle-text {
	position: relative;
	z-index: 1;
	display: block
}

.error__title {
	position: relative;
	z-index: -1;
	grid-area: title;
	margin: -478px 0 0 90px;
	font-family: Opsilon, Arial, sans-serif;
	font-size: 510px;
	line-height: 110%;
	font-weight: 400;
	color: #324855
}

.error__button {
	position: relative;
	z-index: 1;
	margin-top: -82px;
	margin-right: 128px;
	transform: rotate(-6deg);
	align-self: flex-end
}

@media (max-width: 1439px) {
	.error__wrapper {
		margin-left: 0
	}
}

@media (max-width: 1240px) {
	.error__image {
		margin-left: 0;
		width: 100%;
		max-width: 430px
	}

	.error__text {
		margin-top: 30px;
		margin-left: 20px
	}

	.error__subtitle {
		width: 100%;
		max-width: 630px;
		padding: 60px 70px 60px 80px
	}

	.error__subtitle:after {
		right: -25px;
		bottom: 18px;
		transform: rotate(110deg)
	}

	.error__button {
		margin-top: -40px;
		margin-right: 80px
	}
}

@media (max-width: 1024px) {
	.error {
		padding: 80px 0 0
	}

	.error__image {
		max-width: 360px;
		margin-top: 50px
	}

	.error__text {
		margin-top: 0;
		justify-self: end
	}

	.error__subtitle {
		font-size: 32px;
		max-width: 440px;
		padding: 50px
	}

	.error__subtitle:after {
		right: -10px;
		bottom: 0;
		transform: rotate(120deg)
	}

	.error__title {
		font-size: 400px;
		margin: -370px 0 0 90px
	}

	.error__button {
		margin: -30px auto 0
	}
}

@media (max-width: 768px) {
	.error__wrapper {
		grid-template-areas: "text""image""title";
		justify-items: center
	}

	.error__text {
		justify-self: center;
		margin-left: 0
	}

	.error__image {
		max-width: 300px;
		margin-top: 0
	}

	.error__subtitle {
		font-size: 26px;
		max-width: 400px;
		padding: 40px 50px
	}

	.error__subtitle:after {
		right: 50%;
		bottom: -40px;
		transform: translate(-50%) rotate(180deg);
		border-left: 25px solid transparent;
		border-right: 25px solid transparent;
		border-bottom: 80px solid #ffffff
	}

	.error__title {
		font-size: 300px;
		line-height: 240px;
		justify-self: center;
		margin: -240px 0 0
	}

	.error__button {
		margin: -30px 0 0 auto
	}
}

@media (max-width: 425px) {
	.error__subtitle {
		font-size: 24px;
		max-width: none;
		padding: 20px 20px 80px;
		border-radius: 30px;
		text-align: center
	}

	.error__subtitle:after {
		bottom: -50px
	}

	.error__text {
		padding: 0 10px;
		margin-bottom: 40px;
		max-width: 340px
	}

	.error__image {
		max-width: 210px
	}

	.error__title {
		font-size: 210px;
		line-height: 190px;
		margin: -190px 0 0
	}

	.error__button {
		margin: -70px auto 0;
		width: calc(100% - 40px);
		transform: none
	}
}

.about {
	padding: 43px 0 0
}

.about__title {
	margin: 0 0 40px
}

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

.about__text-block {
	column-gap: 28px
}

.about__image {
	width: 317px;
	aspect-ratio: 317/332
}

@media (max-width: 1240px) {
	.about {
		padding: 60px 0 80px
	}
}

@media (max-width: 1024px) {
	.about {
		padding: 100px 0 60px
	}

	.about__title {
		margin: 0 0 30px
	}

	.about__text-block {
		column-gap: 10px
	}

	.about__image {
		width: 100%;
		max-width: 280px
	}
}

@media (max-width: 768px) {
	.about {
		padding: 100px 0 40px
	}

	.about__title {
		margin: 0 0 20px
	}

	.about__image {
		max-width: 300px;
		margin-top: 15px
	}
}

@media (max-width: 425px) {
	.about__info {
		gap: 5px
	}
}

.features {
	padding: 140px 0
}

.features__title {
	margin: 0 0 40px
}

.features__list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	list-style-type: none;
	padding: 0;
	margin: 0
}

.features__item {
	width: calc(50% - 15px)
}

@media (max-width: 1240px) {
	.features {
		padding: 80px 0
	}
}

@media (max-width: 1024px) {
	.features {
		padding: 60px 0
	}

	.features__title {
		margin: 0 0 30px
	}

	.features__list {
		gap: 14px
	}

	.features__item {
		width: calc(50% - 7px)
	}
}

@media (max-width: 768px) {
	.features {
		padding: 40px 0
	}

	.features__title {
		text-align: center
	}

	.features__list {
		gap: 10px
	}

	.features__item {
		width: 100%
	}
}

@media (max-width: 425px) {
	.features {
		padding: 60px 0 40px
	}

	.features__title {
		margin: 0 0 15px
	}
}

.short-blog {
	padding: 140px 0
}

.short-blog__title {
	margin: 0 0 38px
}

.short-blog__list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px
}

.short-blog__item {
	width: calc(50% - 15px)
}

@media (max-width: 1240px) {
	.short-blog {
		padding: 80px 0
	}
}

@media (max-width: 1024px) {
	.short-blog {
		padding: 40px 0
	}

	.short-blog__title {
		margin: 0 0 30px
	}

	.short-blog__list {
		gap: 14px
	}

	.short-blog__item {
		width: calc(50% - 7px)
	}
}

@media (max-width: 768px) {
	.short-blog__title {
		text-align: center
	}

	.short-blog__wrapper {
		max-width: 510px;
		margin: 0 auto
	}

	.short-blog__item {
		width: 100%
	}
}

@media (max-width: 425px) {
	.short-blog__title {
		margin: 0 0 15px
	}

	.short-blog__list {
		gap: 10px
	}
}

.blog {
	padding: 43px 0 140px
}

.blog__title {
	margin: 0 0 80px
}

.blog__list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px
}

.blog__item {
	width: calc(50% - 15px)
}

@media (max-width: 1024px) {
	.blog {
		padding: 85px 0 100px
	}

	.blog__title {
		margin: 0 0 40px
	}

	.blog__list {
		gap: 14px
	}

	.blog__item {
		width: calc(50% - 7px)
	}
}

@media (max-width: 768px) {
	.blog {
		padding: 79px 0 100px
	}

	.blog__wrapper {
		max-width: 510px;
		margin: 0 auto
	}

	.blog__item {
		width: 100%
	}
}

@media (max-width: 425px) {
	.blog {
		padding: 79px 0 30px
	}

	.blog__title {
		margin: 0 0 20px
	}

	.blog__list {
		gap: 10px
	}
}

.blog-detail {
	padding: 36px 0 140px
}

@media (max-width: 1024px) {
	.blog-detail {
		padding: 85px 0 100px
	}
}

@media (max-width: 768px) {
	.blog-detail {
		padding: 79px 0 60px
	}
}

.reviews {
	padding: 43px 0 140px
}

.reviews__title {
	margin: 0 0 40px
}

.reviews__list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px
}

.reviews__item {
	width: calc(50% - 15px)
}

@media (max-width: 1024px) {
	.reviews {
		padding: 85px 0 100px
	}

	.reviews__title {
		margin: 0 0 30px
	}

	.reviews__list {
		gap: 14px
	}

	.reviews__item {
		width: calc(50% - 7px)
	}
}

@media (max-width: 768px) {
	.reviews {
		padding: 79px 0 100px
	}

	.reviews__title {
		margin: 0 0 20px
	}

	.reviews__item {
		width: 100%
	}
}

@media (max-width: 425px) {
	.reviews {
		padding: 79px 0 30px
	}

	.reviews__list {
		gap: 7px
	}
}

.sales {
	padding: 43px 0 140px
}

.sales__title {
	margin: 0 0 40px
}

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

.sales__item {
	display: flex;
	justify-content: space-between;
	background-color: #fff;
	color: #1a272e;
	border-radius: 60px;
	overflow: hidden
}

.sales__item-text {
	position: relative;
	z-index: 1;
	padding: 32px 0 32px 32px;
	margin: 0
}

.sales__item-image {
	align-self: end;
	flex-shrink: 0;
	width: 50%;
	max-width: 458px;
	aspect-ratio: 458/396
}

.sales__item-image img {
	width: 100%;
	height: 100%
}

@media (max-width: 1240px) {
	.sales__item-image {
		max-width: 400px
	}
}

@media (max-width: 1024px) {
	.sales {
		padding: 85px 0 100px
	}

	.sales__title {
		margin: 0 0 30px
	}

	.sales__list {
		gap: 15px
	}

	.sales__item-text {
		padding: 25px 0 25px 25px;
		margin: 0
	}

	.sales__item-image {
		max-width: 320px
	}
}

@media (max-width: 768px) {
	.sales {
		padding: 79px 0 100px
	}

	.sales__title {
		margin: 0 0 20px
	}

	.sales__list {
		gap: 10px
	}

	.sales__item {
		flex-direction: column;
		border-radius: 40px
	}

	.sales__item-text {
		padding: 20px 20px 0;
		max-width: 400px
	}

	.sales__item-image {
		opacity: .4;
		margin-top: -60px
	}
}

@media (max-width: 425px) {
	.sales {
		padding: 79px 0 30px
	}

	.sales__list {
		gap: 5px
	}

	.sales__item {
		border-radius: 30px
	}

	.sales__item-text {
		padding: 15px 15px 0;
		font-size: 30px;
		max-width: none
	}

	.sales__item-image {
		width: 100%;
		max-width: 200px;
		opacity: 1;
		margin-top: 0
	}
}

.info {
	padding: 100px 0
}

.info__wrapper {
	background-color: #fff;
	color: #1a272e;
	border-radius: 60px;
	padding: 40px 35px
}

@media (max-width: 1240px) {
	.info {
		padding: 80px 0
	}
}

@media (max-width: 1024px) {
	.info {
		padding: 40px 0
	}

	.info__wrapper {
		padding: 35px 30px
	}
}

@media (max-width: 768px) {
	.info__wrapper {
		border-radius: 40px;
		padding: 30px 25px
	}
}

@media (max-width: 425px) {
	.info__wrapper {
		border-radius: 30px;
		padding: 25px 15px
	}
}

.short-delivery {
	padding: 50px 0
}

.short-delivery__wrapper {
	display: flex;
	align-items: center;
	justify-content: center
}

.short-delivery__content {
	max-width: 402px
}

.short-delivery__subtitle {
	margin: 0 0 24px
}

.short-delivery__text {
	display: flex;
	flex-direction: column;
	gap: 28px;
	letter-spacing: 1px
}

.short-delivery__text-item {
	margin: 0
}

.short-delivery__image {
	width: 841px;
	aspect-ratio: 841/655;
	margin-right: -195px
}

.short-delivery__image img {
	width: 100%;
	height: 100%
}

@media (max-width: 1439px) {
	.short-delivery__image {
		margin-right: -120px
	}
}

@media (max-width: 1240px) {
	.short-delivery__image {
		margin-right: -40px
	}
}

@media (max-width: 1024px) {
	.short-delivery {
		padding: 100px 0 60px
	}

	.short-delivery__wrapper {
		flex-direction: column
	}

	.short-delivery__content {
		max-width: none
	}

	.short-delivery__subtitle {
		margin: 0 0 20px
	}

	.short-delivery__text {
		gap: 17px
	}

	.short-delivery__image {
		width: auto;
		margin-right: 0
	}
}

@media (max-width: 768px) {
	.short-delivery {
		padding: 70px 0 40px
	}

	.short-delivery__content {
		padding: 0 20px;
		align-self: flex-start
	}

	.short-delivery__text {
		gap: 10px
	}

	.short-delivery__image {
		margin: 0 -10px
	}
}

@media (max-width: 425px) {
	.short-delivery {
		padding: 40px 0
	}

	.short-delivery__content {
		padding: 0 15px
	}

	.short-delivery__subtitle {
		margin: 0 0 15px
	}
}