.footer {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  padding: 80px 40px 0;
  max-width: 100%;
  z-index: 9;
}

.footer__icon-block,
.footer__bot,
.footer__top{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__bot{
  padding: 40px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.footer__icon{
  width: 40px;
  height: 40px;
  margin-bottom: 55px;
}

.footer__row{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__link{
  display: block;
  margin-bottom: 13px;
  color: rgba(0,0,0,.7);
}

.footer__link:hover {
  color: rgba(0,0,0,1);
}

.footer__block{
  margin-right: 80px;
}

.footer__left{
  width: calc(100% - 360px);
}

.footer__right{
  width: 360px;
}

.soc{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 55px;
}

.soc__item{
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0px 4px 12px rgb(0 0 0 / 5%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 16px;
}

.soc__icon{
  -webkit-transition: var(--transition--main);
  -o-transition: var(--transition--main);
  transition: var(--transition--main);
  width: 24px;
  height: 24px;
  margin: auto;
}

.soc__item:hover {
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.05);
}

.soc__item:hover .soc__icon{
  fill: #0077FF;
}

.soc__item:last-child {
  margin-right: 0;
}

.copy{
  font-size: var(--font--small);
  color: #00000030;
}

.footer__mobile{
  display: none;
  padding: 10px 0 40px;
  color: rgba(0,0,0,.7);
}

.grecaptcha-badge {
  display: none !important;
}

@media screen and (max-width: 1024px){
  .footer{
    padding: 60px 20px 0;
  }

  .footer__top {
    flex-direction: column-reverse;
  }

  .footer__block{
    margin-right: 0;
    width: 50%;
  }

  .footer__bot{
    padding-bottom: 20px;
  }

  .footer__bot .footer__right,
  .footer__bot .footer__left,
  .footer__top .footer__right,
  .footer__top .footer__left{
    width: 100%;
  }

  .footer__icon-block .footer__right,
  .footer__icon-block .footer__left{
    width: 50%;
  }

  .footer__top .footer__right{
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-top: 27px;
  }

  .footer__mobile{
    display: block;
    padding: 10px 0 0;
  }

  .footer__bot .footer__right{
    display: none;
  }

  .soc {
    justify-content: flex-end;
    margin-bottom: 40px;
  }

  .footer__icon {
    margin-bottom: 40px;
  }

}

/* horizontal scroll */
.h-scroll {
  position: absolute;
  overflow: auto;
  /*display: flex;*/
}