@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
	--yellow-brand-color: #feeb4f;
	--pink-brand-color: #ff9298;
	--paragraph-color: #75788c;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	background: #ffffff;
	color: #33374e;
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	font-size: 16px;
}

main {
	width: 100%;
}

a {
	text-decoration: none;
}

body.modal-opened {
	overflow: hidden;
}

.button {
	background: var(--pink-brand-color);
	font-family: "Outfit", sans-serif;
	font-size: 1.25rem;
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	color: #ffffff;
	padding: 15px 20px;
	border-radius: 5px;
	border: none;
	outline: none;
	cursor: pointer;
	transition: .2s;
}

.button:hover {
	background: #33374e;
}

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

.input {
	width: 100%;
	font-family: "Outfit", sans-serif;
	font-size: 1.1rem;
	font-weight: 400;
	color: #33374e;
	padding: 12px 15px;
	border: 1px solid #e3e1e1;
	border-radius: 5px;
	transition: border-color .2s;
}

.input:focus {
	outline: none;
	border-color: var(--pink-brand-color);
}

.label {
	display: block;
	font-size: 1.05rem;
	font-weight: 500;
	margin-bottom: 7px;
}

.home {
	width: 100%;
	height: 100vh;
	background: url("/image/home-background.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.home .container {
	width: 100%;
	max-width: 1440px;
	height: 100%;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

.menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 10px;
}

.menu-header .logo {
	transition: .2s;
}

.menu-header .logo:hover {
	opacity: .6;
}

.menu-header .logo img {
	height: 50px;
}

.menu-header .menu, .menu-header .logo {
	flex: 1;
}

.menu-header .menu {
	display: flex;
	gap: 35px;
	align-items: center;
}

.menu-header .menu a {
	font-size: 1.15rem;
	font-weight: 400;
	color: #fff;
	padding: 3px;
	border-bottom: 2px solid transparent;
	white-space: nowrap;
	transition: .2s;
}

.menu-header .menu a:hover {
	color: var(--pink-brand-color);
	border-block-color: var(--pink-brand-color);
}

.menu-header .menu a i {
	position: relative;
	top: 2px;
	font-size: 1.25rem;
	margin-right: 8px;
}

.menu-header .menu .buy-button {
	display: block;
	background: transparent;
	font-size: .985rem;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--yellow-brand-color);
	border: 1px solid #464773;
	border-radius: 5px;
	padding: 12px 15px;
	transition: .3s;
}

.menu-header .menu .buy-button:hover {
	background: var(--pink-brand-color);
	color: #ffffff;
	border-color: var(--pink-brand-color);
}

.home .block {
	height: 100%;
	display: flex;
	align-items: center;
}

.home .block .inner {
	display: flex;
	flex-direction: column;
}

.inner.picture {
	align-items: center;
	justify-content: center;
}

.home .block .inner img {
	max-height: 650px;
}

.home .block .inner .title {
	font-size: 3.75rem;
	font-weight: 500;
	line-height: 5rem;
	color: #ffffff;
}

.home .block .inner .title span {
	font-weight: 700;
	border-bottom: 4px solid var(--yellow-brand-color);
}

.home .block .inner .text {
	font-size: 1.375rem;
	font-weight: 300;
	line-height: 2.5rem;
	color: #d6c7ff;
	margin: 50px 0;
}

.home .block .inner .button:hover {
	background: #ffffff;
	color: var(--pink-brand-color);
}

.features {
	padding: 100px 15px;
	background: linear-gradient(45deg, rgba(243, 240, 253, 1), rgba(252, 245, 238, 1) 50%, rgba(243, 240, 253, 1) 100%);
}

.features .container {
	width: 100%;
	max-width: 1440px;
	text-align: center;
	margin: 0 auto;
}

.features .title {
	font-size: 2.5rem;
	font-weight: 500;
}

.features .text {
	width: 33.3%;
	font-size: 1.25rem;
	line-height: 2rem;
	color: var(--paragraph-color);
	margin: 25px auto;
}

.features .columns {
	display: flex;
	column-gap: 25px;
	justify-content: space-between;
	margin-top: 75px;
}

.features .columns .item {
	display: flex;
	flex-direction: column;
	flex: 1;
	align-items: center;
}

.features .columns .item:hover .icon-wrapper i {
	color: var(--pink-brand-color);
}

.features .columns .item .icon-wrapper {
	width: 65px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border-radius: 5px;
	margin-bottom: 35px;
}

.features .columns .item .icon-wrapper i {
	font-size: 1.75rem;
	color: inherit;
	transition: .2s;
}

.features .columns .item .title {
	font-size: 1.25rem;
	font-weight: 500;
	text-transform: uppercase;
}

.features .columns .item .text {
	width: 100%;
	font-size: .985rem;
	color: var(--paragraph-color);
	line-height: 1.5rem;
	margin-top: 5px;
	margin-bottom: 0;
}

.specs {
	padding: 75px 15px;
}

.specs .container {
	width: 100%;
	max-width: 1440px;
	display: flex;
	align-items: center;
	margin: 0 auto;
}

.specs .container .inner {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.specs .inner .title {
	font-size: 2.75rem;
	font-weight: 500;
	line-height: 3.5rem;
	margin-bottom: 75px;
}

.specs .inner .title span {
	font-weight: 700;
	border-bottom: 4px solid var(--yellow-brand-color);
}

.specs .inner img {
	max-height: 550px;
}

.specs .container .list {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.specs .container .list .item {
	display: flex;
	column-gap: 25px;
	align-items: center;
}

.specs .container .list .item i {
	font-size: 1.85rem;
	color: #a4a7bc;
}

.specs .container .list .item .text {
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--paragraph-color);
}

.functions {
	padding: 75px 15px;
	background: #27295a;
	color: #ffffff;
}

.functions .container {
	width: 100%;
	max-width: 1440px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 auto;
}

.functions .inner .title {
	font-size: 3rem;
	font-weight: 500;
	margin-bottom: 50px;
}

.functions .inner .title span {
	font-weight: 700;
	border-bottom: 4px solid var(--yellow-brand-color);
}

.functions .inner .text {
	font-size: 1.25rem;
	line-height: 1.65rem;
	color: #818edf;
}

.functions .container .list {
	display: flex;
	flex-direction: column;
	row-gap: 50px;
}

.functions .container .list .item .title {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 10px;
}

.functions .container .list .item .text {
	font-size: 1.15rem;
	font-weight: 400;
	line-height: 1.65rem;
	color: #818edf;
}

.faq {
	padding: 75px 15px;
	background: #fafafa;
}

.faq .container {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}

.faq .container .title {
	font-size: 3rem;
	font-weight: 500;
	margin-bottom: 25px;
}

.faq .container .text {
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: var(--paragraph-color);
}

.faq .container .list {
	display: flex;
	flex-direction: column;
	row-gap: 25px;
	padding: 20px;
	margin-top: 50px;
}

.faq .container .list .item {
	border-radius: 5px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
	overflow: hidden;
}

.faq .container .list .item summary {
	display: block;
	text-align: left;
	padding: 15px;
	background-color: #ffffff;
	cursor: pointer;
	font-size: 1.2rem;
	font-weight: 400;
	position: relative;
}

.faq .container .list .item summary::before {
	content: "\f078";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	position: absolute;
	right: 15px;
	color: var(--paragraph-color);
	transition: transform 0.3s ease;
}

.faq .container .list details[open] summary::before {
	transform: rotate(-180deg);
}

.faq .container .list .item .text {
	background: #ffffff;
	text-align: left;
	padding: 15px;
	margin: 0;
	font-size: 1.05rem;
	font-weight: 300;
	line-height: 1.5rem;
}

.reviews {
	padding: 125px 15px;
	background: linear-gradient(45deg, rgba(243, 240, 253, 1), rgba(252, 245, 238, 1) 50%, rgba(243, 240, 253, 1) 100%);
}

.reviews .container {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.reviews .container .block {
	max-width: 940px;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}

.reviews .container .title {
	font-size: 3rem;
	font-weight: 500;
	margin-bottom: 50px;
}

.reviews .container .quote {
	font-size: 5rem;
	color: #d1d1d1;
	margin-bottom: 40px;
}

.reviews .slide .title {
	font-size: 1.45rem;
	font-weight: 500;
	margin-bottom: 0;
}

.reviews .slide .text {
	font-size: 1.2rem;
	font-weight: 300;
	color: var(--paragraph-color);
	line-height: 2rem;
	margin-top: 20px;
	margin-bottom: 30px;
}

.reviews .slide .user {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.reviews .slide .avatar {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	border: 5px solid #ffffff;
}

.reviews .slide .name {
	font-size: 1.15rem;
}

.slider {
	display: flex;
	transition: transform 0.5s ease;
}

.slide {
	min-width: 100%;
	box-sizing: border-box;
	padding: 0 100px;
}

.nav-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.25rem;
	background: #ffffff;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	z-index: 10;
	transition: .2s;
}

.prev-button {
	left: 0;
}

.next-button {
	right: 0;
}

.nav-button:hover {
	background: var(--pink-brand-color);
	color: #ffffff;
}

.contact {
	padding: 75px 15px;
}

.contact .container {
	width: 100%;
	max-width: 1440px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 auto;
}

.contact .container .inner {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.contact .inner .title {
	font-size: 2.75rem;
	font-weight: 500;
	line-height: 3.5rem;
	margin-bottom: 25px;
}

.contact .text {
	font-size: 1.25rem;
	line-height: 2rem;
	color: var(--paragraph-color);
}

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

.form .group {
	display: flex;
	column-gap: 20px;
}

.form .wrapper {
	width: 100%;
}

.form .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.form .bottom .button {
	width: 100%;
	font-size: 1rem;
}

.form .bottom .result {
	display: none;
	font-size: 1.1rem;
	color: #53b63d;
}

.footer {
	padding: 75px 15px;
	background: #27295a;
	color: #ffffff;
}

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

.footer .container .subtext {
	font-size: .99rem;
	font-weight: 300;
	line-height: 1.5rem;
	color: #bdbdbd;
}

.footer .container .subtext a {
	color: #ffffff !important;
	transition: .2s !important;
}

.footer .container .subtext a:hover {
	color: #bdbdbd !important;
}

.footer .container .columns {
	display: flex;
	column-gap: 50px;
	padding: 50px 0;
	margin-bottom: 25px;
	border-bottom: 1px solid #515382;
}

.footer .container .column .logo {
	display: flex;
	column-gap: 15px;
	align-items: center;
	margin-bottom: 25px;
}

.footer .container .column .logo img {
	width: 50px;
	height: 50px;
}

.footer .container .column .logo span {
	font-size: 1.35rem;
	line-height: 1.2rem;
}

.footer .container .column .text {
	color: #bdbdbd;
	font-size: 1.15rem;
	line-height: 1.5rem;
}

.footer .container .column .subtitle {
	font-size: 1.35rem;
	font-weight: 500;
	margin-bottom: 25px;
}

.footer .container .column .menu {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.footer .container .column .menu a {
	font-size: 1.1rem;
	color: #bdbdbd;
	transition: .2s;
}

.footer .container .column .menu a:hover {
	color: var(--pink-brand-color) !important;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modal .content {
	background-color: #ffffff;
	padding: 35px;
	border-radius: 8px;
	width: 90%;
	max-width: 600px;
	max-height: 95vh;
	overflow-y: auto;
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal.show .content {
	opacity: 1;
	transform: scale(1);
}

.modal .content .header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.modal .content .header .title {
	font-size: 1.5rem;
	font-weight: 500;
}

.modal .content .header span {
	font-size: 1.5rem;
	cursor: pointer;
	transition: .2s;
}

.modal .content .header span:hover {
	opacity: .6;
}

.modal .content .text {
	font-size: 1.1rem;
	font-weight: 400;
	color: var(--paragraph-color);
	line-height: 1.5rem;
}

.cart-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-bottom: 25px;
	margin-bottom: 25px;
	border-bottom: 1px solid #eee;
}

.cart-item img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	border-radius: 4px;
}

.cart-item-details {
	flex: 1;
}

.cart-item-details h3 {
	font-size: 1.1rem;
	font-weight: 500;
}

.cart-item-details p {
	margin: 5px 0;
	color: #555;
}

.modal .form {
	row-gap: 15px;
}

.modal .form .title {
	font-size: 1.2rem;
	font-weight: 500;
}

.modal .form .input {
	font-size: 1rem;
	line-height: 1.2rem;
	padding: 8px 10px;
}

.modal .form .label {
	font-size: .975rem;
}

.modal .content .close-cart-button {
	font-size: 1.1rem;
}

.menu-container {
	width: 100%;
	background: #27295a;
}

.menu-container .menu-header {
	max-width: 1440px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 10px;
	margin: 0 auto;
}

.menu-container .menu-header .menu {
	justify-content: flex-end !important;
}

.menu-container .menu-header .menu:last-child {
	display: none;
}

.page .container {
	max-width: 1440px;
	min-height: calc(100vh - 105px);
	margin: 0 auto;
	padding: 100px 10px;
}

.page .container .title {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 35px;
}

.page .container .text {
	font-size: 1.15rem;
	font-weight: 400;
	line-height: 1.75rem;
	color: var(--paragraph-color);
}

.page .container .text b {
	font-weight: 500;
}

.page .container .subtitle {
	font-size: 1.5rem;
	font-weight: 500;
	margin: 25px 0;
}