@font-face {
    font-weight: 400; /* Соответствует значению normal */
    font-family: 'Lato';
    src: url(../fonts/Lato/Lato-Regular.ttf);
    font-display: swap;
  }
  
  @font-face {
    font-weight: 300;
    font-family: 'Lato', sans-serif;
    src: url(../fonts/Lato/Lato-Light.ttf);
    font-display: swap;
  }

  @font-face {
    font-weight: 400;
    font-family: 'Lovelace';
    src: url(../fonts/Lovelace/LovelaceText-Regular.ttf);
    font-display: swap;
  }
  

html{
    font-size: 100%;
}
body{
    font-size: 0.875rem;
    font-size: 14px;
    line-height: 1.2;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    background-color: #fff;
    color: #131313;
    min-width: 320px;
    width: 100%;
    overflow-x: hidden;
    margin: 0 auto;
}

h1,h2,h3,h4,h5{
    font-weight: 400;
}
main{
    padding-top: 60px;
}

.border_bottom{
  border-bottom: 1px solid var(--lts-color-black);
}
.border_top{
  border-top: 1px solid var(--lts-color-black);
}
.container.is_small{
  max-width: 904px;
  width: 100%;
  margin: 0 auto;
}
.container-text{
  padding: 50px 70px;
  border-left: 1px solid var(--lts-color-black);
  border-right: 1px solid var(--lts-color-black);
}

.container-text h1{
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.container-text h2,
.container-text h3{
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 25px;
}
.container-text p{
  padding-bottom: 6px;
  font-weight: 300;
  font-size: 0.875rem;

}
.container-text a{
  color: #E47739;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
}
@media screen and (max-width:720px) {
  .container-text h1{
    font-size: 1.75rem;
  }
  .container-text{
    padding: 20px 20px;
    border-left: none;
    border-right: none;
  }
}