* {
	box-sizing: border-box;
}

body {
	padding: 0;
	margin: 0;
	font-size: 14px;
	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: 28px;
}

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: 0px;
}

.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: #0095e9;
}

.btn-primary {
  display: flex;
  padding: 10px 35px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  color: white;
  background: #0095e9;
  transition: 1s;
  box-shadow: 6px 6px 0 #2c2d31;
  transform: skewX(-15deg);
  outline: none;
  border: none;
  align-items: center;
  font-weight: 500;
  margin: 0 auto;
  cursor: pointer;
}

.btn-primary:focus {
   outline: none; 
}

.btn-primary:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 #FBC638;
}

.btn-primary span:nth-child(2) {
    transition: 0.5s;
    margin-right: 0px;
}

.btn-primary:hover  span:nth-child(2) {
    transition: 0.5s;
    margin-right: 45px;
}

  .btn-primary span {
    transform: skewX(15deg) 
  }

  .btn-primary span:nth-child(2) {
    width: 20px;
    margin-left: 30px;
    position: relative;
    top: 12%;
  }
  
/**************SVG****************/

.btn-primary path.one {
    transition: 0.4s;
    transform: translateX(-60%);
}

.btn-primary path.two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.btn-primary:hover path.three {
    animation: color_anim 1s infinite 0.2s;
}

.btn-primary:hover path.one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.btn-primary:hover path.two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */

@keyframes color_anim {
    0% {
        fill: white;
    }
    50% {
        fill: #FBC638;
    }
    100% {
        fill: white;
    }
}

.main-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 24px;
	background: #0095e9;
	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: #0095e9;
	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;
	padding-top: 48px;
}

.intro {
	background: #0095e9;
}

.thanks {
	background: #4bd542;
}

.intro h1 {
	color: #fff;
}

.thanks h1,
.thanks p {
	color: #fff;
}

.price-wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}

.price-wrapper .price {
	display: block;
	max-width: 50%;
	min-width: 50%;
	width: 50%;
	padding: 20px;
	transform: skew(-10deg);
}

.price-wrapper .price.old {
	background: #2c2d31;
	color: #fff;
}

.price-wrapper .price.new {
	background: #0095e9;
	color: #fff;
}

.price-wrapper .price .price-title {
	display: block;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	color: inherit;
}

.price-wrapper .price .price-number {
	display: block;
	text-align: center;
	font-size: 28px;
	font-weight: 600;
	color: inherit;
}

.price-wrapper .price.old .price-number {
	text-decoration: line-through;
}

.cta {
	display: block;
	padding: 10px 24px 24px 24px;
	border-radius: 16px;
	background: #fff;
	position: relative;
}

.cta .discount {
	display: block;
	margin: 0 auto;
	transform: rotate(-10deg);
	max-width: 160px;
}

.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"] {
	display: inline-block;
	width: 100%;
	padding: 20px;
	border: 1px solid #0095e9;
	border-radius: 0;
	background: #fff;
	outline: none;
}

/*.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;
}

.slider-box .slider-control {
	display: block;
	position: absolute;
	bottom: 16px;
	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: #fff !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: 0;
	border: 2px solid #0095e9;
	transform: skewX(-5deg);
}

.steps .step span {
	display: block;
	font-size: 16px;
	text-align: left;
	font-weight: 600;
}

.footer a {
	color: #0095e9;
}

.thanks-icon {
	display: block;
	max-width: 70%;
	margin: 0 auto;
}

.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;
}

.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: 0px;
	overflow: hidden;
	background: #adaaaa;
	margin-top: 14px;
}

.review-meter .meter span {
	display: block;
	width: 94%;
	height: 10px;
	border-radius: 0px;
	background: #0095e9;
}

.video-box video {
 	width: 100%;
 	max-width: 100%;
 }