@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
html,
body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.img-svg {
  opacity: 1;
}

.img-svg svg {
  height: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
}

/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0 none;
  background-color: transparent;
  scroll-behavior: smooth;
}

/* Убираем внутренние отступы */
ul,
ol {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  font-size: 14px;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul,
ol {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  cursor: pointer;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
  cursor: pointer;
  padding: 0;
  border: none;
  outline: none;
}

input,
textarea {
  outline: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

label {
  cursor: pointer;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.wrp {
  max-width: 1550px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background-color: #e3e1e1;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

.cont {
  padding-top: 36px;
}

.img {
  margin-bottom: 36px;
  max-width: 426px;
  margin-left: auto;
  margin-right: auto;
}

.text-wrp {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  max-width: 528px;
  text-align: center;
}

.phone {
  display: block;
  color: #159822;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.phone:hover {
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.phone-line {
  width: 0;
  height: 2px;
  background-color: #159822;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.phone-wrp {
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
}

.phone-wrp:hover .phone-line {
  width: 100%;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
/*# sourceMappingURL=main.css.map */