footer {
  width: 100%;
  min-height: 30vh;
  min-height: 30svh;
  max-height: 300vh;
}

.footerContainer {
  background-image: url("../assets/image/footer.webp");
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 20px;
  padding-bottom: 5%;
}
.footerContainer .mapSection {
  max-height: 100%;
  flex: 1;
}
.footerContainer .mapSection img {
  width: 100%;
  height: 100%;
}

.footerItemSection {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex: 3;
  gap: 50px;
}

.footerItemSection .socialMediaIcons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  width: 100%;
}

.footerItemSection .socialMediaIcons .icon {
  width: 26px;
  height: 26px;
}

.footerItemSection .socialMediaIcons .icon img {
  width: 100%;
}

.footerItemSection .tabsSection {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  color: white;
}

.footerItemSection .tabsSection .footerCol {
  flex-basis: 22%;
}
.footerItemSection .tabsSection .footerCol.lastCol {
  flex: 30%;
}
.footerItemSection .tabsSection .footerCol .footerSubTitle {
  font-family: "Saira", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 30px;
}

.footerItemSection .tabsSection .footerCol .footerList {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
}

.footerItemSection .tabsSection .footerCol .footerList li {
  list-style-type: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.footerItemSection .tabsSection .footerCol .footerList li a {
  color: var(--linksColor);
  text-decoration: none;
  font-family: "Saira", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.footerItemSection .tabsSection .footerCol .footerList li span {
  margin-top: 5px;
}
.footerItemSection .tabsSection .footerCol .footerList li a:hover {
  color: var(--textHover);
}
