@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-color);
}

::-webkit-scrollbar-thumb {
  background: var(--highlight-color);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--highlight-color);
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}

li {
  list-style: none;
}

:root {
  --primary-font: "Poppins", sans-serif;
  --secondary-font: "Lato", sans-serif;
  --background-color: #ffffff;
  --subtext-color: #333333;
  --text-color: #010203;
  --highlight-color: #008b8b;
  --fade-color: #008b8b6b;
  --header-size: 40px;
  --subHeader-size: 20px;
  --small-size: 16px;
  --tinyText: 14px;
}
body {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-color);
  font-family: var(--primary-font);
  font-size: var(--header-size);
}
p {
  color: var(--text-color);
  font-family: var(--secondary-font);
  font-size: var(--small-size);
  font-family: var(--primary-font);
}
.highlightText {
  color: var(--highlight-color);
}
#spinner {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--background-color) url(../img/sound_200.gif) no-repeat center
    center;
  background-size: 7%;
  z-index: 3000;
}
.callToAction {
  font-family: var(--primary-font);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  transition: all 0.3s ease;
  padding: 6px 18px;
  background-color: var(--highlight-color);
  font-size: var(--small-size);
  border: 1px solid var(--highlight-color);
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: var(--text-color);
}
.callToAction svg {
  transition: all 0.3s ease;
  background: none;
  margin-left: 5px;
}
.callToAction:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.callToAction:hover svg {
  transform: translateX(2px);
}
/* nav header */

header {
  width: 100%;
  height: 15vh;
  z-index: 1000;
  box-shadow: none; /* Initially no box-shadow */
  transition: height 0.9s ease, position 0.9s ease, box-shadow 0.7s ease;
  margin-bottom: 5%;
}
header .nav-bar,
main .landing-page,
#about,
#service .serviceContainer,
#proof .proofContainer,
#quote .quoteContainer,
#testimony .testimonyContainer,
#contact .contactContainer,
#footer .footerContainer {
  width: 100%;
  display: flex;
  justify-content: center;
}
header .nav-bar {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}
header .nav-bar .nav-links {
  padding-top: 2%;
}
header #topnav .nav-links {
  display: flex;
  flex-direction: column;
  padding-left: 5%;
  padding-top: 7%;
  z-index: 1000;
}
header #topnav .nav-links li {
  margin: 5px;
}
header #topnav .nav-links li a {
  position: relative;
  font-size: var(--subHeader-size);
  color: var(--text-color);
  font-family: var(--primary-font);
  font-weight: 500;
  transition: all 0.5s ease;
}
header .nav-bar .logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: 5%;
  margin-top: 2%;
  height: 100%;
  width: 45%;
  font-weight: 800;
  z-index: 2;
}
header .nav-bar .logo img {
  margin-right: 20px;
  width: 40px;
}
header .nav-bar .logo p {
  font-size: var(--subHeader-size);
}
header .nav-bar .nav-links {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-right: 5%;
  margin-top: 2%;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  cursor: pointer;
  margin-left: 10%;
  z-index: 100;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Transformations to make the hamburger into an "X" */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
header .nav-bar .nav-links li {
  position: relative;
  margin-right: 30px;
  padding-bottom: 5px;
}
header .nav-bar .nav-links li a {
  position: relative;
  font-size: var(--small-size);
  color: var(--text-color);
  font-family: var(--primary-font);
  font-weight: 500;
  padding-left: 5px;
  transition: all 0.5s ease;
}
header .nav-bar .nav-links li a:hover,
header #topnav .nav-links li a:hover {
  color: var(--highlight-color);
}
header .nav-bar .nav-links li::before,
header #topnav .nav-links li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--highlight-color);
  transition: width 0.5s ease;
}

header .nav-bar .nav-links li:hover::before,
header #topnav .nav-links li:hover::before {
  width: 100%;
}
header .nav-bar .nav-links li .highlightText {
  color: var(--highlight-color);
}
header.scrolled {
  height: 11vh;
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: var(--background-color);
}
header .nav-bar .nav-links li a.changed {
  color: var(--text-color);
}
header .nav-bar .nav-links li .highlightText.changed {
  color: var(--highlight-color);
}
header #topnav {
  width: 100%;
  height: 0%;
  min-height: 0px;
  position: sticky;
  z-index: 1000;
  background-color: var(--background-color);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.2s ease;
}
header #topnav.open {
  height: 100%;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 1;
  visibility: visible;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header #topnav .nav-links {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50%;
  transform: translateX(-10px);
  transition: all 0.5s ease-out;
  opacity: 0;
  /* background-color: #333333; */
}

header #topnav.open .nav-links {
  opacity: 1;
  transform: translateX(0px); /* Make links fully visible */
}
header #topnav.open .nav-links li a{
  font-size: var(--small-size);
  padding-left: 10px;
}
header #topnav.open .nav-links li{
  position: relative;
  margin-right: 30px;
  padding-bottom: 5px;
}
/* landing-page  */
main {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--background-color);
}
main #home {
  position: relative;
  background-image: url("../img/home.png");
  background-size: cover;
  background-position-x: 0px;
  background-position-y: 0px;
  background-repeat: no-repeat, repeat;
}
main .landing-page {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
  margin: 0 auto;
  justify-content: center;
  align-items: start;
}
main #home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.9472163865546218) 30%,
    rgba(255, 255, 255, 0.8239670868347339) 45%,
    rgba(255, 255, 255, 0) 65%
  );
}
main .landing-page .textContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: var(--text-color);
  text-align: center;
  z-index: 2;
}
main .landing-page .textContainer .slogan {
  color: var(--text-color);
  font-family: var(--primary-font);
}
main .landing-page .textContainer .header {
  color: var(--text-color);
  font-family: var(--primary-font);
  font-size: var(--header-size);
  line-height: 1.5;
  width: 90%;
}
main .landing-page .textContainer .subText {
  color: var(--text-color);
  font-family: var(--primary-font);
  font-size: var(--small-size);
  line-height: 1.5;
  width: 80%;
}
main .landing-page .textContainer .callToAction {
  font-family: var(--primary-font);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  transition: all 0.3s ease;
  padding: 6px 18px;
  background-color: var(--highlight-color);
  font-size: var(--small-size);
  border: 1px solid var(--highlight-color);
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: var(--text-color);
}
main .landing-page .textContainer .callToAction svg {
  transition: all 0.3s ease;
  background: none;
  margin-left: 5px;
}
main .landing-page .textContainer .callToAction:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
main .landing-page .textContainer .callToAction:hover svg {
  transform: translateX(2px);
}

/* ABOUT US SECTION */

#about {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9248074229691877) 43%,
    rgba(255, 255, 255, 0.10688025210084029) 80%,
    rgba(255, 255, 255, 0) 100%
  );
}
#about .ImgContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#about .ImgContainer .img-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--fade-color);
}
#about .ImgContainer img {
  width: 100%;
  height: 100%;
}
#about .textContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  color: var(--text-color);
  text-align: center;
  margin-top: 10%;
}
#about .textContainer .subHeader {
  margin-top: 10%;
  margin-bottom: 2%;
  font-size: var(--subHeader-size);
  color: var(--highlight-color);
  font-weight: 600;
}
#about .textContainer h1 {
  font-family: var(--primary-font);
}
#about .textContainer .subText {
  font-family: var(--primary-font);
  color: var(--subtext-color);
  width: 95%;
}
#about .textContainer .callToAction {
  font-family: var(--primary-font);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  transition: all 0.3s ease;
  padding: 6px 18px;
  background-color: var(--highlight-color);
  font-size: var(--small-size);
  border: 1px solid var(--highlight-color);
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: var(--text-color);
}
#about .textContainer .callToAction svg {
  transition: all 0.3s ease;
  background: none;
  margin-left: 5px;
}
#about .textContainer .callToAction:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
#about .textContainer .callToAction:hover svg {
  transform: translateX(2px);
}

/* SERVICE SECTION */

#service {
  position: relative;
  font-family: var(--primary-font);
  width: 100%;
}
#service .serviceContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  text-align: center;
}

#service .serviceContainer .subHeader {
  margin-top: 10%;
  margin-bottom: 2%;
  font-size: var(--subHeader-size);
  color: var(--highlight-color);
}
#service .serviceContainer h1 {
  margin-bottom: 20%;
}
#service .services {
  display: grid;
  grid-gap: 20px 0px;
  grid-template-columns: repeat(minmax(200px, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  place-items: center;
}

#service .services .service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--highlight-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#service .services .service .icon {
  margin-top: 10%;
  margin-bottom: 10%;
}
#service .services .service .icon img {
  width: 70px;
  height: 70px;
}

#service .services .service h2 {
  font-size: var(--subHeader-size);
  margin-bottom: 2%;
}
#service .services .service p {
  width: 90%;
  margin-bottom: 2%;
  font-size: var(--small-size);
  font-family: var(--primary-font);
  text-align: center;
  flex-grow: 1;
}

/* PROOF SECTION */

#proof {
  position: relative;
  width: 100%;
  font-family: var(--primary-font);
}
#proof .proofContainer {
  position: relative;
  display: grid;
  grid-gap: 20px 0px;
  grid-template-columns: repeat(minmax(200px, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  place-items: center;
  color: var(--text-color);
  text-align: center;
}
#proof .proofContainer .ImgContainer {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  object-fit: contain;
}
#proof .proofContainer .ImgContainer .img-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  cursor: pointer;
}
#proof .proofContainer .ImgContainer .img-wrapper img {
  width: 100%;
  height: 100%;
  position: relative;
}

#proof .proofContainer .textContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  color: var(--text-color);
  text-align: center;
  margin-top: 10%;
}
#proof .proofContainer .textContainer .subHeader {
  color: var(--highlight-color);
  font-size: var(--subHeader-size);
}
#proof .proofContainer .textContainer .header {
  margin-top: 2%;
  margin-bottom: 5%;
  color: var(--text-color);
  font-size: var(--header-size);
}
#proof .proofContainer .textContainer .subText {
  margin-top: 2%;
  margin-bottom: 5%;
  color: var(--subtext-color);
  font-size: var(--small-size);
  font-family: var(--primary-font);
  width: 90%;
}
#proof .proofContainer .textContainer .subText .highlightText {
  color: var(--highlight-color);
}
#proof .proofContainer .textContainer .points {
  display: grid;
  grid-gap: 20px 0px;
  grid-template-columns: repeat(minmax(200px, 1fr));
  grid-auto-rows: 1fr;
}
#proof .proofContainer .textContainer .points .point {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
}
#proof .proofContainer .textContainer .points .point .pointText {
  font-size: var(--small-size);
}

/* QUOTE SECTION  */

#quote {
  position: relative;
  width: 100%;
  font-family: var(--primary-font);
}

#quote .quoteContainer {
  position: relative;
  display: grid;
  place-items: center;
}
#quote .quoteContainer .header {
  font-family: var(--primary-font);
  color: var(--text-color);
}
#quote .quoteContainer .subText {
  font-family: var(--primary-font);
  color: var(--subtext-color);
  margin-bottom: 10%;
}
#quote .quoteContainer .form {
  width: 90%;
  min-height: 50vh;
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  place-self: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 10%;
}
#quote .quoteContainer .form .input,
#quote .quoteContainer .form button {
  margin: 10px;
  padding: 10px 10px;
  margin-top: 5%;
  font-family: var(--primary-font);
  border-radius: 8px;
  font-size: var(--small-size);
  border: 1px solid var(--highlight-color);
  outline: none;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#quote .quoteContainer .form button {
  background-color: var(--highlight-color);
  transition: all 0.3s ease;
  cursor: pointer;
}
#quote .quoteContainer .form button:hover {
  background-color: var(--highlight-color);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
#quote .quoteContainer .form #quoteError {
  font-family: var(--primary-font);
  font-size: var(--small-size);
  margin-left: 5%;
  width: 90%;
}
/* TESTIMONY SECTION */

#testimony {
  width: 100%;
}

#testimony .testimonyContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  text-align: center;
}
#testimony .testimonyContainer .header {
  margin-top: 5%;
  font-size: var(--header-size);
  font-family: var(--primary-font);
}
#testimony .testimonyContainer .subHeader {
  margin-top: 5%;
  font-size: var(--subHeader-size);
  font-family: var(--primary-font);
  color: var(--subtext-color);
}
#testimony .testimonyContainer .content .ImgContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}
#testimony .testimonyContainer .content .ImgContainer img {
  width: 350px;
  height: 350px;
}
#testimony .testimonyContainer .content {
  width: 98%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
}
#testimony .testimonyContainer .textContainer {
  display: flex;
  flex-direction: column;
}
#testimony .testimonyContainer .sliderContainer {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  height: 400px;
  background-color: var(--highlight-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
#testimony .testimonyContainer .sliderContainer .swiper-button-next,
#testimony .testimonyContainer .sliderContainer .swiper-button-prev {
  color: var(--background-color);
}
#testimony .testimonyContainer .testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  flex-shrink: 0;
}
#testimony .testimonyContainer .testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}
#testimony .testimonyContainer .testimonial p {
  font-size: var(--subHeader-size);
  font-family: var(--primary-font);
  color: var(--subtext-color);
  font-weight: 600;
  line-height: 1.4;
  width: 70%;
}

/* CONTACT SECTION */

#contact {
  width: 100%;
  position: relative;
}
#contact .contactContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10%;
}
#contact .contactContainer .header {
  font-size: var(--header-size);
  font-family: var(--primary-font);
  color: var(--text-color);
  margin-top: 6%;
}
#contact .contactContainer .subHeader {
  font-size: var(--subHeader-size);
  font-family: var(--primary-font);
  color: var(--subtext-color);
  text-align: center;
  margin-bottom: 5%;
}
#contact .contactContainer .companyInfo {
  width: auto;
  display: grid;
  grid-template-columns: repeat(1, auto);
  gap: 20px;
  place-self: center;
}
#contact .contactContainer .companyInfo .info {
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  align-self: flex-start;
}
#contact .contactContainer .companyInfo .info img {
  margin-right: 10px;
}
#contact .contactContainer .companyInfo .info p {
  font-size: var(--small-size);
  font-family: var(--primary-font);
  color: var(--subtext-color);
  margin: 0;
}
#contact .contactContainer .companyInfo .address {
  align-self: flex-start; /* Ensure each item aligns with its content */
}

#contact .contactContainer .companyInfo .email {
  align-self: flex-start;
}

#contact .contactContainer .companyInfo .telephone {
  align-self: flex-start;
}
#contact .contactContainer .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#contact .contactContainer .map {
  width: 500px;
  height: 300px;
  margin-top: 5%;
  object-fit: cover;
  position: relative;
}
#contact .contactContainer .map iframe {
  width: 500px;
  height: 300px;
}
#contact .contactContainer .form {
  width: 500px;
  height: 100%;
  min-height: 300px;
  margin-top: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#contact .contactContainer .form .input,
#contact .contactContainer .form button {
  width: 90%;
  margin: 10px;
  padding: 10px 10px;
  margin-top: 5%;
  font-family: var(--primary-font);
  border-radius: 8px;
  font-size: var(--small-size);
  border: 1px solid var(--highlight-color);
  outline: none;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#contact .contactContainer .form button {
  background-color: var(--highlight-color);
  transition: all 0.3s ease;
  cursor: pointer;
}
#contact .contactContainer .form button:hover {
  background-color: var(--highlight-color);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
#contact .contactContainer .form #contactError {
  font-family: var(--primary-font);
  font-size: var(--small-size);
  margin-left: 5%;
  width: 90%;
}
/* FOOTER SECTION */

#footer {
  width: 100%;
  position: relative;
}
#footer .footerContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--highlight-color);
}
#footer .footerContainer .copyright {
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1%;
  border-top: 2px solid var(--text-color);
}

#footer .footerContainer .copyright p {
  font-size: var(--small-size);
  font-family: var(--primary-font);
  font-weight: 600;
}
#footer .footerContainer .links {
  width: 90%;
  min-height: 30vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  place-self: center;
  margin-top: 5%;
}
#footer .footerContainer .links .companyInfo {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 70px;
}
#footer .footerContainer .links .companyInfo .logo {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  margin-bottom: 10%;
}
#footer .footerContainer .links .companyInfo .logo .header {
  font-size: var(--subHeader-size);
  width: 50%;
  font-weight: 800;
}
#footer .footerContainer .links .companyInfo .logo img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}
#footer .footerContainer .links .companyInfo .company {
  display: flex;
  flex-direction: column;
}
#footer .footerContainer .links .companyInfo .company p {
  font-size: var(--small-size);
  font-family: var(--primary-font);
  color: var(--subtext-color);
  font-weight: 600;
}
#footer .footerContainer .links .companyInfo .company .info {
  display: flex;
  flex-direction: row;
  padding-bottom: 5%;
}
#footer .footerContainer .links .companyInfo .company .info img {
  margin-right: 5%;
  width: 20px;
  height: 20px;
}
#footer .footerContainer .links .quicklinks,
#footer .footerContainer .links .socials {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: end;
}
#footer .footerContainer .links .quicklinks .subHeader,
#footer .footerContainer .links .otherlinks .subHeader,
#footer .footerContainer .links .socials .subHeader {
  position: relative;
  display: flex;
  align-items: center;
  font-size: var(--subHeader-size);
  margin-bottom: 7%;
}
#footer .footerContainer .links .quicklinks .subHeader::before,
#footer .footerContainer .links .otherlinks .subHeader::before,
#footer .footerContainer .links .socials .subHeader::before {
  content: "";
  width: 100%;
  height: 10%;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--text-color);
}
#footer .footerContainer .links .quicklinks .link,
#footer .footerContainer .links .otherlinks .link {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  width: 90%;
  margin-bottom: 4%;
}
#footer .footerContainer .links .quicklinks .link img,
#footer .footerContainer .links .otherlinks .link img {
  margin-right: 10%;
}
#footer .footerContainer .links .quicklinks .link a,
#footer .footerContainer .links .otherlinks .link a {
  position: relative;
  font-size: var(--small-size);
  font-family: var(--primary-font);
  color: var(--subtext-color);
  font-weight: 600;
  transition: color 0.5s ease;
}

#footer .footerContainer .links .quicklinks .link a::before,
#footer .footerContainer .links .otherlinks .link a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--text-color);
  transition: width 0.5s ease;
}

#footer .footerContainer .links .quicklinks .link a:hover,
#footer .footerContainer .links .otherlinks .link a:hover {
  color: var(--text-color);
}
#footer .footerContainer .links .quicklinks .link a:hover::before,
#footer .footerContainer .links .otherlinks .link a:hover::before {
  width: 100%;
}

#footer .footerContainer .links .otherlinks {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
#footer .footerContainer .links .socials {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding-left: 20px;
}
#footer .footerContainer .links .socials .socialLinks {
  display: flex;
  flex-direction: row;
}
#footer .footerContainer .links .socials .socialLinks img {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
