html,body{
	height: 100%;
	width: 100%;
	margin: 0;
	-webkit-overflow-scrolling:touch;
}
body{
	display: flex;
	flex-direction: column;
	margin: 0;
	color: #473027;
	background: linear-gradient(0deg, #F6EEE5 0%, #F6EEE5 100%), #FFF;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	font-family: "Inter", sans-serif;
	position: relative;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	min-width: 320px;
}
body.active{
	overflow: hidden;
}
h1, h2, h3, h4, h5, h6{
	margin: 0;
	font-weight: 900;
}
a {
	display: inline-block;
}
p {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.25;
	color: #333;
	margin:0;
}
p strong{
	font-weight: 500;
	font-size: 20px;
	line-height: 1.2;
}
p a{
	text-decoration: none;
}
p a:hover{
	text-decoration: underline;
}
p:last-child{
	margin-bottom: 0px;
}
img{
	display: block;
	max-width: 100%;
}
a {
	outline: none;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}
ul{
	padding: 0;
	margin: 0;
}
li{
	list-style: none;
}
/*== buttons
---------------------------------*/
.orange__btn{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 9.38px;
	width: 106px;
	height: 34px;
	border-radius: 9.714px;
	border: 0.81px solid #F34100;
	background: #F34100;
	color: #FFF;
	text-align: center;
	font-family: "Inter Tight";
	font-size: 11.333px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-decoration: none;
	transition: 0.3s;
}
.orange__btn:hover{
	background: #FD711B;
}
.orange__btn:active{
	background: #FD711B;
}
button{
	margin:0;
	padding:0;
	border:none;
	background:none;
	cursor:pointer;
	overflow:visible;
	width:auto;
	outline: none;
	box-shadow: none;
	font-family: inherit;
}
button:hover , button:focus , button:active{
	outline: none;
	text-decoration: none;
}
/*== inputs
---------------------------------*/
input{
	outline: none;
	border: none;
}

textarea{
	height: 80px;
	outline: none;
}
.b-input-text{
	width: 100%;
	height: 52px;
	background: rgba(255, 255, 255, 0.42);
	mix-blend-mode: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	color: #333333;
	transition: 0.3s;
	padding: 0 15px 0 33px;

}
.b-input-text::-webkit-input-placeholder{
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	color: #A7A7A7;
}
.b-input-text:-moz-placeholder{
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	color: #A7A7A7;
}
.b-input-text.error{
	border-color: #EF4231;
}
textarea{
	height: 80px;
	outline: none;
	resize: none;
}
.b-textarea{
	width: 100%;
	height: 180px;
	background: #FFFFFF;
	border: 1px solid #CAD1D7;

	border-radius: 10px;
	padding: 20px 30px;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #888888;	
}
.b-textarea::-webkit-input-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #888888;	
}
.b-textarea:-moz-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #888888;		
}
/*== checkbox , raido
---------------------------------*/
.b-checkbox{

}
.b-checkbox input[type="checkbox"]{
    display: none;
}
.b-checkbox input[type="checkbox"] + label{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
}
.b-checkbox input[type="checkbox"] + label span{
	border: 1px solid #a2a2a2;
	border-radius: 0px;
	background: #fff;
	width: 20px;
	height: 20px;
	position: relative;
	margin: 0 11px 0 0;
	flex-shrink: 0;
	cursor: pointer;
}
.b-checkbox input[type="checkbox"]:checked + label span{
	background: #fff url("../images/check.svg") center no-repeat;
}
.b-checkbox input[type="checkbox"] + label i{
	padding: 0 0 0 0;
	font-family: Inter;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	color: #9D8379;
	cursor: pointer;
}
.b-checkbox input[type="checkbox"] + label i a{
	font-weight: 500;
	font-size: 12px;
	line-height: 1.66667;
	color: #24192c;
	text-decoration: underline;
	margin: 0 0 0 5px;
}
.b-checkbox input[type="checkbox"] + label i a:hover , .b-checkbox input[type="checkbox"] + label i a:focus , .b-checkbox input[type="checkbox"] + label i a:active{
	text-decoration: none;
	opacity: 0.8;
	transition: 0.3s;
}
.b-check{
	margin: 10px 0 0 0;
}
.b-check input[type="checkbox"]{
    display: none;
}
.b-check input[type="checkbox"] + label span{
	width: 11px;
	height: 11px;
	color: rgba(36, 39, 52, 0.35);
	font-size: 11px;
	flex-shrink: 0;
	margin: 2px 4px 0 0;
	cursor: pointer;
}
.b-check input[type="checkbox"] + label{
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.b-check input[type="checkbox"]:checked + label span{
	width: 11px;
	height: 11px;
	color: #333333;
}
.b-check input[type="checkbox"] + label i{
	font-style: italic;
	font-weight: 400;
	font-size: 13px;
	line-height: 1;
	text-align: right;
    color: rgba(36, 39, 52, 0.35);
	cursor: pointer;
}
.b-check input[type="checkbox"]:checked + label i{
	color: #333333;
}
/*== raido
---------------------------------*/
.b-radio{
	margin: 0 0 16px 0;
}
.b-radio input[type="radio"]{
    display: none;
}
.b-radio input[type="radio"] + label{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
}
.b-radio input[type="radio"] + label span{
	width: 22px;
	height: 22px;
	background: #FFFFFF;
	border: 1px solid rgba(56, 39, 39, 0.5);
	border-radius: 100%;
	transition: 0.3s;
	position: relative;
	margin: 0 10px 0 0;
	flex-shrink: 0;
	cursor: pointer;
}
.b-radio input[type="radio"] + label span:after{
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	width: 12px;
	height: 12px;
	background: #414141;
	border-radius: 100%;
	transform: translate(-50% , -50%);	
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.b-radio input[type="radio"]:checked + label span{
	width: 22px;
	height: 22px;
	border: 1px solid #2b2b2b;
	border-radius: 100%;
	transition: 0.3s;
}
.b-radio input[type="radio"]:checked + label span:after{
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
}
.b-radio input[type="radio"] + label i{
	color: #382727;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.375;

	padding: 1px 0 0 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
select{
	outline: none;
	font-family: inherit;
}
.b-select{
	border-radius: 2px;
	border: 1px solid #9D8379;
	background: #FFF;
	width: 100%;
	height: 44px;
	color: #9D8379;
	font-family: Inter;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	padding: 0 15px;
	background: #ffffff url(../images/select-arrow.svg);
	background-repeat: no-repeat;
	background-position: right 13px center;
	background-size: 13px 8px;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	-ms-appearance: none;
	appearance: none !important;
}
/* End Total css ====*/
.container{
	max-width: 1014px;
	margin: 0 auto 0;
	padding: 0 15px;

}
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-container{
    /* min-height: 100vh; */
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: column;
}

 /* ============== PAGE HOME ============== */

/* -------------- header-------------- */
.header{
	padding: 18px 0 20px 0;
	background: #FFF;
}

.header__content{

}
.header__content .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo{
	display: flex;
	gap: 9.17px;
	justify-content: flex-start;
	align-items: center;
	text-decoration: none;
	transition: 0.3s;
	
	&:hover {
		opacity: 0.8;
	}
}
.logo svg{
	width: 39.376px;
	height: 38.365px;

}
.logo p{
	color: #F34100;
	font-family: Georama;
	font-size: 16px;
	font-weight: 800;
	line-height: 0.9375;
	letter-spacing: 0.64px;
	text-transform: uppercase;
}
.nav ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 18px;
}
.nav ul li{

}
.nav ul li a{
	color: #473027;
	text-align: center;
	font-family: "Roboto Condensed";
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.18px;
	text-transform: uppercase;
	transition: 0.3s;

	&.current__page{
		color: #E51414;
	}
}
.current__page {
	color: #E51414;
}
.nav ul li a:hover{
	color: #E51414;
}
.header__contact{
	display: flex;
	flex-direction: column;	
}
.header__contact a{
	color: #473027;
	font-family: "Inter Tight";
	font-size: 13px;
	font-weight: 700;
	transition: 0.3s;

}
.header__contact a span{
	text-transform: uppercase;
}
.header__contact a:hover{
	opacity: 0.8;
}
.header__btn{
	display: flex;
	gap:10px;
	align-items: center;
	justify-content: center;

}
.header__right{
	display: none;
}
.b-mobile{
	display: none;
}
.homePage{
	transform: translateY(-100px);
	animation: fadetrans 0.5s ease-out forwards;
	animation-delay: 3s;

}

/* -------------- animation -------------- */

@keyframes fadetrans {
	to {
		transform: translateY(0);
		
	}
}

@keyframes soft-blink {
	0% {
		opacity: 1;
	}

	40% {
		opacity: 0.70;
	}

	60% {
		opacity: 0.9;
	}

	100% {
		opacity: 1;
	}
}
@keyframes fadeblock {
	to {
		opacity: 1;
		transform: translateY(0);

	}
}
@keyframes fadeIn {
	to {
		opacity: 1;
	}
}
@keyframes bounce {
	0% {
		transform: translateY(0);
	}

	20% {
		transform: translateY(-20px);
	}

	35% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}

	65% {
		transform: translateY(0);
	}

	75% {
		transform: translateY(-5px);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes bounce-2 {
	0% {
		transform: translateY(0);
	}

	20% {
		transform: translateY(-120px);
	}

	35% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-40px);
	}

	65% {
		transform: translateY(0);
	}

	75% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0);
	}
}
@keyframes shake {
	0% {
		transform: rotate(0deg);
	}

	15% {
		transform: rotate(10deg);
	}

	30% {
		transform: rotate(-8deg);
	}

	45% {
		transform: rotate(5deg);
	}

	60% {
		transform: rotate(-3deg);
	}

	75% {
		transform: rotate(1deg);
	}

	100% {
		transform: rotate(0deg);
	}
}
@keyframes tiny-bounce-2 {
	0% {
		transform: translateX(0);
	}

	25% {
		transform: translateX(5px);
	}

	40% {
		transform: translateX(0);
	}

	55% {
		transform: translateX(3px);
	}

	70% {
		transform: translateX(0);
	}

	85% {
		transform: translateX(1px);
	}

	100% {
		transform: translateX(0);
	}
}
@keyframes tiny-bounce {
	0% {
		transform: translateY(0);
	}

	25% {
		transform: translateY(-5px);
	}

	40% {
		transform: translateY(0);
	}

	55% {
		transform: translateY(-3px);
	}

	70% {
		transform: translateY(0);
	}

	85% {
		transform: translateY(-1px);
	}

	100% {
		transform: translateY(0);
	}
}
/* -------------- main -------------- */
.main__des {
	position: relative;
	background: linear-gradient(#FFC346 15.38%, #FEBD44 24.04%, #FE9F35 37.65%, #FC4A05 87.5%);
}

.main__des .main__des-content {
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	height: 640px;
}

.main__des-logo {
	position: absolute;
	top: 40%;
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s;
}

.main__des-logo p {
	color: #F34100;
	font-family: Georama;
	font-size: 33.675px;
	font-style: normal;
	font-weight: 800;
	line-height: 0.9047;
	letter-spacing: 1.347px;
	text-transform: uppercase;
}

.main__block-des {
	width: 100%;
	padding: 73px 0 72px 0;
	background: rgba(127, 0, 2, 0.30);
	transform: translateY(100%);
	opacity: 0;
	animation: fadeblock 0.3s ease-out forwards;
	animation-delay: 4s;
}


.main__block-des .container {
	display: flex;
	gap: 107px;
	align-items: center;
}

.main__title-des {
	min-width: 442px;
	color: #FFF;
	font-family: "Inter Tight";
	font-size: 48px;
	font-style: normal;
	font-weight: 900;
	line-height: 0.95833;
	opacity: 0;
	animation: fadeIn 0.3s ease-out forwards;
	animation-delay: 4.8s;
}

.main__text-des {
	color: #FFF;
	font-family: "Inter Tight";
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.375;
	opacity: 0;
	animation: fadeIn 0.3s ease-out forwards;
	animation-delay: 4.8s;

}

.main__animation {
	position: relative;
	width: 100%;
	height: 405px;
	opacity: 0;
	animation: fadeIn 1s ease-out forwards;
	animation-delay: 1.2s;
}


.circle-1 {
	position: absolute;
	top: 23px;
	left: 15px;
	animation: bounce-2 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;
}

.circle-2 {
	position: absolute;
	top: 248px;
	left: 139px;
	animation: bounce 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;

	@media screen and (max-width: 767px) {
		width: 23.686px;
		height: 23.686px;
		top: 249.98px;
		left: 24%;
	}

}

.circle-3 {
	position: absolute;
	top: 167px;
	left: 188px;
	animation: bounce-2 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;
}

.circle-4 {
	position: absolute;
	top: 266px;
	left: 386px;
	animation: bounce-2 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;

	@media screen and (max-width: 767px) {
		display: none;
	}
}

.circle-5 {
	position: absolute;
	top: 90px;
	left: 471px;
	animation: bounce 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;
}

.circle-6 {
	position: absolute;
	top: 184px;
	left: 585px;
	animation: bounce 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;
}

.circle-7 {
	position: absolute;
	top: 289px;
	left: 602px;
	animation: bounce 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;
}

.circle-8 {
	position: absolute;
	top: 36.11px;
	left: 753.68px;
	animation: bounce 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;
}

.circle-9 {
	position: absolute;
	top: 150px;
	left: 787px;
	animation: bounce-2 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;
}

.circle-10 {
	position: absolute;
	top: 291px;
	left: 966px;
	animation: bounce-2 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;

}

.capsule-1 {
	position: absolute;
	top: 209px;
	left: 0;
	min-width: 94.9px;
	height: 109.945px;
	animation: soft-blink 1.2s ease-in-out 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;
}

.capsule-2 {
	position: absolute;
	top: -10.81px;
	left: 218.9px;
	width: 168.094px;
	min-height: 126.641px;
	animation: soft-blink 1.2s ease-in-out 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;

	@media screen and (max-width: 767px) {
		width: 134.487px;
		min-height: 150px;
		top: 30px;
		left: 45%;
	}
}


.capsule-3 {
	position: absolute;
	top: 103px;
	left: 361px;
	width: 87.216px;
	height: 111.855px;
	animation: soft-blink 1.2s ease-in-out 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;

	@media screen and (max-width: 767px) {
		min-width: 69.779px;
		height: 89.492px;
		top: 133.97px;
		left: 80%;
	}
}

.capsule-4 {
	position: absolute;
	top: 243px;
	left: 415px;
	min-width: 159.582px;
	height: 154.459px;
	animation: tiny-bounce 1.6s cubic-bezier(0.33, 0, 0.67, 1) 1, soft-blink 1.2s ease-in-out 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;
}


.capsule-5 {
	position: absolute;
	top: 0;
	left: 532.8px;
	min-width: 101.892px;
	height: 120.996px;
	animation: shake 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1, soft-blink 1.2s ease-in-out 1;
	animation-fill-mode: forwards;
	transform-origin: center;
	animation-delay: 1.2s;

	@media screen and (max-width: 767px) {
		display: none;
	}
}

.capsule-6 {
	position: absolute;
	top: 292.47px;
	left: 808.78px;
	min-width: 77.338px;
	height: 86.922px;
	animation: shake 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1, soft-blink 1.2s ease-in-out 1;
	animation-fill-mode: forwards;
	transform-origin: center;
	animation-delay: 1.2s;
}

.capsule-7 {
	position: absolute;
	top: 150px;
	left: 849.84px;
	width: 118px;
	height: 113px;
	animation: tiny-bounce-2 1.6s cubic-bezier(0.33, 0, 0.67, 1) 1, soft-blink 1.2s ease-in-out 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;
}

.bear__main-1 {
	position: absolute;
	top: 23px;
	left: 4px;
	min-width: 212px;
	height: 177px;
	animation: shake 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1, soft-blink 1.2s ease-in-out 1;
	animation-fill-mode: forwards;
	transform-origin: center;
	animation-delay: 1.2s;
}

.bear__main-2 {
	position: absolute;
	top: 182px;
	left: 212px;
	min-width: 128.545px;
	height: 167.058px;
	animation: tiny-bounce 1.6s cubic-bezier(0.33, 0, 0.67, 1) 1, soft-blink 1.2s ease-in-out 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;
}

.bear__main-3 {
	position: absolute;
	top: 139px;
	left: 621px;
	min-width: 174px;
	height: 207px;
	animation: soft-blink 1.2s ease-in-out 1;
	animation-fill-mode: forwards;
	animation-delay: 1.2s;
}

.bear__main-4 {
	position: absolute;
	top: -28.01px;
	left: 820px;
	min-width: 128.041px;
	height: 168.86px;
	animation: shake 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1, soft-blink 1.2s ease-in-out 1;
	animation-fill-mode: forwards;
	transform-origin: center;
	animation-delay: 1.2s;
}

 /* --------------- info ------------*/

 .info{
	padding: 80px 0;
	background: linear-gradient(0deg, #F4E7D8 0%, #F4E7D8 100%),		#FFF;;
 }
 .info .container{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 108px;
 }
 .info__title{
	margin-bottom: 65px;
	color: #473027;
	font-family: "Inter Tight";
	font-size: 36px;
	font-weight: 900;
	line-height: 1.11111;
	text-transform: uppercase;
 }
 .info__left svg{
	margin-bottom: 20px;
	width: 207px;
	height: 202.306px;
	flex-shrink: 0;
 }
 .info__text {
	color: #473027;
	font-family: Inter;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.33333;
 }
 .info__right{
	display: flex;
	gap: 30px;
	flex-direction: column;
	align-items: center;
 }
 .info__right img{
	margin-top: 10px;
	width: 450px;
	height: 336px;
	flex-shrink: 0;
	aspect-ratio: 75/56;
 }

/* --------------- quality ------------*/
.quality{
	padding: 80px 0 0  0;
	background: #FCF8F3;
	
}
.quality  .container{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 132px;
}
.quality__left{
	position: relative;
	padding-bottom: 388px;
}
.quality__img{
	position: absolute;
	min-width: 534px;
	height: 341px;
	flex-shrink: 0;
	aspect-ratio: 534/341;
	bottom: 0;
	left: -48px;
}
.quality__img-2{
	display: none;
}
.quality__title{
	margin-bottom: 40px;
	color: #473027;
	font-family: "Inter Tight";
	font-size: 36px;
	font-weight: 900;
	line-height: 1.11111;
	text-transform: uppercase;
}
.quality__text{
	color: #473027;
	font-family: Inter;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.33333;
}
.quality__right, .quality__right ul {
	display: flex;
	flex-direction: column;
	gap: 25px;

}

.quality__right ul li{
	display: flex;
	gap: 12px;
	align-items: center;
}
.quality__right ul li svg{
	width: 82.368px;
	height: 82.368px;
	flex-shrink: 0;
}
.quality__right ul li h3 {
	color: #473027;
	font-family: Inter;
	font-size: 18px;
	font-weight: 900;
}
.quality__right ul li p {
	color: #473027;
	font-family: Inter;
	font-size: 18px;
	font-weight: 500;
}
.quality__item{}


/* --------------- help ------------*/
 .help{
	padding: 84px 0 79px 0;
	background: #2E1F1A;
}
.help .container{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.help__title{
	margin-bottom: 15px;
	color: #FFF;
	font-family: "Inter Tight";
	font-size: 36px;
	font-weight: 900;
	line-height: 1.11111;
	text-align: center;
	text-transform: uppercase;
	
}
.help__text{
	max-width: 414px;
	color: #FFF;
	text-align: center;
	font-family: "Familjen Grotesk";
	font-size: 16px;
	font-weight: 400;
}
.help__text a{
	color: #FFF;
	font-family: "Familjen Grotesk";
	font-size: 16px;
	font-weight: 600;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}


/* --------------- footer ------------*/
.footer{
	padding: 19px 0;
	background: #F4E7D8;
}
.footer .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer__logo{
	color: #785040;
	font-family: "Familjen Grotesk";
	font-size: 14px;
	font-weight: 400;

	&:hover {
			opacity: 0.8;
		}
}
.footer__nav ul{
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
}
.footer__nav ul li a{
	color: #785040;
	text-align: right;
	font-family: "Familjen Grotesk";
	font-size: 14px;
	font-weight: 400;

	&:hover{
		opacity: 0.8;
	}
}

/* --------------- Live chat button  ------------*/

.live__chat {
	position: fixed;
	right: 26px;
	bottom: 25px;
	z-index: 9999;
	background: linear-gradient(180deg,#FFF 0%, #FFF2E3 100%);;
	border: 1px solid rgba(252, 75, 6, 1);
	border-radius: 20px;
	flex-shrink: 0;
	display: flex;
	gap: 2.41px;
	width: 90px;
	height: 90px;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	color: #FC4B06;
	text-align: center;
	font-family: "Inter Tight";
	font-size: 12px;
	font-weight: 700;
	filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.10));
	transition: 0.3s;

	&:hover {
		background: linear-gradient(180deg, #FE912E 0%, #FC4A05 100%);
		color:rgba(255, 255, 255, 1);
		border-color: rgba(255, 255, 255, 1);;
	}

	&:hover svg path{
		fill: rgba(255, 255, 255, 1)
	}
}


 /* ============== PAGE ABOUT US ============== */

 /* --------------- mainAbout ------------*/
 .mainAbout{
	padding: 80px 0;
	background: linear-gradient(0deg, #FFC346 0%, #FFC346 100%),
		linear-gradient(0deg, #FFC346 12.36%, #FEBD44 21.33%, #FE9F35 35.42%, #FC4A05 87.05%);
 }
 .mainAbout .container{
	display: flex;
	justify-content: space-between;
 }
 .mainAbout__content, .mainAbout__img{
	flex:1;
 }
.mainAbout__title{
	margin-bottom: 30px;
	color: #473027;
	font-family: "Inter Tight";
	font-size: 42px;
	font-weight: 900;
	line-height: 1.14286;

}
.mainAbout__text{
	color: #473027;
	font-family: Inter;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.33333;
}
.mainAbout__text span{
	color: #473027;
	font-family: Inter;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
}
.mainAbout__img{
	display: flex;
	justify-content: center;
	align-items: center;
}
.mainAbout__img img {
	min-width: 533.84px;
	height: 278.07px;
	flex-shrink: 0;
}

 /* --------------- story ------------*/

 .story{
	padding: 80px 0;
	background: linear-gradient(0deg, #F4E7D8 0%, #F4E7D8 100%), #FFF;
 }
.story .container{
	display: flex;
	gap: 107px;
	justify-content: space-between;
}
.story__content, .story__img{
	flex: 1;
}
.story__title{
	margin-bottom: 42px;
	color: #473027;
	font-family: "Inter Tight";
	font-size: 36px;
	font-weight: 900;
	line-height:1.11111;
	text-transform: uppercase;
}
.story__text{
	color: #473027;
	font-family: Inter;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.33333;
}
.story__text span{
	color: #473027;
	font-family: Inter;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
}
.story__img {
	display: flex;
	justify-content: center;
	align-items: center;
}
.story__img img {
	width: 360px;
	height: 496px;
   	flex-shrink: 0;
	padding-top: 6px;
}

 /* --------------- principles ------------*/

.principles{
	background: rgba(252, 248, 243, 1);
	padding: 80px 0 125px 0;
}
.principles__title{
	margin-bottom: 47.85px;
	color: #473027;
	font-family: "Inter Tight";
	font-size: 36px;
	font-weight: 900;
	line-height: 1.11111;
	text-transform: uppercase;
}
.principles__list{
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 73px;
	row-gap: 66px;

}
.principles__list li {
	display: flex;
	gap: 20px;
	flex-direction: column;
}
.principles__list li:nth-child(1) {
	grid-column: 1;
	grid-row: 1;
}

.principles__list li:nth-child(2) {
	grid-column: 1;
	grid-row: 2;
}

.principles__list li:nth-child(3) {
	grid-column: 2;
	grid-row: 1;
}

.principles__list li:nth-child(4) {
	grid-column: 2;
	grid-row: 2;
}
.principles__list li p {
	color: #473027;
	font-family: Inter;
	font-size: 18px;
	font-weight: 500;
}
.principles__list li p span{
	color: #473027;
	font-family: Inter;
	font-size: 18px;
	font-weight: 900;
}
 .principles__list li .item-1{
	width: 196px;
	height: 141.386px;
	flex-shrink: 0;
	
}
.principles__list li .item-2 {
	padding-top: 10px;
	width: 162.848px;
	height: 132.359px;
	flex-shrink: 0;
}
.principles__list li .item-3 {
	width: 242.143px;
	height: 139.81px;
	flex-shrink: 0;
}
.principles__list li .item-4 {
	padding-top: 10px;
	width: 242.143px;
	height: 139.81px;
	flex-shrink: 0;
}

/* --------------- movement------------*/
.movement{
	background: linear-gradient(0deg, #F4E7D8 0%, #F4E7D8 100%), #FFF;
	padding: 80px 0;
}
.movement .container{
	display: flex;
}

.movement__content{
	margin-right: 200px;
	max-width: 426px;
}

.movement__title{
	margin-bottom: 42px;
	color: #473027;
	font-family: "Inter Tight";
	font-size: 36px;
	font-weight: 900;
	line-height: 1.1111;
	text-transform: uppercase;
}
.movement__text{
	color: #473027;
	font-family: Inter;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.33333;
}
.movement__text span{
	color: #473027;
	font-family: Inter;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.33333;
}
.movement__img{
	display: flex;
	align-items: center;
}
.movement__img svg{
	width: 207px;
	height: 202.306px;
	flex-shrink: 0;
}

/* --------------- happy ------------*/
.happy{
	padding: 101px 0;
	background: linear-gradient(0deg, #FE4500 0%, #FE4500 100%),#50DB14;
}
.happy .container {
	display: flex;
	align-items: center;
	justify-content: center;
}
.happy__text{
	color: #FFF;
	text-align: center;
	font-family: "Inter Tight";
	font-size: 36px;
	font-weight: 900;
	line-height: 1.11111;
	text-transform: uppercase;
}

/* --------------- support ------------*/
.support{
	padding: 90px 0;
	background: #2E1F1A;
}
.support .container{
	display: flex;
	align-items: center;
	justify-content: center;
}
.support__text{
	max-width: 414px;
	color: #FFF;
	text-align: center;
	font-family: "Familjen Grotesk";
	font-size: 16px;
	font-weight: 400;
}
.support__text a{
	color: #FFF;
	font-family: "Familjen Grotesk";
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

 /* ============== PAGE CONTACT ============== */

 /* --------------- mainAbout ------------*/
 .mainContact {
 	padding: 80px 0;
 	background: linear-gradient(0deg, #FFC346 0%, #FFC346 100%),
 		linear-gradient(0deg, #FFC346 12.36%, #FEBD44 21.33%, #FE9F35 35.42%, #FC4A05 87.05%);
 }

 .mainContact .container {
 	display: flex;
	gap: 41px;
 	justify-content: space-between;
	
 }

 .mainContact__content,
 .mainContact__img {
 	flex: 1;
 }
 .mainContact__content {
	padding-top: 20px;
 }

 .mainContact__title {
 	margin-bottom: 30px;
 	color: #473027;
 	font-family: "Inter Tight";
 	font-size: 42px;
 	font-weight: 900;
 	line-height: 1.14286;

 }

 .mainContact__text {
	max-width: 440px;
 	color: #473027;
 	font-family: Inter;
 	font-size: 18px;
 	font-weight: 500;
 	line-height: 1.33333;
 }

 .mainContact__text span {
 	color: #473027;
 	font-family: Inter;
 	font-size: 18px;
 	font-weight: 700;
 	line-height: 24px;
 }

 .mainContact__img {
 	display: flex;
 	justify-content: center;
 	align-items: center;
 }

 .mainContact__img img {
	min-width: 477.002px;
	height: 296.083px;
 	flex-shrink: 0;
 }

  /* --------------- Connect ------------*/

.connect{
	padding: 80px 0;
	background: linear-gradient(0deg, #F4E7D8 0%, #F4E7D8 100%),#FFF;
}
.connect .container {
	display: flex;
	gap: 103px;
}
.connect__left, .connect__right{
	flex: 1;
}
.connect__left p,
.connect__right p{
	color: #473027;
	font-family: Inter;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.33333;
}
.connect__left p a,
.connect__left p span{
	color: #473027;
	font-family: Inter;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.33333;
}
.connect__right form{
	width: 363px;
	margin-top: 49px;
	display: flex;
	flex-direction: column;
	gap: 14px;

}
.connect__right form input{
	width: 100%;
	height: 44px;
	padding-left: 15px;
	border-radius: 2px;
	border: 1px solid #9D8379;
	background: #FFF;

	color: #9D8379;
	font-family: Inter;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}
.connect__right form button{
	width: 100%;
	height: 40px;
	border-radius: 12px;
	border: 1px solid #F34100;
	background: #F34100;
	color: #FFF;
	text-align: center;
	font-family: "Inter Tight";
	font-size: 16px;
	font-weight: 700;

	&:hover {
			background: #FD711B;
		}
}

/* --------------- Care ------------*/

.care{
	padding: 70px 0;
	background: linear-gradient(0deg, #FE4500 0%, #FE4500 100%),#50DB14;
}
.care .container {
	display: flex;
	gap: 58px;
	align-items: center;
	justify-content: center;
}
.care__img svg{
	width: 100px;
	height: 97.732px;
	flex-shrink: 0;
	margin-left: 15px;
}
.care__text{
	color: #FFF;
	font-family: Inter;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.33333;
}

/* Absolute Center Spinner */
.loading {
	position: fixed;
	z-index: 999;
	height: 2em;
	width: 2em;
	overflow: show;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

/* Transparent Overlay */
.loading:before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));

	background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
	/* hide "loading..." text */
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

.loading:not(:required):after {
	content: '';
	display: block;
	font-size: 10px;
	width: 1em;
	height: 1em;
	margin-top: -0.5em;
	-webkit-animation: spinner 1000ms infinite linear;
	-moz-animation: spinner 1000ms infinite linear;
	-ms-animation: spinner 1000ms infinite linear;
	-o-animation: spinner 1000ms infinite linear;
	animation: spinner 1000ms infinite linear;
	border-radius: 0.5em;
	-webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
	box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-moz-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-o-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.blur {
	filter: blur(10px);
}

.have-order, .no-order {
	display:none;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-default-outline:focus {
	box-shadow: none!important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
	color: #666!important;
}

button:disabled {
	pointer-events: none;
	opacity: 0.5;
}

.btn-live-chat {
	text-decoration:none;
}

.b-order-top__cancelled{
	margin: 0 0 63px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Absolute Center Spinner */
.loading {
	position: fixed;
	z-index: 999;
	height: 2em;
	width: 2em;
	overflow: show;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

/* Transparent Overlay */
.loading:before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));

	background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
	/* hide "loading..." text */
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

.loading:not(:required):after {
	content: '';
	display: block;
	font-size: 10px;
	width: 1em;
	height: 1em;
	margin-top: -0.5em;
	-webkit-animation: spinner 1000ms infinite linear;
	-moz-animation: spinner 1000ms infinite linear;
	-ms-animation: spinner 1000ms infinite linear;
	-o-animation: spinner 1000ms infinite linear;
	animation: spinner 1000ms infinite linear;
	border-radius: 0.5em;
	-webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
	box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-moz-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-o-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.blur {
	filter: blur(10px);
}

.have-order, .no-order {
	display:none;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-default-outline:focus {
	box-shadow: none!important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
	color: #666!important;
}

button:disabled {
	pointer-events: none;
	opacity: 0.5;
}

.btn-live-chat {
	text-decoration:none;
}

.b-order-top__cancelled{
	margin: 0 0 63px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.checkout .b-edit__input.error,
.checkout .b-edit__row.has-error .b-edit__input,
.checkout .b-edit__row.has-error .b-select{
	border-color: #EF4231;
}
.checkout .b-edit__row-item, .b-contacts-item label.error{
	display: block;
	color: #EF4231;
	font-size: 12px;
	margin-top: 4px;
}

.form-error-text{
	border:2px solid red!important;
	padding:7px!important;
	margin-top:10px;
	font-weight:700;
	color:red;
	font-size:18px;
	text-align:center;
	display:block;
	border-radius:5px
}

.footer__address {
	color: #785040;
	text-align: center;
	font-family: "Familjen Grotesk";
	font-size: 14px;
	font-weight: 400;
}