@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html{
	height: 100%;
	width: 100%;
	margin: 0;
	-webkit-overflow-scrolling:touch;
}
body{
	margin: 0;
	color: #000000;
	font-size: 14px;
	line-height: 1.2;
	font-family: "Poppins", sans-serif;
	position: relative;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	background: #fff;
	min-height: 100%;
	min-width: 320px;
}
body.active{
	overflow: hidden;
}
h1, h2, h3, h4, h5, h6{
	margin: 0 0 30px 0;
	font-weight: 700;
	color: #040404;
	line-height: 1.2;
}
h1{
	font-weight: 700;
	font-size: 72px;
}
h2{
	font-size: 48px;
}
h3{
	font-size: 30px;
}
h4{
	font-size: 24px;
}
h5{
	font-size: 20px;
}
h6{
	font-size: 16px;
}
p {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.77778;
	color: #0c0a09;
	margin: 0 0 20px 0;
}
p strong{
	font-weight: 500;
}
p b{
	font-weight: 700;
}
p a{
	text-decoration: none;
	text-decoration-skip-ink: none;
	font-weight: 700;
	color: #010101;
}
p a:hover{
	text-decoration: underline;
}
p:last-child{
	margin-bottom: 0px;
}
img{
	display: block;
	max-width: 100%;
}
a {
	outline: none;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}
ul{
	padding: 0;
	margin: 0;
}
li{
	list-style: none;
}
/*== buttons
---------------------------------*/
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;
}
.primary-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 12px;
	padding: 16px 32px;
	height: 56px;
	gap: 0 12px;
	background: linear-gradient(90deg, #e57a2d 0%, #c21a1a 100%);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	color: #fff;
}
.primary-btn:hover{
	box-shadow: 0 16px 40px 0 rgba(195, 28, 27, 0.25);
	background: #c31c1b;
}

.secondary-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #c31c1b;
	border-radius: 12px;
	padding: 16px 32px;
	height: 56px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	color: #c31c1b;
	gap: 0 12px;;
	transition: 0.3s;
}
.secondary-btn:hover{
	box-shadow: 0 16px 40px 0 rgba(195, 28, 27, 0.25);
	background: #c31c1b;
	color: #fff;
}

.white-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 56px;
	border: 1px solid #fff;
	border-radius: 12px;
	padding: 16px 32px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	text-align: center;
	color: #fff;
}
.white-btn:hover{
	background: #fff;
	color: #c31c1b;
}

.green__btn{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	border-radius: 12px;
	padding: 16px 32px;
	background: linear-gradient(90deg, #8ec23f 0%, #5d9311 100%);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	color: #fff;
}
.green__btn:hover{
	box-shadow: 0 16px 40px 0 rgba(94, 147, 18, 0.25);
	background: #5e9312;
}
.disabled{
	opacity: 0.3;
	pointer-events: none;
}
.disabled svg path{
	fill: #1c1b1f;
}
/*== inputs
---------------------------------*/
input{
	outline: none;
	border: none;
}

textarea{
	height: 80px;
	outline: none;
}
.input__text{
	border: 1px solid #e7e5e4;
	border-radius: 12px;
	padding: 0 20px;
	width: 100%;
	height: 48px;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #0c0a09;
}
.input__text::-webkit-input-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #0c0a09;
	opacity: 0.5;
}
.input__text:-moz-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #0c0a09;
	opacity: 0.5;
}
.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:not(:last-child){
	margin-bottom: 16px;
}
.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{
	background: #fff;
	border: 1px solid #c31c1b;
	border-radius: 3px;
	width: 16px;
	height: 16px;
	position: relative;
	margin: 0 14px 0 0;
	flex-shrink: 0;
	cursor: pointer;
}
.b-checkbox input[type="checkbox"]:checked + label span{
	background: url("../images/check.svg") center no-repeat;
	border-color: #c31c1b;
}
.b-checkbox input[type="checkbox"] + label i{
	padding: 1px 0 0 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.44;
	color: #0c0a09;
	font-style: normal;
	cursor: pointer;
}
.b-checkbox input[type="checkbox"] + label i a{
	font-weight: 600;
	font-size: 16px;
	color: #0c0a09;
	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 8px 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: 24px;
	height: 24px;
	background: transparent;
	border: 1px solid #8b7ba5;
	border-radius: 100%;
	transition: 0.3s;
	position: relative;
	margin: 0 11px 0 0;
	flex-shrink: 0;
	cursor: pointer;
}
.b-radio input[type="radio"] + label span:after{
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	width: 14px;
	height: 14px;
	background: #037a24;
	border-radius: 100%;
	transform: translate(-50% , -50%);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.b-radio input[type="radio"]:checked + label span{
	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{
	font-weight: 500;
	font-size: 16px;
	color: #010101;
	padding: 2px 0 0 0;
	font-style: normal;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
select{
	outline: none;
	font-family: inherit;
}
.b-select{
	border: 1px solid #e7e5e4;
	border-radius: 12px;
	padding: 0 20px;
	width: 100%;
	height: 48px;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #0c0a09;
	cursor: pointer;
	background: #ffffff url(../images/select-arrow.svg);
	background-repeat: no-repeat;
	background-position: right 5px center;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	-ms-appearance: none;
	appearance: none !important;
}
/* End Total css ====*/
.container{
	max-width: 1430px;
	margin: 0 auto 0;
	padding: 0 15px;

}
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.d-block{
	display: block !important;
}
.text-center{
	text-align: center !important;
}
.align-center{
	align-items: center !important;
}
.b-container{
	position: relative;
}
.main_page{
	min-height: 100vh;
}
.b-mobile{
	display: none;
}
/* -------------- page index -------------- */
.header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding: 18px 0;
}
.header .container{
	padding: 0 30px;
	max-width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header__left{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.logo{
	display: block;
	background: url("../images/logo.svg") no-repeat;
	width: 282px;
	height: 40px;
	flex-shrink: 0;
	margin-right: 40px;
}
.nav{

}
.nav ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 32px;
}
.nav ul li{

}
.nav ul li a{
	display: block;
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	text-decoration: none;
	color: #fff;
	opacity: 0.6;
	transition: 0.3s;
}
.nav ul li a.active{
	opacity: 1;
}
.nav ul li a:hover{
	opacity: 1;
}

.header__right{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.header__contacts{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-weight: 400;
	font-size: 24px;
	line-height: 1;
	text-decoration: none;
	color: #fff;
	gap: 0 8px;
}
.header__contacts:hover{
	opacity: 0.6;
}
.header__btn{
	width: 107px;
	height: 44px;
	margin: 0 0 0 32px;
	padding: 0;
}
.nav__xs{
	display: none;
}
/* -------------- main -------------- */
.main{
	background: url("../images/img.jpg") center top no-repeat;
	background-size: cover;
	min-height: 980px;
	padding: 240px 0 0 0;
	position: relative;
}
.main:after{
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	background: #ffffff;
	width: 100%;
	max-width: 44%;
	height: 181px;
	z-index: 1;
}
.main__title{
	font-weight: 800;
	font-size: 72px;
	line-height: 1.11111;
	color: #ffb85c;
}
.main__title span{
	background: linear-gradient(90deg, #ffb85c 0%, #fff 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.main__title:not(:last-child){
	margin-bottom: 40px;
}
.main__text{
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.main__text p{
	font-weight: 400;
	font-size: 20px;
	line-height: 1.6;
	color: #fff;
	max-width: 680px;
}
.main__text p strong{
	font-weight: 600;
}

.main__block{
	max-width: 680px;
	position: absolute;
	bottom: -90px;
	z-index: 2;
}
.block{
	border-radius: 40px;
	padding: 64px;
	box-shadow: 0 40px 120px 0 rgba(0, 0, 0, 0.1);
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px 0;
}
.block__sb {
	font-weight: 600;
	font-size: 24px;
	line-height: 1;
	background: linear-gradient(90deg, #e57a2d 0%, #c21a1a 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.block__sb b{
	font-weight: 800;
	font-size: 40px;
}
.block p{
	margin: 0;
}
/* -------------- desc -------------- */
.desc{
	margin: 290px 0 120px 0;
}
.desc .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 40px;
}
.desc__left{
	max-width: 680px;
}
.title{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.title:not(:last-child){
	margin-bottom: 40px;
}
.title__item{
	font-weight: 800;
	font-size: 72px;
	line-height: normal;
	background: linear-gradient(90deg, #e57a2d 0%, #c21a1a 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.title__item.sm{
	font-size: 40px;
	line-height: 1.2;
}
.title__item.yellow{
	background: linear-gradient(90deg, #ffb85c 0%, #e57a2d 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.title__item:not(:last-child){
	margin-bottom: 20px;
}
.title__item span{
	font-size: 40px;
}
.title__sb{
	font-weight: 500;
	font-size: 24px;
	line-height: 1.33333;
	color: #0c0a09;
}
.title__sb.sm{
	font-size: 18px;
}
.title__sb:not(:last-child){
	margin-bottom: 24px;
}


.desc__right{

}
.block__title{
	font-weight: 800;
	font-size: 40px;
	line-height: 1.2;
	text-align: center;
	color: #0c0a09;
}
.block ul{

}
.block ul li{
	font-weight: 400;
	font-size: 18px;
	line-height: 1.33333;
	color: #0c0a09;
}
.block ul li:before{
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_38_1310' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='40' height='40'%3E%3Crect width='40' height='40' fill='%23D9D9D9' /%3E%3C/mask%3E%3Cg mask='url(%23mask0_38_1310)'%3E%3Cpath d='M17.525 25.2885L27.3943 15.4192L26.6808 14.7115L17.5193 23.8672L13.2943 19.6365L12.5808 20.35L17.525 25.2885ZM17.525 26.7097L11.1653 20.35L13.2943 18.2152L17.525 22.4462L26.6943 13.2712L28.8405 15.3942L17.525 26.7097Z' fill='%23E5782D' /%3E%3C/g%3E%3C/svg%3E");
	width: 40px;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
}
.block ul li:not(:last-child){
	margin-bottom: 8px;
}
.block ul li strong{
	font-weight: 500;
}
.block ul li strong:after{
	content: "•";
	margin: 0 8px;
}
/* -------------- info -------------- */
.info{
	background: url("../images/img2.jpg") center top no-repeat;
	background-size: cover;
	position: relative;
	padding: 110px 0 160px 0;
}
.info:after{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	background: #ffffff;
	width: 100%;
	max-width: 1460px;
	height: 440px;
	z-index: 1;
}
.info .container{
	position: relative;
	z-index: 2;
}
.info__block{
	gap: 64px 0;
}
.info__row{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px 0;
	margin: 0 -12px;
}
.info__col{
	width: 20%;
	padding: 0 12px;
}
.info__item{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px 0;
}
.info__item-img{

}
.info__item-text{
	text-align: center;
}
.info__item-text strong{
	display: block;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.33333;
	color: #0c0a09;
	margin-bottom: 16px;
}
.info__item-text p{
	font-size: 16px;
	line-height: 1.5;
}
.info__bottom{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px 0;
	width: 100%;
}
/* -------------- bestsellers -------------- */
.bestsellers{
	margin: 140px 0 130px 0;
	overflow: hidden;
}

.row{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	flex-wrap: wrap;
	gap: 40px 0;
	margin: 0 -20px;
}
.col{
	width: 25%;
	padding: 0 20px;
}
.item{
	border: 1px solid #e7e5e4;
	border-radius: 16px;
	padding: 20px;
	background: #ffffff;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: 0.3s;
}
.item__wrap{
	position: absolute;
	top: 20px;
	left: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px 0;
}
.item__label{
	border-radius: 12px;
	padding: 2px 12px;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.71429;
	text-align: center;
	color: #fff;
}
.item__label.green{
	background: linear-gradient(90deg, #8ec23f 0%, #5d9311 100%);
}
.item__label.yellow{
	background: linear-gradient(90deg, #ffb85c 0%, #e57a2d 100%);
}
.item__img{
	display: block;
	margin-bottom: 24px;
}
.item__img img{
	margin: 0 auto 0;
}
.item__bottom{
	display: flex;
	flex-direction: column;
	gap: 16px 0;
}
.item__desc{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #0c0a09;
	opacity: 0.6;
}
.item__name{
	font-weight: 500;
	font-size: 20px;
	line-height: 1.4;
	color: #0c0a09;
	min-height: 56px;
	transition: 0.3s;
}
.item__row{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 16px;
}
.item__price{
	font-weight: 500;
	font-size: 28px;
	line-height: 1.6;
	color: #0c0a09;
}
.item__oldPrice{
	font-weight: 500;
	font-size: 18px;
	line-height: 1.11111;
	text-decoration: line-through;
	color: #0c0a09;
	opacity: 0.3;
}
.item__btns{
	display: grid;
	grid-template-columns: 1fr 56px;
	gap: 0 8px;
	width: 100%;
}
.item__add{
	width: 56px;
	padding: 0;
}
.item:hover{
	box-shadow: 0 40px 120px 0 rgba(0, 0, 0, 0.1);
}
.item:hover .item__name{
	color: #c31c1b;
}
.bestsellers__bottom{
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 40px;
}
/* -------------- wrapper -------------- */
.wrapper{
	padding: 208px 0 0 0;
	position: relative;
}
.testimonies{
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
}
.testimonies .title{
	margin: 0;
}
.testimonies .title__item{
	line-height: 1;
}
.testimonies .title__item span{
	display: block;
}
.testimonies .title__sb:not(:last-child){
	margin-bottom: 40px;
}
.testimonies .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.testimonies__right{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	gap: 0 40px;
	max-width: 800px;
}
.testimonies__item{
	width: 50%;
	position: relative;
}
.testimonies__item:before{
	position: absolute;
	top: -30px;
	left: 30px;
	content: "";
	width: 80px;
	height: 56px;
	background-image: url("data:image/svg+xml,%3Csvg width='80' height='56' viewBox='0 0 80 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.555 0H39.4714L15.7885 56H0L14.555 0ZM54.5198 0H79.4361L55.7533 56H39.7181L54.5198 0Z' fill='%23F1F2F3' /%3E%3Cpath d='M14.555 0H39.4714L15.7885 56H0L14.555 0ZM54.5198 0H79.4361L55.7533 56H39.7181L54.5198 0Z' fill='%23E3742C' fill-opacity='0.05' /%3E%3C/svg%3E");
}
/* -------------- guarantee -------------- */
.guarantee{
	background: url("../images/img3.jpg") center top no-repeat;
	background-size: cover;
	height: 860px;
	padding: 0 0 140px 0;
	position: relative;
}
.guarantee:before{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	max-width: 50.4%;
	height: 249px;
	background: #fff;
}
.guarantee .container{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	height: 100%;
}
.guarantee__wrap{
	max-width: 680px;
}
.guarantee__wrap .title__item{
	font-size: 56px;
	line-height: 1.14286;
	background: linear-gradient(90deg, #ffb85c 0%, #fff 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.guarantee__wrap .title p{
	color: #fff;
}
.guarantee__block-title{
	font-weight: 600;
	font-size: 24px;
	line-height: 1.33333;
	color: #fff;
	margin-bottom: 16px;
}
.guarantee__block p{
	color: #ffffff;
}
.guarantee__contacts{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 40px;
}
.guarantee__contacts a{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 8px;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.6;
	text-decoration: none;
	color: #fff;
}

.bottom{
	background: linear-gradient(90deg, #e57a2d 0%, #c21a1a 100%), rgba(0, 0, 0, 0.1);
}
.cta{
	padding: 220px 0 210px 0;
}
.cta .container{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.cta .title__item{
	background: linear-gradient(90deg, #ffb85c 0%, #fff 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.cta .title__sb{
	color: #fff;
}
.cta__btns{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 16px;
}
.cta__btns .white-btn{
	width: 280px;
}
.bottom .copyright{
	color: #fff;
}
.bottom .footer{
	border-color: rgba(255, 255, 255, 0.2);
}
.footer{
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding: 20px 0;
}
.copyright{
	font-weight: 400;
	font-size: 14px;
	line-height: 1.71429;
	text-align: center;
	color: #0c0a09;
	opacity: 0.5;
}

/* -------------- products -------------- */
.inner_page{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
}
.inner_page .header{
	border-color: rgba(0, 0, 0, 0.1);
}
.inner_page .logo{
	background: url("../images/logo_orange.svg") center top no-repeat;
	background-size: contain;
}
.inner_page .nav ul li a{
	color: #0c0a09;
}
.inner_page .nav ul li a.active{
	color: #c31c1b;
}
.inner_page .nav ul li a:hover{
	color: #c31c1b;
}
.inner_page .header__contacts{
	color: #0c0a09;
	opacity: 0.6;
}
.inner_page .header__contacts svg path{
	fill: #0c0a09;
}
.inner_page .header__contacts:hover{
	opacity: 0.5;
}
.header__buttons{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 16px;
	margin-left: 16px;
}
.header__button{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
}
.header__button:hover{
	opacity: 0.6;
}


.inner_page .main{
	padding: 110px 0 30px 0;
	background: url("../images/inner_bg.jpg") center top no-repeat;
	background-size: cover;
	min-height: 371px;
}
.inner_page .main:after{
	max-width: 49.4%;
	height: 80px;
}
.inner_page .main__text p{
	color: #0c0a09;
}
.inner_page .main__title{
	background: linear-gradient(90deg, #e57a2d 0%, #c21a1a 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.breadcrumbs{
	margin-bottom: 40px;
}
.breadcrumbs ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.breadcrumbs ul li{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.breadcrumbs ul li:after{
	display: block;
	content: "";
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.3'%3E%3Cmask id='mask0' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0)'%3E%3Cpath d='M10.5 10L6.666 6.167L7.833 5L12.833 10L7.833 15L6.666 13.833L10.5 10Z' fill='%230C0A09'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	margin: 0 8px;
}
.breadcrumbs ul li:last-child:after{
	display: none;
}
.breadcrumbs ul li a{
	display: block;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.71429;
	color: #0c0a09;
	opacity: 0.3;
	text-decoration: none;
}

.product_page .main{
	background: url("../images/image-products.jpg") center top no-repeat;
	background-size: cover;
	min-height: 500px;
}
.product_page .main:after{
	max-width: 32.6%;
	height: 80px;
}

.search{
	position: relative;
	width: 320px;
}
.search__input{
	width: 100%;
	height: 48px;
	border: 1px solid #e7e5e4;
	border-radius: 12px;
	padding: 0 46px 0 46px;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #0c0a09;
	transition: 0.3s;
}
.search__input:focus{
	border-color: #c31c1b;
}
.search__btn{
	position: absolute;
	top: 50%;
	left: 12px;
	width: 24px;
	height: 24px;
	background: url("../images/search.svg") center no-repeat;
	transform: translateY(-50%);
}
.search__clear{
	position: absolute;
	top: 50%;
	right: 12px;
	width: 24px;
	height: 24px;
	transform: translateY(-50%);
	background: url("../images/close.svg") center no-repeat;
	opacity: 0.3;
	display: none;
}

.search__input::-webkit-input-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #0c0a09;
	opacity: 0.56;
}
.search__input:-moz-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #0c0a09;
	opacity: 0.56;
}
.products{
	padding: 30px 0 100px 0;
	overflow: hidden;
}
.products__top{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 12px 0 0 0;;
	margin-bottom: 40px;
}
.products__top .secondary-btn{
	display: none;
}
.sort{
	display: flex;
	justify-content: center;
	align-items: center;
}
.sort__title{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #0c0a09;
}
.sort__select{
	width: 200px;
	height: 24px;
	cursor: pointer;
	border: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	text-align: left;
	color: #0c0a09;
	background: #ffffff url(../images/select-arrow.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 24px;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	-ms-appearance: none;
	appearance: none !important;
	text-overflow: ellipsis;
	padding: 0 17px 0 10px;
	white-space: nowrap;
}
.products__container{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 40px;
}
.sidebar{
	width: 320px;
	flex-shrink: 0;
}
.sidebar__close{
	display: none;
}
.sidebar .search{
	display: none;
}
.sidebar__title{
	display: none;
}
.sidebar__item:not(:last-child){
	margin-bottom: 32px;
}
.sidebar__item{
	display: flex;
	flex-direction: column;
	gap: 20px 0;
}
.sidebar__btns{
	display: none;
}
.sidebar__item-title{
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.4;
	color: #0c0a09;
}
.sidebar__item-title:after{
	display: block;
	content: "";
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.3'%3E%3Cpath d='M12.0002 10.1078L7.75397 14.3538C7.66047 14.4474 7.54572 14.4974 7.40972 14.5038C7.27389 14.5103 7.1528 14.4603 7.04647 14.3538C6.93997 14.2474 6.88672 14.1295 6.88672 14C6.88672 13.8705 6.93997 13.7526 7.04647 13.6463L11.4347 9.25775C11.5964 9.09625 11.7849 9.0155 12.0002 9.0155C12.2156 9.0155 12.4041 9.09625 12.5657 9.25775L16.954 13.6463C17.0476 13.7398 17.0976 13.8545 17.104 13.9905C17.1105 14.1263 17.0605 14.2474 16.954 14.3538C16.8476 14.4603 16.7297 14.5135 16.6002 14.5135C16.4707 14.5135 16.3528 14.4603 16.2465 14.3538L12.0002 10.1078Z' fill='%230C0A09'/%3E%3C/g%3E%3C/svg%3E");
	transform: rotate(0deg);
	cursor: pointer;
	transition: 0.3s;
}
.sidebar__item-title.active:after{
	transform: rotate(180deg);
}
.sidebar__item-wrap.active{
	display: none;
}
.products__content{
	flex-grow: 1;
}
.products__content .col{
	width: 33.333333%;
}

.pagination{
	margin-top: 60px;
}
.pagination , .pagination ul{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 8px;
}
.pagination ul li a{
	width: 56px;
	height: 56px;
	padding: 0;
}
.pagination ul li a.active{
	background: linear-gradient(90deg, #e57a2d 0%, #c21a1a 100%);
	border:none;
	color: #fff;
}
/* -------------- card -------------- */
.card_page{
	display: block;
}
.card_page .main{
	min-height: 244px;
}
.section{
	margin: 100px 0;
	overflow: hidden;
}

.testimoniesSection .testimonies__item{
	width: auto;
	height: 100%;
	border: 1px solid #e7e5e4;
	border-radius: 16px;
	padding: 40px;
	background: #fff;
}
.testimoniesSection .testimonies__item:before{
	width: 52px;
	height: 36px;
	background-size: contain;
	top: -18px;
	left: 24px;
}
.testimoniesSection .testimonies__item p{
	font-size: 16px;
	line-height: 1.5;
}

.card{

}
.card__wrapper{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 0 0 0 55px;
	gap: 0 95px;
	margin-bottom: 40px;
}
.card__xs{
	display: none;
}
.card__img{
	flex-shrink: 0;
	width: 570px;
	position: relative;
}
.card__img .item__wrap{
	top: 85px;
	left: -55px;
}
.card__content{
	flex-grow: 1;
	padding: 85px 0 0 0;
}
.card__content-top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
}
.card__desc{
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	color: #0c0a09;
}
.card__nubmer{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	text-align: right;
	color: #0c0a09;
	opacity: 0.6;
}
.card__name{
	font-weight: 800;
	font-size: 40px;
	line-height: 1.2;
	background: linear-gradient(90deg, #e57a2d 0%, #c21a1a 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 24px;
}
.card__rate{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 5px;
	margin-bottom: 35px;
}
.card__rate ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 10px;
}
.card__rate ul li{
	width: 18px;
	height: 18px;
	background: url(../images//star.svg) center no-repeat;
}
.card__rate ul li.full{
	background: url(../images/fullStar.svg) center no-repeat;
}
.card__rate span{
	display: block;
	min-width: 32px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.71429;
	text-align: right;
	color: #0c0a09;
}
.card__row{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}
.card__row .item__price{
	font-size: 40px;
	line-height: 1.2;
}
.card__row .item__oldPrice{
	font-size: 24px;
	line-height: 1.33333;
}
.card__btns{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 16px;
}
.card__add{
	flex-shrink: 0;
}
.quantity{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border: 1px solid #e7e5e4;
	border-radius: 12px;
	padding: 16px 12px;
	width: 120px;
}
.quantity__btn{
	width: 24px;
	height: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	opacity: 0.3;
	transition: 0.3s;
}
.quantity__btn:hover{
	opacity: 1;
}
.quantity__input{
	width: 100%;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	text-align: center;
	color: #0c0a09;
	padding: 0 10px;
}
.cardInfo{
	border: 1px solid #e7e5e4;
	border-radius: 16px;
}
.cardInfo__item{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
}
.cardInfo__item:not(:last-child){
	border-bottom: 1px solid #e7e5e4;
}
.cardInfo__item-left{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 16px;
}
.cardInfo__item-text{

}
.cardInfo__item-text p{
	display: block;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.55556;
	color: #0c0a09;
}
.cardInfo__item-text b{
	display: block;
	font-weight: 600;
	font-size: 18px;

}
.cardInfo__item-arrow{
	width: 32px;
	height: 32px;
	display: block;
	background: url("../images/arrow_right.svg") center no-repeat;
	opacity: 0.3;
}
.cardInfo__item:hover .cardInfo__item-arrow{
	opacity: 1;
}

.card__nav{
	padding: 0 0 0 40px;
}
.card__nav ul{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	gap: 0 8px;
}
.card__nav ul li a{
	display: block;
	border-radius: 12px 12px 0 0;
	padding: 0px 40px;
	background: #f5f3f1;
	border: 1px solid #f5f3f1;
	font-weight: 500;
	font-size: 18px;
	line-height: 62px;
	text-align: center;
	text-decoration: none;
	color: #0c0a09;
	transition: 0.3s;
}
.card__nav ul li a.active{
	background: #fff;
	border-left-color: #e7e5e4;
	border-right-color: #e7e5e4;
	border-top-color: #e7e5e4;
	border-bottom-color: #fff;
	color: #c31c1b;
}
.card__nav ul li a:hover{
	color: #c31c1b;
}

.tab-pane{
	display: none;
}
.tab-pane.active{
	display: block;
}
.card__tabs .block ul{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
}
.card__tabs .block ul li{
	width: 33.333333%;
}
.card__tabs .block p span{
	font-weight: 600;
	font-size: 18px;
}
.text__wrap p:not(:last-child){
	margin-bottom: 10px;
}

/* ========= checkout_page ========= */
.checkout_page{

}
.checkout_page .main{
	padding-top: 160px;
}
.checkout{
	padding: 0 0 110px 0;
	flex-grow: 1;
	min-height: 465px;
}
.checkout .container{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 80px;
}
.checkout__left{
	flex-grow: 1;
}
.checkout__right{
	width: 680px;
	border: 1px solid #e7e5e4;
	border-radius: 16px;
	margin-top: 80px;
}

.checkout__block:not(:last-child){
	margin-bottom: 32px;
}
.checkout__block-title{
	font-weight: 500;
	font-size: 20px;
	line-height: 1.4;
	color: #0c0a09;
	margin-bottom: 12px;
}
.checkout__item{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 8px;
}
.checkout__item:not(:last-child){
	margin-bottom: 12px;
}
.checkout__item-label{
	width: 160px;
	flex-shrink: 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #0c0a09;
}
.checkout__item-input{
	flex-grow: 1;
}

.checkout__block-card .checkout__item{
	flex-direction: column;
	align-items: flex-start;
	gap: 8px 0;
}
.checkout__block-card .checkout__item-input{
	width: 100%;
}
.checkout__block-wrap{
	background: linear-gradient(270deg, #f0ece9 0%, rgba(240, 236, 233, 0.3) 100%);
	border-radius: 16px;
	padding: 40px;
}
.checkout__block-row{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.checkout__item-row{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 8px;
}
.checkout__block-row .checkout__item{
	margin: 0;
}
.checkout__item-row .checkout__item-input{
	min-width: 120px;
}
.checkout__item_cvv{
	max-width: 120px;
}

.checkoutBlock{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	gap: 0 24px;
}
.checkoutBlock , .status{
	padding: 24px;
}
.checkoutBlock:not(:last-child){
	border-bottom: 1px solid #e7e5e4;
}
.checkoutBlock__img{
	width: 100px;
	flex-shrink: 0;
}
.checkoutBlock__wrap{
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 12px 0;
}
.checkoutBlock__desc{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #0c0a09;
	opacity: 0.6;
}
.checkoutBlock__name{
	font-weight: 500;
	font-size: 20px;
	line-height: 1.4;
	color: #0c0a09;
}
.checkoutBlock__bottom{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.checkoutBlock__row{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 16px;
}
.checkoutBlock__price{
	font-weight: 500;
	font-size: 24px;
	line-height: 1.16667;
	color: #0c0a09;
}
.checkoutBlock__oldPrice{
	font-weight: 500;
	font-size: 18px;
	line-height: 1.11111;
	text-decoration: line-through;
	color: #0c0a09;
	opacity: 0.3;
}
.checkoutBlock .quantity{
	padding: 11px 12px;
}
.checkoutBlock__delete{
	position: absolute;
	top: 24px;
	right: 24px;
	transition: 0.3s;
}
.checkoutBlock__delete:hover{
	opacity: 0.5;
}

.checkout__right-bottom{
	padding: 24px;
}
.checkoutList{

}
.checkoutList ul li{
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #0c0a09;
}
.checkoutList ul li:not(:last-child){
	margin-bottom: 12px;
}
.checkoutList ul li b{
	font-weight: 500;
	font-size: 24px;
	line-height: 1.16667;
	text-align: right;
	color: #0c0a09;
}
.checkoutList ul li span{
	font-weight: 500;
	font-size: 18px;
	line-height: 1.33333;
	text-align: right;
	color: #65a30d;
}

.checkoutTotal{
	padding: 12px 0 0 0;
	margin: 12px 0;
	border-top: 1px solid #e7e5e4;
}
.checkoutTotal ul li{
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 500;
	font-size: 20px;
	line-height: 60px;
	color: #0c0a09;
}
.checkoutTotal ul li b{
	font-weight: 600;
	font-size: 40px;
	text-align: right;
	color: #0c0a09;
}
.checkout__right-bottom .green__btn{
	width: 100%;
}
.confirm-btn_xs{
	display: none;
}

.main_1:after{
	display: none;
}
.mainBlock{
	border-radius: 40px;
	padding: 64px 64px 40px 64px;
	box-shadow: 0 40px 120px 0 rgba(0, 0, 0, 0.1);
	background: #fff;
	width: 100%;
	max-width: 920px;
	position: absolute;
	top: 160px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	text-align: center;
}
.mainBlock__title{
	display: inline-flex;
	font-weight: 800;
	font-size: 40px;
	line-height: 1;
	text-align: center;
	background: linear-gradient(90deg, #8ec23f 0%, #5d9311 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 24px;
}
.mainBlock p{
	font-weight: 400;
	font-size: 18px;
	line-height: 1.77778;
	text-align: center;
	color: #0c0a09;
}
.mainBlock p span{
	font-weight: 600;
}
.mainBlock p b{
	font-weight: 600;
	font-size: 20px;
}
.mainBlock p:not(:last-child){
	margin-bottom: 5px;
}
.mainBlock .primary-btn{
	margin: 16px auto 0;
}
.mainBlock__title.orange{
	background: linear-gradient(90deg, #e57a2d 0%, #c21a1a 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


.checkout__left-title{
	font-weight: 600;
	font-size: 28px;
	line-height: 1.42857;
	color: #0c0a09;
	margin-bottom: 32px;
}

.checkoutOrder:not(:last-child){
	margin-bottom: 32px;
}
.checkoutOrder b{
	display: block;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.4;
	color: #0c0a09;
	margin-bottom: 8px;
}
.checkoutOrder ul{

}
.checkoutOrder ul li {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #0c0a09;
}
.checkoutOrder ul li:not(:last-child){
	margin-bottom: 8px;
}
/* payment card */
.checkoutOrder .card {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 12px;
}
.checkoutOrder .card .text {
	line-height: 12px;
	color: #888888;
}
.checkoutOrder .card .text b {
	font-weight: 400;
	font-size: 16px;
	line-height: normal;
	color: #0c0a09;
	display: block;
	margin: 0;
}
.checkoutOrder .card .text b strong{
	font-weight: 600;
}
.checkoutOrder .card .text span {
	font-weight: 400;
	font-size: 14px;
	line-height: normal;
	color: #0c0a09;
}
.checkoutOrder .card figure {
	width: 56px;
	height: 56px;
	margin: 0;
	flex-shrink: 0;
}
.checkoutOrder .card figure.visa {
	background: url("../images/card-icon-visa.svg") no-repeat 0 0;
}
.checkoutOrder .card figure.mastercard {
	background: url("../images/card-icon-mastercard-1x.png") no-repeat 0 0;
}
.checkoutOrder .card figure.amex {
	background: url("../images/card-icon-amex.svg") no-repeat 0 0;
}
.checkoutOrder .card figure.maestro {
	background: url("../images/card-icon-maestro.svg") no-repeat 0 0;
}



.checkout_confirmation{
	padding-top: 105px;
}
.checkout_confirmation .checkout__right{
	margin-top: 0;
}

.status{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 20px;
	border-bottom: 1px solid #e7e5e4;
}
.status__ico{
	width: 100px;
	height: 100px;
	flex-shrink: 0;
}
.confirmed .status__ico{
	background: url("../images/confirmed_icon.png") center no-repeat;
	background-size: contain;
}
.canceled .status__ico{
	background: url("../images/canceled_icon.png") center no-repeat;
	background-size: contain;
}
.status__text b{
	display: block;
	font-weight: 600;
	font-size: 28px;
	line-height: 1.1;
	color: #0c0a09;
	margin-bottom: 16px;
}
.status__text p{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #0c0a09;
}



.checkout__right-btns{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 24px;
}
.checkout__right-btns .secondary-btn ,
.checkout__right-btns .primary-btn{
	width: 100%;
}


.authentication{
	box-shadow: 0 40px 120px 0 rgba(0, 0, 0, 0.1);
	background: #fff;
	position: absolute;
	top: 160px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 40px;
	padding: 40px;
	width: 100%;
	max-width: 520px;
	text-align: center;
}
.authentication__title{
	font-weight: 600;
	font-size: 28px;
	line-height: 1.42857;
	text-align: center;
	color: #0c0a09;
	margin-bottom: 24px;
}
.authentication p{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	color: #0c0a09;
	margin-bottom: 24px;
}
.authentication__input:not(:last-child){
	margin-bottom: 20px;
}
.authentication__input .input__text{
	height: 56px;
}
.authentication .primary-btn{
	width: 100%;
}
.authentication__link{
	display: block;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	color: #0c0a09;
	opacity: 0.6;
	transition: 0.3s;
}
.authentication__link:hover{
	opacity: 0.9;
}
.authentication__forgot{
	margin: 0 0 20px 0;
}
.authentication__link_bottom{
	line-height: 40px;
	margin-top: 20px;
}


.profile_page{

}
.profile_page .main{
	padding-bottom: 0;
	overflow: hidden;
}
.main__nav{
	margin-top: 74px;
	position: relative;
	display: flex;
}
.main__nav ul:after{
	position: absolute;
	bottom: -1px;
	right: -24px;
	content: "";
	width: 9999999px;
	height: 80px;
	background: #fff;
	z-index: 1;
}
.main__nav ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 8px;
	position: relative;
}
.main__nav ul li{
	position: relative;
	z-index: 2;
}
.main__nav ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	width: 213px;
	height: 56px;
	border-radius: 12px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	color: #c31c1b;
}
.main__nav ul li a.active{
	background: linear-gradient(90deg, #e57a2d 0%, #c21a1a 100%);
	color: #ffffff;
}
.checkout__right.border-none{
	border: none;
}

.checkoutOrder__add{
	border: 1px solid #e7e5e4;
	border-radius: 16px;
	padding: 40px;
	margin-top: 12px;
}
.checkoutOrder__add p{
	margin-bottom: 24px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	color: #0c0a09;
	opacity: 0.5;
}
.checkoutOrder__add .primary-btn{
	margin: 0 auto;
}

.checkout__right .checkoutOrder{
	border: 1px solid #e7e5e4;
	border-radius: 16px;
	padding: 24px;
	position: relative;
}
.addPayment{
	margin-bottom: 24px;
}
.checkout__block-btns{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 16px;
	margin-top: 40px;
}
.cardBlock{
	display: none;
}
.profile_page .checkout{
	padding-top: 80px;
}

.history{
	border: 1px solid #e7e5e4;
	border-radius: 16px;
}
.history__head{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
	border-bottom: 1px solid #e7e5e4;
}
.history__left , .history__right{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 16px;
}
.history__col{
	font-weight: 600;
	font-size: 16px;
	line-height: 1.75;
	color: #0c0a09;
	opacity: 0.5;
	min-width: 110px;
}

.history__right{
	flex-shrink: 0;
}
.history__right .history__col:nth-child(1),
.history__right .history__col:nth-child(2){
	text-align: center;
}
.history__right .history__col:last-child{
	width: 200px;
}


.history__row{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 16px 24px;
}
.history__row:not(:last-child){
	border-bottom: 1px solid #e7e5e4;
}
.history__row .history__col{
	opacity: 1;
	font-weight: 400;
	font-size: 16px;
	line-height: 3;
	color: #0c0a09;
}
.history__col-row{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 16px;
}
.history__row .green__btn ,
.history__row .primary-btn{
	padding: 0;
	width: 100px;
	height: 28px;
	border-radius: 12px;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.71429;
	text-align: center;
	color: #fff;
	pointer-events: none;
}
.history__row strong{
	font-weight: 500;
}
.history__row b{
	font-weight: 500;
	font-size: 18px;
	line-height: 1.55556;
	text-align: center;
	color: #0c0a09;
}


.history__block{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 8px;
}
.history__block:not(:last-child){
	margin-bottom: 8px;
}
.history__block-img{
	width: 48px;
	flex-shrink: 0;
}
.history__block-name{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.75;
	color: #0c0a09;
}

.history__info{
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.75;
	text-align: center;
	color: #0c0a09;
}
.history__info:not(:last-child){
	margin-bottom: 8px;
}

.profile_page .memership{
	padding-top: 120px;
}
.memership__wrapper{
	max-width: 490px;
	margin: 0 auto 0;
	text-align: center;
}
.memership__wrapper svg{
	margin: 0 auto 40px;
}
.memership__title{
	font-weight: 600;
	font-size: 28px;
	line-height: 1.42857;
	color: #0c0a09;
	margin-bottom: 8px;
}
.memership__wrapper p{
	font-weight: 400;
	font-size: 18px;
	line-height: 1.77778;
	color: #0c0a09;
}
.memership__wrapper .primary-btn{
	margin: 40px auto 0;
}

.authentication_page .header__buttons{
	display: none;
}