.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.popup.active {
  opacity: 1 !important;
  visibility: visible;
}

.popup__content {
  background: #fff;
  padding: 30px;
  border-radius: 25px;
  max-width: 750px;
  width: 100%;
  position: relative;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.popup__content h2 {
  margin: 0;
  font-family: 'Cormorant', serif;
  font-size: 55px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  color: #25193C;
}

.popup__content h2 span {
  display: block;
  padding-top: 5px;
  font-family: 'Manrope', sans-serif;
  font-size: 26px;
  font-weight: 300;
  text-transform: none;
}

.popup__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 30px;
  gap: 30px;
}

.popup__icons a {
  width: 75px;
  height: 75px;
}

.popup__icons img {
  width: 100%;
  height: auto;
  display: block;
}

.popup.active .popup__content {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.popup__close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 20px;
  right: 20px;
  cursor: pointer;
  background: url('/images/popup-close/close.png') center/contain no-repeat;
  border: none;
}

@media screen and (max-width: 992px) {
  .popup__content {
    max-width: 680px;
  }
}

@media screen and (max-width: 768px) {
  .popup__content {
    max-width: 100%;
    margin: 0 15px;
    padding: 20px 10px 30px;
    border-radius: 15px;
  }
  
  .popup__close {
    width: 22px;
    top: 15px;
    right: 15px;
    font-size: 25px;
  }
  
  .popup__content h2 {
    margin-right: 45px;
    font-size: clamp(26px, 7vw, 68px);
  }

  .popup__content h2 span {
    padding-top: 10px;
    font-size: clamp(18px, 4vw, 26px);
  }
  
  .popup__icons {
    padding: 30px 10px 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .popup__icons a {
    width: 17%;
    height: auto;
  }
  .active-mobile{
        opacity: 1 !important;
        visibility: visible;
    }
}