@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital,wght@0,400;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --body-color: #060D1C;
  --body-font: #A49E91;
  --primary: #F8C655;
  --secondary: #151B29;
  --white: #ffffff;
  --black: #060D1C;
  --darkbg: #090F1E;
  --section-padding: 70px 0;
  --font-heading: 'Instrument Serif', serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
header,
footer,
section,
aside,
nav,
article,
figure,
address,
audio,
video {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;
}

body {
  font-family: var(--font-body);
  color: var(--body-font);
  background: var(--body-color);
  font-weight: 400;
  text-decoration: none;
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(26px + (28 - 26) * ((100vw - 320px) / (1920 - 320)));
  scroll-behavior: smooth;
}

a {
  color: var(--primary);
  text-decoration: none;
  outline: none;
}

a:hover {
  color: var(--body-font);
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin-bottom: 20px;
  font-weight: 400;
}

p {
  margin-bottom: 20px;
}

.cmn-section {
  padding: var(--section-padding);
}

.navbar-collapse {
  flex-grow: inherit;
}

.navbar-nav {
  gap: 8px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lang-active {
  color: var(--primary);
  font-weight: 600;
}

.lang-sep {
  color: rgba(255,255,255,.3);
}

.lang-link {
  color: var(--body-font);
}

.lang-link:hover {
  color: var(--primary);
}

.nav-link:focus {
  color: var(--bodyfont);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1218px;
}

.nav-link {
  font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(17px + (20 - 17) * ((100vw - 320px) / (1920 - 320)));
  color: var(--body-font);
}

.nav-link:hover {
  color: var(--primary);
}

.navbar {
  padding: 15px 0;
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  outline: none;
  box-shadow: none;
}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
  background-color: trasnaprent;
  border-color: transparent;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  border-color: var(--primary);
}

.btn-primary {
  background: var(--primary);
  background: linear-gradient(90deg, rgba(248, 198, 85, 1) 0%, rgba(228, 142, 38, 1) 100%);
  border-radius: 50px;
  border: none;
  font-size: 15px;
  height: 51px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  border: 1px solid transparent;
}

.btn-primary:hover {
  border-color: var(--primary);
  background: transparent;
}

.btn-primary span {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}

.btn-primary span::before {
  content: "";
  width: 15px;
  height: 2px;
  background: var(--black);
}

.btn-primary span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--black);
  border-right: 2px solid var(--black);
  transform: rotate(45deg);
  margin-left: -8px;
}

.btn-primary:hover span::before {
  background: var(--white);
}

.btn-primary:hover span::after {
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

.btn-secondary {
  background: var(--secondary);
  border-radius: 50px;
  border: none;
  font-size: 15px;
  height: 51px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background: transparent;
  border-color: var(--primary);
}

.btn-secondary span {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}

.btn-secondary span::before {
  content: "";
  width: 15px;
  height: 2px;
  background: var(--white);
}

.btn-secondary span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
  margin-left: -8px;
}

.btn-secondary:hover span::before {
  background: var(--white);
}

.btn-secondary:hover span::after {
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

.tagline {
  font-size: calc(10px + (12 - 10) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 2.4px;
}

h1.cmn-hd {
  font-size: calc(52px + (72 - 52) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(62px + (82 - 62) * ((100vw - 320px) / (1920 - 320)));
  color: var(--white);
}

h1.cmn-hd span {
  color: var(--primary);
}

h2.cmn-hd {
  font-size: calc(40px + (60 - 40) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(50px + (70 - 50) * ((100vw - 320px) / (1920 - 320)));
  color: var(--white);
}

h2.cmn-hd span {
  color: var(--primary);
}

h2.cmn-hd-small {
  font-size: calc(28px + (48 - 28) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(38px + (58 - 38) * ((100vw - 320px) / (1920 - 320)));
  color: var(--white);
}

h2.cmn-hd-small span {
  color: var(--primary);
}

h1.cmn-hd span {
  color: var(--primary);
}

h3.cmn-hd {
  font-size: calc(22px + (24 - 22) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(32px + (34 - 32) * ((100vw - 320px) / (1920 - 320)));
  color: var(--white);
}

h3.cmn-hd span {
  color: var(--primary);
}

.hero-right img {
  max-width: 100%;
}

.hero-pointers {
  font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(17px + (20 - 17) * ((100vw - 320px) / (1920 - 320)));
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-pointers ul {
  list-style-type: none;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 30px;
}

.hero-pointers ul li {
  position: relative;
  padding-left: 20px;
}

.hero-pointers ul li:before {
  content: '';
  border-radius: 50px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  display: block;
  position: absolute;
  top: 12px;
  left: 0px;
}

.hero-right-tag {
  position: absolute;
  padding: 20px;
  background: #131A2B;
  background: linear-gradient(0deg, rgba(19, 26, 43, 0) 0%, rgba(10, 17, 33, 1) 100%);
  width: 150px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  font-family: var(--font-heading);
  color: var(--white);
}

.hero-right-tag span {
  display: block;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: calc(12px + (12 - 12) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(16px + (16 - 16) * ((100vw - 320px) / (1920 - 320)));
  text-transform: uppercase;
}

.hero-right-top {
  top: -30px;
  right: 20px;
}

.hero-right-bottom {
  bottom: -40px;
  left: 20px;
}

.recompenses-section {
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 36px 0;
}

.recompenses-slider ul {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 30px;
}

.recompenses-slider ul li {
  list-style-type: none;
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(26px + (30 - 26) * ((100vw - 320px) / (1920 - 320)));
  font-family: var(--font-heading);
  position: relative;
  padding-left: 35px;
}

.recompenses-slider ul li span {
  display: block;
  font-family: var(--font-body);
  font-size: calc(10px + (12 - 10) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

.recompenses-slider ul li:before {
  content: '';
  background: url(../images/square-icon.svg) no-repeat 0 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

ul.couter-list {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

ul.couter-list li {
  list-style-type: none;
  font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(17px + (20 - 17) * ((100vw - 320px) / (1920 - 320)));
  line-height: 20px;
  text-transform: uppercase;
  border-left: 1px solid rgba(255, 255, 255, .05);
  padding-left: 30px;
}

ul.couter-list li:first-child {
  border-left: none;
  padding-left: 0;
}

ul.couter-list li span {
  font-size: calc(30px + (60 - 30) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(40px + (70 - 40) * ((100vw - 320px) / (1920 - 320)));
  color: var(--primary);
  font-family: var(--font-heading);
  display: block;
}

.counter-section {
  margin-top: 80px;
}

.method-box {
  background: #121D31;
  background: linear-gradient(180deg, rgba(18, 29, 49, 1) 0%, rgba(10, 17, 33, 1) 100%);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 25px;
  min-height: 275px;
}

.method-box:hover {
  background: linear-gradient(180deg, rgba(10, 17, 33, 1) 0%, rgba(18, 29, 49, 1) 100%);
  border-color: var(--primary);
}

.method-number {
  font-family: var(--font-heading);
  font-size: calc(30px + (60 - 30) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(40px + (70 - 40) * ((100vw - 320px) / (1920 - 320)));
  color: var(--primary);
  opacity: .5;
}

.method-name {
  font-family: var(--font-heading);
  font-size: calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(26px + (34 - 26) * ((100vw - 320px) / (1920 - 320)));
  color: var(--white);
}

.method-box:hover .method-name,
.expertise-list ul li:hover .method-name {
  color: var(--primary);
}

.method-desc {
  font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(17px + (20 - 17) * ((100vw - 320px) / (1920 - 320)));
}

.ourexpertise-l,
.ourexpertise-r {
  width: 50%;
}

.footer-cnt {
  padding: 20px 0;
}

.footer-copyright {
  font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(17px + (20 - 17) * ((100vw - 320px) / (1920 - 320)));
}

.footer-links a {
  font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(17px + (20 - 17) * ((100vw - 320px) / (1920 - 320)));
  color: var(--body-font);
  margin-left: 15px;
}

.footer-links {
  font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(17px + (20 - 17) * ((100vw - 320px) / (1920 - 320)));
  color: var(--body-font);
}

.footer-links img {
  width: 100px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.expertise-list {
  background: var(--darkbg);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .02);
  overflow: hidden;
}

.expertise-list ul {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-wrap: wrap;
}

.expertise-list ul li {
  list-style-type: none;
  width: 33.33%;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  border-right: 1px solid rgba(255, 255, 255, .05);
  padding: 30px;
  min-height: 220px;
}

.expertise-list ul li.border-rightnone {
  border-right: none;
}

.expertise-list ul li.border-bottomnone {
  border-bottom: none;
}

.expertise-number {
  font-family: var(--font-heading);
  font-size: calc(14px + (14 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(20px + (20 - 20) * ((100vw - 320px) / (1920 - 320)));
  color: var(--primary);
  opacity: .5;
}

.expertise-list ul li:hover {
  background: #090F1E;
  background: linear-gradient(0deg, rgba(9, 15, 30, 1) 0%, rgba(20, 29, 54, 1) 100%);
}

.partnership-img img {
  width: 100%;
  border-radius: 24px;
}

.partnership-blk-main {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.partnership-box {
  background: #121D31;
  background: linear-gradient(180deg, rgba(18, 29, 49, 1) 0%, rgba(10, 17, 33, 1) 100%);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  width: 50%;
  padding: 30px 15px;
}

.partnership-list ul li {
  font-size: calc(14px + (14 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(20px + (20 - 20) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 15px;
  position: relative;
  list-style-type: none;
  padding-left: 20px;
}

.partnership-list ul li:before {
  content: '';
  background: url(../images/square-icon.svg) no-repeat center;
  background-size: 100%;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.partnership-list ul li:last-child {
  margin-bottom: 0;
}

.business-sector-section .method-box {
  min-height: 225px;
}

.transforming-cnt {
  background: var(--darkbg);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .02);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.transform-l {
  width: 45%;
}

.transform-r {
  width: 45%;
}

.transform-r img {
  width: 100%;
  border-radius: 16px;
}

.erp-value ul {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 70px;
}

.erp-value ul li {
  list-style-type: none;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 16px;
}

.erp-value ul li span {
  display: block;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: calc(20px + (36 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(30px + (40 - 30) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 5px;
}

.erp-details ul li {
  list-style-type: none;
  margin-bottom: 10px;
}

.erp-details ul li span {
  color: var(--white);
}

.director-cnt {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 30px;
}

.director-img {
  width: 272px;
}

.director-img img {
  width: 100%;
}

.director-msg {
  width: calc(100% - 242px);
}

.quote-txt {
  font-family: var(--font-heading);
  font-size: calc(20px + (36 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(30px + (40 - 30) * ((100vw - 320px) / (1920 - 320)));
  color: var(--white);
}

.quote-name {
  font-size: calc(14px + (14 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(20px + (20 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.quote-name span {
  display: block;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(26px + (30 - 26) * ((100vw - 320px) / (1920 - 320)));
}

.quote-linkedin {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

.quote-linkedin img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) saturate(100%) invert(97%) sepia(56%) saturate(3979%) hue-rotate(315deg) brightness(101%) contrast(96%);
}

.quote-linkedin:hover img {
  opacity: .7;
}

.accordion-item,
.accordion-button {
  background: none;
  border: none;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.accordion-button:not(.collapsed) {
  background: none;
  border: none;
  box-shadow: none;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(26px + (34 - 26) * ((100vw - 320px) / (1920 - 320)));
}

.accordion-button {
  padding: 20px 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(26px + (34 - 26) * ((100vw - 320px) / (1920 - 320)));
}

.accordion-body {
  padding: 0 0 20px 0;
  font-size: calc(14px + (14 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(20px + (20 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.faq-section {
  max-width: 848px;
  margin: auto;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(97%) sepia(56%) saturate(3979%) hue-rotate(315deg) brightness(101%) contrast(96%);
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(23deg) brightness(118%) contrast(118%);
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee:hover .marquee__item {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.marquee__item {
  display: inline-block;
  will-change: transform;
  -webkit-animation: marquee 70s linear infinite;
  animation: marquee 70s linear infinite;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.contact-cnt {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.contact-l {
  width: 35%;
}

.contact-r {
  width: 55%;
}

.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details ul li {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 20px;
  font-family: var(--font-heading);
  color: var(--white);
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(26px + (30 - 26) * ((100vw - 320px) / (1920 - 320)));
}

.contact-details ul li a {
  color: var(--white);
}

.contact-details ul li a:hover {
  text-decoration: underline;
}

.contact-details ul li span {
  display: block;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 12px;
  font-family: var(--font-body);
}

.contact-r {
  background: var(--darkbg);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .02);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  margin-bottom: 20px;
}

.form-half {
  width: 48%;
}

.form-lable {
  font-size: 12px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 3px;
  letter-spacing: 2.4px;
}

.form-control {
  background: none;
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 12px;
  border-radius: 12px;
  color: var(--bodyfont);
}

#header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

#header .navbar {
  transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

#header.is-sticky {
  position: fixed;
  background: rgba(6, 13, 28, 0.60);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.is-sticky .navbar {
  padding: 8px 0;
}

.cta-cnt {
  background: var(--darkbg);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .02);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.form-btn {
  display: flex;
  gap: 10px;
}

.trustus-section .recompenses-slider ul {
  justify-content: space-between;
}

.footer-link-area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.footer-smalltxt {
  font-size: calc(14px + (14 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(22px + (24 - 22) * ((100vw - 320px) / (1920 - 320)));
}

ul.footer-link-list li {
  font-size: calc(14px + (14 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(20px + (20 - 20) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 15px;
  position: relative;
  list-style-type: none;
  padding-left: 20px;
}

ul.footer-link-list li:before {
  content: '';
  background: url(../images/square-icon.svg) no-repeat center;
  background-size: 100%;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

ul.footer-link-list li a {
  color: var(--bodyfont);
}

ul.footer-link-list li a:hover {
  color: var(--primary);
}

ul.footer-link-list li:last-child {
  margin-bottom: 0;
}

.footer-blk2 ul.footer-link-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-blk2 ul.footer-link-list li {
  width: 48%;
  margin: 0;
}

.footer-social ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.footer-social ul li {
  list-style-type: none;
}

.footer-social ul li img {
  width: 26px;
}

.footer-social ul li:hover img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(94%) saturate(7138%) hue-rotate(313deg) brightness(96%) contrast(104%);
}