.reverse {
  transform: scaleX(-1);
}

.hide {
  display: none;
  /*opacity: 0;
  max-height: 0px;
  margin: 0!important;
  padding: 0!important;
  pointer-events: none;*/
}

.true {
  font-weight: bold;
  color: green;
}

.font-1 {
  font-size: 1.1em;
}

.in-line {
  width: 100%;
  margin: 30px 0 35px;
  border-bottom: 1px dashed #000;
  text-align: center;
  line-height: 0.3em;
}

.in-line span {
  padding:  0 5px;
  background: #fff;
}

.navbar {
  top: 0;
  position: sticky;
  z-index: 10;
  box-shadow: 0 1px 5px 1px #999;
}

.circle {
  position: absolute;
  width: var(--radius, 15px);
  height: var(--radius, 15px);
  background: hsla(54, 100%, 70%, 0.6);
  border-radius: 50%;
  z-index: -1;
}

.header {
  max-width: 850px;
  margin: auto;
}

.heading {
  font-weight: 300;
}
.heading__main {
  display: block;
  line-height: 1.5;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.heading__info {
  line-height: 1.3;
  letter-spacing: 1.2px;
  text-transform: capitalize;
}
.heading__garanty {
  line-height: 2;
  position: relative;
}
.heading__garanty::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 99%;
  height: 14px;
  transform: skew(-12deg);
  background: hsla(60, 100%, 63%, 0.6);
  z-index: -1;
}
@media (max-width: 419.98px) {
  .heading {
    font-size: 2rem;
  }
  .heading__main {
    font-size: 2.2rem;
  }
}

.contacts h2 {
  font-size: 2.3rem;
  letter-spacing: 1.2px;
  font-weight: 400;
}

.contacts__phone {
  font-weight: 400;
}

.socials {
  display: flex;
  justify-content: center;
}
.socials__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 3px;
  border-radius: 50%;
  text-decoration: none;
  transition: .1s opacity ease-in-out;
}
.socials__item img {
  width: 20px;
  height: 20px;
}
.socials__item:hover {
  color: white;
  text-decoration: none;
  opacity: 0.9;
}

.socials__item[data-name="envelope"] {
  background: #b59742;
}
.socials__item[data-name="whatsapp"] {
  background: #50cd5e;
}
.socials__item[data-name="telegram"] {
  background: #28a7e8;
}
.socials__item[data-name="phone"] {
  background: #3b5998;
}

.tests {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.tests .link {
  flex: 1 0 100%;
  text-align: center;
  margin-bottom: .5em;
  /*transition: all .3s ease-in-out;*/
}
/*.tests .link:not(.hide) {
  opacity: 1;
}*/
@media (min-width: 576px) {
  .tests .link {
    flex: 1 0 50%;
  }
}


#toast {
  position: fixed;
  background: white;
  right: 1em;
  min-width: 50vw;
  max-width: calc(100vw - 2em);
  margin-top: 1em;
  z-index: 999;
}

#toast .toast-body {
  white-space: pre-line;
}