* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Cuprum', sans-serif;
	line-height: 1.15;
}

/*Navigation Items*/
.si-page__back-button {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 60px;
	background-color: rgba(0, 0, 0, 0.1);
	transition: background-color 0.25s;
	z-index: 1;
}
.si-page__back-button:hover {
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.3);
}
.si-page__back-button-arrow {
	height: 25px;
	width: 16px;
	background-image: url(../main_img/svg/back-arrow-icon.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.3;
	transition: opacity 0.25s;
}
.si-page__back-button:hover .si-page__back-button-arrow {
	opacity: 0.6;
}
.si-page__scrolltop-button {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 15px;
	bottom: 15px;
	height: 60px;
	width: 60px;
	background-color: rgba(0, 0, 0, 0.1);
	transition: background-color 0.25s, opacity 0.4s;
	opacity: 0;
	pointer-events: none;
	z-index: 1;
}
.si-page__scrolltop-button_visible {
	opacity: 1;
	pointer-events: all;
}
.si-page__scrolltop-button:hover {
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.3);
}
.si-page__scrolltop-button-arrow {
	height: 25px;
	width: 16px;
	background-image: url(../main_img/svg/back-arrow-icon.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.3;
	transform: rotate(90deg);
	transition: opacity 0.25s;
}
.si-page__scrolltop-button:hover .si-page__scrolltop-button-arrow {
	opacity: 0.6;
}
@media only screen and (max-width : 991px) {
	.si-page__back-button,
	.si-page__scrolltop-button {
		display: none;
	}
}


#catalog { padding: 70px 0; }
#pgn,
#pg12t,
#pg20t,
#pg30t,
#pg45t,
#pg100t,
#instruments,
#about-us { padding-bottom: 70px; }



/*   H E A D E R   */

.sid {
    color: white;
    position: absolute;
    right: 19px;
    transform: rotateX(180deg);
}

header {
	position: fixed;
	width: 100%;
	background-color: rgba(9,9,9,.2);
	z-index: 100;
	transition: .5s;
}
#menu {
	display: flex;
	height: 64px;
	width: 100%;
}
.logo-content {
	height: 0;
	width: 370px;
	border-bottom: 130px solid #E53935;
	border-right: 33px solid transparent;
	transform: rotateX(180deg);
}
.sid-mob {
    display: none;
}
.logo-mob {
	display: none;
	height: 40px;
	width: 258px;
	margin: auto auto auto 0;
	background-image: url(../main_img/menu-logo.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.header-left-line {
	position: fixed;
	left: calc(330px - 100vw);
	height: 130px;
	width: 100vw;
	background-color: #E53935;
}
.lcc {
	transform: rotateX(180deg);
}
.logo-image {
	height: 49px;
	width: 317px;
	margin: 8px 0 7px;
	background-image: url(../main_img/menu-logo.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.logo-description {
	font-size: 11px;
	font-weight: 700;
	line-height: 13px;
	color: #fff;
}
.main-menu {
	display: flex;
	margin: 0 auto 0 50px;
}
.main-menu ul {
	display: flex;
	margin: auto 0;
}
.main-menu ul li {
	display: inline-block;
	margin-right: 30px;
	list-style-type: none;
}
.main-menu ul li a {
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
	text-align: center;
	text-transform: uppercase;
	outline: none;
	transition: .4s;
	color: #fff;
}
.main-menu ul li a:hover { color: #EF5350; }
.main-menu ul li a:first-child { display: flex; }
.main-menu ul li a:first-child:hover { cursor: pointer; }
.main-menu ul li a svg {
	margin: auto 0 auto 5px;
	font-size: 18px;
}
#catalog-moblink { display: none; }
.header-contacts {
	display: flex;
	flex-direction: column;
	margin: 7px 4px 8px auto;
}
.header-contacts a {
	font-weight: 700;
	color: #fff;
	outline: none;
}
.header-phone,
.header-mail { display: flex; }
.header-phone>div,
.header-mail>div {
	height: 17px;
	width: 17px;
	margin: auto 12px auto 0;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.header-phone>div {
	background-image: url(../main_img/header-phone.png);
}
.header-mail>div {
	background-image: url(../main_img/header-mail.png);
}
.header-phone>a {
	font-size: 26px;
	line-height: 30px;
}
.header-mail>a {
	font-size: 20px;
	line-height: 19px;
}
.catalog-menu {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 64px;
	left: 398px;
	height: 0;
	max-height: 282px;
	width: 301px;
	border-radius: 0 0 10px 10px;
	overflow: hidden;
	z-index: 100;
}
.catalog-menu>a {
	padding-left: 37px;
	font-size: 22px;
	font-weight: 700;
	line-height: 46px;
	text-align: left;
	text-transform: uppercase;
	transition: .4s;
	border-top: 1px solid rgba(193,193,193,.56);
	background-color: rgba(9,9,9,.6);
	color: #fff;
	outline: none;
}
.catalog-menu>a:hover { color: #EF5350; }
.callback-mob {
	display: none;
	height: 34px;
	width: 34px;
	margin: auto 0 auto auto;
	background-image: url(../main_img/callback-mob.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.menu-mob {
	display: none;
	height: 37px;
	width: 37px;
	margin: auto 6px auto 18px;
	background-image: url(../main_img/menu-mob.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.callback-mob:hover,
.menu-mob:hover { cursor: pointer; }


/*Header*/
.sh-page__header {
	position: fixed;
	height: 64px;
	width: 100%;
	border-bottom: 1px solid rgba(147, 147, 147, 0.3);
	background-color: #F6F6F6;
	transition: .5s;
	z-index: 99;
}
.sh-header {}
.sh-header__wrapper {
	display: flex;
	position: relative;
	height: 64px;
}
.sh-header__wrapper::before {
	position: absolute;
	right: calc(100% - 1px);
	content: '';
	width: 200vw;
	background-color: #E53935;
	transition: .4s;
	z-index: -1;
}
.sh-header__descriptor {
	width: 358px;
	overflow: hidden;
	transition: .4s;
}
.sh-header__wrapper[data-state='opened']::before ,
.sh-header__wrapper[data-state='opened'] .sh-header__descriptor {
	height: 111px;
}
.sh-header__wrapper[data-state='closed']::before ,
.sh-header__wrapper[data-state='closed'] .sh-header__descriptor {
	height: 63px;
}
.sh-header__descriptor-content {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 111px;
	width: 100%;
	background-image: url(../main_img/svg/header.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.sh-header__descriptor-logo {
	height: 63px;
	width: 317px;
	background-image: url(../main_img/svg/si-logo.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.sh-header__descriptor-text {
	width: 86%;
	margin: 0 0 auto;
	font-size: 11px;
	font-weight: 700;
	color: #FFF;
}
.sh-header__nav {
	position: relative;
	display: flex;
	margin-left: 64px;
}
.sh-header__nav-content {
	margin: auto 0;
}
.sh-header__nav-list {
	display: flex;
	justify-content: space-between;
	width: 440px;
	list-style: none;
}
.sh-header__nav-item {}
.sh-header__nav-item_mob-catalog {
	display: none;
}
.sh-header__nav-item_general-catalog {
	display: flex;
}
.sh-header__nav-item-link {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	color: #545455;
	transition: .25s;
}
.sh-header__nav-item-link:hover {
	cursor: pointer;
	color: #7D7D7F;
}
.sh-header__nav-item_catalog {
	display: flex;
}
.sh-header__nav-item_catalog-arrow {
	height: 24px;
  width: 15px;
  margin: auto 0 auto 8px;
	background-image: url(../main_img/svg/angle-down.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	fill: #545455;
	transition: .25s;
}
.sh-header__nav-item_catalog:hover {
	cursor: pointer;
	color: #7D7D7F;
}
.sh-header__nav-item_catalog:hover .sh-header__nav-item_catalog-arrow {
	fill: #7D7D7F;
}
.sh-page__catalog-menu {
	position: absolute;
	top: 63px;
	left: -36px;
	display: flex;
	flex-direction: column;
	width: 310px;
	border: 1px solid rgba(147, 147, 147, 0.3);
	border-top: none;
	border-radius: 0 0 10px 10px;
	overflow: hidden;
	z-index: 100;
	transition: .4s;
}
.sh-page__catalog-menu[data-catalog-state='closed'] {
	height: 0;
	opacity: 0;
}
.sh-page__catalog-menu[data-catalog-state='opened'] {
	height: 282px;
	opacity: 1;
}
.sh-page__catalog-menu-item {
	padding-left: 36px;
  font-size: 22px;
  font-weight: 700;
  line-height: 46px;
  text-align: left;
  text-transform: uppercase;
  transition: .4s;
  border-top: 1px solid rgba(147, 147, 147, 0.3);
  background-color: #F6F6F6;
  color: #545455;
  transition: .4s;
  outline: none;
}
.sh-page__catalog-menu-item:hover {
	cursor: pointer;
	color: #7D7D7F;
}
.sh-header__contacts {
	margin: auto 14px auto auto;
}
.sh-header__contacts-container {
	display: flex;
}
.sh-header__contacts-icon {
	height: 20px;
	width: 15px;
	margin: auto 10px auto 0;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.sh-header__contacts-icon_phone {
	background-image: url(../main_img/svg/header-phone.svg);
}
.sh-header__contacts-icon_mail {
	background-image: url(../main_img/hmail.png);
}
.sh-header__contacts-text {
	font-weight: 700;
	color: #545455;
}
.sh-header__contacts-text_phone {
	font-size: 26px;
}
.sh-header__contacts-text_mail {
	font-size: 18px;
}
.sh-header__mob-nav {
	display: none;
	position: fixed;
	top: 56px;
	left: 0;
	width: 100%;
	padding-top: 10px;
	background-color: #E53935;
	overflow: hidden;
	z-index: 90;
}
.sh-header__mob-buttons {
	display: none;
	margin: auto 0;
}
.sh-header__mob-callback {
	height: 34px;
	width: 34px;
	margin-right: 20px;
	background-image: url(../main_img/mob-callback.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.sh-header__mob-menu-button {
	height: 37px;
	width: 37px;
	background-image: url(../main_img/mob-menu.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.callback {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 40px;
	position: relative;
	/*height: 0;
	width: 154px;
	box-sizing: content-box;
	text-align: right;*/
}

.header-right-line {
	display: none;
	position: absolute;
	top: 0;
	left: 1150px;
	height: 130px;
	width: 2000px;
	background-color: #d13129;
}

.callback:before {
	content: "";
	background-image: url(../main_img/svg/header.svg);
	background-position: bottom;
	background-size: cover;
	background-repeat: no-repeat;
	width: 258px;
	height: 57px;
	display: block;
	position: absolute;
	transform: scale(-1, 1);
	left: -5px;
	bottom: -57px;
}
.callback:after {
	content: "";
	background: #e53935;
	width: 700px;
	height: 57px;
	position: absolute;
	bottom: -57px;
	right: -700px;
}
.callback-phone>a:nth-child(1):before {
	content: "";
	width: 15px;
	height: 20px;
	background: url(../main_img/svg/header-phone.svg) no-repeat;
	display: inline-block;
	margin-right: 10px;
}
.callback-phone>a:nth-child(1) {
	font-size: 26px;
	font-weight: bold;
	color: #545455;
	outline: none;
}
.callback-phone>a:nth-child(2) {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	outline: none;
}
.header-button {
	border: 2px solid #fff;
	border-radius: 6px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	transition: .4s;
	position: absolute;
	padding: 4px 25px;
	bottom: -44px;
	left: 50px;
}
.header-button:hover {
	background-color: #fff;
	color: #d13129;
	cursor: pointer;
}


/*First Screen*/
.sh-page__first-screen {
	background-image: url(../main_img/fsbg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}
.sh-first-screen__wrapper {
	position: relative;
	display: flex;
	margin-top: 98px;
}
.sh-first-screen__image-wrapper {
	position: relative;
	height: 796px;
	min-width: 547px;
	margin: 0 -22px 0 auto;
}
.sh-first-screen__image {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-image: url(../main_img/first-press.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.sh-first-screen__content {
	margin: 60px 0 0;
	color: #fff;
}
.sh-first-screen__title {
	font-size: 38px;
	font-weight: 700;
	line-height: 1.16;
	text-transform: uppercase;
}
.sh-first-screen__items {
	margin-top: 20px;
}
.sh-first-screen__item {
	display: flex;
	align-items: center;
	margin-top: 16px;
}
.sh-first-screen__item-icon {
	height: 28px;
	width: 38px;
	margin-right: 8px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.sh-first-screen__item-icon_delivery {
	background-image: url(../main_img/svg/delivery-truck.svg);
}
.sh-first-screen__item-icon_courier {
	background-image: url(../main_img/svg/courier.svg);
}
.sh-first-screen__item-icon_guarantee {
	background-image: url(../main_img/svg/guarantee.svg);
}
.sh-first-screen__item-icon_sales {
	background-image: url(../main_img/svg/sales.svg);
}
.sh-first-screen__item-icon_boxes {
	background-image: url(../main_img/svg/boxes.svg);
}
.sh-first-screen__item-title {
	font-size: 30px;
	line-height: 1.15;
	flex-shrink: 999999;
}
.sh-first-screen__item-text {
	font-size: 24px;
	line-height: 1.15;
	flex-shrink: 999999;
}
.sh-first-screen__item-text_red {
	font-weight: 700;
	color: #E53934;
}
.sh-first-screen__sales {
	width: 528px;
	margin-top: 30px;
	padding: 20px 30px 30px;
	border: 15px solid #fff;
	border-radius: 0 35px 0 35px;
	box-shadow: 0px 25px 65px rgba(0, 0, 0, 0.15);
	background-color: #F5F5F5;
}
.sh-first-screen__sales-text {
	font-size: 38px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: #545455;
}
.sh-first-screen_red-text {
	color: #E53934;
}
.sh-first-screen__sales-button {
	display: flex;
	justify-content: center;
	height: 70px;
	width: 100%;
	margin-top: 20px;
	border-radius: 10px;
	box-shadow: inset 0px 0px 0px #A92A27, 0px 10px 36px rgba(0, 0, 0, 0.3), 0px 3px 0px #A82A27;
	background-color: #E53935;
	transition: .25s;
}
.sh-first-screen__sales-button:hover {
	cursor: pointer;
	box-shadow: inset 0px 3px 0px #A92A27, 0px 0px 0px rgba(0, 0, 0, 0.3), 0px 0px 0px #A82A27;
	background-color: #D53532;
}
.sh-first-screen__sales-button-text {
	margin: auto 0;
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	color: #FFF;
}
.sh-first-screen__sales-button-icon {
	height: 24px;
	width: 24px;
	margin: auto 0 auto 15px;
	background-image: url(../main_img/svg/fs-arrow-down.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.sh-first-screen__side-items {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	width: 745px;
	padding: 15px 25px 15px 0;
	border-radius: 0 35px 35px 0;
	background-color: #fff;
}
.sh-first-screen__side-items::before {
	content: '';
	position: absolute;
	top: 0;
	right: 100%;
	display: block;
	height: 100%;
	width: 100vh;
	background-color: #fff;
}
.sh-first-screen__side-item {
	display: flex;
	align-items: center;
}
.sh-first-screen__side-item-icon {
	height: 28px;
	width: 28px;
	margin-right: 10px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.sh-first-screen__side-item-icon_shop {
	background-image: url(../main_img/svg/i_shop.svg);
}
.sh-first-screen__side-item-icon_manager {
	background-image: url(../main_img/svg/i_manager.svg);
}
.sh-first-screen__side-item-icon_business {
	background-image: url(../main_img/svg/i_business.svg);
}
.sh-first-screen__side-item-text {
	font-size: 24px;
	color: #545455;
}

.sh-first-screen__consultation {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 548px;
	width: 100%;
	margin-top: 60px;
	margin-bottom: 80px;
}
.sh-first-screen__consultation-description {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 520px;
	border: 15px solid #fff;
	border-radius: 35px;
	box-shadow: 0px 25px 64px rgba(0, 0, 0, 0.15);
	background-color: #F5F5F5;
	z-index: 1;
}
.sh-first-screen__consultation-description-title {
	position: absolute;
	left: -15px;
	top: -15px;
	padding: 25px 65px 20px 50px;
	border-radius: 35px 0 35px 0;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	background-color: #fff;
	color: #545455;
}
.sh-first-screen__consultation-description-title span {
	color: #E53934;
}
.sh-first-screen__consultation-content {
	margin: 130px 0 0 35px;
}
.sh-first-screen__consultation-content-title {
	font-size: 24px;
	font-weight: 700;
	color: #545455;
}
.sh-first-screen__consultation-content-item {
	display: flex;
	margin-top: 23px;
	font-size: 20px;
	color: #545455;
}
.sh-first-screen__consultation-content-item-number {
	margin-right: 15px;
	font-weight: 700;
}
.sh-first-screen__consultation-content-item-text {
	width: 350px;
	font-weight: 400;
}
.sh-first-screen__consultation-form {
	position: relative;
	height: 486px;
	width: 1010px;
	margin: auto 0;
	border-radius: 35px;
	box-shadow: 0px 25px 64px rgba(0, 0, 0, 0.15);
	background-color: #fff;
}
.sh-first-screen__consultation-form-freetext {
	position: absolute;
	left: 32px;
	top: 0;
	height: 100%;
	font-size: 68px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	color: #A7A7A7;
	opacity: 0.1;
}
.sh-first-screen__consultation-form-freetext span {
	display: block;
	transform-origin: bottom left;
	transform: rotate(90deg);
}
.sh-first-screen__consultation-form .sh-form__wrapper {
	height: 366px;
	width: 384px;
	margin: 55px 0 0 144px;
	box-shadow: none;
}
.sh-first-screen__consultation-form .sh-form__title {
	margin: 0;
	font-size: 24px;
	text-align: left;
	color: #545455;
}
.sh-first-screen__consultation-form .sh-form__fields {
	margin: 25px 0 0;
}
.sh-first-screen__consultation-form .sh-form__button {
	align-items: unset;
}
.sh-first-screen__consultation-form .sh-form__button-text {
	margin: auto 0;
	font-size: 24px;
}
.sh-first-screen__consultation-form .sh-form__field {
	width: 100%;
}
.first-catalog {
	width: 100%;
	margin-bottom: 40px;
}
.first-catalog a { outline: none; }
.first-catalog-item {
	display: flex;
	font-size: 20px;
	font-weight: 700;
	line-height: 23px;
	text-transform: uppercase;
	color: #fff;
	opacity: .6;
	transition: .4s;
}
@keyframes pi-anim {
	0% 	  { opacity: .6; }
	8.3%  { opacity: 1; }
	16.6% { opacity: .6; }
	100%  { opacity: .6; }
}
.first-catalog>div>div>div:nth-child(1)>
.first-catalog-item { animation: pi-anim 12s ease-in-out 2s infinite; }
.first-catalog>div>div>div:nth-child(2)>
.first-catalog-item { animation: pi-anim 12s ease-in-out 4s infinite; }
.first-catalog>div>div>div:nth-child(3)>
.first-catalog-item { animation: pi-anim 12s ease-in-out 6s infinite; }
.first-catalog>div>div>div:nth-child(4)>
.first-catalog-item { animation: pi-anim 12s ease-in-out 8s infinite; }
.first-catalog>div>div>div:nth-child(5)>
.first-catalog-item { animation: pi-anim 12s ease-in-out 10s infinite; }
.first-catalog>div>div>div:nth-child(6)>
.first-catalog-item { animation: pi-anim 12s ease-in-out 12s infinite; }
.first-catalog-item:hover {
	cursor: pointer;
	opacity: 1;
}
.first-catalog-item>p { margin: auto 0 auto -3px; }
.press-icon {
	height: 59px;
	width: 59px;
	background-image: url(../main_img/press-icon.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.first-image-mob { display: none; }
.shnur { display: none; }

/*Form*/
.sh-page__form {
	position: fixed;
	top: -100vh;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	transition: .25s;
	transition: top 0s;
}
.sh-page__form[data-form-state='closed'] {
	pointer-events: none;
	opacity: 0;
	z-index: -99;
}
.sh-page__form[data-form-state='opened'] {
	pointer-events: auto;
	opacity: 1;
	z-index: 100;
}
.sh-page__form-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.65);
}
.sh-page__form-wrapper {
	position: absolute;
	top: 0;
	display: flex;
  justify-content: center;
  align-items: center;
	height: 100vh;
	width: 100%;
	pointer-events: none;
	transition: .5s;
}
.sh-page__form-wrapper_hidden {
	transition-delay: .25s;
	top: 100%;
}
.sh-form {}
.sh-form__wrapper {
	display: flex;
	flex-direction: column;
	position: relative;
	height: 440px;
	width: 550px;
	border-radius: 4px;
	box-shadow: 0px 15px 54px rgba(0, 0, 0, 0.75);
	background: #FFF;
	pointer-events: auto;
	transition: .25s;
}
.sh-page__form[data-form-state='closed'] .sh-form__wrapper {
	opacity: 0;
}
.sh-page__form[data-form-state='opened'] .sh-form__wrapper {
	transition-delay: .25s;
	opacity: 1;
}
.sh-form__close-cross {
	position: absolute;
	top: 23px;
	right: 20px;
	height: 25px;
	width: 25px;
	background-image: url(../main_img/close-cross.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: .4;
	transition: .4s;
}
.sh-form__close-cross:hover {
	cursor: pointer;
	opacity: 1;
}
.sh-form__title {
	margin: 19px 0 15px;
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	color: #303030;
}
.sh-form__separator {
	height: 1px;
	width: 100%;
	background-color: rgba(96, 96, 96, 0.3);
}
.sh-form__fields {
	display: flex;
	flex-direction: column;
	margin: 35px auto 0;
}
.sh-form__field {
	display: flex;
	width: 380px;
}
.sh-form__field_last {
	margin-top: 25px;
}
.sh-form__field-image {
	flex-shrink: 0;
	display: flex;
	height: 60px;
	width: 60px;
	border: 1px solid rgba(96, 96, 96, 0.3);
	background-color: #FFF;
}
.sh-form__field-image-icon {
	margin: auto;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.sh-form__field-image-icon_name {
	height: 24px;
	width: 24px;
	background-image: url(../main_img/form-name-icon.png);
}
.sh-form__field-image-icon_phone {
	height: 30px;
	width: 22px;
	background-image: url(../main_img/form-phone-icon.png);
}
.sh-form__field-image-icon_email {
	height: 20px;
	width: 28px;
	background-image: url(../main_img/form-email-icon.png);
}
.sh-form__field-content {
	position: relative;
	width: 100%;
}
.sh-form__field-label {
	position: absolute;
	top: 50%;
	left: 20px;
	font-size: 24px;
	line-height: 0;
	color: rgba(48, 48, 48, 0.6);
	pointer-events: none;
	opacity: 1;
	transition: .25s;
}
.sh-form__field-input {
	height: 60px;
	width: 100%;
	padding-left: 20px;
	border: none;
	box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.2);
	font-size: 24px;
	color: rgba(48, 48, 48, 0.85);
}
.sh-form__field-input:focus {
	outline: none;
}
.sh-form__field-input:focus ~ .sh-form__field-label,
.sh-form__field-input:valid ~ .sh-form__field-label {
	opacity: 0;
}
.sh-form__button {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	width: 100%;
	margin: 35px 0 0;
	border: none;
	box-shadow: inset 0px 0px 0px #A92A27, 0px 10px 36px rgba(0, 0, 0, 0.3), 0px 3px 0px #A82A27;
	background-color: #E53935;
	transition: .25s;
}
.sh-form__wrapper[data-available='false'] .sh-form__button  {
	pointer-events: none;
	background-color: #C45350;
}
.sh-form__wrapper[data-available='true'] .sh-form__button  {
	pointer-events: auto;
}
.sh-form__button:hover {
	cursor: pointer;
	box-shadow: inset 0px 3px 0px #A92A27, 0px 0px 0px rgba(0, 0, 0, 0.3), 0px 0px 0px #A82A27;
	background-color: #D53532;
}
.sh-form__button-text {
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	color: #FFF;
}
.sh-form__personal-data {
	display: flex;
	margin: 25px auto auto;
	color: #303030;
	transition: .4s;
}
.sh-form__wrapper[data-available='false'] .sh-form__personal-data {
	opacity: 1;
}
.sh-form__wrapper[data-available='true'] .sh-form__personal-data {
	opacity: .7;
}
.sh-form__personal-data-check-box {
	position: relative;
}
.sh-form__personal-data-check-box,
.sh-form__personal-data-check-box > svg {
	height: 20px;
	width: 20px;
	fill: #303030;
}
.sh-form__personal-data-check-box:hover {
	cursor: pointer;
}
.sh-form__personal-data-checked-inbox {
	position: absolute;
	top: 4px;
	left: 4px;
}
.sh-form__personal-data-checked-inbox,
.sh-form__personal-data-checked-inbox > svg {
	height: 12px;
	width: 12px;
	fill: #303030;
	transition: .4s;
}
.sh-form__wrapper[data-available='false'] .sh-form__personal-data-checked-inbox {
	opacity: 0;
}
.sh-form__wrapper[data-available='true'] .sh-form__personal-data-checked-inbox {
	opacity: 1;
}
.sh-form__personal-data-text {
	margin: auto 0 auto 15px;
	font-size: 16px;
}
.sh-form__personals-data-link {
	text-decoration: underline;
}
.sh-form__personals-data-link:hover {
	cursor: pointer;
}
.sh-page__thx-wrapper {
	position: fixed;
	display: flex;
  justify-content: center;
  align-items: center;
	height: 100vh;
	width: 100%;
	pointer-events: none;
	transition: top .5s;
	z-index: -5;
}
.sh-page__thx-wrapper[data-thx-state='top'] {
	top: -110%;
}
.sh-page__thx-wrapper[data-thx-state='middle'] {
	transition-delay: 1s;
	top: 0%;
}
.sh-page__thx-wrapper[data-thx-state='bottom'] {
	top: 110%;
}
.sh-thx {}
.sh-thx__wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 555px;
	border-radius: 4px;
	box-shadow: 0px 15px 54px rgba(0, 0, 0, 0.75);
	background-color: #FFF;
	color: #5F5F5F;
	pointer-events: auto;
}
.sh-thx__close {
	position: absolute;
	top: 23px;
	right: 20px;
	height: 25px;
	width: 25px;
	background-image: url(../main_img/close-cross.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: .4;
	transition: .4s;
}
.sh-thx__close:hover {
	cursor: pointer;
	opacity: 1;
}
.sh-thx__text-1 {
	margin: 77px auto 24px;
	font-size: 40px;
	font-weight: 700;
	text-transform: uppercase;
}
.sh-thx__separator {
	height: 1px;
	width: 50%;
	margin: 0 auto;
	background-color: rgba(96, 96, 96, 0.2);
}
.sh-thx__separator_vertical {
	height: 50px;
	width: 1px;
	margin: auto 20px;
}
.sh-thx__text-container {
	display: flex;
	margin: 16px auto;
}
.sh-thx__text-2 {
	font-size: 53px;
	font-weight: 700;
	text-transform: uppercase;
}
.sh-thx__text-3 {
	font-size: 24px;
	font-weight: 700;
}
.sh-thx__button {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	width: 380px;
	margin: 50px auto 30px;
	box-shadow: inset 0px 0px 0px #74C17B, 0px 10px 36px rgba(0, 0, 0, 0.309726), 0px 3px 0px #74C17B;
	background-color: #83D98C;
	transition: .25s;
}
.sh-thx__button:hover {
	cursor: pointer;
	box-shadow: inset 0px 3px 0px #74C17B, 0px 0px 0px rgba(0, 0, 0, 0.309726), 0px 0px 0px #74C17B;
}
.sh-thx__button-text {
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	color: #FFF;
}
.sh-thx__social {
	display: flex;
	margin: auto 88px 30px auto;
}
.sh-thx__social-text {
	margin: auto 0;
	font-size: 20px;
	color: rgba(151, 151, 151, 0.8);
}
.sh-thx__social-icons {
	display: flex;
}
.sh-thx__social-icon-link {
	display: flex;
	margin-left: 25px;
}
.sh-thx__social-icon {
	height: 32px;
	width: 36px;
	fill: #979797;
	opacity: .35;
	transition: .25s;
}
.sh-thx__social-icon:hover {
	cursor: pointer;
	opacity: 1;
}
.sh-thx__social-icon_vk {}
.sh-thx__social-icon_youtube {}
.sh-thx__social-icon_instagram {
	width: 28px;
}

/*Conf policy*/
.sh-page__conf {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}
.sh-conf {}
.sh-conf__wrapper {
	display: flex;
	justify-content: center;
	align-items: baseline;
	height: 100vh;
	width: 100%;
	overflow-y: scroll;
	transition-delay: .25s;
	transition: .5s;
}
.sh-conf__wrapper:hover {
	cursor: pointer;
}
.sh-conf__wrapper[data-state-policy='closed'] {
	height: 0;
}
.sh-conf__wrapper[data-state-policy='opened'] {
	height: 100vh;
}
.sh-conf__content {
	position: relative;
	display: flex;
	flex-direction: column;
	height: auto;
	width: 80%;
	margin: 5vh 0 2.5vh;
	padding: 50px 40px;
	border: 1px solid #000;
	border-radius: 9px;
	background-color: #FFF;
	color: #303030;
}
.sh-conf__close {
	position: absolute;
	top: 8px;
	right: 8px;
	height: 25px;
	width: 25px;
	background-image: url(../main_img/close-cross.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: .4;
	transition: .4s;
}
.sh-conf__close:hover {
	cursor: pointer;
	opacity: 1;
}
.sh-conf__subtitle {
	margin: 18px 0 5px;
	font-size: 32px;
}
.sh-conf__subtitle_first {
	margin-top: 0;
}
.sh-conf__text {
	margin: 5px 0;
	font-size: 16px;
}
.sh-conf__list-title {
	margin: 10px 0 5px;
	font-size: 16px;
	font-weight: 700;
}
.sh-conf__list {
	list-style-position: inside;
}
.sh-conf__list-item {
	margin: 5px 0;
	font-size: 16px;
}

/*   P G N   */

#pgn {
	background-image: url(../main_img/section-bg.png);
}
#pgn .title-bg { width: auto; }
#pgn .title-bg > p { padding: 13px 30px; }
.pgn-items>div:nth-child(1)
.pgn-image { background-image: url(../main_img/pgn1.png); }
.pgn-items>div:nth-child(2)
.pgn-image { background-image: url(../main_img/pgn2.png); }
.pgn-items>div:nth-child(3)
.pgn-image { background-image: url(../main_img/pgn3.png); }
.pgn-item {
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 10px;
	box-shadow: 0 0 6px rgba(139,139,139,.2615);
	transition: .4s;
}
.pgn-item:hover {
	box-shadow: 0 10px 30px rgba(139,139,139,.2615);
}
.pgn-image {
	display: block;
	height: 311px;
	width: 249px;
	margin: 20px auto;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: .4s;
}
.pgn-image:hover { transform: scale(1.05); }
.pgn-chars {
	margin-left: 54px;
	font-weight: 700;
	color: #424242;
}
.pgn-chars>p:nth-child(1) {
	font-size: 22px;
	line-height: 25px;
}
.pgn-chars>p:nth-child(2) {
	margin: 5px 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 21px;
}
.pgn-chars>a {
	display: flex;
	font-size: 26px;
	font-weight: 500;
	line-height: 26px;
	outline: none;
	color: #424242;
}
.pgn-chars>a>svg { margin: auto 0; }
.pgn-chars>a>p {
	margin: auto 10px auto 0;
	font-size: 26px;
	font-weight: 700;
	line-height: 30px;
	text-shadow: 0 0px rgba(229,57,53,.58);
	transition: .2s ease-in-out;
}

.pgn-chars>a:hover>p,.pgn-chars>a.hover>p  {
	cursor: pointer;
	margin: auto 25px auto 0;
	text-shadow: 0 2px rgba(229,57,53,.58);
}
.more-button {
	color: #6C6C6C !important;
	margin:0 !important;
	padding: 0 10px;
	display: flex;
}
.pgn-button {
	height: 62px;
	width: 250px;
	margin: 21px auto 30px;
	background-color: #E53935;
	border-radius: 4px;
	font-size: 26px;
	font-weight: 700;
	line-height: 62px;
	text-align: center;
	text-transform: uppercase;
	transition: .4s;
	color: #fff;
}
.pgn-button:hover {
	cursor: pointer;
	background-color: #D32F2F;
}
.pgn-button-more {
	height: 62px;
	width: 250px;
	margin: 21px auto 30px;
	background-color: #DFDFDF;
	border-radius: 4px;
	font-size: 26px;
	font-weight: 700;
	line-height: 62px;
	text-align: center;
	text-transform: uppercase;
	transition: .4s;
	color: #fff;
}
.pgn-button-more:hover {
	cursor: pointer;
	background-color: #B9BBC1;
}


/*   P G   12   T   */

.pg12t-items>div:nth-child(1)
.pg12t-image { background-image: url(../main_img/pg12t1.png); }
.pg12t-items>div:nth-child(2)
.pg12t-image { background-image: url(../main_img/pg12t2.png); }
.pg12t-items>div:nth-child(3)
.pg12t-image { background-image: url(../main_img/pg12t3.png); }
.pg12t-items>div:nth-child(4)
.pg12t-image { background-image: url(../main_img/pg12t4.png); }
.pg12t-item {
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 10px;
	box-shadow: 0 0 6px rgba(139,139,139,.2615);
	transition: .4s;
}
.pg12t-item:hover {
	box-shadow: 0 10px 30px rgba(139,139,139,.2615);
}
.pg12t-image {
	display: block;
	height: 340px;
	width: 186px;
	margin: 0 auto 10px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: .4s;
}
.pg12t-image:hover { transform: scale(1.05); }
.pg12t-chars {
	margin-left: 29px;
	font-weight: 700;
	color: #424242;
}
.pg12t-chars>p:nth-child(1) {
	font-size: 22px;
	line-height: 25px;
}
.pg12t-chars>p:nth-child(2) {
	margin: 5px 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 21px;
}
.pg12t-chars>a {
	display: flex;
	font-size: 26px;
	font-weight: 500;
	line-height: 26px;
	outline: none;
	color: #424242;
}
.pg12t-chars>a>svg { margin: auto 0; }
.pg12t-chars>a>p {
	margin: auto 10px auto 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	text-shadow: 0 0px rgba(229,57,53,.58);
	transition: .2s ease-in-out;
}
.pg12t-chars>a:hover>p {
	cursor: pointer;
	margin: auto 25px auto 0;
	text-shadow: 0 2px rgba(229,57,53,.58);
}
.pg12t-button {
	height: 62px;
	width: 204px;
	margin: 21px auto 30px;
	background-color: #E53935;
	border-radius: 4px;
	font-size: 26px;
	font-weight: 700;
	line-height: 62px;
	text-align: center;
	text-transform: uppercase;
	transition: .4s;
	color: #fff;
}
.pg12t-button:hover {
	cursor: pointer;
	background-color: #D32F2F;
}
.pg12t-button-more {
	height: 62px;
	width: 204px;
	margin: 21px auto 30px;
	background-color: #DFDFDF;
	border-radius: 4px;
	font-size: 20px;
	font-weight: 700;
	line-height: 62px;
	text-align: center;
	text-transform: uppercase;
	transition: .4s;
	color: #fff;
}
.pg12t-button-more:hover {
	cursor: pointer;
	background-color: #B9BBC1;
}


/*   P G   20   T   */

#pg20t {
	background-image: url(../main_img/section-bg.png);
}
.pg20t-items>div:nth-child(1)
.pg20t-image { background-image: url(../main_img/pg20t1.png); }
.pg20t-items>div:nth-child(2)
.pg20t-image { background-image: url(../main_img/pg20t2.png); }
.pg20t-items>div:nth-child(3)
.pg20t-image { background-image: url(../main_img/pg20t3.png); }
.pg20t-items>div:nth-child(4)
.pg20t-image { background-image: url(../main_img/pg20t4.png); }
.pg20t-items>div:nth-child(5)
.pg20t-image { background-image: url(../main_img/pg20t5.png); }
.pg20t-items>div:nth-child(6)
.pg20t-image { background-image: url(../main_img/pg20t6.png); }
.pg20t-items>div:nth-child(1)>.pg20t-item,
.pg20t-items>div:nth-child(2)>.pg20t-item,
.pg20t-items>div:nth-child(3)>.pg20t-item {
	margin-bottom: 30px;
}
.pg20t-item {
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 10px;
	box-shadow: 0 0 6px rgba(139,139,139,.2615);
	transition: .4s;
}
.pg20t-item:hover {
	box-shadow: 0 10px 30px rgba(139,139,139,.2615);
}
.pg20t-image {
	display: block;
	height: 340px;
	width: 200px;
	margin: 8px auto 2px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: .4s;
}
.pg20t-image:hover { transform: scale(1.05); }
.pg20t-chars {
	margin-left: 54px;
	font-weight: 700;
	color: #424242;
}
.pg20t-chars>p:nth-child(1) {
	font-size: 22px;
	line-height: 25px;
}
.pg20t-chars>p:nth-child(2) {
	margin: 5px 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 21px;
}
.pg20t-chars>a {
	display: flex;
	font-size: 26px;
	font-weight: 500;
	line-height: 26px;
	outline: none;
	color: #424242;
}
.pg20t-chars>a>svg { margin: auto 0; }
.pg20t-chars>a>p {
	margin: auto 10px auto 0;
	font-size: 26px;
	font-weight: 700;
	line-height: 30px;
	text-shadow: 0 0px rgba(229,57,53,.58);
	transition: .2s ease-in-out;
}
.pg20t-chars>a:hover>p {
	cursor: pointer;
	margin: auto 25px auto 0;
	text-shadow: 0 2px rgba(229,57,53,.58);
}
.pg20t-button {
	height: 62px;
	width: 250px;
	margin: 21px auto 30px;
	background-color: #E53935;
	border-radius: 4px;
	font-size: 31px;
	font-weight: 700;
	line-height: 62px;
	text-align: center;
	text-transform: uppercase;
	transition: .4s;
	color: #fff;
}
.pg20t-button:hover {
	cursor: pointer;
	background-color: #D32F2F;
}
.pg20t-button-more {
	height: 62px;
	width: 204px;
	margin: 21px auto 30px;
	background-color: #DFDFDF;
	border-radius: 4px;
	font-size: 20px;
	font-weight: 700;
	line-height: 62px;
	text-align: center;
	text-transform: uppercase;
	transition: .4s;
	color: #fff;
}
.pg20t-button-more:hover {
	cursor: pointer;
	background-color: #B9BBC1;
}


/*   P G   30   T   */

.pg30t-items>div:nth-child(1)
.pg30t-image { background-image: url(../main_img/pg30t1.png); }
.pg30t-items>div:nth-child(2)
.pg30t-image { background-image: url(../main_img/pg30t2.png); }
.pg30t-items>div:nth-child(3)
.pg30t-image { background-image: url(../main_img/pg30t3.png); }
.pg30t-items>div:nth-child(4)
.pg30t-image { background-image: url(../main_img/pg30t4.png); }
.pg30t-item {
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 10px;
	box-shadow: 0 0 6px rgba(139,139,139,.2615);
	transition: .4s;
}
.pg30t-item:hover {
	box-shadow: 0 10px 30px rgba(139,139,139,.2615);
}
.pg30t-image {
	display: block;
	height: 330px;
	width: 200px;
	margin: 10px auto;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: .4s;
}
.pg30t-image:hover { transform: scale(1.05); }
.pg30t-chars {
	margin-left: 29px;
	font-weight: 700;
	color: #424242;
}
.pg30t-chars>p:nth-child(1) {
	font-size: 22px;
	line-height: 25px;
}
.pg30t-chars>p:nth-child(2) {
	margin: 5px 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 21px;
}
.pg30t-chars>a {
	display: flex;
	font-size: 26px;
	font-weight: 500;
	line-height: 26px;
	outline: none;
	color: #424242;
}
.pg30t-chars>a>svg { margin: auto 0; }
.pg30t-chars>a>p {
	margin: auto 10px auto 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	text-shadow: 0 0px rgba(229,57,53,.58);
	transition: .2s ease-in-out;
}
.pg30t-chars>a:hover>p {
	cursor: pointer;
	margin: auto 25px auto 0;
	text-shadow: 0 2px rgba(229,57,53,.58);
}
.pg30t-button {
	height: 62px;
	width: 204px;
	margin: 21px auto 30px;
	background-color: #E53935;
	border-radius: 4px;
	font-size: 31px;
	font-weight: 700;
	line-height: 62px;
	text-align: center;
	text-transform: uppercase;
	transition: .4s;
	color: #fff;
}
.pg30t-button:hover {
	cursor: pointer;
	background-color: #D32F2F;
}



/*   P G   4 0 - 5 0   T   */

#pg45t {
	background-image: url(../main_img/section-bg.png);
}
.pg45t-items>div:nth-child(1)
.pg45t-image { background-image: url(../main_img/pg45t1.png); }
.pg45t-items>div:nth-child(2)
.pg45t-image { background-image: url(../main_img/pg45t2.png); }
.pg45t-items>div:nth-child(3)
.pg45t-image { background-image: url(../main_img/pg45t3.png); }
.pg45t-items>div:nth-child(4)
.pg45t-image { background-image: url(../main_img/pg45t4.png); }
.pg45t-items>div:nth-child(1)>.pg45t-item,
.pg45t-items>div:nth-child(2)>.pg45t-item {
	margin-bottom: 30px;
}
.pg45t-item {
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 10px;
	box-shadow: 0 0 6px rgba(139,139,139,.2615);
	transition: .4s;
}
.pg45t-item:hover {
	box-shadow: 0 10px 30px rgba(139,139,139,.2615);
}
.pg45t-image {
	display: block;
	height: 330px;
	width: 250px;
	margin: 10px auto;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: .4s;
}
.pg45t-image:hover { transform: scale(1.05); }
.pg45t-chars {
	margin-left: 29px;
	font-weight: 700;
	color: #424242;
}
.pg45t-chars>p:nth-child(1) {
	font-size: 22px;
	line-height: 25px;
}
.pg45t-chars>p:nth-child(2) {
	margin: 5px 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 21px;
}
.pg45t-chars>a {
	display: flex;
	font-size: 26px;
	font-weight: 500;
	line-height: 26px;
	outline: none;
	color: #424242;
}
.pg45t-chars>a>svg { margin: auto 0; }
.pg45t-chars>a>p {
	margin: auto 10px auto 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	text-shadow: 0 0px rgba(229,57,53,.58);
	transition: .2s ease-in-out;
}
.pg45t-chars>a:hover>p {
	cursor: pointer;
	margin: auto 25px auto 0;
	text-shadow: 0 2px rgba(229,57,53,.58);
}
.pg45t-button {
	height: 62px;
	width: 204px;
	margin: 21px auto 30px;
	background-color: #E53935;
	border-radius: 4px;
	font-size: 31px;
	font-weight: 700;
	line-height: 62px;
	text-align: center;
	text-transform: uppercase;
	transition: .4s;
	color: #fff;
}
.pg45t-button:hover {
	cursor: pointer;
	background-color: #D32F2F;
}



/*   P G   1 0 0   T   */

#pg100t {}
.pg100t-item {
	display: flex;
	height: 342px;
	margin-top: 83px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 6px rgba(139,139,139,.2615);
	transition: .4s;
}
.pg100t-item:hover {
	box-shadow: 0 10px 30px rgba(139,139,139,.2615);
}
.pg100t-image {
	display: block;
	position: absolute;
	bottom: 0;
	left: 40px;
	height: 440px;
	width: 326px;
	background-image: url(../main_img/pg100t.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: .4s;
}
.pg100t-image:hover { transform: scale(1.05); }
.pg100t-content {
	margin: auto 0 auto 426px;
	font-weight: 700;
	color: #424242;
}
.pg100t-content>p:nth-child(1) {
	margin: 0 0 5px;
	font-size: 22px;
	line-height: 25px;
}
.pg100t-content>p:nth-child(2) {
	margin: 5px 0 18px;
	font-size: 18px;
	font-weight: 400;
	line-height: 21px;
}
.pg100t-content>a {
	display: flex;
	font-size: 26px;
	font-weight: 500;
	line-height: 26px;
	outline: none;
	color: #424242;
}
.pg100t-content>a>svg { margin: auto 0; }
.pg100t-content>a>p {
	margin: auto 10px auto 0;
	font-size: 26px;
	font-weight: 700;
	line-height: 30px;
	text-shadow: 0 0px rgba(229,57,53,.58);
	transition: .2s ease-in-out;
}
.pg100t-content>a:hover>p {
	cursor: pointer;
	margin: auto 25px auto 0;
	text-shadow: 0 2px rgba(229,57,53,.58);
}
.pg100t-button {
	height: 62px;
	width: 250px;
	margin: 27px 0 0;
	background-color: #E53935;
	border-radius: 4px;
	font-size: 31px;
	font-weight: 700;
	line-height: 62px;
	text-align: center;
	text-transform: uppercase;
	transition: .4s;
	color: #fff;
}
.pg100t-button:hover {
	cursor: pointer;
	background-color: #D32F2F;
}
.pg100t-button-more {
	height: 62px;
	width: 250px;
	margin: 27px 0 0;
	background-color: #DFDFDF;
	border-radius: 4px;
	font-size: 31px;
	font-weight: 700;
	line-height: 62px;
	text-align: center;
	text-transform: uppercase;
	transition: .4s;
	color: #fff;
}
.pg100t-button-more:hover {
	cursor: pointer;
	background-color: #B9BBC1;
}


/*   A B O U T   U S   */

#about-us {
	background-image: url(../main_img/section-bg.png);
}
.about-us-text>p:first-child {
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
	text-align: center;
	color: #111;
}
.about-us-text>p:last-child {
	width: 865px;
	margin: 10px auto 50px;
	font-size: 22px;
	line-height: 28px;
	text-align: center;
	color: #111;
}
.about-us-video {
	position: relative;
	width: 100%;
}
.about-us-video::before {
	content: "";
	display: block;
	padding-top: 56.25%;
}
.about-us-video iframe {
	position: absolute;
	top: 0;
}
.about-us-photos {
	display: flex;
	width: 100%;
	margin-top: 55px;
}
.about-us-photos>div:last-child {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.about-us-photos a {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	outline: none;
}
.au-photo-main {
	display: block;
	height: 490px;
	width: 490px;
	box-shadow: 0px 0px 0px #d13129, 0px 0px 0px #cdcdcd;
	transition: .5s;
}
.au-photo-main:hover {
	cursor: pointer;
	box-shadow: -8px -8px 0px #d13129, 13px 13px 0px #cdcdcd;
}
.au-photo-small {
	display: flex;
}
.au-photo {
	display: inline-block;
	height: 148px;
	width: 194px;
	margin-left: 23px;
	box-shadow: 0px 0px 0px #d13129, 0px 0px 0px #cdcdcd;
	transition: .3s;
}
.au-photo:hover {
	cursor: pointer;
	box-shadow: -8px -8px 0px #d13129, 13px 13px 0px #cdcdcd;
}



/*   R E V I E W S   */

.review {
	position: relative;
	width: 100%;
	margin-bottom: 30px;
}
.review::before {
	content: "";
	display: block;
	padding-top: 56.25%;
}
.review>iframe {
	position: absolute;
	top: 0;
	left: 0;
}
.reviews-content>div:nth-child(3)>.review { margin-bottom: 0; }
.reviews-content>div:nth-child(4)>.review{ margin-bottom: 0; }



/*   C O N T A C T S   */

#contacts {
	display: flex;
	justify-content: center;
	position: relative;
	height: 631px;
	width: 100%;
	margin: 93px 0 0;
	overflow: hidden;
}
#ymap {
	position: absolute;
	height: 631px;
	width: 100%;
}
.contacts-container {
	margin-top: auto;
	pointer-events: none;
}
.contacts-content {
	display: flex;
	flex-direction: column;
	height: 312px;
	width: 100%;
	padding-left: 70px;
	background-image: url(../main_img/footer-bg.jpg);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	border-radius: 10px 10px 0 0;
	color: #fff;
	pointer-events: all;
}
.contacts-content>p:nth-child(1) {
	margin: 36px 0 16px;
	font-size: 38px;
	font-weight: 700;
	line-height: 44px;
	text-transform: uppercase;
}
.contacts-content>p,
.contacts-content>a {
	font-size: 26px;
	font-weight: 700;
	line-height: 30px;
	color: #fff;
	outline: none;
}
.social-icons {
	display: flex;
	margin-top: 29px;
}
.social-icons a {
	font-size: 26px;
	line-height: 30px;
	color: #fff;
	outline: none;
	transition: .4s;
}
.social-icons a:hover { color: #E53935; }
.social-icons>a:nth-child(1) { margin-right: 27px; }
.social-icons>a:nth-child(2) { margin-right: 32px; }
.footer-mob-logo { display: none; }



/*   F O O T E R   */

footer {
	position: relative;
	width: 100%;
	background-image: url(../main_img/footer-bg.jpg);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	overflow: hidden;
}
.footer-content {
	display: flex;
	height: 123px;
}
.footer-logo {
	height: 41px;
	width: 263px;
	margin: auto 0;
	background-image: url(../main_img/menu-logo.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.footer-content>p {
	width: 333px;
	margin: 37px auto 44px 39px;
	font-size: 12px;
	font-weight: 700;
	line-height: 14px;
	color: #fff;
}
.footer-callback {
	display: flex;
	flex-direction: column;
	margin: auto 0 auto auto;
}
.footer-callback>a {
	font-size: 26px;
	font-weight: 700;
	line-height: 16px;
	text-align: right;
	color: #fcfcfc;
	outline: none;
}
.fc-button {
	height: 32px;
	width: 195px;
	margin-top: 15px;
	font-size: 18px;
	font-weight: 700;
	line-height: 32px;
	text-align: center;
	text-transform: uppercase;
	border-radius: 4px;
	border: 1px solid #fff;
	box-sizing: content-box;
	transition: .4s;
	color: #fff;
}
.fc-button:hover {
	cursor: pointer;
	background-color: #E53935;
}
.prpl-logo {
	position: absolute;
	top: 30px;
	right: -53px;
	height: 63px;
	width: 63px;
	border-radius: 5px;
	background-image: url(../main_img/prpl.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: .6s;
	z-index: 1;
	outline: none;
}
.prpl-logo:hover {
	cursor: pointer;
	right: 0px;
}



/*   C O M M O N   S T Y L E S   */

.title {
	display: flex;
	width: 100%;
	margin-bottom: 55px;
	font-size: 38px;
	font-weight: 700;
	line-height: 44px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
}
.title-bg {
	display: flex;
	width: 700px;
	margin: 0 auto;
	background-color: #E53935;
	transform: skewX(-25deg);
}
.title-bg>p {
	margin: auto;
	padding: 13px 0;
	transform: skewX(25deg);
}
.press-price {
	margin-bottom: 9px;
	font-size: 28px;
	font-weight: 700;
	line-height: 33px;
	color: #424242;
}
.press-price>span { font-size: 26px; }



/*   P O P U P   */


.popup {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	z-index: 100;
}
.popup-bg {
	position: absolute;
	height: 100vh;
	width: 100%;
	background-color: rgba(0,0,0,0.9);
	z-index: 6;
}
.popup-bg:hover { cursor: pointer; }
#popup-form {
	height: auto;
	width: 380px;
	margin: auto;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 50px;
	z-index: 7;
}
.form-title {
	display: flex;
	height: 60px;
	width: 100%;
	border-bottom: 1px solid #9e9e9f;
	font-size: 24px;
	text-transform: uppercase;
	color: #000;
}
.form-title p { margin: auto; }
.popup-hidden-title { display: none; }
.form-fields {
	height: auto;
	width: 100%;
	padding: 46px 30px 52px;
}
.field {
	position: relative;
	height: 58px;
	width: 100%;
	margin-bottom: 30px;
	color: #000;
}
.field input {
	height: 100%;
	width: 100%;
	padding: 0 15px;
	font-size: 24px;
	border: 1px solid #9e9e9f;
	border-radius: 15px;
}
.field-image {
	position: absolute;
	right: 12px;
	bottom: 12px;
	height: 37px;
	width: 37px;
	background-size: contain;
	background-position: 50%;
	background-repeat: no-repeat;
}
.form-button {
	height: 60px;
	width: 100%;
	background-color: #c91010;
	border: 1px solid #c91010;
	border-radius: 15px;
}
.form-button input {
	height: 60px;
	width: 100%;
	background-color: #c91010;
	border: 1px solid #c91010;
	border-radius: 15px;
	font-size: 24px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
}
.form-button input:hover { background-color: #c3000a; }


/*   T Y   */

.ty-block {
	display: none;
	position: absolute;
	top: 0;
	height: 100vh;
	width: 100%;
	opacity: 0;
	z-index: 100;
}
.ty-block-content {
	height: 400px;
	width: 600px;
	margin: auto;
	background-color: #fff;
	border-radius: 50px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	color: #383838;
}
.ty-block-content>p:nth-child(1) {
	margin: 95px 0 40px;
	font-size: 40px;
	line-height: 40px;
}
.ty-block-content>p:nth-child(2) {
	font-size: 26px;
	line-height: 28px;
}
.ty-image {
	height: 89px;
	width: 100px;
	margin: 34px auto 0;
	background-image: url(../other_img/ty-image.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}


/*animation*/
.material-ripple2 {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}
.material-ink {
	position: absolute;
	background: #ffffff;
	border-radius: 50%;
	-webkit-transform: scale(0);
	transform: scale(0);
	opacity: .4
}
@-webkit-keyframes mt-anim {
	0% {
			-webkit-transform: scale(0);
			transform: scale(0);
			opacity: .4
	}
	25% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: .4
	}
	50% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: .4
	}
	75% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: .4
	}
	100% {
		-webkit-transform: scale(2.5);
		transform: scale(2.5);
		opacity: 0
	}
}
@keyframes mt-anim {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: .4
	}
	25% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: .4
	}
	50% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: .4
	}
	75% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: .4
	}
	100% {
		-webkit-transform: scale(2.5);
		transform: scale(2.5);
		opacity: 0
	}
}
.material-ink.animate {
	-webkit-animation: mt-anim 2.4s linear infinite;
	animation: mt-anim 2.4s linear infinite;
}

/*Sale 5*/
.pgn-item,
.pg12t-item,
.pg20t-item,
.pg30t-item,
.pg45t-item,
.pg100t-item {
	position: relative;
}
.pgn-item::before,
.pg12t-item::before,
.pg20t-item::before,
.pg30t-item::before,
.pg45t-item::before,
.pg100t-item::before {
	content: '';
	position: absolute;
	top: -1px;
	right: -2px;
	height: 20%;
	width: 25%;
	border-radius: 0 10px 0 0;
	background-image: url(../main_img/svg/sale5.svg);
	background-size: contain;
	background-position: right top;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 1;
}