html,
*,
root {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    --primary-bg: #010031;
    --secondary-bg: #02004D;
    --yellow: #D9EB0A;
    --yellow-stroke: #FFC700;
    --feature-card-bg: #2300F8;
    --feature-card-shadow: #8205FF;
}

@font-face {
    font-family: roboto-regular;
    src: url('/assets/fonts/Roboto/Roboto-Regular.ttf');
}

@font-face {
    font-family: roboto-black;
    src: url('/assets/fonts/Roboto/Roboto-Black.ttf');
}

@font-face {
    font-family: roboto-medium;
    src: url('/assets/fonts/Roboto/Roboto-Medium.ttf');
}

@font-face {
    font-family: roboto-bold;
    src: url('/assets/fonts/Roboto/Roboto-Bold.ttf');
}

@font-face {
    font-family: roboto-extrabold;
    src: url('/assets/fonts/Roboto/Roboto-Bold.ttf');
}

@font-face {
    font-family: saira-extrabold;
    src: url('/assets/fonts/Saira_Condensed/SairaCondensed-ExtraBold.ttf');
}

@font-face {
    font-family: saira-black;
    src: url('/assets/fonts/Saira_Condensed/SairaCondensed-Black.ttf');
}

@font-face {
    font-family: sf-pro-regular;
    src: url('/assets/fonts/sf-pro-display/SFPRODISPLAYREGULAR.OTF');
}

@font-face {
    font-family: sf-pro-bold;
    src: url('/assets/fonts/sf-pro-display/SFPRODISPLAYBOLD.OTF');
}

body {
    background-color: var(--primary-bg);
    position: relative;
}

nav::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
    position: absolute;
    opacity: 0.2;
    bottom: 0;
}

.main__logo {
    height: 40px;
}

.navbar-nav>li>a {
    color: white !important;
    font-family: 'roboto-regular';
    font-size: 16px;
}

.language__toggle__btn {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.language__toggle__btn a {
    color: white;
    text-decoration: none;
}

.language__toggle__btn .dropdown-menu {
    background-color: var(--secondary-bg) !important;
    border: none;
    outline: none;
    width: max-content;
    min-width: max-content;
}

/* hero section */

.head {
    background: radial-gradient(circle at 49% 0%, #101476 0%, #0B0D69 61%, #010042 83%);
    background-color: #010031;
}

.hero__section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* .hero__text__left__side,
.hero__text__right__side {
    flex: 1;
} */

.hero__text__left__side {
    text-align: center;
}

.hero__text__left__side .first__row__line {
    display: flex;
    align-items: center;
}

.hero__section .hero__text {
    font-family: 'saira-extrabold', sans-serif;
    font-size: 60px;
    color: white;
    margin-bottom: 0;
    line-height: 50px;
}

.hero__text__left__side .headline__text {
    font-family: 'saira-black', sans-serif;
    margin-top: 40px;
    font-size: 32px;
    color: var(--yellow);
    -webkit-text-stroke: 1px var(--yellow-stroke);
    text-shadow: #D7A700 0px 0px 20px, rgb(0, 0, 0) 3px 5px 4px, rgb(0, 0, 0) 3px 7px 3px, rgb(0, 0, 0) 2px 6px 8px, rgb(0, 0, 0) 2px 5px 5px, rgb(0, 0, 0) 2px 8px 4px;
}

.hero__text__left__side .button__section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.button__section button {
    flex: 1;
    font-size: 14px;
    font-family: 'sf-pro-regular', sans-serif;
    color: white;
    border-radius: 16px;
    padding: 10px;
    background-color: transparent;
    border: none;
    outline: none;
}

.button__section .download__link {
    border: 1px solid #fff;
}

.button__section .download__now {
    height: 43px !important;
    width: 250px !important;
    border-radius: 15px !important;
    background: radial-gradient(ellipse at top, #00E715 30%, #00900D 100%);
}

.hero__achievement__section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-bottom: 40px;
    color: #fff;
}

.hero__achievement__section .item {
    text-align: center;
}

.hero__achievement__section .item p {
    margin-bottom: 0;
}

.hero__achievement__section .item .icon__and__count p {
    font-family: 'sf-pro-regular';
    font-size: 18px;
}

.hero__achievement__section .item p {
    font-family: 'roboto-regular';
    font-size: 16px;
}

.hero__achievement__section .item .icon__and__count {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero__achievement__section .bar {
    width: 1px;
    height: 20px;
    background-color: #fff;
    opacity: 0.2;
    margin-inline: 20px;
}

/* feature */

.features .container {
    padding: 60px 10px;
    background: radial-gradient(#37007A 0%, #010031 0%, #3F007E 30%, #010031 60%);
}

.section__heading {
    font-family: 'saira-extrabold';
    font-size: 32px;
    line-height: normal;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 90px;
}

.section__heading .section__heading__text {
    margin-bottom: 0;
}

.feature__card {
    background-color: var(--feature-card-bg);
    padding: 55px 10px 20px 10px;
    box-shadow: inset var(--feature-card-shadow) 10px 16px 20px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    position: relative;
}

.feature__card .lottie {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
}

.feature__card h3 {
    font-family: 'roboto-black';
    font-size: 22px;
    font-weight: 100;
    margin-bottom: 5px;
}

.feature__card p {
    font-family: 'roboto-regular';
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}

/* how to play */

.how__to__play .inside-container {
    background-image: linear-gradient(to bottom, #D93930, #8D31FF 48%, #542DFF 79%, #8205FF);
    padding: 30px 60px;
    color: white;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 50px;
}

.inside-container .section__heading {
    margin-bottom: 30px;
}

.how__to__play .yt__thumbnail {
    max-width: 100%;
}

.how__to__play .yt__video__text__section {
    padding: 40px;
    text-align: center;
    position: relative;
}

.yt__video__text__section img {
    position: absolute;
}

.yt__video__text__section .line__1__vector {
    height: 60px;
    width: auto;
    top: -40px;
    left: 35px;
}

.yt__video__text__section .line__2__vector {
    height: 70px;
    width: auto;
    bottom: -40px;
    left: 30%;
}

.how__to__play .yt__video__text {
    font-family: 'roboto-extrabold';
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
}

.how__to__play .how__to__play__slider {
    overflow: hidden;
    position: relative;
}

.slider {
    margin: 40px auto 10px auto;
}

.swiper-container {
    padding-bottom: 20px;
}

.swiper-scrollbar {
    background: #333333;
    border-radius: 10px;
}

.swiper-scrollbar-drag {
    background-color: #fff;
}

.swiper-scrollbar {
    border-radius: 50px;
    height: 4px;
    width: 100%;
}

.how__to__play .swiper-wrapper img {
    height: 350px;
    width: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.how__to__play .swiper__btn {
    display: flex;
    gap: 15px;
    align-items: center;
}

.how__to__play .swiper__btn .swiper-button-prev,
.how__to__play .swiper__btn .swiper-button-next {
    position: static;
    margin: 0;
    color: var(--primary-bg);
    background-color: #fff;
    height: 2.5% !important;
    width: 2.5% !important;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how__to__play .swiper__btn .swiper-button-next:after,
.how__to__play .swiper__btn .swiper-button-prev:after {
    font-size: 12px;
    font-weight: 800;
    line-height: normal;
}

/* withdraw winning section */
.withdraw__winning {
    margin-bottom: 50px;
}

.withdraw__winning .container {
    background-image: linear-gradient(to bottom, #2300F8 0%, #7C05F7 100%);
    padding: 1px 0px;
    color: white;
    border-radius: 25px;
    overflow: hidden;
}

.withdraw__winning .wave__bg {
    position: absolute;
    bottom: -75px;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-image: url('../images/wave.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
    opacity: 0.04;
}

.withdraw__winning .inside__container {
    background-color: var(--primary-bg);
    height: 100%;
    padding: 30px 90px;
    border-radius: 25px;
    position: relative;
}

.withdraw__winning .section__heading {
    margin-bottom: 30px;
}

.withdraw__winning .withdraw__gateway {
    position: relative;
    z-index: 1;
}

.withdraw__winning .withdraw__gateway img {
    max-width: 90%;
}

/* review and rating */

.review__rating {
    margin-bottom: 50px;
}

.review__rating .section__heading {
    margin-bottom: 10px;
}

.review__rating .swiper-wrapper img {
    height: 160px;
    width: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.review__rating .review__rating__slider {
    overflow: hidden;
    position: relative;
}

.review__rating__slider .swiper__btn {
    display: flex;
    gap: 15px;
    align-items: center;
}

.review__rating__slider .swiper__btn .swiper-button-prev,
.review__rating__slider .swiper__btn .swiper-button-next {
    position: static;
    margin: 0;
    color: var(--primary-bg);
    background-color: #fff;
    height: 2.5% !important;
    width: 2.5% !important;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review__rating__slider .swiper__btn .swiper-button-next:after,
.review__rating__slider .swiper__btn .swiper-button-prev:after {
    font-size: 12px;
    font-weight: 800;
    line-height: normal;
}

.review__rating .review__star {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 15px;
}

.review__star .text__area {
    text-align: center;
    font-family: 'roboto-bold';
    color: #fff;
    font-size: 20px;
}

.review__star .text__area .star__text {
    margin-bottom: 4px;
}

.review__star .text__area .star__text,
.review__star .review__count {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.review__star .i__btn {
    background: #3244E8;
    height: 24px;
    aspect-ratio: 1/1;
    width: 24px;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: normal;
}

/* member of */

.unibit__member__of {
    position: relative;
    margin-bottom: 60px;
}

.unibit__member__of .section__heading {
    margin-bottom: 20px;
}

.unibit__member__of .container {
    background-color: var(--secondary-bg);
    padding: 40px;
    border-radius: 40px;
    position: relative;
}

.unibit__member__of .row {
    position: relative;
    z-index: 1;
    justify-content: center;
}

.unibit__member__of .col-4 img {
    max-width: 90%;
}

.unibit__member__of .grid__bg {
    height: 260px;
}

.unibit__member__of .grid__bg img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.unibit__member__of .grid__bg {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
    display: none;
}

/* faq */
.faq .section__heading {
    margin-bottom: 30px;
}

#accordionFlushExample {
    font-family: 'roboto-medium';
    border-radius: 18px !important;
    overflow: hidden;
    border: 1px solid var(--feature-card-bg);
    --bs-accordion-btn-bg: var(--secondary-bg);
    --bs-accordion-bg: var(--secondary-bg);
    --bs-accordion-btn-color: #ffffff;
    --bs-accordion-color: #ffffff;
    --bs-accordion-border-width: 0.1px;
    --bs-accordion-border-color: var(--feature-card-bg);
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--secondary-bg);
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:focus::before {
    content: '';
    height: 1px;
    width: 96%;
    left: 50%;
    background-color: #171717;
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
}

.accordion-button::after {
    width: 16px;
    height: 16px;
    background-size: 16px;
    filter: invert(1);
}

/* footer */
footer {
    background-image: linear-gradient(to top, #7C05F7 0%, #2300F8 100%);
    padding-top: 1px;
    color: white;
    border-radius: 25px 25px 0px 0px;
    overflow: hidden;
}

footer .inner__container {
    background-color: var(--primary-bg);
    height: 100%;
    padding: 30px 90px;
    border-radius: 25px 25px 0px 0px;
    position: relative;
    font-size: 15px;
    font-family: 'roboto-regular';
}

footer a {
    text-decoration: none;
    color: #fff;
}

footer .row p {
    margin-bottom: 5px;
}

footer .footer__logo {
    height: 40px;
    margin-bottom: 10px !important;
}

footer .footer__description {
    font-size: 14px;
}

footer .play__store p {
    margin-bottom: 10px;
    font-size: 24px;
    font-family: 'saira-extrabold';
}

.play__store img {
    height: 45px;
    width: auto;
    margin-right: 10px;
}

footer .footer__heading {
    font-size: 24px;
    font-family: 'saira-extrabold';
    margin-bottom: 15px !important;
}

.footer__bottom__row {
    align-items: center;
}

.footer__bottom__row::before {
    content: '';
    display: block;
    height: 2px;
    width: 90%;
    border-radius: 100%;
    background-color: #1d1161;
    background-image: linear-gradient(to right, transparent, rgba(216, 216, 216, 0.363), transparent);
    margin-bottom: 20px;
    margin-top: 30px;
    margin-inline: auto;
}

footer .social__icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

footer .social__icons a {
    color: #fff;
    font-size: 20px;
}

.copyright__text {
    text-align: end;
}

.copyright__text p {
    margin-bottom: 0;
    font-size: 14px;
    opacity: 0.5;
    font-family: 'roboto-regular';
}

/* miscellanies */
.bact__to__top__btn {
    position: fixed;
    height: 35px;
    aspect-ratio: 1;
    outline: none;
    border: none;
    border-radius: 50%;
    color: #fff;
    background-color: #030097;
    z-index: 1000;
    right: 40px;
    bottom: -60px;
    background: radial-gradient(circle at top, #ED1C24 30%, #030097 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

#cta {
    width: 100%;
    background: var(--feature-card-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: -160px;
    border-radius: 30px 30px 0 0;
    box-shadow: inset var(--feature-card-shadow) 11px 14px 20px 4px;
    z-index: 64546;
    transition: all 0.3s ease-in-out;
    padding: 12px 0;
}

#cta p {
    font-size: 14px;
    color: #24ff00;
    font-family: 'sf-pro-bold';
}

.footer__download__popup__btn,
.download__now {
    width: 280px;
    height: 48px;
    background: linear-gradient(180deg, #00D047 0%, #00A040 100%);
    box-shadow: 0 4px 12px -5px rgb(40 153 83 / .12);
    border-radius: 20px;
    border: none;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    line-height: 17px;
    text-align: center;
    letter-spacing: .01em;
    color: #FFF;
}


.footer__download__popup__btn a,
.download__now a {
    background: linear-gradient(60.19deg, #fff0 25.73%, rgb(255 255 255 / 40%) 45.27%, #fff0 62.27%), #fff0;
    display: inline-block;
    position: relative;
    -webkit-animation-duration: 64s;
    animation-duration: 64s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: sweep;
    animation-name: sweep;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    font-family: 'sf-pro-bold';
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 16px;
    text-shadow: 0 1px 4px rgb(0 0 0 / .12);
    border: none;
    color: #FFF;
    text-shadow: 0 1px 4px rgb(0 0 0 / .12);
    gap: 10px;
    text-decoration: none;
}

@keyframes sweep {
    0% {
        background-position: -10000px 0;
    }

    100% {
        background-position: 10000px 0;
    }
}

.modal__input__section input {
    width: 100%;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid var(--yellow-stroke);
    background-color: #f1f1f1;
    font-size: 14px;
    margin-bottom: 20px;
}

.modal__input__section button {
    width: 100%;
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    background-color: #030097;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}


.install_video {
    cursor: pointer;
}

.install-video-modal-dialog {
    margin: 0 !important;
}

.install-video-modal-content {
    background-color: transparent !important;
    border-radius: 0 !important;
}

.install-video-modal-body {
    padding: 0 !important;
}

#myVideo {
    min-height: 100vh !important;
    width: 100% !important;
    border-radius: 0 !important;
    object-fit: cover !important;
}

.close-modal {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    font-size: 22px !important;
    color: #fff !important;
    z-index: 10;
    filter: invert(1);
}

#install-video-play-modal {
    overflow: hidden !important;
    z-index: 99999;
}


/* other pages */
.other__pages {
    min-height: calc(100vh - 462px);
}

.other__pages .header__image__box {
    height: 220px;
    width: 100%;
    background-image: url('/assets/images/other-page-header.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other__pages .header__image__box h1 {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    font-family: saira-extrabold;
}

.other__pages .container {
    padding: 30px 20px 50px 20px;
    color: #fff;
}

.other__pages .sub__header {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    font-family: saira-extrabold;
    margin-bottom: 20px;
}

.other__pages .container img {
    max-width: 100%;
    object-fit: cover;
    max-height: 500px;
    border-radius: 20px;
    margin-bottom: 20px;
    margin-inline: auto;
    cursor: pointer;
}


/* mobile */


@media only screen and (max-width: 600px) {
    body {
        overflow-x: hidden;
        max-width: 100vw;
        position: relative;
    }

    html {
        overflow-x: hidden;
    }

    .main__logo {
        height: 30px;
    }

    .hero__section {
        padding: 10px 5px 0px 5px;
        flex-wrap: wrap;
    }

    .hero__section .hero__text {
        font-size: 38px;
        text-transform: uppercase;
    }

    .hero__text__left__side .first__row__line {
        justify-content: center;
    }

    .trophy__lottie {
        height: 80px !important;
        width: 80px !important;
    }

    .hero__text__left__side .headline__text {
        font-size: 22px;
        margin-top: 20px;
    }

    .button__section .download__link {
        display: none;
    }

    .hero__lottie {
        text-align: center;
        margin-inline: auto;
        width: 100% !important;
        height: 350px !important;
        margin-top: -25px;
        margin-bottom: -45px;
    }

    .hero__achievement__section {
        gap: 1px;
    }

    .hero__achievement__section .item .icon__and__count p {
        font-size: 14px;
    }

    .hero__achievement__section .item p {
        font-size: 12px;
    }

    .l__1 {
        margin-right: -15px;
    }

    .l__2 {
        margin-top: -20px;
    }

    .button__section .download__now {
        max-width: 80%;
    }

    /* feature */
    .features .section__heading {
        margin-bottom: 65px;
    }

    .feature__card .lottie lottie-player {
        height: 65px !important;
        width: 65px !important;
    }

    .features .row {
        align-items: center;
        justify-content: center;
    }

    .features .row .margin {
        margin-top: 55px;
    }

    .feature__card {
        border-radius: 20px;
        padding: 35px 8px 10px 8px;
    }

    .feature__card h3 {
        font-size: 18px;
    }

    .feature__card p {
        font-size: 12px;
        line-height: 15px;
    }

    .feature__card .lottie {
        top: -35px;
    }

    /* how to play */

    .how__to__play .inside-container {
        padding: 30px 20px;
    }

    .how__to__play .yt__video__text__section {
        padding: 10px;
        margin-top: 20px;
    }

    .yt__video__text__section img {
        display: none;
    }

    .how__to__play .yt__video__text {
        font-size: 16px;
        line-height: 20px;
    }

    .slider {
        margin: 12px auto 10px auto;
    }

    .how__to__play .swiper__btn .swiper-button-prev,
    .how__to__play .swiper__btn .swiper-button-next {
        height: 10% !important;
        width: 10% !important;
        font-size: 12px !important;
    }

    .review__rating__slider .swiper__btn .swiper-button-prev,
    .review__rating__slider .swiper__btn .swiper-button-next {
        height: 10% !important;
        width: 10% !important;
        font-size: 12px !important;
    }

    /* withdraw winning */
    .withdraw__winning .inside__container {
        padding: 30px 10px;
    }

    .withdraw__winning .inside__container .row {
        justify-content: center;
    }

    .withdraw__winning .inside__container .row .margin {
        margin-top: 15px;
    }

    .withdraw__winning .wave__bg {
        background-size: auto;
    }

    /* member of */
    .unibit__member__of .row .margin {
        margin-top: 15px;
    }

    /* review rating */

    .review__star .text__area {
        text-align: center;
        font-family: 'roboto-bold';
        color: #fff;
        font-size: 16px;
    }

    /* footer */

    footer {
        margin-bottom: 90px;
    }

    footer .first::after {
        content: '';
        display: block;
        height: 2px;
        width: 80%;
        border-radius: 100%;
        opacity: 0.4;
        background-color: #1d1161;
        background-image: linear-gradient(to right, transparent, rgba(216, 216, 216, 0.363) 35% 60%, transparent);
        margin-top: 20px;
        margin-inline: auto;
    }

    footer .inner__container {
        padding: 30px 10px;
    }

    footer .row .first {
        margin-bottom: 15px;
        text-align: center;
    }

    footer .play__store {
        text-align: center;
        margin-top: 20px;
    }

    footer .play__store .store__banners {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    footer .play__store .store__banners img {
        max-width: 100%;
        margin-right: 0 !important;
    }

    footer .play__store {
        margin-bottom: 10px !important;
    }

    footer .inner__container {
        font-size: 12px;
    }

    footer .footer__heading {
        font-size: 20px;
    }

    footer .row .margin {
        margin-top: 10px;
    }

    .footer__bottom__row {
        margin-top: 30px;
    }

    .footer__bottom__row .col {
        text-align: center;
    }

    footer .social__icons {
        justify-content: center;
    }

    .copyright__text::before {
        content: '';
        display: block;
        height: 2px;
        width: 80%;
        border-radius: 100%;
        opacity: 0.4;
        background-color: #1d1161;
        background-image: linear-gradient(to right, transparent, rgba(216, 216, 216, 0.363) 35% 60%, transparent);
        margin-bottom: 20px;
        margin-inline: auto;
    }

    .copyright__text {
        margin-top: 25px;
        text-align: center;
    }

    .footer__bottom__row::before {
        display: none !important;
    }

    .bact__to__top__btn {
        right: 20px;
        bottom: -36px;
    }

}


/* other webpages */
.other-webpages .container {
    padding: 30px 20px 30px 20px;
    color: #fff;
}

.other-webpages .heading h1 {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    font-family: saira-extrabold;
    text-align: center;
    margin-bottom: 0;
}


.other-webpages table {
    background-color: transparent !important;
    color: #fff !important;
    text-align: center !important;
    font-family: 'roboto-medium';
    border-radius: 18px !important;
    overflow: hidden;
    border: 1px solid var(--feature-card-bg) !important;
    --bs-table-color: #ffffff !important;
    --bs-table-accent-bg: var(--secondary-bg) !important;
}

.other-webpages table tbody tr {
    font-size: 14px;
    font-weight: 500;
}

.table>:not(caption)>*>* {
    background-color: transparent !important;
    color: #fff !important;
}

.other-webpages .accordion-body {
    font-size: 14px;
}

@media only screen and (max-width: 600px) {
    .other-webpages .heading h1 {
        font-size: 32px;
    }
}