@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,
*:before,
*:after {
    margin-block: 0;
    margin-inline: 0;
    padding-block: 0;
    padding-inline: 0;
    box-sizing: border-box;
    transition: all 0.3s;
}

html {
    height: auto;
    min-height: 100%;
    display: flex;
    font-size: 100%;
    background-color: #000;
}


body {
    font-family: "Montserrat", sans-serif;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
    background-color: #ffff;

}

a:link,
a:visited,
a:focus,
a:hover,
a:active {
    color: #fff;
}

p {
    font-size: 0.750rem;
}

.page-ar {
    direction: rtl;
}


/* loader */

.overlay {
    /* display: none; */
    display: flex;
    position: relative;
    width: 100%;
    backdrop-filter: blur(4px);

    background: #fff;
}

.loadCss {
    width: 100%;
    height: 100vh;
}

.dotsCss {
    width: 100%;
    height: 100%;
    /* display: none; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.dot {
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 20px;
    transform: translate(0px, -40px);
    animation: bounce 1s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0% {
        transform: translate(0px, -10px);
    }

    40% {
        width: 0px;
        height: 2px;
        transform: translate(0px, 40px) scale(1.7);
    }

    100% {
        height: 20px;
        transform: translate(0px, -20px);
    }
}





.desc_fix {
    margin: 0;
    padding: 5px;
    font-size: 11px;
    color: white;
    background: rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
    text-align: center;
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
}

header p.changeLanguage a:link,
header p.changeLanguage a:visited,
header p.changeLanguage a:focus,
header p.changeLanguage a:hover,
header p.changeLanguage a:active {
    text-decoration: none;
}

.changeLanguage {
    background: linear-gradient(to top, #856CFF, #ff00b9);
    color: #fafafa;
    border-radius: 50px;
    font-family: Arial;
    font-size: 1rem !important;
    font-weight: bold;
    padding: 5px 0;
    border: 0;
    margin-inline: auto;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}


header p.changeLanguage {
    width: 4rem;
    margin-block: 0;
    /* margin-inline: 0; */
    /* text-align: end;
    padding-inline-end: 5px; */
}


@media screen and (max-width: 768px){
    
.changeLanguage {
    margin-right: 1rem;
}

.page-ar .changeLanguage {
    margin-left: 1rem;
}

}

header .logoHeaderBox {
    width: 85%;
    padding-inline-start: 14%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

header img.logoHeader {
    margin-block: 5px 0;
    width: 130px;
    height: auto;
}


main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mainWording {
    background: linear-gradient(to top, #856CFF, #ff00b9);
    /* background-color:#FFCC01 ; */
    -webkit-background-clip: text;
    color: transparent;
    margin: 15px auto;
    padding: 15px;
    font-size: 2.25rem;
}

main .step {
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    width: 240px;
    margin: 10px auto;
    padding: 0px 0px 0px 13px;
    color: #000;
    border-radius: 47px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

main .step:hover,
main .step.active {
    color: #fafafa;
    background: linear-gradient(to top, #856CFF, #ff00b9);
    scale: 1.1;
}

main .step span {
    margin-right: 13px;
    padding: 7px 10px;
    font-size: 1.3rem;
    color: black;
    display: block;
    border-radius: 50%;
}

.billing_container {
    width: 80%;
    max-width: 270px;
    margin-block: auto;
    margin-inline: auto;
    color: #fff;
}


#msisdn-container, #otp-container {
    /* width: calc(100% - 50px); */
    /* padding: 0 20px; */
    background: #fff;
    border-radius: 50px;
    align-items: center;
    position: relative;
    display: none;
    float: none;
    /* width: 340px; */
    margin: 0 auto 10px auto;
    border: 0;
    color: #000000;
    text-align: center;
}


#msisdn-container::before, #otp-container::before {
    position: absolute;
    width: 30px;
    top: 18px;
    left: -30px;
    z-index: 999;
    content: url(../images/ArrowLeft.png);
    animation: movingLeftArrow 0.8s infinite;
}

#msisdn-container::after, #otp-container::after {
    position: absolute;
    width: 30px;
    top: 18px;
    right: -30px;
    content: url(../images/ArrowRight.png);
    animation: movingRightArrow 0.8s infinite;
    z-index: 999;
}

.phone {
    position: absolute;
    background-image: url(../images/phone.svg);
    width: 50px;
    height: 60px;
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    /* background-color: #ececec; */
    margin-right: .5em;
}

.otp {
    position: absolute;
    background-image: url(../images/pin.png);
    width: 50px;
    height: 60px;
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    /* background-color: #ececec; */
    margin-right: .5em;
}

#pin {
    letter-spacing: 5px;
}


#msisdn-container input, #otp-container input,
#msisdn-container select, #otp-container select {
    /* display: block; */
    /* padding: 0 20px; */
    line-height: 50px;
    border: 0;
    background-color: #fff;
    margin: 0;
    float: left;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    border: 0;
    box-shadow: 0 0 0 2px #000000;
    -webkit-box-shadow: 0 0 0 2px #000000;
    font-size: 22px;
    text-align: center;
    font-weight: bold;
    /* width: 340px; */
    height: 60px;
}

.below_container .cta {
    background: gray;
    color: #999;
    border-radius: 50px;
    font-family: Arial;
    font-size: 1.875rem !important;
    font-weight: bold;
    padding: 20px 0;
    width: 100%;
    border: 0;
    min-width: 280px;
    min-height: 70px;
    margin-block: 5px;
    margin-inline: auto;
    /* padding-block: .25em; */
    clear: both;
    box-shadow: 0 0 6px #aaa;
    /* padding: 15px 15px 10px 15px !important; */
    cursor: pointer;
    margin: 15px auto;
    text-align: center;
    /* line-height: 1.5rem; */
    display: block;
}

#cta1 {
    padding: 18px;
}


.below_container .cta span {
    display: block;
    font-size: 0.8rem;
    font-weight: normal;
    text-transform: none;
    line-height: 1rem;
}



.below_container .active {
    background: linear-gradient(to top, #856CFF, #ff00b9);
    color: #fafafa;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

.below_container .active1{
    background: linear-gradient(to top, #6957bf, #e600a7);
    color: #fafafa;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}


.ok {
    position: absolute;
    right: 0;
    top: 0.3rem;
    width: 3rem;
    max-width: 250px;
    margin: 0 auto;
    padding: 5px;
}


.circ {
    opacity: 0;
    stroke-dasharray: 130;
    stroke-dashoffset: 130;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.tick {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    -webkit-transition: stroke-dashoffset 1s 0.5s ease-out;
    -moz-transition: stroke-dashoffset 1s 0.5s ease-out;
    -ms-transition: stroke-dashoffset 1s 0.5s ease-out;
    -o-transition: stroke-dashoffset 1s 0.5s ease-out;
    transition: stroke-dashoffset 1s 0.5s ease-out;
}

.drawn+svg .path {
    opacity: 1;
    stroke-dashoffset: 0;
}

.drawn2+svg .path {
    opacity: 1;
    stroke-dashoffset: 0;
}






.message {
    display: none;
    text-align: center;
    /* width: 15.7rem; */
    font-weight: 400;
    color: #fff;
    font-size: medium;
    background-color: #ff3200;
    border-radius: 5px;
    padding: 0.5rem;
    margin-top: 3.5rem;
}

.playicon {
    max-width: 100px !important;
}


.exit_home {
    display: flex;
    height: 21px;
    color: #fff;
    background-color: #555;
    border: 1px solid #333;
    border-radius: 20px;
    max-width: 50px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    text-transform: none;
    margin: 10% auto;
    opacity: 0.6;
    align-items: center;
    justify-content: center;
}



.mentiondeonto,
.headerinfo {
    background: none;
    color: #000;
    font-size: 0.6rem;
    text-align: center;
    width: 100%;
}

.mentiondeonto {
    margin: 0.5rem 0;
}

.headerinfo {
    margin: 3px 0px;
}

.intro {
    color: #000;
    font-weight: bold;
    margin: 10px 5%;
    font-size: 15px;
    max-width: 460px;
    text-align: center;
    display: none;
}


footer,
.service-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-block: 25px 0;
    margin-inline: auto;
    font-size: 0.8rem;
    font-weight: 400;
    color: #000;
}

footer ul,
.service-info ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

footer .legacy ul,
.service-info .legacy ul {
    flex-direction: column;
    list-style-position: inside;
    list-style-type: none;
    margin-block: 7px;
    margin-inline: auto;
    padding-inline: 2%;
}

footer a:link,
footer a:visited,
footer a:focus,
footer a:hover,
footer a:active,
.service-info a:link,
.service-info a:visited,
.service-info a:focus,
.service-info a:hover,
.service-info a:active {
    color: #000;

}

p.copyRight {
    margin: 0.5rem;
}

@keyframes movingLeftArrow {
    0% {
        left: -10px;
    }

    100% {
        left: -30px;
    }
}

@keyframes movingRightArrow {
    0% {
        right: -10px;
    }

    100% {
        right: -30px;
    }
}

@keyframes glowing {
    0% {
        box-shadow: 0 0 3px #FFF;
    }

    50% {
        box-shadow: 0 0 40px #A22FCE;
    }

    100% {
        box-shadow: 0 0 3px #FFF;
    }
}

#blocker {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 50%;
    top: 50%;
    opacity: .6;
    -webkit-transform: translate3d(-50%, -50%, 0) !important;
    transform: translate3d(-50%, -50%, 0) !important;
    z-index: 9999;
    background-color: #000;
}

.preloader {
    margin-bottom: 15px;
    width: 50px;
    height: 80%;
    background: url(../images/preloader.svg) center no-repeat;
    background-size: 50px auto;
    margin: auto;
    -webkit-animation: preloader 2s infinite linear;
    animation: preloader 2s infinite linear;
    display: block
}


@-webkit-keyframes preloader {
    0% {
        -webkit-transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes preloader {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.step-0-product-info {
    color: black;
    font-size: 12px;
    margin: 5px 20px 40px 20px;
}

.field-alert.active {
    display: block;
}

.field-alert {
    position: absolute;
    left: 50%;
    bottom: 100%;
    margin-bottom: 14px;
    margin-left: -135px;
    width: 270px;
    background: #fc5b53;
    border-radius: 4px;
    padding: 3px 5px;
    color: #121212;
    font-size: 14px;
    display: none;
}

.field-alert:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #856CFF;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
        -webkit-transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
        -webkit-transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
        -webkit-transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
        -webkit-transform: translate3d(4px, 0, 0);
    }
}

#step-0 #cta1{
    display: none;
}

.hero-banner img {
    width: 70%;
    max-width: 400px;
    margin: 0 auto;
}

.rounded-image {
    border-radius: 10px;
    border: 1px solid #000;
    object-fit: cover;
}

#step-1 #otp-container{
    margin-top: 50px;
}

#lottiebanner{
    display: none;
    height: 250px;
}

.shake {
    animation: shake 2s infinite !important;
    transform: translate3d(0, 0, 0);
}

.billing-partner {
    margin: 0 auto 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(to top, #856CFF, #ff00b9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-ar .billing-partner {
    letter-spacing: normal;
    font-size: 0.7rem;
}


/* company info */

.company-info {
    margin: 0.6rem auto 0.2rem;
    padding-inline: 4%;
    max-width: 640px;
    line-height: 1.5;
    text-align: center;
    color: inherit;
}

.company-info p {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
}

.company-info p:last-child {
    margin-bottom: 0;
}

.company-info strong {
    font-weight: 600;
}


/* product information */

body {
    overflow-x: hidden;
}

.ps-info {
    width: 100%;
    margin-top: 24px;
    text-align: center;
    color: #1f2430;
    font-family: "Montserrat", sans-serif;
    flex-shrink: 0;
}

.ps-info * {
    transition: none;
}

.psi-wrap {
    max-width: 1040px;
    margin: 0 auto;
}

.psi-block {
    padding: 48px 20px;
    background: #fff;
}

.psi-block-alt {
    background: #f6f7fb;
}

.psi-h {
    font-size: 1.7rem;
    font-weight: 800;
    color: #1f2430;
    margin-bottom: 8px;
}

.psi-sub {
    font-size: 0.95rem;
    color: #5a6270;
    margin-bottom: 28px;
}

.psi-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.psi-step {
    flex: 1 1 200px;
    max-width: 260px;
}

.psi-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #856CFF, #ff00b9);
}

.psi-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1f2430;
}

.psi-step p {
    font-size: 0.9rem;
    color: #5a6270;
}

.psi-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.psi-card {
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 6px 18px rgba(20, 20, 40, 0.05);
}

.psi-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-bottom: 10px;
}

.psi-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2430;
    margin-bottom: 2px;
}

.psi-card span {
    font-size: 0.8rem;
    color: #8a90a0;
}

.psi-more {
    margin-top: 22px;
    font-style: italic;
    color: #5a6270;
}

.psi-grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    text-align: left;
}

.psi-feature {
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 14px;
    padding: 20px 22px;
}

.psi-feature h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2430;
}

.psi-feature p {
    font-size: 0.9rem;
    color: #5a6270;
}

.psi-grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.psi-emoji {
    font-size: 2.1rem;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.psi-genre h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1f2430;
}

.psi-genre p {
    font-size: 0.88rem;
    color: #5a6270;
}

.psi-includes-box {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 18px;
    padding: 34px;
}

.psi-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
    text-align: left;
    margin-top: 18px;
}

.psi-check {
    position: relative;
    padding-left: 34px;
    font-size: 0.95rem;
    color: #1f2430;
    font-weight: 600;
}

.psi-check:before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #1f2430;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.psi-check-free {
    color: #23a455;
}

.psi-check-free:before {
    background: #27c061;
}

.psi-pricing {
    background: linear-gradient(135deg, #856CFF, #ff00b9);
}

.psi-h-on-accent {
    color: #fff;
}

.psi-sub-on-accent {
    color: rgba(255, 255, 255, 0.9);
}

.psi-price-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-bottom: 26px;
}

.psi-price-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 30px;
    min-width: 240px;
    max-width: 300px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.psi-op {
    font-weight: 800;
    color: #7f3ff2;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.psi-amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1f2430;
    line-height: 1;
}

.psi-period {
    font-size: 0.85rem;
    color: #8a90a0;
    margin-bottom: 16px;
}

.psi-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    border-top: 1px solid #eee;
    padding-top: 14px;
}

.psi-price-list li {
    font-size: 0.9rem;
    color: #444;
    margin: 6px 0;
}

.psi-price-list li:before {
    content: "\2713 ";
    color: #27c061;
    font-weight: 700;
}

.psi-unsub {
    font-size: 0.8rem;
    color: #8a90a0;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.psi-cta {
    display: inline-block;
    border: none;
    cursor: pointer;
    background: #fff;
    color: #7f3ff2;
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 44px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    font-family: inherit;
}

.psi-cta:hover {
    opacity: 0.92;
}

.psi-qa {
    max-width: 780px;
    margin: 0 auto;
    text-align: left;
    padding: 18px 0;
    border-bottom: 1px solid #e7e8ef;
}

.psi-qa h4 {
    font-size: 1.02rem;
    font-weight: 700;
    color: #1f2430;
    margin-bottom: 6px;
}

.psi-qa p {
    font-size: 0.9rem;
    color: #5a6270;
}

.psi-final {
    background: #f6f7fb;
}

.psi-cta-green {
    background: #27c061;
    color: #fff;
    box-shadow: 0 8px 22px rgba(39, 192, 97, 0.35);
}

.psi-final-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #8a90a0;
}

.page-ar .psi-grid2,
.page-ar .psi-checks,
.page-ar .psi-qa {
    text-align: right;
}

.page-ar .psi-check {
    padding-left: 0;
    padding-right: 34px;
}

.page-ar .psi-check:before {
    left: auto;
    right: 0;
}

.page-ar .psi-price-list li:before {
    content: "";
}

.page-ar .psi-price-list li:after {
    content: " \2713";
    color: #27c061;
    font-weight: 700;
}

@media screen and (max-width: 900px) {
    .psi-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .psi-grid3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .psi-cards,
    .psi-grid2,
    .psi-grid3,
    .psi-checks {
        grid-template-columns: 1fr;
    }

    .psi-h {
        font-size: 1.4rem;
    }

    .psi-block {
        padding: 36px 16px;
    }
}
