.footer-logo{
  height: 60px;
}
.footer-logo-container{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--light-black);
}
footer{
  border-top: 1px solid #b9b9b9a8;
}

.footer-links a{
  position: relative;
  color: var(--light-black);
  font-size: 18px;
  font-family: Inter;
  font-weight: 400;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--main-color);
}
.footer-links a::before {
  position: absolute;
  content: "";
  height: 2px !important;
  width: 0;
  background: var(--light-black);
  bottom: -4px;
  left: 50%;
  transform: translate(-50%);
  transition: all 0.3s;
}
.footer-links a:hover::before {
  width: 100%;
}
footer{
  position: relative;
  padding-top: 50px;
  background: white;
  z-index: 999;
}
.gst-number{
  font-size: 16px;
  font-family: Inter;
  font-weight: 400;
  color: var(--light-black);
}
.gst-number span{
  font-weight: 600;
  color: #000;
}
.copy-right-line{
  padding: 20px 0;
  border-top: 1px solid #b4b4b4d1;
  margin-top: 30px;
  font-size: 10px;
  font-family: Inter;
  font-weight: 400;
  color: var(--light-black);
}
.footer-title{
  font-size: 18px;
  color: #181818;
  font-weight: 600;
  font-family: Inter;
  margin-bottom: 12px;
}
address{
  margin-bottom: 0;
  color: var(--light-black);
  font-size: 18px;
  font-family: Inter;
  font-weight: 400;
  text-decoration: none;
}


.footer-right-container{
  position: absolute;
  right: -60px;
  bottom: -60px;
  display: block;
  overflow: hidden;
  width: 340px;
  height: 340px;
  -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);  border-radius: 50%;
  background-color: #f7f3ea;
  transition: all 0.3s;
  z-index: 9;
}
.box-alone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 400px;
  height: 370px;
  background-image: url(../../../assets/images/footer-right.jpeg);
  background-repeat: no-repeat;
  background-size: 390px 370px;
  background-position-x: right;
}
.footer-right-container:hover {
  width: 370px;
  height: 370px;
}
.box-alone .wrap{
  position: absolute;
  top: 44%;
  left: 38%;
}
.footer-custom-quote-title{
  font-size: 20px;
  font-family: Inter;
  font-weight: 700;
  color: black;
  display: block;
  margin-bottom: 10px;
}


.footer-button-link{
  text-decoration: none;
}
.button {
  --offset: 10px;
  --border-size: 2px;
  display: block;
  position: relative;
  padding: 8px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  color: var(--dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 0;
  box-shadow: inset 0 0 0 var(--border-size) currentcolor;
  transition: all 0.8s ease;
  margin-top: 5px;
}
.button:hover{
  background: rgba(1, 27, 65, 0.7);
  color: white;
}
.button__horizontal, .button__vertical {
  position: absolute;
  top: var(--horizontal-offset, 0);
  right: var(--vertical-offset, 0);
  bottom: var(--horizontal-offset, 0);
  left: var(--vertical-offset, 0);
  transition: transform 0.8s ease;
  will-change: transform;
}
.button__horizontal::before, .button__vertical::before {
  content: "";
  position: absolute;
  border: inherit;
}
.button__horizontal {
  --vertical-offset: calc(var(--offset) * -1);
  border-top: var(--border-size) solid currentcolor;
  border-bottom: var(--border-size) solid currentcolor;
}
.button__horizontal::before {
  top: calc(var(--vertical-offset) - var(--border-size));
  bottom: calc(var(--vertical-offset) - var(--border-size));
  left: calc(var(--vertical-offset) * -1);
  right: calc(var(--vertical-offset) * -1);
}
.button:hover .button__horizontal {
  transform: scaleX(0);
}
.button__vertical {
  --horizontal-offset: calc(var(--offset) * -1);
  border-left: var(--border-size) solid currentcolor;
  border-right: var(--border-size) solid currentcolor;
}
.button__vertical::before {
  top: calc(var(--horizontal-offset) * -1);
  bottom: calc(var(--horizontal-offset) * -1);
  left: calc(var(--horizontal-offset) - var(--border-size));
  right: calc(var(--horizontal-offset) - var(--border-size));
}
.button:hover .button__vertical {
  transform: scaleY(0);
}


@media(max-width: 1400px){
  footer{
    padding-top: 40px;
  }
  .footer-logo{
    height: 44px;
  }
  .footer-logo-container{
    margin-bottom: 25px;
  }
  .gst-number {
    font-size: 14px;
  }
  .footer-title{
    font-size: 16px;
  }
  address{
    font-size: 16px;
  }
  .footer-links a{
    font-size: 14px;
  }
}



@media(max-width: 768px){
  .footer-logo{
    height: 40px;
  }
  .footer-right-container{
    display: none;
  }
  .footer-top-container{
    padding: 40px 0;
  }
  .footer-links-title, .footer-links-container{
    text-align: center;
  }
  .footer-links-title{
    font-size: 20px;
    margin-bottom: 34px;
  }
  .footer-links-container{
    margin-top: 14px;
  }
  .footer-links-container div{
    font-size: 14px;
    margin-bottom: 8px;
  }
  .product-quality-container{
    padding: 40px 24px;
  }
  .prodcut-quality-title{
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
  }
  .prodcut-quality-subtitle{
    font-size: 16px;
    text-align: center;
  }
  .product-quality-bag-img{
    height: 140px;
  }
}