:root {
  --primary-backround-color: #101014;
  --primary-text-color: #f5f5f7;

  --brand-color: #fa3c00;

  --backdrop-filter-blur: blur(7px);
}

@font-face {
  font-family: "OpenRunde";
  src:
    url("/assets/fonts/OpenRunde-Regular.woff2") format("woff2"),
    url("/assets/fonts/OpenRunde-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenRunde";
  src:
    url("/assets/fonts/OpenRunde-Medium.woff2") format("woff2"),
    url("/assets/fonts/OpenRunde-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenRunde";
  src:
    url("/assets/fonts/OpenRunde-Semibold.woff2") format("woff2"),
    url("/assets/fonts/OpenRunde-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenRunde";
  src:
    url("/assets/fonts/OpenRunde-Bold.woff2") format("woff2"),
    url("/assets/fonts/OpenRunde-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

footer {
  width: 100%;
  max-width: 1040px;
  height: auto;
  margin-top: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 0 30px;
  box-sizing: border-box;
}

.footerLinkListSec {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footerLinkCon {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 70px;
}

.footerlinkCategoryCon {
  width: auto;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.footerLinkHeader {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-text-color);
  padding-bottom: 15px;
}

.footerLink {
  font-size: 16px;
  font-weight: 400;
  color: #7e7e7e;
  text-decoration: none;
  margin-top: 10px;
  transition: color 0.15s ease-in-out;
}

.footerLink:hover {
  color: #a8a8a8;
}

.footerLinkIcon {
  width: 17px;
  height: 17px;
  margin-left: -3px;
}

.footerImage {
  width: 253px;
  height: 92px;
}

.footerCopyrightSec {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 0 45px 0;
}

#footerCopyrightText {
  font-size: 16px;
  font-weight: 400;
  color: #7e7e7e;
  text-align: center;
}

.socialLinkCon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.socialLink {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 6px;
  padding: 3px;
  transition: background-color 0.15s ease-in-out;
}

.socialLink:hover {
  background-color: rgb(27, 27, 27);
}

.socialLinkIcon {
  width: 24px;
  height: 24px;
}

@media only screen and (max-width: 1040px) {
  .footerLinkListSec {
    flex-direction: column;
    align-items: center;
  }
  .footerLinkCon {
    flex-direction: column;
    gap: 50px;
  }
  .footerImage {
    margin-top: 50px;
  }
  .footerCopyrightSec {
    flex-direction: column-reverse;
    padding: 50px 0;
    gap: 22px;
  }
}
