footer {
  background: #000;
  position: relative;
}
.borderWrapper {
  border: 2px solid #1aded4;
  border-top-right-radius: 70px;
  border-top-left-radius: 70px;
  padding: 70px 0 20px;
}
.footerLogo {
  margin-top: -50px;
}
.socialMediaContainer {
  width: 40px;
}
.socialMediaContainer ul {
  gap: 20px;
}

.socialMediaContainer li img:hover {
  filter: brightness(0) saturate(100%) invert(14%) sepia(98%) saturate(4783%)
    hue-rotate(326deg) brightness(94%) contrast(98%);
  transition: all 0.2s ease-in;
}
.contactContainer {
  padding: 80px 40px 22px;
}
.contactContainer li svg {
  width: 30px;
  height: 30px;
}
.contactContainer li svg path {
  fill: #ed0b6d;
}
.contactContainer li a {
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease-in;
  cursor: pointer;
  font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
}
.contactContainer li a:hover {
  color: #ed0b6d;
  transition: all 0.3s ease-in;
}

.copyrightContainer {
  color: #fff;
  font-size: 14px;
  text-align: center;
  font-weight: 400;
}
.terms-privacy a{
  color: #fff;
  font-size: 14px;
  text-align: center;
  font-weight: 400;
}
.terms-privacy a:hover{
  color: #ed0b6d;
  transition: all 0.3s ease-in;
}
.mainFooter {
  display: flex;
  align-items: flex-start;
  justify-content: normal;
  padding: 0 20px;
  gap: 80px;
}
.footerRightContainer {
  width: 80%;
}

.popupvideo {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  opacity: 0;
  z-index: 9999;
  animation-name: scaleup;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
}

.popupvideo.active {
  display: block;
  opacity: 1;
  transition: all 0.3s ease-in;
}

.popupWrapper {
  width: 60%;
  height: auto;
  display: flex;
  position: relative;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  flex-direction: row;
  aspect-ratio: 16/9;
}

.closePopUp {
  width: 55px;
  height: 55px;
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 20px;
  cursor: pointer;
  background: url("../images/icon/close.png") no-repeat center center;
  filter: brightness(0) saturate(100%) invert(15%) sepia(88%) saturate(7495%)
    hue-rotate(328deg) brightness(97%) contrast(92%);
  background-size: 50%;
  border-radius: 50%;
  z-index: 2;
}

.popupWrapper::before {
  content: "";
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(52px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #111111e6;
}

.popupArea {
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.55);
  width: 100%;
  padding: 50px;
}
.popupArea svg path {
  fill: #ed0b6d;
}

.progress-container {
  position: fixed;
  bottom: 30px; /* Adjust position */
  right: 20px; /* Adjust position */
  width: 50px; /* Adjust size */
  height: 50px;
  z-index: 99;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.5s ease-in-out;
}
.solid .progress-container {
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

.progress-container:before {
  content: "\2197"; /* Unicode for the arrow */
  color: #1aded4;
  position: absolute;
  font-size: 20px;
  transform: rotate(135deg);
  transition: all 1s linear;
}
.solid .progress-container:before {
  transform: rotate(316deg);
  transition: all 1s linear;
}

.progress-container svg {
  transform: rotate(0deg);
  width: 100%;
  height: 100%;
}

.progress-background {
  fill: none;
  stroke: #d9d9d9;
  stroke-width: 2;
}

.progress-indicator {
  fill: none;
  stroke: #1aded4;
  stroke-width: 3;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: all 1s linear;
  animation: progress-animation 1s linear forwards;
  animation-timeline: scroll(root);
}

@keyframes progress-animation {
  0% {
    stroke-dashoffset: 283;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.lightboxOpen .lightbox{
  display: block;
  opacity: 1;
  transition: all 0.3s ease-in;
}


.lightbox {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  opacity: 0;
  z-index: 9999;
  animation-name: scaleup;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
}

.lightbox .popupArea{
  display: flex;
  align-items: center;
  padding: 10px;
}

.lightbox .popupWrapper{
  width: 100%;
  height: 100%;
  background: #000;
}
.lightbox .popupWrapper::before{
  background-color: #fff;
}

.lightbox .swiper-wrapper{
 align-items: center;
}

.lightbox .swiper-wrapper img{
  width: auto;
  height: auto;
  margin: 0 auto;
}

.footerBottom{
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;  
  padding: 35px 0 20px;
  border-top: 2px solid #1aded4;
}