@font-face {
    font-family: "MochaYemen";
    src: url(../fonts/mocha/RTL-MochaYemen-Sadah.otf);
}

*,
* button:focus {
    outline: 0;
}

:root {
    --main-color: #16c0e5;
    --sub-color: #C8C5C7;
}

.main-color {
    color: var(--main-color) !important;
    color: #171e2c;
}

.main-back {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

html::-webkit-scrollbar {
    height: 20px;
    width: 10px;
    background: #f1f1f1;
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

html::-webkit-scrollbar-corner {
    background: #999;
    border-radius: 10px;
}

body {
    font-family: "Alexandria", sans-serif;
    text-decoration: none;
    font-size: 0.9em;
    overflow-x: hidden;
    position: relative;
    background-color: #171e2c;
    color: #fff;
    direction: rtl;
}

body .sub-font {
    font-family: "MochaYemen";
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    margin: 0;
    line-height: 2;
}

body a:hover {
    text-decoration: none;
}

body a:focus {
    outline: 0;
}

body ul {
    list-style-type: none;
    margin: 0;
}

[type=email],
[type=number],
[type=tel],
[type=url] {
    direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    transition: all 0.6s ease;
    outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
    display: inline-block;
    transition: all 0.3s ease;
    color: inherit;
    text-decoration: none;
}

small {
    display: inline-block;
}

a:hover {
    color: inherit;
}

ul {
    padding: 0;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.img_cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.img_contain {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.text,
.text * {
    font-size: 12px;
    line-height: 2;
}

small.text {
    font-size: 12px;
}

.section_padding {
    padding: 80px 0;
}

.dropdown .dropdown-menu {
    border-radius: 10px;
    padding: 10px;
    border: 0;
    background-color: #001821;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
    color: #fff;
    right: auto;
    left: 0 !important;
    max-height: 220px;
    overflow-y: auto;
}

.mobile_tab_bar {
    background: #000b0e;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99;
    padding: 10px 15px;
    box-shadow: -3px -6px 10px 0 #0001;
}
.mobile_tab_bar a {
    text-align: center ;
    color: #ccc ;
}
.mobile_tab_bar a.active {
    color: var(--main-color);
}
.mobile_tab_bar a i {
    display: block ;
    margin-bottom : 4px ;
}
.mobile_tab_bar a span {
    font-size: 10px ;
}


.navbar-container .dropdown .dropdown-menu {
    right: 0;
    left: auto !important;
}

.dropdown .dropdown-menu::-webkit-scrollbar {
    height: 5px;
    width: 5px;
    background: #16c0e522;
    border-radius: 10px;
}

.dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    background: #16c0e522;
    border-radius: 10px;
}

.dropdown .dropdown-menu::-webkit-scrollbar-corner {
    background: #16c0e522;
    border-radius: 10px; 
}

.dropdown .dropdown-menu .dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1333333333);
}

.dropdown .dropdown-menu h6 {
    font-size: 14px;
    white-space: nowrap;
    padding: 0.5rem 1rem 0;
}

.dropdown .dropdown-menu .balance {
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    padding: 0.5rem 1rem;
}

.dropdown .dropdown-menu .balance small {
    font-size: 11px;
    opacity: 0.7;
}

.dropdown .dropdown-menu .balance strong {
    font-size: 14px;
    color: var(--main-color);
}

.dropdown .dropdown-menu .dropdown-item {
    font-size: 12px;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    color: #fff;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background-color: rgba(22, 192, 229, 0.1333333333);
}

/* --------------- to_top button --------------- */
.progress-wrap {
    position: fixed;
    left: 20px;
    bottom: 20px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transform: translateX(-100px);
    z-index: 99;
    transition: all 200ms linear;
}

.progress-wrap::after {
    background: url(../images/top-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    color: #000;
    inset-inline-end: 13px;
    top: 13px;
    height: 25px;
    width: 25px;
    display: block;
}

.progress-wrap svg path {
    fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
    stroke: #000;
    stroke-width: 5;
    box-sizing: border-box;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --------------- buttons --------------- */
.butn-presv {
    perspective: 500px;
}

.butn {
    border-color: #fff;
    background: transparent;
    color: #fff;
    padding: 15px 40px;
    transform: rotateX(25deg);
    border: 1px solid #fff;
    border-radius: 7px;
    transition: all 0.3s ease;
}

.butn:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    transform: rotateX(0);
    color: #000;
}

.bttn {
    position: relative;
    padding: 15px 30px;
    border-radius: 10px;
    background-color: var(--main-color);
    text-align: center;
    border: 0;
}

.bttn:hover {
    background-color: #fff;
    color: var(--main-color);
}

/* --------------- preloader --------------- */
.preloader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    background-color: #000;
}

.preloader .preloader-inner {
    display: flex;
    padding: 50px;
    background: radial-gradient(rgba(22, 192, 229, 0.6), hsl(200, 30%, 6%));
    height: 100%;
    overflow: hidden;
}

.preloader .loader-logo {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    height: 70px;
}

.preloader .spinner {
    position: relative;
    margin: auto;
    box-sizing: border-box;
    background-clip: padding-box;
    width: 200px;
    height: 200px;
    border-radius: 100px;
    border: 4px solid rgba(242, 0, 58, 0.1);
    -webkit-mask: linear-gradient(rgba(242, 0, 58, 0.1), #f2003a 90%);
    transform-origin: 50% 60%;
    transform: perspective(200px) rotateX(66deg);
}

.preloader .spinner:before,
.preloader .spinner:after {
    content: "";
    position: absolute;
    margin: -4px;
    box-sizing: inherit;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    opacity: 0.05;
    border: inherit;
    border-color: rgba(0, 0, 0, 0);
    animation: spinner-spin 1.2s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, spinner-fade 1.2s linear infinite;
}

.preloader .spinner:before {
    border-top-color: rgba(22, 192, 229, 0.9);
}

.preloader .spinner:after {
    border-top-color: rgba(22, 192, 229, 0.6);
    animation-delay: 0.3s;
}

.preloader .spinner.is_done {
    transform: perspective(200px) rotateX(0) scale(3);
    transition: all 1s ease;
}

@keyframes spinner-wiggle {
    30% {
        transform: perspective(200px) rotateX(66deg);
    }

    40% {
        transform: perspective(200px) rotateX(66deg);
    }

    50% {
        transform: perspective(200px) rotateX(66deg);
    }

    60% {
        transform: perspective(200px) rotateX(66deg);
    }
}

@keyframes spinner-spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinner-fade {
    20% {
        opacity: 0.1;
    }

    40% {
        opacity: 1;
    }

    60% {
        opacity: 0.1;
    }
}

/* --------------- navbar --------------- */
.navbar-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.0666666667);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 999;
    color: #fff;
}

.navbar-container::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background-color: var(--main-color);
    -webkit-clip-path: polygon(0 0, 0% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 0% 0, 100% 100%, 0 100%);
}

.navbar-container::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background-color: var(--main-color);
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
}

.top-navbar {
    position: relative;
}

.top-navbar .content {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1333333333);
    height: 65px;
}

.top-navbar .social-links,
.navbar .social-links{
    position: relative;
    text-align: center;
    padding-top: 20px;
}

.top-navbar .social-links > a,
.navbar .social-links > a{
    position: relative;
    font-size: 16px;
    margin: 0 15px;
}

.top-navbar .social-links > a .cir,
.navbar .social-links > a .cir{
    position: absolute;
    top: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--main-color);
}

.top-navbar .social-links > a .cir::before,
.navbar .social-links > a .cir::before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #16c0e5;
    animation: scale-up-down 1s infinite;
}

.top-navbar .social-links .dropdown,
.navbar .social-links .dropdown{
    display: inline-block;
}

.top-navbar .social-links .dropdown button,
.navbar .social-links .dropdown button{
    border: 0;
    background-color: transparent;
    color: #fff;
    font-size: 11px;
}

.top-navbar .social-links .dropdown .flag,
.navbar .social-links .dropdown .flag{
    height: 10px;
    width: 15px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-inline-end: 5px;
}

.top-navbar .brand {
    position: relative;
    height: 160px;
    padding-bottom: 30px;
    display: block;
    text-align: center;
    margin: 0 auto;
    z-index: 20;
    padding-top: 20px;
}

.top-navbar .brand .logo {
    position: relative;
}

.top-navbar .search-form {
    position: relative;
    padding-top: 12px;
}

.top-navbar .search-form .form-group {
    position: relative;
    display: flex;
}

.top-navbar .search-form .form-group input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.0666666667);
    border: 0;
    min-height: 40px;
    color: #fff;
    padding: 0 20px;
    border-radius: 50px;
    padding-inline-end: 30px;
}

.top-navbar .search-form .form-group input::-moz-placeholder {
    color: #fff;
    opacity: 0.5;
}

.top-navbar .search-form .form-group input::placeholder {
    color: #fff;
    opacity: 0.5;
}

.top-navbar .search-form .form-group button {
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background-color: #fff;
    color: var(--main-color);
}

.navbar .navbar-nav {
    position: relative;
    width: 100%;
    justify-content: center;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    font-size: 13px;
    padding: 24px 15px;
}

.navbar .navbar-nav .icon-link {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    /*background-color: var(--main-color);*/
    margin: 10px 10px 0;
}

.navbar .navbar-nav .icon-link::after {
    display: none;
}

.swiper-notification {
    display: none;
}

@keyframes scale-up-down {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* --------------- header --------------- */
header {
    position: relative;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    z-index: 20;
    overflow: hidden;
}

header .swiper-pagination {
    bottom: 50px !important;
}

header .bottom-sec {
    z-index: 30;
    pointer-events: none;
}

header .header-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 800px;
}

header .header-slider .swiper-slide-active .info {
    top: 0;
    opacity: 1;
}

header .slide-card {
    position: relative;
    z-index: 20;
    height: 800px;
    z-index: 20;
    padding: 250px 0 150px;
}

header .slide-card::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
}

header .slide-card .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    z-index: -1;
}

header .slide-card .info {
    position: relative;
    text-align: center;
    margin: 0 auto;
    z-index: 20;
    opacity: 0;
    top: 100px;
    transition: all 1s ease;
}

header .slide-card .info h1 {
    font-size: 50px;
}

header .slide-card .info h1 span {
    display: block;
    width: -moz-max-content;
    width: max-content;
    color: transparent;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 70px;
    line-height: 1;
    background-image: linear-gradient(290deg, #7D0DFE, var(--main-color), var(--main-color), #ea0dfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header .slide-card .info .text {
    font-size: 18px;
    margin-top: 20px;
    opacity: 0.8;
    line-height: 2;
}

header .slide-card .info .butn-presv {
    margin-top: 50px;
}

header .butn {
    border-color: #fff;
    background: #fff;
    color: #fff;
    padding: 20px 60px;
    transform: rotateX(25deg);
    border: 1px solid #fff;
    border-radius: 7px;
    transition: all 0.3s ease;
    color: #000;
    font-size: 18px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    color: #fff;
    font-size: 16px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #fff;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    color: #000;
}

/* --------------- seaction head --------------- */
.section-title {
    position: relative;
    margin-bottom: 50px;
}

.section-title h6 {
    font-size: 20px;
    width: -moz-max-content;
    width: max-content;
    background-image: linear-gradient(290deg, #7D0DFE, var(--main-color), var(--main-color), #ea0dfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 35px;
    font-family: "MochaYemen";
}

.section-title.text-center h6 {
    margin: 0 auto 15px;
}

/* --------------- features --------------- */
.features {
    position: relative;
    padding: 100px 0;
    z-index: 20;
}

.features .row .col-lg-4:first-of-type {
    margin-top: 80px;
}

.features .row .col-lg-4:last-of-type {
    margin-top: -80px;
}

.features .section-title {
    margin-bottom: 15px;
}

.features .vision-item {
    position: relative;
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid rgba(22, 192, 229, 0.2);
    text-align: center;
    transition: all 0.5s ease;
    z-index: 20;
    overflow: hidden;
}

.features .vision-item::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to top, #16c0e5, transparent);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.features .vision-item .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.features .vision-item .icon {
    position: relative;
    height: 50px;
    margin-bottom: 20px;
}

.features .vision-item h4 {
    font-size: 21px;
    margin-bottom: 20px;
}

.features .vision-item .text {
    font-size: 13px;
    opacity: 0.7;
    line-height: 2.5;
    min-height: 130px;
}

.features .vision-item .butn-presv {
    margin-top: 30px;
}

.features .vision-item:hover {
    border-color: var(--main-color);
}

.features .vision-item:hover::after {
    opacity: 0.4;
}

.features .vision-item:hover .bg {
    opacity: 1;
    transform: scale(1.3);
}

.features .more-link {
    position: relative;
    text-align: end;
    margin-top: -25px;
}

.features .more-link::before {
    position: absolute;
    content: "";
    left: 200px;
    bottom: 25px;
    width: calc(100% - 200px);
    height: 1px;
    background-image: linear-gradient(to right, transparent, rgba(22, 192, 229, 0.6), transparent);
}

/* --------------- steps-st2 --------------- */
.steps-st2 {
    position: relative;
    padding: 120px 0;
}

.steps-st2 .steps {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-top: 50px;
}

.steps-st2 .step-item {
    position: relative;
    padding: 100px 20px 50px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.5s ease;
    z-index: 20;
    width: 33%;
}

.steps-st2 .step-item::before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.steps-st2 .step-item .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.steps-st2 .step-item .icon {
    position: relative;
    height: 40px;
    margin-bottom: 15px;
}

.steps-st2 .step-item h4 {
    font-size: 14px;
}

.steps-st2 .step-item .text {
    font-size: 13px;
    opacity: 0.7;
    line-height: 2.5;
    min-height: 130px;
}

.steps-st2 .step-item .num {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #171E2C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 5px solid #171E2C;
    outline: 1px dashed var(--main-color);
    background-color: #193c44;
}

.steps-st2 .steps1 {
    position: relative;
}

.steps-st2 .steps1::after {
    position: absolute;
    content: "";
    left: -25px;
    top: calc(100% + 100px);
    width: 100%;
    height: 50px;
    border-top: 1px dashed var(--main-color);
    border-right: 1px dashed var(--main-color);
    border-top-right-radius: 50px;
    opacity: 0.3;
}

.steps-st2 .steps1 .arrow {
    position: absolute;
    bottom: -125px;
    left: -25px;
    width: 50px;
    height: 50px;
    background-color: #171E2C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 5px solid #171E2C;
    outline: 1px dashed var(--main-color);
    background-color: #193c44;
    transform: rotateX(180deg);
    z-index: 20;
}

.steps-st2 .steps1 .step-item:nth-of-type(1) .num {
    top: 0;
    right: 0;
}

.steps-st2 .steps1 .step-item:nth-of-type(1)::before {
    right: 0;
    top: 25px;
    width: calc(100% + 25px);
    border-top: 1px dashed var(--main-color);
    border-left: 1px dashed var(--main-color);
    border-top-left-radius: 50px;
}

.steps-st2 .steps1 .step-item:nth-of-type(2) .num {
    bottom: -50px;
    right: 0;
}

.steps-st2 .steps1 .step-item:nth-of-type(2)::before {
    right: 0;
    top: 25px;
    width: calc(100% + 25px);
    border-bottom: 1px dashed var(--main-color);
    border-left: 1px dashed var(--main-color);
    border-bottom-left-radius: 50px;
}

.steps-st2 .steps1 .step-item:nth-of-type(3) .num {
    top: 0;
    right: 0;
}

.steps-st2 .steps1 .step-item:nth-of-type(3)::before {
    right: 0;
    top: 25px;
    height: calc(100% + 100px);
    width: calc(100% + 25px);
    border-top: 1px dashed var(--main-color);
    border-left: 1px dashed var(--main-color);
    border-top-left-radius: 50px;
}

.steps-st2 .steps2 {
    margin-top: 100px;
}

.steps-st2 .steps2 .step-item:nth-of-type(1) .num {
    top: 0;
    right: 0;
}

.steps-st2 .steps2 .step-item:nth-of-type(1)::before {
    right: 25px;
    top: 25px;
    width: calc(100% + 25px);
    border-bottom: 1px dashed var(--main-color);
    border-right: 1px dashed var(--main-color);
    border-bottom-right-radius: 50px;
}

.steps-st2 .steps2 .step-item:nth-of-type(2) .num {
    bottom: -50px;
    right: 0;
}

.steps-st2 .steps2 .step-item:nth-of-type(2)::before {
    right: 25px;
    top: 25px;
    width: 100%;
    border-top: 1px dashed var(--main-color);
    border-right: 1px dashed var(--main-color);
    border-top-right-radius: 50px;
}

.steps-st2 .steps2 .step-item:nth-of-type(3) .num {
    top: 0;
    right: 0;
}

.steps-st2 .steps2 .step-item:nth-of-type(3)::before {
    right: 25px;
    top: 25px;
    height: 100%;
    width: calc(100% - 25px);
    border-bottom: 1px dashed var(--main-color);
    border-right: 1px dashed var(--main-color);
    border-bottom-right-radius: 50px;
}

/* --------------- steps-st3 --------------- */
.steps-st3 {
    position: relative;
    padding: 100px 0;
}

.steps-st3 .steps {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 80px 1vw 0;
}

.steps-st3 .step-item {
    position: relative;
    padding: 70px 30px;
    border-radius: 15px;
    transition: all 0.5s ease;
    z-index: 20;
    width: 15.3846153846%;
}

.steps-st3 .step-item .line {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    filter: invert(72%) sepia(14%) saturate(7309%) hue-rotate(147deg) brightness(95%) contrast(89%);
    opacity: 0.1;
    transition: all 0.5s ease;
}

.steps-st3 .step-item .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.steps-st3 .step-item .icon {
    position: absolute;
    height: 30px;
    margin-bottom: 20px;
    top: 90px;
    left: 20px;
}

.steps-st3 .step-item h4 {
    font-size: 13px;
    width: 80%;
}

.steps-st3 .step-item .text {
    font-size: 13px;
    opacity: 0.7;
    line-height: 2.5;
    min-height: 130px;
}

.steps-st3 .step-item .num {
    width: 40px;
    height: 40px;
    background-color: #171E2C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 5px solid #171E2C;
    outline: 1px dashed rgba(22, 192, 229, 0.1333333333);
    background-color: #193c44;
    margin-bottom: 20px;
    font-size: 12px;
}

.steps-st3 .step-item:last-of-type {
    border: 5px solid rgba(22, 192, 229, 0.0666666667);
    border-radius: 30px;
    text-align: center;
}

.steps-st3 .step-item:last-of-type .line {
    display: none;
}

.steps-st3 .step-item:last-of-type .icon {
    position: static;
}

.steps-st3 .step-item:last-of-type .num {
    display: none;
}

.steps-st3 .step-item:last-of-type h4 {
    width: 100%;
}

.steps-st3 .video-card {
    position: relative;
    margin-top: 70px;
    text-align: center;
}

.steps-st3 .video-card .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    border-radius: 50%;
    font-size: 20px;
}

.steps-st3 .video-card h6 {
    font-size: 14px;
}

/* --------------- process --------------- */
.process ,
.video-sec {
    position: relative;
    padding: 100px 0;
    z-index: 20;
}

.process .vision-item ,
.video-sec .vision-item {
    position: relative;
    padding: 50px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.5s ease;
    z-index: 20;
    border: 1px solid rgba(22, 192, 229, 0.2);
}

.process .vision-item .bg ,
.video-sec .vision-item .bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.process .vision-item .icon,
.video-sec .vision-item .icon{
    position: relative;
    height: 40px;
    margin-bottom: 15px;
}

.process .vision-item h4,
.video-sec .vision-item h4 {
    font-size: 14px;
}

.process .vision-item .text,
.video-sec .vision-item .text {
    font-size: 13px;
    opacity: 0.7;
    line-height: 2.5;
    min-height: 130px;
}

.process .vision-item .butn-presv,
.video-sec .vision-item .butn-presv {
    margin-top: 30px;
}

.process .arrow {
    height: 70px;
    opacity: 0.7;
}

.process .video-card {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-top: 50px;
}

.process .video-card .icon {
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 40px;
}

.process .video-card h6 {
    font-size: 13px;
}


.video-sec .vision-item {
    padding: 20px 15px;
    margin-bottom: 25px;
}

.video-sec .vision-item::after {
    content: '';
    width: 25px;
    height: 25px;
    background: url(../images/icons/lft-arrow.png) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -13px;
    left: 44%;
    transform: rotate(270deg) translateX(-50%);
} 

.video-sec .col-lg-3:first-child .vision-item:last-child::after{
    bottom: 40px;
    left: -25px;
    transform: rotate(0deg) translateX(0%);
}

.video-sec .col-lg-3:nth-child(2) .vision-item::after{
    bottom: unset;
    top: -13px;
    transform: rotate(90deg) translateX(-50%);
}

.video-sec .col-lg-3:nth-child(2) .vision-item:first-child::after{
    display: none !important;
}


.video-sec .vision-item h4 {
    font-size: 12px;
}

.video-sec::after {
    display: none !important;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #fff;
}

.niceCountryInputSelector {
    width: 100% !important;
}

.niceCountryInputMenu {
    background-color: transparent !important;
    color: #fff !important;
    border: 0 !important;
}

.niceCountryInputMenu * {
    color: #fff !important;
}

.niceCountryInputMenuDropdown {
    display: none;
}

.niceCountryInputMenuCountryFlag {
    margin-inline-end: 15px;
}

.niceCountryInputMenuDropdownContent a {
    color: #fff !important;
    font-size: 14px;
}

.niceCountryInputMenuFilter input {
    background-color: #000 !important;
    border: 0 !important;
    color: #fff !important;
}

.niceCountryInputMenuDropdownContent {
    border: 0 !important;
}

.niceCountryInputMenuDropdownContent::-webkit-scrollbar {
    height: 20px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1333333333);
    border-radius: 10px;
}

.niceCountryInputMenuDropdownContent::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1333333333);
    border-radius: 10px;
}

.niceCountryInputMenuDropdownContent::-webkit-scrollbar-corner {
    background: rgba(255, 255, 255, 0.1333333333);
    border-radius: 10px;
}

.niceCountryInputMenuFilter {
    border: 0 !important;
}

/* --------------- sections --------------- */
.sections {
    position: relative;
    padding: 120px 0 80px;
    background-color: #001821;
    z-index: 20;
    overflow: hidden;
}

.sections::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(transparent, #001821);
    z-index: -1;
}

.sections .sections-slider {
    position: relative;
    overflow: hidden;
}

.sections .video {
    position: absolute;
    left: -20%;
    top: 0;
    width: 150%;
    max-width: unset;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.3;
    z-index: -2;
}

.sections .cards {
    position: relative;
}

.sections .cards .item {
    position: relative;
    background: rgba(23, 30, 44, 0.0666666667);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 4vw;
    margin-bottom: 40px;
    z-index: 20;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.sections .cards .item .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.sections .cards .item .icon {
    height: 130px;
    width: 160px;
    filter: drop-shadow(0 0 50px rgba(22, 192, 229, 0.6));
}

.sections .cards .item .icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.sections .cards .item .trn {
    width: 50px;
    -o-object-fit: contain;
    object-fit: contain;
    animation-duration: 10s;
}

.sections .cards .item .info {
    min-width: 160px;
}

.sections .cards .item .butn-presv {
    margin-top: 30px;
}

/* --------------- sections --------------- */
.sections-st2 {
    position: relative;
    padding: 120px 0 80px;
    background-color: #001821;
    z-index: 20;
    overflow: hidden;
}

.sections-st2::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(transparent, #001821);
    z-index: -1;
}

.sections-st2 .sections-slider {
    position: relative;
    overflow: hidden;
}

.sections-st2 .video {
    position: absolute;
    left: -20%;
    top: 0;
    width: 150%;
    max-width: unset;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.3;
    z-index: -2;
}

.sections-st2 .item {
    position: relative;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 20;
}

.sections-st2 .item .img {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
}

.sections-st2 .item .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 100px 30px 30px;
    background-image: linear-gradient(to top, #000, transparent);
}

.sections-st2 .swiper-button-prev,
.sections-st2 .swiper-button-next {
    top: auto;
    bottom: 350px;
}

/* --------------- form --------------- */
.form-select {
    background-color: #171e2c;
    min-height: 55px;
    color: #fff;
    border-radius: 10px;
    border-color: rgba(22, 192, 229, 0.3333333333);
    box-shadow: none !important;
    padding: 0 25px;
    font-size: 13px;
}

/* --------------- featured-accounts --------------- */
.featured-accounts {
    position: relative;
    padding: 100px 0;
    z-index: 20;
    background-color: #001821;
}

.featured-accounts::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #001821, transparent, #001821);
    z-index: -2;
}

.featured-accounts .bg-sec {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -3;
    opacity: 0.3;
    display: none;
}

.featured-accounts .filter {
    position: relative;
    padding: 30px 0;
    border-bottom: 1px solid rgba(22, 192, 229, 0.4);
    border-radius: 0;
}

.account-card {
    position: relative;
    margin-top: 30px;
    z-index: 20;
}

.account-card .crown {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 5px;
    background-color: gold;
    color: #000;
}

.account-card .img {
    position: relative;
    height: 300px;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.account-card .img .tags {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 20;
}

.account-card .img .tags a {
    font-size: 10px;
    padding: 4px 7px;
    background-color: var(--main-color);
    margin-inline-start: 2px;
    border-radius: 5px;
}

.account-card .info {
    position: relative;
    padding: 30px;
    height: calc(100% - 30px);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    overflow: hidden;
    padding-top: 60px;
}

.account-card .info .title {
    font-size: 16px;
    margin-bottom: 30px;
}

.account-card .info .text {
    font-size: 11px;
    opacity: 0.8;
    min-height: 50px;
}

.account-card .info .price {
    position: absolute;
    top: 0;
    left: 18px;
    z-index: 20;
    width: 50%;
    padding: 5px 5px;
    text-align: center;
    background-color: rgba(22, 192, 229, 0.2);
    transform: skewX(-33deg);
    border-radius: 5px;
}

.account-card .info .price .txt {
    transform: skewX(33deg);
}

.account-card .info .user {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.account-card .info .user .avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-inline-end: 20px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 3px;
}

.account-card .info .user .avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.account-card .info .user .cont small {
    font-size: 7px;
    opacity: 0.7;
}

.account-card .info .user .cont h6 {
    font-size: 11px;
}

.account-card .info .user .rate .stars {
    font-size: 10px;
    color: var(--main-color);
    margin-top: 5px;
}

.account-card .info .links {
    position: relative;
    margin-top: 20px;
    display: flex;
    justify-content: end;
}

.account-card .info .links .buy-link {
    position: relative;
    font-size: 12px;
    background-color: var(--main-color);
    border-radius: 8px;
    padding: 8px 30px;
}

.account-card .info .links .icon {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(22, 192, 229, 0.3333333333);
    border-radius: 8px;
    margin-inline-end: 10px;
}

.account-card .info .links .icon:hover {
    background-color: var(--main-color);
}

.account-card .info .links .fav-icon {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(22, 192, 229, 0.3333333333);
    border-radius: 8px;
    margin-inline-end: 10px;
}

.account-card .info .links .fav-icon.active {
    background-color: var(--main-color);
}

.account-card .info .bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.account-card:hover .info .price {
    background-color: #16c0e5;
}

.account-card:hover .bg {
    opacity: 1;
}

.account-card .play-on {
    position: relative;
    margin: 7px 0 15px;
    height: 43px;
}

.account-card .play-on .item {
    font-size: 12px;
    margin-inline-end: 5px;
}

.account-card .play-on .item i {
    font-size: 9px;
    color: var(--main-color);
}

.top-sec {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}

.bottom-sec {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

/* --------------- subscribe --------------- */
.subscribe {
    position: relative;
    padding: 100px 0 150px;
}

.subscribe .subscribe-card {
    position: relative;
    padding: 50px;
    padding-bottom: 0;
    border-radius: 30px;
    border: 1px solid rgba(22, 192, 229, 0.1333333333);
    z-index: 20;
    overflow: hidden;
}

.subscribe .subscribe-card .circle {
    position: absolute;
    top: -50%;
    left: 25%;
    width: 50%;
    height: 200%;
    max-height: unset;
    -o-object-fit: contain;
    object-fit: contain;
    z-index: -1;
    opacity: 0.3;
    animation-duration: 10s;
    filter: blur(50px);
}

.subscribe .subscribe-card .shap {
    position: absolute;
    right: 0;
    top: 0;
    height: 50%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.07;
}

.subscribe .subscribe-card .shap1 {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.07;
}

.subscribe .subscribe-card .info {
    padding-bottom: 80px;
}

.subscribe .subscribe-card .title h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.subscribe .subscribe-card .form-group {
    position: relative;
    margin-top: 40px;
}

.subscribe .subscribe-card .form-group .form-control {
    background-color: rgba(255, 255, 255, 0.0666666667);
    border-radius: 50px;
    border: 0;
    color: #fff;
    box-shadow: none;
    padding: 20px 30px;
}

.subscribe .subscribe-card .form-group .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.subscribe .subscribe-card .form-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.subscribe .subscribe-card .form-group button {
    position: absolute;
    left: 5px;
    top: 5px;
    border-radius: 50px;
    height: calc(100% - 10px);
    background-color: var(--main-color);
    border: 0;
    color: #fff;
    padding: 5px 30px;
}

/* --------------- footer --------------- */
footer {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

footer::before {
    position: absolute;
    content: "";
    inset-inline-start: -25%;
    inset-block-start: 0;
    width: 150%;
    aspect-ratio: 1;
    border-radius: 50%;
    /* background-color: red; */
    background-image: linear-gradient(90deg, rgba(77, 137, 249, 0) 12%, #704ee7 32%, #e8428c 68%, rgba(237, 109, 75, 0) 87%);
    animation: rotate-center 10s linear infinite;
    transform-origin: center;
    transform-box: fill-box;
    z-index: -2;
}

footer::after {
    position: absolute;
    content: "";
    inset-inline-start: -25%;
    inset-block-start: 0;
    width: 150%;
    top: 7px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #001821;
    z-index: -1;
    border: 1px solid rgba(22, 192, 229, 0.2);
    animation: rotate-center 10s linear infinite;
}

footer .logos-wrapper {
    position: relative;
    padding: 70px 0;
    text-align: center;
}

footer .logos-wrapper h5 {
    font-size: 21px;
    margin-bottom: 30px;
}

footer .logos-wrapper .logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

footer .logos-wrapper .logos img {
    object-fit: contain;
}

footer .logos-wrapper .logos a {
    height: 50px;
    margin-top: 20px;
}

footer .footer-content {
    position: relative;
    text-align: center;
}

footer .footer-content .links-group {
    position: relative;
    padding: 30px 0;
}

footer .footer-content .links a {
    font-size: 13px;
    margin: 10px 0;
    opacity: 0.7;
}

footer .footer-content .links a:hover {
    color: var(--main-color);
    opacity: 1;
}

footer .footer-content .links a:hover * {
    color: var(--main-color);
}

footer .footer-content .info {
    position: relative;
    text-align: center;
    border-right: 1px solid rgba(22, 192, 229, 0.1333333333);
    border-left: 1px solid rgba(22, 192, 229, 0.1333333333);
    padding: 40px 6vw;
    height: 100%;
}

footer .footer-content .info .footer-logo {
    height: 100px;
    margin-bottom: 20px;
}

footer .footer-content .social-links {
    position: relative;
    margin-top: 30px;
}

footer .footer-content .social-links a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1333333333);
    font-size: 14px;
    border-radius: 50%;
}

footer .footer-content .social-links a:hover {
    background-color: var(--main-color);
}

footer .foot {
    position: relative;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(22, 192, 229, 0.1333333333);
}

footer .foot p {
    font-size: 12px;
}

footer .foot p a img {
    width: 60px;
    object-fit: contain;
    margin-inline-start: 5px;
}

footer .pay_methods .pay_logo {
    width: 50px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-inline-end: 7px;
}

footer .foot-icons .maroof_logo {
    width: 80px;
    margin: auto;
}

footer .foot-icons .icon-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

footer .foot-icons a {
    font-size: 12px;
}

/* --------------- testimonials --------------- */
.testimonials {
    position: relative;
    padding: 100px 0;
}

.testimonials .testi-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.testimonials .testi-card {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1333333333);
    border-radius: 15px;
}

.testimonials .testi-card .stars {
    font-size: 12px;
    margin-bottom: 20px;
}

.testimonials .testi-card .text {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 15px;
}

.testimonials .testi-card .qt {
    position: absolute;
    inset-inline-end: 25px;
    top: 25px;
    height: 30px;
    margin-bottom: 10px;
    opacity: 0.5;
}

/* --------------- innerheader --------------- */
.innerheader {
    position: relative;
    padding: 250px 0 120px;
    z-index: 20;
}

.innerheader.no-data {
    padding: 73px 0;
}

.innerheader::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 0;
    background-color: #000;
    opacity: 0.6;
}

.innerheader .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.innerheader .info {
    position: relative;
    z-index: 20;
    text-align: center;
}

.innerheader .info h2 {
    font-size: 50px;
}

.innerheader .info .links {
    position: relative;
    margin-top: 30px;
    padding-top: 30px;
}

.innerheader .info .links::before {
    position: absolute;
    content: "";
    left: 25%;
    top: 0;
    width: 50%;
    height: 1px;
    background-image: linear-gradient(to right, transparent, var(--main-color), transparent);
}

.innerheader .info .links a {
    position: relative;
    padding: 0 20px;
}

.innerheader .info .links a::after {
    position: absolute;
    content: "";
    inset-inline-end: -6px;
    top: calc(50% - 4px);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--main-color);
}

.innerheader .info .links a:last-of-type {
    color: var(--main-color);
}

.innerheader .info .links a:last-of-type::after {
    display: none;
}

.breadcrumb {
    position: relative;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.breadcrumb .links {
    position: relative;
}

.breadcrumb .links a {
    position: relative;
    padding: 0 20px;
}

.breadcrumb .links a::after {
    position: absolute;
    content: "";
    left: -6px;
    top: calc(50% - 4px);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--main-color);
}

.breadcrumb .links a:last-of-type {
    color: var(--main-color);
}

.breadcrumb .links a:last-of-type::after {
    display: none;
}

/* --------------- about page --------------- */
.about {
    position: relative;
    padding: 120px 0 0;
    background-color: #001821;
    z-index: 20;
}

.about .content {
    position: relative;
    text-align: center;
}

.about .content .main-text,
.about .content .main-text * {
    position: relative;
    font-size: 16px;
    opacity: 0.7;
    line-height: 2.2;
}

.about .content .main-img {
    position: relative;
    transform: translateY(80px);
    height: 400px;
}

/* --------------- privacy page --------------- */
.privacy {
    position: relative;
    padding: 120px 0 40px;
    z-index: 20;
}

.privacy .content {
    position: relative;
}

.privacy .content .item {
    margin-bottom: 80px;
}

.privacy .content .main-text {
    position: relative;
    font-size: 16px;
    opacity: 0.7;
    line-height: 2.2;
    margin-top: 20px;
}

.tab-wrapper .checks .form-check {
    margin: 10px 0;
}

.tab-wrapper .checks .form-check .form-check-label small {
    font-size: 11px;
}

/* --------------- account detials page --------------- */
.account-det {
    position: relative;
    padding: 100px 0;
}

.account-det .info-card {
    position: relative;
    padding: 50px;
    background-color: #001821;
    border: 1px solid rgba(22, 192, 229, 0.2);
    border-radius: 15px;
}

.account-det .info-card .text {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 15px;
}

.account-det .info-card .info ul {
    list-style-type: disc;
    margin: 0;
    padding-inline-start: 20px;
}

.account-det .info-card .imgs-slider {
    position: relative;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
}

.account-det .info-card .imgs-slider .img {
    height: 100%;
}

.account-det .info-card .imgs-slider .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border: 1px solid #fff3;
    border-radius: 20px;
    padding: 5px;
}

.account-det .info-card .top-info {
    position: relative;
}

.account-det .info-card .top-info .float-icons {
    position: absolute;
    inset-inline-end: 0;
    bottom: 0px;
    display: inline-flex;
    align-items: center;
}

.account-det .info-card .top-info .float-icons .item {
    margin-inline-start: 20px;
}

.account-det .info-card .top-info .float-icons .txt {
    font-size: 10px;
}

.account-det .info-card .imgs-links a {
    font-size: 10px;
    color: var(--main-color);
}

.account-det .info-card .platforms {
    position: relative;
    border-top: 1px solid rgba(22, 192, 229, 0.3333333333);
    margin-top: 20px;
    padding-top: 20px;
}

.account-det .info-card .platforms .item {
    position: relative;
    font-size: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: rgba(22, 192, 229, 0.1333333333);
    margin-top: 10px;
    margin-inline-end: 10px;
    text-transform: uppercase;
}

.account-det .acc-feats {
    position: relative;
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

.account-det .acc-feats .item {
    position: relative;
    margin: 20px 0;
    display: flex;
    align-items: center;
    width: 50%;
    font-size: 13px;
}

.account-det .acc-feats .item .icon {
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 15px;
    font-size: 20px;
    color: var(--main-color);
}

.account-det .price-side {
    position: sticky;
    top: 100px;
}

.account-det .price-card {
    position: relative;
    padding: 0 50px 40px;
    background-color: #001821;
    border: 1px solid rgba(112, 78, 231, 0.2);
    border-radius: 15px;
    z-index: 20;
    margin-top: 45px;
}

.account-det .price-card::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to top, #16c0e5, transparent);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.account-det .price-card .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.5s ease;
}

.account-det .price-card .user-account {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #171e2c;
    border: 1px solid rgba(22, 192, 229, 0.2);
    border-radius: 50px;
    margin-top: -45px;
    margin-bottom: 20px;
}

.account-det .price-card .user-account .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    overflow: hidden;
    margin-inline-end: 20px;
    flex-shrink: 0;
}

.account-det .price-card .user-account small {
    font-size: 9px;
    opacity: 0.6;
}

.account-det .price-card .user-account .rate {
    position: relative;
    display: flex;
    margin-top: 10px;
}

.account-det .price-card .user-account .rate .stars {
    font-size: 11px;
    color: var(--main-color);
    margin-inline-end: 15px;
}

.account-det .price-card .user-account .rate .rate-lnk {
    font-size: 10px;
    text-decoration: underline;
}

.account-det .con-link {
    position: relative;
    padding: 15px 25px;
    background-color: var(--main-color);
    font-size: 13px;
    border-radius: 10px;
    margin: 30px auto 0;
    display: block;
    text-align: center;
}

.account-det .list-content {
    position: relative;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(22, 192, 229, 0.3333333333);
}

.account-det .list-content .check-list {
    margin-top: 20px;
}

.account-det .list-content .check-list li {
    font-size: 12px;
    margin: 15px 0;
}

.account-det .list-content .check-list li .icon {
    margin-inline-end: 10px;
}

/* --------------- order-complete page --------------- */
.order-complete {
    position: relative;
    padding: 100px 0;
}

.order-complete .info-card {
    position: relative;
    padding: 50px;
    background-color: #001821;
    border: 1px solid rgba(22, 192, 229, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
}

.order-complete .info-card .delevery-box {
    position: absolute;
    inset-inline-end: 50px;
    top: 30px;
    background-color: rgba(22, 192, 229, 0.0666666667);
    padding: 15px 30px;
    border-radius: 15px;
}

.order-complete .info-card .card-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(22, 192, 229, 0.2);
}

.order-complete .info-card .text {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 15px;
}

.order-complete .info-card .main-img {
    position: relative;
    height: 200px;
    min-height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.order-complete .info-card .inf {
    position: relative;
    padding: 15px;
}

.order-complete .info-card .inf h6 {
    font-size: 14px;
}

.order-complete .info-card .platforms {
    position: relative;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(22, 192, 229, 0.3333333333);
}

.order-complete .info-card .platforms .item {
    position: relative;
    font-size: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: rgba(22, 192, 229, 0.1333333333);
    margin-top: 10px;
    margin-inline-end: 10px;
    text-transform: uppercase;
}

.order-complete .user-account {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 10px 10px 30px;
    background-color: #171e2c;
    border: 1px solid rgba(22, 192, 229, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
}

.order-complete .user-account .avatar {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    margin-inline-end: 20px;
    flex-shrink: 0;
}

.order-complete .user-account small {
    font-size: 9px;
    opacity: 0.6;
}

.order-complete .user-account .rate {
    position: relative;
    display: flex;
    margin-top: 10px;
}

.order-complete .user-account .rate .stars {
    font-size: 11px;
    color: var(--main-color);
    margin-inline-end: 15px;
}

.order-complete .user-account .rate .rate-lnk {
    font-size: 10px;
    text-decoration: underline;
}

.order-complete .main-txt {
    font-size: 12px;
    margin-top: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pagination-wrapper {
    position: relative;
}

.pagination-wrapper .pagination {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    margin: 50px auto 0;
}

.pagination-wrapper .pagination a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #073e4b;
    margin: 5px;
}

.pagination-wrapper .pagination a:hover {
    background-color: #16c0e5;
}

/* --------------- login-pg --------------- */
.login-pg {
    position: relative;
    padding: 120px 0 100px;
}

.login-pg .login-box {
    position: relative;
    background-image: url(../images/login_bg.png);
    background-size: auto;
    background-repeat: repeat;
    padding: 4vw;
}

.login-pg .login-box .title {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3333333333);
}

.login-pg .login-box .form-group {
    position: relative;
    margin-bottom: 30px;
}

.login-pg .login-box .form-group h6 {
    margin-bottom: 10px;
    font-size: 12px;
}

.login-pg .login-box .form-group .forget-pass {
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 10px;
    color: var(--main-color);
}

.login-pg .login-box .form-control {
    background-color: #171e2c;
    color: #fff;
    border: 0;
    border-radius: 0;
    min-height: 55px;
    box-shadow: none;
    padding: 15px 20px;
}

.login-pg .login-box .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.login-pg .login-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.login-pg .login-box .input-group .iti  {
    width: calc(100% - 60px);
}
.login-pg .login-box .input-group .iti__country-name {
    color: #444;
    font-size: 10px;
    margin: 0 5px;
}
.login-pg .login-box .input-group .iti__flag-box {
    display: block;
    width: 20px;
    position: relative;
    top: 15px;
}


.login-pg .login-box .nav-pills {
    position: relative;
    margin: 0 auto 50px;
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    flex-wrap: nowrap;
    width: 70%;
    top: -20px;
}

.login-pg .login-box .nav-pills .nav-item {
    flex-grow: 1;
}

.login-pg .login-box .nav-pills .nav-item .nav-link {
    background-color: #171e2c;
    color: #fff;
    border-radius: 0;
    font-size: 13px;
    padding: 20px 40px;
    min-width: 200px;
    width: 100%;
    font-weight: bold;
}

.login-pg .login-box .nav-pills .nav-item .nav-link.active {
    background-color: #fff;
    color: #171e2c;
}

.login-pg .login-box .nav-pills .nav-item:first-of-type .nav-link {
    padding-inline-start: 60px;
}

.login-pg .login-box .nav-pills .nav-item:last-of-type .nav-link {
    padding-inline-end: 60px;
}

.form-box .form-group h6 {
    font-size: 11px;
    margin-bottom: 10px;
}

.form-box .form-group .form-control {
    background-color: #171e2c;
    color: #fff;
    border: 0;
    border-radius: 0;
    min-height: 55px;
    box-shadow: none;
    padding: 15px 20px;
    font-size: 12px;
}

.form-box .form-group .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-box .form-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.input-group .form-select {
    max-width: 100px;
    padding-inline-start: 40px !important;
}

.input-group .icon {
    width: 60px;
    height: 55px;
    background-color: #171e2c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.show_hide_password {
    position: relative;
}

.show_hide_password .float_icon {
    position: absolute;
    inset-inline-end: 15px;
    bottom: 20px;
    z-index: 20;
    cursor: pointer;
}

.user_img .avatar-upload {
    position: relative;
    max-width: 200px;
    margin: 50px auto;
}

.user_img .avatar-upload .avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    top: 10px;
}

.user_img .avatar-upload .avatar-edit input {
    display: none;
}

.user_img .avatar-upload .avatar-edit input + label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #fff;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.user_img .avatar-upload .avatar-edit input + label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}

.user_img .avatar-upload .avatar-edit input + label:after {
    content: "\f040";
    font-family: "Font Awesome 6 Pro";
    color: #757575;
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.user_img .avatar-upload .avatar-preview {
    width: 150px;
    height: 150px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #fff;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.user_img .avatar-upload .avatar-preview > div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.user_img.txt_btn .avatar-upload .avatar-edit {
    position: absolute;
    left: 50%;
    right: auto;
    z-index: 1;
    height: -moz-max-content;
    height: max-content;
    bottom: 0;
    top: auto;
    transform: translate(-50%, 20%);
    background-color: #171e2c;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.0666666667);
    font-size: 10px;
    font-weight: bold;
    white-space: nowrap;
    border-radius: 10px;
}

.user_img.txt_btn .avatar-upload .avatar-edit input {
    display: none;
}

.user_img.txt_btn .avatar-upload .avatar-edit input + label {
    width: 100%;
    height: 100%;
    padding: 10px 30px;
    cursor: pointer;
    box-shadow: none;
    border-radius: 10px;
}

.user_img.txt_btn .avatar-upload .avatar-edit input + label:hover {
    background: #171e2c;
    border-color: #171e2c;
}

.user_img.txt_btn .avatar-upload .avatar-edit input + label:after {
    display: none;
}

.user_img.txt_btn .avatar-upload .avatar-preview > div {
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
}

/* ---------------------- */
.upload_img_box {
    display: flex;
    flex-wrap: wrap;
}

.upload_img_box .imagePreview {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    margin-right: 0;
    position: absolute;
    background-color: #fff;
    top: 0;
    left: 0;
}

.upload_img_box .file-upload {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 155px;
}

.upload_img_box .file-upload .old_img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0;
}

.upload_img_box .file-upload .cls {
    position: absolute;
    left: -3px;
    top: -3px;
    z-index: 5;
    cursor: pointer;
    font-size: 15px;
}

.upload_img_box .file-select {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.upload_img_box .file-select.file-select-box {
    width: 100%;
    height: 100%;
    display: inline-block;
    border-radius: 0;
}

.upload_img_box .file-upload-custom-btn {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #171e2c;
    color: #AAB0CF;
    font-size: 30px;
    z-index: 1;
    position: relative;
}

.upload_img_box .file-select-name {
    margin-left: 15px;
}

.upload_img_box .file-select input[type=file] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.upload_img_box .file-upload + .file-upload {
    margin-left: 10px;
}

.upload_img_box .file-select.file-select-box input[type=file] {
    z-index: 2;
}

/* --------------- contact page --------------- */
.contact-pg {
    position: relative;
    padding: 100px 0;
}

.contact-pg .contact {
    position: relative;
    position: relative;
    background-image: url(../images/login_bg.png);
    background-size: auto;
    background-repeat: repeat;
}

.contact-pg .contact::before {
    position: absolute;
    content: "";
    left: 15%;
    top: -1px;
    background-color: #171e2c;
    width: 24%;
    height: 40px;
    -webkit-clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}

.contact-pg .contact::after {
    position: absolute;
    content: "";
    right: 15%;
    bottom: -1px;
    background-color: #171e2c;
    width: 24%;
    height: 40px;
    -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.contact-pg .contact .contact-info {
    position: relative;
    padding: 80px 50px;
    height: 100%;
    border-inline-end: 12px solid #171e2c;
}

.contact-pg .contact .contact-info .title {
    position: relative;
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-pg .contact .contact-info .text {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 30px;
}

.contact-pg .contact .contact-info .contact-list li {
    display: flex;
    margin-top: 20px;
}

.contact-pg .contact .contact-info .contact-list li .icon {
    margin-inline-end: 15px;
}

.contact-pg .contact .contact-info .social-links {
    position: relative;
    margin-top: 40px;
}

.contact-pg .contact .contact-info .social-links a {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2666666667);
    margin-inline-end: 10px;
    font-size: 16px;
}

.contact-pg .contact .contact-form {
    position: relative;
    padding: 80px 50px;
}

.contact-pg .contact .contact-form .title {
    position: relative;
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* --------------- faq --------------- */
.faq {
    position: relative;
    padding: 100px 0;
    z-index: 20;
}

.faq::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #171e2c, transparent, #171e2c);
    z-index: -2;
}

.faq .bg-sec {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -3;
    opacity: 0.3;
}

.faq .accordion .accordion-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background-color: transparent;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.1333333333);
}

.faq .accordion .accordion-item .accordion-body {
    padding: 40px 20px;
    color: #fff;
    opacity: 0.7;
}

.faq .accordion .accordion-item .accordion-button {
    background-color: #001821;
    color: #fff;
}

.faq .accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: #171e2c;
    color: #fff;
    border: 0;
    box-shadow: none;
}

/* --------------- modal --------------- */
.modal {
    background: rgba(255, 255, 255, 0.1333333333);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal .modal-content {
    background-color: #001821;
    color: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;
}

.modal .modal-content .main-title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.modal-country .form-checks {
    position: relative;
    text-align: center;
}

.modal-country .form-checks .form-check {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 13px;
    min-width: 120px;
    margin: 5px 3px;
}

.modal-country .form-checks .form-check .form-check-input {
    margin: 2px 0 0 7px;
    float: none;
    background-color: #000;
}

.modal-country .form-checks .form-check .form-check-label {
    cursor: pointer;
}

.modal-method-choose .method-form {
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2666666667);
    border-radius: 15px;
}

.method-form {
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2666666667);
    border-radius: 15px;
}

.payment-choose {
    position: relative;
    padding: 100px 0;
    background-color: #001821;
    z-index: 20;
}

.payment-choose::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10%;
    background-image: linear-gradient(to top, #171e2c, transparent);
}

/* --------------- profile-pg --------------- */
.profile-pg {
    position: relative;
    padding: 100px 0;
}

.profile-pg .testi-card {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1333333333);
    border-radius: 15px;
    margin-bottom: 10px;
}

.profile-pg .testi-card .stars {
    font-size: 12px;
    margin-bottom: 20px;
}

.profile-pg .testi-card .text {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 15px;
}

.profile-pg .testi-card .qt {
    position: absolute;
    left: 25px;
    top: 25px;
    height: 30px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.profile-pg .testi-card .date {
    position: absolute;
    left: 25px;
    top: 30px;
    font-size: 12px;
}

.profile-pg .sidemenu {
    position: relative;
    padding: 50px 0;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.0666666667);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 20;
}

.profile-pg .sidemenu::after {
    position: absolute;
    content: "";
    left: 0;
    top: 20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #16c0e5;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.6;
}

.profile-pg .sidemenu .user_img .avatar-upload {
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0 auto;
}

.profile-pg .sidemenu .user-info {
    position: relative;
    padding: 20px 0;
    text-align: center;
}

.profile-pg .sidemenu .side-links {
    position: relative;
    text-align: center;
    border-top: 5px solid #171e2c;
    padding-top: 30px;
    display: block;
}

.profile-pg .sidemenu .side-links .nav-item .nav-link {
    font-size: 13px;
    color: #fff;
    background-color: transparent;
    padding: 15px 40px;
    margin: 10px auto;
    border-radius: 12px;
    border: 1px solid transparent;
    min-width: 70%;
}

.profile-pg .sidemenu .side-links .nav-item .nav-link.active {
    background-color: #171e2c;
    border-color: rgba(255, 255, 255, 0.1333333333);
}

.profile-pg .sidemenu .side-links .nav-item .dlt-link {
    background-color: #561919;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 11px;
}

.profile-pg .sidemenu .accordion {
    margin: 20px 20px 0;
}

.profile-pg .sidemenu .accordion .accordion-item {
    margin: 5px 0;
    border-radius: 10px;
    overflow: hidden;
    background-color: transparent;
    border: 0;
}

.profile-pg .sidemenu .accordion .accordion-item .accordion-button {
    background-color: #171e2c !important;
    border-radius: 10px;
    border: 0;
    font-size: 12px;
    padding: 15px;
    color: #fff;
    box-shadow: none;
    outline: none;
}

.profile-pg .sidemenu .accordion .accordion-item .accordion-button::after {
    background-size: 14px;
    filter: brightness(10000%);
    background-position: center;
}

.profile-pg .sidemenu .accordion .accordion-item .accordion-button.single-link::after {
    display: none;
}

.profile-pg .sidemenu .accordion .accordion-item .accordion-button .current {
    color: var(--main-color);
}

.profile-pg .sidemenu .accordion .accordion-item .accordion-body {
    padding: 5px 0;
}

.profile-pg .sidemenu .accordion .accordion-item .accordion-body .sublinks {
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
}

.profile-pg .sidemenu .accordion .accordion-item .accordion-body .sublinks .tab-link,
.profile-pg .sidemenu .accordion .accordion-item .accordion-body .sublinks .link {
    position: relative;
    font-size: 11px;
    margin: 10px 0;
    color: #fff;
    padding: 0;
}

.profile-pg .sidemenu .accordion .accordion-item .accordion-body .sublinks .tab-link.current,
.profile-pg .sidemenu .accordion .accordion-item .accordion-body .sublinks .link.current {
    color: var(--main-color);
}

.profile-pg .tab-content {
    position: relative;
    height: 100%;
}

.profile-pg .tab-content .info-tab .img,
.profile-pg .tab-content .accounts-tab .img {
    position: relative;
    height: 110px;
    width: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 15px;
}

.profile-pg .tab-content .tab-pane {
    height: 100%;
}

.profile-pg .tab-content .tab-wrapper {
    position: relative;
    padding: 3vw;
    border-radius: 15px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.0666666667);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 20;
}

.profile-pg .tab-content .tab-wrapper::after {
    position: absolute;
    content: "";
    left: 10%;
    bottom: 5%;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background-color: #16c0e5;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.2;
}

.profile-pg .tab-content .tab-wrapper .main-title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 18px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-pg .tab-content .tab-wrapper .main-title .icon {
    height: 40px;
}

.profile-pg .tab-content .tab-wrapper .main-title .lnk {
    font-size: 10px;
    color: var(--main-color);
    text-decoration: underline;
    margin-inline-end: 30px;
}

.profile-pg .tab-content .tab-wrapper .form-box .form-control {
    font-size: 12px !important;
    padding: 20px;
    margin-top: 15px;
    background-color: rgba(23, 30, 44, 0.4);
}

.profile-pg .tab-content .tab-wrapper .wallet-tab .wallet {
    position: relative;
    padding: 30px 4vw;
    border-radius: 15px;
    background-color: rgba(23, 30, 44, 0.3333333333);
}

.profile-pg .tab-content .tab-wrapper .wallet-tab .recharge-btn {
    position: relative;
    padding: 30px 4vw;
    border-radius: 15px;
    background-color: rgba(23, 30, 44, 0.3333333333);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-align: center;
}

.profile-pg .tab-content .tab-wrapper .wallet-tab .recharge-btn .icon {
    height: 40px;
    display: block;
    margin: 0 auto 20px;
}

.profile-pg .tab-content .tab-wrapper .wallet-tab .recharge-btn:hover {
    background-color: var(--main-color);
}

.profile-pg .tab-content .tab-wrapper .balance-tab .balance-card {
    position: relative;
    padding: 0 30px 30px;
    border-radius: 15px;
    text-align: center;
    background-color: rgba(23, 30, 44, 0.3333333333);
    margin-top: 60px;
}

.profile-pg .tab-content .tab-wrapper .balance-tab .balance-card .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 20px;
    background-color: #001821;
    transform: translateY(-50%);
    outline: 10px solid #262D3A;
}

.profile-pg .tab-content .tab-wrapper .balance-tab .balance-card .cards .item {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    transform: scale(0.9);
}

.profile-pg .tab-content .tab-wrapper .balance-tab .balance-card .cards .item small {
    font-size: 10px;
    opacity: 0.5;
    margin-bottom: 5px;
}

.profile-pg .tab-content .tab-wrapper .balance-tab .balance-card .cards .item.main-item {
    transform: scale(1.2);
}

.profile-pg .tab-content .tab-wrapper .balance-tab .balance-card .cards .item.orange-item h4 {
    color: #EBB514;
}

.profile-pg .tab-content .tab-wrapper .balance-tab .balance-card .cards .item.green-item h4 {
    color: #01AF05;
}

.profile-pg .tab-content .tab-wrapper .balance-tab .disbu-method .method-card {
    position: relative;
    padding: 30px;
    border-radius: 15px;
    background-color: rgba(23, 30, 44, 0.3333333333);
}

.profile-pg .tab-content .tab-wrapper .balance-tab .disbu-method .method-card .info-items .item {
    position: relative;
    font-size: 13px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-pg .tab-content .tab-wrapper .balance-tab .disbu-method .method-card .info-items .item::before {
    position: absolute;
    content: "";
    left: 25%;
    top: 50%;
    width: 50%;
    border-top: 1px dashed rgba(255, 255, 255, 0.1333333333);
}

.profile-pg .tab-content .tab-wrapper .balance-tab .disbu-method .method-card .info-items .item small {
    font-size: 11px;
    opacity: 0.6;
}

.profile-pg .tab-content .tab-wrapper .url-imgs {
    position: relative;
}

.profile-pg .tab-content .tab-wrapper .url-imgs .add-link {
    font-size: 10px;
    text-decoration: underline;
}

#accounts-tab .filter {
    padding: 15px 15px 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1333333333);
    margin-bottom: 20px;
}

#accounts-tab .filter .form-select {
    font-size: 12px;
    min-height: 45px;
}

#accounts-tab .filter .bttn {
    padding: 13px 40px;
    font-size: 12px;
}

#accounts-tab .balance-card {
    position: relative;
    padding: 0 30px 30px;
    border-radius: 15px;
    text-align: center;
    background-color: rgba(23, 30, 44, 0.3333333333);
    margin-top: 50px;
    margin-bottom: 50px;
}

#accounts-tab .balance-card .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 20px;
    background-color: #001821;
    transform: translateY(-50%);
    outline: 10px solid #262D3A;
}

#accounts-tab .balance-card .cards .item {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    transform: scale(0.9);
}

#accounts-tab .balance-card .cards .item small {
    font-size: 10px;
    opacity: 0.5;
    margin-bottom: 5px;
}

#accounts-tab .balance-card .cards .item.main-item {
    transform: scale(1.2);
}

#accounts-tab .balance-card .cards .item.orange-item h4 {
    color: #EBB514;
}

#accounts-tab .balance-card .cards .item.green-item h4 {
    color: #01AF05;
}

.accounts-tab .account-card .info {
    -webkit-backdrop-filter: unset;
    backdrop-filter: unset;
}

.accounts-tab .account-card .info .bg {
    top: 10px;
    height: calc(100% - 10px);
}

.table th,
.table td {
    background-color: #182030;
    color: #fff;
    padding: 15px 20px;
    font-size: 11px;
    border: 0;
    white-space: nowrap;
    vertical-align: middle;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.table th {
    background-color: #001821;
    color: #dbfdfd;
    border-radius: 0;
}

.table .form-control {
    font-size: 10px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: none;
}

.table .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.2666666667);
}

.table .form-control::placeholder {
    color: rgba(255, 255, 255, 0.2666666667);
}

.table select.form-control {
    background-color: #182030;
}

.table .dropdown .dropdown-toggle {
    color: #fff;
}

.table .dropdown .dropdown-toggle::after {
    display: none;
}

.order-table .table th,
.order-table .table td {
    padding: 15px 15px;
    font-size: 10px;
}

.daterangepicker {
    background-color: #253B4A;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.daterangepicker .calendar-table {
    background-color: #253B4A;
    border: 0;
}

.daterangepicker td.in-range {
    background-color: rgba(255, 255, 255, 0.1333333333);
    color: var(--main-color);
}

.daterangepicker td.active {
    background-color: var(--main-color);
    color: #fff;
}

.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
    background-color: #253B4A;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
    color: #fff;
    border-color: #fff;
}

.daterangepicker .drp-buttons {
    border-color: rgba(255, 255, 255, 0.1333333333);
}

.boxes-check .form-check {
    padding: 0;
    margin: 5px;
}

.boxes-check .form-check .form-check-input {
    display: none;
}

.boxes-check .form-check .form-check-label {
    font-size: 13px;
    border: 1px solid rgba(22, 192, 229, 0.2);
    padding: 14px;
    border-radius: 10px;
    min-width: 150px;
    text-align: center;
    cursor: pointer;
}

.boxes-check .form-check .form-check-label .text {
    font-size: 12px;
}

.boxes-check .form-check .form-check-label .icon {
    height: 30px;
    margin-bottom: 10px;
}

.boxes-check .form-check .form-check-input:checked ~ .form-check-label {
    background-color: var(--main-color);
}

.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

/* --------------- order-pg --------------- */
.order-pg {
    position: relative;
    padding: 100px 0;
}

.order-pg .card-item {
    position: relative;
    padding: 3vw;
    border-radius: 15px;
    height: calc(100% - 24px);
    margin-bottom: 24px;
    background-color: rgba(255, 255, 255, 0.0666666667);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 20;
}

.order-pg .card-item::after {
    position: absolute;
    content: "";
    left: 10%;
    bottom: 5%;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background-color: #16c0e5;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.4;
}

.order-pg .card-item .main-title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.order-pg .pill-item {
    position: relative;
}

.order-pg .pill-item .bttn {
    position: absolute;
    inset-inline-end: 45px;
    top: 40px;
    font-size: 10px;
    padding: 15px 20px;
    z-index: 20;
}

.order-pg .pill-item .bill-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.order-pg .pill-item .bill-list li strong {
    color: var(--main-color);
}

.order-pg .steps {
    position: relative;
    display: flex;
}

.order-pg .steps .item {
    position: relative;
    padding: 20px 30px;
    text-align: center;
    transition: all 0.5s ease;
    z-index: 20;
    border: 1px solid #16c0e5;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 20%;
}

.order-pg .steps .item.disabled {
    opacity: 0.5;
    filter: grayscale(1);
}

.order-pg .steps .item .icon {
    position: relative;
    height: 25px;
    margin-bottom: 15px;
}

.order-pg .steps .item h6 {
    font-size: 10px;
}

.order-pg .steps .item .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.order-pg .steps .arrow {
    margin: 0 15px;
    flex-shrink: 0;
}

.order-pg .steps .arrow img {
    width: 30px;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

/* --------------- chat --------------- */
.new_chat {
    display: flex;
    padding: 10px;
    height: 765px;
    position: relative;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.0666666667);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 20;
}

.new_chat::after {
    position: absolute;
    content: "";
    right: 10%;
    bottom: 5%;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background-color: #16c0e5;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.2;
}

.new_chat .search_card .form-group {
    position: relative;
}

.new_chat .search_card .form-group .form-control {
    min-height: 40px;
    border-radius: 15px;
}

.new_chat .search_card .form-group button {
    position: absolute;
    left: 15px;
    top: 18px;
    border: 0;
    background-color: transparent;
    color: #fff;
}

.new_chat .users {
    width: 30%;
    padding: 15px;
    /* background-color: #fff; */
    border-radius: 10px;
    flex-shrink: 0;
    margin-inline-end: 15px;
}

.new_chat .users * {
    color: #fff;
}

.new_chat .users .title .dropdown .dropdown-toggle::after {
    display: none;
}

.new_chat .users .title .dropdown .dropdown-item {
    font-size: 11px;
}

.new_chat .dlt-btn {
    font-size: 10px;
    margin-top: 40px;
    text-decoration: underline;
}

.new_chat .dlt-btn.disapled {
    pointer-events: none;
    opacity: 0.4;
}

.new_chat .users .users_cards {
    max-height: 420px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-inline-start: 20px;
}

.new_chat .users .users_cards::-webkit-scrollbar {
    height: 0;
    width: 0;
    background: transparent;
}

.new_chat .users .user_card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 7px;
    border-radius: 30px;
    margin: 10px 0;
}

.new_chat .users .user_card .form-check {
    position: absolute;
    right: -35px;
    top: 22px;
    padding: 0 15px;
}

.new_chat .users .user_card .form-check .form-check-input {
    margin: 0;
    float: none;
    border-radius: 8px;
    background-color: #171e2c;
    border-color: #171e2c;
    box-shadow: none;
    width: 15px;
    height: 15px;
    border-radius: 50% !important;
}

.new_chat .users .user_card:hover,
.new_chat .users .user_card.active {
    /* background-color: #f5f5f5; */
    background-color: rgba(255, 255, 255, 0.1333333333);
}

.new_chat .users .user_card .user_img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-inline-end: 15px;
}

.new_chat .users .user_card .user_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.new_chat .users .user_card .inf h6 {
    font-size: 12px;
    margin-bottom: 0 !important;
}

.new_chat .users .user_card .inf small {
    font-size: 8px;
    color: #999;
}

/* ----------- */
.new_chat .chat_content {
    padding: 20px;
    border-radius: 15px;
    background-color: #001821;
    /* flex-grow: 1; */
    width: calc(70% - 15px);
    margin-top: 72px;
}

.new_chat .chat-checks {
    position: absolute;
    left: 15px;
    top: 20px;
    background-color: #262D3A;
    border-radius: 30px;
    padding: 5px;
}

.new_chat .chat-checks .form-check {
    padding: 0;
    margin: 0;
}

.new_chat .chat-checks .form-check .form-check-input {
    display: none;
}

.new_chat .chat-checks .form-check .form-check-label {
    font-size: 12px;
    padding: 10px 20px;
    background-color: #262D3A;
    border-radius: 30px;
    cursor: pointer;
}

.new_chat .chat-checks .form-check .form-check-input:checked ~ .form-check-label {
    background-color: #16c0e5;
}

.new_chat .chat_content .dropdown .dropdown-toggle {
    color: #fff;
}

.new_chat .chat_content .dropdown .dropdown-toggle::after {
    display: none;
}

.new_chat .chat_content .dropdown .dropdown-menu {
    background-color: #fff;
}

.new_chat .chat_content .dropdown .dropdown-menu .dropdown-item {
    font-size: 11px;
    color: #001821;
}

.new_chat .chat_content .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #f0f0f0;
    color: #001821;
}

.new_chat .chat_content .user_info {
    border-bottom: 1px solid rgba(153, 153, 153, 0.2666666667);
}

.new_chat .chat_content .user_info .user_card {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 30px;
    margin: 10px 0;
}

.new_chat .chat_content .user_info .user_card .user_img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-inline-end: 15px;
}

.new_chat .chat_content .user_info .user_card .user_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.new_chat .chat_content .user_info .user_card .inf small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
}

.new_chat .chat_messages {
    height: 490px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 15px;
}

.new_chat .chat_messages .ms_time {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.2);
    float: right;
}

.new_chat .chat_messages::-webkit-scrollbar {
    height: 0;
    width: 0;
    background: transparent;
}

.new_chat .chat_messages .send_item {
    margin-bottom: 20px;
}

.new_chat .chat_messages .send_item .text {
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #171e2c;
    font-size: 11px;
    width: -moz-max-content;
    width: max-content;
    max-width: 70%;
    font-weight: 500;
}

.new_chat .chat_messages .rsev_item {
    direction: ltr;
    margin-bottom: 20px;
}

.new_chat .chat_messages .rsev_item .ms_time {
    float: left;
    font-size: 8px;
}

.new_chat .chat_messages .rsev_item .text {
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #171e2c;
    font-size: 11px;
    width: -moz-max-content;
    width: max-content;
    max-width: 70%;
    font-weight: 500;
}

.new_chat .ms_imgs {
    display: flex;
    flex-wrap: wrap;
}

.new_chat .ms_imgs .ms_img {
    width: 220px;
    height: 180px;
    border-radius: 10px;
    margin-inline-end: 10px;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 5px;
}

.new_chat .rsev_item .ms_file {
    text-align: end;
    background-color: #171e2c;
    border-radius: 5px;
    padding: 5px 15px;
    display: block;
    width: -moz-max-content;
    width: max-content;
    font-size: 11px;
}

.new_chat .add-comment {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.new_chat .add-comment .form-group {
    position: relative;
}

.new_chat .add-comment .form-group textarea {
    width: 100%;
    height: 55px;
    resize: none;
    background-color: transparent;
    border-radius: 15px;
    margin-top: 0;
    padding: 15px 15px 10px 15px;
    padding-inline-end: 100px;
    font-size: 15px;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.new_chat .add-comment .form-group textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.3333333333);
}

.new_chat .add-comment .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3333333333);
}

.new_chat .add-comment .form-group .send {
    position: absolute;
    top: 10px;
    left: 10px;
    border: 1px solid transparent;
    color: #888;
    background-color: transparent;
    border-radius: 5px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: #f5f5f5;
}

.new_chat .add-comment .form-group .send:hover {
    background-color: var(--main-color);
    color: #fff;
}

.new_chat .add-comment .form-group label {
    position: absolute;
    top: 10px;
    left: 55px;
    border: 1px solid transparent;
    color: #888;
    background-color: transparent;
    border-radius: 5px;
    width: 35px;
    text-align: center;
    height: 35px;
    line-height: 35px;
    background-color: #f5f5f5;
}

.new_chat .add-comment .form-group label input {
    position: absolute;
    opacity: 0;
    display: none;
}

.new_chat .add-comment .form-group label:hover {
    background-color: var(--main-color);
    color: #fff;
}

.new_chat .chat_content {
    position: relative;
}


@media (max-width: 768px) {
    /*.new_chat {*/
    /*    padding: 0;*/
    /*}*/

    .new_chat .users .user_card .user_img {
        width: 45px;
        height: 45px;
        margin-inline-end: 0;
    }

    .new_chat .users .user_card .inf {
        /*display: none;*/
    }

    .new_chat .users {
        /*width: 85px;*/
        margin-inline-end: 0;
    }

    .new_chat .users h4 {
        font-size: 13px;
        text-align: center;
    }

    .new_chat .chat_content {
        width: calc(100% - 85px);
    }

    .new_chat .chat_messages .send_item .text,
    .new_chat .chat_messages .rsev_item .text {
        max-width: 100%;
    }

    .new_chat .ms_imgs .ms_img {
        width: 100%;
    }

    .new_chat .add-comment .form-group textarea {
        height: -moz-max-content;
        height: max-content;
    }
    
    #profile-page .new_chat {
        display: block;
        height: max-content !important;
    }
    
    .new_chat .chat_content {
        width: 100% !important;
    }
    
    .new_chat .users {
        width: 100%;
    }
    
    .new_chat .users .user_card .inf {
        margin-inline-start: 15px;
    }
    
    .new_chat .users .users_cards {
        max-height: 200px;
    }
    
    .new_chat .chat_messages {
        height: 300px;
    }
    
    .login-pg {
        overflow: hidden;
    }
    
    .login-pg .login-box .nav-pills {
        margin: 0;
        width: 100%;
    }
    
    .login-pg .login-box .nav-pills .nav-item .nav-link {
        font-size: 12px;
        padding: 15px 30px;
        width: 100%;
        min-width: 100%;
    }
    
    .wallet-transaction,
    .method-form{
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .navbar .navbar-nav {
        margin: 0 !important;
    }
    
    .navbar .navbar-nav .nav-link {
        padding: 12px 6px;
    }
    
    .profile-pg .tab-content {
        margin-top: 30px;
    }
    
    .order-complete .info-card {
        padding: 15px;
    }
    
    .order-complete .form-box .butn {
        position: relative;
        padding: 18px 15px;
        top: 4px;
    }
    
    .account-det {
        overflow: hidden;
    }
    
    .account-det .info-card {
        padding: 15px;
    }
    
    .account-det .info-card .top-info .float-icons {
        position: relative;
        margin-top: 10px;
    }
    
    .order-complete .info-card .delevery-box {
        right: auto;
        left: 0;
        top: 0;
        padding: 8px 20px;
    }
    
    .order-complete .info-card .delevery-box p {
        font-size: 9px;
    }
    
    .order-complete .user-account .avatar {
        width: 40px;
        height: 40px;
    }
    
    .account-det .price-card .user-account .avatar {
        width: 50px;
        height: 50px;
    }
    
    .order-pg .steps {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .order-pg .steps .arrow {
        display: none;
    }
    
    .order-pg .steps .item {
        width: calc(50% - 15px);
        margin: 0;
    }
    
    .order-pg .pill-item .bttn {
        inset-inline-end: 10px;
        top: 7px;
    }
    
    .new_chat .add-comment .form-group .send,
    .new_chat .add-comment .form-group label{
        top: 18px;
    }
    
    .rateModal .modal-content {
        padding: 0 !important;
    }
    
    .butn {
        padding: 10px;
    }
    
    .mx-3 {
        margin-left: 0.3rem !important;
        margin-right: 0.3rem !important;
    }
    
    .profile-pg .tab-content .tab-wrapper .main-title {
        font-size: 13px;
        display: block;
    }
    
    .profile-pg .tab-content .tab-wrapper .main-title .icon {
        height: 30px;
    }
    
    

    
}

/* --------------- notifaction-pg --------------- */
.notifaction-pg {
    position: relative;
    padding: 100px 0;
}

.notifaction-pg .notifaction-card {
    position: relative;
    background-image: url(../images/login_bg.png);
    background-size: auto;
    background-repeat: repeat;
    padding: 30px 40px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.notifaction-pg .notifaction-card .date {
    font-size: 11px;
    margin: 15px 0;
}

.notifaction-pg .notifaction-card .icon {
    position: absolute;
    inset-inline-end: 40px;
    top: 25px;
    margin-bottom: 10px;
    font-size: 30px;
    z-index: 10;
}

.notifaction-pg .notifaction-card .card-title {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.notifaction-pg .notifaction-card .text {
    position: relative;
    font-size: 13px;
    margin-bottom: 10px;
}

.notifaction-pg .notifaction-card.unread .icon {
    color: #EBB514;
    opacity: 1;
}

/* --------------- pricing-table --------------- */
.pricing-table {
    position: relative;
}

.pricing-table .item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}

/* --------------- to_top --------------- */
.user-rating-section .user-photo {
    height: 150px;
    object-fit: cover;
}

.modal .btn-close {
    filter: invert(100%) sepia(13%) saturate(7475%) hue-rotate(184deg) brightness(124%) contrast(99%);
}

/* ======== */
@media screen and (max-width: 991px) {

    .navbar-container {
        position: relative;
        background-color: #000;
    }

    .navbar-container::before,
    .navbar-container::after {
        display: none;
    }

    .navbar-container .top-navbar .content {
        height: -moz-max-content;
        height: max-content;
    }

    .navbar-container .top-navbar .brand {
        height: 110px;
        background-color: transparent;
        border: 0;
        margin: 0;
    }

    .navbar-container .top-navbar .social-links {
        display: none;
    }

    .navbar-container .navbar {
        padding: 20px 0;
    }

    .navbar-container .navbar .social-links a {
        margin-inline-end: 15px;
    }

    header .slide-card {
        padding: 100px 15px;
        height: 450px;
    }
    
    header .header-slider {
        height: 600px;
    }
    
    header .swiper-pagination {
        bottom: 10px !important;
    }
    
    .video-sec .vision-item::after {
        display: none;
    }
    
    .video-sec .col-lg-3 {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    header .slide-card .info h1 {
        font-size: 25px;
        line-height: 1.3;
    }

    .features .vision-item {
        margin-top: 30px !important;
    }

    .features .row .col-lg-4 {
        margin-top: 0 !important;
    }

    .features .more-link {
        margin-top: 60px;
        text-align: center;
    }

    footer::before,
    footer::after {
        height: 2000px;
        width: 2000px;
        left: calc(-1000px + 50vw);
        right: auto;
    }

    header .slide-card .info h1 span {
        font-size: 45px;
        margin-bottom: 5px;
    }
    
    header .slide-card .info .text {
        font-size: 12px;
    }

    .sections-st2 {
        padding-bottom: 120px;
    }

    .sections-st2 .swiper-button-prev, .sections-st2 .swiper-button-next {
        bottom: 50px;
    }

    .sections-st2 .swiper-button-prev, .sections-st2 .swiper-rtl .swiper-button-next {
        left: calc(50% - 55px);
        right: auto;
    }

    .sections-st2 .swiper-button-next, .sections-st2 .swiper-rtl .swiper-button-prev {
        right: calc(50% - 55px);
        left: auto;
    }

    .process .col-lg-1 {
        display: none;
    }

    .featured-accounts .filter .form-group {
        margin-bottom: 15px;
    }

    .account-det .acc-feats .item {
        width: 100%;
        margin: 7px 0;
    }

    .account-det .list-content .check-list li {
        display: flex;
    }

    .account-det .price-side {
        margin-top: 80px;
    }
    
    
    .video-sec {
        overflow: hidden;
    }
    
    .pay_methods {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .bttn {
        padding: 10px 15px;
        font-size: 11px;
    }
    
    #accounts-tab .filter .bttn {
        margin-bottom: 15px;
    }
    
    footer .footer-content .info {
        border: 0 !important;
    }
    
    .new_chat .users {
        padding: 0;
    }
    
    .new_chat .chat-checks {
        position: static;
        text-align: center;
        margin-bottom: 10px;
        /*display: none;*/
        display: block;
        width: max-content;
        margin: 0 auto 20px;
    }
    
    .new_chat .chat-checks .form-check .form-check-label {
        font-size: 9px;
        padding: 5px 8px;
    }
    
    .profile-pg {
        padding: 30px 0;
    }
    
    .user_img .avatar-upload .avatar-preview {
        width: 120px;
        height: 120px;
    }
    
    .table .fs-6 {
        font-size: 11px !important;
    }
    
    .preview-account-btn {
        display: block;
    }
    
    .modal-account-preview .account-det,
    .modal-account-preview .modal-content{
        padding: 0;
    }
    
    .modal-account-preview .account-det .price-card {
        padding: 20px 0;
    }
    
    .account-det .info-card .imgs-slider {
        height: 250px;
    }
    
    .contact-pg .contact .contact-form {
        padding: 50px 20px;
    }
    
    .form-box .form-group .form-control[name="country_code"] {
        padding-inline-start: 40px !important;
    }
    
    .profile-pg .tab-content .tab-wrapper .balance-tab .balance-card .bttns {
        flex-wrap: wrap;
    }
    
    .profile-pg .tab-content .tab-wrapper .balance-tab .balance-card .bttns .butn-presv,
    .profile-pg .tab-content .tab-wrapper .balance-tab .balance-card .bttns .butn-presv .butn{
        width: 100%;
        margin-top: 5px;
    }
    
    .innerheader .info h2 {
        font-size: 25px;
    }
    
    .innerheader {
        padding: 100px 0;
    }
    
    footer .maroof_logo {
        width: 70px;
        margin: 20px auto 0;
    }
    
    .whatsapp_btn_box p {
        display: none;
    }
    
    footer .logos-wrapper .logos a,
    footer .logos-wrapper .logos > img {
        height: 35px;
        width: 50%;
        margin-top: 25px;
    }
    
    .order-complete .info-card .card-title {
        margin-top: 25px;
    }
    
    .section-title h6 {
        margin-bottom: 0;
    }
    
    .section-title h2 {
        font-size: 25px;
    }
    .top-navbar .social-links, .navbar .social-links {
        padding-top: 0;
    }
    
    
    #couponResult  {
        position: absolute;
        top: 27px;
        inset-inline-end: 29%;
    }
    
    .rateModal .btn-close {
        padding: 20px;
    }
    
    .featured-accounts {
        overflow: hidden;
    }
    

    .account-card .img {
        height: 200px;
    }
    .account-card .info {
        padding: 15px;
        padding-top: 60px !important;
    }
    .account-card .info .price {
        /*top: 10px;*/
        left: 10px;
        transform: skewX(-22deg);
    }
    .account-card .info .price .txt {
        font-size: 9px;
    }
    .account-card .info .title {
        margin-bottom: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .account-card .info .text ,
    .account-card .info .text a {
        font-size: 9px;
        display: none ;
    }
    .account-card .info .user .avatar {
        width: 35px;
        height: 35px;
        margin-inline-end: 10px;
    }
    .account-card .info .links .buy-link {
        padding: 8px 10px;
        font-size: 11px;
    }
    .account-card .star-wrapper ,
    .account-card .star-wrapper svg  {
        width: 13px;
        height: 13px;
    }

    
    
    .mobile_tab_bar {
        display: block !important ;
    }

    .progress-wrap ,
    .whatsapp_btn_box {
        bottom: 60px !important ;
    }
}


/* ======= */
html[dir=ltr] {
    @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}

html[dir=ltr] body {
    direction: ltr;
    font-family: "Poppins", sans-serif;
}

.rotate-center {
    animation: rotate-center 100s linear infinite both;
}

.rotate-center.reverse {
    animation: rotate-center 100s linear infinite both reverse;
}

@keyframes rotate-center {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*# sourceMappingURL=style.css.map */


/* -------- toggle btn ---------- */
.toggle-btn .checkbox {
    opacity: 0;
    position: absolute;
}

.toggle-btn .checkbox-label {
    background-color: #000;
    width: 60px;
    height: 35px;
    border-radius: 50px;
    position: relative;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #fff4;
}

.toggle-btn .fa-moon {
    color: #f1c40f;
}

.toggle-btn .fa-sun {
    color: #f39c12;
}

.toggle-btn .checkbox-label .ball {
    background-color: #fff;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 5px;
    top: 5px;
    border-radius: 50%;
    transition: transform 0.2s linear;
}

.toggle-btn .checkbox:checked + .checkbox-label .ball {
    transform: translateX(25px);
}


.table-responsive {

}

.table-responsive::-webkit-scrollbar {
    height: 7px;
    width: 10px;
    background: #171e2c;
    border-radius: 7px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #fff3;
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-corner {
    background: #fff3;
    border-radius: 10px;
}

.alert-success {
    background: #a9eaa9;
}


.video-sec {
    position: relative;
}

.video-sec::after {
    position: absolute;
    content: "";
    background-color: #001821;
    width: 100%;
    height: 30%;
    z-index: -1;
    left: 0;
    bottom: 0;
}

.video-sec .video-card {
    /*clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 100% 100%, 85% 100%, 15% 100%, 0 100%, 0% 85%);*/
}

.video-sec .video-card .video-img {
    position: relative;
    height: 375px;
    border-radius: 20px;
    overflow: hidden;
}

.video-sec .video-card .video-img .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-sec .video-card .video-img .float-cont {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.video-sec .video-card .video-img .play-btn {
    position: relative;
    margin: 0 auto 15px;
    font-size: 30px;
    width: 90px;
    height: 90px;
    background-color: #fff3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}


.process .video-card {
    display: none;
}


/*start seller info*/
.seller-header {
    position: relative;
    padding-bottom: 0;
    z-index: 100;
}

.seller-header::after {
    height: 70%;
}

.seller-header::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background-color: #171E2C;
}

.seller-header .main-info-card {
    position: relative;
    z-index: 20;
    padding: 40px;
    border-radius: 20px;
    background-color: #001821;
}

.seller-header .main-info-card .img {
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.seller-header .main-info-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-header .star-wrapper {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.seller-header .star-wrapper .stars {
    color: gold;
    margin-inline-end: 10px;
}

.seller-content-info {
    position: relative;
    padding: 100px 0;
    background-color: #171E2C;
}

.rateModal .btn-close {
    position: relative;
    color: #fff;
}

.rateModal .form-control {
    background-color: transparent;
    border: 1px solid #fff2;
    color: #fff;
}

.rateModal .form-control::placeholder {
    color: #fff5;
}

.stars-content .star-rating {
    display: flex;
    flex-direction: row-reverse;
    font-size: 2em;
    justify-content: center;
    padding: 0 0.2em;
    text-align: center;
    margin: auto;
}

.stars-content .star-rating i {
    margin: 0 5px;
}

.stars-content .star-rating input {
    display: none;
}

.stars-content .star-rating label {
    color: #FFEEC9;
    cursor: pointer;
    opacity: 0.3;
}

.stars-content .star-rating :checked ~ label {
    color: #FFD06A;
    opacity: 1;
}

.stars-content .star-rating label:hover,
.stars-content .star-rating label:hover ~ label {
    color: #FFB820;
    opacity: 1;
}


/* ---------- light theme ---------- */
.light-theme {
    background-color: #fff;
    color: #000;
    font-family: "Alexandria", sans-serif !important;
}
.light-theme .mobile_tab_bar {
    background-color: #fff;
}

.light-theme .innerheader {
    color: #fff;
}

.light-theme .process {
    background-color: #fff;
    color: #000;
}

.light-theme .process .vision-item {
    background-color: #f0f0f0;
    border: 0;
}

.light-theme .featured-accounts::after {
    background: #f5f5f5;
}

.light-theme .featured-accounts {
    background-color: #f5f5f5;
    color: #000;
}

.light-theme .butn {
    background-color: #000;
    color: #fff;
}

.light-theme .butn:hover {
        background-color: var(--main-color);
}

.light-theme .testimonials {
    background-color: #fff;
    color: #000;
}

.light-theme .testimonials .testi-card {
    border-color: #999;
}

.light-theme footer {
    background-color: #fff;
}

.light-theme footer::after {
    background: #001821;
    z-index: 1;
}

.light-theme footer::before {
    z-index: 1;
}

.light-theme footer .logos-wrapper,
.light-theme footer .foot,
.light-theme footer .footer-content {
    position: relative;
    z-index: 20;
    color: #fff;
}

.light-theme .sections-st2 .video {
    display: none;
}

.light-theme .sections-st2::after {
    display: none;
}

.light-theme .sections-st2 {
    background-color: #f5f5f5;
    color: #000;
}

.light-theme .sections-st2 .item {
    color: #fff;
}

.light-theme header .bottom-sec {
    filter: invert(99%) sepia(46%) saturate(138%) hue-rotate(286deg) brightness(114%) contrast(92%);
}

.light-theme .about {
    background-color: #f5f5f5;
}

.light-theme .features .top-sec {
    filter: invert(99%) sepia(46%) saturate(138%) hue-rotate(286deg) brightness(114%) contrast(92%);
}

.light-theme .account-det {
    background-color: #f5f5f5;
}

.light-theme .process {
    padding-top: 100px !important;
}

.light-theme .account-det .info-card {
    background-color: #fff;
}

.light-theme .account-det .price-card .user-account,
.light-theme .account-det .price-card {
    background-color: #fff;
}

.light-theme .pagination-wrapper .pagination a {
    background-color: #fff;
    border: 1px solid #9993;
}

.light-theme .form-select {
    background-color: #fff;
    color: #000;
}

.light-theme .new_chat {
    background-color: #f5f5f5;
    color: #000;
}

.light-theme .form-box .form-group .form-control {
    background-color: #fff;
    color: #000;
}

.light-theme .new_chat .users * {
    color: #000;
}

.light-theme .dropdown .dropdown-menu {
    background-color: #fff;
}

.light-theme .dropdown .dropdown-menu * {
    color: #000;
}

.light-theme .new_chat .chat_content {
    background-color: #fff;
}

.light-theme .profile-pg .sidemenu .accordion .accordion-item .accordion-button {
    background-color: #e4dfdf !important;
    color: #000;
}

.light-theme .profile-pg .sidemenu .accordion .accordion-item .accordion-button::after {
    filter: brightness(0%);
}

.light-theme .new_chat .chat_content .dropdown .dropdown-toggle {
    color: #000;
}

.light-theme .new_chat .chat_messages .rsev_item .text,
.light-theme .new_chat .chat_messages .send_item .text {
    background-color: #f5f5f5;
}

.light-theme .new_chat .rsev_item .ms_file {
    background-color: #f5f5f5;
}

.light-theme .new_chat .add-comment {
    border-color: #9995;
}

.light-theme .new_chat .add-comment .form-group textarea {
    border-color: #9995;
    color: #000;
}

.light-theme .new_chat .chat-checks {
    background-color: #fff;
}

.light-theme .new_chat .chat-checks .form-check .form-check-label {
    background-color: #f5f5f5;
}

.light-theme .login-pg .login-box {
    background: #f5f5f5;
}

.light-theme .login-pg .login-box .form-control {
    background-color: #fff;
    color: #000;
    padding: 15px 30px;
    padding-inline-end: 35px;
}

.light-theme .login-pg .login-box .nav-pills .nav-item .nav-link {
    background-color: #fff;
    color: #000;
}

.light-theme .login-pg .login-box .nav-pills .nav-item .nav-link.active {
    background-color: #001821;
    color: #fff;
}

.light-theme .faq {
    background: #f5f5f5;
}

.light-theme .faq .bg-sec,
.light-theme .faq::after {
    display: none;
}

.light-theme .faq .accordion .accordion-item .accordion-button {
    background-color: #fff;
    color: #000;
}

.light-theme .faq .accordion .accordion-item .accordion-body {
    background-color: #fff;
    color: #000;
}

.light-theme .contact-pg .contact {
    margin-top: 50px;
}

.light-theme .contact-pg .contact::before,
.light-theme .contact-pg .contact::after {
    background-color: #fff;
    z-index: 1;
}

.light-theme .contact-pg .contact {
    background-color: #f5f5f5;
}

.light-theme .contact-pg .contact .contact-form {
    background: #f5f5f5;
}

.light-theme .input-group .icon {
    background-color: #f0f0f0;
}

.light-theme .notifaction-pg .notifaction-card {
    background: #f5f5f5;
}

.light-theme .notifaction-pg .notifaction-card .card-title {
    border-color: #9995;
}

.light-theme .order-complete .info-card {
    background-color: #f5f5f5;
}

.light-theme .order-complete .user-account {
    background-color: #fff;
}

.light-theme .order-pg .card-item {
    background-color: #f5f5f5;
}

.light-theme .payment-choose {
    background-color: #fff;
}

.light-theme .payment-choose::after {
    display: none;
}

.light-theme .method-form {
    background-color: #f5f5f5;
}

.light-theme .profile-pg .sidemenu {
    background-color: #f5f5f5;
}

.light-theme .profile-pg .sidemenu .accordion .accordion-item .accordion-body .sublinks {
    background-color: #fff;
}

.light-theme .profile-pg .sidemenu .accordion .accordion-item .accordion-body .sublinks .tab-link,
.light-theme .profile-pg .sidemenu .accordion .accordion-item .accordion-body .sublinks .link {
    color: #000;
}

.light-theme .profile-pg .sidemenu .accordion .accordion-item .accordion-body .sublinks .tab-link.current,
.light-theme .profile-pg .sidemenu .accordion .accordion-item .accordion-body .sublinks .link.current {
    color: var(--main-color) !important;
}

.light-theme .profile-pg .tab-content .tab-wrapper {
    background-color: #f5f5f5;
}

.light-theme .profile-pg .tab-content .tab-wrapper .form-box .form-control {
    background-color: #fff;
    padding-inline-end: 40px;
}

.light-theme .niceCountryInputMenu * {
    color: #000 !important;
}

.light-theme .niceCountryInputMenuFilter input {
    background-color: #f5f5f5 !important;
    color: #000 !important;
}

.light-theme .niceCountryInputMenuDropdownContent a {
    color: #000 !important;
}

.light-theme .upload_img_box .file-upload-custom-btn {
    background-color: #fff;
}

.light-theme .account-card .add_to_favorites .fa-heart {
    color: #000;
}

.light-theme .dropdown .dropdown-menu .dropdown-item {
    color: #000;
}

.light-theme .video-sec::after {
    background-color: #f5f5f5;
}

.light-theme .modal .modal-content {
    background-color: #f0f0f0;
    color: #000;
}

.light-theme .profile-pg .tab-content .tab-wrapper .balance-tab .balance-card,
.light-theme .profile-pg .tab-content .tab-wrapper .balance-tab .disbu-method .method-card{
    background-color: #fff;
    color: #000;
}

.light-theme .profile-pg .tab-content .tab-wrapper .main-title .icon,
.light-theme .boxes-check .form-check .form-check-label .icon img {
    filter: brightness(0.3);
}

.light-theme .modal .modal-content .main-title {
    border-color: #9995;
}

.light-theme .order-table .table th, 
.light-theme .order-table .table td ,
.light-theme .wallet-tab .table th ,
.light-theme .wallet-tab  .table td  {
    background-color: #fff;
    color: #000;
}


.light-theme .table-responsive::-webkit-scrollbar {
    height: 7px;
    width: 10px;
    background: #f0f0f0;
    border-radius: 7px;
}

.light-theme .table-responsive::-webkit-scrollbar-thumb {
    background: #9993;
    border-radius: 10px;
}

.light-theme .table-responsive::-webkit-scrollbar-corner {
    background: #9993;
    border-radius: 10px;
}

.light-theme .swiper-button-prev,
.light-theme .swiper-button-next {
    border: 1px solid #999;
}

.light-theme .swiper-button-prev::after, 
.light-theme .swiper-button-next::after {
    color: #999;
    font-size: 16px;
}

.light-theme .table .dropdown .dropdown-toggle {
    color: #000;
}

.light-theme .bttn:hover {
    background-color: #001821;
    color: var(--main-color);
}

.light-theme .stars-content .star-rating label {
    color: #e9b033;
    
}
.light-theme .rateModal .form-control {
    border-color: #ccc ;
}

.light-theme .modal .btn-close {
    filter: unset;
}


/*end seller info*/


/*---------- 06/02/2025 ---------*/
.form-control.is-invalid {
    background-image: none;
}


@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .modal-xl {
        max-width: 1320px;
    }
}

.modal-account-preview .account-det {
    pointer-events: none;
}

.modal-account-preview .account-det .price-card {
    padding: 0 20px 40px;
}

.modal-account-preview .account-det .price-card .user-account .rate .stars {
    font-size: 9px;
}

.modal-account-preview .account-det .price-card .user-account .rate .rate-lnk {
    font-size: 8px;
}


@media (max-width: 991px) {
    .payment-choose::after {
        display: none;
    }
}



