*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.25;
  color: #000;
}

body {
  margin: 0;
  padding: 0;

  overflow-x: hidden;
}

button {
  cursor: pointer;
}

.button {
  padding: 10px 15px;
  background: linear-gradient(180deg, #50de62 0%, #0abc22 100%);
  border: none;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 400;
  color: white;
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

h2,
strong,
b {
  word-break: break-word;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  width: 1460px;
}

.spacer {
  margin: 25px 0;
  width: 100%;
  height: 1px;

  background-color: rgba(235, 235, 235, 1);
}
.alert {
  display: flex;
  background: rgba(10, 188, 34, 0.05);
  height: 80px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.alert__pic {
  display: inline-block;
  background: url(/img/alert.svg) no-repeat;
  background-size: 50px;
  width: 50px;
  height: 50px;
  margin-right: 10px;
}
.alert__text {
  display: block;
  height: min-content;
  margin: 0;
  color: #444;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1100px) {
  .container {
    width: auto;
    flex-direction: column;
  }
  .alert {
    height: auto;
    padding: 15px;
    text-align: center;
  }
}
@media (max-width: 1420px) {
  .container {
    width: auto;
  }
}
