@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

body {
  background-color: rgb(229, 229, 229);
}
body.no-scroll {
  overflow: hidden;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: rgb(0, 0, 0);
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 0.5em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

p {
  margin-bottom: 1em;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

ul {
  list-style: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: fixed;
  width: 100%;
  z-index: 100;
}

.nav-list {
  display: flex;
  gap: 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.contect-list {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contect-item a {
  color: rgb(19, 23, 29);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -1%;
  text-align: left;
  text-decoration: none;
  transition: 0.3s;
}

.contect-item {
  color: rgb(19, 23, 29);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -1%;
  text-align: left;
}

.delitel {
  color: rgb(0, 0, 0);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -1%;
  text-align: left;
  opacity: 0.2;
  color: rgb(0, 0, 0);
  font-family: Gilroy;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -1%;
  text-align: left;
}

.phone-icon {
  width: 40px;
  height: 40px;
}

.nav-link {
  color: rgb(19, 23, 29);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: -1%;
  text-align: left;
  text-decoration: none;
  transition: 0.3s;
}

.chosen-nav-link {
  color: rgb(226, 0, 26);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: -1%;
  text-align: left;
}

.chosen-nav-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  background-color: rgb(226, 0, 26);
}

.nav-link:hover,
.contect-item a:hover {
  color: rgb(226, 0, 26);
}

.chosen-nav-link:hover {
  transform: scale(1.05);
  text-shadow: 2px 2px 4px rgba(226, 0, 26, 0.2);
  transition: all 0.3s ease;
}

.header {
  background-color: rgb(229, 229, 229);
}

body {
  background-color: rgb(229, 229, 229);
}

.burger-menu {
  display: none;
  background: white;
  border: none;
  cursor: pointer;
  z-index: 101;
  position: relative;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.burger-icon {
  width: 30px;
  height: 3px;
  background-color: rgb(19, 23, 29);
  display: block;
  position: relative;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.burger-icon::before,
.burger-icon::after {
  content: "";
  width: 30px;
  height: 3px;
  background-color: rgb(19, 23, 29);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.burger-icon::before {
  top: -8px;
}

.burger-icon::after {
  top: 8px;
}

.burger-menu.open .burger-icon {
  background-color: transparent;
}

.burger-menu.open .burger-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.burger-menu.open .burger-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

@media (max-width: 720px) {
  .nav {
    visibility: hidden;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 100;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s 0.5s;
  }
  .nav.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .nav-list {
    flex-direction: column;
    gap: 30px;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.6s ease;
  }
  .nav.active .nav-list {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-link {
    font-size: 42px;
    font-weight: bold;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.4s ease;
  }
  .nav.active .nav-link {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.3s;
  }
  .contect-list {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease;
  }
  .nav.active .contect-list {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.4s;
  }
  .contect-item a,
  .contect-item,
  .delitel {
    font-size: 38px;
    line-height: 46px;
  }
  .phone-icon {
    width: 56px;
    height: 56px;
    transform: rotate(-180deg);
    transition: transform 0.6s ease;
  }
  .nav.active .phone-icon {
    transform: rotate(0);
  }
  .burger-menu {
    display: block;
  }
  .nav-list > li:first-child {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }
  .nav.active .nav-list > li:first-child {
    transform: translateY(0);
    opacity: 1;
  }
  .chosen-nav-link::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    margin-top: 10px;
    background-color: rgb(226, 0, 26);
  }
}
.no-scroll {
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-list {
  display: flex;
  gap: 20px;
}
.nav-link {
  color: rgb(0, 0, 0);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  text-decoration: none;
  transition: 0.3s ease;
}
.nav-link:hover {
  color: rgb(226, 0, 26);
}
.nav .chosen-nav-link {
  color: rgb(226, 0, 26);
}
.nav .chosen-nav-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  background-color: rgb(226, 0, 26);
}
.nav .chosen-nav-link:hover {
  transform: scale(1.05);
  text-shadow: 2px 2px 4px rgba(226, 0, 26, 0.2);
}
.hero {
  display: flex;
  margin-top: 90px;
  position: relative;
  z-index: 1;
}
.hero-text-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 50%;
}
.hero-text {
  color: rgb(68, 68, 68);
  font-family: "Gilroy", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
}
.hero-btn {
  color: rgb(255, 255, 255);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  border-radius: 15px;
  background: rgb(226, 0, 26);
  padding: 18px 30px;
  width: 300px;
  text-align: center;
}

.heroHeading {
  color: rgb(19, 23, 29);
  font-family: "Bebas Neue", sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 100px;
}

.hero-img-conteiner {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-conteiner img {
  width: 35rem;
  height: auto;
}
.hero-img-conteiner .card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -150px;
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: 380px;
  width: 100%;
  font-family: "Montserrat", Arial, sans-serif;
}

.discount {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.discount-percentage {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ff5722;
  line-height: 1;
}
.discount-icon {
  font-size: 2.5rem;
}
.discount-text {
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 15px 0;
  color: #333;
  font-weight: 500;
}
.discount-text strong {
  font-weight: 700;
  color: #ff5722;
}

.offer-end {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin: 20px 0 15px;
}

.countdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.time {
  text-align: center;
}
.time .number {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(19, 23, 29);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}
.time .label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.separator {
  font-size: 2rem;
  font-weight: 700;
  color: #666;
  line-height: 1;
  margin-top: -20px;
}

hr {
  margin: 20px 0;
  border: none;
  height: 1px;
  background-color: #e0e0e0;
}

@media (max-width: 720px) {
  .hero {
    flex-direction: column-reverse;
    width: 100%;
  }
  .hero-text-container {
    width: 100%;
    padding: 0 20px;
  }
  .hero-img-conteiner .card {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    max-width: 320px;
    padding: 25px;
  }
  .discount-percentage {
    font-size: 3rem;
  }
  .discount-text {
    font-size: 1.1rem;
  }
  .time .number {
    font-size: 1.75rem;
  }
  .time .label {
    font-size: 0.7rem;
  }
  .separator {
    font-size: 1.75rem;
    margin-top: -15px;
  }
}
.hero {
  display: flex;
  margin-top: 90px;
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .hero {
    margin-top: 190px;
    flex-direction: column-reverse;
    width: 100%;
  }
}

.hero-img-conteiner {
  position: relative;
}
.hero-img-conteiner .card {
  position: absolute !important;
  top: 30% !important;
  transform: translateY(-50%) !important;
  right: -50px !important;
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 250px;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 10;
}
@media (max-width: 720px) {
  .hero-img-conteiner .card {
    right: 10px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    max-width: 160px;
    padding: 10px;
  }
}

.hero-img-conteiner {
  position: relative;
}
.hero-img-conteiner .card {
  position: absolute !important;
  top: 30% !important;
  transform: translateY(-50%) !important;
  right: -50px !important;
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 250px;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 10;
}

.hero-img-conteiner .card .discount {
  display: flex !important;
  align-items: center !important;
  font-size: 2.2em;
  color: #ff5722;
}
.hero-img-conteiner .card .discount-percentage {
  font-weight: bold;
}
.hero-img-conteiner .card .discount-icon {
  margin-left: 8px;
}
.hero-img-conteiner .card .discount-text {
  font-size: 1em;
  margin: 8px 0;
  line-height: 1.4;
}
.hero-img-conteiner .card .countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 720px) {
  .hero-img-conteiner .card {
    right: 10px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    max-width: 160px;
    padding: 10px;
  }
  .hero-img-conteiner .card .discount {
    font-size: 1.5em;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 2px !important;
  }
  .hero-img-conteiner .card .discount-percentage {
    display: inline-block !important;
  }
  .hero-img-conteiner .card .discount-icon {
    display: inline-block !important;
    font-size: 0.8em !important;
    line-height: 1 !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: middle !important;
  }
  .hero-img-conteiner .card .countdown {
    font-size: 0.8em;
  }
  .hero-img-conteiner .card .countdown .time .number {
    font-size: 1.4em;
  }
  .hero-img-conteiner .card .countdown .time .label {
    font-size: 0.7em;
  }
}
.card {
  margin-right: 50px;
}

.pluses ul {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pluses-item {
  width: 30%;
  gap: 10px;
}
.pluses-item p,
.pluses-item h3 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: rgb(0, 0, 0);
}

@media (max-width: 720px) {
  .pluses ul {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .pluses-item {
    width: 100%;
  }
  .pluses-item:not(:last-child) {
    margin-bottom: 50px;
  }
}
.deviceWeRepair {
  padding: 100px 0;
}
.deviceWeRepair-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
  list-style: none;
  justify-content: center;
}
.deviceWeRepair-item:first-child {
  flex: 0 0 100%;
  text-align: center;
  margin-bottom: 40px;
}
.deviceWeRepair-item.iphoneCard, .deviceWeRepair-item.androidCard, .deviceWeRepair-item.watchCard, .deviceWeRepair-item.laptopCard, .deviceWeRepair-item.imacCard, .deviceWeRepair-item.otherCard {
  flex: 0 0 calc(30% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
.deviceWeRepair-item.iphoneCard::before, .deviceWeRepair-item.iphoneCard::after, .deviceWeRepair-item.androidCard::before, .deviceWeRepair-item.androidCard::after, .deviceWeRepair-item.watchCard::before, .deviceWeRepair-item.watchCard::after, .deviceWeRepair-item.laptopCard::before, .deviceWeRepair-item.laptopCard::after, .deviceWeRepair-item.imacCard::before, .deviceWeRepair-item.imacCard::after, .deviceWeRepair-item.otherCard::before, .deviceWeRepair-item.otherCard::after {
  content: "";
  position: absolute;
  z-index: 1;
}
.deviceWeRepair-item.iphoneCard.iphoneCard::before, .deviceWeRepair-item.androidCard.iphoneCard::before, .deviceWeRepair-item.watchCard.iphoneCard::before, .deviceWeRepair-item.laptopCard.iphoneCard::before, .deviceWeRepair-item.imacCard.iphoneCard::before, .deviceWeRepair-item.otherCard.iphoneCard::before {
  width: 40%;
  height: 40%;
  background: rgba(226, 0, 26, 0.2);
  top: 0;
  left: 0;
}
.deviceWeRepair-item.iphoneCard.iphoneCard::after, .deviceWeRepair-item.androidCard.iphoneCard::after, .deviceWeRepair-item.watchCard.iphoneCard::after, .deviceWeRepair-item.laptopCard.iphoneCard::after, .deviceWeRepair-item.imacCard.iphoneCard::after, .deviceWeRepair-item.otherCard.iphoneCard::after {
  width: 30%;
  height: 30%;
  background: rgba(255, 187, 0, 0.2);
  bottom: 0;
  right: 0;
}
.deviceWeRepair-item.iphoneCard.androidCard::before, .deviceWeRepair-item.androidCard.androidCard::before, .deviceWeRepair-item.watchCard.androidCard::before, .deviceWeRepair-item.laptopCard.androidCard::before, .deviceWeRepair-item.imacCard.androidCard::before, .deviceWeRepair-item.otherCard.androidCard::before {
  width: 50%;
  height: 50%;
  background: rgba(226, 0, 26, 0.2);
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
}
.deviceWeRepair-item.iphoneCard.androidCard::after, .deviceWeRepair-item.androidCard.androidCard::after, .deviceWeRepair-item.watchCard.androidCard::after, .deviceWeRepair-item.laptopCard.androidCard::after, .deviceWeRepair-item.imacCard.androidCard::after, .deviceWeRepair-item.otherCard.androidCard::after {
  width: 40%;
  height: 40%;
  background: rgba(255, 187, 0, 0.2);
  bottom: 0;
  right: 0;
  -webkit-clip-path: polygon(100% 100%, 0 100%, 100% 0);
          clip-path: polygon(100% 100%, 0 100%, 100% 0);
}
.deviceWeRepair-item.iphoneCard.watchCard::before, .deviceWeRepair-item.androidCard.watchCard::before, .deviceWeRepair-item.watchCard.watchCard::before, .deviceWeRepair-item.laptopCard.watchCard::before, .deviceWeRepair-item.imacCard.watchCard::before, .deviceWeRepair-item.otherCard.watchCard::before {
  width: 35%;
  height: 100%;
  background: rgba(226, 0, 26, 0.2);
  top: 0;
  left: 0;
}
.deviceWeRepair-item.iphoneCard.watchCard::after, .deviceWeRepair-item.androidCard.watchCard::after, .deviceWeRepair-item.watchCard.watchCard::after, .deviceWeRepair-item.laptopCard.watchCard::after, .deviceWeRepair-item.imacCard.watchCard::after, .deviceWeRepair-item.otherCard.watchCard::after {
  width: 25%;
  height: 25%;
  background: rgba(255, 187, 0, 0.2);
  bottom: 0;
  right: 0;
}
.deviceWeRepair-item.iphoneCard.laptopCard::before, .deviceWeRepair-item.androidCard.laptopCard::before, .deviceWeRepair-item.watchCard.laptopCard::before, .deviceWeRepair-item.laptopCard.laptopCard::before, .deviceWeRepair-item.imacCard.laptopCard::before, .deviceWeRepair-item.otherCard.laptopCard::before {
  width: 40%;
  height: 40%;
  background: rgba(226, 0, 26, 0.2);
  top: 0;
  left: 0;
}
.deviceWeRepair-item.iphoneCard.laptopCard::after, .deviceWeRepair-item.androidCard.laptopCard::after, .deviceWeRepair-item.watchCard.laptopCard::after, .deviceWeRepair-item.laptopCard.laptopCard::after, .deviceWeRepair-item.imacCard.laptopCard::after, .deviceWeRepair-item.otherCard.laptopCard::after {
  width: 35%;
  height: 35%;
  background: rgba(255, 187, 0, 0.2);
  bottom: 0;
  right: 0;
}
.deviceWeRepair-item.iphoneCard.imacCard::before, .deviceWeRepair-item.androidCard.imacCard::before, .deviceWeRepair-item.watchCard.imacCard::before, .deviceWeRepair-item.laptopCard.imacCard::before, .deviceWeRepair-item.imacCard.imacCard::before, .deviceWeRepair-item.otherCard.imacCard::before {
  width: 45%;
  height: 60%;
  background: rgba(226, 0, 26, 0.2);
  top: 0;
  left: 0;
}
.deviceWeRepair-item.iphoneCard.imacCard::after, .deviceWeRepair-item.androidCard.imacCard::after, .deviceWeRepair-item.watchCard.imacCard::after, .deviceWeRepair-item.laptopCard.imacCard::after, .deviceWeRepair-item.imacCard.imacCard::after, .deviceWeRepair-item.otherCard.imacCard::after {
  width: 35%;
  height: 35%;
  background: rgba(255, 187, 0, 0.2);
  bottom: 0;
  right: 0;
}
.deviceWeRepair-item.iphoneCard.otherCard::before, .deviceWeRepair-item.androidCard.otherCard::before, .deviceWeRepair-item.watchCard.otherCard::before, .deviceWeRepair-item.laptopCard.otherCard::before, .deviceWeRepair-item.imacCard.otherCard::before, .deviceWeRepair-item.otherCard.otherCard::before {
  width: 40%;
  height: 35%;
  background: rgba(226, 0, 26, 0.2);
  top: 0;
  left: 0;
}
.deviceWeRepair-item.iphoneCard.otherCard::after, .deviceWeRepair-item.androidCard.otherCard::after, .deviceWeRepair-item.watchCard.otherCard::after, .deviceWeRepair-item.laptopCard.otherCard::after, .deviceWeRepair-item.imacCard.otherCard::after, .deviceWeRepair-item.otherCard.otherCard::after {
  width: 30%;
  height: 40%;
  background: rgba(255, 187, 0, 0.2);
  bottom: 0;
  right: 0;
}
.deviceWeRepair-item.iphoneCard:hover, .deviceWeRepair-item.androidCard:hover, .deviceWeRepair-item.watchCard:hover, .deviceWeRepair-item.laptopCard:hover, .deviceWeRepair-item.imacCard:hover, .deviceWeRepair-item.otherCard:hover {
  transform: translateY(-8px);
}
.deviceWeRepair-item.iphoneCard img, .deviceWeRepair-item.androidCard img, .deviceWeRepair-item.watchCard img, .deviceWeRepair-item.laptopCard img, .deviceWeRepair-item.imacCard img, .deviceWeRepair-item.otherCard img {
  width: 160px;
  height: 160px;
  margin-bottom: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 2;
}
.deviceWeRepair-heading {
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}
.deviceWeRepair-text {
  font-size: 32px;
  margin: 0;
  color: #333;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.about {
  padding: 100px 0;
  background: rgb(235, 243, 248);
}
.about .container {
  display: flex;
  gap: 40px;
}
.about-content {
  flex: 0 0 40%;
}
.about-content__left {
  max-width: 400px;
}
.about-title {
  font-size: 42px;
  font-weight: 700;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
}
.about-description {
  font-size: 18px;
  color: rgb(0, 0, 0);
  margin-bottom: 30px;
}
.about-btn {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  border-radius: 15px;
  background: rgb(226, 0, 26);
  padding: 18px 30px;
  width: 300px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226, 0, 26, 0.2);
}
.about-features {
  flex: 0 0 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.about-features__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.about-features__item img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-features__item-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: rgb(0, 0, 0);
  margin-bottom: 8px;
}
.about-features__item-content p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.4;
}
@media (max-width: 720px) {
  .about {
    padding: 60px 0;
  }
  .about .container {
    flex-direction: column;
  }
  .about-content {
    text-align: center;
  }
  .about-content__left {
    max-width: 100%;
  }
  .about-title {
    font-size: 32px;
  }
  .about-btn {
    display: block;
    margin: 0 auto;
    max-width: 200px;
  }
  .about-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-features__item img {
    width: 32px;
    height: 32px;
  }
  .about-features__item-content h3 {
    font-size: 16px;
  }
  .about-features__item-content p {
    font-size: 14px;
  }
}

.reviews ul li {
  border-radius: 30px;
}

.review-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 5rem 20px;
  margin-top: 50px;
  text-align: center;
  align-items: center;
}
.review-slider li img {
  border-radius: 30px;
  width: 17rem;
  height: 18rem;
}

.reviewHeading {
  text-align: center;
  color: rgb(19, 23, 29);
  font-size: 42px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 0 15px;
  word-wrap: break-word;
}

.heroHeading {
  color: rgb(19, 23, 29);
  font-family: "Bebas Neue", sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 100px;
  word-wrap: break-word;
  padding: 0 15px;
}

@media (max-width: 720px) {
  .heroHeading {
    font-size: 24px;
    line-height: 1.2;
    padding: 0 6px;
  }
  .deviceWeRepair-heading {
    font-size: 22px;
    padding: 0 6px;
    margin-bottom: 12px;
  }
  .about-title {
    font-size: 20px;
    padding: 0 6px;
    margin-bottom: 10px;
  }
  .reviewHeading {
    font-size: 22px;
    padding: 0 6px;
  }
  .hero-text {
    font-size: 13px;
    padding: 0 6px;
    word-wrap: break-word;
  }
  .about-description {
    font-size: 13px;
    padding: 0 6px;
    word-wrap: break-word;
  }
  .about-features__item-content {
    padding: 0 6px;
  }
  .about-features__item-content h3 {
    font-size: 13px;
    word-wrap: break-word;
  }
  .about-features__item-content p {
    font-size: 12px;
    word-wrap: break-word;
  }
  /* Уменьшаем отступы секций */
  .deviceWeRepair {
    padding: 35px 0;
  }
  .about {
    padding: 35px 0;
  }
  .reviews {
    padding: 35px 0;
  }
  /* Уменьшаем отступы между элементами */
  .pluses-list {
    gap: 20px;
    padding: 0 6px;
  }
  .deviceWeRepair-list {
    gap: 12px;
    padding: 0 6px;
  }
  .about .container {
    gap: 20px;
    padding: 0 6px;
  }
  .review-slider {
    padding: 1rem 6px;
    gap: 10px;
  }
  /* Стили для героя и карточки */
  .hero-img-conteiner {
    position: relative;
  }
  .hero-img-conteiner img {
    width: 85%;
    height: auto;
    max-width: 260px;
  }
  .hero-img-conteiner .card {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 10px !important;
    /* Изменено с -80px на 10px */
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 130px;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    z-index: 10;
  }
  .hero-img-conteiner .card .discount {
    display: flex !important;
    align-items: center !important;
    font-size: 1.2em;
    color: #ff5722;
  }
  .hero-img-conteiner .card .discount-text {
    font-size: 0.8em;
    margin: 6px 0;
    line-height: 1.3;
  }
  .hero-img-conteiner .card .countdown {
    font-size: 0.7em;
  }
  .hero-img-conteiner .card .countdown .time .number {
    font-size: 1.1em;
  }
  .hero-img-conteiner .card .countdown .time .label {
    font-size: 0.6em;
  }
}
/* Дополнительные правила для очень маленьких экранов */
@media (max-width: 375px) {
  .heroHeading {
    font-size: 22px;
  }
  .deviceWeRepair-heading {
    font-size: 20px;
  }
  .about-title {
    font-size: 18px;
  }
  .reviewHeading {
    font-size: 20px;
  }
  /* Дополнительное уменьшение отступов */
  .deviceWeRepair,
  .about,
  .reviews {
    padding: 25px 0;
  }
  .hero-img-conteiner img {
    width: 80%;
    max-width: 240px;
  }
  .hero-img-conteiner .card {
    right: 5px !important;
    /* Изменено с -60px на 5px */
    max-width: 120px;
    padding: 8px;
  }
  .hero-img-conteiner .card .discount {
    font-size: 1.1em;
  }
  .hero-img-conteiner .card .discount-text {
    font-size: 0.7em;
  }
  .hero-img-conteiner .card .countdown {
    font-size: 0.6em;
  }
}
.reviews {
  background-color: rgb(235, 243, 248);
  padding: 80px 0;
  overflow: hidden;
}

.reviewHeading {
  text-align: center;
  color: rgb(0, 0, 0);
  font-size: 42px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 0 15px;
  word-wrap: break-word;
  margin-bottom: 50px;
}

.review-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 2rem 20px;
  margin-top: 30px;
  text-align: center;
  align-items: center;
}
.review-slider li {
  flex: 0 0 auto;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.review-slider li:hover {
  transform: translateY(-10px);
}
.review-slider li img {
  border-radius: 30px;
  width: 17rem;
  height: 18rem;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 15px rgba(226, 0, 26, 0.1);
}

/* Медиа-запросы */
@media (max-width: 720px) {
  .reviews {
    padding: 35px 0;
  }
  .reviewHeading {
    font-size: 22px;
    padding: 0 6px;
    margin-bottom: 20px;
  }
  .review-slider {
    padding: 1rem 6px;
    gap: 10px;
    justify-content: center;
  }
  .review-slider li {
    width: 100%;
    max-width: 300px;
  }
  .review-slider li img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 375px) {
  .reviews {
    padding: 25px 0;
  }
  .reviewHeading {
    font-size: 20px;
  }
  .review-slider li {
    max-width: 260px;
  }
}
.completed {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: linear-gradient(180deg, rgb(235, 243, 248), rgba(235, 243, 248, 0) 100%);
  perspective: 1000px;
}
.completed__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.completed-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.completed-slider__item {
  flex: 0 0 auto;
  width: 33.333%;
  padding: 0 15px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.85);
  position: relative;
  filter: grayscale(0.5);
  opacity: 1;
}
.completed-slider__item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.completed-slider__item.active {
  transform: scale(1);
  filter: grayscale(0);
  z-index: 2;
}
.completed-slider__dots {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.completed-slider__dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(226, 0, 26, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}
.completed-slider__dots .dot.active {
  width: 24px;
  border-radius: 4px;
  background: rgb(226, 0, 26);
}
.completed-slider__buttons {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}
.completed-slider__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(226, 0, 26, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.completed-slider__btn:hover {
  background: rgba(226, 0, 26, 0.9);
  transform: scale(1.1);
}
.completed-slider__btn:hover span {
  color: #fff;
}
.completed-slider__btn span {
  font-size: 24px;
  color: rgb(226, 0, 26);
  transition: all 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 720px) {
  .completed-slider__item {
    width: 100%;
    padding: 0 10px;
    opacity: 0;
    transform: scale(0.7);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .completed-slider__item.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
    pointer-events: auto;
  }
  .completed-slider__dots {
    bottom: -40px;
  }
  .completed-slider__dots .dot {
    width: 10px;
    height: 10px;
  }
  .completed-slider__dots .dot.active {
    width: 30px;
  }
  .completed-slider__buttons {
    padding: 0 15px;
  }
  .completed-slider__btn {
    width: 60px;
    height: 60px;
    z-index: 2;
  }
  .completed-slider__btn span {
    font-size: 28px;
    color: #fff;
  }
  .completed-slider__btn:hover {
    transform: none;
  }
}
.badPhone-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: disc;
}
.badPhone-list li::marker {
  color: rgb(226, 0, 26);
}

.badPhone {
  display: flex;
  flex-direction: row;
  gap: 0rem;
}
@media (max-width: 720px) {
  .badPhone {
    flex-direction: column;
  }
}

.badPhone-container {
  max-width: 50%;
}
@media (max-width: 720px) {
  .badPhone-container {
    max-width: 100%;
  }
}

.badPhone-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
  max-height: 300px;
  padding: 0rem;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 3cap;
       column-gap: 3cap;
}
@media (max-width: 720px) {
  .badPhone-list {
    max-height: none;
    -moz-column-count: 1;
         column-count: 1;
    flex-wrap: nowrap;
    padding: 0 1rem;
  }
}

.gifts {
  background-color: linear-gradient(180deg, rgb(235, 243, 248), rgba(235, 243, 248, 0) 100%);
  padding: 1rem;
}

.gifts-list {
  display: flex;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gifts-list::-webkit-scrollbar {
  display: none;
}

.giftCard {
  background-color: #fff;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 1rem;
  width: 20rem;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.quoute-text {
  color: rgb(19, 23, 29);
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  width: 43.75rem;
  height: 6rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 720px) {
  .quoute-text {
    width: 100%;
  }
}

.quoute-end {
  margin-top: 4.6rem;
}
@media (max-width: 720px) {
  .quoute-end {
    margin-top: 2.5rem;
  }
}

.quoute {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.quoute {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 4rem auto;
  position: relative;
  padding: 0 1rem;
}
.quoute-text {
  color: rgb(19, 23, 29);
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  position: relative;
  padding: 0 3rem;
  width: 43.75rem;
  height: 6rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 720px) {
  .quoute-text {
    font-size: 16px;
    padding: 0 2rem;
    width: 100%;
  }
}
.quoute-start, .quoute-end {
  position: absolute;
  display: inline-block;
}
.quoute-start img, .quoute-end img {
  width: auto;
  height: 1.5em;
}
@media (max-width: 720px) {
  .quoute-start img, .quoute-end img {
    height: 1.2em;
  }
}
.quoute-start {
  left: 0;
  top: 0;
}
.quoute-end {
  right: 0;
  bottom: 0;
  margin-top: 4.6rem;
}
@media (max-width: 720px) {
  .quoute-end {
    margin-top: 2.5rem;
  }
}

.workGarant-img {
  border-radius: 2.5rem;
  border: 2px solid rgb(226, 0, 26);
  transition: border-color 0.3s ease;
}

.workGarant {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  padding: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 720px) {
  .workGarant {
    flex-direction: column-reverse;
    padding: 1.5rem;
    gap: 2rem;
    flex-wrap: wrap;
  }
}
.workGarantTextBox {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.workGarantTextBox-text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: rgb(0, 0, 0);
  font-weight: 500;
}
.workGarantTextBox-text br {
  margin-bottom: 1.5rem;
}
@media (max-width: 720px) {
  .workGarantTextBox-text {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.6;
  }
}
.workGarantImg {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.workGarantImg.aos-animate {
  animation: slideScaleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.workGarantImg img {
  width: 100%;
  height: auto;
  border-radius: 2.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

@keyframes slideScaleIn {
  0% {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
  }
  60% {
    opacity: 0.8;
    transform: translateX(-10px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.quoute {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 4rem auto;
  position: relative;
  padding: 0 1rem;
}
.quoute-text {
  color: rgb(19, 23, 29);
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  position: relative;
  padding: 0 3rem;
}
@media (max-width: 720px) {
  .quoute-text {
    font-size: 16px;
    padding: 0 2rem;
  }
}
.quoute-start, .quoute-end {
  position: absolute;
  display: inline-block;
}
.quoute-start img, .quoute-end img {
  width: auto;
  height: 1.5em;
}
@media (max-width: 720px) {
  .quoute-start img, .quoute-end img {
    height: 1.2em;
  }
}
.quoute-start {
  left: 0;
  top: 0;
}
.quoute-end {
  right: 0;
  bottom: 0;
}

.hero-img-conteiner {
  position: relative;
}
.hero-img-conteiner .card {
  position: absolute !important;
  top: 30% !important;
  transform: translateY(-50%) !important;
  right: -50px !important;
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 250px;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 10;
}

@media (max-width: 720px) {
  .hero-img-conteiner .card {
    right: 10px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    max-width: 160px;
    padding: 10px;
  }
}
.hero {
  display: flex;
  margin-top: 90px;
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .hero {
    margin-top: 190px;
    flex-direction: column-reverse;
    width: 100%;
  }
}

.workGarantImg {
  max-width: 100%;
}

.workGarant-img {
  max-width: 100%;
  height: auto;
}

.workGarant {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  padding: 3rem;
}

@media (max-width: 720px) {
  .workGarantImg {
    display: none;
  }
}

.workGarantTextBox-text {
  text-align: left;
}

.subscribe {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 20px;
  padding: 10px;
  margin-top: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.subTextContent {
  flex: 1;
  position: relative;
  z-index: 1;
  color: rgb(19, 23, 29);
}

.big50 {
  font-size: 60px;
  font-weight: bold;
  color: #ff5722;
}

.subForm {
  flex: 1;
  margin-left: 20px;
}

.subFormInput {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid rgb(172, 172, 172);
  padding: 10px;
}

.subFormBtn {
  width: 100%;
  background-color: rgb(226, 0, 26);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}
.subFormBtn:hover {
  background-color: #af0014;
  transform: scale(1.05);
}

@media (max-width: 720px) {
  .subscribe {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }
  .subTextContent {
    text-align: center;
    margin-bottom: 20px;
  }
  .subForm {
    margin-left: 0;
    width: 100%;
  }
}
body {
  margin: 0;
  overflow-x: hidden;
}

.footerContactInfoLi {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease, color 0.5s ease;
}
.footerContactInfoLi:hover {
  transform: translateY(-10px);
  color: rgb(255, 255, 255);
}
.footerContactInfoLi img {
  width: 5rem;
  margin-right: 10px;
  transition: transform 0.5s ease;
}
.footerContactInfoLi img:hover {
  transform: rotate(360deg);
}
.footerContactInfoLi p {
  font-size: 1.3rem;
  color: rgb(19, 23, 29);
}
.footerContactInfoLi p span {
  color: rgb(185, 191, 200);
  font-weight: bold;
}

.footer {
  background-color: rgb(222, 222, 222);
  width: 100%;
  margin: 30px;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  align-items: center;
  margin: 2rem auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footerContactInfo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footerContactInfo li:not(:last-child) {
  margin-right: 3rem;
}

.FooterTextø {
  font-size: 1.3rem;
  color: rgb(19, 23, 29);
  font-weight: normal;
  text-align: center;
}

.moreInfo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.moreInfo div {
  margin-right: 70px;
  transition: transform 0.5s ease;
}
.moreInfo div:hover {
  transform: translateY(-10px);
}

h3 {
  color: rgb(19, 23, 29);
}
h3:hover {
  color: rgb(19, 23, 29);
}

@media (max-width: 720px) {
  .footerContactInfoLi {
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
  .footerContactInfoLi img {
    width: 2rem;
    margin-right: 10px;
    transition: transform 0.5s ease;
  }
  .footerContactInfoLi img:hover {
    transform: rotate(360deg);
  }
  .footerContactInfoLi p {
    font-size: 1.1rem;
    color: rgb(19, 23, 29);
  }
  .footerContactInfoLi p span {
    color: rgb(185, 191, 200);
    font-weight: bold;
  }
  .footer {
    width: 100%;
    margin: 20px;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    align-items: center;
    margin: 1rem auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .footerContactInfo {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
  .footerContactInfo li:not(:last-child) {
    margin-bottom: 2rem;
  }
  .FooterTextø {
    font-size: 1.1rem;
    color: rgb(19, 23, 29);
    font-weight: normal;
    text-align: center;
  }
  .moreInfo {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
  .moreInfo div {
    margin-right: 20px;
    transition: transform 0.5s ease;
  }
  .moreInfo div:hover {
    transform: translateY(-10px);
  }
}