:root{
    --MGold: #d8b04a;
    --lightGold: #ecd7a1;
    --MCyan: #00717F;
    --pageBackground: #0E0E10;
    --borderMain: #1C1C21;
    --borderLight: #1C1C21;
}

.popup-sec{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 2000;

}

.pop-back{
    width: 100%;
    height: 100%;
    background-color: #1c1c2172;
    display: flex;
    align-items: center;
    justify-content: center;  
}

.pop-card{
    width: 80vw;
    /* height: 30rem; */
    border-radius: 25px;
    background-color: var(--borderLight);
}

.pop-exit{
    width: 27px;
    height: 27px;
    display: flex;
    margin-right: 1.5rem;
    margin-top: 1rem;
    border: 1px solid white;
    border-radius: 5px;
    cursor: pointer;
    transition: ease .3s;
}

.pop-text-cont{
    width: 90%;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pop-text{
    font-size: 25px;
    font-weight: 400;
}
.pop-sec-text{
    text-align: center;
}

.pop-button{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem auto;
}

.cta {
    direction: ltr;
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
}
  
  .cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #b1dae7;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
  }
  
  .cta span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #2d9795;
  }
  
  .cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #2d9795;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
  }
  
  .cta:hover:before {
    width: 100%;
    background: #b1dae7;
  }
  
  .cta:hover svg {
    transform: translateX(0);
  }
  
  .cta:active {
    transform: scale(0.95);
  }
  

.pop-exit:hover{
    background-color: white;
    color: #1C1C21;
}

.ex-ico{
    margin: auto;
}