@charset "UTF-8";
body {
  margin: 0;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  background: #fff;
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


.no-overflow {
  overflow: hidden;
}

.brend h2 {
  margin-bottom: 20px;
}

.brend p {
  margin: 0;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 19px;
  color: #585858;
}

.brend .all_view {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #5FBD78;
  margin-top: 20px;
  display: none;
}

.brend .all_view span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.brend .all_view span::after {
  content: '';
  display: block;
  background: url(../../img/all_view_arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 14px;
  margin-left: 10px;
}

.breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0;
  flex-wrap: wrap;
}

.breadcrumbs li {
  font-size: 14px;
  line-height: 16px;
  color: #C4C4C4;
}

.breadcrumbs li a {
  color: #C4C4C4;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin: 0 3px;
}

input {
  border: 1px solid #CCCCCC;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 16px;
  color: #606060;
}

input:active, input:focus {
  outline: none;
}

@-webkit-keyframes showModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes showModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes hideModal {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes hideModal {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.modal {
  position: fixed;
  z-index: 999;
  display: none;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  overflow: auto;
}

.modal.show {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: showModal;
          animation-name: showModal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  z-index: 99999;
}

.modal.hide {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: hideModal;
          animation-name: hideModal;
  display: none;
  opacity: 0;
}

.modal .modal-body {
  max-width: 780px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.modal .modal-body .modal-call_back {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal .modal-body .modal-call_back .close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.modal .modal-body .modal-call_back .close:hover {
  opacity: 0.7;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.modal .modal-body .modal-call_back input {
  width: 100%;
  margin-bottom: 20px;
}

.modal .modal-body .modal-call_back button {
  width: 100%;
  margin-top: 10px;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 16px;
}

.modal .modal-body .modal-call_back .form {
  padding: 40px 60px 50px;
  position: relative;
  width: 100%;
}

.modal .modal-body .modal-call_back form {
  text-align: center;
}

.modal .modal-body .modal-call_back strong {
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  color: #000000;
  display: block;
  margin-bottom: 32px;
}

.modal .modal-body .modal-call_back p {
  margin: 0;
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}

.modal .modal-body .modal-call_back .img {
  width: 280px;
}

@-webkit-keyframes showMenu {
  from {
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes showMenu {
  from {
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes hideMenu {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
}

@keyframes hideMenu {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
}

.mob-menu {
  background: #fff;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  height: 100%;
  min-width: 370px;
  display: -ms-grid;
  display: grid;
  overflow: scroll;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
}

.mob-menu.show {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: showMenu;
          animation-name: showMenu;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.mob-menu.hide {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: hideMenu;
          animation-name: hideMenu;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
}

.mob-menu .grid-bottom {
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  padding-bottom: 30px;
}

.mob-menu .contact_link {
  padding: 30px 15px 0;
}

.mob-menu .contact_link ul li svg {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #C4C4C4;
}

.mob-menu .group_bt {
  width: 100%;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
}

.mob-menu .group_bt .bt {
  padding: 10px 24px;
  border-radius: 40px;
}

.mob-menu .top {
  background: #F6F6F6;
}

.mob-menu ul {
  list-style: none;
  margin: 0;
}

.mob-menu .list_strong ul {
  padding: 20px 15px 30px;
}

.mob-menu .list_strong a {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #181818;
}

.mob-menu .list_strong li:not(:last-child) {
  margin-bottom: 20px;
}

.mob-menu .list_menu {
  background: #F6F6F6;
}

.mob-menu .list_menu ul {
  list-style: none;
  padding: 15px;
  margin: 0;
}

.mob-menu .list_menu ul svg {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
}

.mob-menu .list_menu ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #181818;
  position: relative;
}

.mob-menu .list_menu ul a br{
  display: none;
}

.mob-menu .list_menu ul a .arrow {
  position: absolute;
  right: 0;
  width: 8px;
  height: 12px;
}

.mob-menu .list_menu ul a:active, .mob-menu .list_menu ul a:focus {
  color: #5FBD78;
}

.mob-menu .list_menu ul a:active .arrow, .mob-menu .list_menu ul a:focus .arrow {
  stroke: #5FBD78;
}

.mob-menu .list_menu ul a:active .img, .mob-menu .list_menu ul a:focus .img {
  stroke: #5FBD78;
}

.mob-menu .list_menu ul li:not(:last-child) {
  border-bottom: 1px solid #EEEEEE;
}

.mob-menu .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 16px 15px 0;
}

.mob-menu .top .close {
  background: #699075;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mob-menu .top .close img {
  width: 15px;
  height: 15px;
}

@-webkit-keyframes showFon {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes showFon {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes hideFon {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes hideFon {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.dark-fon {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.dark-fon.show {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: showFon;
          animation-name: showFon;
  opacity: 1;
  display: block;
}

.dark-fon.hide {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: hideFon;
          animation-name: hideFon;
  opacity: 0;
  display: none;
}

.d-d-none {
  display: none;
}

.d-m-block {
  display: none;
}

.d-m-tablet {
  display: none;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
	color: #181818;
}

a:hover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0.7;
}

.menu_mob {
  display: none;
  width: 42px;
  height: 42px;
  background: #699075;
  border-radius: 50%;
}

.menu_mob .close {
  display: none;
}

.menu_mob:hover {
  background: #497256;
}

.menu_mob > div {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bt_green_trans {
  border: 1px solid #5FBD78;
  color: #5FBD78;
}

.bt_green_trans:hover {
  background: #5FBD78;
  color: #fff;
}

.bt_black_trans {
  border: 1px solid #181818;
  color: #181818;
}

.bt_black_trans:hover {
  background: #181818;
  color: #fff;
}

.bt_black {
  border: 1px solid #181818;
  background: #181818;
  color: #fff;
}

.bt_black:hover {
  opacity: 0.7;
}

.bt_green {
  border: 1px solid #5FBD78;
  background: linear-gradient(91.3deg, #6EC986 0%, #5FBD78 100%);
  font-weight: 600;
  color: #fff;
}

.bt_green:hover {
  background: linear-gradient(91.3deg, #63B578 0%, #55A86B 100%);
}

.bt_white_trans {
  border: 1px solid #fff;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.bt_white_trans:hover {
  background: #fff;
  color: #181818;
}

.bt {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.bt:hover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.top_header {
  background: #F6F6F6;
  padding: 10px 0;
  border: 1px solid #E2E2E2;
}

.top_header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top_header .container a {
  font-size: 14px;
}

.main_header {
  margin: 8px 0;
}

.main_header .logo {
  margin-right: 55px;
}

.main_header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_header .menu {
  margin-right: 50px;
}

.main_header .menu a {
  color: #181818;
  font-weight: 600;
  font-size: 16px;
}

.main_header .menu a:not(:last-of-type) {
  margin-right: 68px;
}

.main_header .phone {
  margin-right: 60px;
}

.main_header .phone a {
  display: block;
}

.main_header .phone a strong {
  display: block;
  color: #181818;
  font-weight: 700;
  font-size: 16px;
}

.main_header .phone a span {
  display: block;
  color: #606060;
  font-size: 12px;
}

.main_header .bt {
  padding: 11px 24px;
  cursor: pointer;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
}

.main_header .bt:first-of-type {
  margin-right: 15px;
}

.main_header .bt_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact_link a {
  color: #606060;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_link a svg {
  margin-right: 10px;
}

.contact_link ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
}

.contact_link ul li svg {
  margin: 0;
}

.contact_link ul li svg circle {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.contact_link ul li svg path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.contact_link ul li:hover a {
  opacity: 1;
}

.contact_link ul li:hover svg circle {
  fill: #5FBD78;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contact_link ul li:hover svg path {
  fill: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contact_link ul li:not(:last-child) {
  margin-right: 30px;
}

.menu_header {
  background: #699075;
  padding: 12px 0;
}

.menu_header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu_header ul a {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu_header ul a .img {
  margin-right: 12px;
  max-width: 28px;
  max-height: 28px;
}

.menu_header ul a .img path{
  fill: #fff;
}

footer {
  font-family: 'Roboto';
  font-size: 14px;
  line-height: 20px;
  color: #181818;
  padding: 70px 0;
  background: #F7F7F7;
}

footer iframe {
  margin-top: 10px;
}

footer .contact_link.phone svg path, footer .contact_link.email svg path, footer .contact_link.adres svg path {
  stroke: #5FBD78;
}

footer .contact_link.phone a, footer .contact_link.email a, footer .contact_link.adres a {
  color: #181818;
}

footer .footer_menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .footer_menu li:not(:last-child) {
  margin-bottom: 15px;
}

footer .footer_menu a {
  font-weight: 600;
  color: #181818;
}

footer .block_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer p {
  margin: 0;
}

footer span {
  color: #606060;
}

footer .item {
  max-width: 280px;
}

footer .contact_link {
  margin: 20px 0;
}

footer .contact_link ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
}

footer .contact_link ul li:not(:last-child) {
  margin-right: 20px;
}

#home .contact_footer {
  margin-bottom: 100px;
}

#home .breaking_3 .img{
  bottom: -4px;
}

#phone-repair .breaking_3 .img{
  bottom: -4px;
}

#phone-inner .breaking_3 .img{
  bottom: -4px;
}

#home .content {
  margin-bottom: 80px;
}

#home .service_all {
  margin-bottom: 100px;
}

#home .full_gallery {
  margin-bottom: 50px;
}

#home .full_gallery p{
  line-height: 28px;
}

.contact_footer .block_contact {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
}

.contact_footer strong {
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  color: #181818;
  display: block;
}

.contact_footer .info {
  background: #F7F7F7;
  border-radius: 10px;
  padding: 30px 40px;
}

.contact_footer p {
  margin: 20px 0;
  font-size: 16px;
  line-height: 22px;
  color: #181818;
}

.contact_footer .map {
  border-radius: 10px;
  overflow: hidden;
}

.contact_footer .bt_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact_footer .bt_group .bt {
  padding: 10px 40px;
  border-radius: 6px;
  font-size: 18px;
}

.contact_footer .bt_group .bt:first-of-type {
  margin-right: 6px;
}

.breaking {
  margin-bottom: 50px;
}

.breaking p {
  margin: 10px 0 50px;
  max-width: 400px;
}

.breaking .bt {
  font-size: 18px;
  padding: 10px 40px;
  border-radius: 6px;
}

.breaking .icon {
  position: absolute;
  top: 0;
  left: 0;
}

.breaking .block {
  background: linear-gradient(91.3deg, #6EC986 0%, #5FBD78 100%);
  overflow: hidden;
  border-radius: 10px;
  padding: 115px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  align-items: center;
  position: relative;
}

.breaking .block > div {
  width: 50%;
}

.breaking .info {
  color: #fff;
}

.breaking strong {
  font-weight: 600;
  font-size: 34px;
  line-height: 48px;
}

.breaking_2 {
  margin-bottom: 50px;
}

.breaking_2 p {
  margin: 10px 0 50px;
  max-width: 400px;
  color: #181818;
}

.breaking_2 .bt {
  font-size: 18px;
  padding: 10px 40px;
  border-radius: 6px;
}

.breaking_2 .icon {
  position: absolute;
  top: 0;
  left: 0;
}

.breaking_2 .block {
  background: linear-gradient(96.98deg, #F2F9F4 0%, #E6F3EA 100%);
  overflow: hidden;
  border-radius: 10px;
  padding: 115px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  align-items: center;
  position: relative;
}

.breaking_2 .img {
  position: absolute;
  bottom: unset;
  right: 0;
}

.breaking_2 .info {
  color: #fff;
  width: 50%;
}

.breaking_2 strong {
  font-weight: 600;
  font-size: 34px;
  line-height: 48px;
  color: #181818;
}

.breaking_3 {
  margin-bottom: 50px;
	padding-top: 50px;
}

.breaking_3 p {
  margin: 10px 0 50px;
  max-width: 400px;
}

.breaking_3 .bt {
  font-size: 18px;
  padding: 10px 40px;
  border-radius: 6px;
}

.breaking_3 .icon {
  position: absolute;
  top: 0;
  left: 0;
}

.breaking_3 .block {
  background: linear-gradient(91.3deg, #6EC986 0%, #5FBD78 100%);
  overflow: hidden;
  border-radius: 10px;
  padding: 115px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  align-items: center;
  position: relative;
}

.breaking_3 .img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.breaking_3 .info {
  color: #fff;
  width: 50%;
}

.breaking_3 strong {
  font-weight: 600;
  font-size: 34px;
  line-height: 48px;
}

.breaking_4 {
  margin-bottom: 50px;
}

.breaking_4 p {
  margin: 10px 0 50px;
  max-width: 400px;
  line-height: 22px;
}

.breaking_4 .bt {
  font-size: 18px;
  padding: 10px 40px;
  border-radius: 6px;
}

.breaking_4 .icon {
  position: absolute;
  top: 0;
  left: 0;
}

.breaking_4 .block {
  background: linear-gradient(91.3deg, #7BD2F8 0%, #5DBBE9 44.79%, #67BCEC 100%), linear-gradient(91.3deg, #5CBFE9 0%, #3AA0DA 100%);
  overflow: hidden;
  border-radius: 10px;
  padding: 115px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  align-items: center;
  position: relative;
}

.breaking_4 .img {
  position: absolute;
  bottom: unset;
  right: 0;
}

.breaking_4 .info {
  color: #fff;
  width: 50%;
}

.breaking_4 strong {
  font-weight: 600;
  font-size: 34px;
  line-height: 48px;
}

.we_numbers {
  margin-bottom: 50px;
}

.we_numbers .block {
  text-align: center;
  padding: 50px 135px 70px;
  background: #F7F7F7;
  border-radius: 10px;
}

.we_numbers .block strong {
  font-weight: 600;
  font-size: 26px;
  color: #181818;
}

.we_numbers .block p {
  font-size: 16px;
  line-height: 22px;
  color: #181818;
  max-width: 700px;
  margin: 20px auto 50px;
}

.we_numbers .block span {
  font-size: 16px;
  color: #181818;
}

.we_numbers .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.we_numbers b {
  display: block;
  font-weight: 600;
  font-size: 46px;
  line-height: 64px;
  background: linear-gradient(91.3deg, #6EC986 0%, #5FBD78 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 10px;
}

.content {
  color: #181818;
}

.content strong {
  margin: 30px 0 20px;
  display: block;
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  max-width: 650px;
}

.content p {
  font-size: 16px;
  line-height: 22px;
}

.content p span {
  color: #5FBD78;
}

.content li {
  line-height: 22px;
}

.advantage {
  text-align: center;
  color: #181818;
  margin-bottom: 100px;
}

.advantage strong {
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
}

.advantage p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  max-width: 712px;
  margin: 20px auto 55px;
}

.advantage b {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}

.advantage img {
  margin-bottom: 20px;
}

.advantage .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.advantage .list .item:not(:last-of-type) {
  margin-right: 100px;
}

.service_all strong {
  font-weight: 600;
  font-size: 26px;
  color: #000;
  display: block;
  margin-bottom: 30px;
}

.service_all .list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
}

.service_all .list a {
  display: block;
  padding: 25px 0 50px;
}

.service_all .list .item {
  background: #EEEEEE;
  border-radius: 10px;
}

.service_all .list .img {
  width: 196px;
  height: 196px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(310.79deg, #E2E2E2 0%, #EEEEEE 93.65%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
}

.service_all .list .img img {
  width: 100%;
  position: absolute;
}

.service_all .list span {
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}

.full_gallery {
  background: linear-gradient(96.98deg, #F4F4F4 0%, #E7E7E7 100%);
}

.full_gallery .bt {
  padding: 10px 40px;
  border-radius: 6px;
}

.full_gallery .info {
  margin-left: calc((100vw - 1180px) / 2);
  width: 435px;
}

.full_gallery .img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.full_gallery .img img {
  float: right;
  max-height: 380px;
}

.full_gallery .list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 40px;
}

.full_gallery .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.full_gallery .list li img {
  margin-right: 16px;
}

.full_gallery .list li:not(:last-child) {
  margin-bottom: 25px;
}

.full_gallery .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 93px 0;
  position: relative;
}

.full_gallery strong {
  font-weight: 600;
  font-size: 44px;
  line-height: 140%;
  color: #181818;
  display: block;
  margin-bottom: 30px;
}

.full_gallery .slick-dots {
  bottom: 30px;
  height: auto;
}

.full_gallery .slick-track{
  display: flex;
}

.full_gallery .slick-slide {
  overflow: hidden;
  height: auto;
}

.full_gallery .slick-slide > div{
  height: 100%;
}

.full_gallery .slick-slide .item{
  height: 100%;
}

.slick-dots li {
  width: 10px;
  height: 10px;
  background: rgba(96, 96, 96, 0.2);
  border-radius: 50%;
}

.slick-dots li.slick-active {
  background: #606060;
}

.slick-dots li button::before {
  content: none;
}

.banner {
  background: linear-gradient(96.98deg, #F4F4F4 0%, #E7E7E7 100%);
  border-radius: 10px;
  padding: 70px 100px;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}

.banner h2 {
  font-size: 34px;
  line-height: 41px;
  margin: 0;
  margin-bottom: 25px;
}

.banner h3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  margin: 0;
  color: #181818;
  margin-bottom: 10px;
}

.banner .bt_group .bt {
  border-radius: 30px;
  padding: 8px 26px;
  font-size: 16px;
}

.banner .bt_group .bt:first-of-type {
  margin-right: 16px;
}

.banner .list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.banner .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner .list li:not(:last-child) {
  margin-bottom: 15px;
}

.banner .list li img {
  margin-right: 16px;
}

.banner .bt {
  border-radius: 6px;
  padding: 10px 40px;
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  margin-top: 40px;
}

.banner strong {
  font-weight: 600;
  font-size: 34px;
  line-height: 41px;
  color: #181818;
  display: block;
  margin-bottom: 15px;
}

.banner strong span {
  color: #4BB354;
}

.banner p {
  font-size: 18px;
  line-height: 25px;
  color: #181818;
  margin: 0;
}

.banner .img {
  position: absolute;
}

.banner .list_map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.banner .list_map .item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 9px 18px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.banner .list_map .item:not(:last-of-type) {
  margin-right: 16px;
}

.banner .list_map .item img {
  margin-right: 10px;
}

.banner .list_map .item span {
  font-size: 14px;
  line-height: 126%;
  color: #181818;
}

#reviews .contact_footer {
  margin-bottom: 100px;
}

#reviews .breadcrumbs {
  margin-bottom: 40px;
}

#reviews .banner .img {
  right: 0;
  bottom: -3px;
}

h2 {
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  color: #181818;
  display: block;
  margin: 0;
  margin-bottom: 30px;
}

.faq {
  max-width: 980px;
  width: 100%;
  margin: 0 auto 55px;
}

.faq .list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq .list li {
  border-bottom: 1px solid #F6F6F6;
}

.faq .list li.active .minus {
  display: block;
}

.faq .list li.active .plus {
  display: none;
}

.faq .list li.active .title span {
  color: #4BB354;
}

.faq .list .minus {
  display: none;
}

.faq .list p {
  margin: 0;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 22px;
  color: #181818;
}

.faq .list .text {
  display: none;
}

.faq .list .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 16px 0;
}

.faq .list .title span {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #181818;
}

.slick-arrow {
  background: #5FBD78;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slick-arrow:hover, .slick-arrow:active, .slick-arrow:focus {
  opacity: 0.7;
  background: #5FBD78;
}

.slick-arrow::before {
  content: '';
  display: block;
  opacity: 1;
  width: 16px;
  height: 16px;
  background: url(../../img/gallary_arrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.slick-prev {
  left: -15px;
}

.slick-next {
  right: -15px;
}

.slick-next::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.gallery_reviws {
  background: #F6F6F6;
  padding: 50px 0 80px;
  margin-bottom: 100px;
}

.gallery_reviws .slick-dots {
  bottom: -40px;
}

.gallery_reviws .item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  display: -ms-grid !important;
  display: grid !important;
}

.gallery_reviws .item p {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  color: #181818;
}

.gallery_reviws .item .text {
  margin-bottom: 16px;
}

.gallery_reviws .item .name {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #181818;
}

.gallery_reviws .item .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 6px 0;
}

.gallery_reviws .item .stars .star:not(:last-of-type) {
  margin-right: 6px;
}

.gallery_reviws .item .stars .star.active path {
  fill: #F8E859;
}

.gallery_reviws .item .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.gallery_reviws .item .bottom a {
  font-size: 14px;
  line-height: 20px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #4BB354;
}

.gallery_reviws .item .img {
  width: 68px;
  height: 68px;
  margin-right: 12px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery_reviws .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gallery_reviws .slick-track .slick-slide {
  height: auto;
  padding: 0 10px;
}

.gallery_reviws .slick-track .slick-slide > div {
  height: 100%;
}

.gallery_reviws .slick-track .slick-slide .item {
  height: 100%;
}

#warranty {
  padding-bottom: 100px;
}

#warranty .content {
  margin-bottom: 120px;
}

#warranty .advantage {
  margin-bottom: 120px;
}

#warranty .banner {
  padding: 100px;
}

#warranty .banner .img {
  right: 0;
  bottom: 0;
}

#phone-repair {
  padding-bottom: 70px;
}

#phone-repair .banner {
  padding: 80px 100px;
}

#phone-repair .banner .img {
  right: 0;
  bottom: -3px;
}

#phone-repair .brend {
  margin-bottom: 70px;
}

#phone-repair .content {
  margin-bottom: 70px;
}

.brend .list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.brend a {
  display: block;
  text-align: center;
}

.brend span {
  display: block;
}

.brend .item {
  text-align: center;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  padding: 22px 15px;
}

.brend .item b {
	display: none;
}


.brend .item img {
  margin-bottom: 0px;
}

.brend .item span {
  font-size: 16pxß;
  line-height: 22px;
  text-align: center;
  color: #000000;
  display: none;	
}

#phone-model {
  padding-bottom: 70px;
}

#phone-model .model {
  margin-top: 30px;
}

#phone-model .model .list {
  margin-top: 30px;
}

#phone-model .content {
  margin-bottom: 70px;
}

.model {
  margin-bottom: 50px;
}

.model strong {
  font-size: 26px;
  line-height: 36px;
  color: #181818;
  display: block;
  margin-bottom: 10px;
}

.model a {
  display: block;
}

.model p {
  margin: 0;
  font-size: 16px;
}

.model .list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.model .list .item {
  text-align: center;
  background: #EEEEEE;
  border-radius: 10px;
  padding: 25px 45px;
}

.model .list span {
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #181818;
}

.model .list img {
  width: 100%;
  margin-bottom: 20px;
  max-height: 139px;
}

#phone-inner {
  padding-bottom: 70px;
}

#phone-inner .banner .img {
  right: 0;
  bottom: -60px;
}

#phone-inner .banner .img img{
  height: 320px;
}

#phone-inner .text-list_price {
  margin-bottom: 70px;
  margin-top: 30px;
}

.text-list_price {
  font-size: 14px;
  line-height: 20px;
  color: #585858;
}

.text-list_price p {
  margin: 0;
}

.list_price {
  border: 1px solid #EEEEEE;
	margin-bottom: 50px;
}

.list_price .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list_price .item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list_price .item .title img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.list_price .item .text p {
  padding-left: 35px;
}

.list_price .item > div {
  padding: 16px 15px;
  font-size: 16px;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list_price .item .price {
  width: 18.3%;
}

.list_price .item .price span {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #4BB354;
}

.list_price .item .warranty {
  width: 18%;
  border-right: 1px solid #EEEEEE;
}

.button_uz_price {
color: #699075;
    border: 1px solid #699075;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    font-size: 14px;
}

.button_uz_price path {
	fill: #699075;
}

.button_uz_price:hover path {
	fill: #ffffff;
}

.button_uz_price p {
	margin: 0;
}

.button_uz_price:hover {
	color: #ffffff;
	background: #699075;
}

.list_price .item .warranty p {
  margin: 0;
	color: #4bb354;
    font-weight: 700;
}

.list_price .item .price {
    width: 18%;
    border-right: 1px solid #EEEEEE;
}

.list_price .item .clock {
  width: 26.2%;
  border-right: 1px solid #EEEEEE;
}

.list_price .item.info .clock::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../../img/time-icon.png);
  background-position: center;
  background-size: contain;
  margin-right: 10px;
}

.list_price .item.info .warranty span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list_price .item.info .warranty span::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../../img/shield-icon.png);
  background-position: center;
  background-size: contain;
  margin-right: 10px;
}

.list_price .item .service {
  width: 37.5%;
  padding-right: 45px;
  border-right: 1px solid #EEEEEE;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
}

.list_price .item .service img {
  margin-right: 10px;
  max-width: 40px;
}

.list_price .item:nth-of-type(2n+1) {
  background: #F7F7F7;
}

.list_price .item:not(:last-of-type) {
  border-bottom: 1px solid #EEEEEE;
}

#laptop-repair {
  padding-bottom: 70px;
}

#laptop-repair .brend {
  margin-bottom: 50px;
}

#laptop-repair .banner .img {
  right: 50px;
}

#laptop-repair .repair_list {
  margin-bottom: 0px;
}

#laptop-repair .content {
  margin-bottom: 100px;
}

#laptop-repair .breaking_2 .img {
  right: 70px;
  bottom: -4px;
}

.repair_list .list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.repair_list .item {
  background: #EEEEEE;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
}

.repair_list .item .img {
  text-align: right;
  transform: translateX(55px);
}

.repair_list .item .img img{
  max-height: 200px;
}

.repair_list .item .info {
  padding: 0 20px 30px;
  align-self: end;
}

.repair_list .item .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #181818;
  margin-bottom: 10px;
  max-width: 210px;
}
.repair_list .item .title a {
	color: #181818;
}

.repair_list .item .price {
  font-size: 20px;
  line-height: 23px;
  color: #181818;
  margin-bottom: 20px;
}

.repair_list .item .bt {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  padding: 8px 24px;
  border-radius: 6px;
}

.repair_list .item .bt span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.repair_list .item .bt span::after {
  content: '';
  display: block;
  background: url(../../img/next_view_arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 11px;
  margin-left: 10px;
}

#laptop-inner {
  padding-bottom: 70px;
}

#laptop-inner .banner {
  margin-bottom: 70px;
}

#laptop-inner .banner .img {
  right: 95px;
  bottom: unset;
}

#laptop-inner .banner p {
  margin-bottom: 27px;
  max-width: 480px;
}

#laptop-inner .content {
  margin-bottom: 100px;
}

#laptop-inner .breaking_2 .img {
  right: 70px;
  bottom: -4px;
}

#tablet-repair {
  padding-bottom: 70px;
}

#tablet-repair .brend {
  margin-bottom: 50px;
}

#tablet-repair .repair_list {
  margin-bottom: 70px;
}

#tablet-repair .banner {
  margin-bottom: 50px;
}

#tablet-repair .banner .img {
  right: 130px;
  bottom: unset;
}

#tablet-repair .content {
  margin-bottom: 70px;
}

#tablet-repair .breaking_2 .img {
  right: 100px;
  bottom: -4px;
}

#tablet-repair .breaking_2 .block {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#tablet-repair .breaking_2 .img {
  bottom: unset;
}

#tablet-inner {
  padding-bottom: 70px;
}

#tablet-inner .banner {
  margin-bottom: 50px;
}

#tablet-inner .banner .img {
  right: 130px;
  bottom: unset;
}

#tablet-inner .content {
  margin-bottom: 70px;
}

#tablet-inner .breaking_2 .img {
  right: 100px;
  bottom: unset;
}

#pc-repair {
  padding-bottom: 70px;
}

#pc-repair .banner {
  margin-bottom: 50px;
}

#pc-repair .banner .img {
  right: 130px;
  bottom: unset;
}

#pc-repair .repair_list {
  margin-bottom: 0px;
}

#pc-repair .content {
  margin-bottom: 70px;
}

#pc-repair .breaking_2 .img {
  bottom: unset;
  right: 150px;
}

#pc-inner {
  padding-bottom: 70px;
}

#pc-inner .banner p {
  max-width: 480px;
  margin-bottom: 25px;
}

#pc-inner .banner .img {
  right: 50px;
}

#pc-inner .content {
  margin-bottom: 70px;
}

#pc-inner .breaking_2 .img {
  bottom: unset;
  right: 150px;
}

#ps-xbox-repair {
  padding-bottom: 70px;
}

#ps-xbox-repair .banner .img {
  right: 50px;
}

#ps-xbox-repair .brend .list {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

#ps-xbox-repair .brend {
  margin-bottom: 70px;
}

#ps-xbox-repair .content {
  margin-bottom: 70px;
}

#ps-xbox-repair .breaking_2 .img {
  top: 0;
  right: 100px;
}

#xbox-ps-inner {
  padding-bottom: 70px;
}

#xbox-ps-inner .banner {
  margin-bottom: 70px;
}

#xbox-ps-inner .banner .img {
  right: 30px;
  bottom: unset;
}

#xbox-ps-inner .banner p {
  margin-bottom: 27px;
  max-width: 480px;
}

#xbox-ps-inner .content {
  margin-bottom: 70px;
}

.step_device {
  padding: 50px;
  background: #F7F7F7;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 50px;
}

.step_device .arrow {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

.step_device h3 {
  margin: 0 auto;
  margin-bottom: 40px;
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  text-align: center;
  color: #000000;
  width: 370px;
}

.step_device .number {
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  color: #FFFFFF;
  border-radius: 50%;
  background: linear-gradient(91.3deg, #6EC986 0%, #5FBD78 100%);
  width: 66px;
  height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 20px;
}

.step_device strong {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #181818;
}

.step_device p {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #000000;
}

.step_device .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.step_device .block .item {
  width: 300px;
}

#ps-xbox-page {
  padding-bottom: 70px;
}

#ps-xbox-page .repair_list {
  margin-bottom: 0px;
}

#ps-xbox-page .banner {
  margin-bottom: 50px;
}

#ps-xbox-page .banner h3 {
  max-width: 280px;
}

#ps-xbox-page .banner .img {
  right: 100px;
  bottom: unset;
}

#ps-xbox-page .banner .img img {
  max-height: 200px;
}

#ps-xbox-page .breaking_3 .img {
  right: 55px;
  bottom: unset;
}

#iqos_inner {
  padding-bottom: 70px;
}

#iqos_inner .banner {
  margin-bottom: 70px;
}

#iqos_inner .banner .img {
  right: 30px;
  bottom: unset;
}

#iqos_inner .banner p {
  margin-bottom: 27px;
  max-width: 480px;
}

#iqos_inner .content {
  margin-bottom: 70px;
}

#iqos_repair {
  padding-bottom: 70px;
}

#iqos_repair .banner {
  margin-bottom: 70px;
}

#iqos_repair .banner .img {
  right: 100px;
  bottom: unset;
}

#iqos_repair .content {
  margin-bottom: 70px;
}

#iqos_repair .repair_list {
  margin-bottom: 0px;
}

#iqos_repair .breaking_2 .img {
  right: 100px;
}

.list_contact {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  margin: 80px 0 70px;
}

.list_contact .title {
  font-size: 16px;
  line-height: 19px;
  display: block;
  margin-bottom: 10px;
}

.list_contact strong {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #181818;
}

.list_contact strong a {
  color: #181818;
}

#contact .map {
  height: 420px;
  margin-bottom: 70px;
}

#contact .contact_footer {
  padding-top: 20px;
}

#contact .contact_footer .info {
  width: 450px;
  padding: 0;
  background: unset;
}

#service-company .service {
  margin-bottom: 70px;
}

#service-company .service strong {
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  color: #181818;
  display: block;
  margin-bottom: 40px;
}

#service-company .service .list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 40px;
}

#service-company .service .item img {
  border-radius: 10px;
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  margin-bottom: 20px;
}

#service-company .service .item span {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#service-company .service .item span::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  margin-left: 12px;
  background: url(../../img/service_company_arrows.png);
  background-position: center;
  background-size: contain;
}

#service-company {
  padding-bottom: 70px;
}

#service-company .content {
  margin-bottom: 70px;
}

#service-company .banner .img {
  right: 50px;
}

#service-company .banner .bt {
  margin-top: 75px;
}

#service-company .breaking_4 .img {
  right: 100px;
}

#field-repair {
  padding-bottom: 70px;
}

#field-repair .content {
  margin-bottom: 70px;
}

#field-repair .service_all {
  margin-bottom: 70px;
}

#field-repair .service_all .list .item:last-of-type {
  -ms-grid-column: unset !important;
      grid-column-start: unset !important;
}

#field-repair .banner p {
  max-width: 490px;
  margin-bottom: 25px;
}

#field-repair .banner .img {
  right: 100px;
}

.contact_form {
  background: linear-gradient(91.3deg, #53C972 0%, #5FBD78 100%);
  margin-bottom: 70px;
}

.contact_form .icon {
  position: absolute;
}

.contact_form .icon_1 {
  top: 0;
  left: 0;
}

.contact_form .icon_2 {
  display: none;
  bottom: 0;
  right: 0;
}

.contact_form .block {
  position: relative;
  padding: 50px 100px;
}

.contact_form .form {
  max-width: 480px;
  position: relative;
  z-index: 9;
  text-align: center;
}

.contact_form .form .bt {
  border-radius: 30px;
  margin-top: 10px;
  padding: 11px;
  width: 100%;
  font-size: 16px;
}

.contact_form .form input {
  width: 100%;
  margin-bottom: 20px;
}

.contact_form .form h2 {
  font-weight: 600;
  font-size: 34px;
  line-height: 41px;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.contact_form .form p {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  margin: 0 auto;
  margin-bottom: 30px;
  max-width: 380px;
}

.contact_form .img {
  position: absolute;
  bottom: -4px;
  right: -50px;
}
/*# sourceMappingURL=style.css.map */

#adminmenumain #edittag h2{
  ackground: #ccc;
  padding: 10px;
}

.wpcf7 form .wpcf7-response-output{
  display: none;
}

.wpcf7-form-control-wrap span{
  display: none;
}

input.wpcf7-not-valid{
  border: 1px solid #c92121;
}

input.wpcf7-not-valid::placeholder{
  color: #c92121;
}

.modal .modal-body .modal-default{
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 10px;
  padding: 40px 30px 30px;
  position: relative;
}

.modal .modal-body .modal-default .close{
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.modal .modal-body .modal-default .close:hover {
  opacity: 0.7;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#page-stock, #our-service{
  padding-bottom: 70px;
}

#page-stock h2{
  margin-bottom: 5px;
}

.stock{
  margin: 50px 0 70px;
}

.stock .list{
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.stock .list .item{
  background: linear-gradient(96.98deg, #F4F4F4 0%, #E7E7E7 100%);
  border-radius: 10px;
  padding: 25px;
}

.stock .list .item strong{
  font-size: 18px;
}

#our-service .body{
  margin-bottom: 70px;
}

#our-service .gallery{
  margin: 50px 0;
}

#our-service .gallery .item{
  padding: 0 5px;
}

#our-service .gallery .item img{
  width: 100%;
}

.posts .list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 25px;
}

.posts .list .item{
  background: #eeeeee;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px 20px;
  display: grid;
}

.posts .list .item .title{
  color: #181818;
  font-weight: 600;
}

.posts .list .item p{
  color: #181818;
  line-height: 22px;
  font-size: 14px;
  text-align: justify;
}

.posts .item .bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  align-self: end;
}

.posts .item .bt{
  padding: 5px 15px;
  font-size: 14px;
  border-radius: 30px;

}

.posts .item .date{
  font-size: 14px;
  opacity: 0.7;
}

.posts .list img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.posts{
  margin-bottom: 70px;
}

#page-posts{
  padding-bottom: 70px;
}
#page-posts .body{
  margin-bottom: 70px;
}
#page-posts .content strong{
  max-width: unset !important;
}

.modal#thenks p{
  text-align: center;
}

#livesklad-widget #widget_iframe{
  width: 100%;
  margin-top: 50px;
}

.ls-widget{
  border: 0 !important;
}

.mob-cal-block {
	display: none;
}
.osh-block {
	display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
}
.title-h1 {
	font-size: 80px;
    line-height: 120%;
    margin: 0;
	color: #728F78;
}
.osh-txt {
	font-size: 30px;
    line-height: 120%;
}
.osh-button {
	display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 200px;
    background: linear-gradient(91.3deg, #6EC986 0%, #5FBD78 100%);
    border-radius: 5px;
    color: #fff;
    margin-top: 20px;
}
.soc-mob-new {
	display: none;
}
.menu_header ul svg {
    width: 36px;
    height: 36px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 10px;
	fill: #ffffff !important;
}
.menu_header ul svg path {
	fill: #ffffff !important;
}
