/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #000;
    font-size: 15px;
    overflow-x: hidden;
    background: #000;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}

img {
    max-width: 100%;
    vertical-align: middle;
}

a {
    color: #013289;
    text-decoration: none;
}

a:hover {
    color: #717ff5;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
}

.font16 {
    font-size: 16px !important;
}

.font18 {
    font-size: 18px !important;
}

.font-weight-bold {
    font-weight: 600 !important;
}

.pb-90 {
    padding-bottom: 90px;
}

.bg-light-opacity {
    background: rgb(255 255 255 / 27%);
}

.bg-img {
    background: url(../images/Mask-Group-Bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-size: cover;
}

.bg-img-2 {
    background: url(../images/bg3.png);
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-size: cover;
}


.clr-grad-1 {
    background: linear-gradient(90deg, #6a41fb 30%, #f49957 70%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.opacity5 {
    opacity: 0.5;
}

.dark-background {
    background: linear-gradient(to left, #1a46dc, #3863f5, #1a46dc);
}

.bg-light-blue {
    background: #e8eff1 !important;
}
.text-success{
    color: #00d337 !important;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 70%);
    z-index: 999;
}

.loaderStyle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;

}

.loaderIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loaderCircle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background:
        radial-gradient(farthest-side, #0078d4 94%, #0000) top/8px 8px no-repeat,
        conic-gradient(#0000 30%, #0078d4);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
    animation: s3 1s infinite linear;
}

@keyframes s3 {
    100% {
        transform: rotate(1turn)
    }
}

.container {
    position: relative;
}

.btn {
    border-radius: 5px;
    font-weight: 500;
    padding: 6px 20px;
}

.btn-sm {
    font-size: 13px;
    padding: 3px 10px;
}

.btn-primary {
    background: linear-gradient(to left, #c2cefc, #ebfffe);
    color: #000;
    border-color: #6daec9;
}


.btn-primary:hover {
    background: linear-gradient(to left, #ebfffe, #c2cefc);
    color: #000;
    border-color: #6daec9;
}

.btn-dark {
   background-image: linear-gradient(to right, #120c00, #775000, #855a00, #020202);
    color: #fff;
    border-color: #263179;
}

.btn-warning {
    background: linear-gradient(to left, #f59138, #fdc800);
    color: #fff;
    border-color: #f59138;
}

.btn-warning:hover {
    background: linear-gradient(to left, #fdc800, #f59138);
    color: #fff;
}

.btn-outline-primary {
    color: #263179;
    border-color: #263179;
}

.btn-outline-primary:hover {
    background: #263179;
    border-color: #263179;
}

@media (max-width: 768px) {
    .btn {
        font-size: 14px;
    }

    .btn-sm {
        font-size: 12px;

    }
}





/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    padding: 40px 0;
    position: relative;
}


.section-title {
    position: relative;
    margin-bottom: 20px;
}

.section-title h3 {
    position: relative;
    margin: 0;
    padding: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.section-title h3:after,
.section-title h3:before {
    background: linear-gradient(90deg, transparent, #efb40f 40%, #d8f6ac 60%, transparent);
    content: "";
    display: inline-block;
    height: 2px;
    width: 7.5rem;
    margin: 0 15px;
}

.section-subtitle {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #d8a10d;
    line-height: normal;
}

.section-title p {
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 24px;
    }

    .section-title h3 {
        font-size: 14px;
    }

    .section-title h3:after,
    .section-title h3:before {
        width: 50px;
        margin: 0 5px;
    }

}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #9f9f9f;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
    color: #fff;
}

.back-to-top i {
    font-size: 24px;
}

.back-to-top:hover {
    background: #3d3d3d;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header-top {
    position: relative;
    background: #000;
    padding: 5px 0;
}

.header-top .leftNav,
.header-top .RightNav {
    position: relative;
}

.header-top .leftNav ul,
.header-top .RightNav ul {
    margin: 0;
    padding: 0;
}

.header-top .leftNav ul li,
.header-top .RightNav ul li {
    list-style: none;
    display: inline-block;
    border-left: 1px solid rgb(255 255 255 / 45%);

}

.header-top .leftNav ul li:first-child,
.header-top .RightNav ul li:first-child {
    border-left: 0px solid #ccc;
}

.header-top .leftNav ul li a,
.header-top .RightNav ul li a {
    display: block;
    padding: 2px 10px;
    line-height: 1;
    color: #fff;
    font-size: 14px;
}

.header-top .leftNav ul li i {
    margin-right: 5px;
}

.header-top .RightNav {
    text-align: right;
}

.header {
    transition: all 0.5s;
    z-index: 99;
    padding: 10px 0;
}

.header::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgb(44 65 65 / 20%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.header .container {
    position: relative;
    z-index: 2;
}

.header.header-scrolled {
    /*box-shadow: 0px 0px 20px rgb(0 0 0 / 26%);*/
}

.header .logo {
    display: inline-block;
    position: absolute;
    top: 0;
}

.header .logo img {
    max-height: 45px;
}


.header .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #263179;
    font-family: 'Inter', sans-serif;
    margin-top: 3px;
}

@media (max-width: 767px) {

    .header .logo img {
        max-height: 50px;
    }

    .header-top .leftNav,
    .header-top .RightNav {
        text-align: center;
    }

    .header-top .leftNav ul li a,
    .header-top .RightNav ul li a {
        padding: 2px;

    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
    text-align: center;
}

/* .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
} */
.navbar ul {
    margin: 0;
    padding: 0;
    width: 100%;
}

.navbar li {
    position: relative;
    display: inline-block;
}

.navbar a,
.navbar a:focus {
    /* display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 10px 0 10px 30px;*/
    padding: 0 20px;
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #c3f292;
}

.getstarted,
.getstarted:focus {
    background: linear-gradient(to left, #c2cefc, #ebfffe);
    padding: 0px 20px;
    margin-left: 30px;
    border-radius: 30px;
    font-weight: 600;
    color: #000;
    display: inline-block;
    height: 36px;
    line-height: 36px;
    margin-top: 3px;
}

.getstarted:hover,
.getstarted:focus:hover {
    color: #000;
    background: #fff;
}

@media (max-width: 768px) {

    .getstarted,
    .getstarted:focus {
        padding: 3px 9px;
        margin-left: 0;
        font-size: 14px;
    }
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: 100%;
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #000;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #4154f1;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    z-index: 99;
    margin-top: 0;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
    margin-top: 0;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(0 0 0 / 90%);
    transition: 0.3s;
    z-index: 99;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background: #2c2c2c;
    overflow-y: auto;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, .1);
    width: auto;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #fff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #4154f1;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

@media (max-width: 991px) {
    .navbar li {
        display: block;
    }
}

.user-related {
    position: relative;
    margin-left: 20px;
    white-space: nowrap;
}

.user-related a {
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: all .3s ease;
}

.user-related a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    /*background-image: linear-gradient(90deg, #182726 21%, #718a87 50%, #2c4041 80%);*/
    background-image: linear-gradient(90deg, #010101 21%, #a04917ad 50%, #c26b0b 80%);
    background-size: 250%;
    background-position: left;
    transition: all .5s ease;
}

.user-related a::after {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -2;
    border-radius: inherit;
    /*background-image: linear-gradient(90deg, #6e8686 10.35%, #172f2f 92.29%);*/
    background-image: linear-gradient(90deg, #7b5b01 10.35%, #d7a00c 92.29%);
}

.user-related a:hover::before {
    background-position: right;
}


@media (max-width: 1024px) {

    .user-related {
        margin-left: 0;
        padding-left: 10px;
        margin-right: 0;
    }

    .user-related a {
        padding: 5px;
        font-size: 11px;
    }

    .navbar a,
    .navbar a:focus {
        padding: 10px 0px 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .user-related {
        padding: 6px;
    }
}

@media (max-width: 768px) {

    .navbar a,
    .navbar a:focus {
        padding: 10px 10px 10px 15px;
        font-size: 14px;
    }
}


.trigger-showcase {
    width: 100%;
    padding-top: 50px;
    min-height: 500px;
    background: #000;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {

    .trigger-showcase {
        overflow: hidden;
    }
}

#snowfall-wrapper {
    z-index: 9;
}

.wrapper-content {
    position: relative;
    z-index: 3;
}

.hero {
    padding-top: 50px;
    position: relative;
    text-align: center;
    z-index: 99;
}

.hero .container {
    margin-bottom: 50px;
}

.hero-content {
    margin: 10px 0 20px 0;
}

.hero h1 {
    font-size: 65px;
    color: #fff;
    font-weight: bold;
}

.hero h2 {
    font-size: 52px;
    color: #fff;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    color: #c3c6c6;
}

.max-text-50 {
    max-width: 50ch;
}

.clr-animation {
    background-image: linear-gradient(to right, #09f1b8, #00a2ff, #ff00d2, #fed90f);
    color: #000000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-animation: hue 1s infinite linear;

}

@-webkit-keyframes hue {
    from {
        -webkit-filter: hue-rotate(0deg);
    }

    to {
        -webkit-filter: hue-rotate(-360deg);
    }
}

.hero-main-image {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    animation: crescendo 15s alternate infinite ease-in;
    border-radius: 0 !important;
    object-fit: cover;
}

@keyframes crescendo {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero h1 span {
        font-size: 26px;
        display: block;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero .container {
        margin-bottom: 0;
    }

    .hero-content {
        margin: 10px 0;
    }
}


.coin-rotation {
    position: absolute;
    overflow: hidden;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0.2;
    z-index: -2;
    width: 500px;
}

.coin-ring {
    -webkit-animation: circle 20s infinite linear;
    animation: circle 20s infinite linear;
    text-align: center;

}

.coin-content {
    /*position: absolute;*/
    left: 0;
    right: 0;
    text-align: center;
    top: 0;
}

@-webkit-keyframes circle {
    from {
        -webkit-transform: rotateZ(0deg)
    }

    to {
        -webkit-transform: rotateZ(360deg)
    }
}

@-webkit-keyframes ccircle {
    from {
        -webkit-transform: rotateZ(360deg)
    }

    to {
        -webkit-transform: rotateZ(0deg)
    }
}

@media (max-width: 768px) {
    .coin-rotation {
        width: 280px;
    }
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    /* border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(174, 174, 174, .1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);  */
    padding: 0 0 0 0;
    font-size: 14px;
    position: relative;
    z-index: 9;
    margin-top: -50px;
}

.footer-top {  
    background: url(../images/footer-bg.png) no-repeat top center;
    background-size: 100% 100%;
    z-index: 4;
    pointer-events: none;
    height: 60px;
    width: 100%;
}

.footer-bottom {
    /* border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(174, 174, 174, .1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    backdrop-filter: blur(5px); */
    padding: 30px 0;
    position: relative;
    z-index: 6;
    background: #5d370d;
}


.footer .footer-newsletter {
    padding: 50px 0;
    /* background: #f6f9ff;*/
    border-bottom: 1px solid #fff;
}

.footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    color: #263179;
}

.footer .footer-newsletter .subscribe-form {
    margin-top: 20px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
    border: 1px solid #e1ecff;
}

.footer .footer-newsletter .subscribe-form input[type=email] {
    border: 0;
    padding: 8px;
    width: calc(100% - 140px);
}

.footer .footer-newsletter .subscribe-form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 30px;
    margin: 3px;
    background: #0078d4;
    color: #fff;
    transition: 0.3s;
    border-radius: 4px;
}

.footer .footer-newsletter .subscribe-form input[type=submit]:hover {
    background: #263179;
}

.footer .footer-top {
    position: relative;
    z-index: 1;
}

.disclaimer{
    font-size: 13px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
}
@media (max-width: 992px) {
    .footer .footer-top {
        background-position: center bottom;
    }
}

.footer .footer-top .footer-info {
    margin-bottom: 20px;
    color: #c3c6c6;
}

.footer .footer-top .footer-info a {
    color: #c3c6c6;
}

.footer .footer-top .footer-info .logo {
    line-height: 0;
    margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
    max-height: 60px;
}

.footer .footer-top .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #263179;
    font-family: 'Inter', sans-serif;
    margin-top: 3px;
}

.footer .footer-top .footer-info p {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-block;
    color: #000;
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
    color: #fff;
}

.footer .footer-top h4 {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 25px;
    margin: 0px 0 30px 0;
}

.footer .footer-top h4::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    height: 2px;
    width: 50px;
    background: linear-gradient(270deg, #FFC107 1.21%, #ddaf27 21.78%, #ffe38e 71.65%, #d0ad42 100%);

}

.footer .footer-top .footer-links {
    margin-bottom: 30px;
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #c3c6c6;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul a {
    color: #c3c6c6;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
    color: #263179;
}

.footer .footer-top .footer-contact p {
    line-height: 26px;
}

.footer .copyright {
    color: #ffff;
    text-align: center;
}

.footer .footer-bottom a {
    color: #ffff;
}




.accordion {
    position: relative;
}

.accordion-item {
    background: rgba(174, 174, 174, .1);
    color: #fff;
    margin: 15px 0;
    border-radius: 8px !important;
    border-color: rgba(255, 255, 255, .1);
}

/* .accordion-style2 .accordion-item-header {
    padding: 10px 40px 10px 20px;
} */
.accordion-item-header {
    padding: 10px 40px 10px 20px;
    display: flex;
    font-size: 15px;
    align-items: center;
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    background: rgb(0 0 0 / 11%);
    color: rgb(255 255 255 / 50%);
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .1);
}

.accordion-item-header.active {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.accordion-item:first-of-type {
    border-width: 1px;
}

.accordion-item-header .caption {
    background: #1a46dc;
    border-radius: 30px;
    padding: 1px 5px;
    font-size: 13px;
    margin-right: 12px;
    width: 80px;
    text-align: center;
    position: absolute;
    left: 10px;
    display: none;
}

.accordion-item-header::after {
    content: "\002B";
    font-size: 25px;
    position: absolute;
    right: 4px;
    width: 39px;
    text-align: center;
    border-radius: 50px;
    height: 39px;
    line-height: 36px;
    top: 2px;
    color: #fff;
}

.accordion-item-header.active::after {
    content: "\2212";
}

.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
    padding: 20px;
    line-height: 1.8;
    border-top: 0px solid;
    font-size: 15px;
    border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

/* .accordion-style2 .accordion-item-header {
    background: linear-gradient(to left, #c4d4f9, #ffe3e1);
    color: #000;
}

.accordion-style2 .accordion-item {
    background: #fff;
    box-shadow: 0 0px 3px rgb(0 0 0 / 8%);
} */
.accordion-item-body-content a {
    color: #fff;
}

@media (max-width: 768px) {
    .accordion-item-header {
        padding: 7px 38px 7px 15px;
        font-size: 14px;
    }

    .accordion-item-header::after {
        font-size: 20px;
        right: 2px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .accordion-item-body-content {
        font-size: 14px;
    }
}


.faq-section {
    position: relative;
    isolation: isolate;
}

/* 
.faq-section::before {
    content: "";
    position: absolute;
    inset-inline-start: -25%;
    inset-block-start: 0;
    width: 150%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-image: linear-gradient(90deg, rgba(77, 137, 249, 0) 12%, #BF953F 32%, #FCF6BA 68%, rgba(237, 109, 75, 0) 87%);
    animation: rotate360 10s linear infinite;
    transform-origin: center;
    transform-box: fill-box;
    z-index: -2;
}

.faq-section::after {
    content: "";
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: .5rem;
    transform: translateX(-50%);
    width: 150%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #000;
    z-index: -1;
}

@keyframes rotate360 {
    0% {
        transform: rotateZ(-80deg)
    }

    50% {
        transform: rotateZ(80deg)
    }

    100% {
        transform: rotateZ(-80deg)
    }
} */


.button-area {
    text-align: center;
    padding-top: 00px;
}

.button-area:after {
    display: block;
    clear: both;
    content: '';
}

.btn-hover {
    font-size: 16px;
    /*border: 4px solid rgba(255, 255, 255, 0.4);*/
    border: 4px solid rgb(255 255 255 / 0%);
    color: #fff;
    cursor: pointer;
    padding: 10px 30px;
    text-align: center;
    display: block;
    background-size: 300% 100%;
    text-transform: uppercase;
    font-family: 'Viga', sans-serif;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    color: #fff;
}

.btn-hover:focus {
    outline: none;
}

.btn-hover.color-1 {
    background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
    box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
}

.btn-hover.color-2 {
    background-image: linear-gradient(to right, #f5ce62, #e43603, #fa7199, #e85a19);
    box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);
}

.btn-hover.color-3 {
    background-image: linear-gradient(to right, #667eea, #764ba2, #6B8DD6, #8E37D7);
    box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
}

.btn-hover.color-4 {
    background-image: linear-gradient(to right, #fc6076, #ff9a44, #ef9d43, #e75516);
    box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
}

.btn-hover.color-5 {
    background-image: linear-gradient(to right, #0ba360, #3cba92, #30dd8a, #2bb673);
    box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}

.btn-hover.color-6 {
    background-image: linear-gradient(to right, #009245, #FCEE21, #00A8C5, #D9E021);
    box-shadow: 0 4px 15px 0 rgba(83, 176, 57, 0.75);
}

.btn-hover.color-7 {
    background-image: linear-gradient(to right, #6253e1, #852D91, #A3A1FF, #423fc2);
    box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);
}

.btn-hover.color-8 {
    background-image: linear-gradient(to right, #29323c, #485563, #2b5876, #4e4376);
    box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
}

.btn-hover.color-9 {
    background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
}

.btn-hover.color-10 {
    background-image: linear-gradient(to right, #ed6ea0, #ec8c69, #f7186a, #FBB03B);
    box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75);
}

.btn-hover.color-11 {
    background-image: linear-gradient(to right, #eb3941, #f15e64, #e14e53, #e2373f);
    box-shadow: 0 5px 15px rgba(242, 97, 103, .4);
}
.btn-hover.color-12 {
    background-image: linear-gradient(to right, #172f2f, #718989, #6b8383, #17302f);
    box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
}
.btn-hover.color-13 {
    background-image: linear-gradient(to right, #120c00, #775000, #855a00, #020202);
    box-shadow: 0 4px 15px 0 rgb(120 81 0);
}
.btn-hover.disabled{
    cursor: not-allowed !important;
    opacity: 0.5;
}
 

/* 
.platform-activity {
    padding: 25px;
    border-radius: 15px;
    background: rgb(255 255 255 / 11%);
    color: rgb(255 255 255 / 50%);

} */
.platform-activity {
    padding: 25px;
    border-radius: 15px;
    background: rgb(0 0 0 / 33%);
    color: rgb(255 255 255 / 50%);
    border: 2px solid rgb(255 255 255 / 14%);
    box-shadow: 0 0 40px rgb(0 46 118 / 25%);
}

.platform-activity-wrapper {
    height: 500px;
    overflow-y: scroll;
    box-sizing: content-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.platform-activity-wrapper::-webkit-scrollbar {
    display: none;
}

.activity-item-list {
    position: relative;
    border-bottom: 1px solid rgb(255 255 255 / 14%);
    padding: 10px 0;
    margin: 10px 0;
}

.activity-item-list:first-child {
    padding-top: 0;
    margin-top: 0;
}

.ex-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
}

.user-icon {
    margin: 0 15px;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.user-id-number {
    background: rgb(0 0 0 / 51%);
    padding: 4px 10px;
    text-align: center;
    border-radius: 50px;
    display: inline-flex;
    margin-right: 10px;
    color: #d2a927;
}

.activity-end-icon {
    width: 25px;
    height: 25px;
    display: inline-block;
    margin-right: 10px;
}

.see-more-button {
    background: linear-gradient(90deg, #0d003b 21%, #ee9558 50%, #0d003b 80%);
    /* background-image: linear-gradient(to right, #29323c, #485563, #2b5876, #4e4376); */
    box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    cursor: pointer;
    padding: 10px 30px;
    text-align: center;
    display: block;
    background-size: 300% 100%;
    text-transform: uppercase;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}


.shine-logo {
    display: inline-block;
    height: 144px;
    width: 700px;
    position: relative;
    overflow: hidden;
}

.shine-logo img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.shine-logo:before {
    content: "";
    z-index: 10;
    position: absolute;
    height: 100%;
    width: 100%;
    top: -120%;
    left: -120%;
    background: linear-gradient(transparent 0%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255) 50%, rgba(255, 255, 255, 0.1) 55%, transparent 100%);
    transition: all 2s;
    transform: rotate(-45deg);
    animation: shine 15s linear infinite;
}

@keyframes shine {
    0% {
        top: -120%;
        left: -120%;
    }

    20% {
        left: 100%;
        top: 100%;
    }

    40% {
        left: 100%;
        top: 100%;
    }

    100% {
        left: 100%;
        top: 100%;
    }
}



@media (max-width: 768px) {
    .shine-logo {
        height: 62px;
        width: 300px;
    }
}

.bg-gradient-img {
    background: url(../images/bg-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-circle-line {
    background: url(../images/circle-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}

.service-section {
    position: relative;
    z-index: 1;
}

.single-service-box {
    text-align: right;
    position: relative;
    margin-bottom: 30px;
    padding: 45px 0 46px;
    right: 44px;
    color: #fff;
}

.single-service-box.two {
    right: 112px;
}

.single-service-box.three {
    right: 73px;
}

.service-conmtent h2 {
    font-size: 22px;
    margin: 0 0 13px;
    font-weight: 600;
}

.service-conmtent p {
    width: 80%;
    margin: 0 0 0;
    float: right;
    font-weight: 500;
    font-size: 14px;
    opacity: 0.8;
}

.service-thumb {
    position: absolute;
    right: -100px;
}

/*right side*/
.single-service-box-two {
    text-align: left;
    position: relative;
    margin-bottom: 30px;
    padding: 45px 0 46px;
    left: 44px;
    color: #fff;
}


.single-service-box-two.six {
    left: 70px;
}

.single-service-box-two.five {
    left: 113px;
}

.single-service-box-two .service-thumb {
    position: absolute;
    left: -100px;
    right: inherit;
}

.single-service-box-two .service-conmtent p {
    width: 80%;
    margin: 0 0 0;
    float: left;
    right: inherit;

}

.shape-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    justify-items: center;
    align-items: center;
    display: flex;
}

.shape15 {
    position: absolute;
    right: -80px;
    margin: auto;
    z-index: -1;
    left: -80px;
    top: -25px;
}

.shape18 {
    position: relative;
    text-align: center;
}


.rotateme {
    animation-name: rotateme;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotateme {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

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



@media (max-width: 768px) {

    .single-service-box-two,
    .single-service-box {
        text-align: left;
        margin-bottom: 30px;
        padding: 0 0 0 72px;
        right: auto;
        left: 0;
        display: flex;
        width: 100%;
    }

    .single-service-box-two .service-thumb,
    .service-thumb {
        position: absolute;
        right: auto;
        left: 0;
        top: 6px;
    }

    .service-conmtent p {
        width: 100%;
        margin: 0 0 0;
        float: none;
    }

    .single-service-box-two.six,
    .single-service-box-two.five {
        left: auto;
    }

    .single-service-box.three,
    .single-service-box.four,
    .single-service-box.two {
        right: auto;
    }
}



.imt-icon-box-wrapper {
    text-align: center;
    background-image: url(../images/Gradient-Line.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 10px 30px;
    margin-bottom: 15px;
    border-style: none;
    text-align: center;
}

.imt-icon-box-wrapper .icon {
    border-style: none;
    height: 60px;
    width: 60px;
    margin: 0 auto;
}

.imt-icon-box-wrapper .icon-box-body {
    position: relative;
    z-index: 2;
}

.icon-box-body .title {
    margin: 0px 0px 0px 0px;
    padding: 20px 0px 20px 0px;
    color: #fff;
}

.icon-box-body .icon-box-description {
    color: #cdcdcd;
    min-height: 80px;
}


.payoutStyle-wrapper {
    background: linear-gradient(45deg, #000000, #011e31);
    padding: 20px;
    border-radius: 25px;
    background-size: cover;
    text-align: center;
    border: 2px solid rgb(255 255 255 / 14%);
}

.payoutStyle-icon {
    border-style: none;
    height: 80px;
    width: 80px;
    text-align: center;
    margin: 0 auto;
    border: 2px dashed rgb(255 255 255 / 47%);
    border-radius: 50px;
    justify-items: center;
    align-items: center;
    display: flex;
}

.payoutStyle-icon img {
    width: 50px;
    margin: 0 auto;
}

.payoutStyle-wrapper h4 {
    color: #fff;
    font-size: 18px;

    margin-top: 15px;
    margin-bottom: 0;
}

.payoutStyle-payindor {
    text-align: center;
    position: relative;
    margin: 50px 50px 00px 50px;
    padding: 00px 50px 50px 50px;
}

.payoutStyle-payindor::before {
    border-width: 2px;
    border-top: 0;
    border-style: dashed;
    border-color: rgb(255 255 255 / 47%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: -75px;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    content: '';
    z-index: -1;
}

.payoutStyle-payindor p {
    color: #fff;
    font-size: 18px;
}

.payoutStyle-payExpt {
    position: relative;
    z-index: 3;
}


.payoutStyle-payindor .style-button {
    position: relative;
    padding: 10px 40px;
    border: 0;
    background-color: #000;
    font-size: 22px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    margin-top: 15px;
}

.payoutStyle-payindor .style-button::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 4px;
    border-radius: 50px;
    background-image: conic-gradient(#488cfb,
            #29dbbc,
            #ddf505,
            #ff9f0e,
            #e440bb,
            #655adc,
            #488cfb);

    mask-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
    mask-origin: content-box, padding-box;
    mask-clip: content-box, padding-box;
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;

    filter: hue-rotate(0);
    animation: hue linear 500ms infinite;
    animation-play-state: paused;
    animation-play-state: running;
}

.payoutStyle-payindor .style-button:hover {
    color: #ffeb3b;
}

@media (max-width: 768px) {
    .payoutStyle-wrapper {
        padding: 5px;
        border-radius: 10px;
    }

    .payoutStyle-icon {
        height: 50px;
        width: 50px;
    }

    .payoutStyle-icon img {
        width: 35px;
    }

    .payoutStyle-wrapper h4 {
        font-size: 14px;
        margin-top: 10px;
    }

    .payoutStyle-payindor {
        margin: 15px 10px 00px 15px;
        padding: 00px 10px 20px 10px;
    }

    .payoutStyle-payindor p {
        font-size: 14px;
    }

    .payoutStyle-payindor .style-button {
        padding: 12px 22px;
        font-size: 16px;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .payoutStyle-payindor::before {
        top: -52px;
    }
}






.styleBox {
    /* width: 250px;
    height: 100px; */
    overflow: hidden;
    margin: 0 auto;
    display: grid;
    place-content: center;
    display: block;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 0 #000;
    --border-angle: 0turn;
    --main-bg: conic-gradient(from var(--border-angle), #381102b3, #4d2d01 5%, #381301 60%, #4b2b01 95%);
    border: solid 5px transparent;
    border-radius: 2em;
    --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, #08f, #f03 99%, transparent);
    background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
    background-position: center center;
    -webkit-animation: bg-spin 3s linear infinite;
    animation: bg-spin 3s linear infinite;
}
.styleBox.circle{
    width: 50px;
    height: 50px;
    border-width: 3px;
    --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, #f6bc4a, #be340f 99%, transparent);
}
.styleBox.circle i{
    font-size: 28px;
}

.styleBox.imgRound{ 
    width: 80px;
    height: 80px;
    padding: 10px;
    border-radius: 100px;
    border-width: 3px;
    /*--gradient-border: conic-gradient(from var(--border-angle), transparent 25%, #82c938, #e0febf 99%, transparent);*/
    --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, var(--bs-yellow), var(--bs-light-bg-subtle) 99%, transparent);
}
.styleBox.imgRound img{
    width: 50px;
}

@-webkit-keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}

@keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}

.styleBox:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}



/* @media (max-width: 768px) { 

    .styleBox {
        width: auto;
        height: 100px;
    }
} */


.cookies {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 10px 5px;
    color: #fff;
    text-align: center;
    background: #000;
    z-index: 9;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .1); 
}

.cookies a {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 2px 5px;
    font-size: 13px;
    border-radius: 3px;
}


.bewareAlert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0; 
    color: #fff;
    text-align: center;
    background: rgb(32 162 3 / 32%); 
    z-index: 99;
    height: 20px;
    font-size: 13px;
}
.bewareAlert marquee{
    margin: 0;
    padding: 0;
}

.bewareAlert a {
    display: inline-block;
    background: #e83308;
    color: #fff;
    padding: 2px 5px;
    font-size: 13px;
    border-radius: 3px;
}


.comBox {
    border: 1px solid #888;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    background: rgb(255 255 255 / 19%);
}

.comBox:hover {
    color: #ffeb3b;
}

@media (max-width: 768px) {
    .comBox {
        padding: 5px 10px;
        font-size: 12px;
    }

    .bewareAlert,
    .cookies {
        font-size: 12px;
    }

    .bewareAlert a,
    .cookies a {
        padding: 0px 5px;
        font-size: 12px;
    }

    .service-conmtent h2 {
        font-size: 18px;
        margin: 0 0 13px;
        font-weight: 500;
    }
}


.walletType {
    background: rgb(0 0 0 / 30%);
    border-radius: 10px;
    padding: 10px;
    position: relative;
    border: 2px solid rgb(0 0 0 / 27%);
    margin: 5px 0;
    display: block;
}


.walletType-img {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    text-align: center;
    bottom: 0;
    background: #fff;
    border-radius: 100px;
}

.walletType-img img {
    width: 35px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
}

.walletType-body {
    color: #828282;
    font-size: 13px;
    margin-left: 50px;
    margin-right: 35px;
}

.walletType-body h2 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.walletType-body p {
    margin: 0;
}

.walletType-arrow {
    position: absolute;
    right: 5px;
    top: 0;
    width: 35px;
    text-align: center;
    bottom: 0;
}

.walletType-arrow img {
    width: 25px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
}


.modal-window {
    background: rgb(0 0 0 / 85%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
}




.modal-window-wrapper-right {
    background: radial-gradient(#744500, #000000);
    display: block;
    height: 100%;
    width: 400px;
    right: -400px;
    overflow-x: hidden;
    overflow-y: auto;
    /* padding: 15px; */
    position: fixed;
    top: 0;
    transition: all .4s ease-in-out;
    z-index: 9;
    box-shadow: 0px -8px 40px #716500;
}

.modal-window-wrapper-right.open {
    right: 0;
}




.modal-window-wrapper {
    padding: 40px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
    width: 700px;
    z-index: 9;
    background: radial-gradient(#744500, #000000);
    border-radius: 10px;
    box-shadow: 0px -8px 40px #716500;
}

.modal-window-wrapper:after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    background: linear-gradient(to right, #ffcb4b, #fe3e22, #ffffff);
    border-radius: 10px;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.modal-window-body {
    position: relative;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    padding: 40px;
}

.modal-window-head {
    margin-bottom: 25px;
}

.modal-window-head h2 {
    color: #fff;
    font-size: 20px;
}

.modalWindow-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 30px;
    cursor: pointer;
    z-index: 9;
    text-align: center;
    padding-top: 3px;
}

.modalWindow-close:before,
.modalWindow-close:after {
    position: absolute;
    left: 12px;
    content: ' ';
    height: 18px;
    width: 2px;
    background-color: #000;
}

.modalWindow-close:before {
    transform: rotate(45deg);
}

.modalWindow-close:after {
    transform: rotate(-45deg);
}


@media (max-width: 768px) {
    .modal-window-wrapper {
        width: 90%;
        padding: 20px;
    }

    .modal-window-wrapper-right {
        height: 100%;
        width: 100%;
        right: -400px;
    }

    .modal-window-body {
        padding: 20px;
    }
}




.select-language {
    margin-left: 30px;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none;
}

.goog-te-gadget {
    height: 42px;
    overflow: hidden;
}

.goog-te-gadget .goog-te-combo {
    margin: 3px 0 !important;
}

.goog-te-gadget .goog-te-combo {
    display: block;
    font-size: 12px;
    font-family: inherit;
    text-transform: capitalize;
    color: #ffffff;
    padding: 10px 10px;
    max-width: 100%;
    box-sizing: border-box;
    border: 0px solid #000;
    box-shadow: 0 1px 0 1px rgba(0, 0, 0, .04);
    border-radius: .5em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #686868;
    background-image: url(../images/down-arrow.png), linear-gradient(to bottom, #ea5f1b 0%, #686868 100%);
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
    width: 150px;
}

select:focus-visible {
    outline: none;
}

@media only screen and (max-width: 552px) {
    .goog-te-gadget .goog-te-combo {
        width: 120px;
        padding: 5px 10px;
    }

    .header .logo {
        position: relative;
    }

    .goog-te-gadget {
        height: 35px;
    }

    .select-language {

        margin-left: 0;
    }
}


.social-media-channel {
    text-align: center;
    color: #fff !important;
    font-size: 16px;
    display: inline-block;
}


.social-media-icon {
    font-size: 28px;
    position: relative;
    margin-bottom: 10px;
}

.social-media-icon::after {
    border: 1px dashed #fff;
    content: '';
    height: 50px;
    width: 50px;
    border-radius: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.security-Partners img {
    border-radius: 8px;
    border: 2px solid #a6a6a6;
}

@media only screen and (max-width: 552px) {
    .social-media-channel {
        font-size: 14px;
    }
}

.payoutStyle-wrapper .form-control{
    background: transparent;
    color: #fff;
    border-radius: 50px;
    text-align: center;
}
 


.login-wrapper {
   /* background: url(../images/bg-img.jpg);*/
   /*background: linear-gradient(145deg, #0d1a1e, #1e2f2b);*/
   background: radial-gradient(
      circle at right center,
      rgba(255, 172, 0, 0.6),
      rgba(0, 0, 0, 0.9) 60%
    ),
    linear-gradient(
      to bottom left,
      rgba(255, 136, 0, 0.4) 0%,
      rgba(0, 0, 0, 1) 60%
    );
    background-blend-mode: screen, normal;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 100px 0;
}
.login-wrapper .coin-rotation{
    z-index: auto;
}
.login-wrapper
.payoutStyle-wrapper{
    position: relative;
    background: linear-gradient(45deg, rgb(82 21 3), rgb(43 64 65 / 0%));
}
.payoutStyle-wrapper hr{
    border-color: #fff;
}



.btn-close {
    opacity: inherit;
    --bs-btn-close-bg: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e);
}
.modal-backdrop.show {
    opacity: 0.8;
  }
  
  .modal-header {
    background: linear-gradient(270deg, #92480f; 10.35%, #010101 92.29%);
    border: 0;
    color: #fff;
  }
  
  .modal-content {
    background: #92480f;
  }
  

  .downloadApp-wrapper{
    position: relative;
  }
  .downloadApp-wrapper h2{
    font-weight: 600; 
  }
  .downloadApp-wrapper a{
    display: inline-block;
  }

  .word-break{
    word-break: break-all;
  }

.payoutStyle-wrapper select {
  width: 100%;
  /*color: #000;*/
  background: transparent;
  border-radius: 50px;
  padding: .375rem .75rem;
  line-height: 1.5;
  border: var(--bs-border-width) solid var(--bs-border-color);
  text-align: center;
  font-size: 1rem;
}
/*.payoutStyle-wrapper select:focus-visible {
  border: 0;
  outline: 0;
}*/