* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Montserrat';
	font-style: normal;
 
}
a {
	text-decoration: none;
}
li {
	list-style: none;
}
textarea,input,button {
	outline: none;
}
button {
	cursor: pointer;
}
.container {
	max-width: 1110px;
	width:100%;
	margin: 0 auto;
	padding:  0 15px;
}
/* start btn-yellow */
.btn-yellow {
	background: #F8DB48;
	border:0px solid #F8DB48;
	border-radius: 3px;
	font-weight: 600;
	font-size: 11px;
	line-height: 13px;
	text-align: center;
	text-transform: uppercase;
	color: #86751F;
	transition: 200ms linear;
	height: 50px;
	width: 100%;
	outline: none;
	position: relative;
	overflow: hidden;
	-webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.btn-yellow span {
	position: relative;
	z-index: 2;
}
.btn-yellow:hover {
	color: #fff;
	border-color:#455B7B;
}
.btn-yellow:before, .btn-yellow:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.btn-yellow:before {
  right: -50px;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #455B7B;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.btn-yellow:after {
  left: -50px;
  border-left: 50px solid transparent;
  border-top: 80px solid #455B7B;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.btn-yellow:hover:before {
  -webkit-transform: translateX(-49%);
          transform: translateX(-49%);
}
.btn-yellow:hover:after {
  -webkit-transform: translateX(49%);
          transform: translateX(49%);
}
/* end btn-yellow */
/* start mobile-menu */
.mobile-menu {
	width: 320px;
	position: fixed;
	left: 0;
	top: 0;
	background: #1B1B1B;
	height: 100vh;
	overflow: auto;
	z-index: 191;
	padding: 40px;
	transition: 300ms linear;
	transform: translateX(-100%);
	display: none;
}
.mobile-menu__logo {
	display: grid;
	grid-template-columns: auto auto 22px;
	margin-bottom: 37px;
	align-items: center;
	grid-gap: 18px;
}
.mobile-menu__logo a img{
	width: 42px;
}
.mobile-menu__logo p{
	font-weight: 500;
	font-size: 11px;
	line-height: 19px;
	color: #FFFFFF;
	padding-left: 15px;
	border-left: 1px solid #fff;
}
.mobile-menu__close {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 22px;
	height: 22px;
	position: relative;
	cursor: pointer;
}
.mobile-menu__close:after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	background: #FFFFFF;
	border-radius: 4px;
	width: 100%;
	height: 2px;
	transform: rotate(-45deg);
}
.mobile-menu__close:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	background: #FFFFFF;
	border-radius: 4px;
	width: 100%;
	height: 2px;
	transform: rotate(45deg);
}
.mobile-menu_phone {
	font-weight: 600;
	font-size: 16px;
	line-height: 18px;
	text-align: center;
	color: #FFFFFF;
	display: flex;
	justify-content: center;
	width: fit-content;
	margin: 0 auto 15px auto;
}
.mobile-menu_email {
	font-weight: normal;
	font-size: 12px;
	line-height: 15px;
	text-align: center;
	color: #FFFFFF;
	display: flex;
	justify-content: center;
	width: fit-content;
	margin: -4px auto 20px auto;
}
.mobile-social {
	display: none;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 25px;
}
.mobile-social li {
	margin: 0 5px;
}
.mobile-social li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    transition: 200ms linear;
}
.mobile-social li span img {
    transition: 200ms linear;
    filter: brightness(0%) invert(1);
}
.mobile-social li:first-child span img {
    margin-right: 2px;
}
.mobile-social li a:hover img {
    filter: brightness(100%) invert(0);
}
.mobile-menu-nav {
	margin-bottom: 26px;
	padding: 29px 0 13px 0;
	border-top: 1px solid rgba(255,255,255,0.2);
	border-bottom: 1px solid rgba(255,255,255,0.2);
}
.mobile-menu-nav .top-ul {

}
.mobile-menu-nav .top-li {
	margin-bottom: 25px;
}
.mobile-menu-nav .top-li > a {
	font-weight: bold;
	font-size: 16px;
	line-height: 35px;
	text-transform: uppercase;
	color: #FFFFFF;
	display: flex;
    width: fit-content;
}
.mobile-menu-nav .top-li.lk {
	display: none;
}
.mobile-menu-nav .top-li.lk a{
	align-items: center;
}
.mobile-menu-nav .top-li.lk img{
	width: 11px;
	height: 14px;
	margin-left: 10px;
	margin-bottom: 5px;
}
.mobile-menu-nav .sub-ul {
	margin-top: 18px;
	display: none;
}
.mobile-menu-nav .sub-li {
	margin-bottom: 11px;
}
.mobile-menu-nav .sub-li:last-child{
	margin-bottom: 0;
}
.mobile-menu-nav .sub-li > a {
	font-weight: normal;
	font-size: 16px;
	line-height: 30px;
	color: #FFFFFF;
	display: flex;
    width: fit-content;
}
.mobile-menu-nav .sub-li ul {
	margin-top: 6px;
	display: none;
}
.mobile-menu-nav .sub-li li {
	margin-bottom: 5px;
}
.mobile-menu-nav .sub-li li a {
	font-weight: normal;
	font-size: 14px;
	line-height: 30px;
	text-decoration-line: underline;
	color: #9B9B9B;
}
.mobile-menu-nav a span {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
	width: 10px;
	margin-left: 10px;
	transform: rotate(-90deg);
}
.mobile-menu-nav a span:after{
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	border: 4px solid #fff;
    border-bottom-width: 0px;
    border-left-width: 2.6px;
    border-right-width: 2.5px;
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-right-color: transparent;
}
/* end mobile-menu */
/* start header */
.header-top {
	background: #494949;
	padding: 16px 0 14px 0;
}
.header-top .container {
	display: flex;
	align-items: center;
}
.header-top__logo {
	display: none;
	grid-template-columns: 34px auto;
	grid-gap: 22px;
	align-items: center;
}
.header-top__logo p{
	font-weight: 500;
	font-size: 11px;
	line-height: 17px;
	color: #FFFFFF;
	padding-left: 20px;
	border-left: 1px solid #fff;
	max-width: 112px;
}
.header-top__logo img{
	width: 35px;
}
.header-top__phone {
	font-weight: normal;
	font-size: 12px;
	line-height: 15px;
	color: #fff;
	margin-right:30px;
}
.header-top__phone a{
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: #fff;
	margin-right: 14px;
	transition: 200ms linear;
}
.header-top__phone a:hover {
	color: #F8DB48;
}
.header-top__social {
	display: flex;
	margin-left:auto;
}
.header-top__social li {
	margin: 0 5px;
}
.header-top__social li span{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 1px solid #FFFFFF;
	border-radius: 50%;
	transition: 200ms linear;
}
.header-top__social li span img {
	transition: 200ms linear;
	filter: brightness(0%) invert(1);
}
.header-top__social li:first-child span img {
	margin-right: 2px;
}
.header-top__social li a {
	font-weight: normal;
	font-size: 12px;
	line-height: 15px;
	color: #fff;
	transition: 200ms linear;
}
.header-top__social li:last-child a{
	display: flex;
	align-items: center;
}
.header-top__social li:last-child span {
	margin-right: 10px;
}
.header-top__social li a:hover {
	color: #F8DB48;
}
.header-top__social li a:hover span {
	border-color: #F8DB48;
}
.header-top__social li a:hover img {
	filter: brightness(100%) invert(0);
}
.header-top__lk {
	font-weight: 600;
	font-size: 12px;
	line-height: 15px;
	color: #fff;
	transition: 200ms linear;
}
.header-top__lk img {
	margin-right: 10px;
	margin-bottom: -1px;
}
.header-top__lk:hover {
	color: #F8DB48;
}
.header-top__languages {
	position: relative;
	margin-left:40px;
}
.header-top__languages ul{
	display: flex;
}
.header-top__languages li {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 5px;
}
.open-languages {
	position: absolute;
	right: -10px;
	top: 12px;
	width: 10px;
	height: 10px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.open-languages:after{
	content: '';
	position: relative;
	right: 0;
	top: 0;
	border: 4px solid #fff;
	border-bottom-width: 0;
	border-left-width: 2.6px;
	border-right-width: 2.5px;
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-right-color: transparent;
}


.header-down{
	background-image:  url(../image/header-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom right;
	position: relative;
	padding: 25px 0 40px 0;
}
.header-down .header-search {
	display: flex;
	align-items: center;
	margin-bottom: 34px;
}
.header-down:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background:  rgba(80,127,198,0.9);
	z-index: 1;
}
.header-down .container {
	position: relative;
	z-index: 2;
}
.header-search__logo {
	display: flex;
	width:290px;
	align-items: center;
	margin-right:10px;
}
.header-search__logo span,.header-search__logo a{
	width:52px;
	display:block;
	margin-right:25px;
}
.header-search__logo span img,.header-search__logo a img{
	width:100%;
}
.header-search__logo p {
	font-weight: 500;
	font-size: 13px;
	line-height: 19px;
	text-align: left;
	color: #fff;
	padding-left: 21px;
	position: relative;
	flex: 1;
    width: 100%;
}
.header-search__logo p:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: #fff;
}
.header-search__form {
	position: relative;
	max-width: 427px;
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	grid-column: 2;
	margin: 0 auto;
    grid-row: 1;
}
.header-search__form input {
	background: #fff;
	border-radius: 3px 0 0 3px;
	border:none;
	width: calc(100% - 50px);
	height: 100%;
	padding: 0 16px 0 16px;
	font-weight: normal;
	font-size: 14px;
	line-height: 17px;
	color: #BABABA;
}
.header-search__form button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border:none;
	height: 100%;
	width: 50px;
	background: #D4EDFC;
	border-radius: 0 3px 3px 0;
}
.header-search__form button:after {
	content: '';
	position: absolute;
	left: calc(50% - 9px);
	top: calc(50% - 8px);
	width: 18px;
	height: 16px;
	background: url(../image/icon/search-icon.png);
}
.header-search .btn-yellow {
	grid-column: 3;
	grid-row: 1;
}
a.header-search__basket {
	display: grid;
	grid-template-columns: 41px auto;
	grid-gap: 10px;
	align-items: center;
	grid-column: 4;
	grid-row: 1;
}
div.header-search__basket{
	margin-left:20px;
}
a.header-lk_icon{
	display:block;
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	position:relative;
	color: #FFFFFF;
	padding:4px 0 4px 50px;
	max-width:120px;
	margin-left:10px;
}
a.header-lk_icon:before{
	position:absolute;
	top:0;
	left:0;
	width:40px;
	height:40px;
	content:'';
	border:1px solid #fff;
	border-radius:50%;
	background:url(../site_img/person.svg) no-repeat center center;
}
.header-search__basket div {
	width: 41px;
	height: 41px;
	border:1px solid #fff;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-search__basket div:after {
	content: '';
	position: absolute;
	right: -1px;
	top: 4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #F8DB48;
}
.header-search__basket p{
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: #fff;
	text-align: left;
}
.header-search__basket p span {
	display: block;
	font-weight: 600;
	font-size: 12px;
	line-height: 15px;
	text-align: left;
}
.header-search__basket p span span{
	display: inline-block;
}
.header-search__gamburger {
	width: 33px;
	height: 26px;
	display: none;
	align-items: center;
	justify-content: center;
	position: relative;
	cursor: pointer;
}
.header-search__gamburger span {
	width: 100%;
	height: 4px;
	background: #FFFFFF;
	border-radius: 2px;
}
.header-search__gamburger:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background: #FFFFFF;
	border-radius: 2px;
}
.header-search__gamburger:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background: #FFFFFF;
	border-radius: 2px;
}
.header-search__phone {
	display: none;
	flex-direction: column;
}
.header-search__phone .phone {
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: #FFFFFF;
	margin-bottom: 5px;
	width: fit-content;
}
.header-search__phone .email {
	font-weight: normal;
	font-size: 12px;
	line-height: 15px;
	color: #FFFFFF;
}
.header-search__phone p {
	font-weight: normal;
	font-size: 12px;
	line-height: 15px;
	color: #FFFFFF;
}
.header-nav {
	position: relative;
}
.header-nav .catalog{
	border: 1px solid #FFFFFF;
	border-radius: 3px;
	width: 136px;
	height: 50px;
	transition: 200ms linear;
}
.header-nav .catalog .top-li_link {
	display: grid;
	grid-template-columns: 15px auto;
	align-items: center;
	justify-content: center;
	grid-gap: 8px;
	width: 100%;
	height: 100%;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 600;
	font-size: 11px;
	line-height: 13px;
	transition: 200ms linear;
}
.header-nav .catalog .top-li_link div {
	position: relative;
	height: 12px;
	width: 15px;
}
.header-nav .catalog .top-li_link div span{
	display: block;
	width: 15px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transform: translateY(5px);
	transition: 200ms linear;
}
.header-nav .catalog .top-li_link div:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 15px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: 200ms linear;
}
.header-nav .catalog .top-li_link div:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 15px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: 200ms linear;
}
.header-nav .catalog:hover {
	background: #fff;
	border-radius: 3px 3px 0 0;
	/*box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);*/
}
.header-nav .catalog:hover a {
	color: #494949;
}
.header-nav .catalog:hover div span,
.header-nav .catalog:hover div:after,
.header-nav .catalog:hover div:before{
	background: #494949;
}
.header-nav .top-ul{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.header-nav .top-li {
	margin-right: 0;
	display: flex;
    align-items: center;
    transition: 200ms linear;
}
.header-nav .top-li:first-child {
	margin-right: 20px;
}
.header-nav .top-li:last-child {
	margin-right: 0;
}
.header-nav .top-li_link {
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: #fff;
	text-decoration: underline;
	position: relative;
	z-index: 2;
	transition: 200ms linear;
}
.header-nav .top-li:not(.catalog) .top-li_link {
	padding: 0 26px 0 20px;
	height: 50px;
	text-decoration:none;
	display: flex;
	align-items: center;
}
.header-nav .top-li:not(.catalog) .top-li_link.root-item{
	position:relative;
	padding-right: 36px;
}
.header-nav .top-li:not(.catalog) .top-li_link.root-item:after{
	content:url(../site_img/menu-down.svg);
	top:14px;
	position:absolute;
	right:17px;
}
.header-nav .top-li:not(.catalog):hover .top-li_link.root-item:after{
	content:url(../site_img/menu-up.svg);
}
.header-nav .about {
	position: relative;
	padding-right: 0;
}
.header-nav .about span {
	width: 8px;
	height: 6px;
	position: absolute;
	right: 12px;
	top: calc(50% - 3px);
	z-index: 1;
}
.header-nav .about span:after{
	content: '';
	position: absolute;
	right: 0;
	top: calc(50% - 2px);
	border: 6px solid #fff;
	border-bottom-width: 0px;
	border-left-width: 4px;
	border-right-width: 4px;
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-right-color: transparent;
	opacity: 1;
}
.header-nav .top-li:hover {
	background: #fff;
}
.header-nav .top-li:not(.about){
	border-radius: 3px;
}
.header-nav .top-li.about:not(.about-first):hover {
	border-radius: 3px
}
.header-nav .top-li.about:hover span:after {
	border-top-color: #494949;
}
.header-nav .top-li:hover:not(.catalog) .top-li_link {
	color: #494949;
	text-decoration: none;
}

.header-nav .sub-menu {
	position: absolute;
	left: 0;
	top: 48px;
	max-width: 1080px;
	width: 285px;
	min-height: 265px;
	background: #fff;
	z-index: -1;
	display: none;
    align-items: flex-start;
    height: 100%;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
    border-radius: 0 3px 3px 3px;
    transition: width 0.3s linear;
}
.header-nav .sub-menu .sub-ul{
	position: relative;
	left: 0;
	top: 0;
	width: 285px;
	height: 100%;
	background: #fff;
	padding: 5px 0 0 0;
	box-shadow: none;
	display: block;
	border-radius: 0 3px 3px 3px;
	overflow: visible;
	border-right: 1px solid #fff;
}
.header-nav .sub-menu .sub-ul.sub-ul--active {
	border-right-color: #D3D3D3;
	border-radius: 0 0 0 3px;
}
.header-nav .sub-ul {
	position: absolute;
	left: 0;
	z-index: -1;
	top: 100%;
	width: 100%;
	background: #fff;
	height: auto;
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
	display: none;
	border-radius: 0 0 3px 3px;
	overflow: hidden;
}
.header-nav .sub-li .sub-li_link{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	/*
	height: 100%;
	*/
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
	color: #494949;
	padding: 7px 11px 7px 28px;
	transition: 200ms linear;
	position: relative;
}
.header-nav .sub-li .sub-li_link.sub-li__menu--active {
	padding: 7px 28px 7px 28px;
}
.header-nav .sub-li .sub-li_link.sub-li__menu--active span {
	position: absolute;
	right: -15px;
	height: 100%;
	width: 28px;
	background: none;
}
.header-nav .sub-li .sub-li_link.sub-li__menu--active span:after {
	content: '';
	position: absolute;
	right: 23px;
	top: calc(50% - 1px);
	border: 4px solid #494949;
	border-bottom-width: 0px;
	border-left-width: 2px;
	border-right-width: 2px;
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-right-color: transparent;
	opacity: 1;
	transform: rotate(30deg);
}
.header-nav .sub-li .sub-li_link:hover {
	background: #ECF3FC;
}

.sub-li_menu {
	position: absolute;
	left: 100%;
	top: 0;
	padding: 25px 13px 25px 30px;
	max-height: 100%;
	display: none;
	height: 100%;
}
.sub-li_menu .mCSB_inside>.mCSB_container {margin-right: 0;padding-right: 15px;}
.sub-li_menu .mCSB_scrollTools {opacity: 1;width: 4px;}
.sub-li_menu .mCS-dark.mCSB_scrollTools .mCSB_draggerRail {width: 4px;background: transparent;}
.sub-li_menu .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {width: 4px;background: #D3D3D3;}
.sub-li_menu .mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #494949;
}
.sub-li_menu ul {
	display: grid;
	grid-template-columns: repeat(3,243px);
	grid-gap: 10px;
	width: 100%;
}
.sub-li_menu ul li {
	width: 100%;
	height: 100px;
	text-align:center;
	border: 1px solid #ECECEC;
	padding: 8px 10px;
	transition: 200ms linear;
}
.sub-li_menu ul li:hover {
	border-color: #F8DB48;
}
.sub-li_menu ul .image {
	width: 156px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}
.sub-li_menu ul .image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.sub-li_menu ul a {
	display: block;
	width: 100%;
	height: 100%;
}
.sub-li_menu ul p {
	max-width: 250px;
	overflow: hidden;
	font-weight: normal;
	font-size: 12px;
	line-height: 26px;
	text-align: center;
	color: #494949;
	white-space: nowrap;
	text-overflow: ellipsis;
}
/* end header */
/* start question  */
.question {
	background-image:  url(../image/header-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom right;
	position: relative;
	margin-top: 101px;
}
.question:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background:  rgba(80,127,198,0.9);
	z-index: 1;
}
.question .container{
	position: relative;
	z-index: 2;
	padding: 67px 15px 65px 15px;
}
.question h2{
	font-weight: bold;
	font-size: 30px;
	line-height: 43px;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-bottom: 19px;
	position: relative;
	z-index: 3;
}
.question p{
	font-weight: 500;
	font-size: 16px;
	line-height: 31px;
	color: #FFFFFF;
	max-width: 573px;
	position: relative;
	z-index: 3;
	width: 100%;
}
.question p span{
	text-transform: uppercase;
	text-decoration: underline;
}
.question p a{
	font-weight: bold;
	font-size: 20px;
	line-height: 28px;
	color: #FFFFFF;
	margin-left: 10px;
	transition: 200ms linear;
}
.question p a:hover {
	color: #F8DB48;
}
.question .btn-yellow {
	max-width: 213px;
	margin-top: 33px;
	position: relative;
	z-index: 3;
}
.question .container:after {
	content: '';
	position: absolute;
	left: 393px;
	top: -29px;
	z-index: 2;
	width: 704px;
	height: calc(100% + 29px + 29px);
	background-image: url(../image/question-img.png);
	background-repeat: no-repeat;
	background-position: top 0 right 0;
}
/* end question  */


.video-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 30px;
    gap: 30px;
}

.video-1 {
    flex-basis: calc(50% - 15px);
}

.sert-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 30px;
    gap: 30px;    
}

.sert-box img {
    max-width: 100%;
    height: auto;
}

.sert-1 {
    flex-basis: calc(24% - 15px);
}

.list-ol {
    padding-left: 20px;
    margin: 10px 0 25px;
}

.list-ol li {
    color: #000;
    margin: 10px 0 20px;
    list-style: decimal;
}

.list-ul {
    padding-left: 20px;
    margin: 10px 0 25px;
}

.list-ul li {
    color: #000;
    margin: 10px 0;
    list-style: square;
}

.reviews-ya h2 {
    font-weight: bold;
    font-size: 30px;
    line-height: 43px;
    text-transform: uppercase;
    color: #455B7B;
    margin-bottom: 40px;
}

.widget-atg {
    width:70%;
    height:800px;
    overflow:hidden;
    position:relative;
    margin-top:30px;
}

.box-develop > div:nth-child(1) {
    margin-bottom: 8px;
}

.flex-develop {
    display: flex;
    align-items: center;
}    

.text-develop {
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-left: 15px;
    opacity: 0.5;
}

.text-develop-2 {
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-left: 11px;
    opacity: 0.5;
}

@media (max-width: 1199px) {
.widget-atg {
    width: 70%;
}
}

@media (max-width: 767px) {
.widget-atg {
    width: 100%;
    padding: 0 20px;
}
.reviews-ya h2 {
    margin: 26px 0;
    padding: 0 20px;
    font-size: 20px;
    line-height: 32px;    
}

.box-develop > div:nth-child(1) {
    margin-top: 15px;
}

}

/* start footer  */
footer {
	background: #494949;
	padding: 60px 0 31px 0;
}
footer .grid-wrap {
	display: grid;
	grid-template-columns: repeat(5,auto);
	grid-gap: 10px;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}
.footer__item h2{
	font-weight: bold;
	font-size: 16px;
	line-height: 35px;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-bottom: 14px;
}
.footer__item--list {

}
.footer__item--list a{
	font-weight: normal;
	font-size: 12px;
	line-height: 30px;
	text-decoration: underline;
	color: #FFFFFF;
	transition: 200ms linear;
}
.footer__item--list a:hover{
	color: #F8DB48;
}
.footer__item--list li {
	font-weight: normal;
	font-size: 10px;
	line-height: 17px;
	color: #FFFFFF;
}
.footer__item--list .call-free {
	max-width: 172px;
}
.footer__item--list .phone a{
	font-weight: 500;
	font-size: 16px;
	line-height: 33px;
	color: #FFFFFF;
	text-decoration: none;
}
.footer__item--list .phone a:hover {
	color: #F8DB48;
}
.footer__item--list .email{
	margin-top: 18px;
}
.footer__item--list .email a{
	font-weight: normal;
	font-size: 12px;
	line-height: 15px;
	color: #FFFFFF;
	text-decoration: none;
}
.footer__item--list .email span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 1px solid #FFFFFF;
	border-radius: 50%;
	transition: 200ms linear;
	margin-right: 10px;
	filter: brightness(0%) invert(1);
	transition: 200ms linear;
}
.footer__item--list .email a:hover{
	color: #F8DB48;
}
.footer__item--list .email:hover span{
	border-color: #F8DB48;
	filter: brightness(100%) invert(0);
}
.footer__item--list .lk  {
	margin-top: 23px;
}
.footer__item--list .lk a{
	font-weight: 600;
	font-size: 12px;
	line-height: 15px;
	color: #FFFFFF;
	text-decoration: none;
}
.footer__item--list .lk a:hover {
	color: #F8DB48;
}
.footer__item--list .lk span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	transition: 200ms linear;
	margin-right: 10px;
}
.footer__social {
	display: flex;
	margin-top: 23px;
}
.footer__social li {
	margin: 0 5px;
}
.footer__social li span{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 1px solid #FFFFFF;
	border-radius: 50%;
	transition: 200ms linear;
}
.footer__social li span img {
	transition: 200ms linear;
	filter: brightness(0%) invert(1);
}
.footer__social li:first-child span img {
	margin-right: 2px;
}
.footer__social li a {
	font-weight: normal;
	font-size: 12px;
	line-height: 15px;
	color: #fff;
	transition: 200ms linear;
}
.footer__social li:last-child a{
	display: flex;
	align-items: center;
}
.footer__social li:last-child span {
	margin-right: 10px;
}
.footer__social li a:hover {
	color: #F8DB48;
}
.footer__social li a:hover span {
	border-color: #F8DB48;
}
.footer__social li a:hover img {
	filter: brightness(100%) invert(0);
}
.copyright {
	display: grid;
	/*grid-template-columns: auto 1fr;*/
	grid-template-columns: repeat(3, auto);
	grid-gap: 31px;
	align-items: center;
	padding-top: 36px;
	border-top: 1px solid rgba(255,255,255,.5);
	margin-top: 36px;
}
.copyright .logo{

}
.copyright p{
	font-weight: normal;
	font-size: 10px;
	line-height: 17px;
	color: #FFFFFF;
	max-width: 731px;
}
.copyright p a{
	font-weight: normal;
	font-size: 10px;
	line-height: 17px;
	color: #FFFFFF;
	transition: 200ms linear;
}
.copyright p a:hover{
	color: #F8DB48;
}
/* end footer  */
/* start popup-callback  */
.popup-callback {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 500;
	background-color: rgba(0,0,0,.8);
	display: none;
	align-items: center;
	justify-content: center;
	overflow: auto;
}
.popup-callback .close {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 22px;
	height: 22px;
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
}
.popup-callback .close:after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	background: #455B7B;
	border-radius: 4px;
	width: 100%;
	height: 2px;
	transform: rotate(-45deg);
}
.popup-callback .close:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	background: #455B7B;
	border-radius: 4px;
	width: 100%;
	height: 2px;
	transform: rotate(45deg);
}
.popup-callback form {
	max-width: 400px;
	width: 100%;
}
.form-input {
	background: #FFFFFF;
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	position: relative;
	padding: 30px;
}
.input-wrap {
	margin-bottom: 7px;
}
.form-input h2 {
	font-weight: bold;
	font-size: 20px;
	line-height: 32px;
	text-transform: uppercase;
	color: #455B7B;
	margin-bottom: 14px;
}
.input-wrap p {
	font-weight: normal;
	font-size: 14px;
	line-height: 32px;
	display: flex;
	align-items: center;
	color: #494949;
}
.input-wrap input {
	width: 100%;
	height: 45px;
	padding: 0 10px;
	border: 1px solid #D3D3D3;
	border-radius: 3px;
	transition: 200ms linear;
}
.input-wrap input:focus {
	border-color: #455B7B;
}
.input-wrap textarea {
	resize: none;
	width: 100%;
	height: 135px;
	padding: 10px;
	border: 1px solid #D3D3D3;
	border-radius: 3px;
	transition: 200ms linear;
}
.input-wrap textarea:focus {
	border-color: #455B7B;
}
.form-input button {
	margin-top: 30px;
}
/* end popup-callback  */
/* end bread-crumb  */
.bread-crumb {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 37px 0 24px 0;
	flex-wrap: wrap;
}
.bread-crumb a{
	font-weight: normal;
	font-size: 14px;
	line-height: 14px;
	text-decoration: none;
	color: #494949;
	text-decoration: underline;
	transition: 200ms linear;
}
.bread-crumb a:hover {
	text-decoration: none;
}
.bread-crumb li:last-child a:hover {
	text-decoration: underline;
}
.bread-crumb li{
	    font-size: 14px;
    line-height: 14px;
}
.bread-crumb span {
	display: block;
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
	color: #494949;
	margin: 0 10px;
}
.bread-crumb li {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.bread-crumb li:first-child a{
	border-bottom-color:transparent;
}
.bread-crumb li:last-child  a {
	color: #507FC6;
}
.bread-crumb li:last-child span{
	display: none;
}
/* end bread-crumb  */
/* start pagination  */
.pagination {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 10px;
}
.pagination .page-li{
	width: 32px;
	height: 32px;
	border-radius: 4px;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 3.5px;
	border:1px solid transparent;
	transition: 200ms linear;
}
.pagination .page-li.active {
	background: #507FC6;
}
.pagination .page-li.active a {
	color: #fff;
}
.pagination .page-li:hover {
	border-color:#507FC6;
}
.pagination .page-li a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-weight: 500;
	font-size: 20px;
	line-height: 32px;
	text-transform: uppercase;
	color: #494949;
}
.pagination .arrow-prev{
	width: 32px;
	height: 32px;
	margin-right: 7px;
	position: relative;
	transition: 200ms linear;
	background: url(../image/icon/left-arrow.png);
	background-size: 100% 100%;
}
.pagination .arrow-prev a {
	display: block;
	width: 100%;
	height: 100%;
}
.pagination .arrow-prev:hover {
	background: url(../image/icon/left-arrow-yellow-big.png);
	background-size: 100% 100%;
}
.pagination .arrow-next{
	width: 32px;
	height: 32px;
	margin-left: 7px;
	position: relative;
	transition: 200ms linear;
	background: url(../image/icon/right-arrow.png);
	background-size: 100% 100%;
}
.pagination .arrow-next a {
	display: block;
	width: 100%;
	height: 100%;
}
.pagination .arrow-next:hover {
	background: url(../image/icon/right-arrow-yellow-big.png);
	background-size: 100% 100%;
}
.popup-item-basket {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 500;
	background: rgba(0,0,0,0.8);
	display: none;
	align-items: center;
	justify-content: center;
}
.popup-item-basket .wrap {
	max-width: 484px;
	width: 100%;
	background: #FFFFFF;
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	padding: 30px 70px 40px 30px;
}
.popup-item-basket h3 {
	font-weight: bold;
	font-size: 20px;
	line-height: 32px;
	text-transform: uppercase;
	color: #455B7B;
}
.popup-item-basket__grid {
	display: grid;
	grid-template-columns: 50px 1fr;
	align-items: center;
	grid-gap: 40px;
	margin: 30px 0 50px 0;
}
.popup-item-basket__grid .cross-id {
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	color: #455B7B;
	margin-right: 10px;
}
.popup-item-basket__grid .id {
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
	color: #494949;
}
.popup-item-basket__grid .id span {
	font-weight: 600;
}
.popup-item-basket__grid .name {
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
	color: #B9B9B9;
}
.popup-item-basket__grid .image {
	width: 50px;
	height: 50px;
}
.popup-item-basket__grid img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}
.popup-item-basket__grid .description > div {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.popup-item-basket__btn {
	display: grid;
	grid-template-columns: 179px 1fr;
	align-items: center;
	grid-gap: 20px;
}
.popup-item-basket__btn .btn-yellow {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 50px;
}
.popup-item-basket__btn .btn-grey{
	border: 1px solid #D3D3D3;
	border-radius: 3px;
	font-weight: 600;
	font-size: 11px;
	line-height: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-transform: uppercase;
	color: #455B7B;
	background: transparent;
	overflow:hidden;
	position: relative;
	width: 100%;
	height: 50px;
}
.popup-item-basket__btn .btn-grey span {
	position: relative;
	z-index: 2;
	-webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.popup-item-basket__btn .btn-grey:hover {
	border-color:#455B7B;
	color: #fff;
}
.popup-item-basket__btn .btn-grey:before, 
.popup-item-basket__btn .btn-grey:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.popup-item-basket__btn .btn-grey:before {
  right: -50px;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #455B7B;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.popup-item-basket__btn .btn-grey:after {
  left: -50px;
  border-left: 50px solid transparent;
  border-top: 80px solid #455B7B;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.popup-item-basket__btn .btn-grey:hover:before {
  -webkit-transform: translateX(-49%);
          transform: translateX(-49%);
}
.popup-item-basket__btn .btn-grey:hover:after {
  -webkit-transform: translateX(49%);
          transform: translateX(49%);
}
.container__head .arrow-prev,
.container__head .arrow-next {
	transition: 200ms linear;
}
.container__head .arrow-prev:hover {
	background: url(../image/icon/left-arrow-yellow-big.png) !important;
}
.container__head .arrow-next:hover {
	background: url(../image/icon/right-arrow-yellow-big.png) !important;
}
.header-mobile-phone,.header-search__basket div.small-count{
	display:none;
}
.header-top__wa a{
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	color:#fff;
}
.header-top__wa{
	position:relative;
	padding-left:32px;
}
.header-top__wa:before{
	border: 1px solid #F7F7F7;
	border-radius:50%;
	position:absolute;
	content:'';
	top:-2px;
	left:0;
	width:22px;
	height:22px;
}
.header-top__wa:after{
	position:absolute;
	content:'';
	background:url(../site_img/wa.svg);
	background-size:cover;
	width:12px;
	height:12px;
	top:3px;
	left:6px;
}

/* end pagination  */
@media (max-width: 1100px){
	.question .container:after {
		left: 0;
		width: 100%;
		background-position: top 0 left 393px;
		background-size: auto 100%;
	}
	.sub-li_menu ul {
		grid-template-columns: 24vw 24vw 24vw;
	}
}
@media (max-width: 991px){
	.mobile-wa{
		margin-bottom:20px;
		text-align:center;
	}
	.mobile-wa a{
		font-weight: 600;
		font-size: 16px;
		color:#fff;
	}
	.mobile-wa span{
		display: inline-block;
		vertical-align: middle;
		margin-right: 10px;
		width: 45px;
		line-height: 52px;
		border-radius: 50%;
		height: 45px;
		border: 1px solid #fff;
	}
	.header-top__wa{
		display:none;
	}
	.question .container {
		padding: 67px 40px 65px 40px;
	}
	#header .container {
	    padding: 0 40px;
	}
	.header-down .header-search {
		flex-wrap:wrap;
	}
	.header-search__logo{
		order:1;
	}
	.header-down__lk{
		order: 2;
		margin-left: auto;
	}
	div.header-search__basket {
		margin-left: 20px;
		order: 3;
	}
	.grid-mobile-four {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}
	.grid-mobile-three {
		display: grid;
		grid-template-columns: 33px 1fr 170px;
		justify-content: space-between;
		align-items: center;
		grid-gap: 28px;
		width: 100%;
		padding-top: 31px;
		border-top: 1px solid rgba(255,255,255,.3);
		margin-top: 30px;
	}
	.header-search__form {
		max-width: 100%;
		order:4;
		margin-top:20px;
	}
	.header-search__gamburger {
		display: flex;
		order: 0;
		margin-right:20px;
	}
	.header-search .btn-yellow {
		width: 170px;
		margin-right: 0;
		margin-left: auto;
	}
	.header-search__phone {
		display: flex;
	}
	.header-top .container {
		grid-template-columns: 1fr auto auto;
		grid-gap: 28px;
	}
	.header-top__phone {
		display: none;
	}
	.header-top__social li:last-child a {
		font-size: 0;
	}
	.header-top__social li:last-child span {
	    margin-right: 0;
	}
	.header-nav {
		display: none;
	}
	footer {
	    padding: 27px 25px 27px 25px;
	}
	footer .grid-wrap {
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 46px 20px;
	}
	.footer__item:nth-child(1){
		grid-column: 1/2;
		grid-row: 2;
	}
	.footer__item:nth-child(2){
		grid-column: 1;
		grid-row: 1;
	}
	.footer__item:nth-child(3){
		grid-column: 2;
		grid-row: 1;
	}
	.footer__item:nth-child(4){
		grid-column: 3;
		grid-row: 2;
	}
	.footer__item:nth-child(5){
		grid-column: 3;
		grid-row: 1;
	}
}
@media (max-width: 767px){
	.header-search__basket div.small-count {
		display: block;
		position: absolute;
		top: -4px;
		right: -8px;
		font-size: 12px;
		border: 0;
		width: 18px;
		height: 18px;
		line-height: 18px;
		font-weight: 600;
		text-align: center;
		color: #86751F;
		background: #F8DB48;
	}
	.header-mobile-phone{
		display:block;
		margin-left:auto;
		position: relative;
	}
	a.toggle-phone-mobile{
		display:flex;
	}
	a.toggle-phone-mobile img{
		margin-right:5px;
	}
	a.header-lk_icon{
		width: 50px;
		overflow: hidden;
	}
	a.toggle-phone-mobile span{
		transform: rotate(180deg);
	}
	.header-mobile-phone.active a.toggle-phone-mobile span{
		transform: rotate(0deg);
	}
	.header-mobile-phone.active .header-mobile-phone-popup{
		display:block;
	}
	.header-mobile-phone-popup {
		position: absolute;
		background: #FFFFFF;
		border-radius: 3px;
		right: -20px;
		top: 40px;
		padding: 20px;
		z-index: 50;
		font-weight: 600;
		font-size: 15px;
		line-height: 18px;
		width: 200px;
		text-align: right;
		display:none;
	}
	.header-mobile-phone-popup a{
		display:block;
		color: #455B7B;
	}
	.header-mobile-phone-popup a img{
		vertical-align:middle;		
	}
	.header-mobile-phone-popup a{
		margin-bottom:15px;
	}
	.header-mobile-phone-popup a:last-child{
		margin-bottom:0;
	}
	.pagination .arrow-next,
	.pagination .arrow-prev {
		width: 22px;
		height: 22px;
	}
	.pagination .arrow-next img,
	.pagination .arrow-prev img {
		width: 22px;
	}
	#header .container {
		padding: 0 20px;
	}
	.bread-crumb {
		background: #EFF2F6;
		padding: 24px 20px 24px 20px;
		margin: 0;
	}
	.open-languages {
		display: flex;
		top: 6px;
	}
	.header-top__languages {
		width: 30px;
		height: 22px;
		position: relative;
		z-index: 10;
		display:none;
	}
	.header-top__languages li {
		margin: 0 auto;
	}
	.header-top__languages li:nth-child(n+2){
		display: none;
	}
	.header-top__languages.active-languages {
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.35);
	}
	.header-top__languages.active-languages ul {
	  	display: grid;
	  	grid-template-columns: 100%;
	  	grid-gap: 10px;
	   	border-radius: 90px;
		padding: 5px 0;
		background: #FFFFFF;
	}
	.header-search .btn-yellow,
	.header-search__phone,
	.header-search__logo {
		display: none;
	}
	.header-down .header-search {
		margin-bottom: 0;
	}
	.header-search__basket p{
		display:none;
	}
	div.header-search__basket {
		margin-left: 10px;
	}
	.header-search__basket {
		grid-column: 2;
		grid-row: 1;
	}
	.header-search__basket div:after{
		display:none;
	}
	.header-search__form {
		grid-column: 1/3;
		grid-row: 2;
		margin-top: 30px;
	}
	.mobile-social,
	.mobile-menu-nav .top-li.lk {
		display: flex;
	}
	.header-top__logo {
		display: grid;
		width:220px;
	}
	.header-top .container {
	    grid-template-columns: 1fr auto;
	    grid-gap: 28px;
	}
	.header-top__social,
	.header-top__lk {
		display: none;
	}
	.header-top .container {
		padding: 0 20px;
	}
	.question {
		padding: 40px 0 50px 0;
		margin-top: 60px;
	}
	.question h2 {
		font-size: 18px;
		line-height: 30px;
	}
	.question p {
		font-weight: normal;
		font-size: 12px;
		line-height: 24px;
	}
	.question p a {
		display: block;
		font-size: 16px;
		line-height: 28px;
		margin-left: 0;
	}
	.question .container:after {
		left: auto;
		right: 0;
		top: -192px;
		width: 202px;
		height: 372px;
		background-position: top 0 right 0;
		background-size: auto 100%;
		background-image: url(../image/question-img2.png);
	}
	.question .container {
		padding: 0 20px;
	}
	.question .btn-yellow {
		max-width: 100%;
	}
	.question .question-image {
		top: -115px;
	    transform: rotate(63.72deg);
	    width: 372px;
	    right: -196px;
    	left: auto;
	}
	footer {
	    padding: 27px 20px 27px 20px;
	}
	footer .container {
		padding: 0;
	}
	footer .grid-wrap {
		grid-template-columns: 100%;
		grid-gap: 25px 20px;
	}
	.footer__item h2 {
		margin-bottom: 8px;
	}
	.footer__item:nth-child(1){
		grid-column: 1;
		grid-row: auto;
	}
	.footer__item:nth-child(2){
		grid-column: 1;
		grid-row: auto;
	}
	.footer__item:nth-child(3){
		grid-column: 1;
		grid-row: auto;
	}
	.footer__item:nth-child(4){
		grid-column: 1;
		grid-row: auto;
	}
	.footer__item:nth-child(5){
		grid-column: 1;
		grid-row: auto;
	}
	.footer__item--list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap:0 43px;
	} 
	.footer__item:nth-child(5) .footer__item--list {
		display: block;
	}
	.footer__item:nth-child(4) .footer__item--list {
		display: block;
	}
	.copyright {
		align-items: flex-start;
		grid-gap: 24px;
	}
	.header-top__logo p{
		max-width:100%;
	}
	.sert-1 {
        flex-basis: calc(100%);
    }
    .video-1 {
       flex-basis: calc(100%);
    }
}
@media (max-width: 600px){
	.popup-item-basket {
		padding: 0 20px;
	}
	.popup-item-basket__grid {
		grid-template-columns: 1fr;
		grid-gap: 15px;
		margin-bottom: 20px;
	}
	.popup-item-basket__grid .image {
	    width: 73px;
	    height: 73px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}
	.popup-item-basket__grid img {
		width: 73px;
	    height: 73px;
	}
	.popup-item-basket__btn {
		grid-template-columns: 1fr;
		grid-gap: 10px;
	}
	.popup-item-basket .wrap {
		padding: 20px;
	}
	.popup-item-basket h3 {
		font-size: 18px;
		line-height: 29px;
	}
	.popup-item-basket {
		padding: 20px;
	}
}
@media (max-width: 525px){
	.popup-callback {
		justify-content: flex-start;
		align-items: flex-start;
		padding: 20px;
	}
	.copyright{
		display:block;
	}
}
@media (max-height: 620px){
	.popup-callback {
		align-items: flex-start;
	}
}

