/*!
Theme Name: Казки незламного татка
Theme URI: http://underscores.me/
Author: Ihor Tryhuk
Author URI: https://tryhuk.pp.ua/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: tale-dad
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Казки незламного татка is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@font-face {
	font-family: 'KyivTypeSans';
	src: url(fonts/kyivtype-sans-medium2.ttf) format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url(fonts/Gilroy-Regular.woff) format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url(fonts/Gilroy-Medium.woff) format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url(fonts/Gilroy-Bold.woff) format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}


:root {
	--container: 1340px;
	--gap: 24px;

	--text-size: 16px;
	--text-size-lg: 18px;
	--h1-size: 48px;
	--h2-size: 40px;
	--h3-size: 32px;
	--h4-size: 28px;
	--h5-size: 24px;
	--h6-size: 20px;

	--white: #ffffff;
	--white-75: rgba(255, 255, 255, 0.75);
	--gray: #4E4E4E;
	--blue-900: #0B3244;
	--blue-light: #59D0E8;
	--yellow-500: #FFEA63;
	--yellow-600: #FAE97C;
	--dark: #181818;
	--green: #8CB5A5;
}
*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-family: 'Gilroy';
	font-weight: 500;
	line-height: 1.1875;
	color: var(--gray);
	background: var(--white);
	letter-spacing: .02em;
}
a {
	color: var(--blue-900);
	transition: .5s;
}
a:hover {
	text-decoration: none;
	color: var(--blue-light);
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transition: .5s;
}
.bg-cover {
	position: relative;
}
.bg-cover img,
.bg-cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bg-cover-span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'KyivTypeSans';
	font-weight: 500;
	margin: calc(var(--gap) * 2) 0 calc(var(--gap) * 1.333);
	line-height: 1.1875;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
	margin-top: 0;
}
h1 {
	font-size: var(--h1-size);
}
h2 {
	font-size: var(--h2-size);
}
h3 {
	font-size: var(--h3-size);
}
h4 {
	font-size: var(--h4-size);
}
h5 {
	font-size: var(--h5-size);
}
h6 {
	font-size: var(--h6-size);
}
p, ul, ol, blockquote {
	margin: 0 0 var(--gap);
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child {
	margin-bottom: 0;
}
iframe {
	max-width: 100%;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px -16px;
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 8px;
	margin-bottom: 16px;
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
::-webkit-input-placeholder {
	color: #383838;
}
::-moz-placeholder {
	color: #383838;
}
:-ms-input-placeholder {
	color: #383838;
}
:-moz-placeholder {
	color: #383838;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Gilroy';
	line-height: 1.5;
	width: 100%;
	background: var(--white);
	border: 1px solid rgba(110, 112, 121, 0.3);
	color: #383838;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	padding: calc(var(--gap) / 2);
	min-height: 48px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 90px;
	resize: vertical;
}
select {
	cursor: pointer;
}
.zen-ui-select,
.zen-ui-select__dropdown-container {
	font-weight: 400;
}
.zen-ui-select__value {
	padding: calc(var(--gap) / 2) 28px calc(var(--gap) / 2) calc(var(--gap) / 2) !important;
	border: 1px solid rgba(110, 112, 121, 0.3);
	color: #383838;
}




.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	z-index: 1;
}
.pt-0 {
	padding-top: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
@media (min-width: 992px) {
	.hide-lg {
		display: none !important;
	}
}

/*
.heading {
	position: relative;
	margin-bottom: var(--gap);
}
.heading:last-child {
	margin-bottom: 0;
}
.heading.center {
	text-align: center;
}
.heading h2 {
	position: relative;
	font-size: var(--h2-size);
	font-family: 'Inter', serif;
	text-transform: uppercase;
	color: var(--black-dark);
	padding-left: 40px;
	z-index: 1;
}
.heading h2:before {
	content: '';
	position: absolute;
    left: 5px;
    bottom: 8px;
    border-left: 5px solid var(--blue);
    transform: skew(-26deg);
    height: 20px;
    width: 15px;
    border-right: 5px solid var(--blue);
}
*/


.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--h5-size);
	font-family: 'Gilroy';
	font-weight: 500;
	line-height: 1.333;
	border: none;
	padding: 14px 40px 16px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	outline: none;
	min-height: 62px;
	min-width: 280px;
	cursor: pointer;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.btn[disabled] {
	opacity: .5;
	cursor: not-allowed;
}
.btn.btn-sm {
	min-height: 50px;
	min-width: 200px;
	font-size: var(--text-size-lg);
	letter-spacing: .06em;
	padding: 10px 40px;
}
.btn-primary {
	background-color: var(--yellow-500);
	color: var(--dark);
	box-shadow: 1px 1px 2px rgba(248, 235, 158, 1) inset, -1px -1px 2px rgba(75, 70, 35, 1) inset;
}
.btn-primary:hover {
	background-color: var(--yellow-600);
	color: var(--dark);
	box-shadow: -1px -1px 2px rgba(248, 235, 158, 1) inset, 1px 1px 2px rgba(75, 70, 35, 1) inset;
}
.btn-primary[disabled] {
	background-color: var(--yellow-500);
	color: var(--dark);
	box-shadow: 1px 1px 2px rgba(248, 235, 158, 1) inset, -1px -1px 2px rgba(75, 70, 35, 1) inset;
}
.btn.btn-link {
	gap: 10px;
	font-size: var(--text-size);
	color: var(--yellow-500);
	letter-spacing: .04em;
	padding: 5px 0;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	min-height: 0px;
	min-width: 0px;
}
.btn.btn-link:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/btn-link-line.svg);
	mask-image: url(images/btn-link-line.svg);
	background-color: var(--yellow-500);
    position: absolute;
    width: 108px;
    height: 3px;
    bottom: -.05px;
    left: calc(50% - 30px / 2);
    transform: translateX(-50%);
    transition: .5s;
    z-index: -1;
}
.btn.btn-link:after {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow_outward.svg);
    mask-image: url(images/arrow_outward.svg);
    background-color: var(--yellow-500);
    flex: 0 0 20px;
    max-width: 20px;
    width: 20px;
    height: 20px;
    margin-bottom: -3px;
    transition: .5s;
}
.btn.btn-link:hover {
	color: var(--yellow-600);
}
.btn.btn-link:hover:before,
.btn.btn-link:hover:after {
	background-color: var(--yellow-600);
}



button.swiper-navigation {
	position: absolute;
	width: 47px;
	height: 28px;
	top: calc(50% - 14px);
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: none;
	background: url(images/arrow.svg) no-repeat center;
	background-size: contain;
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	opacity: .5;
	cursor: pointer;
	transition: .5s;
}
button.swiper-navigation:hover {
	opacity: 1;
}
button.swiper-navigation:disabled {
	opacity: .1;
}
button.swiper-navigation.prev {
	transform: scale(-1, 1);
	left: -5px;
}
button.swiper-navigation.next {
	right: -5px;
}


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: var(--gap);
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}
.soc-links li a svg {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}
.soc-links li a svg * {
	fill: var(--white);
	transition: .5s;
}
.soc-links li a:hover svg * {
	fill: var(--yellow-500);
}


/*
.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
	transition: .5s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .5s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-mobile.show .modal-mobile-bg {
	opacity: 1;
}
.modal-mobile-wrap {
	position: relative;
	background: var(--white);
	height: 100%;
	width: 100%;
	max-width: 360px;
	margin-left: auto;
	transform: translateX(100%);
	padding: 60px var(--gap) var(--gap);
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
	position: absolute;
	top: 15px;
	right: 15px;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black);
	width: 34px;
	height: 34px;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--blue);
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.mobile-menu > li {
	border-bottom: 1px solid var(--line);
}
.mobile-menu > li:last-child {
	border-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	font-size: var(--text-size-md);
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	font-weight: 500;
	display: block;
	padding: 10px 0;
	text-decoration: none;
	color: var(--black);
	z-index: 1;
}
.mobile-menu li.menu-item-has-children > a {
	flex: 0 0 calc(100% - 32px);
	max-width: calc(100% - 32px);
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
	color: var(--blue);
}
.mobile-menu-toggle {
	order: 2;
	-webkit-mask-size: 12px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand-down.svg);
	mask-image: url(images/expand-down.svg);
	background-color: var(--black);
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	transition: .5s;
}
.mobile-menu li.menu-item-has-children:hover > .mobile-menu-toggle {
	background-color: var(--blue);
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-toggle {
	background-color: var(--blue);
	transform: rotate(180deg);
}
.mobile-menu ul {
	flex: 0 0 100%;
	max-width: 100%;
	display: none;
	order: 3;
	margin: 0 0 10px;
	padding: 0 0 0 20px;
	list-style: none;
	text-transform: none;
	z-index: 9;
}



.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}
.modal-dialog {
	position: relative;
	width: auto;
	max-width: 420px;
	margin: 1.75rem auto;
	pointer-events: none;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: var(--white);
	background-clip: padding-box;
	outline: 0;
	padding: calc(var(--gap) * 1.5) var(--gap) var(--gap);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: #000000;
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .7;
	z-index: 1049;
}
.modal-title {
	font-size: var(--h4-size);
	color: var(--black);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: var(--gap);
	text-align: center;
}
.modal-close {
	position: absolute;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: #999999;
	width: 34px;
	height: 34px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--black);
}



.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
}
.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 32px -15px 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: -30px;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 24px;
	padding: 0 12px;
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid var(--line);
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-2 .gallery-item > * {
	height: calc((var(--container) - 30px) / 2 / 1.4);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-3 .gallery-item > * {
	height: calc((var(--container) - 30px * 2) / 3 / 1.4);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-4 .gallery-item > * {
	height: calc((var(--container) - 30px * 3) / 4 / 1.4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-5 .gallery-item > * {
	height: calc((var(--container) - 30px * 4) / 5 / 1.4);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-6 .gallery-item > * {
	height: calc((var(--container) - 30px * 5) / 6 / 1.4);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item > * {
	height: calc((var(--container) - 30px * 6) / 7 / 1.4);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-8 .gallery-item > * {
	height: calc((var(--container) - 30px * 7) / 8 / 1.4);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-columns-9 .gallery-item > * {
	height: calc((var(--container) - 30px * 8) / 9 / 1.4);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .5s;
}
.gallery-item a:hover img {
	transform: scale(1.08);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: 30px;
	margin-bottom: 20px;
}
.alignright {
	float: right;
	margin-left: 30px;
	margin-bottom: 20px;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
img.alignleft,
img.alignright,
img.aligncenter {
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}*/


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

.header {
	position: fixed;
	width: 100%;
	top: 0;
	padding: calc(var(--gap) * 1.333) 0;
	z-index: 92;
}
.admin-bar .header {
	top: 32px;
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
}
.header-logo {
	display: none;
	font-size: 30px;
	color: var(--white);
	letter-spacing: 0px;
	transition: .5s;
}
.home .header-logo,
.error404 .header-logo,
.page-template-page-about .header-logo {
	display: block;
}
.header-logo a {
	color: var(--white);
	text-decoration: none;
}
.header.fixed .header-logo {
	opacity: 0;
}
.header-nav {
	position: relative;
	display: flex;
	align-items: center;
	margin-left: auto;
	z-index: 1;
}
.menu-toggle {
	flex: 0 0 48px;
	max-width: 48px;
	width: 48px;
	height: 48px;
	background: var(--yellow-500);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
}
.menu-toggle:hover {
	background-color: var(--yellow-600);
}
.menu-toggle:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/menu.svg);
	mask-image: url(images/menu.svg);
	background-color: #000000;
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
}
.menu-toggle.active:before {
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	flex: 0 0 30px;
	max-width: 30px;
	height: 30px;
}
.main-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: var(--gap);
	background: rgba(1, 2, 9, 0.35);
	backdrop-filter: blur(12.5px);
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	padding: calc(var(--gap) / 2.4) var(--gap);
}
.main-menu li a {
	display: inline-block;
	padding: calc(var(--gap) / 2.4);
	color: var(--white);
	text-decoration: none;
}
.main-menu li a:hover,
.main-menu li.current-menu-item > a {
	color: var(--yellow-500);
}



.main {
	overflow: hidden;
}




.hero-section {
	position: relative;
	height: calc(100vw / 2);
	min-height: 650px;
	max-height: 100vh;
	overflow: hidden;
	padding: 150px 0 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
}
.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -4;
}
.hero-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.hero-heading {
	margin-bottom: calc(var(--gap) * 2);
}
@media (min-width: 1440px) {
	.hero-heading {
		margin-bottom: calc(var(--gap) * 1.5);
	}
}
@media (min-width: 1919px) {
	.hero-heading {
		z-index: 2;
		margin-bottom: calc(var(--gap) * 1.5);
	}
}
.hero-heading h1 {
	font-size: calc(var(--h1-size) * 1.5);
	color: var(--blue-light);
	text-transform: uppercase;
	max-width: 540px;
	letter-spacing: 0;
}
.hero-wrap {
	position: relative;
	z-index: 2;
}
.hero-shortContent {
	max-width: 530px;
	margin-bottom: calc(var(--gap) / 1.2);
	color: var(--white-75);
}
.hero-price {
	font-size: var(--h2-size);
	font-weight: 500;
	color: var(--blue-light);
}
.hero-price del {
	color: var(--white-75);
	font-size: var(--h5-size);
	font-weight: 400;
	opacity: .7;
}
.hero-price ins {
	text-decoration: none;
}
.hero-section:after {
	content: '';
	background: url(images/wave-bottom.svg) no-repeat center bottom;
	background-size: 1440px;
	position: absolute;
	width: 100%;
	height: 40px;
	left: 0px;
	bottom: -11px;
	z-index: 1;
}




.book-price {
	font-weight: 500;
	font-size: var(--h5-size);
	color: var(--blue-900);
}
.book-price del {
	font-size: var(--text-size);
	font-weight: 400;
	opacity: .7;
	color: var(--gray);
}
.book-price ins {
	text-decoration: none;
}




.infoProduct-section {
	position: relative;
	z-index: 1;
}
.infoProductMain-wrap {
	display: flex;
	align-items: flex-end;
	gap: var(--gap);
	margin-bottom: 100px;
}
.infoProductMain-wrap:last-child {
	margin-bottom: 0;
}
.infoProductMain-left {
	flex: 0 0 calc(53% - var(--gap) / 2);
	max-width: calc(53% - var(--gap) / 2);
	padding-left: calc(var(--gap) * 4.667);
}
.infoProductMain-heading {
	font-size: var(--h2-size);
	text-transform: uppercase;
	color: var(--blue-900);
}
.infoProductMain-right {
	flex: 0 0 calc(47% - var(--gap) / 2);
	max-width: calc(47% - var(--gap) / 2);
}
.infoProductMain-image {
	width: calc(100% + (100vw - var(--container)) / 2 + 150px);
	margin-top: -54%;
}
.infoProductMain-image img {
	max-height: 550px;
}
@media (max-width: 1919px) {
	.infoProductMain-image {
		margin-top: -46%;
	}
}
@media (max-width: 1599px) {
	.infoProductMain-image {
		margin-top: -37%;
	}
	.infoProductMain-image img {
		max-height: 410px;
	}
}
.infoProductSecond-wrap {
	display: flex;
	gap: calc(var(--gap) * 3.667);
}
.infoProductSecond-left {
	flex: 0 0 calc(68% - var(--gap) * 3.667);
	max-width: calc(68% - var(--gap) * 3.667);
}
.infoProductSecond-content {
	position: relative;
	padding: 110px 0 100px;
	height: 100%;
	z-index: 1;
}
.infoProductSecond-content-bg {
	content: '';
	background: url(images/open-book-min.png) no-repeat right top;
	background-size: cover;
	position: absolute;
	width: 100%;
	min-width: calc(var(--container) * .68 - var(--gap) * 3.667 + 200px);
	height: 100%;
	top: 0;
	right: 0;
	box-shadow: 20px 120px 55px rgba(0, 0, 0, .15);
	z-index: -1;
}
.infoProductSecond-content-inner {
	margin: 0 100px 0 auto;
	max-width: 362px;
}
.infoProductSecond-content h6 {
	font-size: var(--h6-size);
	font-weight: 500;
	color: var(--blue-900);
	font-family: 'Gilroy';
	margin-bottom: calc(var(--gap) / 2.4);
	margin-top: var(--gap);
}
.infoProductSecond-content h6:first-child {
	margin-top: 0;
}
.infoProductSecond-label {
	position: absolute;
	top: -40px;
	right: -40px;
	width: 130px;
	height: 130px;
	z-index: 1;
}
.infoProductSecond-right {
	flex: 0 0 32%;
	max-width: 32%;
	padding-top: 110px;
	padding-bottom: 100px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--gap);
}
.infoProductSecond-heading {
	text-transform: uppercase;
	color: var(--blue-900);
	margin-bottom: 0;
}
.infoProductSecond-description {
	color: var(--gray);
	margin-bottom: 0;
	flex: auto;
}
.infoProductSecond-price {
	margin: 0;
}



.about-section {
	position: relative;
	padding: 90px 0 145px;
	z-index: 1;
}
.about-section:after {
	content: '';
	background: url(images/wave-bottom.svg) no-repeat center bottom;
	background-size: 1440px;
	position: absolute;
	width: 100%;
	height: 40px;
	left: 0px;
	bottom: -11px;
	z-index: 1;
}
.about-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.about-wrap {
	display: flex;
	justify-content: space-between;
	gap: calc(var(--gap) * 3.75);
}
.about-left {
	flex: 0 0 calc(48% - var(--gap) * 3.75);
	max-width: calc(48% - var(--gap) * 3.75);
	display: flex;
	flex-direction: column;
	padding-left: 20px;
}
.about-heading {
	font-size: var(--h2-size);
	color: var(--blue-light);
	text-transform: uppercase;
	margin-bottom: calc(var(--gap) / 1.92);
}
.about-subheading {
	font-size: var(--h5-size);
	color: var(--white);
	font-weight: 400;
	letter-spacing: 0;
}
.about-description {
	color: var(--white);
	flex: auto;
	font-weight: 400;
	max-width: 500px;
	margin-bottom: var(--gap);
}
.about-right {
	flex: 0 0 52%;
	max-width: 52%;
}
.about-image {
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	overflow: hidden;
}
.about-image img {
	min-height: 396px;
}
.about-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.about-play a {
	display: inline-block;
	animation: pulse 3s infinite;
}
.about-play a path {
	fill: var(--yellow-500);
	transition: .5s;
}
.about-play a:hover path {
	fill: var(--yellow-600);
}
@-webkit-keyframes pulse {
	0% {
		transform: scale(1);
	}
	70% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes pulse {
	0% {
		transform: scale(1);
	}
	70% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}




.reviews-section {
	position: relative;
	padding: 100px 0;
	z-index: 1;
}
.reviews-wrap {
	max-width: calc(var(--container) - 210px);
	margin: auto;
}
.reviews-heading {
	margin-bottom: calc(var(--gap) * 2.5);
	text-transform: uppercase;
	color: var(--blue-900);
	font-size: var(--h2-size);
}
.reviews-item__wrap {
	position: relative;
	display: flex;
	gap: calc(var(--gap) * 2);
	max-width: 980px;
	z-index: 1;
}
.reviews-item__wrap:after {
	content: '';
	background: url(images/quote.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 110px;
	height: 77px;
	top: 30px;
	right: 0;
	z-index: -1;
}
.reviews-item__left {
	flex: 0 0 150px;
	max-width: 150px;
	height: 150px;
}
.reviews-item__image {
	width: 100%;
	height: 100%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
}
.reviews-item__right {
	flex: auto;
	max-width: calc(100% - var(--gap) * 2 - 150px);
	padding-top: calc(var(--gap) * 1.1667);
}
.reviews-item__info {
	position: relative;
	margin-bottom: calc(var(--gap) * 1.667);
	z-index: 1;
}
.reviews-item__name {
	font-family: 'KyivTypeSans';
	font-size: var(--h5-size);
	color: var(--blue-900);
	line-height: 1.2;
	margin-bottom: calc(var(--gap) / 1.71);
}
.reviews-item__description {
	max-width: 395px;
	font-weight: 400;
}
.reviews-item__review {
	font-size: var(--h6-size);
	font-weight: 400;
	line-height: 1.5;
	color: var(--dark);
}
.reviews-item__review-short {

}
.reviews-item__review-full {
	display: none;
}
.reviews-item__review-toggle {
	font-weight: 520;
	color: #ECBF51;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	cursor: pointer;
	transition: .5s;
}
.reviews-item__review-toggle:hover {
	color: var(--yellow-600);
}
.reviews-item__review.show .reviews-item__review-short:after {
	display: none;
}
button.reviews-navigation {
	top: calc(60%);
}
button.reviews-navigation.prev {
	left: calc((100vw - var(--container)) / 2 - 5px);
}
button.reviews-navigation.next {
	right: calc((100vw - var(--container)) / 2 - 5px);
}



.history-section {
	position: relative;
	padding: 120px 0 100px;
	z-index: 1;
}
.history-section:before {
	content: '';
	background: url(images/wave-1.svg) no-repeat center bottom;
	background-size: 1832px;
	position: absolute;
	width: 1832px;
	height: 40px;
	left: calc((100% - var(--container)) / 2 - 60px);
	top: -24px;
	z-index: 1;
}
.history-section:after {
	content: '';
	background: url(images/wave-2.svg) no-repeat center bottom;
	background-size: 1832px;
	position: absolute;
	width: 1832px;
	height: 40px;
	left: calc((100% - var(--container)) / 2 - 125px);
	bottom: -17px;
	z-index: 1;
}
.history-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.history-wrap {
	max-width: 440px;
	margin-left: auto;
	margin-right: 100px;
}
.history-heading {
	color: var(--blue-light);
	text-transform: uppercase;
	font-size: var(--h3-size);
	margin-bottom: var(--gap);
}
.history-description {
	margin-bottom: calc(var(--gap) * 1.667);
	font-weight: 400;
	color: var(--white-75);
	max-width: 420px;
}
.history-content {
	font-weight: 400;
	padding: 10px;
	margin-bottom: calc(var(--gap) * 1.75);
	color: var(--white-75);
	line-height: 1.1875;
}
.history-content ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.1);
}
.history-content ul li {
	position: relative;
	padding-left: 30px;
	z-index: 1;
}
.history-content ul li:before {
	content: '';
	position: absolute;
	width: 20px;
	height: 18px;
	background: url(images/list-dot.svg) no-repeat center;
	background-size: contain;
	top: 0;
	left: 0;
	z-index: 1;
}
.history-content strong {
	font-weight: 700;
}
.history-price {
	color: var(--blue-light);
}
.history-price del {
	color: var(--white-75);
}



.footer {
	position: relative;	
	padding: 50px 0;
	background: var(--white);
	z-index: 1;
}
.footer-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
}
.copyright {
	margin: 0;
	font-weight: 400;
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: var(--gap);
	font-weight: 400;
}
.footer-menu li a {
	color: var(--dark);
	text-decoration: none;
}
.footer-menu li a:hover,
.footer-menu li.current-menu-item > a {
	color: var(--blue-900);
}




.page-header {
	position: relative;
	min-height: 264px;
	background: url(images/bg-page-header.jpg) no-repeat center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 120px 0 70px;
	z-index: 2;
}
.page-header:after {
	content: '';
	background: url(images/wave-bottom.svg) no-repeat center bottom;
	background-size: 1440px;
	position: absolute;
	width: 100%;
	height: 40px;
	left: 0px;
	bottom: -20px;
	z-index: 1;
}
.page-header:before {
	content: '';
	background: url(images/swallow-flying.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 449px;
	height: 230px;
	right: calc((100% - var(--container)) / 2 - 30px);
	bottom: -132px;
	z-index: 2;
}
.page-title {
	font-size: var(--h1-size);
	text-transform: uppercase;
	color: var(--blue-light);
}
.page-body {
	position: relative;
	padding: 70px 0;
	z-index: 1;
}
.page-content {
	max-width: 1200px;
	margin: auto;
}



.pAboutHero-section {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100vh;
	padding: 150px 0 120px;
	z-index: 1;
}
.pAboutHero-section:after {
	content: '';
	background: url(images/wave-bottom.svg) no-repeat center bottom;
	background-size: 1440px;
	position: absolute;
	width: 100%;
	height: 40px;
	left: 0px;
	bottom: -11px;
	z-index: 1;
}
.pAboutHero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.pAboutHero-wrap {
	margin-left: 50%;
}
.pAboutHero-heading {
	font-family: 'Gilroy';
	font-size: var(--h1-size);
	color: var(--white);
	font-weight: 500;
	margin-bottom: calc(var(--gap) * 2.5);
	letter-spacing: 0;
}
.pAboutHero-description {
	max-width: 440px;
	font-weight: 400;
	color: var(--white-75);
}




.pAboutInfo-section {
	position: relative;
	padding: 100px 0 0;
	z-index: 2;
}
.pAboutInfo-section:before {
	content: '';
	background: url(images/swallow-flying.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 698px;
	height: 357px;
	right: calc((100% - var(--container)) / 2 - 120px);
	top: -126px;
	z-index: 2;
}
.pAboutInfo-wrap {
	display: flex;
	gap: 20px;
}
.pAboutInfo-left,
.pAboutInfo-right {
	flex: 0 0 calc(50% - 10px);
	max-width: calc(50% - 10px);
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 2.5);
}
.pAboutInfo-right {
	justify-content: flex-end;
	padding-bottom: calc(var(--gap) * 1.5);
	padding-top: calc(var(--gap) * 2.5);
}
.pAboutInfo-heading {
	margin: 0;
	font-size: var(--h3-size);
	color: var(--blue-900);
	text-transform: uppercase;
}
.pAboutInfo-description {
	max-width: 430px;
	font-weight: 400;
	color: var(--gray);
	margin: 0;
}
.pAboutInfo-image {
	max-width: 520px;
}
.pAboutInfo-image:not(:first-child) {
	margin-top: calc(var(--gap) / 3);
}
.pAboutInfo-quote {
	margin-top: calc(var(--gap) * 4);
	font-size: var(--h3-size);
	font-style: italic;
	font-weight: 300;
	line-height: 1.25;
	color: var(--blue-900);
}




.video-section {
	position: relative;
	padding: 100px 0 65px;
	z-index: 1;
}
.video-heading {
	margin-bottom: calc(var(--gap) * 1.75);
	font-size: var(--h3-size);
	text-transform: uppercase;
	font-weight: 500;
	color: var(--blue-900);
	text-align: center;
}
.video-image {
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	overflow: hidden;
	height: calc(var(--container) / 1.81);
	max-width: 900px;
	max-height: 500px;
	margin: auto;
}
.video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.video-play a {
	display: inline-block;
	animation: pulse 3s infinite;
}
.video-play a svg {
	width: 80px;
	height: 80px;
}
.video-play a path {
	fill: var(--yellow-500);
	transition: .5s;
}
.video-play a:hover path {
	fill: var(--yellow-600);
}



.banner-section {
	position: relative;
	padding: 100px 0;
	min-height: 395px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
}
.banner-section:before {
	content: '';
	background: url(images/wave-3.svg) no-repeat center;
	background-size: 1437px;
	position: absolute;
	width: 100%;
	height: 40px;
	left: 0;
	top: -20px;
	z-index: 1;
}
.banner-section:after {
	content: '';
	background: url(images/wave-4.svg) no-repeat center;
	background-size: 1440px;
	position: absolute;
	width: 100%;
	height: 40px;
	left: 0;
	bottom: -20px;
	z-index: 1;
}
.banner-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.banner-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: calc(var(--gap) * 1.5);
}
.banner-left {
	flex: auto;
	max-width: 750px;
}
.banner-right {
	flex: 0 0 auto;
}
.banner-heading {
	font-size: var(--h3-size);
	font-weight: 500;
	margin-bottom: calc(var(--gap) / 1.5);
	text-transform: uppercase;
	color: var(--blue-light);
}
.banner-description {
	font-size: var(--h6-size);
	font-weight: 400;
	line-height: 1.2;
	color: var(--white);
	letter-spacing: 0;
}
.banner-price {
	color: var(--blue-light);
}
.banner-price del {
	color: var(--white-75);
}



.pPayDelInfo-section {
	position: relative;
	padding: 130px 0 120px;
	z-index: 1;
}
.pPayDelInfo-section:after {
	content: '';
	background: url(images/wave-bottom.svg) no-repeat center bottom;
	background-size: 1440px;
	position: absolute;
	width: 100%;
	height: 40px;
	left: 0px;
	bottom: -19px;
	z-index: 1;
}
.pPayDelInfo-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.pPayDelInfo-wrap {
	display: flex;
	align-items: flex-end;
	gap: calc(var(--gap) * 2.5);
}
.pPayDelInfo-left {
	flex: 0 0 56%;
	max-width: 56%;
	padding-bottom: calc(var(--gap) * 2);
}
.pPayDelInfo-content {
	font-weight: 400;
	color: var(--white-75);
}
.pPayDelInfo-right {
	flex: 0 0 calc(44% - var(--gap) * 2.5);
	max-width: calc(44% - var(--gap) * 2.5);
}



.pContacts-section {
	position: relative;
	padding: 130px 0 150px;
	min-height: 525px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
}
.pContacts-section:after {
	content: '';
	background: url(images/wave-bottom.svg) no-repeat center bottom;
	background-size: 1440px;
	position: absolute;
	width: 100%;
	height: 40px;
	left: 0px;
	bottom: -19px;
	z-index: 1;
}
.pContacts-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.pContacts-heading {
	margin-bottom: calc(var(--gap) * 1.9);
	letter-spacing: 0;
}
.pContacts-items {
	display: flex;
	gap: var(--gap) calc(var(--gap) * 4.5);
}
.pContacts-item {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
}
.pContacts-item__label {
	color: var(--white-75);
	font-weight: 400;
	margin: 0;
}
.pContacts-item__value {
	font-size: var(--h5-size);
	color: var(--white);
}
.pContacts-item__value a {
	color: var(--white);
	text-decoration: none;
}
.pContacts-item__value a:hover {
	color: var(--yellow-500);
}




.pCart-wrap {
	display: flex;
	align-items: flex-start;
	gap: var(--gap);
}
.pCart-left {
	flex: 0 0 58%;
	max-width: 58%;
}
.pCart-right {
	flex: 0 0 calc(42% - var(--gap));
	max-width: calc(42% - var(--gap));
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}


.block-item {
	border: 1px solid rgba(140, 181, 165, 0.6);
	padding: calc(var(--gap) * 1.333);
}
.block-item__heading,
.wcus-checkout-fields h3 {
	font-size: var(--text-size);
	line-height: 1.375;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #08050D;
	border-bottom: 1px solid var(--green);
	margin-bottom: var(--gap);
	padding-bottom: calc(var(--gap) / 3);
}
.block-item__content {
	color: #08050D;
}
.block-item__content strong {
	font-weight: 600;
}

.woocommerce-cart-form table {
	width: 100%;
	border: none;
	border-collapse: collapse;
}
.woocommerce-cart-form table th,
.woocommerce-cart-form table td {
	padding: 0 calc(var(--gap) / 2);
	vertical-align: top;
}
.woocommerce-cart-form table th:first-child,
.woocommerce-cart-form table td:first-child {
	padding-left: 0;
}
.woocommerce-cart-form table th:last-child,
.woocommerce-cart-form table td:last-child {
	padding-right: 0;
}
.woocommerce-cart-form table thead th {
	text-align: left;
	font-weight: 600;
	color: #08050D;
}
.woocommerce-cart-form table td {
	padding-top: var(--gap);
	padding-bottom: var(--gap);
	border-bottom: 1px solid var(--green);
}
.woocommerce-cart-form table tr:last-child td {
	border-bottom: none;
	padding-bottom: 0;
}
.woocommerce-cart-form__cart-item-product-name {
	display: flex;
	align-items: center;
	min-height: 38px;
	gap: calc(var(--gap) / 2);
	font-weight: 400;
	color: #46444A;
}
.woocommerce-cart-form table .cart_item td .remove {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: #000000;
	flex: 0 0 24px;
	max-width: 24px;
    width: 24px;
    height: 24px;
    transition: .5s;
}
.woocommerce-cart-form table .cart_item td .remove:hover {
	background-color: var(--yellow-500);
}
.woocommerce-cart-form__cart-item-product-image {
	margin-top: var(--gap);
}
.woocommerce-cart-form__cart-item-product-image img {
	max-height: 240px;
}
.woocommerce-cart-form td.product-subtotal {
	width: 124px;
}
.woocommerce-cart-form__cart-item-product-price {
	line-height: 1.375;
	color: #46444A;
	font-weight: 400;
	min-height: 38px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.pageCartTableProducts-qty {
	flex: 0 0 80px;
	max-width: 80px;
	height: 38px;
	border: 1px solid #C7C7C7;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	display: flex;
}
.pageCartTableProducts-qty span {
	flex: 0 0 24px;
	max-width: 24px;
	font-size: var(--h6-size);
	color: var(--black);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .5s;
}
.pageCartTableProducts-qty span:hover {
	color: var(--blue-900);
}
.pageCartTableProducts-qty .quantity {
	flex: auto;
}
.pageCartTableProducts-qty input {
	width: 100%;
	height: 100%;
	background: var(--white);
	font-size: var(--text-size);
	line-height: 1.5;
    border: none;
    text-align: center;
    outline: none;
    padding: 10px 0;
    color: var(--black);
    -moz-appearance:textfield;
}
.pageCartTableProducts-qty input::-webkit-outer-spin-button,
.pageCartTableProducts-qty input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}



.wc-block-components-notice-banner,
.woocommerce-message,
.woocommerce-NoticeGroup,
.woocommerce-info,
.woocommerce-error {
	padding: var(--gap);
	border: 1px solid rgba(140, 181, 165, 0.6);
	display: flex;
	align-items: center;
	margin-bottom: var(--gap) !important;
	outline: none !important;
	list-style: none;
	overflow: hidden;
}
.woocommerce-message,
.woocommerce-NoticeGroup,
.woocommerce-info,
.woocommerce-error {
	display: block;
}
ul.woocommerce-error li {
	margin-bottom: 2px;
}
ul.woocommerce-error li:last-child {
	margin-bottom: 0;
}
.woocommerce-NoticeGroup .woocommerce-error {
	padding: 0;
	margin-bottom: 0 !important;
	border: none;
}
.woocommerce-error a {
	text-decoration: none;
}
.wc-block-components-notice-banner svg {
	flex: 0 0 36px;
	max-width: 36px;
	margin-right: var(--gap);
}
.wc-block-components-notice-banner__content {
	position: relative;
	overflow: hidden;
	flex: auto;
	max-width: 100%;
}
.wc-block-components-notice-banner__content .button,
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
	float: right;
	margin-left: var(--gap);
	margin-bottom: 0px;
}


.return-to-shop {
	text-align: center;
}


.cart-collaterals table {
	width: 100%;
	border-collapse: collapse;
	padding: 0;
	margin-bottom: calc(var(--gap) * 1.333);
}
.cart-collaterals table tr.shipping {
	display: none;
}
.cart-collaterals table th,
.cart-collaterals table td {
	padding: 0;
	padding-bottom: var(--gap);
}
.cart-collaterals table tr:last-child th,
.cart-collaterals table tr:last-child td {
	padding-bottom: 0;
}
.cart-collaterals table th {
	text-align: left;
	font-weight: 600;
	color: #08050D;
	padding-right: var(--gap);
	line-height: 1.375;
}
.cart-collaterals table td {
	width: 100px;
	color: #46444A;
	font-weight: 600;
	line-height: 1.375;
}
.cart-collaterals table td strong {
	font-weight: 600;
}


.pCheckout-wrap {
	display: flex;
	gap: var(--gap);
}
.pCheckout-left,
.pCheckout-right {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}


.form-row {
	margin-bottom: calc(var(--gap) / 1.5);
}
.form-row:last-child {
	margin-bottom: 0;
}
.form-row > label {
	display: none;
}
#billing_country_field {
	display: none;
}
.woocommerce-billing-fields__field-wrapper {
	margin-bottom: calc(var(--gap) * 1.333);
}
.woocommerce-billing-fields__field-wrapper:last-child {
	margin-bottom: 0;
}
.checkout-inline-error-message {
	font-size: 14px;
	margin-top: 2px;
	color: red;
}

.woocommerce-checkout-review-order {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}

.woocommerce-checkout-review-order-table {
	width: 100%;
	border-collapse: collapse;
	padding: 0;
}
.woocommerce-checkout-review-order-table thead th {
	padding: 0;
	font-weight: 600;
	color: #08050D;
	line-height: 1.25;
	letter-spacing: 0;
	text-align: left;
	padding-bottom: calc(var(--gap) * 1.333);
	padding-right: var(--gap);
}
.woocommerce-checkout-review-order-table thead th.product-total {
	width: 160px;
	padding-right: 0;
}
.woocommerce-checkout-review-order-table tbody td {
	padding: 0;
	font-weight: 400;
	line-height: 1.375;
	letter-spacing: 0;
	padding-bottom: var(--gap);
	padding-right: var(--gap);
}
.woocommerce-checkout-review-order-table thead th.product-total {
	width: 160px;
	padding-right: 0;
}
.woocommerce-checkout-review-order-table tbody td strong {
	font-weight: 400;
}
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
	text-align: left;
	padding: 0;
	font-weight: 600;
	line-height: 1.375;
	letter-spacing: 0;
	padding-bottom: var(--gap);
	padding-right: var(--gap);
}
.woocommerce-checkout-review-order-table tfoot tr:last-child th,
.woocommerce-checkout-review-order-table tfoot tr:last-child td {
	padding-bottom: 0;
}
.woocommerce-checkout-review-order-table tfoot td {
	padding-right: 0;
	width: 160px;
}
.woocommerce-checkout-review-order-table .shipping {
	display: none;
}



.wc_payment_methods {
	margin: 0 0 var(--gap);
	padding: 0;
	list-style: none;
}
.wc_payment_methods li label {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 1.5);
	font-family: 'KyivTypeSans';
	font-weight: 500;
	font-size: var(--text-size);
	line-height: 1.375;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #08050D;
	border-bottom: 1px solid var(--green);
	padding-bottom: calc(var(--gap) / 3);
	width: 100%;
}

.woocommerce-terms-and-conditions-wrapper {
	margin-bottom: calc(var(--gap) * 1.333);
	font-weight: 400;
	line-height: 1.375;
	color: #46444A;
}

.woocommerce-terms-and-conditions-wrapper a {
	color: #08050D;
	text-decoration: none;
}
.woocommerce-terms-and-conditions-wrapper a:hover {
	color: var(--blue-900);
}
.pCheckout-preorder-content {
	color: #262606;
	margin-bottom: var(--gap);
}
.pCheckout-preorder-content strong {
	font-weight: 600;
}




.pThank-section {
	position: relative;
	min-height: 625px;
	padding: 130px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
}
.pThank-section:after {
	content: '';
	background: url(images/wave-bottom.svg) no-repeat center bottom;
	background-size: 1440px;
	position: absolute;
	width: 100%;
	height: 40px;
	left: 0px;
	bottom: -19px;
	z-index: 1;
}
.pThank-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.pThank-wrap {
	max-width: 600px;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 1.333);
	text-align: center;
}
.pThank-image {
	margin-bottom: -8px;
}
.pThank-image img {
	max-height: 82px;
}
.pThank-heading {
	margin: 0;
	letter-spacing: 0;
}
.pThank-content {
	font-weight: 400;
	color: var(--white-75);
}


.error404-section {
	position: relative;
	padding: 130px 0 150px;
	z-index: 1;
}
.error404-section:after {
	content: '';
	background: url(images/wave-bottom.svg) no-repeat center bottom;
	background-size: 1440px;
	position: absolute;
	width: 100%;
	height: 40px;
	left: 0px;
	bottom: -11px;
	z-index: 1;
}
.error404-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.error404-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 500px;
}
.error404-number {
	font-family: 'KyivTypeSans';
	font-weight: 500;
	font-size: 250px;
	line-height: .9;
	letter-spacing: 0;
	background-image: linear-gradient(180deg, #59D0E8 0%, rgba(89, 208, 232, 0.2) 81%);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
}
.error404-description {
	text-align: center;
	color: var(--white-75);
	margin-bottom: calc(var(--gap) * 1.333);
	font-weight: 400;
}




@media (max-width: 1449px) {
	:root {
		--container: 1116px;
		--gap: 24px;

		--text-size: 16px;
		--text-size-lg: 18px;
		--h1-size: 42px;
		--h2-size: 36px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 22px;
		--h6-size: 20px;
	}
	.btn {
		font-size: var(--h6-size);
		min-width: 240px;
	}
	.header {
		padding: var(--gap) 0;
	}
	.header-logo {
		font-size: 26px;
	}
	.hero-section {
		padding-top: 120px;
	}
	.hero-heading {
		margin-bottom: calc(var(--gap) * 1.5);
	}
	.infoProductMain-left {
		padding-left: calc(var(--gap) * 2);
	}
	.infoProductMain-image {
        margin-top: -31%;
    }
	.infoProductMain-image img {
		max-height: 360px;
	}
	.infoProductSecond-content-bg {
		min-width: calc(var(--container) * 0.85 - var(--gap) * 3.667 + 200px);
	}
	.about-section {
		padding-bottom: 120px;
	}
	.about-left {
		padding-left: 0;
	}
	.reviews-item__wrap:after {
		width: 90px;
		height: 55px;
	}
	.reviews-item__info {
		margin-bottom: calc(var(--gap) * 1.5);
	}
	.history-wrap {
		margin-right: 0;
	}
	.history-description,
	.history-content {
		margin-bottom: calc(var(--gap) * 1.1667);
	}
	.footer {
		padding: 35px 0;
	}
	.pAboutHero-section {
		min-height: 650px;
	}
	.pAboutHero-heading {
		margin-bottom: calc(var(--gap) * 1.5);
	}
	.pAboutInfo-section:before {
		width: 550px;
		height: 280px;
		right: calc((100% - var(--container)) / 2 - 60px);
		top: -106px;
	}
	.pAboutInfo-left, .pAboutInfo-right {
		gap: calc(var(--gap) * 1.5);
	}
	.pAboutInfo-quote {
		margin-top: calc(var(--gap) * 2.5);
	}
	.pAboutInfo-image {
		max-width: 420px;
	}
	.video-play a svg {
		width: 68px;
		height: 68px;
	}
	.book-price {
		font-size: var(--h4-size);
	}
	.pPayDelInfo-wrap {
		gap: calc(var(--gap) * 1.5);
	}
	.pPayDelInfo-left {
		padding-bottom: var(--gap);
	}
	.pPayDelInfo-right {
		flex: 0 0 calc(44% - var(--gap) * 1.5);
		max-width: calc(44% - var(--gap) * 1.5);
	}
	.pContacts-items {
		gap: var(--gap) calc(var(--gap) * 3.5);
	}
	.page-header {
		min-height: 240px;
	}
	.page-header:before {
		width: 374px;
		height: 190px;
		right: calc((100% - var(--container)) / 2 - 10px);
		bottom: -100px;
	}
	.pThank-section {
		min-height: 560px;
	}
	.error404-number {
		font-size: 220px;
	}
}




@media (max-width: 1199px) {
	:root {
		--container: 916px;
		--gap: 24px;

		--text-size: 16px;
		--text-size-lg: 18px;
		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 22px;
		--h6-size: 20px;
	}
	.btn {
		min-height: 56px;
		padding: 12px 32px 14px;
	}
	.header-logo {
		font-size: 24px;
	}
	.main-menu {
		gap: calc(var(--gap) / 1.5);
	}
	.hero-section {
        padding-top: 110px;
        padding-bottom: 60px;
        min-height: 620px;
    }
	.hero-heading {
		margin-bottom: calc(var(--gap) * 1.25);
	}
	.hero-heading h1 {
		max-width: 440px;
	}
	.hero-price {
		font-size: var(--h3-size);
	}
	.hero-price del {
		font-size: var(--text-size-lg);
	}
	.hero-bg img,
	.hero-image img {
		object-position: 20% center;
	}
	.infoProductMain-left {
		padding-left: 0;
	}
	.infoProductMain-image {
		width: calc(100% + (100vw - var(--container)) / 2 + 60px);
		margin-top: -35%;
	}
	.infoProductMain-wrap {
		margin-bottom: 80px;
	}
	.infoProductSecond-content,
	.infoProductSecond-right {
		padding: 85px 0 80px;
	}
	.infoProductSecond-label {
		width: 105px;
		height: 105px;
		top: -30px;
		right: -30px;
	}
	.infoProductSecond-content-inner {
		margin: 0 60px 0 auto;
	}
	.infoProductSecond-content-bg {
		min-width: calc(var(--container) * 0.85 - var(--gap) * 3.667 + 320px);
	}
	.about-wrap {
		gap: calc(var(--gap) * 2.5);
	}
	.about-left {
		flex: 0 0 calc(48% - var(--gap) * 2.5);
		max-width: calc(48% - var(--gap) * 2.5);
	}
	.about-section {
		padding: 75px 0 95px;
	}
	.reviews-section {
		padding: 80px 0;
	}
	.reviews-wrap {
		max-width: calc(var(--container) - 140px);
	}
	.reviews-heading {
		margin-bottom: calc(var(--gap) * 1.5);
	}
	.reviews-item__wrap {
		gap: var(--gap);
	}
	.reviews-item__left {
		flex: 0 0 120px;
		max-width: 120px;
		height: 120px;
	}
	.reviews-item__right {
		max-width: calc(100% - var(--gap) - 120px);
		padding-top: calc(var(--gap) / 2);
	}
	.reviews-item__info {
		margin-bottom: var(--gap);
	}
	.reviews-item__review {
		font-size: var(--text-size-lg);
	}
	.reviews-item__wrap:after {
		top: calc(var(--gap) / 2);
	}
	.history-bg img {
		object-position: 60% center;
	}
	.pAboutHero-section {
		min-height: 560px;
		padding: 120px 0 80px;
	}
	.pAboutHero-heading {
		margin-bottom: calc(var(--gap) * 1.25);
		font-size: var(--h2-size);
	}
	.pAboutInfo-section {
		padding: 80px 0 0;
	}
	.pAboutInfo-section:before {
        width: 430px;
        height: 220px;
        right: calc((100% - var(--container)) / 2 - 10px);
        top: -90px;
    }
    .pAboutInfo-image {
        max-width: 320px;
    }
	.pAboutInfo-quote {
		margin-top: calc(var(--gap) * 2);
		font-size: var(--h4-size);
	}
	.pAboutInfo-right {
		padding-bottom: 0;
	}
	.video-section {
		padding: 80px 0 50px;
	}
	.banner-section {
		padding: 80px 0;
		min-height: 280px;
	}
	.banner-description {
		font-size: var(--text-size-lg);
	}
	.pPayDelInfo-wrap {
		gap: var(--gap);
	}
	.pPayDelInfo-left {
		flex: 0 0 53%;
		max-width: 53%;
	}
	.pPayDelInfo-right {
		flex: 0 0 calc(47% - var(--gap));
		max-width: calc(47% - var(--gap));
	}

	.pPayDelInfo-section {
		padding: 110px 0 90px;
	}
	.pContacts-section {
		padding: 110px 0;
		min-height: 460px;
	}
	.pContacts-bg img {
		object-position: 60% center;
	}
	.pContacts-heading {
		margin-bottom: calc(var(--gap) * 1.25);
	}
	.footer-wrap {
		flex-direction: column-reverse;
	}
	.pCart-wrap {
		flex-direction: column;
	}
	.pCart-left,
	.pCart-right {
		flex: auto;
		max-width: 100%;
		width: 100%;
	}
	.woocommerce-cart-form__cart-item-product-image img {
		max-height: 200px;
	}
	.woocommerce-checkout-review-order-table thead th.product-total,
	.woocommerce-checkout-review-order-table tfoot td {
		width: 120px;
	}
	.error404-number {
		font-size: 180px;
	}
	.error404-section {
		padding: 120px 0;
	}
	.page-body {
		padding: 50px 0 60px;
	}
	.page-header {
		padding: 110px 0 50px;
		min-height: 200px;
	}
	.page-header:before {
		width: 290px;
		height: 150px;
		right: calc((100% - var(--container)) / 2 - 10px);
		bottom: -70px;
	}
	.block-item {
		padding: var(--gap);
	}
}




@media (max-width: 991px) {
	:root {
		--container: 696px;
		--gap: 24px;

		--text-size: 16px;
		--text-size-lg: 18px;
		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 22px;
		--h6-size: 20px;
	}
	h1, h2, h3, h4, h5, h6 {
		margin: calc(var(--gap) * 1.333) 0 var(--gap);
	}
	p, ul, ol, blockquote {
		margin: 0 0 calc(var(--gap) / 1.2);
	}
	.btn {
		min-height: 50px;
		min-width: 150px;
		padding: 10px 32px 12px;
	}
	.btn.btn-link {
		gap: 6px;
		padding: 4px 0;
	}
	.header {
		padding: calc(var(--gap) * 1.333) 0;
	}
	.header-wrap {
		height: 50px;
	}
	.main-menu {
		display: none;
		position: absolute;
		top: calc(100% + var(--gap) / 1.2);
		right: 0;
		backdrop-filter: blur(12.5px);
		-moz-border-radius: 16px;
		-webkit-border-radius: 16px;
		border-radius: 16px;
		padding: var(--gap);
		width: max-content;
		max-width: var(--container);
		font-weight: 400;
		z-index: 1;
	}
	.main-menu li {
		margin-bottom: calc(var(--gap) / 1.5);
	}
	.main-menu li:last-child {
		margin-bottom: 0;
	}
	.main-menu li a {
		padding: calc(var(--gap) / 2.4);
	}
	.hero-section {
		min-height: 100vh;
		max-height: 100%;
		height: auto;
		padding: 110px 0;
	}
	.hero-image {
		display: none;
	}
	.hero-bg img {
		object-position: center bottom;
	}
	.hero-image-product {
		margin-bottom: calc(var(--gap) * 2.5);
		text-align: center;
	}
	.hero-image-product img {
		max-height: 28vh;
	}
	.hero-image-product-inner {
		width: calc(120%);
	}
	.hero-heading {
		margin-bottom: var(--gap);
	}
	.hero-heading h1 {
		font-size: var(--h1-size);
	}
	.hero-heading h1 span {
		font-size: calc(var(--h1-size) * 1.25);
	}
	.hero-shortContent {
		font-weight: 400;
		max-width: 100%;
		margin-bottom: var(--gap);
	}
	.hero-price {
		font-size: var(--h4-size);
	}
	.infoProduct-section {
		padding: 32px 0;
	}
	.infoProductMain-right {
		display: none;
	}
	.infoProductMain-left {
		flex: auto;
		max-width: 100%;
	}
	.infoProductMain-wrap {
		margin-bottom: calc(var(--gap) * 1.333);
	}
	.infoProductSecond-wrap {
		gap: calc(var(--gap) * 2.25);
		flex-direction: column;
	}
	.infoProductSecond-left,
	.infoProductSecond-right {
		flex: auto;
		max-width: 100%;
	}
	.infoProductSecond-heading {
		font-size: var(--h2-size);
	}
	.infoProductSecond-content {
		padding: 48px 0;
		font-weight: 400;
	}
	.infoProductSecond-content-inner {
		margin-right: 48px;
	}
	.infoProductSecond-content h6 {
		font-size: var(--text-size-lg);
	}
	.infoProductSecond-content-bg {
		min-width: calc(var(--container) * 0.85 - var(--gap) * 3.667 + 410px);
		box-shadow: 20px 30px 25px rgba(0, 0, 0, .15);
	}
	.infoProductSecond-right {
		padding: 0;
	}
	.about-section {
		padding: 32px 0 45px;
	}
	.about-wrap {
		gap: calc(var(--gap) * 1.25);
		flex-direction: column;
	}
	.about-left,
	.about-right {
		flex: auto;
		max-width: 100%;
	}
	.about-heading {
		margin-bottom: calc(var(--gap) / 1.5);
	}
	.about-subheading {
		font-size: var(--h4-size);
	}
	.about-description {
		font-weight: 400;
		max-width: 100%;
		margin-bottom: calc(var(--gap) / 1.5);
	}
	.reviews-section {
		padding: 32px 0;
	}
	.reviews-heading {
		margin-bottom: calc(var(--gap) * 1.333);
	}
	.reviews-wrap {
		max-width: 100%;
	}
	.reviews-item__wrap {
		max-width: 100%;
		flex-direction: column;
	}
	.reviews-item__left {
		flex: 0 0 150px;
		max-width: 150px;
		width: 150px;
		height: 150px;
		max-height: 150px;
	}
	.reviews-item__wrap:after {
		width: 110px;
		height: 77px;
		top: calc((150px - 77px) / 2);
	}
	.reviews-item__right {
		padding-top: 0;
		flex: auto;
		max-width: 100%;
	}
	.reviews-item__name {
		font-size: var(--h6-size);
		margin-bottom: calc(var(--gap) / 1.5);
	}
	.reviews-item__description {
		max-width: 100%;
	}
	.reviews-item__review {
		font-size: var(--text-size);
	}
	.reviews-carousel {
		overflow: hidden;
	}
	button.swiper-navigation {
		position: relative;
		top: 0;
		left: 0 !important;
		right: 0 !important;
		margin-top: var(--gap);
	}
	button.swiper-navigation.prev {
		float: left;
	}
	button.swiper-navigation.next {
		float: right;
	}
	.reviews-item__review-short {
		position: relative;
		z-index: 1;
	}
	.reviews-item__review-short:after {
		content: '';
        background: linear-gradient(0deg,rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
        position: absolute;
        width: 100%;
        height: 120px;
        bottom: 0;
        left: 0;
        z-index: 1;
	}
	.reviews-item__review-toggle {
		position: relative;
		z-index: 2;
	}

	.history-section {
		padding: 40px 0 calc(100vw * 1.4);
	}
	.history-bg img {
		object-position: center 75%;
	}
	.history-wrap {
		max-width: 100%;
		margin-left: 0;
	}
	.history-heading {
		font-size: var(--h2-size);
		margin-bottom: calc(var(--gap) / 1.5);
	}
	.history-description {
		max-width: 100%;
	}
	.history-description, .history-content {
		margin-bottom: var(--gap);
	}
	.history-content {
		padding: calc(var(--gap) / 2.4) 0;
	}
	.footer {
		padding: 32px 0;
	}
	.footer-menu {
		flex-direction: column;
		gap: calc(var(--gap) / 2);
		align-items: center;
		text-align: center;
	}
	.pAboutHero-section {
		min-height: 880px;
		padding: 115px 0 calc(100vw / .96);
	}
	.pAboutHero-bg img {
		object-position: center 100%;
	}
	.pAboutHero-wrap {
		margin-left: 0;
	}
	.pAboutHero-heading {
		font-size: var(--h1-size);
		margin-bottom: var(--gap);
	}
	.pAboutHero-description {
		max-width: 100%;
	}
	.pAboutInfo-section:before {
		width: 49%;
		height: calc(100vw * .49 / 1.94);
		right: calc((100% - var(--container)) / 2 - 15px);
		top: calc(100vw * .49 / 1.94 / -2 - 25px);
	}
	.pAboutInfo-section {
		padding: 50px 0 32px;
	}
	.pAboutInfo-wrap {
		flex-direction: column;
		gap: 32px;
	}
	.pAboutInfo-left,
	.pAboutInfo-right {
		flex: auto;
		max-width: 100%;
		gap: var(--gap);
	}
	.pAboutInfo-heading {
		font-size: var(--h2-size);
	}
	.pAboutInfo-description {
		max-width: 100%;
	}
	.pAboutInfo-image {
		max-width: 100%;
	}
	.pAboutInfo-image:not(:first-child) {
		margin-top: 8px;
		text-align: center;
	}
	.pAboutInfo-image img {
		max-height: 360px;
	}
	.pAboutInfo-right {
		padding-top: 0;
	}
	.pAboutInfo-quote {
		margin-top: 8px;
	}
	.video-section {
		display: ;
	}
	.banner-section {
		padding: 54px 0 calc(100vw / 1.67);
	}
	.banner-bg img {
		object-position: center 100%;
	}
	.banner-wrap {
		flex-direction: column;
		gap: var(--gap);
		align-items: flex-start;
	}
	.banner-left,
	.banner-right {
		flex: auto;
		max-width: 100%;
	}
	.banner-heading {
		font-size: var(--h2-size);
		margin-bottom: var(--gap);
		max-width: 440px;
	}
	.banner-description {
		font-size: var(--text-size);
		margin-bottom: var(--gap);
	}
	.banner-price {
		margin-bottom: calc(var(--gap) / 1.5);
	}
	.pPayDelInfo-section {
		padding: 115px 0 56px;
	}
	.pPayDelInfo-wrap {
		flex-direction: column-reverse;
		gap: calc(var(--gap) * 1.333);
		align-items: center;
	}
	.pPayDelInfo-left,
	.pPayDelInfo-right {
		flex: auto;
		max-width: 100%;
	}
	.pPayDelInfo-image {
		text-align: center;
	}
	.pPayDelInfo-image img {
		max-height: 320px;
	}
	.pPayDelInfo-content h1 {
		font-size: var(--h2-size);
	}
	.pContacts-section {
		padding: 115px 0 calc(100vw / .935);
		min-height: 840px;
		justify-content: flex-start;
	}
	.pContacts-bg img {
		object-position: center 100%;
	}
	.pContacts-heading {
		margin-bottom: var(--gap);
	}
	.pContacts-items {
		flex-direction: column;
		gap: calc(var(--gap) * 1.333);
	}
	.pContacts-item__value {
		font-size: var(--h4-size);
	}
	.pThank-section {
		padding: 150px 0;
	}
	.pThank-wrap {
		gap: var(--gap);
	}
	.error404-section {
		padding: 110px 0 calc(100vw * 1.05);
	}
	.error404-bg img {
		object-position: center 100%;
	}
	.error404-wrap {
		max-width: 100%;
	}
	.error404-number {
		font-size: 170px;
		margin-bottom: var(--gap);
	}
	.page-header {
		padding: 110px 0 80px;
	}
	.page-header:before {
        width: 225px;
        height: 115px;
        right: calc((100% - var(--container)) / 2 - 16px);
        bottom: -45px;
    }
    .page-body {
    	padding: 42px 0 32px;
    }
    .block-item {
    	padding: calc(var(--gap) / 1.5);
    }
    .woocommerce-cart-form table,
    .woocommerce-cart-form table tbody,
    .woocommerce-cart-form table tr,
    .woocommerce-cart-form table td,
    .cart-collaterals table,
    .cart-collaterals table tbody,
    .cart-collaterals table tr,
    .cart-collaterals table th,
    .cart-collaterals table td,
    .woocommerce-checkout-review-order-table,
    .woocommerce-checkout-review-order-table thead,
    .woocommerce-checkout-review-order-table tbody,
    .woocommerce-checkout-review-order-table tfoot,
    .woocommerce-checkout-review-order-table tr,
    .woocommerce-checkout-review-order-table th,
    .woocommerce-checkout-review-order-table td {
    	display: block;
    	width: 100%;
    	padding: 0 !important;
    	border: none;
    }
    .woocommerce-cart-form table thead {
    	display: none;
    }
   	.woocommerce-cart-form table tr {
   		padding-bottom: calc(var(--gap) / 2) !important;
   		margin-bottom: calc(var(--gap) / 2);
   		border-bottom: 1px solid var(--green);
   		display: flex;
   		flex-direction: column;
   		gap: var(--gap);
    }
    .woocommerce-cart-form table tr:last-child {
    	margin-bottom: 0;
    	padding-bottom: 0 !important;
    	border-bottom: none;
    }
    .woocommerce-cart-form table tr td:before {
    	content: attr(data-title);
    	font-weight: 600;
    	color: #08050D;
    	display: block;
    	margin-bottom: calc(var(--gap) / 2);
    }
    .woocommerce-cart-form__cart-item-product-name {
    	min-height: inherit;
    	gap: calc(var(--gap) / 3);
    }
    .woocommerce-cart-form__cart-item-product-image {
    	margin-top: calc(var(--gap) / 2);
    }
    .woocommerce-cart-form__cart-item-product-image img {
    	max-height: 110px;
    }
    .woocommerce-cart-form__cart-item-product-price {
    	min-height: inherit;
    }
    .woocommerce-cart-form td.product-subtotal {
    	width: 100%;
    }
    .cart-collaterals table {
    	margin-top: calc(var(--gap) * 1.333);
    }
    .cart-collaterals table tbody {
    	display: flex;
    	flex-direction: column;
    	gap: var(--gap);
	}
	.cart-collaterals table tr {
		display: flex;
		flex-direction: column;
		gap: calc(var(--gap) / 2);
	}
    .cart-collaterals table td,
    .cart-collaterals table td strong {
    	font-weight: 400;
    }
    .pCheckout-wrap {
    	flex-direction: column;
    	gap: var(--gap);
    }
    .pCheckout-left,
    .pCheckout-right {
    	flex: auto;
    	max-width: 100%;
    }
    .woocommerce-checkout-review-order-table th {
    	line-height: 1.25 !important;
    }
    .woocommerce-checkout-review-order-table thead {
    	margin-bottom: calc(var(--gap) / 2);
    }
    .woocommerce-checkout-review-order-table thead th.product-total,
    .woocommerce-checkout-review-order-table tbody td.product-total {
    	display: none;
    }
    .woocommerce-checkout-review-order-table tbody {
    	margin-bottom: var(--gap);
    }
    .woocommerce-checkout-review-order-table tfoot {
    	display: flex;
    	flex-direction: column;
    	gap: var(--gap);
    }
    .woocommerce-checkout-review-order-table tfoot tr {
    	display: flex;
    	flex-direction: column;
    	gap: calc(var(--gap) / 2);
    }
    .woocommerce-checkout-review-order-table tfoot td,
    .woocommerce-checkout-review-order-table tfoot td strong {
    	font-weight: 400;
    }
    .wc-block-components-notice-banner, .woocommerce-message, .woocommerce-NoticeGroup, .woocommerce-info, .woocommerce-error {
    	padding: calc(var(--gap) / 1.5);
    }
}



@media (max-width: 767px) {
	:root {
		--container: 516px;
		--gap: 24px;

		--text-size: 16px;
		--text-size-lg: 18px;
		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 22px;
		--h6-size: 20px;
	}
	.infoProductSecond-content-bg {
		min-width: calc(var(--container) * 1.8);
	}
	.admin-bar .header.fixed {
		top: 0;
	}
}



@media (max-width: 575px) {
	:root {
		--container: calc(100vw - 32px);
		--gap: 24px;

		--text-size: 16px;
		--text-size-lg: 18px;
		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 22px;
		--h6-size: 20px;
	}
	.infoProductSecond-content {
		margin-right: var(--gap);
	}
	.infoProductSecond-content-inner {
		margin-right: calc(var(--gap) * 1.333);
		max-width: 75%;
	}
	.infoProductSecond-content-bg {
		min-width: 670px;
		box-shadow: 4px 16px 16px rgba(0, 0, 0, .1);	
	}
	.history-section {
		padding: 40px 0 calc(100vw * 1.8);
	}
	.post-3 .page-title {
		font-size: var(--h2-size);
	}
}