/*
Theme name: Plaqtiv
Description:
Author: Aleksandrlao
Author URI: http://alao.pp.ua
*/


:root {
	--white: #fff;
	--black: #303133;
	--dark-blue: #001B4C;
	--light-blue: #F0F5F9;
	--orange: #EA7C52;
	--blue: #1E8AC7;
}



*, *::before, *::after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
html {
	font-size: 20px;
}
body {
	background: var(--white);
	color: var(--black);
	font: 0.9rem/1.5 'Montserrat', Arial, sans-serif;
}
.wrapper,
body.nav-active {
	overflow: hidden;
}
.box {
	width: 100%;
	min-width: 320px;
	position: relative;
}
.container {
	width: 100%;
	min-width: 320px;
	max-width: 1300px;
	padding-left: 1rem;
	padding-right: 1rem;
	margin: 0 auto;
	position: relative;
	border-top: 0 solid transparent;
}
.container::after {
	content: '';
	display: block;
	clear: both;
	width: 100%;
	height: 0;
}
.flx {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}


a {
	color: var(--blue);
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

input, textarea, select {
	font-family: 'Montserrat', Arial, sans-serif;
}
input.error {
	color: #f00 !important;
	border: 1px solid #f00 !important;
}
input.valid {
	border: 1px solid #339e36 !important;
}
input:focus {
	color: var(--black);
}
input::-webkit-input-placeholder {
	color: var(--black);
}
input::-moz-placeholder {
	color: var(--black);
}
input:-moz-placeholder {
	color: var(--black);
}
input:-ms-input-placeholder {
	color: var(--black);
}






.text {
	overflow: hidden;
}
.text p {
	margin-bottom: 1.2rem;
}
.text h2, .text h3, .text h4, .text h5 {
	margin-bottom: 20px;
	color: #000;
	font-size: 1.5rem;
	line-height: 1.33rem;
}
.text h3 {
	font-size: 1.2rem;
}
.text h4, .text h5 {
	font-size: 1rem;
}
.text table {
	width: 100%;
	border-collapse: collapse;
}
.text table tr td {
	border: 1px solid var(--gray);
	padding: 10px;
	margin-bottom: 1.2rem;
}
.text ul, .text ol {
	margin: 0 0 1rem 1.2rem;
}
.text li {
	margin-bottom: 8px;
}
.text img {
	display: block;
	max-width: 100%;
	height: auto;
}



.alignleft {display: inline;float: left;margin: 5px 15px 5px 0;}
.alignright {display: inline;float: right;margin: 5px 0 5px 15px;}
.aligncenter {clear: both;display: block;margin: 5px auto;}



.head {
	margin-bottom: 4rem;
	color: var(--white);
	font-family: 'Amatic SC', cursive;
	font-size: 49px;
	font-weight: 700;
	line-height: 1.5;
	text-transform: uppercase;
}
.head span {
	display: inline;
	padding: 4px;
	background: var(--orange);
	white-space: pre-wrap;
}



	/* Header ----------------------------------------------------------------------------- */
.header {
	position: fixed;
	top: 0;
	left: 0;
	padding-top: 1rem;
	padding-bottom: 1.5rem;
	border-bottom: 10px solid var(--orange);
	background: var(--white);
	transition: all .3s ease;
	z-index: 240;
}
.header.sticky {
	padding-top: 0;
	padding-bottom: 0.2rem;
}
.header .container {
	align-items: center;
}
.header__logo {
	display: block;
	width: 129px;
	height: 77px;
	background: url('i/bg-logo.jpg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}

.header__nav {
	width: calc(100% - 178px);
	padding-top: 12px;
}
.header__nav-btn {
	display: none;
	width: 30px;
	height: 30px;
	border: none;
	background-color: transparent;
	outline: none;
	cursor: pointer;
}
.header__nav-btn span {
	display: inline-block;
	vertical-align: top;
	width: 30px;
	height: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background: var(--black);
	margin: 15px 0 0;
	position: relative;
}
.header__nav-btn span::before, .header__nav-btn span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 30px;
	height: 3px;
	-webkit-border-radius: 3px;
		  border-radius: 3px;
	background: var(--black);
	transition: all 0.4s ease;
}
.header__nav-btn span::before {
	top: -8px;
}
.header__nav-btn span::after {
	bottom: -8px;
}
.nav-active .header__nav-btn span {
	background: transparent;
}
.nav-active .header__nav-btn span::before {
	top: 0;
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
.nav-active .header__nav-btn span::after {
	bottom: 0;
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.header__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	list-style: none;
}
.header__nav li {
	margin: 4px;
}
.header__nav a {
	display: block;
	padding: 4px;
	position: relative;
	color: var(--dark-blue);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
	text-decoration: none;
	transition: all .3s ease;
}
.header__nav a span {
	font-weight: bold;
}
.header__nav a:hover {
	color: var(--white);
}
.header__nav a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	border-radius: 4px 0 0 0;
	background: var(--dark-blue);
	transition: all .3s ease;
	z-index: -1;
}
.header__nav a:hover::before {
	width: 100%;
}









/* Hero ----------------------------------------------------------------------------- */
.hero {
	margin-top: 136px;
	padding-top: 4rem;
	padding-bottom: 4rem;
	background: url("i/bg-hero.jpg") center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.hero__head {
	max-width: 560px;
	font-size: 70px;
	font-weight: 700;
	line-height: 1.3;
}
.hero__head span {
	background: var(--blue);
}
.hero__logo {
	position: absolute;
	bottom: 55px;
	left: calc(50% + 400px);
	width: 218px;
	height: 208px;
}
.hero__group-logo {
	position: absolute;
	bottom: 70px;
	left: calc(50% - 640px);
	width: 184px;
	height: 48px;
}
.hero__logo img,
.hero__group-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}















/* Product ----------------------------------------------------------------------------- */
.product {
	padding-top: 4rem;
	padding-bottom: 6rem;
}
.product__head {
	max-width: 680px;
	margin-bottom: 4.5rem;
}
.product__slider {
	position: relative;
}

.slick-list {
	overflow: hidden;
}
.slick-arrow {
	position: absolute;
	top: calc(50% - 20px);
	width: 56px;
	height: 56px;
	background-color: transparent;
	border: none;
	outline: none;
	font-size: 0;
	cursor: pointer;
	z-index: 40;
}
.slick-prev {
	left: calc(50% - 830px);
}
.slick-next {
	right: calc(50% - 830px);
}
.slick-arrow::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--blue);
	-webkit-mask: url('i/bg-icon-slider-arrow.svg') center no-repeat;
	mask: url('i/bg-icon-slider-arrow.svg') center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: all .3s ease;
}
.slick-next::before {
	transform: rotate(180deg);
}
.slick-arrow:hover::before {
	background: var(--dark-blue);
}

.product-item {
	float: left;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	border-radius: 10px 100px;
	background: var(--light-blue);
	padding: 0 4rem;
}
.product-item__thumb {
	width: 33%;
}
.product-item__thumb img {
	display: block;
	width: 100%;
	height: auto;
}
.product-item__info {
	width: 58%;
	padding: 1rem 0;
}
.product-item__subhead {
	margin-bottom: 0.8rem;
	color: var(--blue);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.24px;
}
.product-item__head {
	margin-bottom: 1.2rem;
	color: var(--dark-blue);
	font-size: 35px;
	font-weight: 400;
	line-height: 1.2;
}
.product-item__data {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	padding-bottom: 20px;
}
.product-item__for {
	width: 48px;
	height: 48px;
	transform: rotate(-45deg);
	border-radius: 13px 0px 13px 13px;
	background: linear-gradient(140deg, #003869 0%, #5E96CB 100%);
	margin: 0 20px 20px 0;
}
.product-item__for::before {
	content: '';
	position: absolute;
	top: -20%;
	left: -20%;
	width: 140%;
	height: 140%;
	background: url('i/bg-icon-dog.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	transform: rotate(45deg);
}
.product-item__for--cat::before {
	background-image: url('i/bg-icon-cat.svg');
}
.product-item__easy {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
	padding-left: 16px;
}
.product-item__easy-head {
	margin-right: 10px;
	color: #000;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
}
.product-item__easy-arrow {
	width: 29px;
	height: 29px;
	background: url('i/bg-icon-check.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}
.product-item__text {
	font-size: 14px;
}
.product-item__text h3 {
	margin-bottom: 1.2rem;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.3px;
}
.product-item__text ul {
	list-style: none;
	margin: 0 0 24px 0;
}
.product-item__text ul li {
	padding-left: 22px;
	position: relative;
}
.product-item__text ul li::before {
	content: '';
	position: absolute;
	top: 5px;
	left: 0;
	width: 10px;
	height: 9px;
	border-radius: 50%;
	border: 1px solid var(--black);
}











/* Result ----------------------------------------------------------------------------- */
.result {
	padding-top: 5rem;
	padding-bottom: 3.5rem;
	background: url("i/bg-result.jpg") center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	color: var(--white);
}
.result::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 50%;
	width: 412px;
	height: 436px;
	background: url('i/bg-result-dog.png') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}
.result__head {
	max-width: 450px;
	margin-bottom: 1.3rem;
}
.result__head span {
	background: var(--blue);
}
.result__desc {
	max-width: 460px;
	margin-bottom: 5.4rem;
	color: #F1F1F1;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.28px;
}
.result-step__list {
	justify-content: flex-start;
	width: calc(100% + 1.8rem);
	margin-left: -0.9rem;
}
.result-step-item {
	width: calc(25% - 1.8rem);
	margin: 0 0.9rem 1.8rem;
}
.result-step-item__thumb {
	position: relative;
}
.result-step-item__thumb-ins {
	display: block;
	width: 100%;
	padding-top: 73%;
	overflow: hidden;
	border-radius: 0 44px 44px 44px;
	position: relative;
}
.result-step-item__thumb-ins img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.result-step-item__point {
	margin-top: -24px;
	margin-bottom: 24px;
	position: relative;
	z-index: 10;
}
.result-step-item__point span {
	display: inline-block;
	padding: 0 16px;
	background: var(--blue);
	color: #FFF;
	text-align: center;
	font-family: 'Amatic SC', cursive;
	font-size: 29px;
	font-weight: 700;
	line-height: 48px;
	text-transform: uppercase;
}
.result-step-item__desc {
	color: #F1F1F1;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	text-align: center;
}













/* Effective ----------------------------------------------------------------------------- */
.effective {
	padding-top: 4.6rem;
	padding-bottom: 5.6rem;
	background: var(--light-blue);
}
.effective__head {
	margin-bottom: 2.5rem;
}
.effective__desc {
	max-width: 680px;
	margin-bottom: 3.5rem;
	color: #3D3E40;
	font-size: 15px;
	line-height: 1.4;
	letter-spacing: 0.3px;
}
.effective__graph {
	border-radius: 10px 100px;
	background: #FFF;
	overflow: hidden;
}
.effective__graph img {
	display: block;
	width: 100%;
	height: auto;
}













/* Safety ----------------------------------------------------------------------------- */
.safety {
	padding-top: 5.6rem;
	padding-bottom: 5.6rem;
	background: var(--blue) url('i/bg-safety.jpg') center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.safety__head {
	margin-bottom: 5rem;
}
.safety__head span {
	background: var(--blue);
}
.safety__box {
	background: var(--white);
	border-radius: 10px 100px;
	padding: 2rem 4rem;
}
.safety__box p {
	margin-bottom: 1rem;
}
.safety-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 104px;
	padding-top: 1rem;
	padding-bottom: 1rem;
	position: relative;
	padding-left: 84px;
	color: #303133;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.3px;
}
.safety-item__icon {
	position: absolute;
	top: calc(50% - 30px);
	left: 0;
	width: 60px;
	height: 60px;
}
.safety-item__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.safety-item ul {
	width: 100%;
	list-style: none;
}
.safety-item li {
	padding-left: 22px;
	position: relative;
}
.safety-item li::before {
	content: '';
	position: absolute;
	top: calc(50% - 3px);
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--blue);
}















/* Plan ----------------------------------------------------------------------------- */
.plan {
	padding-top: 5.5rem;
	padding-bottom: 4rem;
}
.plan__head {
	max-width: 360px;
}
.plan__desc {
	max-width: 690px;
	margin-bottom: 2.8rem;
	color: #3D3E40;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.3px;
}
.plan-item {
	margin-bottom: 2.8rem;
}
.plan-item__head {
	padding: 20px 72px 20px 32px;
	border-radius: 4px;
	border: 2px solid var(--blue);
	background: var(--blue);
	position: relative;
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.18px;
	transition: all .3s ease;
	cursor: pointer;
}
.plan-item__head::before {
	content: '';
	position: absolute;
	top: calc(50% - 18px);
	right: 32px;
	width: 36px;
	height: 36px;
	background: var(--white);
	-webkit-mask: url('i/bg-icon-slider-arrow.svg') center no-repeat;
	mask: url('i/bg-icon-slider-arrow.svg') center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transform: rotate(-90deg);
	transition: all .3s ease;
}
.plan-item.is-open .plan-item__head {
	background: var(--white);
	color: var(--blue);
}
.plan-item.is-open .plan-item__head::before {
	background: var(--blue);
	transform: rotate(90deg);
}
.plan-item__body {
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}
.plan-item.is-open .plan-item__body {
	max-height: 8000px;
}
.plan-item__text {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 144px;
	margin-top: 1.6rem;
	border-top: 1px solid #EAEAEA;
	padding-top: 1.2rem;
	padding-bottom: 1rem;
	position: relative;
	padding-left: 124px;
	color: #303133;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.3px;
}
.plan-item__icon {
	position: absolute;
	top: calc(50% - 50px);
	left: 0;
	width: 100px;
	height: 100px;
}
.plan-item__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.plan-item ul {
	width: 100%;
	list-style: none;
}
.plan-item li {
	padding-left: 22px;
	position: relative;
}
.plan-item li::before {
	content: '';
	position: absolute;
	top: calc(50% - 3px);
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--blue);
}













/* Download ----------------------------------------------------------------------------- */
.download {
	padding-top: 5rem;
	padding-bottom: 4rem;
}
.download__list {
	justify-content: flex-start;
	width: calc(100% + 1.2rem);
	margin-left: -0.6rem;
}
.download-item {
	width: calc(50% - 1.2rem);
	margin: 0 0.6rem 1.2rem;
}
.download-item__thumb {
	margin-bottom: 1.7rem;
}
.download-item__thumb-ins {
	display: block;
	width: 100%;
	padding-top: 62.5%;
	position: relative;
	border-radius: 10px 100px;
	background: #F0F5F9;
	overflow: hidden;
}
.download-item__thumb-ins img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.download-item__desc {
	min-height: 138px;
	padding-bottom: 1rem;
	color: #303133;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.3px;
}
.download-item__button {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 80px;
	border-radius: 15px;
	background: var(--blue);
	border: 2px solid var(--blue);
	padding: 10px 20px;
	position: relative;
	color: #FFF;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	transition: all .3s ease;
}
.download-item__button-icon {
	display: inline-block;
	vertical-align: middle;
	width: 32px;
	height: 32px;
	margin-left: 16px;
	border-radius: 50%;
	background: #222935;
	position: relative;
}
.download-item__button-icon::after {
	content: '';
	position: absolute;
	top: 5%;
	left: 2px;
	width: 90%;
	height: 90%;
	background: var(--white);
	-webkit-mask: url("i/bg-icon-slider-arrow.svg") center no-repeat;
	mask: url("i/bg-icon-slider-arrow.svg") center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transform: rotate(180deg);
}
.download-item__button:hover {
	background: var(--white);
	color: var(--blue);
}












/* Footer ----------------------------------------------------------------------------- */
.footer {
	padding-top: 2.6rem;
	padding-bottom: 2.5rem;
	background: #1B1C20;
}
.footer__logo {
	display: block;
	width: 183px;
	height: 30px;
	background: url("i/footer-logo.png") center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	margin-bottom: 1.8rem;
}
.footer__wrapper {
	align-items: flex-end;
}
.footer__nav {
	max-width: 50%;
}
.footer__nav ul {
	list-style: none;
}
.footer__nav li {
	padding-bottom: 8px;
}
.footer__nav a {
	color: #E3E8EE;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	text-decoration: none;
}
.footer__nav a:hover {
	color: #fff;
	text-decoration: underline;
}

.footer__info {
	max-width: 48%;
	margin-left: auto;
	text-align: right;
}
.footer__address {
	margin-bottom: 10px;
	color: #E3E8EE;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.24px;
}
.footer__copyright {
	color: #E3E8EE;
	text-align: right;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.3px;
}




/* Всплывающие окна */
.overlay {
	display: none;
	background-color: #000;
	opacity: .7;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999
}
.overlay.active {
	display: block;
}

.popup {
	display: none;
	position: relative;
	width: 100%;
	max-width: 400px;
	padding: 25px;
	background: #fff;
	text-align: center;
	z-index: 9999;
}
.popup__close {
	width: 24px;
	height: 24px;
	-webkit-border-radius: 100%;
		  border-radius: 100%;
	position: absolute;
	background: #000;
	color: #FFF;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	border: 1px solid #363636;
	top: -11px;
	right: -11px;
	cursor: pointer;
}
.popup__close:hover {
	background: #FFF;
	color: #000;
}
.popup__title {
	margin-bottom: 5px;
	font-size: 30px;
	font-weight: 300;
	line-height: 34px;
	color: #000;
}
.popup__subtitle {
	margin-bottom: 20px;
	font-size: 13px;
	line-height: 21px;
	text-align: center;
	color: #000;
}
.popup__label {
	position: relative;
}
.popup__body input,
.popup__body textarea {
	width: 100%;
	height: 40px;
	margin-top: 12px;
	padding-left: 12px;
	border: 1px solid #eee;
	background-color: #FFF;
	outline: none;
}
.popup-body textarea {
	height: 120px;
	resize: none;
	padding-top: 5px;
}
.popup-body input[type="submit"] {
	height: 46px;
	padding-left: 0;
	background-color: #FC0;
	border: 1px solid #FC0;
	color: #000;
	font-size: 17px;
	font-weight: bold;
	line-height: 44px;
	cursor: pointer;
}



/* Форма */


input.hide_input {
	display: none;
}
span.wpcf7-not-valid-tip, div.wpcf7-validation-errors {
	display: none !important;
}
.popup-body input.wpcf7-not-valid {
	border: 1px solid #c00;
}

.popup-thy {
	position: fixed;
	top: calc(50% - 160px);
	left: calc(50% - 200px);
}




/* ==============================================================
   ========================  MEDIA  =============================
   ============================================================== */
@media screen and (max-width:1650px) {

	.slick-prev {
		left: calc(50% - 680px);
	}
	.slick-next {
		right: calc(50% - 680px);
	}

}







@media screen and (max-width:1350px) {

	.hero {
		padding-top: 6rem;
		padding-bottom: 8rem;
	}
	.hero__logo {
		bottom: 40px;
		left: inherit;
		right: 40px;
	}
	.hero__group-logo {
		bottom: 50px;
		left: 40px;
	}


	.slick-prev {
		left: 10px;
	}
	.slick-next {
		right: 10px;
	}

}









@media screen and (max-width:1200px) {

	.header__nav {
		width: calc(100% - 138px);
		padding-top: 16px;
	}
	.header__nav li {
		margin: 0;
	}
	.header__nav a {
		font-size: 13px;
	}


	.hero__head {
		max-width: 520px;
		font-size: 52px;
	}

}











@media screen and (max-width:1050px) {

	.head {
		margin-bottom: 2.5rem;
		font-size: 44px;
	}


	.header {
		padding-top: 0.8rem;
		padding-bottom: 1rem;
		border-bottom: 8px solid var(--orange);
	}

	.header__nav {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		align-items: center;
		width: calc(100% - 240px);
		padding-top: 20px;
	}
	.header__nav-btn {
		display: block;
	}
	.header__nav ul {
		position: absolute;
		top: 20px;
		right: 10px;
		width: 280px;
		background: var(--white);
		padding: 10px;
		opacity: 0;
		pointer-events: none;
		z-index: 40;
	}
	.nav-active .header__nav ul {
		top: 64px;
		opacity: 1;
		pointer-events: auto;
	}


	.hero {
		padding-top: 5rem;
		padding-bottom: 6rem;
	}
	.hero__head {
		max-width: 500px;
		font-size: 64px;
	}
	.hero__logo {
		width: 164px;
		height: 160px;
	}


	.product-item__subhead {
		margin-bottom: 0.4rem;
		font-size: 20px;
	}
	.product-item__info {
		width: 62%;
	}


	.safety__head {
		margin-bottom: 2rem;
	}


	.plan-item {
		margin-bottom: 2rem;
	}


	.download {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	.download-item__thumb {
		margin-bottom: 1rem;
	}

}












@media screen and (max-width:900px) {

	html {
		font-size: 18px;
	}


	.product-item {
		padding: 0 3rem;
	}


	.result {
		padding-top: 4rem;
		padding-bottom: 3rem;
	}
	.result::before {
		top: 40px;
		left: 60%;
		width: 310px;
		height: 330px;
	}
	.result__desc {
		margin-bottom: 4rem;
	}
	.result-step-item {
		width: calc(50% - 1.8rem);
		margin: 0 0.9rem 1.8rem;
	}


	.effective__desc {
		max-width: 600px;
		margin-bottom: 2.5rem;
	}


	.safety__box {
		border-radius: 10px 80px;
		padding: 1rem 2rem;
	}


	.plan {
		padding-top: 3rem;
		padding-bottom: 2rem;
	}


	.footer__nav {
		max-width: 100%;
		padding-bottom: 2rem;
	}
	.footer__info {
		width: 100%;
		max-width: 100%;
		text-align: center;
	}
	.footer__copyright {
		text-align: center;
	}

}












@media screen and (max-width:750px) {

	.hero {
		padding-top: 4rem;
		padding-bottom: 6rem;
	}
	.hero__head {
		max-width: 400px;
		font-size: 50px;
	}
	.hero__logo {
		bottom: 24px;
		width: 144px;
		height: 140px;
	}


	.slick-prev {
		left: 2px;
	}
	.slick-next {
		right: 2px;
	}


	.product-item__thumb {
		width: 60%;
		margin: 0 auto 0.4rem;
	}
	.product-item__info {
		width: 100%;
	}


	.result::before {
		top: 80px;
		left: 56%;
		width: 240px;
		height: 250px;
	}
	.result__desc {
		max-width: 360px;
	}

}












@media screen and (max-width:600px) {

	html {
		font-size: 16px;
	}


	.hero__head {
		max-width: 320px;
		font-size: 40px;
	}
	.hero__logo {
		bottom: 20px;
		right: 16px;
		width: 124px;
		height: 120px;
	}
	.hero__group-logo {
		bottom: 32px;
		left: 16px;
	}


	.result::before {
		top: 200px;
		left: 62%;
		width: 180px;
		height: 200px;
	}


	.plan-item__head {
		padding: 16px 56px 16px 20px;
	}
	.plan-item__head::before {
		top: calc(50% - 16px);
		right: 16px;
		width: 32px;
		height: 32px;
	}
	.plan-item__text {
		min-height: 104px;
		margin-top: 1rem;
		padding-top: 1rem;
		padding-bottom: 1rem;
		padding-left: 92px;
		line-height: 1.6;
		letter-spacing: 0;
	}
	.plan-item li {
		padding-left: 16px;
		margin-bottom: 8px;
	}
	.plan-item__icon {
		top: calc(50% - 40px);
		width: 80px;
		height: 80px;
	}


	.download-item {
		width: calc(100% - 1.2rem);
		margin: 0 0.6rem 1.2rem;
	}

}












@media screen and (max-width:450px) {

	.head {
		margin-bottom: 2rem;
		font-size: 30px;
	}


	.header {
		padding-top: 0.4rem;
		padding-bottom: 0.6rem;
		border-bottom: 4px solid var(--orange);
	}
	.header__nav {
		width: calc(100% - 200px);
		padding-top: 0;
	}


	.hero__head {
		max-width: 250px;
		font-size: 32px;
	}


	.slick-prev {
		left: -24px;
	}
	.slick-next {
		right: -24px;
	}

	.product-item {
		padding: 0 1rem;
		border-radius: 10px 40px;
	}
	.product-item__head {
		margin-bottom: 1rem;
		font-size: 32px;
	}
	.product-item__for {
		width: 32px;
		height: 32px;
		border-radius: 10px 0 10px 10px;
		margin: 0 10px 10px 0;
	}
	.product-item__easy {
		margin-bottom: 10px;
		padding-left: 8px;
	}
	.product-item__easy-head {
		margin-right: 4px;
		font-size: 11px;
	}
	.product-item__easy-arrow {
		width: 20px;
		height: 20px;
	}
	.product-item__text ul li {
		padding-left: 16px;
	}
	.product-item__text ul li::before {
		top: 6px;
		width: 8px;
		height: 8px;
	}


	.result::before {
		display: none;
	}
	.result-step-item {
		width: calc(100% - 1.8rem);
		margin: 0 0.9rem 1.8rem;
	}


	.safety__box {
		border-radius: 10px 40px;
		padding: 0.8rem 1rem;
	}
	.safety-item {
		min-height: 64px;
		padding-top: 0.8rem;
		padding-bottom: 0.8rem;
		padding-left: 56px;
		font-size: 15px;
		line-height: 1.5;
		letter-spacing: 0;
	}
	.safety-item__icon {
		top: calc(50% - 24px);
		width: 48px;
		height: 48px;
	}
	.safety-item li {
		padding-left: 16px;
	}


	.plan-item {
		margin-bottom: 1.2rem;
	}
	.plan-item__text {
		min-height: 80px;
		margin-top: 0.6rem;
		padding-top: 0.8rem;
		padding-bottom: 0.8rem;
		padding-left: 72px;
		line-height: 1.3;
	}
	.plan-item__icon {
		top: calc(50% - 36px);
		left: -4px;
		width: 72px;
		height: 72px;
	}
	.plan-item__head {
		padding: 12px 40px 12px 12px;
		font-size: 16px;
		line-height: 1.2;
	}
	.plan-item__head::before {
		right: 8px;
	}


}












/* END ============================================================= */

