@charset "UTF-8";
/* Fonts */
@font-face {
  font-family: "Proxima Nova";
  src: url(/fonts/ProximaNova-Light.ttf) format("ttf"), url(/fonts/ProximaNova-Light.woff) format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(/fonts/ProximaNova-Regular.ttf) format("ttf"), url(/fonts/ProximaNova-Regular.woff) format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(/fonts/ProximaNova-Semibold.ttf) format("ttf"), url(/fonts/ProximaNova-Semibold.woff) format("woff");
  font-weight: 600;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(/fonts/ProximaNova-Bold.ttf) format("ttf"), url(/fonts/ProximaNova-Bold.woff) format("woff");
  font-weight: 700;
}
/* Variables */
.feedback-item__content p, .malfunction-request__description figure figcaption p, main .service-list li figure figcaption, header .info p {
  font-weight: 400;
  font-size: 16px;
  color: #030000;
}

.malfunction-item .content ul li, main .director .content .name::after {
  font-weight: 400;
  font-size: 18px;
  color: #151515;
}
.recaptcha-block {
    display: none;
}
.advantages figure figcaption h4, .advantages .subtitle, .malfunction-request__description figure figcaption h4 {
  font-weight: 700;
  font-size: 20px;
  color: #151515;
}
.personal {
    text-align: center;
    color: #28a745;
    /* display: none; */
    font-size: 20px;
    font-weight: bold;
}
.button {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}


.map .request p, .fixed-contacts .nav-list, .advantages figure figcaption p, main .trouble-list li, .call-me-back a, .logo p, .popup-inner p {
  font-weight: 300;
  font-size: 16px;
  color: #151515;
}

.feedback-item__2 .signature, .feedback-item__3 .signature, .feedback-item .signature, main .director .content .place::after, main .director .content .place, .mobile-number p,
.mobile-number a, .call-me-back p {
  font-weight: 400;
  font-size: 14px;
  color: #585858;
}

.fixed-contacts .number strong, .feedback-item__content h4, .malfunction-item .content h4 {
  font-weight: 700;
  font-size: 22px;
  color: #151515;
}

main h1 {
  font-weight: 700;
  font-size: 47px;
  color: #151515;
}

.title {
  font-weight: 700;
  font-size: 43px;
  color: #151515;
}

/* Settings */
body {
  margin: 0;
  padding: 0;
  font-family: Proxima Nova, sans-serif;
  position: relative;
  overflow-x: hidden;
}

:root {
  --animate-delay: 0.2s;
}

h1,
h2,
h3,
h4,
h4,
h5,
h6,
p,
span,
button,
ul,
li {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
.title {
  text-align: center;
}
.title span {
  color: #f0b128;
}
a.btn-call {
    cursor: pointer;
}
.popup {
  position: fixed;
  z-index: 1999;
  background-color: rgba(0, 0, 0, 0.4);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.popup_active {
  opacity: 1;
  visibility: visible;
}
.popup-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 400px;
  padding: 30px 40px;
  background: #fff;
  border-radius: 12px;
}
.popup-inner input[type=text] {
  margin-bottom: 20px;
}
.popup-inner input[type=phone] {
  margin-top: 20px;
}
.popup-inner .title {
  font-size: 25px;
  margin-bottom: 25px;
}
.popup-inner .button {
  position: relative;
  height: 93%;
  top: -2px;
}
.popup-inner input[type=text],
.popup-inner input[type=email] {
  text-align: center;
}
.popup-inner input[type=phone] {
  padding-left: 95px;
}
.popup-inner .button {
  margin: 0 auto;
  height: 40px;
  display: block;
  margin-bottom: 15px;
}
.popup-inner .private {
  text-align: center;
  font-size: 12px;
}
.popup-inner .private strong {
  color: #62a3fb;
}
.popup-inner input {
  padding: 20px 60px;
  width: auto;
  background-color: #f8f8f8;
  border: none;
  border-radius: 8px;
  height: 100%;
  margin-right: 15px;
  width: 300px;
}
.popup-inner input:focus {
  outline: none;
}
.popup .close {
  position: absolute;
  right: 0;
  z-index: 3000;
  top: 0;
  cursor: pointer;
}
.popup .close::after, .popup .close::before {
  content: "";
  width: 6px;
  position: absolute;
  right: 20px;
  top: 10px;
  height: 22px;
  background: #000;
}
.popup .close::after {
  transform: rotateZ(45deg);
}
.popup .close::before {
  transform: rotateZ(-45deg);
}

.button {
  width: 250px;
  height: 70px;
  padding: 10px;
  background: linear-gradient(to top, #62a3fb 0%, #357fdd 6%, #62a3fb);
  box-shadow: 0em 0.2em 0em #3a79c8;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  transition: 0.3s;
}
.button:hover {
  background: linear-gradient(to top, #7ba6e7 0%, #5a9ef7 6%, #7ba6e7);
  box-shadow: 0em 0.2em 0em #5a9ef7;
  font-size: 13px;
}
.button:focus {
  outline: none;
}

.social-links ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.social-links ul li {
  margin-right: 5px;
}
.social-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  transition: 0.2s;
}
.social-links ul li a:hover {
  font-size: 23px;
}
.social-links ul li:last-child {
  margin-right: 0;
}
.social-links ul li .fa-viber {
  background-color: #7c529e;
}
.social-links ul li .fa-whatsapp {
  background-color: #4bc161;
}
.social-links ul li .fa-telegram-plane {
  background-color: #2caeed;
}

.input-phone {
  margin-top: 25px;
  margin-bottom: 10px;
  border: none;
  border-radius: 6px;
  width: 240px;
  height: 70px;
  padding: 0 60px;
  background-position: calc(0% + 50px) 48%;
  background-repeat: no-repeat;
}
.malfunction-request__input input[type="text"]{
  margin-top: 10px;
  border: none;
  border-radius: 6px;
  width: 240px;
  height: 70px;
  padding: 0 60px;
  background-position: calc(0% + 50px) 48%;
  background-repeat: no-repeat;
}
.input-phone:focus {
  outline: none;
}

.logo img{
  max-width: 210px;
  margin-right: 20px;
}
@media (max-width: 440px){
  .logo img{
    max-width: 180px;
  }
}
.logo{
  text-align: center;
}
.call-me-back {
  text-align: right;
}
.call-me-back .text {
  position: relative;
}
.call-me-back p strong {
  font-size: 27px;
  font-weight: 700;
  color: #030000;
}
.call-me-back p:first-child {
  position: absolute;
  top: -20px;
  right: 0;
}
.call-me-back a {
  position: absolute;
  font-weight: 600;
  right: 15px;
  padding: 13px 25px;
  margin-top: 15px;
  background: linear-gradient(to top, #ffd76a 0%, #f6bd37 6%, #ffe28f);
  box-shadow: 0em 0.2em 0em #e2b039;
  border-radius: 8px;
  text-shadow: 1px 1px 1px #fff;
  transition: 0.2s;
}
.call-me-back a:hover {
  background: linear-gradient(to top, #ffd76a 0%, #fac74f 6%, #ffe28f);
  box-shadow: 0em 0.2em 0em #fac74f;
  font-size: 15px;
}

.mobile-number {
  text-align: right;
}
.mobile-number p,
.mobile-number a {
  font-size: 12px;
}
.mobile-number p strong,
.mobile-number a strong {
  font-size: 18px;
  font-weight: 700;
  color: #030000;
}

/* Header */
header {
  position: absolute;
  padding: 30px 0;
  left: 50%;
  transform: translateX(-50%);
}
header .row {
  align-items: center;
}
header .info {
  display: flex;
  align-items: center;
}
header .info img {
  margin-right: 20px;
}
header .info p:last-child {
  font-weight: 300;
}

/* Main */
main {
  padding-top: 190px;
  background-image: url(../img/main-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
main .row {
  position: relative;
}
main-inner {
  position: relative;
}
main h1 a {
  color: #3fa4ea;
}
main h1 a:hover {
  color: #3fa4ea;
  text-decoration: underline;
}
main .auto-input {
  height: 80px;
  padding: 22px 45px;
  margin-top: 30px;
  margin-bottom: 20px;
  border-radius: 40px;
  background: #fff;
  border: 1px solid #f7f7f6;
  background-image: url(../img/search.png);
  background-position: calc(100% - 40px);
  background-repeat: no-repeat;
}
main .auto-input span {
  font-size: 22px;
}
main .trouble-list {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
main .trouble-list li {
  position: relative;
  margin-right: 20px;
}
main .trouble-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(70%, -50%);
  width: 8px;
  height: 8px;
  background-color: #fede86;
  border-radius: 50%;
}
main .trouble-list li:last-child {
  margin-right: 0;
}
main .trouble-list li:last-child::after {
  content: none;
}
main .title {
  text-align: left;
  margin-bottom: 60px;
}
main .director {
  position: absolute;
  bottom: 15%;
  right: 8%;
}
main .director img {
  width: 150%;
  bottom: 0;
}
main .director .content {
  position: absolute;
  bottom: 27%;
  left: 55%;
}
main .director .content .name {
  position: relative;
  z-index: 2;
  transform: skewX(-16deg);
  width: 180px;
  height: 50px;
  box-shadow: -3px 6px 10px rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 5px;
}
main .director .content .name::after {
  content: "Роман Сас";
  position: absolute;
  left: 15%;
  top: 50%;
  z-index: 3;
  transform: skewX(16deg) translateY(-50%);
}
main .director .content .place {
  position: relative;
  right: 50px;
  bottom: 9px;
  z-index: 1;
  width: 210px;
  height: 45px;
  border-radius: 5px;
  box-shadow: -3px 6px 10px rgba(0, 0, 0, 0.12);
  transform: skewX(-16deg);
  background: #f5f5f5;
}
main .director .content .place::after {
  content: "Руководитель";
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 10%;
  transform: skewX(16deg) translateY(-50%);
  color: #262626;
}
main .wrapper-service-item {
  position: relative;
  padding: 40px 25px;
}
main .wrapper-service-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 4px;
  transform: skewX(10deg);
  box-shadow: -4px 0 10px 0px rgba(0, 0, 0, 0.2);
}
main .wrapper-service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 98%;
  height: 96%;
  border: dashed 1px #cfe3fd;
  border-radius: 4px;
  margin: 4px;
  transform: skewX(10deg);
}
main .service-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  bottom: -80px;
}
main .service-list li figure {
  text-align: center;
  display: flex;
  align-items: center;
  padding-right: 1px;
  height: 65px;
}
main .service-list li figure img {
  margin-right: 20px;
}
main .service-list li figure figcaption {
  text-align: left;
}

/* Malfunction */
.malfunction {
  padding-top: 270px;
  padding-bottom: 170px;
  position: relative;
}
.malfunction .ryzen {
  position: absolute;
  left: -5%;
  top: 7%;
  z-index: 11;
}
.malfunction .msi {
  position: absolute;
  right: 0;
  width: 400px;
  bottom: -6%;
  z-index: 11;
}
.malfunction h2 {
  margin-bottom: 70px;
}
.malfunction .slider-logos {
  margin-bottom: 40px;
}
.malfunction .slider-logos .slide {
  height: 90px;
  display: flex;
  border: 1px solid #ededed;
  align-items: center;
  margin: 0 5px;
}
.malfunction .slider-logos .slide img {
  margin: 0 auto;
}
.malfunction .first-child {
  margin-bottom: 25px;
}
.malfunction-inner .content .last-child {
  /* margin-top: 10px; */
}
.malfunction-item img {
  width: 100%;
}
.malfunction-item .content {
  position: absolute;
  left: 55px;
  top: 35px;
  width: 75%;
}
.malfunction-item .content h4 {
  margin-bottom: 30px;
}
.malfunction-item .content .price {
  background-color: #ffe28f;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 16px;
  color: #505050;
  font-weight: 600;
}
.malfunction-item .content ul {
  margin-top: 25px;
  line-height: 1.6;
  min-height: 145px;
}
.malfunction-item .content ul li {
  position: relative;
}
.malfunction-item .content ul li::before {
  content: "•";
  margin-right: 8px;
  position: relative;
  color: #3fa4ea;
}
.malfunction-item .content button {
  margin-top: 40px;
}
.malfunction-request__input {
  display: flex;
  flex-direction: column;
  padding: 0 100px;
  text-align: left;
  justify-content: center;
  background-image: url(../img/malfunction/request-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 4px;
}
.malfunction-request__input .title {
  text-align: left;
  font-size: 34px;
  margin-bottom: 25px;
}
.malfunction-request__input input,
.malfunction-request__input button {
  width: 85%;
  height: 70px;
}
.malfunction-request__input button {
  display: block;
}
.malfunction-request__description {
  background-image: url(../img/malfunction/request-bg_2.png);
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center;
  padding: 70px 75px;
}
.malfunction-request__description figure {
  display: flex;
  margin-top: 50px;
}
.malfunction-request__description figure img {
  margin-right: 10px;
}
.malfunction-request__description figure figcaption h4 {
  margin-bottom: 10px;
}
/* Feedback */
.feedback {
  padding-bottom: 100px;
}
.feedback .title {
  margin-bottom: 65px;
}
.feedback .row {
  justify-content: space-between;
}
.feedback-item {
  box-shadow: 0px 10px 25px -12px rgba(0, 0, 0, 0.3);
  margin: 0;
  margin-bottom: 30px;
  border-radius: 6px;
}
.feedback-item__content p {
  padding-bottom: 0;
}
.feedback-item .signature {
  margin-top: 10px;
  color: #787878;
  font-weight: 400;
  position: relative;
  text-align: right;
  padding: 0;
}
.feedback-item .signature strong {
  font-weight: 700;
}
.feedback-item__2 {
  margin-left: 15px;
}
.feedback-item__3 {
  margin-right: 15px;
}
.feedback-item__2, .feedback-item__3 {
  max-width: 48%;
  border-radius: 6px;
  padding: 0;
  flex: 0 0 48%;
  box-shadow: 0px 10px 25px -12px rgba(0, 0, 0, 0.3);
}
.feedback-item__2 .signature, .feedback-item__3 .signature {
  margin-top: 10px;
  color: #787878;
  font-weight: 400;
  position: absolute;
  right: 35px;
  bottom: 35px;
}
.feedback-item__2 .signature strong, .feedback-item__3 .signature strong {
  font-weight: 700;
}
.feedback-item__img {
  padding: 0;
}
.feedback-item__img img {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 100%;
  height: 100%;
}
.feedback-item__content {
  padding: 35px;
}
.feedback-item__content h4 {
  font-weight: 600;
  position: relative;
  padding-right: 8px;
}
.feedback-item__content h4::after {
  content: url(../img/feedback/quote.png);
  position: absolute;
  right: -10px;
  top: -25px;
}
.feedback-item__content ul {
  display: flex;
  align-items: center;
  margin: 30px 0 25px 0;
}
.feedback-item__content ul li {
  padding: 12px 24px;
  border-radius: 8px;
  margin-right: 8px;
}
.feedback-item__content ul .blue {
  background: #eef5f8;
}
.feedback-item__content ul .red {
  background: #fff5d8;
}
.feedback-item__content p {
  padding-right: 50px;
  padding-bottom: 35px;
}
.feedback-item .first-child {
  padding-bottom: 0;
}
.feedback-item .first-child .signature {
  position: relative;
  bottom: 35px;
}

/* Advantages */
.advantages {
  position: relative;
  padding-top: 100px;
  margin-bottom: 100px;
  background-image: url(../img/main-bg.jpg);
  /*background-image: url(../img/advantages/bg.png);*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.advantages ul {
  margin-bottom: 200px;
}
.advantages .title {
  text-align: left;
  margin-bottom: 30px;
}
.advantages .subtitle {
  font-weight: 400;
  max-width: 420px;
  margin-bottom: 60px;
}
.advantages figure {
  display: flex;
  align-items: center;
}
.advantages figure img {
  margin-right: 15px;
}
.advantages figure figcaption h4 {
  font-weight: 600;
  margin-bottom: 4px;
}
.advantages figure figcaption p {
  max-width: 365px;
}
.advantages .director{
  right: 8%
}
.director img{
  width: 140%;
  margin: 0;
}


/* Contacts */
.contacts {
  text-align: center;
  position: relative;
  height: 350px;
  width: 100%;
}
.contacts .large_phone a{
  font-size: 80px;
  font-weight: 900;
  color: #000;
  margin-top: 30px;
}
@media (max-width: 440px){
  .contacts .large_phone a{
  font-size: 34px;
}
}
.contacts .number {
  margin-top: 30px;
  left: 5%;
  position: relative;
  z-index: 1;
  cursor: pointer;

}
.contacts .social {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 70%;
  z-index: 1;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.contacts .social ul {
  display: flex;
  align-items: center;
}
.contacts .social ul a {
  border-radius: 50%;
  font-size: 40px;
  padding: 40px;
  margin: 0 10px;
  cursor: pointer;
  color: #fff;
  box-shadow: inset 0px 0px 8px 0px #fff;
  transition: 0.2s;
}
.contacts .social ul a:hover {
  font-size: 60px;
  padding: 30px;
}
.contacts .social ul .fa-viber {
  background: radial-gradient(#7054f4, #8778f0);
}
.contacts .social ul .fa-telegram-plane {
  background: radial-gradient(#3e9edd, #16a0fc);
}
.contacts .social ul .fa-whatsapp {
  background: radial-gradient(#60e238, #60ef4b);
}
.contacts .social .hint {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contacts .social .hint img {
  margin-right: 10px;
}
.contacts .social .hint p {
  font-size: 12px;
  color: #a8a8a8;
  font-weight: 300;
  max-width: 220px;
}

.fixed-contacts {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  top: 0%;
  left: 50%;
  z-index: 1111;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 15px 38px -30px rgba(0, 0, 0, 0.28);
  padding: 10px 20px;
  height: 95px;
  border-radius: 8px;
}
.fixed-contacts .contacts-links {
  display: flex;
  align-items: center;
}
.fixed-contacts .contacts-links ul {
  margin-right: 20px;
}
.fixed-contacts ul {
  display: flex;
  align-items: center;
}
.fixed-contacts ul .ref {
  color: #292929;
}
.fixed-contacts ul .ref:hover {
  color: #16a0fc;
}
.fixed-contacts .nav-list {
  color: #292929;
  font-weight: 600;
}
.fixed-contacts .nav-list li {
  margin-right: 25px;
}
.fixed-contacts .nav-list li:last-child {
  margin-right: 0;
}
.fixed-contacts .number {
  text-align: right;
}
.fixed-contacts .number p {
  font-size: 12px;
  font-weight: 400;
  color: #585858;
}
.fixed-contacts .button {
  margin: 0 auto;
  display: block;
}

.fixed-contacts_active {
  opacity: 1;
  visibility: visible;
}

/* Map */
.map {
  position: relative;
}
.map #map {
  box-shadow: inset 0 0 10px 5px rgba(255, 255, 255, 0.966);
}
.map #map img {
  width: 100%;
}
.map .row {
  align-items: center;
}
.map .request {
  position: relative;
  top: -50px;
  margin: 0;
  padding: 0 15px;
}
.map .request-inner {
  padding: 50px 0 100px 0px;
  background-color: #fff;
  box-shadow: 0px 5px 40px 1px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}
.map .request p,
.map .request form {
  height: 70px;
  text-align: center;
  /* height: auto; */
  /* min-height: 70px; */
}
.map .request .button {
  position: relative;
  height: 93%;
  top: -2px;
}
.map .request input[type=text], .map .request input[type=phone] {
  text-align: center;
}
.map .request input {
  padding: 20px 60px;
  width: auto;
  background-color: #f8f8f8;
  border: none;
  border-radius: 8px;
  height: 100%;
  margin-right: 15px;
  width: 300px;
}
.map .request input:focus {
  outline: none;
}
.map .request .input-phone {
  background-position: calc(0% + 80px) 48%;
}

/* Footer */
footer {
  padding: 30px 0;
  background-color: #f6f9fb;
}
footer .row {
  align-items: flex-end;
}
footer .call-me-back {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
footer .call-me-back p:first-child {
  position: relative;
  top: 0;
  right: 0;
}
footer .call-me-back .text {
  display: inline-block;
  margin-right: 30px;
  position: relative;
}
footer .call-me-back a {
  margin: 0;
  position: relative;
  padding: 10px 25px;
  height: 42px;
  /* width: 182px; */
}
footer .call-me-back a:hover {
  font-size: 15px;
  padding: 10px 29px;
}

.result-message {
  position: fixed;
  z-index: 3999;
  top: 50%;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  display: flex;
  padding: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #16a0fc;
  border: 4px solid #0f88d8;
  color: #fff;
  font-size: 18px;
}

@media (min-width: 1921px) {
  .malfunction .ryzen,
.malfunction .msi {
    width: 600px;
  }
}


@media (max-width: 1400px) {
.contacts .number {
  width: 85%;
}
  .map .request form {
    height: auto;
  }
}

@media (max-width: 1280px) {
  .logo svg image {
    width: 100%;
    max-width: 100%;
  }

  .call-me-back p strong {
    font-size: 20px;
  }

  main .wrapper-service-item {
    position: relative;
    padding: 20px 20px;
  }

  .malfunction-item .content ul li,
main .director .content .name::after {
    font-weight: 400;
    font-size: 14px;
    color: #151515;
  }

  .malfunction-item .content h4 {
    font-size: 23px;
  }
  .malfunction-item .content .button {
    width: 200px;
    height: 55px;
    padding: 0;
    margin-top: 10px;
  }

  .malfunction-request__description figure {
    align-items: center;
  }

  .malfunction {
    padding-bottom: 100px;
  }
  .malfunction .ryzen,
.malfunction .msi {
    width: 300px;
  }

  .feedback-item__content h4 {
    padding-right: 66px;
  }
}
@media (max-width: 1200px) {
  .fixed-contacts {
    height: 155px;
  }
  .fixed-contacts .button-block {
    text-align: center;
    margin-top: 10px;
  }
  .fixed-contacts .contacts-links {
    justify-content: flex-end;
  }

  .malfunction-request__input {
    padding: 0 70px;
  }

  .map .request form {
    height: auto;
  }
  .map .request form .button {
    height: 50px;
  }

  .malfunction .title {
    text-align: left;
    margin-bottom: 25px;
  }
  .malfunction .input-phone {
    text-align: center;
    padding-right: 50px;
    padding-left: 50px;
    background-position: calc(0% + 13%) 47%;
    background-repeat: no-repeat;
  }
}
@media (max-width: 991px) {
  .malfunction-item .content .button {
    width: 170px;
    height: 40px;
    padding: 0;
    font-size: 12px;
  }
.map .request-inner {
    padding: 50px 0 50px 0px;
}
.malfunction-item .content ul {
    margin-top: 25px;
    line-height: 1.6;
    min-height: auto;
}
  .logo svg {
    /* margin-right: 10px; */
    /* top: -5px; */
    /* position: relative; */
  }

  .title {
    font-size: 35px;
  }

  main .auto-input {
    height: 60px;
    width: 500px;
    padding: 16px 40px;
  }
  main .auto-input span {
    font-size: 18px;
  }
  main .service-list {
    bottom: -122px;
  }

  .item_3 {
    background-image: url(../img/malfunction/3_small.png);
  }

  .fixed-contacts .social-links {
    margin-right: 60px;
  }

  .item_4 {
    background-image: url(../img/malfunction/5_small.png);
  }

  .item_5 {
    background-image: url(../img/malfunction/4_small.png);
  }

  .item_1 {
    background-image: url(../img/malfunction/1.png);
  }

  .item_2 {
    background-image: url(../img/malfunction/2.png);
  }

  .malfunction-item {
    height: 340px;
    margin-bottom: 30px;
    background-repeat: no-repeat;
    background-position: right;
    border-radius: 10px;
  }
  .malfunction-item .content {
    width: 300px;
    background-color: #edf4f7;
    padding: 10px;
    border-radius: 8px;
    left: 0;
    top: 0;
    height: 100%;
    padding-top: 40px;
    padding-left: 20px;
  }
  .malfunction-item img {
    height: 340px;
  }

  .malfunction-request__input {
    background-size: cover;
    align-items: center;
    padding: 40px 100px;
  }
  .malfunction-request__input input,
.malfunction-request__input .button {
    width: 100%;
  }

  .feedback-item__content {
    background-color: #edf4f7;
  }
  .feedback-item__img {
    height: 280px;
  }
  .feedback-item__img img {
    height: auto;
  }

  .feedback-item__2,
.feedback-item__3 {
    flex: 0 0 100%;
    max-width: 96%;
    margin: 0 auto;
  }

  .feedback-item__2 {
    margin-bottom: 30px;
  }

  .feedback {
    padding-bottom: 30px;
  }

  .advantages figure figcaption p {
    font-size: 14px;
  }
  .advantages figure figcaption h4 {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 18px;
  }

  .contacts .social ul a {
    font-size: 35px;
    padding: 30px;
  }
  .contacts .social ul a:hover {
    font-size: 38px;
    padding: 40px;
  }

  .map .request button,
.map .request input {
    margin-top: 20px;
  }

  .advantages {
    background-position: left;
  }

  .fixed-contacts .nav-list li {
    margin-right: 13px;
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 30px;
  }
.logo p {
    font-size: 14px;
}
  .malfunction .title {
    text-align: center;
  }

  main .button {
    width: 100%;
  }

  .fixed-contacts {
    height: auto;
    top: 0%;
    bottom: auto;
    padding: 0 10px;
  }
  .fixed-contacts .social-links {
    margin-right: 0;
    padding: 15px 0;
  }
  .fixed-contacts .social-links li a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 18px;
  }
  .fixed-contacts .button {
    height: 40px;
    font-size: 13px;
  }
  .fixed-contacts .number p {
    font-size: 13px;
  }
  .fixed-contacts .number strong {
    font-size: 20px;
  }

  .malfunction-request__input {
    align-items: flex-start;
    padding: 40px 70px;
    text-align: center;
    align-items: center;
  }
  .malfunction-request__input form {
    margin: 0 auto;
  }
  .malfunction-request__input .title {
    font-size: 26px;
  }
  .malfunction-request__input p {
    font-size: 16px;
  }

  main {
    padding-top: 150px;
  }
  main h1 {
    font-size: 43px;
  }
  main .auto-input {
    width: auto;
    padding: 16px 20px;
  }
  main .trouble-list li {
    margin-right: 18px;
  }

  .malfunction {
    padding-top: 190px;
  }

  .malfunction-request__description {
    padding: 40px 40px;
  }

  .malfunction {
    padding-bottom: 40px;
  }

  .fixed-contacts .nav-list,
.fixed-contacts .contacts-links {
    justify-content: center;
  }

  main .trouble-list li {
    margin-right: 10px;
  }
  main .trouble-list li::after {
    content: none;
  }

  .feedback-item__img {
    height: 230px;
  }

  .advantages ul {
    margin-bottom: 80px;
  }
}
@media (max-width: 577px) {
  .malfunction-request__input {
    padding: 40px 55px;
  }

  .contacts .number {
    width: 90%;
  }

  .mobile-number p strong,
.mobile-number a strong {
    font-size: 20px;
  }

  .mobile-number p,
.mobile-number a {
    font-size: 10px;
  }

  main {
    padding-top: 120px;
  }

  .main-block {
    height: 81vh;
  }

  .malfunction .title {
    text-align: center;
  }

  .title {
    font-size: 30px;
  }

  main .service-list {
    bottom: 0;
  }

  header {
    padding: 15px 0;
  }

  .logo {
    /* display: flex; */
    /* align-items: flex-end; */
  }


  main h1 {
    font-size: 38px;
  }
  main .trouble-list li {
    margin-right: 18px;
  }

  main .title {
    padding-top: 15px;
    margin-bottom: 20px;
  }

  .malfunction {
    padding-top: 40px;
    padding-bottom: 70px;
  }
  .malfunction h2 {
    margin-bottom: 30px;
  }
  .malfunction-request__input .title {
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .malfunction-request__description {
    padding: 25px 20px;
  }
  .malfunction form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .feedback .title {
    margin-bottom: 35px;
  }
  .feedback-item__img {
    height: 240px;
  }

  .advantages {
    padding-top: 50px;
    margin-bottom: 30px;
    background-position: left;
  }
  .advantages ul {
    margin-bottom: 30px;
  }
  .advantages .title {
    margin-bottom: 20px;
  }
  .advantages .subtitle {
    font-weight: 400;
    max-width: 420px;
    margin-bottom: 30px;
  }

  .contacts .social ul a {
    font-size: 30px;
    padding: 25px;
  }

  .contacts .social {
    top: 50%;
  }

  .fixed-contacts .nav-list {
    justify-content: center;
  }

  .fixed-contacts .contacts-links {
    margin-top: 10px;
    justify-content: center;
  }

  .call-me-back p {
    font-size: 14px;
  }
  .call-me-back p strong {
    font-size: 18px;
  }
}
@media (max-width: 520px) {
  .popup {
    padding: 20px 10px;
  }
  .popup input {
    display: block;
    margin: 0 auto;
    padding: 15px 20px;
    width: 150px;
  }
  .popup .button {
    padding: 0;
    width: 150px;
    margin-top: 20px;
    font-size: 12px;
  }
  .popup .popup-inner input[type=phone] {
    padding-left: 0;
    text-align: center;
    background-image: none;
  }
  .popup .button {
    padding: 0;
  }
  .popup-inner {
    width: 300px;
  }
  .popup .title {
    font-size: 19px;
  }

  .malfunction-request__input {
    padding: 40px 100px;
  }
  .malfunction-request__input .title {
    text-align: center;
  }
}
@media (max-width: 440px) {
  .malfunction-request__description {
    padding: 15px 6px;
  }

  .popup input {
    display: block;
    margin: 0 auto;
    padding: 15px 4px;
    font-size: 13px;
  }
  .popup .popup-inner input[type=phone] {
    padding-left: 0;
    text-align: center;
    background-image: none;
  }
  .popup .button {
    padding: 0;
  }
  .popup-inner {
    width: 250px;
  }
  .popup .title {
    font-size: 19px;
  }
  .popup .private {
    font-size: 9px;
  }
}
@media (max-width: 420px) {
  .fixed-contacts .nav-list li {
    font-size: 13px;
  }
.map .request .input-phone {
  background-position: calc(0% + 25px) 48%;
  padding-left: 0px;
  padding: 15px 60px;
}
  .fixed-contacts .social-links li a {
    font-size: 17px;
  }
  .fixed-contacts .number p {
    font-size: 11px;
  }
  .fixed-contacts .number strong {
    font-size: 17px;
  }

  .result-message {
    font-size: 14px;
    width: 140px;
    height: 140px;
    padding: 15px;
  }

  .service-list {
    bottom: 160px;
  }

  .malfunction-request__input {
    padding: 25px 10px;
  }

  .title {
    font-size: 21px;
  }

  .button {
    height: 55px;
    padding: 15px 20px;
    font-size: 13px;
    width: 100%;
  }

  main {
    padding-top: 100px;
    height: 150vh;
  }
  main .service-list {
    bottom: 180px;
  }
  main h1 {
    font-size: 28px;
  }
  main .auto-input {
    width: auto;
  }
  main .title {
    padding-top: 0;
    font-size: 19px;
  }
  main .trouble-list {
    margin-bottom: 20px;
  }
  main .trouble-list li {
    font-size: 12px;
    margin: 0 5px;
  }
  main .trouble-list li::after {
    content: none;
  }

  .malfunction-request__input p {
    font-size: 13px;
  }

  .malfunction {
    padding-bottom: 20px;
  }

  .malfunction-request__input input,
.malfunction-request__input button {
    height: 55px;
  }

  .malfunction-request__description {
    padding: 10px 10px;
    padding-bottom: 40px;
  }

  .feedback-item__content h4 {
    padding-right: 60px;
    font-size: 18px;
  }

  .feedback-item__content ul li {
    padding: 12px 10px;
    font-size: 14px;
  }

  .feedback-item__content p {
    padding-right: 30px;
    padding-bottom: 35px;
    font-size: 14px;
  }

  .feedback-item__img {
    height: 170px;
  }

  .advantages .subtitle {
    font-size: 16px;
  }

  .advantages figure figcaption h4 {
    font-size: 16px;
  }
  .advantages figure figcaption p {
    font-size: 13px;
  }

  .map .request input {
    padding: 15px 40px;
    width: 240px;
    margin: 0 auto;
    margin-top: 10px;
  }

  .malfunction-item .content {
    left: 35px;
  }

  main .button {
    margin: 0 auto;
    display: block;
  }

  .malfunction-request__input .title {
    font-size: 21px;
    margin-bottom: 25px;
    max-width: fit-content;
  }

  .fixed-contacts .button {
    padding: 0;
  }

  .map .request form .button {
    width: 240px;
    padding: 0;
  }

  .mobile-number p strong,
.mobile-number a strong {
    font-size: 18px;
  }
}
@media (max-width: 380px) {
  .logo p {
    font-size: 12px;
    top: -5px;
    position: relative;
  }
.logo svg {
    margin-right: 10px;
    top: -5px;
    position: relative;
}
  main .auto-input span {
    font-size: 14px;
  }

  main .auto-input {
    height: 52px;
    padding: 12px 20px;
  }

  .popus .button {
    width: 120px;
    font-size: 11px;
  }

  .malfunction-request__description figure {
    flex-direction: column;
    text-align: center;
  }

  .malfunction-request__description {
    background-size: cover;
  }

  .feedback-item__content ul li {
    font-size: 11px;
  }

  .feedback-item__content h4 {
    font-size: 16px;
  }

  .feedback-item__img {
    height: 160px;
  }

  .fixed-contacts .number strong,
.feedback-item__content h4,
.malfunction-item .content h4 {
    font-size: 18px;
  }

  .feedback-item__content ul {
    margin: 10px 0 10px 0;
  }
}
@media (max-width: 405px) {
  .malfunction-request__description {
    padding: 0px 2px;
  }
  .malfunction-request__description figure {
    margin-top: 20px;
  }
.d-sm-none.d-block.mobile-number.col-7 {
    min-height: 50px;
}
  main .service-list li figure figcaption {
    margin: 0 auto;
    margin-top: 10px;
    width: 160px;
  }
}
@media (max-width: 380px) {
  .malfunction-request__description {
    padding: 5px 10px;
  }
}
@media (max-width: 350px) {
  main .auto-input {
    margin-top: 8px;
    margin-bottom: 8px;
  }
}
@media (max-width: 320px) {
  main .service-list li figure img {
    display: none;
  }

  .map .request form .button {
    width: 200px;
  }

  main .service-list li figure figcaption {
    margin: 0 auto;
    margin-top: 10px;
    width: 160px;
  }

  .logo {
    align-items: center;
  }
  .logo p {
    font-size: 11px;
  }

  .title {
    font-size: 18px;
  }

  .mobile-number p,
.mobile-number a {
    font-size: 10px;
  }
  .mobile-number p strong,
.mobile-number a strong {
    font-size: 14px;
    font-weight: 700;
    color: #030000;
  }

  .button {
    width: 150px;
    height: 38px;
    padding: 0;
    font-size: 11px;
  }

  main {
    padding-top: 100px;
  }

  main h1 {
    font-size: 23px;
  }

  main .auto-input {
    margin-top: 15px;
    padding: 10px 15px;
    margin-bottom: 15px;
  }

  main .auto-input span {
    font-size: 12px;
  }

  main .wrapper-service-item figure {
    width: 200px;
    margin-left: 15px;
  }
  main .wrapper-service-item::after {
    left: 50%;
    width: 88%;
    transform: skewX(10deg) translateX(-50%);
  }
  main .wrapper-service-item::before {
    transform: skewX(10deg) translateX(-50%);
    width: 86%;
    left: 50%;
  }

  .malfunction {
    padding-top: 120px;
  }

  .malfunction-item .content {
    width: 250px;
  }

  .malfunction-item .content h4 {
    margin-bottom: 15px;
  }

  .malfunction-item .content ul {
    margin-top: 15px;
  }

  .malfunction-request__input .title {
    max-width: 300px;
  }

  .feedback-item__img {
    height: 140px;
  }

  .fixed-contacts .nav-list li {
    font-size: 11px;
  }

  .fixed-contacts .number p {
    font-size: 11px;
  }
  .fixed-contacts .number strong {
    font-size: 13px;
  }

  .map .request input {
    width: 200px;
  }

  .feedback-item__content ul li {
    padding: 12px 4px;
  }
}
@media (max-width: 300px) {
  .malfunction-item .content {
    left: 15px;
  }

  .feedback-item__img {
    height: 120px;
  }
}
@media (max-width: 320px) and (max-height: 350px) {
  .main-block {
    margin-bottom: 280px;
  }
}

