        :root {
    --primary: #00ADB5;
    --secondary: #7D0A0A;
    --third: #EAD196;
    --bg: #f7f7f7;
    --text: #222831;
    --text-secondary: #393E46;
    --white: #EEEEEE;
   --font-size-h1: 48px;
   --font-size-h2: 36px;
   --font-size-h3: 24px;
 --font-size-p: 14px;
  --font-size-button: 14px;
--font-size-review: 18px;
--font-size-review-sub: 14px;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wd-ft-footer {
  color: #161616;
  font-family: 'Roboto', sans-serif;
  padding: 100px 50px;
  border-top: 1px solid #393E46;
}



.wd-ft-container {
  max-width: 1200px;
  margin: 0 auto;
}

.wd-ft-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.wd-ft-box {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.wd-ft-logo {
  width: 160px;
  margin-bottom: 20px;
}



.wd-ft-heading {
  font-size: 24px;
  font-family: 'Be Vietnam Pro', sans-serif;
  margin-bottom: 12px;
  color: #161616;
  border-bottom: 1px solid #393E46;
  display: inline-block;
  padding-bottom: 6px;
}

.wd-ft-box a {
  display: block;
  margin: 12px 0;
  font-size: 16px;
  color: #161616;
  text-decoration: none;
  transition: 0.3s;
}

.wd-ft-box a:hover {
  color: #393E46;
  transform: translateX(10px);
}

.wd-ft-box p {
  font-size: 15px;
  margin: 6px 0;
}

.wd-ft-box i {
  margin-right: 10px;
  color: #161616;
}

/* Divider */
.wd-ft-divider {
  height: 1px;
  background: #161616;
  margin: 30px 0 20px;
}

/* Bottom */
.wd-ft-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 15px;
}

.wd-ft-left {
  color: #393E46;
  font-size: 14px;
}

.wd-ft-privacy-btn {
  background: none;
  color: #393E46;
  padding: 6px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.wd-ft-privacy-btn:hover {
 border-bottom: 1px solid #393E46;
}



.wd-ft-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.wd-ft-socials a {
  color: #161616; 
  font-size: 18px;
  border: 1px solid #cecece;
  padding: 7px 13px;
  transition: all 0.3s ease;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
  margin: 0px;
  transition: 0.3s ease-in-out;
}

.wd-ft-socials a i{
margin-right: 0px;
}

.wd-ft-socials a:hover{
box-shadow: inset 0px 3px 4px rgba(0, 0, 0, 0.6);
  transform: translateX(0px);
  padding: 5px 10px;
}







@media(max-width: 768px){
  .wd-ft-footer {
  color: #161616;
  font-family: 'Roboto', sans-serif;
  padding: 40px 20px;
  border-top: 1px solid #393E46;
}

}