:root {
  --body-font: #333333;
  --primary: #FB6C00;
  --grey-300: #CCCCCC;
  --grey-200: #e4e4e4;
  --grey-100: #F5F5F5;
  --black: #000000;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
}
.footer-details {
  padding: 50px 0;
}
.footer-details .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  font-size: 16px;
  float: none;
}
.footer-details .footer-infotxt {
  border-top: 1px solid var(--grey-300);
  border-bottom: 1px solid var(--grey-300);
  padding: 30px 0;
  margin-top: 30px;
}
.footer-details .footer-infotxt p:last-child {
  margin-bottom: 0;
}
.footer-details .footer-copyright-logo {
  margin: 20px 0;
}
.footer-details .footer-link-maps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-details .footer-l {
  width: 49%;
}
.footer-details .footer-r {
  width: 48%;
}
.footer-details .footer-logo {
  margin-bottom: 15px;
}
.footer-details .inner-hd-small {
  margin-bottom: 5px;
}
.footer-details ul.page-listview-area {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-details .add-details addres {
  font-size: 15px;
  display: block;
  color: #000;
  margin-top: -5px;
  line-height: 23px;
}
.footer-details ul.page-listview-area.grid_2 {
  grid-template-columns: 1fr 1fr;
}
.footer-details ul.page-listview-area.grid_4 {
  grid-template-columns: repeat(4, 1fr);
}
.footer .container {
  max-width: 1310px;
  margin: auto;
  padding: 0 15px;
}
.footer-details ul.page-listview-area li {
  list-style-type: none;
  background: url(../images/list-arrow.svg) no-repeat 0 0;
  padding-left: 28px;
  line-height: 20px;
  font-size: 15px;
  grid-template-columns: repeat(2, 1fr);
}
.footer-details ul.page-listview-area li a {
  color: var(--body-font);
}
.footer-details ul.page-listview-area li a:hover {
  color: var(--primary);
}
.footer-details .quicklink-address {
  margin-top: 20px;
}
.footer-details .quicklink-address {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-details .quicklink,
.footer-details .address-info {
  width: 49%;
}
.footer-details .address-flag {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.footer-details .footer-map {
  margin-top: -70px;
}
.footer-details .footer-map img {
  width: 100%;
}
.footer-details .ourhappy-customer {
  margin-top: 10px;
  width: 100%;
  float: right;
}
.footer-details .ourhappy-customer-review {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-details .building-img img {
  width: 100%;
  border-radius: 15px;
}
.footer-details .realclients-r {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-details .client-row-twocol,
.footer-details .client-row-threecol {
  width: 100%
}
.footer-details .client-row-twocol ul {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-details .client-row-twocol ul li {
  width: calc((100% - 30px) / 3);
  width: -webkit-calc((100% - 30px) / 3);
  width: -moz-calc((100% - 30px) / 3);
  width: -ms-calc((100% - 30px) / 3);
  width: -o-calc((100% - 30px) / 3);
  list-style-type: none;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.footer-details .client-row-twocol ul li:nth-child(-n + 2) {
  flex: 0 0 calc((100% - 15px) / 2);
}
.footer-details .client-row-threecol ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
.footer-details .client-row-threecol ul li {
  list-style-type: none;
  width: 33%;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.footer-details .client-row-twocol ul li img,
.footer-details .client-row-threecol ul li img {
  width: 100%;
  border-radius: 15px;
  transition: all 0.5s ease 0s;
}
.footer-details .client-row-twocol ul li:hover img,
.footer-details .client-row-threecol ul li:hover img {
  transform: scale(1.1);
  transition: all 0.5s ease 0s;
}
.footer-details .inner-hd {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: var(--font-semibold);
  color: var(--black);
  margin-bottom: 8px;
}
@media screen and (max-width:991px) {
  .footer-details .footer-link-maps {
    flex-direction: column;
    gap: 20px;
  }
  .footer-details .footer-l,
  .footer-details .footer-r {
    width: 100%;
  }  
  .footer-details ul.page-listview-area.grid_4 {
      grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width:630px) {
  .footer-details ul.page-listview-area.grid_4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-details .footer-infotxt {
      padding: 20px 0;
      margin-top: 20px;
  }
} 