.site-footer {
  --footer-bg: var(--bg-c3);
  --footer-text-color: var(--white);
  --footer-top-spacing: 40px;
  --footer-gap: 120px;
  --footer-line-height: 290px;
  --footer-link-gap: 20px 80px;
  --footer-logo-sec-width: 270px;
  --footer-link-sec-width: minmax(0, 1fr);
  --footer-qns-sec-width: 200px;
  --footer-link-sec-col-count: 2;
  /* footer copyright */
  --footer-cr-gap: 10px;
  --footer-cr-bg: var(--bg-c2);
  --footer-cr-color: var(--black);
  padding: 0;
}

/*** Footer Top ***/
.footer-top {
  display: flex;
  flex-wrap: wrap;
  background: var(--footer-bg);
  color: var(--footer-text-color);
  padding: var(--footer-top-spacing) 0;
  min-height: calc(var(--footer-line-height) + (var(--footer-top-spacing)*2));
}

.footer-top-container::after,
.footer-top-container::before {
  display: none;
}

.footer-top-container>div {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-top-container>div:not(:last-child)::after {
  content: "";
  width: 1px;
  background: var(--white);
  position: absolute;
  right: calc((var(--footer-gap)/2)*-1);
  top: 50%;
  transform: translateY(-50%);
  height: var(--footer-line-height);
}

.footer-top-container {
  display: grid;
  grid-template-columns: var(--footer-logo-sec-width) var(--footer-link-sec-width) var(--footer-qns-sec-width);
  grid-gap: var(--footer-gap);
}

.footer-left>div {
  width: 100%;
}

.footer_logo_block>div:not(:last-child) {
  margin-bottom: 36px;
}

.footer_logo_block .logo-title {
  font-size: var(--fs-px16);
  /* font-weight: 900; */
  font-weight: 700;
  line-height: 1.375;
  margin-bottom: 15px;
}

.footer-middle>div {
  width: 100%;
}

.footer-middle ul.nav::before,
.footer-middle ul.nav::after {
  display: none;
}

.footer-middle ul.nav {
  display: grid;
  grid-template-columns: repeat(var(--footer-link-sec-col-count), minmax(0, 1fr));
  gap: var(--footer-link-gap);
}

.footer-middle li>* {
  font-size: var(--fs-px15);
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  padding: 0 !important;
}

.footer-middle .nav>li>a:hover,
.footer-middle .nav>li>a:focus {
  background: transparent;
  color: var(--primary);
}

.footer-middle .navbar-text {
  margin: 0;
}

.footer-qns-item:not(:last-child) {
  margin-bottom: 35px;
}

.footer-qns-title {
  font-size: 1.3125rem;
  /* font-weight: 900; */
  font-weight: 700;
  line-height: 1.380952380952381;
  margin-bottom: 25px;
  text-align: left;
}

.footer-qns-btn a {
  width: 100%;
  justify-content: center;
}

/*** END OF Footer Top ***/
/*** Copyright Section ***/
.footer-copyright {
  padding: var(--footer-cr-gap);
  background: var(--footer-cr-bg);
  text-align: center;
  text-transform: uppercase;
}

.footer-copyright,
.footer-copyright p,
.footer-copyright a {
  font-size: var(--fs-px13);
  font-weight: 400;
  line-height: 1.6923076923076923;
  color: var(--footer-cr-color);
}

.footer-copyright p {
  margin-bottom: 0;
}

.footer-copyright a:hover {
  color: var(--primary);
}

.footer-copyright p {
  display: inline-block;
  /* display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; */
}

.footer-copyright .pipe {
  margin: 0 5px 0;
  position: relative;
  top: -1px;
}

/*** END OF Copyright Section ***/
