#footer .footer-top {
  padding: 49px 0;
  border-bottom: 1px solid #313131;
}
#footer .footer-top .footer-logo {
  display: inline-block;
  margin-bottom: 45.4px;
}
#footer .footer-top .main-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: #7B7B7B;
  width: 466px;
  max-width: 100%;
}
#footer .footer-top .social {
  display: inline-block;
  margin-top: 30px;
  color: var(--color-green);
}
/* Animation */
#footer .footer-top .social .fa-linkedin {
  transition: transform 0.3s ease-in-out;
}
#footer .footer-top .social:hover .fa-linkedin {
  animation: bounce-up-down 0.5s ease-in-out;
}
@keyframes bounce-up-down {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); } 
}
/*=== End Animation ===*/
#footer .footer-top .flex-container .hs-menu-wrapper .hs-menu-item {
  list-style: none;
}
#footer .footer-top .hs-item-has-children a {
  display: inline-block;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.36;
  color: #FFFFFF;
  margin-bottom: 34px;
  cursor: text;
}
#footer .footer-top .hs-menu-children-wrapper .hs-menu-item a {
  display: inline-block
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: #C8C8C8;
  margin-bottom: 19px;
  cursor: pointer;
}
#footer .footer-top .hs-menu-children-wrapper .hs-menu-item a:hover {
  color: var(--color-green);
}

#footer .items-wrapper h4 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.36;
  color: #FFFFFF;
  margin-bottom: 34px;
}
#footer .items-wrapper .item {
  list-style: none;
}
#footer .items-wrapper .item a {
  text-decoration: none;
  display: inline-block;
  display: flex;
  gap: 10px;
  margin-bottom: 19px;
}
#footer .items-wrapper .item a p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: #C8C8C8;
  transition: 0.2s ease;
}
#footer .items-wrapper .item a:hover p {
  color: var(--color-green);
}

#footer .footer-bottom {
  padding: 25px 0;
}
#footer .footer-bottom .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
#footer .footer-bottom p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.428;
  color: #7B7B7B;
}
#footer .footer-bottom .row .col-2 p {
  color: #fff;
}
#footer .footer-bottom .row .col-2 a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
}
#footer .footer-bottom .row .col-2 a:hover {
  color: var(--color-green);
}

/* Responsive */
@media (max-width: 768px) {
  #footer .footer-logo {
    width: 150px;
  }
  #footer .footer-top .social {
    margin-bottom: 20px;
  }
  #footer .flex-container .span6 {
    margin-top: 34px;
  }
}

@media (max-width: 540px) {
  #footer .footer-bottom .row {
    display: block;
    text-align: center;
  }
  #footer .footer-bottom .row .col-2 a {
    display: inline-block;
    margin-top: 10px;
  }
}