@font-face {
	font-family: "AvantGardeCTT";
	src: url("../fonts/avantgardectt.eot"); /* IE9 Compat Modes */
	src: url("../fonts/avantgardectt.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
		url("../fonts/avantgardectt.otf") format("opentype"), /* Open Type Font */
		url("../fonts/avantgardectt.svg") format("svg"), /* Legacy iOS */
		url("../fonts/avantgardectt.ttf") format("truetype"), /* Safari, Android, iOS */
		url("../fonts/avantgardectt.woff") format("woff"), /* Modern Browsers */
		url("../fonts/avantgardectt.woff2") format("woff2"); /* Modern Browsers */
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "AvantGardeCTT Bold";
	src: url("../fonts/avantgardectt-bold.eot"); /* IE9 Compat Modes */
	src: url("../fonts/avantgardectt-bold.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
		url("../fonts/avantgardectt-bold.otf") format("opentype"), /* Open Type Font */
		url("../fonts/avantgardectt-bold.svg") format("svg"), /* Legacy iOS */
		url("../fonts/avantgardectt-bold.ttf") format("truetype"), /* Safari, Android, iOS */
		url("../fonts/avantgardectt-bold.woff") format("woff"), /* Modern Browsers */
		url("../fonts/avantgardectt-bold.woff2") format("woff2"); /* Modern Browsers */
	font-weight: normal;
	font-style: normal;
}

body {
	background: #fff;
	font-family: "AvantGardeCTT", sans-serif;
	font-size: 16px;
	line-height: 1.25;
	color: 3b3a3b;
}
strong {
	font-weight: normal;
	font-family: "AvantGardeCTT Bold", sans-serif;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
#callback-wrapper-mediaguru {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	z-index: 1000;
	display: none;
}
.callback-wrapper-mediaguru-btns {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-content: center;
	height: 60px;
}
#callback-wrapper-mediaguru .callback-item {
	width: 50%;
	border-right: 1px solid #fff;
	background: #41c352;
}
#callback-wrapper-mediaguru .callback-item:hover {
	background: #3bc04d;
}
#callback-wrapper-mediaguru .callback-item:last-child {
	border-right: none;
}
#callback-wrapper-mediaguru .callback-item a {
	font-weight: 500;
	color: #fff;
	text-align: left;
	text-decoration: none;
	letter-spacing: 0.03em;
	width: 100%;
	height: 60px;
	padding: 0 0 0 44px;
	display: flex;
	align-items: center;
}
#callback-wrapper-mediaguru .callback-item.whatsapp a {
	background: url(../img/whatsapp.svg) 12px 50% no-repeat;
}
#callback-wrapper-mediaguru .callback-item.callb a {
	background: url(../img/phone.svg) 12px 50% no-repeat;
}
#callback-wrapper-mediaguru .callback-item.telegram a {
	background: url(../img/telegram.svg) 12px 50% no-repeat;
}
#callback-wrapper-mediaguru .callback-item.whatsapp a:hover {
	color: #fff;
	text-decoration: none;
	background: url(../img/whatsapp.svg) 18px 50% no-repeat #3bc04d;
}
#callback-wrapper-mediaguru .callback-item.callb a:hover {
	color: #fff;
	text-decoration: none;
	background: url(../img/phone.svg) 18px 50% no-repeat #3bc04d;
}

@media (max-width: 480px){
	body {
		padding-bottom: 60px;
	}
	#callback-wrapper-mediaguru{
		display: block;
	}
}

a {
	color: #cf1526;
	text-decoration: none;
	transition: 0.5s;
}
a:hover {
	color: #cf1526;
}
.logo {
	max-height: 70px;
}
.header {
	padding: 0;
	background: #fff;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 13;
}
.descriptor {
	font-size: 15px;
	line-height: 1.29;
	padding-left: 20px;
}

.phones a {
	display: block;
	white-space: nowrap;
	text-decoration: none;
	font-family: "AvantGardeCTT Bold", sans-serif;
	color: #3b3a3b;
	font-size: 21px;
}
a.button {
	display: inline-block;
	padding: 10px 15px;
	text-decoration: none;
	text-align: center;
	transition: 0.5s;
	border: 1px solid #cf1526;
	font-size: 14px;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
}
.header a.button {
	border: 1px solid #f9cfd3;
	margin-left: 20px;
}
a.button:hover {
	background: #cf1526;
	text-decoration: none;
	color: #fff;
	border-color: #cf1526;
}
a.button .top {
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, transparent, #cf1526);
  opacity: 1;
  position: absolute;
  top: 0;
  right: -100%;
  animation-name: topBtn;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: forward;
}
a.button .right {
  width: 1px;
  height: 100%;
  opacity: 1;
  background: linear-gradient(to top, transparent, #cf1526);
  position: absolute;
  bottom: -100%;
  right: 0;
  animation-name: rightBtn;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: forward;
  animation-delay: 2.25s;
}
a.button .bottom {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #cf1526);
  opacity: 1;
  position: absolute;
  bottom: 0;
  left: -100%;
  animation-name: bottomBtn;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: forward;
  animation-delay: 1.5s;
}
a.button .left {
  width: 1px;
  height: 100%;
  opacity: 1;
  background: linear-gradient(to bottom, transparent, #cf1526);
  position: absolute;
  top: -100%;
  left: 0;
  animation-name: leftBtn;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: forward;
  animation-delay: 0.75s;
}
@keyframes topBtn {
    0% {
        right: -100%;
    }

    50%,
    100% {
        right: 100%;
    }

}

@keyframes leftBtn {
    0% {
        top: -100%;
    }

    50%,
    100% {
        top: 100%;
    }
}

@keyframes bottomBtn {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

@keyframes rightBtn {
    0% {
        bottom: -100%;
    }

    50%,
    100% {
        bottom: 100%;
    }
}

.footer {
	background: #cf1526;
	color: #fff;
	padding: 20px 0;
}
.footer .phones a {
	color: #fff;
}
.footer .button {
	background: #000;
	color: #fff;
	margin-left: 20px;
}
.footer .button:hover {
	border-color: #fff;
}
.topmenu {
	background: rgba(0,0,0,0.8);
	/*
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	*/
}
.topmenu ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: space-between;
}
.topmenu ul ul {
	display: block;
}
.topmenu li a {
	color: #fff;
	display: block;
	text-transform: uppercase;
	padding: 10px 0;
}
.topmenu li li a {
	color: #fff;
	display: block;
	text-transform: none;
	padding: 6px 0 6px 30px;
	position: relative;
	font-size: 15px;
}
.topmenu li li a::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	width: 20px;
	height: 1px;
	background: #fff;
}
.topmenu .current_page_parent > a, .topmenu .current_page_item a, .topmenu a:hover {
	color: #cf1526;
}

.burger {
	display: flex;
	width: 24px;
	height: 18px;
	padding: 0;
	position: relative;
	flex-direction: column;
	justify-content: space-between;
	z-index: 99;
	margin-left: 15px;
}
.burger span {
	display: block;
	height: 2px;
	background: #3b3a3b;
	transition: 0.5s;
	position: relative;
}
.inv .burger span {
	background: #fff;
}
.burger.active span:first-child {
	transform: rotate(45deg);
	top: 8px;
}
.burger.active span:last-child {
	transform: rotate(-45deg);
	bottom: 8px;
}
.burger.active span:nth-child(2) {
	opacity: 0;
}

h1 {
	font-family: "AvantGardeCTT", sans-serif;
	font-size: 36px;
	margin-bottom: 20px;
}
h1 span {
	color: #14467C;
}
h2 {
	font-weight: 700;
	font-size: 24px;
	line-height: 1.17;
}
.blocktitle {
	font-family: "AvantGardeCTT", sans-serif;
	text-align: center;
	margin-bottom: 60px;
	font-size: 32px;
	color: #cf1526;
}
.blocksubtitle {
	font-family: "AvantGardeCTT Bold", sans-serif;
	text-align: center;
	margin-top: -40px;
	margin-bottom: 60px;
	font-size: 21px;
}
input[type="text"], input[type="tel"] {
	display: block;
	width: 100%;
	margin: 0 auto 15px auto;
	padding: 12px 16px;
	background: #FFFFFF;
	border: 1px solid #3b3a3b;
	font-family: "AvantGardeCTT", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	outline: none;
}
select {
	display: block;
	width: 100%;
	margin: 0 auto 15px auto;
	padding: 12px 16px;
	background: #FFFFFF;
	border: 1px solid #444;
	font-family: "AvantGardeCTT", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
button[type="submit"] {
	display: block;
	width: 100%;
	margin: 0 auto 15px auto; 
	font-family: "AvantGardeCTT", sans-serif;
	font-style: normal;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	outline: none;
	background: #cf1526;
	padding: 12px 10px;
	border: 1px solid ;
	white-space: nowrap;
	cursor: pointer;
	transition: 0.5s;
	text-transform: uppercase;
}
button[type="submit"]:hover {
	background: #fff;
	color: #cf1526;
}
.section {
	padding: 80px 0;
}
.section.contacts {
	padding: 60px 0 0 0;
	position: relative;
	min-height: 50vh;
}
.section.contacts .container {
	position: relative;
	z-index: 2;
}
.map {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.map iframe {
	height: 100%;
}
.contacts .addr {
	background: #fff;
	box-shadow: 0px 6px 31px rgba(0, 0, 0, 0.07);
	top: 30px;
	left: 30px;
	padding: 20px;
	z-index: 2;
	width: 340px;
	max-width: 100%;
}
.contacts .blocktitle {
	font-size: 24px;
	text-align: left;
	margin-bottom: 20px;
}
.company-address {
	margin-bottom: 15px;
	background: url(../img/pin.png) 0 5px no-repeat;
	background-size: 20px;
	padding-left: 30px;
}
.company-phone {
	margin-bottom: 15px;
	font-family: "AvantGardeCTT Bold", sans-serif;
	font-size: 18px;
}
.company-email {
	margin-bottom: 0;
}
.company-phone a, .company-email a {
	text-decoration: none;
	color: #3b3a3b;
	display: inline-block;
	padding-left: 30px;
}
.company-phone a, .company-email a {
	background: url(../img/phone.png) 0 0 no-repeat;
	background-size: 16px;
}
.company-email a {
	background: url(../img/email.png) 0 0 no-repeat;
	background-size: 16px;
}
.company-phone a:hover, .company-email a:hover {
	text-decoration: none;
	color: #cf1526;
}
.form-container {
	background: #FFFFFF;
	box-shadow: 0px 6px 31px rgba(0, 0, 0, 0.07);
	padding: 15px 20px 5px 20px;
}
.formtitle {
	font-size: 21px;
	margin-bottom: 15px;
	font-family: "AvantGardeCTT Bold", sans-serif;
	color: #cf1526;
}
.popup .formtitle {
	text-align: center
}
.formtitle img {
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: top;
}
.formtitle a {
	color: #14467C;
}
.form-row {
	display: flex;
	margin: 0 -8px;
}
.form-row > div {
	padding: 0 8px;
	width: 33.33%;
}

.first-screen {
	position: relative;
	padding: 150px 0;
	min-height: 60vh;
	display: flex;
	agling-items: center;
}
.first-screen .container {
	position: relative;
	z-index: 3;
}
.first-screen::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.6);
	background: linear-gradient(90deg, rgba(0,0,0,0.7) 26%, rgba(0,0,0,0) 100%);
	position: absolute;
	z-index: 2;
}
.first-screen h1 {
	color: #fff;
	margin-bottom: 45px;
}
.first-screen ul {
	list-style: none;
	margin: 0 0 30px 0;
	padding: 0;
}
.first-screen li {
	margin-bottom: 12px;
	padding: 0 0 0 28px;
	background: url(../img/check.png) 0 0 no-repeat;
	color: #fff;
	font-size: 18px;
}
.first-screen .bg, .first-screen .bg2 {
	content:'';
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background: url(../img/fsbg.jpg) 100% 100% no-repeat;
	background-size: cover;
	position: absolute;
	background-position: 50% 50%
}
.first-screen .bg2 {
	display: none;
}
.directions-item {
	background: #FFFFFF;
	border: 1px solid #E7E7E8;
	padding: 15px;
	transition: 0.5s;
	text-align: center;
	font-size: 21px;
	line-height: 1.22;
	height: 100%;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.directions-item:hover {
	box-shadow: 0px 6px 31px rgba(0, 0, 0, 0.15);
}
.directions-item a {
	color: #3b3a3b;
	
}
.directions .button {
	margin-top: 15px;
	color: #fff;
	background: #cf1526;
	font-family: "AvantGardeCTT", sans-serif;
}
.directions .button:hover {
	background: #3b3a3b;
	border-color: #3b3a3b;
}
.directions-item img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 15px auto;
}
.gruzy .directions-item img {
	max-width: 100%;
	height: auto;
	margin: 0 auto 10px auto;
}
.directions-item a {
	transition: 0.5s;
	display: block;
}
.serv-name {
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.serv-desc {
	text-transform: none;
	text-align: left;
	font-size: 15px;
	line-height: 1.4;
	padding-top: 15px;
}
.serv-desc p {
	margin: 0;
}
.forms form {
	padding-top: 20px;
}
.forms button[type="submit"] {
	margin: 0;
}
.transport-item {
	background: #FFFFFF;
	border: 1px solid #E7E7E8;
	border-radius: 8px;
	padding: 20px;
	transition: 0.5s;
	text-align: center;
	font-weight: 600;
	height: 100%;
	
	
}

.transport-item p {
	font-weight: normal;
}
.forms .transport-item {
	text-align: left;
}
.forms .transport-item.text-center {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.forms.auto .transport-item {
	font-size: 14px;
	white-space: nowrap;
}
.transport-item:hover {
	box-shadow: 0px 6px 31px rgba(0, 0, 0, 0.15);
}
.transport-item img {
	display: block;
	max-width: 80px;
	height: auto;
	margin: 0 auto 16px auto;
}
.forms .transport-item img {
	margin: 0 0 16px 0;
}
.forms .transport-item.text-center img {
	margin: 0 auto 16px auto;
}
.transport-item a {
	transition: 0.5s;
	display: block;
	height: 100%;
}
.transport-item a:hover {
	color: #14467C;
}
.benefits {
	background: #F6F6F6;
	text-align: center;
	padding: 80px 0 80px;
}
.benefits .blocktitle {
	color: #3b3a3b;
}
.benefit-item {
	background: #fff;
	aspect-ratio: 1/1;
	border-radius: 50%;
	padding: 20px;
	display: flex;
	justify-content: center;
	agling-items: center;
	flex-direction: column;
	font-size: 16px;
	transition: .5s;
	cursor: default;
	position: relative;
	z-index: 1;
}
.benefit-item:hover {
	
}
.benefit-item-pre {
	padding: 5px;
	position: relative;
	background-image: linear-gradient(0deg, transparent 50%, white 50%), linear-gradient(270deg, white 50%, transparent 50%);
	border-radius: 50%;
	background-color: #cf1526;
	border: 2px solid #fff;
	transition: 0.5s;
}

.benefit-item-pre .dildo {
	position: absolute;
	z-index: 5;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.benefit-item-pre .dildo::before {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background: #fff;
	border: 4px solid #cf1526;
	border-radius: 50%;
	left: 50%;
	margin-left: -6px;
	position: absolute;
	top: -4px;
}

.benefit-item-pre.b1, .benefit-item-pre.b4 {
	background-image: linear-gradient(-90deg, transparent 50%, white 50%), linear-gradient(-45deg, white 50%, transparent 50%);
}
.benefit-item-pre.b2 {
	background-image: linear-gradient(210deg, transparent 50%, #cf1526 50%), linear-gradient(90deg, white 50%, transparent 50%);
}
.benefit-item-pre.b3 {
	background-image: linear-gradient(-90deg, transparent 50%, white 50%), linear-gradient(75deg, white 50%, transparent 50%);
}
.benefit-item-pre.b5 {
	background-image: linear-gradient(-90deg, transparent 50%, white 50%), linear-gradient(30deg, white 50%, transparent 50%);
}
.benefit-item-pre.b1 .dildo, .benefit-item-pre.b4 .dildo {
	transform: rotate(45deg);
}
.benefit-item-pre.b2 .dildo {
	transform: rotate(300deg);
}
.benefit-item-pre.b3 .dildo {
	transform: rotate(165deg);
}
.benefit-item-pre.b5 .dildo {
	transform: rotate(120deg);
}



.benefit-item-pre:hover {
	box-shadow: 0px 6px 31px rgba(0, 0, 0, 0.15);
}
.benefits strong {
	display: block;
	font-size: 32px;
	line-height: 1.06;
	color: #cf1526;
	margin-bottom: 5px;
}
.whywe {
	background: #cf1526;
	color: #fff;
	padding-top: 80px;
}
.whywe .blocktitle {
	color: #fff;
}
.whywe-item-desc {
	opacity: 0.75;
	transition: 0.5;
	cursor: default;
}
.whywe strong {
	display: block;
	text-transform: uppercase;
	font-size: 18px;
	position: relative;
	padding-bottom: 20px;
}
.whywe strong:after {
	content: '';
	display: block;
	width: 90px;
	height: 1px;
	position: absolute;
	bottom: 10px;
	left: 0;
	background: #fff;
	
}
.whywe img {
	max-width: 64px;
	margin-bottom: 10px;
	opacity: 0.75;
	transition: 0.5s;
}
.whywe .row > div:hover .whywe-item-desc, .whywe .row > div:hover img {
	opacity: 1;
}
.leadform2 {
	padding: 120px 0 100px;
}
.leadform2 .form-row > div {
	width: auto;
	min-width: 33.33%;
}
.leadform2 button[type="submit"] {
	padding: 12px;
}
.leadform2 hr {
	background: #D9D9D9;
	height: 9px;
	border: none;
	width: 100%;
	margin: 0;
	position: relative;
	top: 35px;
}

.questions {
	background: #f9f9f9;
	padding: 140px 0;
}
.leadform2 .formtitle, .questions .formtitle {
	color: #3b3a3b;
	font-size: 32px;
}
.questions .formtitle span {
	color: #cf1526;
	font-family: 'AvantGardeCTT', sans-serif;
}
.questions .form-row {
	flex-wrap: wrap;
}

.honor {
	background: #f6f6f6;
}
.honor-carousel {
	position: relative;
}
.honor-carousel img {
	display: block;
	border: 1px solid #ddd;
}
.honor .owl-item > div {
	padding: 15px;
	border: 1px solid #ddd;
	background: #fff;
	transition: .5s;
}
.honor .owl-item:hover {
	border-color: #cf1526;
}
.owl-dots {
	display: flex;
	justify-content: center;
	padding-top: 20px;
}
.owl-dots .owl-dot {
	display: block;
	outline: none;
	width: 10px;
	height: 10px;
	background: #E7E7E8 !important;
	border: none;
	margin: 0 5px;
	transition: 0.5s;
}
.owl-dots .owl-dot.active {
	background: #cf1526 !important;
}
.owl-nav .owl-prev, .owl-nav .owl-next {
	position: absolute;
	width: 36px;
	height: 36px;
	background: #cf1526 !important;
	top: 50%;
	margin-top: -24px;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
}
.honor .owl-nav .owl-prev, .honor .owl-nav .owl-next {
	margin-top: -60px;
}
.owl-nav .owl-prev {
	left: -60px;
}
.owl-nav .owl-next {
	right: -60px;
}

.owl-nav .owl-prev.disabled, .owl-nav .owl-next.disabled {
	opacity: 0.25;
	cursor: default;
}
.clients-item {
	padding: 20px;
	text-align: center;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.clients-carousel.owl-carousel .owl-item img {
	width: auto;
	max-height: 75px;
}
.leadform3 {
	background: #F6F6F6;
}
.leadform3 .form-row > div {
	width: auto;
}
.leadform3 button[type="submit"] {
	padding: 12px;
}
.reviews img {
	display: block;
	border: 1px solid #E7E7E8;
	border-radius: 8px;
	transition: 0.5s;
}
.reviews img:hover {
	filter: drop-shadow(0px 6px 31px rgba(0, 0, 0, 0.07));
}
.howwork {
	border-top: 1px solid #3b3a3b;
}
.howwork .vidtitle {
	font-weight: 700;
	font-size: 18px;
	line-height: 1.22;
	margin-bottom: 24px;
}
.howwork ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.howwork li {
	margin: 0 0 10px 0;
}
.step-item {
	background: url(../img/dashh.svg) 90% 30px no-repeat;
}
.howwork li:last-child .step-item {
	background: none;
}
.howwork .stepnem {
	width: 80px;
	max-width: 80px;
	min-width: 80px;
	margin-right: 15px;
	color: #fff;
	background: #cf1526;
	padding: 10px;
	position: relative;
	display: flex;
}
.howwork .stepnem span {
	font-family: "AvantGardeCTT Bold", sans-serif;
	font-size: 12px;
	position: absolute;
	top: -5px;
	left: -5px;
	background: #3b3a3b;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.howwork .stepinfo {
	font-size: 14px;
	line-height: 1.4;
}
.howwork .stepinfo strong {
	display: block;
	margin-bottom: 8px;
	font-size: 18px;
	line-height: 1.22;
}
.popup, .success {
	max-width: 400px;
	padding: 20px;
}
.popup .row {
	margin: 0;
}
.popup .row > div {
	width: 100%;
	padding: 0;
}
.footer .rc {
	justify-content: end;
	display: flex;
	align-items: center;
}
.mobile {
	display: none;
}
.shema {
	background: #F6F6F6;
	padding: 30px 0;
	margin-top: -20px;
}
.uslugi-include {
	padding-bottom: 0;
}
.uslugi-include .blocktitle {
	text-align: left;
}
.serv-include-item {
	padding: 20px;
	border-radius: 0 8px 8px 8px;
	background: url(../img/check-circle.png) 100% 0 no-repeat #F6F6F6;
	margin-bottom: 24px;
}
.mappoints {
	position: relative;
}
.mappoints .pic {
	position: relative;
	z-index: 1;
}
.mappoints .pic img {
	margin: 0 auto;
}
.mappoints .region {
	position: absolute;
	z-index: 2;
	width: 100%;
	max-width: 352px;
	background: #FFFFFF;
	box-shadow: 0px 6px 31px rgba(0, 0, 0, 0.07);
	border-radius: 0px 8px 8px 8px;
	padding: 16px;
}
.mappoints .region.re1 {
	bottom: 40px;
	left: 0;
}
.mappoints.turk .region.re1 {
  bottom: auto;
  top: 0;
  left: 0;
}
.mappoints.rus .region.re1 {
  bottom: auto;
  top: 0;
  left: 0;
}
.mappoints .region.re2 {
	top: 0;
	right: 0;
}
.mappoints.turk .region.re2 {
	top: auto;
	bottom: -40px;
	right: 0;
}
.mappoints.rus .region.re2 {
	top: auto;
	bottom: 0;
	right: 0;
}
.mappoints .region-pre {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #414042;
	margin-bottom: 6px;
}
.mappoints .region-text {
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	color: #17171A;
}
.mappoints .region-title {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.25;
	color: #17171A;
	margin-bottom: 12px;
}
.mappoints .region-title img {
	max-width: 24px;
	margin-right: 8px;
}
.success {
	text-align: center;
	width: 300px;
	max-width: 100%;
}
.success img {
	margin: 0 auto 15px auto;
}


.section.calculator {
	padding: 77px 0;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: contain;
}
.calcbody {
	border-radius: 8px;
	background: #fff;
	box-shadow: 0px 6px 31px 0px rgba(0, 0, 0, 0.07);
	padding: 20px;
}
.calcdesc {
	font-size: 13.5px;
}
.calcdesc p {
	margin-bottom: 8px;
}
.calcdesc ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
}
.calcdesc a {
	color: #0097BE;
}
.calcdesc a:hover {
	text-decoration: underline;
}
.calculator select {
	background: url(../img/icon-map-pin.png) 10px 50% no-repeat #fff;
	padding-left: 44px;
}
.radio {
	margin-right: 20px;
}
.radio input {
	display: none;
}
.radio label {
	line-height: 24px;
	display: inline-block;
	margin-bottom: 20px;
	cursor: pointer;
	padding-left: 32px;
	background: url(../img/radio-button.svg) 0 0 no-repeat;
}
.radio input:checked + label {
	background: url(../img/radio-button-checked.svg) 0 0 no-repeat;
}
.label {
	margin-bottom: 10px;
	display: block;
}
.calcform .result span {
	display: block;
	margin-bottom: 16px;
	text-align: center;
	font-weight: bold;
}
.calcform .result span.r {
	color: #f30000;
}
@media (min-width: 1440px){
	.play-button {
		right: -140px; 
	}
}
@media (min-width: 1300px) and (max-width: 1599px){
	.first-screen {
		padding: 75px 0;
	}
}
@media (min-width: 1200px) and (max-width: 1439px){
	.play-button {
		right: -60px; 
		bottom: -60px;
	}
}
@media (max-width: 1360px){
	.first-screen.mainpage .bg, .first-screen.avto .bg {
		background-size: cover;
	}
	.first-screen.mainpage, .first-screen.avto {
		height: auto;
	}
}
@media (min-width: 991px) and (max-width: 1299px){
	.first-screen {
		padding: 45px 0;
	}
	.first-screen .form-row > div {
		width: auto;
	}
	.benefits strong {
		font-size: 53px;
	}
	.owl-nav .owl-prev {
		left: -18px;
	}
	.owl-nav .owl-next {
		right: -18px;
	}
	.section.calculator {
		background-size: cover;
	}

}

@media (min-width: 768px) and (max-width: 991px){
	.first-screen {
		padding: 40px 0 24px;
	}
	.first-screen .form-row > div {
		width: auto;
	}
	.section {
		padding: 40px 0 16px 0;
	}
	.transport-item {
		padding: 16px;
		font-size: 14px;
	}
	.benefits strong {
		font-size: 46px;
		white-space: nowrap;
	}
	.whywe li {
		font-size: 14px;
		background-size: 18px;
	}
	
}
@media (max-width: 767px){
	body {
		font-size: 14px;
		line-height: 1.29;
	}
	.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{
		padding-right:8px;
		padding-left:8px
	}
	.row{
		margin-right:-8px;margin-left:-8px
	}
	.header .descriptor, .header .phones {
		display: none;
	}
	a.button {
		padding: 11px 16px;
	}
	.header {
		position: static;
	}
	.logo {
		margin-left: -15px;
	}
	.header a.button {
		padding: 5px 15px;
	}
	.topmenu ul {
		flex-direction: column;
	}
	.first-screen {
		padding: 16px 0 0 0;
	}
	.first-screen::after {
		background: rgba(0,0,0,0.6);
		background: linear-gradient(90deg, rgba(0,0,0,0.7) 35%, rgba(0,0,0,0.15) 100%);
	}
	h1 {
		font-size: 20px;
		line-height: 1.2;
		margin-bottom: 16px;
	}
	.first-screen ul {
		margin-bottom: 20px;
	}
	.first-screen li {
		background-size: 16px 16px;
		padding-left: 24px;
		margin-bottom: 10px;
		font-size: 15px;
	}
	.form-container {
		padding: 16px 16px 1px 16px;
	}
	.formtitle {
		font-size: 16px;
		line-height: 1.25;
		margin-bottom: 16px;
	}
	.form-row {
		flex-wrap: wrap;
	}
	.form-row > div {
		width: 100%;
	}
	input[type="text"], input[type="tel"] {
		padding: 11px 16px;
		font-size: 14px;
		line-height: 1.29;
	}
	button[type="submit"] {
		font-size: 14px;
		line-height: 1.29;
	}
	.first-screen .bg {
		display: none;
	}
	.section {
		padding: 60px 0 45px 0;
	}
	h2 {
		font-size: 18px;
	}
	.blocktitle {
		margin-bottom: 40px;
	}
	.mb-4 {
		margin-bottom: 16px !important;
	}
	.directions-item {
		font-size: 17px;
	}
	.gruzy .directions-item {
		padding: 12px;
	}
	.directions-item img {
		margin: 0 auto 15px auto;
	}
	.gruzy .directions-item img {
		width: auto;
		max-width: 100%;
		height: auto;
		margin: 0 auto 10px auto;
	}
	.transport-item {
		padding: 14px;
	}
	.transport-item img {
		width: 48px;
		height: 48px;
		margin: 0 auto 16px auto;
	}
	.benefits {
		overflow: hidden;
	}
	.benefit-item-pre {
		box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
	}
	.benefits strong {
		font-size: 48px;
		line-height: 1.08;
	}
	.benefits .mb-4 {
		margin-bottom: 30px !important;
	}
	.whywe li {
		background-size: 18px 18px;
		margin-bottom: 16px;
	}
	.leadform2 hr {
		display: none;
	}
	
	.leadform2 .form-row > div, .leadform3 .form-row > div {
		width: 100%;
	}
	.clients-item {
		padding: 16px;
	}
	.reviews-carousel .owl-item {
		width: 145px !important;
	}
	.howwork .blocktitle {
		text-align: center;
	}
	.howwork .stepnem {
		font-size: 36px;
		margin-right: auto;
		margin-left: auto;
	}
	.howwork .stepinfo {
		padding-bottom: 30px;
		background: url(../img/dash.svg) 50% 100% no-repeat;
		text-align: center;
	}
	.howwork li:last-child .stepinfo {
		padding-bottom: 0;
		background: url(../img/dash.svg) 50% 100% no-repeat;
	}
	
	.step-item {
		background: none;
	}
	.howwork .stepinfo strong {
		font-size: 14px;
		line-height: 1.29;
		margin-bottom: 6px;
	}
	.howwork .vidtitle {
		margin-bottom: 20px;
	}
	.questions {
		padding-top: 24px;
	}
	.questions .row {
		flex-direction: column-reverse;
	}
	.questions .form-container {
		margin-top: 0;
	}
	.questions img {
		max-width: 230px;
		margin-top: 16px;
	}
	.map .addr {
		left: 20px;
		top: 20px;
		width: auto;
	}
	.footer {
		padding: 40px 0;
	}
	.footer .descriptor {
		margin: 12px 0 !important;
		font-weight: 400;
	}
	.phones {
		margin-top: 34px;
		font-size: 16px;
		line-height: 1.25;
		margin-bottom: 24px;
	}
	.footer .phones {
		margin-top: 12px;
	}
	.footer a.button {
		display: block;
		width: 100%;
	}
	.footer .rc {
		display: block;
	}
	.mobile {
		display: block;
	}
	.car {
		margin-bottom: 16px;
		display: flex;
		justify-content: end;
		margin-right: -8px;
		margin-left: -8px;
	}
	.map {
		position: static;
		height: 400px;
	}
	.section.contacts {
		padding-top: 0;
		min-height: 75vh;
	}
	.contacts .addr {
		width: 100%;
	}
	.mainpage .car, .avto .car {
		display: none;
	}
	.first-screen.mainpage .bg2, .first-screen.avto .bg2 {
		display: block;
		background-size: cover;
	}
	.car img {
		width: 100%;
		max-width: 100%;
	}
	.copy {
		display: none;
	}
	.shema {
		padding: 5px 0;
		margin-top: -10px;
	}
	.serv-include-item {
		margin-bottom: 16px;
	}
	.mappoints {
		padding: 240px 0 190px 0;
	}
	.mappoints.turk {
		padding: 150px 0 170px 0;
	}
	.mappoints.rus {
		padding: 150px 0 180px 0;
	}
	.mappoints .region {
		padding: 12px;
	}
	.mappoints .region.re1 {
		top: 0;
		bottom: auto;
	}
	.mappoints .region.re2 {
		bottom: 0;
		top: auto;
	}
	.mappoints.turk .region.re2 {
		bottom: -15px;;
	}
	.play-icon {
		justify-content: center;
	}
	.play-icon img {
		width: 32px;
		height: 32px;
	}
	.play-icon span:before, .play-icon span:after {
		width: 30px;
		height: 30px;
		margin-top: -15px;
		margin-left: -15px;
	}
	.first-screen.mainpage, .first-screen.avto {
		padding-top: 76px;
		height: auto;
		padding-bottom: 100px;
	}
	.first-screen.mainpage .form-container, .first-screen.avto .form-container {
		margin-bottom: 20px
	}
	.play-button  {
		right: 50%;
		margin-right: -70px;
		bottom: -140px;
	}
	.section.calculator {
		padding: 40px 0;
		background-size: cover;
	}
	.radio label {
		margin-bottom: 16px;
	}
	.calcdesc ul {
		display: block;
	}
	.calcdesc ul li {
		margin-bottom: 10px;
	}
	.calcdesc p {
		margin-bottom: 8px;
	}
}


.mobtel2 {
	position: fixed;
	bottom: 10px;
	z-index: 3;
	padding: 0 10px;
	width: 100%;
	left: 0;
	display: none;
}
@media (max-width: 567px) {
	.mobtel2 {
		display: block;
	}
}
.mobtel2 a {
	display: block;
	color: #fff;
	text-align: center;
	background: url(../img/out-call.png) 15px 50% no-repeat #28a745;
	border: 1px solid #fff;
	-webkit-border-radius: 12px;
	border-radius: 12px;
	padding: 15px 5px;
	text-decoration: none;
	line-height: 24px;
	vertical-align: top;
	font-size: 18px;
}

.towhtatsapp, .totelegram {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 10;
	background: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,.3);
}
.totelegram {
	bottom: 110px;
}
.towhtatsapp img, .totelegram img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
@media (max-width: 480px){
	.towhtatsapp, .totelegram {
		display: none;
	}
}
.orderform {
	display: none;
}