@font-face {
      font-family: Roboto;
      src: url("../../fonts/Roboto-Regular.woff2?v=2.137") format("woff2"),
          url("../../fonts/Roboto-Regular.woff?v=2.137") format("woff"),
          url("../../fonts/Roboto-Regular.ttf") format('truetype');
  }
  @font-face {
      font-family: RobotoBold;
      src: url("../../fonts/Roboto-Bold.woff2?v=2.137") format("woff2"),
          url("../../fonts/Roboto-Bold.woff?v=2.137") format("woff"),
          url("../../fonts/Roboto-Bold.ttf") format('truetype');
  }
  main{min-height:670px;}
  :root{
    --font: Roboto;
    --bold: RobotoBold;
    --black:#0e0c0f;
    --white: #ffffff;
    --blue: #007bff;
    --red: #ff295d;
    --gray: #795958;
    --grayLight:#c4c4c4;
    --yellow: #ffb950;
  }
  body {
      font-family: Roboto;
      font-size: 14px;
      line-height: 21px;
      color: var(--gray);
  }
  .container {
    margin: 0 auto;
    max-width: 1200px;
  }
  .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, strong, b, label{
    font-family: var(--bold);
  }
  strong, b, label{
    font-family:var(--bold); 
  }
  a{
    color: inherit;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  a:hover, a:focus {
    text-decoration: none;
    color: var(--black);
    outline: none;
  }
  img{
    max-width: 100%;
    height: auto;
    display: inline-block;
  }
  li{list-style: none;}
  .custom-control-label::before, .custom-control-input:checked~.custom-control-label::before{
    background-color: #fff;
    border: 2px solid var(--gray);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background: #fff;
    box-shadow: none;
  }
  .custom-radio .custom-control-input:checked~.custom-control-label::after{
    background-image: none;
    width: 10px;
    height: 10px;
    background-color: var(--gray);
    border-radius: 50%;
    top: 9px;
    left: -19px;
  }