* {
    font-family: "Manrope", sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}
body {
    background: black;
    background-image: radial-gradient(circle at calc(15% - 40px) calc(65% + 50px),
    rgba(4, 0, 203, 0.5) 1%, transparent calc(15% + 10vw)),
    radial-gradient(circle at calc(90% + 0px) calc(10% + 0px),
        rgba(134, 0, 113, 0.5) 1%, transparent calc(15% + 10vw));
    background-repeat: no-repeat;
    margin: 0;
}

.container {
    max-width: 1090px;
    padding: 0 25px;
    margin: 0 auto;
}
.header {
    box-shadow: 0 4px 4px 0 #00000008;
    display: flex;
}
.header__container {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    row-gap: 10px;
}
.header__text {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: #ffffff;
}
.main {
    padding: 100px 0;
    max-width: 1040px;
}
.main__payment {
    display: flex;
    gap: 50px 80px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.main__payment__price {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 20px;
    width: 510px;
    height: 510px;
    overflow: hidden;
}
.main__payment__price > a {
    height: 100%;
    width: 100%;
}

.main__payment__price__icon {
    position: absolute;
    left: 5%;
    top: 5%;
    z-index: 2;
    max-width: 50px;
}

.media-multiple {
    height: 30px;
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
    position: absolute;
    right: 5%;
    top: 5%;
}

.media-multiple .media-count {
    display: block;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    text-align: center;
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
    color: rgba(17, 17, 17, 1);
    font-weight: 600;
}

.main__payment__price-list {
    display: flex;
    gap: 10px;
    max-width: 770px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    align-items: center;
    justify-content: center;
}
.main__payment__price-list__full {
    max-width: 510px;
}
.main__payment__price-item {
    padding: 0;
    max-width: 250px;
    max-height: 250px;
    height: 250px;
    width: 100%;
    position: relative;
    border-radius: 20px;
}
.main__payment__price-item__text {
    top: 75px;
    left: 56px;
    gap: 15px;
    cursor: pointer;
}
.main__payment__price-item__text__top {
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    text-align: center;
}
.main__payment__price-item__text__bottom {
    font-size: 48px;
    font-weight: 900;
    line-height: 64px;
    text-align: center;
}

.main__payment__price-item__icon {
    max-width: 33px;
    width: 100%;
}

.main__payment__background__icon{
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 20px;
    object-fit: cover;
    position: relative;
}
.main__payment__price__text {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.main__payment__price__text-container {
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.main__payment__price__text__top {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}
.main__payment__price__text__bottom {
    font-size: 64px;
    font-weight: 900;
    line-height: 84px;
    text-align: center;
}
.main__payment__title__text {
    position: absolute;
    bottom: 15px;
    left: 10px;
    right: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main__payment__price__payment {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
}
.main__payment__price__payment__details {
    padding: 30px;
    box-shadow: 0 3px 15px 0 #0000000D;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background-color: #1d1c27;
    color: #f0f0f0;
}

.main__payment__price__payment__details__head {
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    margin-bottom: 20px;
}

.main__payment__price__payment__details__list {
    display: flex;
    padding: 0;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    list-style: none;
    width: 100%;
    min-width: 390px;
}

.main__payment__price__payment__details__list__item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 16px;
    font-weight: 317;
    line-height: 22px;
    text-align: left;
    gap: 10px;
}

.main__payment__price__payment__details__list__item__price {
    font-weight: 317;
}
.main__payment__price__payment__details__button {
    width: 100%;
    padding: 13px 0;
    margin-top: 50px;
    border-radius: 100px;
    background: #BC8AFF;
    color: white;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    cursor: pointer;
    border: none;
}
.footer {
    padding-bottom: 40px;
}
.footer__top {
    background: linear-gradient(90deg, #0300BC 0%, #7E0076 100%);
    padding: 50px 62px;
    display: flex;
    gap: 50px;
    align-items: center;
    border-radius: 20px;
    margin-bottom: 60px;
    flex-direction: row;
}
.footer__top__text {
    font-size: 24px;
    font-weight: 534;
    line-height: 42px;
    text-align: left;
    color: #FAFAFA;
    flex: 1;
}
.footer__top__buttons {
    display: flex;
    gap: 10px;
}
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 60px;
    margin: 0 auto;
}
.footer__bottom__link {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    text-align: center;
    color: #FAFAFA;
}

@media screen and (max-width: 1000px) {
    .main__payment__price__payment__details__list {
        min-width: 275px;
    }
    .container {
        padding: 0 20px;
    }
    .header__container {
        padding-top: 15px;
        padding-bottom: 15px;
        flex-wrap: wrap;
    }
    .main {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .footer {
        padding-bottom: 40px;
    }
    .main__payment {
        justify-content: center;

    }
    .footer__top {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
    }
}

@media screen and (max-width: 790px) {
    .footer__bottom {
        flex-direction: column;
    }
    .footer__top {
        margin-bottom: 30px;
        flex-direction: column;
        align-items: center;
    }
    .footer__top__text {
        margin-bottom: 20px;
    }
    .footer__top__buttons {
        flex-direction: column;
    }
    .header__container {
        align-items: center;
        justify-content: space-between;
    }
    .main__payment__price {
        max-width: 335px;
        max-height: 335px;
    }
    .main__payment__price__icon {
        width: 24px;
    }
    .media-multiple {
        height: 24px;
    }

    .media-multiple .media-count {
        padding-top: 2px;
        padding-left: 5px;
        padding-right: 5px;
        color: rgba(17, 17, 17, 1);
        font-weight: 600;
    }
    .main__payment__price__text {
        gap: 15px;
    }
    .main__payment__price__text__top {
        font-size: 16px;
        line-height: 21px;
    }
    .main__payment__price__text__bottom {
        font-size: 48px;
        line-height: 63px;
    }
}
@media screen and (max-width: 670px) {
    .header__container {
        justify-content: center;
        flex-direction: column;
    }
}
@media screen and (max-width: 640px) {
    .main__payment__price-list {
        max-width: 335px;
        gap: 5px;
    }
    .main__payment__price-item {
        padding: 0;
        max-width: 165px;
        max-height: 165px;
        width: 100%;
        position: relative;
        border-radius: 20px;
    }
    .main__payment__price-item__text__bottom {
        font-size: 24px;
        line-height: 32px;
    }
}
@media screen and (max-width: 550px) {
    .header__logo {
        max-width: 123px;
    }
    .header__text {
        font-size: 16px;
        text-align: center;
    }
    .footer__top__text {
        font-size: 24px;
        font-weight: 534;
        line-height: 42px;
        text-align: left;
        color: #FAFAFA;
        flex: 1;
    }
    .main__payment__price__payment__details__list {
        min-width: 50px;
    }
    .main__payment__price {
        max-width: 250px;
        max-height: 250px;
    }
    .paypal-button-tagline {
        color: #FFFFFF !important;
    }
}
