body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
  }
.header {
    inline-size: 100%;
    background-color: #696971;
    block-size: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__burger-btn{
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    z-index: 2;
  }
  .header__burger-btn span{
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #000;
    left: 5px;
    transition: transform .5s, opacity .5s, background-color .5s;
  }
  .header__burger-btn span:nth-child(1){
    transform: translateY(-10px);
  }
  .header__burger-btn span:nth-child(3){
    transform: translateY(10px);
  }
  .conteiner.open .header__burger-btn span:nth-child(1){
    transform: translateY(0px) rotate(45deg);
  }
  .conteiner.open .header__burger-btn span:nth-child(2){
    opacity: 0;
   }
   .conteiner.open .header__burger-btn span:nth-child(3){
    transform: translateY(0px) rotate(-45deg);
   }
  ul.text_header li {
    display: inline;
    margin-right: 60px;
  }
  .header_link{
    text-decoration: none;
    color: #000;
    font-size: 30px;
  }
  .header_link:hover{
    color:#fff;
  }
  .logo_header{
    padding-top: 10px;
    padding-right: 190px;
  }
  .contacts{
    inline-size: 100%;
    block-size:  565px;
    background-color: #403E4E;
  }
  .contacts_header{
    color: #FFF;
    font-size: 36px;
    margin: 0;
    padding-top: 45px;
    display: flex;
    justify-content: center;
  }
  .contacts_frame{
    display: flex;
    justify-content: center;
    padding-top: 30px;
  }
  .contacts_text{
    color: #fff;
    font-size: 20px;
    margin-right: 235px;
  }
  .header_location{
    margin-top: 0;
  }
  .location{
    display: flex;
    align-items: flex-end;
    margin: 0;
    font-weight: 700;
    padding-bottom: 20px;
  }
  .time{
    font-weight: 700;
    padding-bottom: 20px;
  }
  .google_map{
    width: 590px;
    height: 392px;
    padding-right: 30px;
  }
  .text_header{
    color: #000;
    font-size: 36px;
    display: flex;
    justify-content: center;
  }
  .text_catalog{
    color: #000;
    font-size: 36px;
    padding-top: 45px;
    text-align: center;
  }
  .inside_catalog{
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
  }
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .card-body{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
    padding-top: 50px;
  }
  .providers{
    padding-top: 100px;
    display: flex;
    justify-content: center;
  }
  .ellipse{
    width: 80%;
    height: 250px;
    border-radius: 80%;
    background: rgba(64, 62, 78, 0.10);
  }
  .partner_names{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
  }
  .text_providers{
    color: #000;
    font-size: 36px;
    display: flex;
    justify-content: center;
  }
  .about_us{
    margin-bottom: 100px;
  }
  .about_text{
    text-align: center;
    font-size: 36px;
    margin: 0;
  }
  footer{
    block-size: 170px;
    background-color: #000;
    display: flex;
    color: #fff;
    justify-content: space-between;
    align-items: center;
  }
  .logo_footer{
    padding: 20px 0px 0px 170px;
  }
  .footer_address{
    padding-right: 10%;
  }
  @media(max-width: 700px){
   
    .conteiner.open .header{
        transform: translateX(100%);
      }
      .conteiner{
        background-color: #696971;
      }
      .header__burger-btn{
        display: block;
      }
      .header__container{
        padding: 20px 20px;
      }
      .header{
        position: absolute;
        left: -250px;
        top: 0;
        width: 250px;
        text-align: center;
        padding:0;
        block-size: 300px;
        display: block;
        transition: transform .5s;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
      }
      .logo_header{
        opacity: 0;
      }
      .text_header{
        display: block;
        padding: 0;
        text-align: center;
      }
      ul.text_header li{
        display: block;
        margin: 0;
        padding: 0;
      }
      .contacts{
        block-size: 900px;
      }
      .contacts_frame{
        display: flex;
        flex-direction: column;
      }
      .contacts_text{
        margin: 0;
        text-align: center;
        font-size: 18px;
      }
      .location{
        display: block;
      }
      .google_map{
        width: 100%;
        height: 400px;
        padding: 0px;
      }
      .inside_catalog{
        display: block;
      }
      .row{
        display: flex;
        flex-direction: column;
      }
      .partner_names{
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .ellipse{
        height: 300px;
      }
      .text_providers{
        font-size: 24px;
        text-align: center;
      }
      .about_text{
        font-size: 18px;
        text-align: center;
      }
      .logo_footer{
        padding: 0px;
      }
  }