* {
	box-sizing: border-box;
}

body {
	padding: 0;
	margin: 0;
	font-size: 18px;
	background: #f3f3f3;
	color: #2c2828;
	font-family: "Montserrat", sans-serif;
  	font-optical-sizing: auto;
}

p {
	margin: 16px 0;
	line-height: 1.5;
}

h1 {
	margin: 0 0 16px 0;
	padding: 0;
	text-align: center;
	font-size: 36px;
}

h2 {
	margin: 0 0 16px 0;
	padding: 0;
	text-align: center;
	font-size: 22px;
}

.headline {
	font-size: 16px;
}

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

.full-width {
	width: 100%;
}

.rounded {
	border-radius: 16px;
}

.border-bottom-rounded {
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}

.align-c {
	text-align: center;
}

.padding-h {
	padding-left: 24px;
	padding-right: 24px;
}

.padding-v {
	padding-top: 16px;
	padding-bottom: 16px;
}

.bordered {
	border-bottom: 2px solid #dedede;
}

.cl-primary {
	color: #f3213e;
}

.btn-primary {
  display: block;
  outline: 0;
  border: 0;
  cursor: pointer;
  background-image: linear-gradient(to right top, #0e7686, #1d7c8d, #288393, #31899a, #3a90a1);
  padding: 20px 32px;
  border-radius: 12px;
  color: #fff;
  width: 100%;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
}

.btn-primary:hover {
 
}            

.main-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 24px;
	background-image: linear-gradient(to right top, #353537, #414143, #4e4e4f, #5c5b5c, #696969);
	position: fixed;
	top: 0;
	left: calc(50% - 240px);
	width: 480px;
	z-index: 500;
}

.main-header .logo {
	display: block;
	text-decoration: none;
	cursor: pointer;
}

.main-header .logo img {
	height: 40px;
	width: auto;
}

.main-header .menu-toggle {
	display: block;
	cursor: pointer;
}

.main-menu {
	display: block;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: calc(50% - 240px);
	width: 480px;
	height: 100%;
	background: #bc8660;
	transform: translateY(-100%);
	transition: all .4s ease;
	padding: 16px 24px;
}

.main-menu.opened {
	transform: translateX(0);
}

.main-menu .top {
	display: flex;
	justify-content: flex-start;
	padding-bottom: 16px;
	border-bottom: 1px solid #a3a3a3;
}

.main-menu .top .menu-close {
	display: block;
	cursor: pointer;
}

.main-menu .top .menu-close img {
	width: 24px;
}

.main-menu ul {
	display: block;
	list-style: none;
	padding: 0;
	margin: 16px 0 0 0;
}

.main-menu ul li {
	display: block;
	padding: 0 0 8px 0;
}

.main-menu ul li a {
	color: #fff;
	text-decoration: none;
}

.main-menu ul li a:hover {
	text-decoration: underline;
}

.page {
	display: block;
	width: 480px;
	max-width: 100%;
	margin: 0 auto;
	background: #fff;
}

.intro {
	background: #bc8660;
}

.thanks {
	background: #4bd542;
}

.intro h1,
.intro p {
	color: #fff;
}

.thanks h1,
.thanks p {
	color: #fff;
}

.price-wrapper {
	display: flex;
	justify-content: center;
	align-items: stretch;
	background: #e9e6e1;
	border-radius: 16px;
	overflow: hidden;
}

.price-wrapper .discount {
	display: flex;
	width: 80px;
	background-image: linear-gradient(to right top, #0e7686, #1d7c8d, #288393, #31899a, #3a90a1);
	justify-content: center;
	align-items: center;
	color: #fff;
	flex-direction: column;
}

.price-wrapper .discount .title {
	text-align: center;
	font-weight: 700;
}

.price-wrapper .discount .amount {
	text-align: center;
	font-weight: 700;
	font-size: 26px;
}

.price-wrapper .price {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: calc(50% - 40px);
	padding: 20px 0;
}

.price-wrapper .price.old {
	background-image: linear-gradient(to right top, #353537, #414143, #4e4e4f, #5c5b5c, #696969);
	color: #fff;
}

.price-wrapper .price.new {
	background-image: linear-gradient(to right top, #353537, #414143, #4e4e4f, #5c5b5c, #696969);
	color: #fff;
}

.price-wrapper .price .price-title {
	display: block;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: inherit;
}

.price-wrapper .price .economy {
	display: inline-block;
	padding: 3px 5px;
	color: #fff;
	background: #db2f3b;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
}

.price-wrapper .price .price-number {
	display: block;
	text-align: center;
	font-size: 26px;
	font-weight: 600;
	color: inherit;
}

.price-wrapper .price.old .price-number {
	text-decoration: line-through;
}

.cta {
	display: block;
	padding: 10px 0;
	position: relative;
}

.cta .discount {
	display: block;
	margin: 0 auto;
}

.cta .cta-title {
	font-size: 22px;
	font-weight: 600;
	display: block;
}

.cta .cta-description {
	font-size: 14px;
	font-weight: 500;
	display: block;
	padding: 0;
}

.form-input {
	margin-bottom: 16px;
}

.form-input input[type="text"],
.form-input input[type="tel"],
.form-input input[type="email"],
.form-input select {
    position: relative;
    cursor: text;
    font-size: 27px;
    background-color: #fff;
    border: 1px solid #d6d6e7;
   	padding: 20px 32px;
  	border-radius: 12px;
    color: rgb(35, 38, 59);
    box-shadow: inset 0 1px 4px 0 rgb(119 122 175 / 30%);
    overflow: hidden;
    transition: all 100ms ease-in-out;
    display: inline-block;
    width: 100%;
    outline: none;
}

.form-input select {
	-webkit-appearance: initial;
	display: block;
	cursor: pointer;
}

.form-input input[type="text"]:focus,
.form-input input[type="tel"]:focus,
.form-input input[type="email"]:focus,
.form-input select:focus {
  border-color: #00ba00;
  box-shadow: 0 1px 0 0 rgb(35 38 59 / 5%);
}

/*.form-input button {
	width: 100%;
	padding: 16px;
	border-radius: 12px;
	background: #fe0100;
	outline: none;
	color: #fff;
	border: 2px solid #c30302;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
}

.form-input button:hover {
	background: #c30302;
}*/

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox + label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-checkbox + label::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #c30302;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox:checked + label::before {
  border-color: #fe0100;
  background-color: #fe0100;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.slider-box {
	position: relative;
	margin-top: 16px;
}

.slider-box .slider-control {
	display: block;
	position: absolute;
	bottom: 50%;
	z-index: 100;
	cursor: pointer;
	opacity: 0.6;
	transition: all .3s ease;
}

.slider-box .slider-control:hover {
	opacity: 1;
}

.slider-box .slider-control.prev {
	left: 9px;
}

.slider-box .slider-control.next {
	right: 9px;
	transform: rotate(180deg);
}

.slick-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 50;
}

.slick-dots li {
	margin: 0 !important;
}

.slick-dots li button:before {
	font-size: 10px !important;
	color: #db2f3b !important;
}

.steps {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.steps .step {
	width: 100%;
	max-width: 100%;
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: flex-start;
}

.steps .step img {
	width: 80px;
	min-width: 80px;
	padding: 16px;
	border-radius: 16px;
	border: 2px solid #f47b1f;
}

.steps .step span {
	display: block;
	font-size: 16px;
	text-align: left;
	font-weight: 600;
}

.footer a {
	color: #dc232b;
}

.thanks-icon {
	display: block;
	max-width: 70%;
	margin: 0 auto;
}

.bullet-list {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}

.bullet-list li {
	display: block;
	padding: 8px 0 8px 34px;
	margin: 0;
	position: relative;
}

.bullet-list li::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border: 3px solid #806b5d;
	border-radius: 2px;
	transform: rotate(45deg);
	position: absolute;
	left: 0;
	top: calc(50% - 5px);
}

.check-list {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}

.check-list li {
	display: block;
	padding: 8px 0 8px 40px;
	margin: 0;
	background-image: url('../images/check.png');
	background-repeat: no-repeat;
	background-position: center left;
}

.arrow-list {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}

.arrow-list li {
	display: block;
	padding: 8px 0 8px 40px;
	margin: 0;
	background-image: url('../images/right-arrow.png');
	background-repeat: no-repeat;
	background-position: center left;
}

.review-meter {
	display: block;
}

.review-meter .title {
	display: block;
	text-align: center;
	font-weight: 600;
	font-size: 16px;
}

.review-meter .meter {
	display: block;
	width: 100%;
	height: 10px;
	border-radius: 5px;
	overflow: hidden;
	background: #adaaaa;
	margin-top: 14px;
}

.review-meter .meter span {
	display: block;
	width: 94%;
	height: 10px;
	border-radius: 5px;
	background: #db2f3b;
}

.order-list {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}

.order-list li {
	display: block;
	position: relative;
	padding: 10px 0 10px 42px;
}

.order-list li > span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	color: #fff;
	font-weight: 500;
	border-radius: 14px;
	background: #00ba00;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -14px;
}

.price-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.price-list .item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 50px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #9e84cb;
}

.price-list .item .price {
	width: 100px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	background: #9e84cb;
}

.price-list .item .title {
	display: flex;
	width: calc(100% - 100px);
	height: 50px;
	align-items: center;
	justify-content: flex-start;
	padding: 0 16px;
	font-weight: 700;
}

.price-list .item:last-child .title {
	color: #fff;
	background: #9e84cb;
}

.user-reviews {
 	display: block;
 	margin-top: 16px;
 }

 .user-reviews .single-review {
 	display: block;
 	padding: 16px 0;
 	border-bottom: 1px solid #555;
 }

 .user-reviews .single-review .top {
 	display: flex;
 	gap: 10px;
 	align-items: center;
 }

.user-reviews .single-review .top > img {
	width: 42px;
	height: 42px;
	border-radius: 21px;
}

.user-reviews .single-review .top div .name {
	display: block;
	font-weight: 600;
}

.user-reviews .single-review .top div .city {
	display: block;
	color: #999;
	font-size: 12px;
}

.user-reviews .single-review .stars {
	display: block;
	margin-top: 6px;
}

.user-reviews .single-review .stars > span {
	display: block;
	color: #999;
	font-size: 12px;
}

.user-reviews .single-review .stars > div {
	display: flex;
	gap: 2px;
	align-items: center;
	margin-top: 4px;
}

.user-reviews .single-review .stars > div img.disabled {
	opacity: 0.3;
}

.user-reviews .single-review .text {
	margin-top: 10px;
}

.user-reviews .single-review .date {
	display: block;
	color: #999;
	font-size: 12px;
	margin-top: 10px;
}

.intro-benefits {
	display: grid;
	padding: 12px;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
	background: #fc7701;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}

.intro-benefits .item {
	display: block;
}

.intro-benefits .item img {
	display: block;
	width: 50px;
	margin: 0 auto;
	filter: invert(100%) sepia(7%) saturate(0%) hue-rotate(48deg) brightness(106%) contrast(106%);
}

.intro-benefits .item span {
	display: block;
	width: 90%;
	text-align: center;
	color: #fff;
	margin: 6px auto 0 auto;
	font-weight: 700;
	font-size: 12px;
}

.intro-list {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: flex-start;
}

.intro-list .left {
	width: 60%;
}

.intro-list .right {
	width: calc(100% - (60% + 16px));
}

.remains {
	display: block;
	padding: 12px;
	border-radius: 12px;
	background: #0477ca;
	text-align: center;
	margin-top: 8px;
}

.remains .title {
	display: block;
	text-align: center;
	font-weight: 500;
	color: #fff;
}

.remains .title span {
	display: inline-block;
	margin: 0 auto;
	padding: 3px 5px;
	border-radius: 4px;
	color: #2e2e2e;
	font-weight: 700;
	background: #fff;
	margin-top: 4px;
}

.video-box video {
	width: 100%;
}

.details {
	display: block;
	border-radius: 16px;
	overflow: hidden;
}

.details .row {
	display: flex;
	padding: 12px 12px;
	align-items: flex-start;
	justify-content: space-between;
}

.details .row:nth-child(2n-1) {
	background: #806b5d;
  color: #fff;
}

.details .row:nth-child(2n) {
	background: #8d8d8d;
  color: #fff;
}

.details .row div {
	max-width: 40%;
}

.details .row .left {
	text-align: left;
}

.details .row .right {
	text-align: right;
}

.benefits {
	display: block;
	margin: 16px 0 0 0;
}

.benefits .item {
	display: block;
	margin-bottom: 16px;
	border-radius: 20px;
	background: #fff;
	overflow: hidden;
	border: 6px solid #358f9f;
}

.benefits .item img {
	width: 100%;
	border-radius: 16px;
}

.benefits .item .title {
	display: block;
	margin-top: 16px;
	padding: 0 16px;
	text-align: center;
	font-weight: 700;
	color: #358f9f;
}

.benefits .item .text {
	display: block;
	padding: 16px;
	text-align: center;
}