/* NORMALIZE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* NORMALIZE */

body {
overflow-x: hidden;
    font: 500 normal 22px/1.3 'Colorblind', sans-serif;
}

.mwg_effect018 {
    position: relative;

}

.mwg_effect018 .scroll {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mwg_effect018 .pin-height {
    height: 500vh;
}

.mwg_effect018 .cards-container {
    height: 100vh;
    display: flex;
    align-items: center; /* Centering the cards inside the division */
    justify-content: center; /* Centering the cards inside the division */
    padding: 0 0 0 6vw;
    position: absolute;
    width:100vw;
}

.mwg_effect018 .card {
    width: 20vw;
    aspect-ratio: 0.75;
    border-radius: 1vw;
    margin: 0 0 0 -6vw;
    background: #ffffff40;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #FFF;
    font: 500 normal 0.9vw / normal 'Colorblind';
    text-transform: uppercase;
    padding: 1.8vw;
    backdrop-filter: blur(1.2vw);
    -webkit-backdrop-filter: blur(1.2vw);
}

/*.mwg_effect018 .card *:nth-child(1) {*/

/*}*/
/*.mwg_effect018 .card *:nth-child(2) {*/
/*margin: 0 auto;*/
/*}*/
/*.mwg_effect018 .card:nth-child(1) img {*/
/*width: 9.5vw;*/
/*}*/
/*.mwg_effect018 .card:nth-child(2) img {*/
/*width: 7vw;   */
/*}*/
/*.mwg_effect018 .card:nth-child(3) img {*/
/*width: 7.5vw;*/
/*}*/
/*.mwg_effect018 .card:nth-child(4) img {*/
/*width: 8vw;*/
/*}*/
/*.mwg_effect018 .card:nth-child(5) img {*/
/*width: 5.5vw;*/
/*}*/

@media (max-width: 768px) {
    .mwg_effect018 .card {
        width: 26vw;
    }

    .mwg_effect018 .card p {
        visibility: hidden;
    }

    .mwg_effect018 .card img {
        scale: 1.2;
    }
}

/*----------------------*/
.price-card {
}

.price-card_name {
    font-size: 3.5vw;
    text-align: center;
    line-height: 0.8;
    padding-bottom: 2vh;
}

.price-card_price-wrap {
    position: relative;
    text-align: center;
}

.price-card_icon {
    width: 100%;

    z-index: -1;
}

.price-card_price {
    line-height: 1;
    padding-top: 1vw;
    font-size: 5vw;
    top: 0;
    color: #000;
    text-align: center;
    width: 100%;
    display: none;
}
.price-card_price.active-price{
    display: block;
}
.price-card_abs{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.price-card_days {
    font-size: 2vw;
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    background: #000;
    padding: 0 1vw;
    display: inline-block;
    border-radius: 2vw;
    width: auto;

}

.price-card_btn {
    font-size: 2vw;
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    background: #000;
    padding: 0 1vw;
    display: inline-block;
    border-radius: 2vw;
    align-self: center;

    width: fit-content;
    margin: 0 auto;
}

