.footer {
    background-color: #F1F4FA;
    padding: 80px 0;
  }
  
  .footer__info--top {
    display: flex;
    column-gap: 40px;
    padding:0 20px;
  }
  
  .footer__logo {
    transition: all 0.3s ease;
    margin-top: 20px;
  }
  
  .footer__logo:hover {
    opacity: 0.7;
  }
  
  .footer__company {
    display: flex;
    column-gap: 20px;
  }
  
  .footer__time>span {
    display: inline-block;
    font-size: 14px;
    color: #979797;
    padding-left: 26px;
  }
  
  .footer__time--all {
    display: flex;
    align-items: start;
  }
  
  .footer__time--all img {
    margin-right: 10px;
  }
  
  .footer__time--text {
    font-size: 14px;
    color: #000000;
    line-height: 1.2;
  }
  
  .footer__links {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-top: 10px;
  }
  
  .footer__links a {
    color: #000000;
    line-height: 120%;
  }
  
  .footer__links a:hover {
    text-decoration: underline;
  }
  
  .footer__social {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-top: 15px;
  }
  
  .footer__social a {
    transition: all 0.3s ease;
  }
  
  .footer__social a:hover {
    opacity: 0.7;
  }
  
  .footer__phone {
    margin-top: 30px;
  }
  
  .footer__phone>span {
    display: inline-block;
    font-size: 14px;
    color: #979797;
    padding-left: 26px;
  }
  
  .footer__phone--info {
    display: flex;
  
    align-items: center;
  }
  
  .footer__phone--info img {
    margin-right: 7px;
  }
  
  .footer__phone--text {
    font-size: 18px;
    color: #000000;
  }
  
  .footer__info--license {
    margin: 40px auto 50px;
    font-size: 14px;
    line-height: 120%;
    text-align: center;
    color: #8F8F8F;
    padding:0 20px;
  }
  
  .footer__info--bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
    border-top: 1px solid #9BA1AD;
  }
  
  .footer__copy {
    font-size: 14px;
    color: #979797;
  }
  
  .footer__site {
    display: flex;
    align-items: center;
    column-gap: 10px;
  }
  
  .footer__site span {
    font-size: 14px;
    color: #979797;
  }
  
  .footer__site a {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .footer__site a:hover {
    opacity: 0.7;
  }
  
  .footer__politics {
    font-size: 14px;
    color: #979797;
  }
  
  .footer__politics:hover {
    text-decoration: underline;
    color: #979797;
  }

  .footer__about {
    display: none;
  }

  @media only screen and (max-width:1370px){
    footer .header__phone {
        display: none;
    }
    footer .header__company {
      display: none;
    } 
    .footer__info--top{
        justify-content: space-evenly;
    }
  }

  @media only screen and (max-width:992px){
    .footer {
        padding: 30px 0;
      }
    
      .footer__info--top {
        flex-direction: column;
        align-items: center;
      }
    
      .footer__logo {
        display: flex;
        justify-content: center;
        margin-top: 0;
        margin-bottom: 20px;
      }
    
      .footer__links {
        margin-top: 0;
      }
    
      .footer__info--license {
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 0;
      }
    
      .footer__info--bottom {
        border: 0;
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
      }
    
      .footer__site {
        order: 2;
      }
    
      .footer__copy {
        order: 0;
      }
    
      .footer__politics {
        order: 1;
      }
    
      .footer__links a {
        font-size: 14px;
        line-height: 21px;
      }
    
      .footer__social {
        margin-top: 30px;
      }
    
      .footer__social img {
        width: 26px;
        height: 26px;
      }
    
      .footer__about {
        display: flex;
        flex-wrap: wrap;
        row-gap: 20px;
        column-gap: 29px;
        margin-bottom: 40px;
      }
    
      .footer__about .header__phone, 
	  .footer__about .header__point {
        display: block;
		padding-left:25px;
      }    
	  
	  .footer__about .header__phone img{
		  position:absolute;
		  top:38px;
		  left:0;
	  }
	  .footer__about .header__point img{
		  position:absolute;
		  top:18px;
		  left:0;
	  }
  }


  @media only screen and (max-width: 400px) {
    .footer__info--top{
      padding:0;
    }
  }
  

  @media only screen and (max-width: 340px) {
    .footer__links a {
        font-size: 12px;
      }    

      .footer__about {
        row-gap: 15px;
        column-gap: 40px;
        margin-bottom: 20px;
      }      
  }