/* inter-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../font/inter-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

  body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;

  }

  header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    row-gap: 2rem;
    max-width: 892px;
    margin-inline: auto;
    margin-top: 2rem;

    @media (max-width: 892px) {
        grid-template-columns: 1fr;
        margin: 2rem 3rem;
    }
  }

footer{
  margin-top: 2rem;
}

 .footer_content {
    background-color: #E35F00;
    display: flex;
    justify-content: center;
  }

  footer img {
    height: 16rem;
  }

  footer p{
    color: whitesmoke;
    margin: 2rem 3rem;
    max-width: 16rem;
  
  }



  .copyright{
    display: flex;
    justify-content: center;
    margin-inline: auto;
    background-color: smokewhite;
  }
  
  .mini{
    font-size: 0.8rem;
    color: black;
    
  }

  .content {
    max-width: 892px;
    margin-inline: auto;
  }

 .block_breit{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    row-gap: 2rem;

    @media (max-width:892px) {
      grid-template-columns: 1fr;
      margin: 2rem 3rem;
    }
  }

  .block {
    padding-bottom: 4rem;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 2.4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;

  }

  h2{
    font-size: 1.2rem;
    line-height: 1.4rem;
    border-top: solid 3px #E35F00; 
    padding-top: 1rem;
    margin-bottom: 0.5rem;

    @media (max-width:892px) {
      padding-left: 3rem;   
    }
  }

header h2 {
    border-top: 0;
    color: #E35F00;
    padding-top: 0;
    margin-left: 0;
    
    @media (max-width:892px) {
      padding-left: 0rem;
      padding-top: 2rem;   
    }
  }


  h3 {
    font-size: 2.2rem;
    line-height: 2.4rem;
    padding-bottom: 1rem;

  }

  p{
    font-size: 1.2rem;
    line-height: 1.4rem;

    }
  
    a{
    font-size: 1.2rem;
    line-height: 2.05rem;
    text-decoration: none;
    color: black;
    font-style: normal;
    border-bottom: 2px solid #E35F00;
    }

.block a{
      padding-top: 2rem;
      margin-top: 4remq;
    }

  address {
    font-size: 1.2rem;
    line-height: 1.4rem;
    padding-bottom: 1rem;
    }

  ul {
    font-size: 1.2rem;
    line-height: 1.4rem;
    padding-left: 0;
    }

  li {
    padding-top: 0.75rem;
    }

  .orange{
    color: #E35F00;
  }  