* {
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: inherit;
  line-height: 1.5;
  font-size: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  margin: 0;
  padding: 3px;
}

body {
  font-size: 25px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.wrapper {
  padding: 15px;
}

.header {
  display: flex;
  justify-content: space-between;
}

.nav__header {
  display: flex;
}

.header__link {
  padding: 10px;
}

.about__title {
  padding: 15px;
  line-height: 34px;
  font-weight: 700;
  text-transform: none;
}

.about__img {
  max-width: 100%;
  height: auto;
  display: block;
}

.footer {
  text-align: center;
}

.main__header {
  background-color: rgb(0 0 0);
  text-align: center;
  padding: 70px;
}

.main__title {
  font-size: 50px;
  letter-spacing: 10px;
  color: white
}

.main__city {
  font-size: 40px;
  color: white
}

.main__text {
  font-size: 35px;
  color: white
}

.main__numder {
  font-size: 50px;
  color: white
}

h2 {
  margin-top: 30px;
}

.button {
  font-size: 40px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #0d60b9;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.button:hover {
  transform: scale(1.1);
  background-color: #0d72de;
}

.social-icon {
  width: 45px;
  margin-right: 30px;
}

.number__phone {
  font-size: 40px;
  cursor: pointer;
  transition: transform 0.5s ease-in-out, background-color 0.5s ease-in-out;
}

.number__phone:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 800px) {
  .main__header {
    padding: 0 0 15px 0;
  }

  .about__text {
    font-size: 20px;
  }

  .main__text {
    font-size: 30px;
  }

  .main__title {
    letter-spacing: 5px
  }

  .main__numder {
    font-size: 40px;
  }
}

@media screen and (max-width: 380px) {
  .main__header {
    padding: 0 0 10px 0;
  }

  .about__text {
    font-size: 17px;
  }

  .main__text {
    font-size: 25px;
  }

  .main__title {
    font-size: 40px;
    letter-spacing: 3px
  }

  .main__numder {
    font-size: 25px;
  }

  .number__phone {
    font-size: 30px;
  }

  .footer__email {
    font-size: 22px;
  }
}
