@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");

:root {
    --black: #000;
    --white: #fff;
    --yellow: #f9b016;
    --pink: #e2138b;
    --dark-grey: #161616;
    --creame: #efaa87;
    --body: #030302;
    --light-grey: #2f2f2f;
    --lighter-grey: #ababab;
    --gradient: linear-gradient(
        125deg,
        rgba(249, 176, 22, 1) 0%,
        rgba(226, 19, 139, 1) 100%
    );
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* For Chrome, Edge, and Safari */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none; /* Remove default appearance */
    margin: 0; /* Remove any margin */
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield; /* Remove default appearance */
}
body {
    background-color: var(--body);
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: "Poppins", sans-serif !important ;
}
.navbar-toggler-icon {
    background-image: url("../images/menu.png");
}
/* fonts  */
.poppins {
    font-family: "Poppins", sans-serif !important;
}
.syne {
    font-family: "Syne", sans-serif !important;
}
.fs-12 {
    font-size: 12px;
}
.fs-17 {
    font-size: 17px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
.fs-35 {
    font-size: 35px;
}
.fs-28 {
    font-size: 28px;
}
.fs-45 {
    font-size: 45px;
}

.bg-grad {
    background: var(--yellow);
    background: linear-gradient(220deg, var(--yellow) 0%, var(--pink) 100%);
}
/* end fonts  */
/* gradients  */
#navigation * {
    z-index: 999999999999999999 !important;
    position: relative !important;
}
.gradient-p {
    background: rgb(249, 176, 22);
    background: linear-gradient(
        200deg,
        rgba(249, 176, 22, 1) 0%,
        rgba(226, 19, 139, 1) 100%
    );
}
.gradient {
    background: rgb(249, 176, 22);
    background: linear-gradient(
        125deg,
        rgba(249, 176, 22, 1) 0%,
        rgba(226, 19, 139, 1) 100%
    );
}
/* end gradients  */

/* z-indexs  */
.z-index-g {
    z-index: 99999999999 !important;
    position: relative !important;
}

.z-index-l {
    z-index: 1 !important;
}

/* ends  */

/* width  */

/* end  */
.marginl-15 {
    margin-left: 15%;
}
.marginB-7 {
    margin-bottom: 7%;
}
.marginT-17 {
    margin-top: 17%;
}
.paddingY {
    padding-top: 20%;
    padding-bottom: 20%;
}
.cursor-pointer {
    cursor: pointer !important;
}

/* backgrounds */
.bg-grey {
    background-color: var(--dark-grey) !important;
}
.bg-light-grey {
    background-color: var(--light-grey) !important;
}
.bg-white {
    background-color: var(--white) !important;
}
.text-lighter {
    color: var(--lighter-grey);
}
/* backgrounds ends */

.rounded-border {
    border-radius: 50px;
}
.rounded-border-2 {
    border-radius: 15px;
}
.border-pink {
    border: 1px solid var(--pink);
}
.border-yellow {
    border: 1px solid #f7a71c;
}
#navigation .nav-link {
    color: var(--white);
}
#navigation a.nav-link {
    padding: 0px 20px;
}
.btn-primary {
    background: rgb(249, 176, 22);
    background: linear-gradient(
        200deg,
        rgba(249, 176, 22, 1) 0%,
        rgba(226, 19, 139, 1) 100%
    );
    color: var(--white);
    border-radius: 50px;
    border: 2px solid var(--creame);
    padding: 15px 20px !important;
}
.btn-secondary {
    background-image: linear-gradient(
        to right,
        var(--pink) 0%,
        var(--yellow) 100%
    );
    border-radius: 50px;
    box-sizing: border-box;
    color: var(--white);
    display: block;
    height: 80px;
    letter-spacing: 1px;
    padding: 2px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 260px;
    z-index: 2;
}

.btn-secondary:hover {
    color: #fff;
}

.btn-secondary span {
    align-items: center;
    background: var(--dark-grey);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    height: 100%;
    transition: background 0.5s ease;
    width: 100%;
}

.btn-secondary:hover span {
    background: transparent;
}
.text-white {
    color: var(--white);
}
.icons {
    border-radius: 50%;
    height: 94px;
    width: 94px;
    display: grid;
    place-content: center;
}
#gallery {
    background: rgb(249, 176, 22);
    background: linear-gradient(
        200deg,
        rgba(249, 176, 22, 1) 0%,
        rgba(226, 19, 139, 1) 100%
    );
}
.gradient-text {
    font-size: 18px; /* You can adjust the font size as needed */
    font-weight: bold;
    background: linear-gradient(to right, #f7a71c, #d16630);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.prev-arrow {
    position: absolute;
    top: -100px;
    right: 100px;
}
.next-arrow {
    position: absolute;
    top: -100px;
    right: 30px;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
}
.slick-dots li {
    margin: 0 0.25rem;
}
.slick-dots button {
    display: block;
    width: 1rem;
    height: 1rem;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: var(--dark-grey);
    text-indent: -9999px;
}
.slick-dots li.slick-active button {
    background: rgb(249, 176, 22);
    background: linear-gradient(
        200deg,
        rgba(249, 176, 22, 1) 0%,
        rgba(226, 19, 139, 1) 100%
    );
}
.input-group-text {
    background-color: var(--white) !important;
    border-radius: 50px;
    padding: 0px !important;
    line-height: 1;
    border: 0px;
}
.input-group {
    max-width: 450px !important;
}
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)
    > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}
.line01 {
    position: absolute;
    top: -12%;
    width: 100%;
    max-width: 35%;
    left: -36%;
}
.line02 {
    position: absolute;
    top: -30px;
    width: 100%;
    max-width: 40%;
    right: -40px;
}

.border-bottom-1 {
    border-bottom: 1px solid var(--lighter-grey);
}
.list-group-item {
    background-color: var(--body) !important;
    border: 1px solid rgb(255 255 255 / 13%);
}

.icons-listing i {
    background: linear-gradient(220deg, var(--yellow) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.card-pricing {
    border: 1px solid var(--pink);
}

/* cards  */

#pricing .toggle {
    margin-top: 2rem;
    color: hsl(234, 14%, 74%);
    display: flex;
    align-items: center;
}
#pricing .toggle-btn {
    margin: 0 1rem;
}
#pricing .checkbox {
    display: none;
}

#pricing .sub {
    background: var(--yellow);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* height: 25px;
    width: 50px; */
    height: 1.6rem;
    width: 3.3rem;
    border-radius: 1.6rem;
    padding: 0.3rem;
}
#pricing .circle {
    background-color: #fff;
    height: 1.4rem;
    width: 1.4rem;
    border-radius: 50%;
}
#pricing .checkbox:checked + .sub {
    justify-content: flex-end;
}

#pricing .cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 5% 0%;
}

#pricing .card {
    background: #fff;
    color: hsl(233, 13%, 49%);
    border-radius: 0.8rem;
}

#pricing .cards .card.active {
    background-color: var(--dark-grey);
    color: #fff;
    display: flex;
    align-items: center;
    transform: scale(1.1);
    z-index: 1;
}
#pricing ul {
    margin: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;

    li {
        ul {
            max-height: 540px;
            overflow-y: auto;
            padding-right: 10px !important;
        }
    }
}
#pricing ul li {
    list-style-type: none;
    /* display: flex;
    justify-content: center; */
    width: 100%;
    padding: 1rem 0;
}
#pricing ul li.price {
    font-size: 2rem;
    font-weight: bold;
    color: hsl(232, 13%, 33%);
    padding-bottom: 2rem;
}
#pricing .shadow {
    box-shadow: -5px 5px 15px 1px rgba(0, 0, 0, 0.1);
}

#pricing .card.active .price {
    color: #fff;
}

#pricing .btn2 {
    margin-top: 1rem;
    height: 2.6rem;
    width: 13.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: linear-gradient(
        135deg,
        rgba(163, 168, 240, 1) 0%,
        rgba(105, 111, 221, 1) 100%
    );
    color: #fff;
    outline: none;
    border: 0;
    font-weight: bold;
}
#pricing .active-btn {
    background: #fff;
    color: hsl(237, 63%, 64%);
}
#pricing .bottom-bar {
    border-bottom: 2px solid hsla(240, 8%, 85%, 0.582);
}
#pricing .card.active .bottom-bar {
    border-bottom: 2px solid hsla(240, 8%, 85%, 0.253);
}
#pricing .pack {
    font-size: 1.5rem;
}
.bg-grad {
    background: var(--yellow);
    background: linear-gradient(220deg, var(--yellow) 0%, var(--pink) 100%);
}

#navigation * {
    z-index: 999999999999999999 !important;
    position: relative !important;
}
.object-fit-cover {
    object-fit: cover;
}
.fs-14 {
    font-size: 14px;
}
.overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 50%;
    z-index: 1;
}
.content h3,
.content p {
    z-index: 9999;
    position: relative !important;
}
:focus,
:active {
    box-shadow: unset !important;
}

.accordion-body {
    background-color: transparent;
    color: var(--white);
}
.accordion-button {
    background-color: var(--dark-grey);
}
.accordion-item {
    background-color: transparent !important;
}
.accordion-button {
    background-color: var(--dark-grey);
    color: var(--white);
    border: 3px solid transparent;
    border-image-source: linear-gradient(to right, var(--pink), var(--yellow));
    border-image-slice: 1;
}
.accordion-button:not(.collapsed) {
    background-color: var(--dark-grey);
    color: var(--white);
    border: 3px solid transparent;
    border-image-source: linear-gradient(to right, var(--yellow), var(--pink));
    border-image-slice: 1;
    transition: 0.5s ease;
}
.accordion-button::after {
    background-image: url(../images/down.png);
}
.accordion-button:not(.collapsed)::after {
    background-image: url(../images/down.png);
}
/* end cards  */

.gradient-border {
    border: 1px solid transparent;
    border-image-source: linear-gradient(to right, var(--yellow), var(--pink));
    border-image-slice: 1;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent !important;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--yellow);
    background: linear-gradient(200deg, var(--yellow) 0%, var(--pink) 100%);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--yellow);
    background: linear-gradient(200deg, var(--yellow) 0%, var(--pink) 100%);
}

#footer .logo img {
    min-width: 140px !important;
}

[how_to_become_an_affiliate] {
    & [card] {
        z-index: 9999999999999999;
        & .wrap {
            & .img-wrap {
                width: 180px;
                aspect-ratio: 1;
                background: var(--gradient);
                border-radius: 50%;
                align-content: center;
                text-align: center;
                position: relative;
                z-index: 1;
                &:before {
                    content: "";
                    background-color: var(--light-grey);
                    width: 97%;
                    height: 97%;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    border-radius: 50%;
                    z-index: 0;
                    transition: 0.3s;
                }
                & img {
                    position: relative;
                    z-index: 1;
                }
            }

            &:hover {
                & .img-wrap {
                    &:before {
                        background-color: unset;
                        transition: 0.3s;
                    }
                    & img {
                        filter: grayscale(1) brightness(10) contrast(10);
                    }
                }
            }
        }
    }
}

[comparison] {
    & :where([you_can], [you_can_not]) {
        & h2 {
            color: green;
            display: flex;
            gap: 15px;
            align-items: center;
            & span {
                width: 150px;
                display: block;
                background: green;
                height: 3px;
            }
        }
    }
    & [you_can_not] {
        & h2 {
            color: red;
            & span {
                background: red;
            }
        }
    }
}

#comingSoon {
    z-index: 99999999999;
    position: fixed;
    top: 0;
    left: 0;
}
