/* USER VARIABLES SECTION */

:root {
	--accent: #1428a0;
	--accentred: #db0f13;
	--mainbk: #2d2d2d;
	--maingray: #444444;
	--mainlgray: #f2f4f8;
	--mainblack: #252525;
	--text: #424041;
	--textlight: #717784;
	--regular-text: 14px;
	--lineheight: 1.65;
	--userfont: MuseoSansCyrl, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	--bs-body-font-weight: 500;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; }
.row, .row > * { --bs-gutter-x: 1.25rem; }

/* FONTS LOAD SECTION */

@font-face { src: url("../fonts/MuseoSansCyrl-300.woff2") format("woff2"); font-family: "MuseoSansCyrl"; font-weight: 300; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/MuseoSansCyrl-300Italic.woff2") format("woff2"); font-family: "MuseoSansCyrl"; font-weight: 300; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/MuseoSansCyrl-500.woff2") format("woff2"); font-family: "MuseoSansCyrl"; font-weight: 500; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/MuseoSansCyrl-500Italic.woff2") format("woff2"); font-family: "MuseoSansCyrl"; font-weight: 500; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/MuseoSansCyrl-700.woff2") format("woff2"); font-family: "MuseoSansCyrl"; font-weight: 700; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/MuseoSansCyrl-700Italic.woff2") format("woff2"); font-family: "MuseoSansCyrl"; font-weight: 700; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/MuseoSansCyrl-900.woff2") format("woff2"); font-family: "MuseoSansCyrl"; font-weight: 900; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/MuseoSansCyrl-900Italic.woff2") format("woff2"); font-family: "MuseoSansCyrl"; font-weight: 900; font-style: italic; font-display: swap; }

/* GENERAL CSS SETTINGS */

::placeholder { color: #666; }
::selection { background-color: var(--accent); color: #fff; }
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }
a {text-decoration: none;}

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}

h1 {
	font-size: 26px;
}

h2, h3, h4, h5, h6 {
	font-size: 22px;
}

.image {
	max-width: 100%;
}

.accent {
	color: var(--accent);
}

.form-control:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 0.25rem rgb(0 136 204 / 25%);
}

.textjustify {
	text-align: justify;
}

.textcenter {
	text-align: center;
}

a {
	color: var(--accent);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 26px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

@media (min-width: 768px) and (max-width: 998px) {
  .mobile-nav-toggle {
    top: 20px;
  }
}

.mobile-nav-active .mobile-nav-toggle {
  top: 4px;
}

.mobile-nav-toggle i {
  color: var(--accent);
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #2c4964;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
	font-size: 15px;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: var(--accent);
  text-decoration: none;
}

.mobile-nav .menu-item-has-children > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.menu-item-has-children > a:after {
  content: "\eaa1";
}

.mobile-nav .menu-item-has-children > a {
  padding-right: 35px;
}

.mobile-nav .menu-item-has-children ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .menu-item-has-children li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(28, 47, 65, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/* USER STYLES */

#primary {
	margin-top: 81px;
}

.header {
	background: var(--mainblack);
	border-bottom: 1px solid transparent;
}

.container-head {
	margin-top: 10px;
	margin-bottom: 0px;
}

.logotop {
    width: 64%;
}

a.logo {
	display: inline-flex;
	color: white;
	margin-bottom: 10px;
	align-items: center;
}

a.logo p {
	margin-bottom: 0;
	line-height: 1;
}

a.logo p.logotext {
	font-size: 10px;
	white-space: nowrap;
}

a.logo p.logozag {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 5px;
}

a.logo .logoalltext {
	margin-left: 10px;
}

.rowheaderinfo {
	height: 100%;
}

.contact-info p {
	display: inline-block;
	margin-bottom: 0;
	white-space: nowrap;
	color: white;
	font-size: 12px;
	margin-right: 15px;
}

.contact-info p i {
	margin-right: 5px;
	font-size: 14px;
	color: var(--accentred);
}

.phone-dropdown--pc i.icofont-phone {
	color: var(--accentred);
}

.contact-info a {
	line-height: 1;
	color: #ffffff;
	transition: .3s;
}

a.phone-dropdown--pc {
	font-size: 16px;
	color: white;
}

a.phone-dropdown--pc:hover {
	color: var(--accentred);
}

.phoneslist {
	width: 100%;
}

.phoneslist li {
	padding: 2px 5px;
}

.phoneslist li:last-child {
	margin-bottom: 0px;
}

.phoneslist li a {
	color: var(--text);
	font-size: 14px;
	display: flex;
	align-items: center;
}

.phoneslist li:hover a {
	color: var(--accent);
}

.phoneslist li a span {
	display: inline-block;
	margin-right: 5px;
	line-height: 0;
}

.phoneslist li a span::before {
	content: ' ';
	display: inline-block;
	background-repeat: no-repeat;
	background-size: 22px;
	width: 22px;
	height: 22px;
}

.phonelogo-mts:before {
	background-image: url(../images/mts-logo.svg);
}

.phonelogo-a1:before {
	background-image: url(../images/a1-logo.svg);
}

.phonelogo-gor:before {
	background-image: url(../images/oldphone.svg);
}

.phonelogo-telegram:before {
	background-image: url(../images/telegramphone.svg);
}

.phonelogo-viber:before {
	background-image: url(../images/viberphone.svg);
}

.phonelogo-email:before {
	background-image: url(../images/email.svg);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
	position: absolute;
	bottom: 0;
	right: 0;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 0 0 0 20px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: white;
  font-size: 16px;
  padding: 5px 2px;
}

.nav-menu a:hover, .nav-menu .active, .nav-menu li:hover > a {
  color: var(--accentred);
}

.nav-menu > ul > li:last-child a {
	padding-right: 0px;
}

.nav-menu .menu-item-has-children ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
	border-radius: 0 0 0.25rem 0.25rem;
}

.nav-menu .menu-item-has-children:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu ul.ul2col, .nav-menu .menu-item-has-children.ul2col ul  {
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
}

.nav-menu .menu-item-has-children li {
  min-width: 180px;
  position: relative;
}

.nav-menu .menu-item-has-children ul a {
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: var(--text);
  border: none;
}

.nav-menu .menu-item-has-children ul a:hover, .nav-menu .menu-item-has-children ul .active, .nav-menu .menu-item-has-children ul li:hover > a {
  color: var(--accent);
	background: var(--mainlgray);
}

.nav-menu .menu-item-has-children > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .menu-item-has-children .menu-item-has-children ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .menu-item-has-children .menu-item-has-children:hover > ul {
  opacity: 1;
  top: -10px;
  left: 100%;
}

.nav-menu .menu-item-has-children .menu-item-has-children > a {
  padding-right: 35px;
}

.nav-menu .menu-item-has-children .menu-item-has-children > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .menu-item-has-children .menu-item-has-children ul {
    left: 90%;
  }
  .nav-menu .menu-item-has-children .menu-item-has-children:hover > ul {
    left: 100%;
  }
  .nav-menu .menu-item-has-children .menu-item-has-children > a:after {
    content: "\eaa0";
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section {
  padding: 100px 0;
	position: relative;
}

.section-bgdark {
  background-color: var(--mainblack);
}

.section-bgdark50 {
	background: linear-gradient(90deg, white 50%, var(--mainblack) 50%);
}

.section-bglight {
  background-color: var(--mainlgray);
}

.section-bgwhite {
	background-color: #ffffff;
}

.section-title {
	font-size: 36px;
	color: var(--text);
	font-weight: 700;
	line-height: 1.25;
}

.section-title.section-titlesmall {
	font-size: 24px;
}

.section-text {
	font-size: 14px;
	color: var(--textlight);
	width: 60%;
}

.dividertop {
	z-index: 1;
}

.dividertop:before {
	z-index: -1;
	content: '';
	width: 100%;
	background: white;
	height: 150px;
	position: absolute;
	top: -70px;
	overflow: hidden;
	transform: skewY(-4deg);
	-moz-transform: skewY(-4deg);
	-ms-transform: skewY(-4deg);
	-webkit-transform: skewY(-4deg);
	-o-transform: skewY(-4deg);
}

.dividerbottom {
	z-index: 1;
}

.dividerbottom:after {
	z-index: -1;
	content: '';
	width: 100%;
	background: white;
	height: 150px;
	position: absolute;
	bottom: -70px;
	overflow: hidden;
	transform: skewY(4deg);
	-moz-transform: skewY(4deg);
	-ms-transform: skewY(4deg);
	-webkit-transform: skewY(4deg);
	-o-transform: skewY(4deg);
}

.sectionafterdivider {
	padding-top: 130px;
	padding-bottom: 100px;
}

/*--------------------------------------------------------------
# mainpage hero section
--------------------------------------------------------------*/
#heromain {
	padding-top: 0;
	padding-bottom: 0;
}

.herorightcontent {
	max-width: 660px;
	margin-right: auto;
}

#herouslygi .herorightcontent, #herotyperepair .herorightcontent {
	max-width: 100%;
}

#herouslygi .herorightcontent .hero-text, #herotyperepair .herorightcontent .hero-text {
	text-align: left;
	margin-top: 45px;
	line-height: 1.4em;
	font-size: 15px;
}

#herotyperepair .herorightcontent .hero-text {
	color: var(--text);
}

#herouslygi.section, #herotyperepair.section {
	padding: 50px 0;
}

.hero-title--wbg {
	text-align: center;
	font-size: 26px;
	color: var(--text);
	font-weight: 700;
	background: var(--mainlgray);
	border-radius: 0.25rem;
}

.hero-title--wbg h1 {
	text-align: center;
	font-size: 26px;
	color: var(--text);
	font-weight: 700;
	margin-bottom: 0;
	line-height: var(--lineheight);
}

.hero-text {
	text-align: center;
	font-size: 16px;
	color: white;
	margin: 15px 0 45px;
}

.hero-fromtitle {
	text-align: center;
	font-size: 26px;
	color: white;
	margin-bottom: 15px;
}

.hero-form button, .hero-form .wpcf7-submit  {
	width: 100%;
	background: var(--accent);
	color: white;
	border-color: var(--accent);
}

.hero-form button:hover, .hero-form .wpcf7-submit:hover {
	background: white;
	border-color: var(--accent);
	color: var(--accent);
}

.hero-form button:focus, .hero-form .wpcf7-submit:focus {
	box-shadow: none;
}

.hero-form .wpcf7-spinner {
	display: none;
}

/*--------------------------------------------------------------
# uslugisection
--------------------------------------------------------------*/

.row-repairgadget {
	margin-top: 30px;
}

.repairgadget {
	background: var(--mainlgray);
	border-radius: 1rem;
	padding: 15px 5px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
	height: 100%;
}

.repairgadget:hover {
	-webkit-box-shadow: 0px 0px 10px 2px rgba(34, 60, 80, 0.2);
	-moz-box-shadow: 0px 0px 10px 2px rgba(34, 60, 80, 0.2);
	box-shadow: 0px 0px 10px 2px rgba(34, 60, 80, 0.2);
	background: var(--accent);
}

.repairgadget:hover .repairgadget--text {
	color: white;
}

.repairgadget:hover {
	-webkit-box-shadow: 0px 0px 10px 2px rgba(34, 60, 80, 0.2);
	-moz-box-shadow: 0px 0px 10px 2px rgba(34, 60, 80, 0.2);
	box-shadow: 0px 0px 10px 2px rgba(34, 60, 80, 0.2);
	background: white;

}

.repairgadget:hover .repairgadget--text {
	color: var(--text);
}

.repairgadget-image {
	max-height: 100px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}

.site-type-repair .repairgadget-image {
	max-height: 82px;
}

.repairgadget--text {
	color: var(--text);
	text-align: center;
	line-height: 1;
  height: 28px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

/*--------------------------------------------------------------
# consulrtform 
--------------------------------------------------------------*/
.form-consult {
	margin-top: 50px;
	padding: 0 35px;
}

.form-consult .form-title {
	text-align: center;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 15px;
}

.row-repairgadget .form-consult .form-title {
	line-height: 1.2;
}

.row-repairgadget .form-consult {
	margin-top: 0;
	padding: 0;
}

/*--------------------------------------------------------------
# advantagesection
--------------------------------------------------------------*/
.section-advantage {
	padding-top: 0;
	padding-bottom: 100px;
}
.advantage-item {
	background: white;
	border-radius: 1rem;
	padding: 15px 7px;
	box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
}

.advantage-item.advantage-item-main {
	margin-left: 40px;
    margin-bottom: 20px;
}

.section-advantages .advantage-item {
 height: 100%;
 display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.advantage-item.advantage-item-main .advantage-title {
	text-align: left;
}

.advantage-item.advantage-item-main .advantage-image img {
	display: inline;
	margin-bottom: 0;
}

.advantage-item a {
	color: var(--text);
}

.section-advantages .row-advantage .col-lg-4 {
	margin-bottom: 20px;
}

.section-advantages .row-advantage .col-lg-4:nth-last-child(-n+3) {
	margin-bottom: 0;
}

.section-advantages .row-advantage .section-title {
	margin-bottom: 20px;
}

.section-advantages {
	padding-bottom: 0;
}

.advantage-title {
font-size: 14px;
font-weight: 700;
line-height: 1;
margin-bottom: 10px;
text-align: center;
}

.advantage-text {
	line-height: 1.4;
	margin-bottom: 0;
}

.row-advantage {
background: var(--mainlgray);
border-radius: 1rem;
padding: 45px 25px;
-webkit-transition: 0.2s;
transition: 0.2s;
box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
}

/*--------------------------------------------------------------
# brandsection
--------------------------------------------------------------*/

.swiper-logos .swiper-slide {
margin-bottom: 10px;
background: var(--mainlgray);
border-radius: 1rem;
box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
}

.swiper-logos img {
padding: 15px;
}

.swiper-logos .swiper-wrapper {
  -webkit-transition-timing-function:linear!important; 
  -o-transition-timing-function:linear!important;
  transition-timing-function:linear!important; 
}

.swiper-slide img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}
.swiper.swiper-brands, .swiper.swiper-company {
	padding-top: 50px;
}

.row-swiper-brands, .row-company {
background: white;
border: 1px solid var(--mainlgray);
border-radius: 1rem;
padding: 45px 0;
-webkit-transition: 0.2s;
transition: 0.2s;
box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
}

.row-swiper-brands .section-titletext, .row-company .section-titletext {
	padding-left: calc(var(--bs-gutter-x) * .5 + 25px);
}

.swiper-inner-image {
	display: flex;
	flex-direction: row;
}

/*--------------------------------------------------------------
# kurersection
--------------------------------------------------------------*/

.form-kurer {
	margin-top: 25px;
}

.kurer-carimage {
	width: 60%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.section-kurer {
	padding-top: 0;
	padding-bottom: 0;
}

.row-kurer {
	background: white;
	border: 1px solid var(--mainlgray);
  border-radius: 1rem;
  padding: 45px 25px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
	margin-bottom: 9px;
}

/*--------------------------------------------------------------
# reviewsection
--------------------------------------------------------------*/

.swiper.swiper-reviev {
	padding-bottom: 40px;
	margin-top: 30px;
	margin-bottom: 60px;
}

.swiper.swiper-reviev .swiper-pagination {
	bottom: 0;
}

.swiper-reviev .swiper-slide-review {
	background: var(--mainlgray);
	box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
  border-radius: 1rem;
  padding: 10px 15px;
	height: auto;
	display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
	flex-direction: row;
}

.swiper-reviev .swiper-slide-review .review-bio {
	flex: none;
    width: 150px;
}

.swiper-slide-review img {
	max-width: 50px;
	border-radius: 50%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.review-star ul {
	margin: 0;
	padding: 0;
	text-align: center;
}

.review-star ul li {
	display: inline;
	color: #ffdd22;
	text-align: center;
}

.review-name {
	text-align: center;
}

.review-text {
	text-align: left;
	margin-left: 15px;
}

.review-name {
	margin: 10px 0 0 0;
}

.btnreview p {
	color: var(--text);
	text-align: center;
	margin-bottom: 0px;
	font-weight: 700;
}

.btnreviewrow {
	margin-bottom: 60px;
	margin-top: 30px;
}

.btnreviewrow a {
	background: var(--mainlgray);
    box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
    border-radius: 1rem;
    padding: 15px 15px 10px 15px;
	width: 170px;
	transition: 0.3s;
}

.btnreviewrow a:hover {
	background: white;
}

.btnreviewrow a img {
	width: auto;
	height: 30px;
	margin-bottom: 10px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.btnreview-google {
	float: right;
	margin-right: 25px;
}

.btnreview-yandex {
	float: left;
	margin-left: 25px;
}

/*--------------------------------------------------------------
# newssection
--------------------------------------------------------------*/

.swiper.swiper-news {
	padding-bottom: 40px;
	margin-top: 30px;
	margin-bottom: 0;
}

.swiper.swiper-news .swiper-pagination {
	bottom: 0;
}

.swiper-news .swiper-slide-news {
	background: var(--mainlgray);
	box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
  border-radius: 1rem;
  padding: 25px 15px;
	height: auto;
	display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
	flex-direction: column;
}

.news-name {
	font-size: 18px;
  text-align: center;
  line-height: 1.2em;
  margin-bottom: 15px;
}

.news-text {
	font-size: 14px;
	line-height: 1.2em;
	margin-bottom: 50px;
}

.btn-news {
	background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn-news:hover {
	background: white;
  border-color: var(--accent);
  color: var(--accent);
}

.news-btn {
	position: absolute;
	bottom: 25px;
	left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%)
}

/*--------------------------------------------------------------
# contactssection
--------------------------------------------------------------*/

.contact-item {
	background: white;
	border-radius: 1rem;
	padding: 15px;
	margin-bottom: 20px;
	box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
}

.contact-item:last-child{
	margin-bottom: 0px;
}

.contact-text {
	line-height: 1.4;
	margin-bottom: 0;
}

.contact-title {
	font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.contact-phone a {
	color: var(--text);
  display: flex;
}

.contact-phone a:hover {
	color: var(--accent);
}

.contact-phone a span {
	display: inline-block;
  margin-right: 5px;
  line-height: 0;
}

.contact-phone a span::before {
	content: ' ';
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 22px;
  width: 22px;
  height: 22px;
}

#yamaps1 {
	background: white;
	border-radius: 1rem;
	box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
	overflow: hidden;
	margin-left: 40px;
}

/*--------------------------------------------------------------
# footersection
--------------------------------------------------------------*/
.fnav {
	padding-left: 1rem;
}

.fnav li a {
	color: white;
}

.fnav li a:hover {
	color: #08c;
}

.fnav li::marker {
	color: var(--accent);
}

.logobottom {
	width: 80%;
	display: block;
	margin-left: auto;
}

.copyright {
	color: white;
	margin-top: 15px;
	margin-bottom: 15px;
}

.copyright.copyright-main {
	margin-top: 10px;
	margin-bottom: 0px ;
}

.copyright a {
	color: white;
}

.copyright a:hover {
	color: var(--accent);
}

.section-footermenu {
	padding-bottom: 10px;
	padding-top: 60px;
}

.howtpelement img {
	width: 55px;
	margin-right: 15px;
}

.howtpelement p {
	margin-bottom: 0;
	line-height: 1.4em;
}

.row-howto {
	background: #4f5d75;
	border-radius: 1rem;
	padding: 45px 25px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
}

.row-howto .section-titletext {
	text-align: center;
	color: white;
	margin-bottom: 25px;
}

.row-howto .section-titletext .section-title {
	color: white;
}

.howtpelement {
	background: white;
    border-radius: 1rem;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
		display: flex;
		flex-direction: row;
		align-items: center;
}

.section-howto {
	padding-top: 0;
}

.row-pay {
	background: var(--mainlgray);
	background-image: url(../images/halva-pay-small.png);
	background-size: 25%;
	background-repeat: no-repeat;
	background-position: right bottom;
	border-radius: 1rem;
	padding: 45px 25px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
	margin-bottom: 0px;
}

.section-pay {
	padding: 0 0 100px;
	z-index: 2;
}

.section-breadcrumb {
	padding: 10px 0;
}

#breadcrumbs {
	color: var(--text);
}

#breadcrumbs a {
	color: var(--text);
	font-weight: 400;
	transition: 0.3s;
}

#breadcrumbs a:hover {
	color: var(--accent);
}

#breadcrumbs .breadcrumb_last {
	opacity: 0.8;
}

#herotyperepair .image {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

#herotyperepair .hero-fromtitle {
	color: var(--text);
}

#herotyperepair .hero-form {
	width: 70%;
    margin-left: auto;
    margin-right: auto;
}

#herotyperepair .hero-title--wbg h1 {
	background: var(--mainlgray);
    border-radius: 0.25rem;
	width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

#herotyperepair .hero-title--wbg {
	background: white;
    border-radius: 0;
}

.section-page-text {
	padding-top: 0;
	padding-bottom: 25px;
}

.site-type-repair .section-advantages {
padding-top: 0;
}

.page-text {
	font-size: 15px;
	line-height: 1.4em;
}

.page-text p:last-child {
	margin-bottom: 0;
}

.site-type-repair .section-repairgadget {
	padding-top: 0;
}

.site-type-repair .row-repairgadget {
	margin-top: 0;
}

.section-apple-dopservice {
	padding-top: 0;
}

.apple-dopservice-inner a img {
	border-radius: 10px;
	border: 1px solid var(--accent);
	box-shadow: 0px 12px 18px -6px rgb(0 0 0 / 30%);
	display: block;
margin-left: auto;
margin-right: auto;
transition: 0.3s;
}

.apple-dopservice-inner a:hover img {
	border: 1px solid var(--accentred);
}

table:not(.variations) {
	border: 1px solid #eee;
	margin: 0 0 15px;
	text-align: left;
	width: 100%;
}

.repair_table {
	border-collapse: collapse;
	width: 100%;
	text-align: left;
}

.repair_table tr:nth-child(2n+1) {
	background: var(--mainlgray);
}

.repair_table td {
	border: 1px solid #ccc;
}

.repair_table tr td {
	border-top: 1px solid #eee;
  padding: 6px 10px;
}

.repair_table tr:hover td {
	background: #e8e6e6;
}

.repair_table tr th {
	color: var(--text);
	font-weight: 700;
	padding: 9px 24px;
}

.vbox-content {
	max-height: 100%;
}

.certivtext p:first-child {
	font-weight: 700;
	font-size: 16px;
}

.row-certif {
	border: 1px solid var(--mainlgray);
	border-radius: 1rem;
	padding: 15px;
	box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
	margin-bottom: 45px;
}

.rekinner {
	background-image: url(../images/rek-fon.jpg);
	background-size: cover;

}

.rekinner-text {
	margin-left: auto!important;
  margin-right: auto!important;
	font-size: 16px;
  padding-top: 260px!important;
	padding-bottom: 50px;
  max-width: 60%;
}

.rekinner-text .btnreview {
	margin-left: auto;
margin-right: auto;
display: block;
max-width: fit-content;
}

.page-rekviz .hero-fromtitle {
	margin-top: 50px;
}

.image-cont {
	max-height: 233px;
}

.row-contimage {
	margin-top: 50px;
}

.row-contimage a img {
	border-radius: 1rem;
    box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
}

.row-contimage .col-lg-4:last-child a img {
	float: right;
}

.page-kurer #herotyperepair.section2 {
	padding-bottom: 0;
}

.advantage-image img, .contact-image img {
	width: 55px;
	height: auto;
}

.advantage-image img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}

/*кнопка звонка*/
.callbackbtn {
	position: fixed;
			left: 1%;
			bottom: 3%;
	z-index:999;
}
.callback-bt {
			background:#0088cc;
			background-image: url(../images/tgbut.png);
			background-position: center center;
			background-repeat: no-repeat;
			background-size: 50%;
			border:1px solid #0088cc;
			border-radius:50%;
			box-shadow:0 8px 10px rgba(56,163,253,0.3);
			cursor:pointer;
			height:68px;
			text-align:center;
			width:68px;
			transition:.3s;
}

.callback-bt2 {
			background:#6f3faa;
			background-image: url(../images/viberbut.png);
			background-position: center center;
			background-repeat: no-repeat;
			background-size: 50%;
			border:1px solid #6f3faa;
			border-radius:50%;
			box-shadow:0 8px 10px rgb(111,63,170,0.3);
			cursor:pointer;
			height:68px;
			text-align:center;
			width:68px;
			transition:.3s;
			margin-bottom: 15px;
}

.callback-bt3 {
			background:#444444;
			background-image: url(../images/emailbut.png);
			background-position: center center;
			background-repeat: no-repeat;
			background-size: 50%;
			border:1px solid #444444;
			border-radius:50%;
			box-shadow:0 8px 10px rgb(68,68,68,0.3);
			cursor:pointer;
			height:68px;
			text-align:center;
			width:68px; 
			transition:.3s;
			margin-bottom: 15px;
}

@media (max-width: 980px) {
	.callback-bt, .callback-bt2, .callback-bt3 {
			width: 46px;
			height: 46px;
			border-radius:0%;
			box-shadow:none;
			margin-bottom: 0px;	
			border: 0;
	}
	.callbackbtn a {
		display: inline-block;
	}
	.callbackbtn {
		position: fixed;
		left: auto;
		bottom: 0;
		z-index: 999;
		right: 58px;
		height: 46px;
		display: flex;
}
}

@media (max-width: 760px) {
	.kurer-btndiv { 
	display:none;
	}
	.kurer-btndivmob {
			position: fixed;
			left: 0%;
			bottom: 11px;
			z-index:9999;
	}
	.kurer-btndivmob .kurer-btmob {
			padding:15px 15px;
			background:var(--accent);
			border-radius:0px 10px 0px 0px;
			cursor:pointer;
			text-align:center;
			color:white;
			text-decoration: none;
			font-size: 14px;
			line-height: 14px;
			font-weight: 600;
			font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
	}
}

@media (min-width: 760px) {
	.kurer-btndivmob {
			display:none!important;
	}
}

.kurer-btndiv {
position: fixed;
right: 2%;
bottom: 5%;
z-index:9999;
}
.kurer-bt {
			padding:15px 25px;
			background: var(--accent);;
			border-radius:20px;
			box-shadow:0 8px 10px rgba(30,30,30,0.3);
			cursor:pointer;
			text-align:center;
			width:260px;
			color:white;
			text-decoration: none;
			font-size: 18px;
			line-height: 18px;
			font-weight: 600;
			font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
			transition:.3s;
			-webkit-animation:kurer-an linear 1s infinite;
			animation:kurer-an linear 1s infinite;
}

a.kurer-bt:hover {
	color: white;
}

@-webkit-keyframes kurer-an {
			0% {
			box-shadow:0 8px 10px rgba(20,40,160,0.3),0 0 0 0 rgba(20,40,160,0.2),0 0 0 0 rgba(20,40,160,0.2)
}
40% {
			box-shadow:0 8px 10px rgba(20,40,160,0.3),0 0 0 15px rgba(20,40,160,0.2),0 0 0 0 rgba(20,40,160,0.2)
}
80% {
			box-shadow:0 8px 10px rgba(20,40,160,0.3),0 0 0 30px rgba(20,40,160,0),0 0 0 26.7px rgba(20,40,160,0.067)
}
100% {
			box-shadow:0 8px 10px rgba(20,40,160,0.3),0 0 0 30px rgba(20,40,160,0),0 0 0 40px rgba(20,40,160,0.0)
}
}@keyframes kurer-an {
			0% {
			box-shadow:0 8px 10px rgba(20,40,160,0.3),0 0 0 0 rgba(20,40,160,0.2),0 0 0 0 rgba(20,40,160,0.2)
}
40% {
			box-shadow:0 8px 10px rgba(20,40,160,0.3),0 0 0 15px rgba(20,40,160,0.2),0 0 0 0 rgba(20,40,160,0.2)
}
80% {
			box-shadow:0 8px 10px rgba(20,40,160,0.3),0 0 0 30px rgba(20,40,160,0),0 0 0 26.7px rgba(20,40,160,0.067)
}
100% {
			box-shadow:0 8px 10px rgba(20,40,160,0.3),0 0 0 30px rgba(20,40,160,0),0 0 0 40px rgba(20,40,160,0.0)
}
}

@keyframes opsimple {
0% {
	opacity: 0;
}
40% {
	opacity: 1;
}

80% {
	opacity: 1;
}
100% {
	opacity: 0;
}
}

@-webkit-keyframes opsimple {
0% {
	opacity: 0;
}
40% {
	opacity: 1;
}
80% {
	opacity: 1;
}
100% {
	opacity: 0;
}
}

.infotop {
	text-align: center;
	font-size: 16px;
	color: white;
	margin-bottom: 10px;
}

.page-thx #herotyperepair .herorightcontent .hero-text {
	text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: var(--accent);
	color: var(--text);
	background: var(--mainlgray);
	box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
	border-radius: 1rem;
	text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	color: var(--text);
	background: var(--mainlgray);
	box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
	border-radius: 1rem;
	text-align: center;
}

.form-kurer .input-group {
	display: block;
}

.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 2%;
	bottom: 150px;
	z-index: 996;
	background: var(--accent);
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

.back-to-top i {
	font-size: 24px;
	color: #fff;
	line-height: 0;
}

.doctors .member {
	position: relative;
	box-shadow: 0px 2px 15px rgb(44 73 100 / 8%);
	padding: 30px;
	border-radius: 25px;
	height: 100%;
}

.doctors .member .pic {
	overflow: hidden;
	width: 150px;
	min-width: 150px;
}

.doctors .member .member-info {
	padding-left: 30px;
	margin-bottom: 40px;
}

.doctors .member .h4 {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 20px;
	color: var(--text);
}

.doctors .member span {
	display: block;
	font-size: 15px;
	padding-bottom: 10px;
	position: relative;
	font-weight: 500;
	margin-bottom: 10px;
}

.doctors .member span:after {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 1px;
	background: var(--mainbk);
	bottom: 0;
	left: 0;
}

#doctors .btn-get-started {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 35px;
	margin-top: 30px;
	border-radius: 50px;
	transition: .5s;
	color: #fff;
	background: var(--accent);
}

#doctors .btn-get-started:hover {
	background: var(--accentred);
	color: #fff;
}

.posts-navigation {
	padding: 50px 0;
}

.news-archive .news-archive-title--wbg h1 {
	background: var(--mainlgray);
	border-radius: 0.25rem;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
}

.news-archive .inner-page {
	padding-bottom: 100px;
}

.float-right {
	float: right!important;
}

.metro {
	width: 16px;
	margin-right: 5px;
}

.contact-content {
	padding-right: 0;
}

.logged-in.admin-bar .header {
	margin-top: 32px;
}

.footercoltitle {
	font-size: 18px;
	color: white;
	text-align: left;
	font-weight: 700;
	margin-bottom: 10px;
}

.footercol3 .fnav {
	margin-top: 40px;
}

.socialfooter-img {
	width: 26px;
	height: 26px;
	display: inline-block;
	margin-left: 10px;
	transition: transform .2s;
}

.socialfooter-inner {
	display: block;
    margin-left: auto;
    width: fit-content;
	margin-top: 20px;
}

.socialfooter-img a img {
	width: 26px;
	height: 26px;
}

.socialfooter-img:hover {
	transform: scale(1.1);
}

.protectphones-inner {
	padding: 20px;
}

.protectphones-inner .protect-title {
	font-size: 18px;
	font-weight: 700;
}

.devealis-mob {display: none;}

.devealis-pc {
	border-radius: 10px 10px 0 0;
	box-shadow: 0 -4px 20px -7px rgb(0 0 0 / 75%);
    padding: 10px 15px 5px 15px;
	background: var(--accent);
	color: white;
	transition: 0.3s;
}

.devealis-pc:hover {
	background: white;
	color: var(--accent);
}

.copyright-devealis {
	margin-top: 20px;
	margin-bottom: 5px;
	position: absolute;
	bottom: 0;
	right: calc(2% + 250px);
}

.rowrepairtypes-title {
	font-size: 20px;
	margin-top: 15px;
	margin-bottom: 15px;
	line-height: var(--lineheight);
	text-align: center;
}

.repeirelementtext {
	display: inline-block;
	margin-bottom: 0;
	font-weight: 700;
}

.toprepairelement a {
	background: var(--accent);
	color: white;
	padding: 10px 15px;
	border-radius: 0.25rem;
	transition: 0.3s;
	border: 1px solid var(--accent);
}

.toprepairelement a:hover {
	background: var(--mainlgray);
	color: var(--accent);
}

.toprepairelement {
	background: var(--mainlgray);
	padding: 0 0 0 15px;
	border-radius: 0.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.heroformrepair {
	margin-top: 40px;
}

#repairformpopup {
	display: none;
}

#repairformpopup .hero-formpopup {
	max-width: 370px;
}

#repairformpopup .callbackform .h2 {
	text-align: center;
}

#repairformpopup .callbackform .input-group {
	margin-bottom: 10px;
}

#repairformpopup .repairtypenamezag {
	font-size: 16px;
	text-align: center;
}

.fancybox-content {
	border-radius: 1rem;
}

.site-type-model-neworder .section-kurer {
	padding-bottom: 100px;
}

.site-type-repair.site-type-model-neworder .section-advantages {
	padding-bottom: 0;
}

.site-type-repair.site-type-model-neworder .section-advantages.section-repairpopular {
	padding-bottom: 100px;
}

.site-type-model-neworder .section-news {
	padding-top: 0;
}

.site-type-model-neworder .section-pay {
	padding-bottom: 100px;
}

.site-type-model-neworder #herotyperepair.section {
	padding-bottom: 100px;
}

.section-repairpopular.section-advantages .advantage-item {
	justify-content: flex-start;
}

.section-repairpopular.section-advantages .advantage-title {
	margin-bottom: 0;
}

.section-repairpopular.section-advantages .row-advantage {
	background: #4f5d75;
}

.section-repairpopular.section-advantages .row-advantage .section-title {
	color: white;
	text-align: center;
}

.advantage-item.withurl {
	background: white;
	transition: 0.3s;
}

.advantage-item.withurl:hover {
	-webkit-box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2);
    -moz-box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 10px 2px rgb(255 255 255 / 20%);
}

.site-type-model-neworder .toprepairelement a {
	min-width: 144px;
}

.site-type-model-neworder .repeirelementtext {
	line-height: 1.25;
}

.site-type-model-tv #herotyperepair .image {
	filter: brightness(108%);
    backface-visibility: hidden;
}

.section-titlerepair .section-title {
	text-align: center;
}

.section-titlerepair .section-text {
	text-align: center;
	font-size: 18px;
	width: 100%;
}

.site-type-repair-brand .section-advantages, .site-type-repair .section-advantages {
	padding-bottom: 100px;
}

.uslugaimg {
	max-width: 300px;
	width: 300px;
	height: auto;
}

.row-faq {
    background: var(--mainlgray);
    border: 1px solid var(--mainlgray);
    border-radius: 1rem;
    padding: 45px 25px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    box-shadow: 1px 4px 9px rgb(48 66 117 / 13%);
    margin-bottom: 9px;
}

.section-faq {
	padding-top: 0;
}

.row-faq .section-title {
	text-align: center;
	margin-bottom: 20px;
}

.row-faq .accordion-button:not(.collapsed) {
	color: var(--text);
    background-color: white;
	box-shadow: none;
	border-color: var(--accent);
}

.row-faq .accordion-button:focus {
	border-color: var(--accent);
	box-shadow: none;
}

.row-faq .accordion-item {
	margin-bottom: 15px;
	border-radius: 16px;
	border: 1px solid transparent;
	overflow: hidden;
}

.section-repairgadget .repairgadgetelem {
	display: none;
}

#loadmorecarthide.noContent, #loadmorecart.noContent {
    display: none;
}

.row-repairgadget .repairpopularbtnall a {
	padding: 10px 45px;
}

.repairpopularbtnall a {
	background: var(--accent);
    color: white;
    padding: 10px 15px;
    border-radius: 0.25rem;
    transition: 0.3s;
    border: 1px solid var(--accent);
	display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.repairpopularbtnall a:hover {
	background: var(--mainlgray);
    color: var(--accent);
}

.page-template-page-main .section-advantages {
	padding-top: 0;
	padding-bottom: 100px;
}