footer {
  background-color: #212020;
  box-shadow: 0px 4px 34px 0px #0000000d;
  padding: 20px 0;
}

.linkItem {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: 0.4s all ease-in;
}
.linkItem:hover,
.footerLinks a:hover{
  color: #d54075;
  transition: all 0.4s ease-in;
}
.flex {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .flex:first-child {
  margin-bottom: 40px;
}
footer .flex{
  justify-content: center;
  gap: 60px;
}
footer .flex p,
.footerLinks a {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 21px;
}
.icon-wrapper img:hover{
  filter: brightness(0) saturate(100%) invert(39%) sepia(22%) saturate(3630%) hue-rotate(303deg) brightness(87%) contrast(91%);
  transition: all 0.4s ease-in;
}

.footerLinks a:first-child::after {
  content: " | ";
  color: #fff;
}

.popupDiv {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 9999;
}
.popupWrapper {
  width: 70%;
  height: 600px;
  display: flex;
  position: relative;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  flex-direction: row;
  background: linear-gradient(to top left, #12102e, #000000);
  border-radius: 20px;
  box-shadow: 0 0 20px rgb(162 149 149 / 23%);
}

.popupWrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  inset: 0;
}

.popupArea {
  width: 100%;
  position: relative;
      display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.closeicon {
  width: 64px;
  height: 64px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  background: url("../media/icons/close.png") no-repeat center center;
  background-size: 50%;
}

.popupDiv.popup-swiper .popupWrapper{
  border: none;
}
.popupDiv.popup-swiper .popupArea{
  background: transparent;
    box-shadow: none;
}

.popupDiv.popup-swiper .popupWrapper::before{
  box-shadow: none;
    background: transparent;
    backdrop-filter: none;
}
.popupDiv.popup-swiper .swiper-slide{
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
  color: #fff;
}