/* ##################### footer ######################## */

.footer {
  margin-top: 100px;
  background-color: var(--bg-main);
}
.footer__inner {
  padding-top: 100px;
}
.footer__inner p {
  font-size: 20px;
  font-weight: 400;
  margin-top: 30px;
}
.footer__inner .row {
  margin-top: 100px;
  padding: 0 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer__inner .row .col-lg-2 {
  max-width: 150px;
  min-height: 143px;
  width: 100%;
  height: 100%;
  margin: 0 10px;

  display: flex;
  align-items: center;
}

.footer__inner-table-item a {
  padding: 10px;
  width: 100%;
  height: 100%;
  display: block;
}
.footer__inner-table-item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.8;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.footer__inner-table-item a:hover img {
  opacity: 1;
}

.footer__inner-bottom {
  padding: 70px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}
.footer__inner-bottom .developer-info {
  opacity: 0.3;
  font-weight: 300;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer__inner-bottom .developer-info a {
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  padding: 10px 0;
  margin: 0 5px;
}
.footer__inner-bottom .developer-info a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition:
    background-color 0.3s ease-in-out,
    width 0.3s ease-in-out;
  -o-transition:
    background-color 0.3s ease-in-out,
    width 0.3s ease-in-out;
  transition:
    background-color 0.3s ease-in-out,
    width 0.3s ease-in-out;
}
.footer__inner-bottom .developer-info a:hover {
  color: rgba(255, 255, 255, 1);
}
.footer__inner-bottom .developer-info a:hover:after {
  background-color: rgba(255, 255, 255, 1);
  width: 100%;
}

@media screen and (max-width: 576px) {
  .footer__inner .row {
    margin-top: 50px;
  }
  .footer__inner .row .col-lg-2 {
    max-width: 100px;
    min-height: 93px;
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .footer__inner-bottom {
    padding-top: 60px;
  }
}

.section-onlineRecording__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
