@import url("https://fonts.googleapis.com/css2?family=Jost:wght@500;600&family=Montserrat&display=swap");

.scrollToTop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    z-index: 9;
    bottom: 30px;
    right: 30px;
    font-size: 18px;
    position: fixed;
    border-radius: 5px;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
    display: block;
    text-align: center;
    background: #FF6A00;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scrollToTop:hover {
    color: #fff;
}

.scrollToTop.active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    animation: bounceInDown 2s;
    -webkit-animation: bounceInDown 2s;
    -moz-animation: bounceInDown 2s;
}

.scrollToTop img {
    width: 100%;
}

.video__button {
    width: 70px;
    height: 70px;
    z-index: 1;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #FF6A00;
    line-height: 75px;
    text-align: center;
}

.video__button img {
    width: 100%;
}

.video__button i {
    font-size: 24px;
    color: #fff;
}

.video__button::before,
.video__button::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 74px;
    background: #FF6A00;
    opacity: 0.15;
    z-index: -10;
}

.video__button::before {
    z-index: -10;
    -webkit-animation: inner-ripple 2000ms linear infinite;
    -moz-animation: inner-ripple 2000ms linear infinite;
    animation: inner-ripple 2000ms linear infinite;
}

.video__button::after {
    z-index: -10;
    -webkit-animation: outer-ripple 2000ms linear infinite;
    -moz-animation: outer-ripple 2000ms linear infinite;
    animation: outer-ripple 2000ms linear infinite;
}

.cmn--btn {
    color: #fff;
    border-radius: 5px;
    line-height: 24px;
    font-weight: 500;
    padding: 14px 30px;
    background: #FF6A00;
    border: 1px solid rgba(255, 106, 0, 0.2);
    text-transform: uppercase;
    font-size: 16px;
    overflow: hidden;
    position: relative;
    display: inline-flex;
    align-items: center;
    font-family: "Jost", sans-serif;
    justify-content: center;
    align-items: center;
}

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

.cmn--btn.btn--sm {
    padding: 10px 20px 8px;
}

.cmn--btn.btn--md {
    padding: 10px 25px;
}

.cmn--btn.btn--lg {
    padding: 13px 35px;
}

.cmn--btn.btn--block {
    padding: 10px 25px;
    display: block;
}

.cmn--btn i:last-child {
    margin-left: 5px;
}

.cmn--btn i:first-child {
    margin-right: 5px;
}

.btn__grp {
    margin: -5px;
}

.btn__grp .cmn--btn {
    margin: 5px;
}

.btn__grp .cmn--btn:nth-child(even) {
    background: transparent;
}

.btn__grp .cmn--btn:nth-child(even):hover {
    background: #FF6A00;
}

@keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    80% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
    }

    100% {
        transform: scale(3.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(3.5);
        -moz-transform: scale(3.5);
        -ms-transform: scale(3.5);
        -o-transform: scale(3.5);
    }
}

@keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #93b4ca;
    line-height: 1.6;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    background: #0a1227;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    color: #fff;
    font-family: "Jost", sans-serif;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #fff;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: #FF6A00;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
    line-height: 46px;
    margin-top: -16px;
}

h3 {
    font-size: 28px;
    line-height: 38px;
    margin-top: -14px;
}

h4 {
    font-size: 24px;
    line-height: 28px;
    margin-top: -9px;
}

h5 {
    font-size: 20px;
    line-height: 26px;
    margin-top: -9px;
    font-weight: 600;
}

h6 {
    font-size: 18px;
    margin-top: -7px;
    font-weight: 500;
}

p {
    margin-top: -12px;
}

p:last-child {
    margin-bottom: -7px !important;
}

p a {
    color: #FF6A00;
}

p a:hover {
    color: #FF6A00;
}

@media (max-width: 575px) {
    p {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 80px;
    }

    h2 {
        font-size: 54px;
        line-height: 64px;
        margin-top: -20px;
    }

    h3 {
        font-size: 36px;
        line-height: 46px;
        margin-top: -16px;
    }

    h4 {
        font-size: 28px;
        line-height: 38px;
        margin-top: -14px;
    }

    h5 {
        font-size: 24px;
        line-height: 28px;
        margin-top: -9px;
    }

    h6 {
        font-size: 20px;
        line-height: 26px;
        margin-top: -9px;
    }
}

a {
    display: inline-block;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
    padding: 5px 0;
}

.bg_img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.right_center {
    background-position: right center;
}

.left_center {
    background-position: left center;
}

.bottom_center {
    background-position: bottom center;
}

.bottom_left {
    background-position: bottom left;
}

.bottom_right {
    background-position: bottom right;
}

.top_center {
    background-position: top center;
}

.top_left {
    background-position: top left;
}

.top_right {
    background-position: top right;
}

.bg_contain {
    background-size: contain;
}

.bg_fixed {
    background-attachment: fixed;
}

.bg--overlay::before,
.section__category::before {
    position: absolute;
    content: '';
}

.footer-links,
.footer-links li,
.social-icons,
.header-wrapper,
.header-wrapper .right-area,
.menu,
.header-top .header-top-area,
.header-top .header-top-area .social,
.testimonial-item .testimonial-content .testimonial-header,
.contact__item,
.profile-wrapper,
.dashboard__item .dashboard__header,
.dashboard__item,
.deposit-item,
.deposit-preview,
.message__chatbox__header,
.reply-item,
.post__item .post__content .meta__date,
.post__share,
.widget.widget__tags ul,
.widget__post,
.post__tag {
    display: flex;
    flex-wrap: wrap;
}

.pt-80 {
    padding-top: 80px;
}

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

.pt-60 {
    padding-top: 40px;
}

.pb-60 {
    padding-bottom: 40px;
}

.pt-120 {
    padding-top: 80px;
}

.pb-120 {
    padding-bottom: 80px;
}

@media (min-width: 992px) {
    .pt-120 {
        padding-top: 120px;
    }

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

    .pt-60 {
        padding-top: 60px;
    }

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

/*Section Header*/
.mb-30-none {
    margin-bottom: -30px !important;
}

.mb-40-none {
    margin-bottom: -40px !important;
}

*::selection {
    background-color: #FF6A00;
    color: #fff;
}

.mb-30 {
    margin-bottom: 30px;
}

.bg--overlay {
    position: relative;
}

.bg--overlay::before {
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(15, 25, 50, 0.8);
}

.mb--50 {
    margin-bottom: -50px;
}

.mb-40 {
    margin-bottom: 40px;
}

a {
    text-decoration: none;
}

strong,
b {
    font-family: "Jost", sans-serif;
}

.rtl {
    direction: rtl;
}

.ltr {
    direction: ltr;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: rgba(15, 25, 50, 0.7);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    visibility: hidden;
    opacity: 0;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.section__header {
    margin: 0 0 40px;
    max-width: 620px;
    position: relative;
    z-index: 1;
}

.section__header .section__title {
    margin-bottom: 18px;
}

.section__header .section__title:last-child {
    margin-bottom: -19px;
}

@media (min-width: 768px) {
    .section__header .section__title {
        margin-bottom: 18px;
    }
}

.section__header p i {
    color: #FF6A00;
}

@media (min-width: 768px) {
    .section__header {
        margin-bottom: 60px;
    }

    .section__header.mb-low {
        margin-bottom: 45px;
    }
}

.section__header.text-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.section__category {
    display: inline-block;
    padding: 3px 15px;
    background: #FF6A00;
    margin-bottom: 30px;
    font-family: "Jost", sans-serif;
    color: #fff;
    text-transform: capitalize;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.section__category::before {
    top: calc(100% - 5px);
    right: 0;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
    background: #FF6A00;
    width: 12px;
    height: 17px;
}

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

.select-bar .current {
    display: block;
    margin-top: 2px;
}

.select-bar .list {
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
}

.select-bar .list::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
}

.select-bar .list::-webkit-scrollbar-thumb {
    background-color: #000000;
}

.select-bar .list::-webkit-scrollbar-track {
    -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.select-bar .list li {
    padding: 0 20px;
}

.langSel {
    background-color: transparent;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    color: #fff;
    margin-right: 5px;
    font-size: 14px;
}

@media (max-width: 380px) {
    .langSel {
        padding: 8px 10px;
        font-size: 12px;
    }
}

.langSel option {
    color: #777;
}

.bg--body {
    background-color: #0a1227 !important;
}

.bg--section {
    background-color: #0f1932 !important;
}

.btn--base,
.badge--base,
.bg--base {
    background-color: #FF6A00 !important;
}

.btn--primary,
.badge--primary,
.bg--primary {
    background-color: #7367f0 !important;
}

.btn--secondary .badge--secondary .bg--secondary {
    background-color: #868e96 !important;
}

.btn--success,
.badge--success,
.bg--success {
    background-color: #28c76f !important;
}

.btn--danger,
.badge--danger,
.bg--danger {
    background-color: #ea5455 !important;
}

.btn--warning,
.badge--warning,
.bg--warning {
    background-color: #f99f0b !important;
}

.btn--info,
.badge--info,
.bg--info {
    background-color: #1e9ff2 !important;
}

.btn--dark,
.badge--dark,
.bg--dark {
    background-color: #192a56 !important;
}

.btn--white,
.badge--white,
.bg--white {
    background-color: #fff !important;
}

[class*="btn--"] {
    color: #fff;
    font-weight: 500;
}

[class*="btn--"]:hover {
    color: #fff;
}

.btn--warning,
.badge--warning,
.btn--white,
.badge--white {
    color: #fff;
}

.btn--warning:hover,
.badge--warning:hover,
.btn--white:hover,
.badge--white:hover {
    color: #fff;
}

.btn--black,
.badge--black,
.bg--black {
    background-color: #000 !important;
}

.btn--title,
.badge--title,
.bg--title {
    background-color: #fff !important;
}

.btn--1,
.badge--1,
.bg--1 {
    background-color: #FF6A00 !important;
}

.text--primary {
    color: #7367f0 !important;
}

.text--secondary {
    color: #868e96 !important;
}

.text--success {
    color: #28c76f !important;
}

.text--danger {
    color: #ea5455 !important;
}

.text--warning {
    color: #f99f0b !important;
}

.text--info {
    color: #1e9ff2 !important;
}

.text--dark {
    color: #192a56 !important;
}

.text--white {
    color: #fff !important;
}

.text--white p,
.text--white ul li,
.text--white ul li a,
.text--white span {
    color: #fcf6f5ff;
}

.text--black {
    color: #000 !important;
}

.text--body {
    color: #93b4ca !important;
}

.text--base {
    color: #FF6A00 !important;
}

.text--title {
    color: #fff !important;
}

.text--1 {
    color: #FF6A00 !important;
}

.bg--transparent {
    background-color: transparent !important;
}

.bg--none {
    background: none !important;
}

/*Footer Section*/
.footer-logo {
    max-width: 250px;
    max-height: 300px;
    margin: 0 auto 30px;
}

.footer-logo a {
    display: block;
}

.footer-logo img {
    width: 100%;
}

.footer-links {
    justify-content: center;
}

.footer-links li {
    padding: 0px 5px;
    align-items: center;
}

.footer-links li a {
    padding: 5px 10px;
    color: #fff;
}

.footer-links li::after {
    content: "|";
    color: #FF6A00;
    font-size: 12px;
}

.footer-links li:last-child::after {
    display: none;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    margin: -5px;
}

.footer-bottom .copyright {
    padding: 5px;
    max-width: 600px;
}

@media (max-width: 575px) {
    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .social-icons,
    .footer-bottom .copyright {
        width: 100%;
        justify-content: center;
    }
}

.social-icons li {
    padding: 5px;
}

.social-icons li a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.social-icons li a:hover {
    -webkit-border-radius: 40%;
    -moz-border-radius: 40%;
    border-radius: 40%;
    background: #FF6A00;
    color: #fff;
}

.footer__txt {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    padding: 20px 0 60px;
}

.header-wrapper {
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.header-wrapper .logo {
    width: 200px;
    max-height: 80px;
}

@media (max-width: 1199px) {
    .header-wrapper .logo{
        max-width: 175px;
    }
}

.header-wrapper .logo a {
    display: block;
}

.header-wrapper .logo img {
    max-width: 100%;
    max-height: 100%;
}

.header-wrapper .right-area {
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.header-wrapper .right-area .cmn--btn {
    padding: 0 15px;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    margin: 5px;
    border-color: transparent;
    border-radius: 4px;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    background: #FF6A00;
}

.header-wrapper .right-area .cmn--btn:hover {
    border-color: #FF6A00;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.19);
}

@media screen and (max-width: 450px) {
    .header-wrapper .logo {
        width: 160px;
    }

    .header-wrapper .right-area .cmn--btn {
        font-size: 12px;
        line-height: 32px;
        padding: 0 12px;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
    }

    .header-wrapper .right-area .select-bar .current {
        font-size: 12px;
    }

    .header-wrapper .header-bar {
        margin-right: 0;
    }
}


@media (max-width: 425px) {
    .header-wrapper .logo {
        width: 110px !important;
    }
}

header {
    z-index: 999;
}

.menu {
    font-family: "Jost", sans-serif;
    font-weight: 500;
}

.menu li {
    padding: 0;
}

.menu li a {
    padding: 5px 15px;
    font-weight: 500;
    color: #fff;
}

@media (max-width: 1199px) {
    .menu li a{
        padding: 5px 11px;
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    .menu li .submenu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        min-width: 220px;
        background: #0f1932;
        -webkit-transition: all ease 0.3s;
        -moz-transition: all ease 0.3s;
        transition: all ease 0.3s;
        opacity: 0;
        visibility: hidden;
    }

    .menu li .submenu li a {
        display: flex;
        justify-content: space-between;
        padding: 5px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        font-weight: 400;
        color: #fff;
    }

    .menu li .submenu li .submenu {
        left: 100%;
        top: 10px;
    }

    .menu li .submenu li:hover>.submenu {
        top: 0;
    }

    .menu li .submenu li:hover>a {
        background: #FF6A00;
        color: #fff;
        padding-left: 22px;
    }

    .menu li:hover>.submenu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .menu {
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 9;
        background: #0f1932;
        overflow: auto;
        max-height: calc(100vh - 100px);
        -webkit-transition: all ease 0.3s;
        -moz-transition: all ease 0.3s;
        transition: all ease 0.3s;
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        transform-origin: top;
        display: block;
    }

    .menu.active {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }

    .menu li {
        padding: 0;
        border-bottom: 1px solid transparent;
    }

    .menu li.open ul li:last-child {
        border-color: rgba(255, 255, 255, 0.1);
    }

    .menu li a {
        display: flex;
        color: #fff;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 5px 20px;
        font-size: 16px;
    }

    .menu li:last-child>a {
        border: none;
    }

    .menu li .submenu {
        padding-left: 20px;
        display: none;
    }

    .menu li .submenu li a {
        font-size: 14px;
    }

    .menu li .cmn--btn {
        border: 1px solid rgba(255, 255, 255, 0.09) !important;
        font-size: 14px;
        line-height: 40px;
        justify-content: center;
    }
}


@media (min-width: 992px) {
    .menu {
        margin-left: auto;
    }
}

.header-section {
    position: relative;
}

.header-section .header-bottom {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 99;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-section.active .header-bottom {
    background: #0f1932;
    top: 0;
    position: fixed;
    animation: fadeInDown 1s;
    -webkit-animation: fadeInDown 1s;
    -moz-animation: fadeInDown 1s;
}

@media (max-width: 575px) {
    .header-section .nice-select {
        line-height: 35px;
    }
}

.menu-item-has-children {
    position: relative;
    z-index: 999 !important;
}

.menu-item-has-children>a {
    align-items: center;
}

.menu-item-has-children>a::after {
    content: "\f107";
    font-weight: 600;
    font-family: "Line Awesome Free";
    margin-left: 5px;
}

@media (min-width: 992px) {
    .menu-item-has-children.open .submenu {
        display: block !important;
    }

    .menu-item-has-children .submenu {
        display: block !important;
    }
}

.header-bar {
    position: relative;
    cursor: pointer;
    width: 25px;
    height: 20px;
}

@media (max-width: 452px) {
    .header-bar {
        width: 20px;
        height: 17px;
    }
}

@media (min-width: 576px) {
    .header-bar {
        margin-right: 20px;
    }
}

@media (min-width: 992px) {
    .header-bar {
        display: none;
    }
}

.header-bar span {
    position: absolute;
    display: inline-block;
    height: 3px;
    width: 100%;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    background-color: #fff;
    left: 0;
}

.header-bar span:first-child {
    top: 0;
}

.header-bar span:nth-child(2) {
    top: 52%;
    transform: translateY(-65%);
}

.header-bar span:last-child {
    bottom: 0;
}

.header-bar.active span:first-child {
    -webkit-transform: rotate(45deg) translate(3px, 9px);
    -ms-transform: rotate(45deg) translate(3px, 9px);
    transform: rotate(45deg) translate(3px, 9px);
}

.header-bar.active span:nth-child(2) {
    opacity: 0;
}

.header-bar.active span:last-child {
    -webkit-transform: rotate(-45deg) translate(3px, -9px);
    -ms-transform: rotate(-45deg) translate(3px, -9px);
    transform: rotate(-45deg) translate(3px, -9px);
}

@media (max-width: 767px) {
    .header-bar {
        margin-left: 0;
    }
}

.header-top {
    background: #FF6A00;
}

.header-top * {
    color: #fff;
}

.header-top .header-top-area {
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.header-top .header-top-area li {
    padding: 0;
}

.header-top .header-top-area .social li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.302);
    font-size: 15px;
}

.header-top .header-top-area .social li:first-child a {
    border-left: 1px solid rgba(255, 255, 255, 0.302);
}

.header-top .header-top-area .mail {
    padding: 5px 10px;
    min-height: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.302);
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.header-top .header-top-area .mail i {
    margin-right: 7px;
}

.header-top .header-top-area .mail:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.302);
}

@media (max-width: 767px) {
    .header-top {
        display: none;
    }
}

.select-bar {
    height: 40px !important;
    margin: 0 15px;
    background: transparent;
    display: block;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.select-bar select {
    width: 70px;
    height: 40px;
    border: none;
    background: transparent !important;
    padding: 0 10px;
    font-size: 14px;
}

@media (max-width: 575px) {
    .select-bar {
        margin: 0 10px;
        height: 35px !important;
    }

    .select-bar select {
        height: 35px;
        width: 60px;
    }
}

@media (max-width: 991px) {
    .select-bar {
        margin-left: auto;
    }
}

.select-bar .list {
    max-height: 200px;
    overflow-y: auto;
    background: #0f1932;
}

.select-bar .list .option {
    padding-top: 0;
    padding-bottom: 0;
}

/*Banner Section Starts Here*/
@media (min-width: 992px) {
    .banner-thumb-bg {
        clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .mw-lg-100 {
        max-width: 100%;
    }
}

.banner-thumb {
    padding: 100px 50px 0;
    overflow: hidden;
}

@media (min-width: 1400px) {
    .banner-thumb img {
        width: 100%;
    }
}

@media (max-width: 1399px) {
    .banner-thumb img {
        max-width: 720px;
    }
}

@media (max-width: 1199px) {
    .banner-thumb img {
        max-width: 640px;
    }
}

@media (max-width: 991px) {
    .banner-thumb {
        padding-top: 30px;
        width: 100%;
        text-align: center;
    }

    .banner-thumb img {
        width: 100%;
        max-width: 520px;
    }
}

@media (max-width: 575px) {
    .banner-thumb {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.banner-content {
    padding: 200px 15px;
}

.banner-content .banner-title {
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 40px;
}

.banner-content .banner-txt {
    font-size: 24px;
    max-width: 540px;
}

.banner-content .btn__grp {
    margin-top: 40px;
}

@media (min-width: 768px) {
    .banner-content .btn__grp .cmn--btn {
        padding: 18px 45px;
    }
}

@media (min-width: 992px) {
    .banner-content {
        margin-left: auto;
        max-width: 662px;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .banner-content {
        max-width: 572px;
    }

    .banner-content .banner-title {
        font-size: 60px;
        line-height: 70px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .banner-content {
        max-width: 483px;
    }

    .banner-content .banner-title {
        font-size: 60px;
        line-height: 70px;
    }
}

@media (max-width: 991px) {
    .banner-content {
        padding: 180px 0 120px;
    }

    .banner-content .container {
        padding-left: 13px;
        padding-right: 13px;
    }
}

@media (max-width: 575px) {
    .banner-content .banner-title {
        font-size: 50px;
        line-height: 55px;
        margin-bottom: 25px;
    }

    .banner-content .btn__grp {
        margin-top: 20px;
    }

    .banner-content .banner-txt {
        font-size: 20px;
    }
}

.banner-section {
    background: rgba(15, 25, 50, 0.3);
}

.template-version {
    position: fixed;
    top: 50%;
    margin-top: -40px;
    right: 0;
    z-index: 999;
    cursor: pointer;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@media (max-width: 767px) {
    .template-version {
        top: 40%;
    }
}

.template-version .chorka {
    background: #fff;
    display: block;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #192a56;
}

.template-version .chorka i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
}

/*Choose Section Starts Here*/
.choose__item .choose__icon {
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 40px;
    margin-bottom: 30px;
    background: #0f1932;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.choose__item .choose__content .choose__title {
    font-weight: 500;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .choose-wrapper div[class*="col"]:nth-of-type(even) .choose__item {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .choose-wrapper div[class*="col"]:not(:last-child) .choose__item {
        padding-bottom: 20px;
    }
}

.about-thumb {
    direction: rtl;
}

.about-thumb img {
    max-width: 920px;
}

@media (max-width: 991px) {
    .pt-max-lg-0 {
        padding-top: 0;
    }

    .pb-max-lg-50 {
        padding-bottom: 50px;
    }

    .about-thumb img {
        max-width: 100%;
    }
}

.card-item {
    text-align: center;
    position: relative;
}

.card-item .card-thumb {
    margin-bottom: 20px;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.card-item .card-thumb img {
    max-width: 100%;
}

.card-item .title {
    font-weight: 500;
    font-size: 20px;
}

.card-item .title a {
    color: #FF6A00;
}

.card-item .discount~.card-thumb,
.card-item .discount~.title {
    opacity: 0.4;
}

@media screen and (min-width: 400px) and (max-width: 576px) {
    .card-wrapper>div[class*="col"] {
        width: 50%;
    }
}

.owl-dots {
    display: flex;
    flex-wrap: wrap;
    margin: -3px;
    margin-top: 25px;
    justify-content: center;
}

.owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.owl-dots .owl-dot.active {
    background: #FF6A00;
}

.owl-dots .owl-dot span {
    display: block;
    width: 4px;
    height: 4px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #FF6A00;
}

.how__item {
    padding: 0 30px;
    text-align: center;
    position: relative;
}

.how__item .shape-bg {
    position: absolute;
    left: 100%;
    transform: translateX(-50%);
    width: 100%;
    top: 33px;
    height: 25px;
}

@media (max-width: 991px) {
    .how__item .shape-bg {
        display: none;
    }
}

.how__item .shape-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.how__thumb {
    width: 100px;
    height: 100px;
    font-size: 30px;
    text-align: center;
    line-height: 94px;
    border-width: 3px;
    border-style: solid;
    border-color: #FF6A00;
    border-radius: 50%;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
    color: #FF6A00;
    background: #fff;
    margin: 0 auto 20px;
}

.how__thumb i {
    transform: rotate(-45deg);
}

div[class*="col"]:nth-of-type(3n + 3) .how__item .shape-bg {
    display: none;
}

.counter__item {
    padding: 40px 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #0f1932;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    color: #fff;
    position: relative;
}

.counter__item .counter__header {
    display: flex;
    align-items: center;
}

.counter__item .counter__header .title {
    margin: 0;
    color: #FF6A00;
}

.counter__item .counter__header .title i {
    font-size: 80%;
    line-height: 1;
}

.counter__item .icon {
    font-size: 50px;
    line-height: 1;
    color: #fff;
    position: absolute;
    right: 20px;
    bottom: 20px;
    opacity: .2;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.counter__item:hover .icon {
    opacity: .4;
    -webkit-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
}

.bg--section .counter__item {
    background: #0a1227;
}

.testimonial-item {
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.testimonial-item .testimonial-thumb {
    width: 100px;
    height: 100px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.testimonial-item .testimonial-thumb img {
    width: 100%;
}

.testimonial-item .testimonial-content .testimonial-header {
    align-items: flex-end;
    justify-content: space-between;
    margin: -5px -5px 20px;
}

.testimonial-item .testimonial-content .testimonial-header .name {
    margin: 5px;
}

.testimonial-item .testimonial-content .testimonial-header .info {
    font-size: 14px;
}

.testimonial-item .testimonial-content .testimonial-header .ratings {
    margin: 5px;
}

.testimonial-item .quote {
    font-size: 100px;
    line-height: 1;
    position: absolute;
    right: 25px;
    top: 25px;
    opacity: .3;
    color: #FF6A00;
}

.ratings {
    color: #e9ba17;
    font-size: 18px;
}

.partner-thumb {
    position: relative;
    height: 110px;
    overflow: hidden;
    display: block;
}

.partner-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-filter: grayscale(0);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.partner-thumb img:nth-child(2) {
    position: absolute;
    left: 0;
    top: -110px;
    -webkit-filter: grayscale(100%);
}

@media (max-width: 575px) {
    .partner-thumb img {
        -webkit-filter: grayscale(0);
    }
}

.partner-thumb:hover img {
    -webkit-transform: translateY(110px);
    -ms-transform: translateY(110px);
    transform: translateY(110px);
}

.partner-thumb:hover img:nth-child(2) {
    top: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/*Account Section*/
.bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.account-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.account-section::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f1932;
    opacity: 0.75;
    z-index: -1;
}

.account-section .left {
    width: 40%;
    padding: 50px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #0f1932;
}

.account-section .right {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


@media (max-width: 1199px) {
    .account-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .account-section .right {
        order: -1;
    }

    .account-section .left {
        margin-top: 50px;
        width: 60%;
    }
}

@media (max-width: 767px) {
    .account-section .right {
        width: 70%;
    }

    .account-section .left {
        margin-top: 50px;
        width: 80%;
    }
}

@media (max-width: 575px) {
    .account-section {
        padding: 40px 20px;
    }

    .account-section .right {
        width: 100%;
    }

    .account-section .left {
        margin-top: 30px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .account-section {
        padding: 30px 10px;
    }
}

.account__wrapper {
    margin: 0 auto;
    max-width: 920px;
    padding: 50px;
    border: 1px dashed rgba(255, 106, 0, 0.3);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.account__wrapper .logo {
    max-width: 280px;
    margin: 0 auto 30px;
}

.account__wrapper .logo a {
    display: block;
}

.account__wrapper .logo a img {
    width: 100%;
}

.form--control {
    height: 50px;
    box-shadow: none !important;
    outline: none;
    background: #0f1932;
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

.form--control::placeholder {
    color: #fff !important;
}

.form--control[type="file"] {
    height: unset;
    padding: 12px 20px;
    line-height: 25px;
}

.form--control:focus {
    background: #0f1932;
}

textarea.form--control {
    height: 120px;
}

.bg--section .form--control {
    background: #0a1227;
}

.form--label {
    text-transform: capitalize;
    font-family: "Jost", sans-serif;
    color: #fff;
    cursor: pointer;
    margin-bottom: 8px;
}

.form--label i {
    color: #FF6A00;
}

.select-item .select-bar {
    height: 50px !important;
    width: 100%;
}

.select-item .select-bar .list {
    width: 100%;
    height: 150px;
}

.select-item .select-bar .list .option:hover,
.select-item .select-bar .list .option.selected,
.select-item .select-bar .list .option.focus {
    color: #192a56 !important;
}

.select-item .select-bar .list:hover .option.selected,
.select-item .select-bar .list:hover .option.focus {
    color: #fff !important;
}

.select-item .select-bar .list:hover .option.selected:hover,
.select-item .select-bar .list:hover .option.focus:hover {
    color: #192a56 !important;
}

.light-version .select-item .select-bar .list:hover .option.selected,
.light-version .select-item .select-bar .list:hover .option.focus {
    color: #363636 !important;
}

.select-item .select-bar .current {
    line-height: 45px;
}

.form--check {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.form--check:not(:last-child) {
    margin-bottom: 10px;
}

.form--check label {
    cursor: pointer;
    font-size: 14px;
    align-self: center;
    width: calc(100% - 1.3rem);
    padding-left: 15px;
}

.form--check .form-check-input {
    margin: 0;
    height: 1.3rem;
    width: 1.3rem;
}

.form--check .form-check-input:checked {
    background-color: #FF6A00;
    border-color: #FF6A00;
}

.contact__item {
    height: 100%;
    padding: 32px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    align-items: center;
    word-break: break-word;
}

.contact__item .contact__icon {
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    font-size: 24px;
    color: #FF6A00;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.contact__item .contact__body {
    width: calc(100% - 70px);
    padding-left: 20px;
}

.contact__item .contact__body .contact__title {
    margin: 0;
    margin-bottom: 5px;
}

.contact__item .contact__body a {
    color: #FF6A00;
}

.contact__item .contact__info li {
    padding: 0;
}

.contact__item .contact__info li:not(:last-child) {
    margin-bottom: 10px;
}

@media (max-width: 575px) {
    .contact__item {
        padding: 20px 15px;
    }

    .contact__item .contact__body .contact__title {
        margin-bottom: 4px;
    }
}

.contact__item:hover .contact__icon {
    background: #FF6A00;
    color: #fff;
}

.hero-section {
    padding: 220px 0 100px;
}

@media (max-width: 767px) {
    .hero-section {
        padding: 150px 0 50px;
    }
}

.contact__wrapper__1,
.contact__wrapper__2 .contact__wrapper__2_inner {
    padding: 50px 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

@media screen and (max-width: 400px) {

    .contact__wrapper__1,
    .contact__wrapper__2 .contact__wrapper__2_inner {
        padding: 30px 15px 15px;
    }
}

.contact__wrapper__1 {
    width: 60%;
    border-right: none;
    border-radius: 7px 0 0 7px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .contact__wrapper__1 {
        max-width: 800px;
    }
}

@media (max-width: 991px) {
    .contact__wrapper__1 {
        width: 100%;
        margin-bottom: 40px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 7px;
    }
}

.contact__wrapper__1.contact--wrapper--full {
    padding: 50px 30px 30px;
    margin: 0 auto;
}

@media screen and (max-width: 400px) {
    .contact__wrapper__1.contact--wrapper--full {
        padding: 30px 15px 15px;
    }
}

.contact__wrapper__2 {
    width: 40%;
}

.contact__wrapper__2 .contact__wrapper__2_inner {
    border-left: none;
    border-radius: 0 7px 7px 0;
}

@media (max-width: 991px) {
    .contact__wrapper__2 {
        width: 100%;
    }

    .contact__wrapper__2 .contact__wrapper__2_inner {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 7px;
    }

    .contact__wrapper__2 .contact__wrapper__2_inner.bg--body {
        background: #0f1932 !important;
    }
}

.maps {
    min-height: 500px;
}

@media (max-width: 991px) {
    .maps {
        min-height: 300px;
    }
}

.profile-wrapper {
    padding: 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-wrapper .profile-user {
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 40px;
}

.profile-wrapper .profile-user .thumb {
    margin-bottom: 20px;
}

.profile-wrapper .profile-user .thumb img {
    max-width: 100%;
}

.profile-wrapper .profile-form-area {
    width: calc(100% - 300px);
}

@media (min-width: 992px) {
    .profile-wrapper .profile-form-area {
        padding-left: 30px;
    }
}

@media (min-width: 1200px) {
    .profile-wrapper .profile-form-area {
        padding-left: 70px;
    }
}

@media (max-width: 991px) {
    .profile-wrapper .profile-form-area {
        width: 100%;
    }
}

@media screen and (max-width: 450px) {
    .profile-wrapper {
        padding: 30px 15px;
    }
}

.remove-image {
    display: none;
    font-size: 40px;
    color: #ea5455;
    right: 0;
    top: 0;
    position: absolute;
    cursor: pointer;
    line-height: 1;
}

.profile-user {
    position: relative;
}

.dashboard__item {
    padding: 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin: 0 auto;
    position: relative;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    align-items: center;
    text-align: left;
}

.dashboard__item .dashboard__header {
    align-items: center;
}

.dashboard__item .dashboard__header .title {
    margin: 0;
}

.dashboard__item .dashboard__icon {
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background: #FF6A00;
    display: block;
    color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin: 0 auto 10px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.dashboard__item a {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 575px) {
    .dashboard__item {
        max-width: 350px;
    }
}

.dashboard__item * {
    position: relative;
}

.dashboard__item .dashboard__icon {
    margin: 0;
}

.dashboard__item .cont {
    max-width: calc(100% - 60px);
    padding-left: 20px;
}

.dashboard__item .cont .dashboard-header {
    justify-content: space-between;
}

.dashboard__item .cont .dashboard-header .title {
    font-size: 28px;
    line-height: 1;
}

.dashboard__item:hover .dashboard__icon {
    background: #fff !important;
    color: #FF6A00;
}

div[class*="col"]:nth-of-type(6n + 2) .dashboard__item .dashboard__icon {
    background: #05bbc9;
}

div[class*="col"]:nth-of-type(6n + 1) .dashboard__item .dashboard__icon {
    background: #fe721c;
}

div[class*="col"]:nth-of-type(6n + 3) .dashboard__item .dashboard__icon {
    background: #ff4b4b;
}

div[class*="col"]:nth-of-type(6n + 4) .dashboard__item .dashboard__icon {
    background: #876cfe;
}

div[class*="col"]:nth-of-type(6n + 5) .dashboard__item .dashboard__icon {
    background: #8e3ff0;
}

div[class*="col"]:nth-of-type(6n + 6) .dashboard__item .dashboard__icon {
    background: #FF6A00;
}

.cmn--table {
    margin: 0;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #0f1932;
}

.cmn--table thead tr th {
    font-family: "Jost", sans-serif;
    padding: 10px;
    text-align: center;
    border: none;
    background: #FF6A00;
    color: #fff;
}

.cmn--table thead tr th:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cmn--table thead tr th:first-child {
    -webkit-border-radius: 5px 0 0 0;
    -moz-border-radius: 5px 0 0 0;
    border-radius: 5px 0 0 0;
}

.cmn--table thead tr th:last-child {
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
    border-radius: 0 5px 0 0;
}

.cmn--table tbody {
    text-align: center;
}

.cmn--table tbody tr td {
    color: #93b4ca;
    vertical-align: middle;
    padding: 8px 5px;
    border-color: rgba(255, 255, 255, 0.1);
}

.cmn--table tbody tr td .badge {
    text-transform: capitalize;
}

.cmn--table tbody tr td:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cmn--table tbody tr td .date {
    font-size: 14px;
}

@media (min-width: 992px) {
    .cmn--table {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cmn--table .details {
        max-width: 260px;
        margin: 0 auto;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .cmn--table thead {
        display: none;
    }

    .cmn--table tbody tr {
        display: block;
    }

    .cmn--table tbody tr:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cmn--table tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 15px;
        text-align: right;
    }

    .cmn--table tbody tr td::before {
        content: attr(data-label);
        margin-right: 10px;
        color: #fff;
    }

    .cmn--table tbody tr:nth-child(even) {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
    }
}

.bg--section .cmn--table {
    background: #0a1227;
}

.custom--card {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0f1932;
}

.custom--card .card-header {
    background: rgba(255, 255, 255, 0.05);
    margin-left: -1px;
    margin-right: -1px;
    padding: 10px;
}

.custom--card .card-header .card-title {
    text-align: center;
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.custom--card .card-footer {
    text-align: center;
    background: transparent;
}

.custom--card .form--control[readonly] {
    background: #0a1227;
}

.two-factor-content {
    padding: 30px 0;
}

.two-factor-content .subtitle {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.bg--section .custom--card {
    background: #0a1227;
}

.deposit-item {
    justify-content: space-between;
    background: #0f1932;
    padding: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.deposit-item .deposit-thumb {
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.deposit-item .deposit-thumb,
.deposit-item .deposit-content {
    width: calc(50% - 15px);
}

.deposit-item .deposit-thumb img,
.deposit-item .deposit-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deposit-item .deposit-content {
    align-self: center;
}

.deposit-item .deposit-content ul {
    margin: 0;
    margin-bottom: 30px;
}

.deposit-item .deposit-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.deposit-item .deposit-content ul li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 540px) {
    .deposit-item {
        padding: 15px;
    }

    .deposit-item .deposit-content,
    .deposit-item .deposit-thumb {
        width: 100%;
    }

    .deposit-item .deposit-content {
        padding: 20px 0 0 0;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {

    .deposit-item .deposit-content,
    .deposit-item .deposit-thumb {
        width: 100%;
    }

    .deposit-item .deposit-content {
        padding: 30px 0 0 0;
    }
}

.btn-close {
    opacity: 1;
    backdrop-filter: brightness(20);
}

.deposit-preview {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 520px;
    margin: 0 auto;
    padding: 20px;

}

.deposit-preview .deposit-thumb img {
    max-width: 100%;
}

.deposit-preview .deposit-content {
    margin-top: 30px;
    width: 100%;
}

.deposit-preview .deposit-content ul {
    width: 100%;
}

.deposit-preview .deposit-content ul li {
    padding: 10px 0;
    font-size: 14px;
}

@media (max-width: 575px) {
    .deposit-preview {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}

.quantity {
    position: relative;
}

.quantity input {
    padding: 8px 15px;
}

.quantity-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quantity-nav .quantity-button {
    width: 40px;
    cursor: pointer;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity-up {
    order: 1;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.quantity-down {
    order: -1;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cmn--modal .modal-header {
    background: #0f1932;
}

.cmn--modal .modal-header .modal-title {
    color: #fff;
    margin: 0;
}

.cmn--modal .modal-content {
    background: #0a1227;
    border: none;
}

.cmn--modal .modal-content * {
    border-color: rgba(255, 255, 255, 0.1);
}

.cmn--modal .modal-content .modal-footer {
    background: #0f1932;
}

.cmn--modal .modal-content .modal-footer .modal-title {
    margin: 0;
}

.cmn--modal .modal-content .modal-header {
    padding: 10px 15px;
}

.cmn--modal .modal-content .modal-footer {
    padding: 10px;
}

.cmn--modal .modal-content .btn-close {
    background: transparent;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    opacity: 1;
}

.cmn--modal .modal-content .btn-close::before {
    content: "\f00d";
    font-family: "Line Awesome Free";
    font-weight: 700;
    color: #ea5455;
    font-size: 20px;
}

.h-50px {
    height: 50px !important;
}

.form--group {
    margin-bottom: 20px;
}

.message__chatbox {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.message__chatbox__header {
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

.message__chatbox__header .title {
    margin: 0;
}

.message__chatbox__body {
    padding: 30px;
}

@media (max-width: 575px) {
    .message__chatbox__body {
        padding: 15px;
    }
}

.reply-item {
    padding: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    align-items: center;
    margin: 10px;
    background: #0f1932;
}

.reply-item .name-area {
    padding: 20px;
    width: 220px;
    text-align: center;
}

.reply-item .name-area .title {
    margin: 0;
    font-size: 18px;
}

.reply-item .name-area .reply-thumb {
    width: 80px;
    height: 80px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.reply-item .name-area .reply-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.reply-item .content-area {
    width: calc(100% - 220px);
    padding: 20px;
}

.reply-item .content-area .meta-date {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    display: block;
}

@media (max-width: 767px) {
    .reply-item {
        padding: 0;
    }

    .reply-item .name-area,
    .reply-item .content-area {
        width: 100%;
        border: none;
    }

    .reply-item .name-area {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.reply-message-area {
    margin: -10px;
}

.reply-message-area li {
    padding: 0;
}

.reply-message-area li ul {
    padding-left: 20px;
}

@media (min-width: 768px) {
    .reply-message-area li ul {
        padding-left: 50px;
    }
}

.bg--shadow {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.bg--section .reply-item {
    background: #0a1227;
}

.preloader {
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f1932;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-left: -60px;
    margin-top: -60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-circle img {
    width: 40%;
    height: 40%;
    object-fit: contain;
}

.loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    overflow: hidden;
    -webkit-transform-origin: 60px 60px;
    -moz-transform-origin: 60px 60px;
    -ms-transform-origin: 60px 60px;
    -o-transform-origin: 60px 60px;
    transform-origin: 60px 60px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    -webkit-animation: rotate 1.2s infinite linear;
    -moz-animation: rotate 1.2s infinite linear;
    -o-animation: rotate 1.2s infinite linear;
    animation: rotate 1.2s infinite linear;
}

.loader-line-mask .loader-line {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

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

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

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

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

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

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

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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

.menu>li:last-child .submenu {
    left: unset;
    right: 0;
}

.pagination {
    margin: -3px;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination .page-item {
    text-align: center;
    padding: 3px;
}

.pagination .page-item a,
.pagination .page-item span {
    width: 45px;
    height: 45px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    color: #fcf6f5ff;
    padding: 0;
    line-height: 45px;
    display: block;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pagination .page-item a.active,
.pagination .page-item span.active {
    background: #FF6A00;
}

.pagination .page-item span {
    border: none;
}

.pagination .page-item.active span,
.pagination .page-item.active a,
.pagination .page-item:hover span,
.pagination .page-item:hover a {
    background: #FF6A00;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.pagination .page-item.disabled span {
    background: rgba(255, 106, 0, 0.3);
    border: none;
    color: #fff;
}

/*Blog Section Starts Here*/
.post__item {
    background: #0f1932;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post__item .post__thumb {
    overflow: hidden;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    position: relative;
}

.post__item .post__thumb a {
    display: block;
}

.post__item .post__thumb .category {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 4px 15px;
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
    border-radius: 0 5px 0 0;
    background: #FF6A00;
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 24px;
}

.post__item .post__thumb img {
    width: 100%;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.post__item .post__content {
    padding: 30px;
}

.post__item .post__content .post__title {
    margin-bottom: 20px;
}

.post__item .post__content .post__title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    text-decoration: none;
}

.post__item .post__content .meta__date {
    border-left: 5px solid #FF6A00;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    justify-content: space-between;
    padding: 5px;
    background: #0a1227;
}

.post__item .post__content .meta__date .meta__item {
    font-size: 14px;
    padding: 5px;
    display: flex;
    align-items: center;
}

.post__item .post__content .meta__date .meta__item i {
    font-size: 20px;
    color: #FF6A00;
    margin-right: 6px;
}

.post__item:hover .post__thumb img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.post__item .post__read {
    font-family: "Jost", sans-serif;
    margin-top: 25px;
    color: #FF6A00;
}

@media (max-width: 991px) {
    .post__item .post__content {
        padding: 25px 15px 20px;
    }
}

.post__share {
    margin: -3px;
}

.post__share li {
    padding: 3px;
}

.post__share li a {
    text-decoration: none;
}

.post__share li a i {
    line-height: 35px;
    width: 35px;
    height: 35px;
    display: block;
    text-align: center;
    color: #fff;
    background: #FF6A00;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.post__share li a i[class*="facebook"] {
    background: #3b5998;
}

.post__share li a i[class*="twitter"] {
    background: #55acee;
}

.post__share li a i[class*="instagram"] {
    background: #e4405f;
}

.post__share li a i[class*="skype"] {
    background: #2fb7df;
}

.post__share li a i[class*="linkedin"] {
    background: #007bb5;
}

.post__share li a i[class*="youtube"] {
    background: #cd201f;
}

.post__share li a i[class*="behance"] {
    background: #1769ff;
}

.post__share li a i[class*="tumblr"] {
    background: #34465d;
}

.post__share li a i[class*="pinterest"] {
    background: #007bb5;
}

.post__share li a i[class*="navy"] {
    background: #d8e0f3;
}

.post__share li a i[class*="futbol"] {
    background: #db3776;
}

.post__share li a i[class*="vimeo"] {
    background: #1ab7ea;
}

.fs--14 {
    font-size: 14px;
}

/*Blog Section Starts Here*/
.read--more {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-left: 10px;
    font-size: 20px;
    font-weight: 700;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

[class*="line--limit"] {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line--limit-1 {
    -webkit-line-clamp: 1;
}

.line--limit-2 {
    -webkit-line-clamp: 2;
}

.line--limit-3 {
    -webkit-line-clamp: 3;
}

.line--limit-4 {
    -webkit-line-clamp: 4;
}

.line--limit-5 {
    -webkit-line-clamp: 5;
}

.privacy-content h1,
.privacy-content h2,
.privacy-content h3,
.privacy-content h4,
.privacy-content h5,
.privacy-content h6 {
    color: #fff !important;
}

.privacy-content p,
.privacy-content span,
.privacy-content li {
    color: #f1f1f1 !important;
}

/*Sidebar*/
.blog-sidebar {
    padding: 40px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-sidebar {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 400px) {
    .blog-sidebar {
        padding: 30px 20px;
    }
}

.widget__title {
    margin-bottom: 10px;
}

.widget:not(:last-child) {
    margin-bottom: 40px;
}

.widget.widget__category ul li {
    padding: 0;
}

.widget.widget__category ul li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
}

.widget.widget__category ul li a:hover {
    padding-left: 10px;
}

.widget.widget__post__area ul li {
    padding: 10px 0;
}

.widget.widget__tags ul {
    margin: -5px;
}

.widget.widget__tags ul li {
    padding: 5px;
}

.widget.widget__tags ul li a {
    padding: 8px 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #0a1227;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.widget.widget__tags ul li a:hover,
.widget.widget__tags ul li a.active {
    background: #FF6A00;
    color: #fff;
}

.widget__post {
    text-decoration: none;
}

.widget__post .widget__post__thumb {
    width: 80px;
    height: 80px;
}

.widget__post .widget__post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget__post .widget__post__content {
    width: calc(100% - 80px);
    padding-left: 15px;
}

.widget__post .widget__post__content .widget__post__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    margin-bottom: 5px;
}

.widget__post .widget__post__content span {
    font-size: 14px;
    color: #FF6A00;
}

/*Blog Single*/
.post__details .post__header {
    margin-bottom: 40px;
}

.post__details .post__header .post__title {
    margin-bottom: 8px;
}

.post__details .post-meta {
    margin: -3px -10px 25px -10px;
}

.post__details .post-meta li {
    padding: 3px 10px;
}

.post__details .post-meta li i {
    color: tomato;
}

.post__details p {
    margin-bottom: 30px;
}

.post__details .post__thumb {
    height: 420px;
    margin-bottom: 30px;
}

.post__details .post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post__details .post__quote {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .post__details .post__thumb {
        height: unset;
    }
}

.post__quote {
    font-size: 24px;
    line-height: 1.5;
    font-family: "Jost", sans-serif;
    color: #fff;
    font-style: italic;
    text-align: center;
    padding: 0 30px;
    border-left: 3px solid #FF6A00;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

@media (max-width: 575px) {
    .post__quote {
        padding: 0 15px;
        font-size: 20px;
    }
}

.post__tag,
.post__share {
    margin: -5px;
}

.post__tag li,
.post__share li {
    padding: 5px;
}

.post__share__title {
    margin-bottom: 10px;
}

.post__tag li a {
    font-size: 14px;
    padding: 5px 15px;
    background: #0f1932;
    color: #fff;
    text-decoration: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post__tag li a:hover,
.post__tag li a.active {
    background: #FF6A00;
    color: #fff;
}

.post__share li a {
    text-decoration: none;
}

.post__share li a i {
    line-height: 35px;
    width: 35px;
    height: 35px;
    display: block;
    text-align: center;
    color: #fff;
    background: #FF6A00;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.post__share li a i[class*="facebook"] {
    background: #3b5998;
}

.post__share li a i[class*="twitter"] {
    background: #55acee;
}

.post__share li a i[class*="instagram"] {
    background: #e4405f;
}

.post__share li a i[class*="skype"] {
    background: #2fb7df;
}

.post__share li a i[class*="linkedin"] {
    background: #007bb5;
}

.post__share li a i[class*="youtube"] {
    background: #cd201f;
}

.post__share li a i[class*="behance"] {
    background: #1769ff;
}

.post__share li a i[class*="tumblr"] {
    background: #34465d;
}

.post__share li a i[class*="pinterest"] {
    background: #007bb5;
}

.post__share li a i[class*="navy"] {
    background: #d8e0f3;
}

.post__share li a i[class*="futbol"] {
    background: #db3776;
}

.post__share li a i[class*="vimeo"] {
    background: #1ab7ea;
}

.bg--section .post__item {
    background: #0a1227;
}

.bg--section .post__item .meta__date {
    background: #0f1932;
}

.cookies-card {
    width: 520px;
    padding: 30px;
    color: #1E2337;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
}

.radius--10px {
    border-radius: 10px;
}

.cookies-card.bg--default {
    background-color: #EADFD8;
}

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #DED4CD;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
}

.cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 25px;
    border: 1px solid #848484;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 45px;
}

.cookies-btn:hover {
    background-color: #DED4CD;
    color: #363636;
}

.cookies-card.style--lg {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.cookies-card.style--lg .cookies-card__content {
    width: calc(100% - (55px + 220px));
    padding: 0 25px;
}

.cookies-card.style--lg .cookies-card__content * {
    color: #2C3249 !important;
    font-size: 15px !important;
}

.cookies-card.style--lg .cookies-card__content a {
    color: #FF6A00 !important;
}

.cookies-card.style--lg .cookies-card__btn {
    width: 220px;
}


.cookies-card.cookies--dark {
    color: #EADFD8;
    background-color: #2C3249;
}

.cookies-card.cookies--dark .cookies-btn {
    color: #EADFD8;
}

.cookies-card.cookies--dark .cookies-btn:hover {
    background-color: #343A50;
    color: #EADFD8;
}

.cookies-card.cookies--dark .cookies-card__icon {
    background-color: #1E2337;
}

@media (max-width: 1399px) {

    .cookies-card.style--lg,
    .cookies-card {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .cookies-card.style--lg {
        display: block;
    }

    .cookies-card.style--lg .cookies-card__content {
        width: 100%;
        padding: 0;
        margin-top: 25px;
    }

    .cookies-card.style--lg .cookies-card__btn {
        width: 100%;
        margin-top: 20px;
    }
}

/*Light Version CSS Here*/
body {
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.light-version {
    color: #555555;
    background: #f0f5fc;
}

.light-version .header-section.active .header-bottom,
.light-version .bg--section {
    background: #fff !important;
}

.light-version .bg--body {
    background: #f0f5fc !important;
}

.light-version .template-version .chorka {
    background: #172941;
    color: #fff;
}

.light-version .quantity-nav,
.light-version .quantity-up,
.light-version .quantity-down {
    border-color: rgba(0, 0, 0, 0.1);
}

.light-version .nice-select {
    background: #fff;
    border-color: #e5e5e5;
}

.light-version .nice-select:hover,
.light-version .nice-select:focus {
    border-color: #e5e5e5;
}

.light-version .nice-select .list {
    background: #fff;
}

.light-version .bg--section .nice-select {
    background: #f0f5fc;
}

.light-version .bg--section .nice-select .list {
    background: #fff;
}

.light-version .menu li a {
    color: #172941;
}

.light-version .menu li .submenu {
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.light-version .menu li .submenu li a {
    border-color: #e5e5e5;
    color: #172941;
}

.light-version .menu li .submenu li a:hover {
    color: #fff;
}

.light-version .header-bottom {
    border-color: #e5e5e5;
}

.light-version h1,
.light-version h2,
.light-version h3,
.light-version h4,
.light-version h5,
.light-version h6 {
    color: #172941;
}

.light-version h1 a,
.light-version h2 a,
.light-version h3 a,
.light-version h4 a,
.light-version h5 a,
.light-version h6 a {
    color: #172941;
}

.light-version h1 a:hover,
.light-version h2 a:hover,
.light-version h3 a:hover,
.light-version h4 a:hover,
.light-version h5 a:hover,
.light-version h6 a:hover {
    color: #FF6A00;
}

.light-version .cmn--btn:hover {
    color: #172941;
}

.light-version .btn__grp .cmn--btn:nth-child(even) {
    background: transparent;
    color: #172941;
}

.light-version .btn__grp .cmn--btn:nth-child(even):hover {
    color: #fff;
    background: #FF6A00;
}

.light-version .header-bar span {
    background: #172941;
}

.light-version .banner-section {
    background: rgba(255, 255, 255, 0.5);
}

.light-version .cmn--modal .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.light-version .cmn--modal .modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.light-version .cmn--modal .modal-header,
.light-version .cmn--modal .modal-footer {
    background-color: #f9f9f9;
}

.light-version .cmn--modal .modal-header .modal-title {
    color: #363636;
}

.light-version .cmn--modal .modal-content {
    background-color: #fff;
}

.light-version .privacy-content h1,
.light-version .privacy-content h2,
.light-version .privacy-content h3,
.light-version .privacy-content h4,
.light-version .privacy-content h5,
.light-version .privacy-content h6 {
    color: #363636 !important;
}

.light-version .privacy-content p,
.light-version .privacy-content span,
.light-version .privacy-content li {
    color: #777 !important;
}

@media (max-width: 991px) {
    .light-version .menu {
        background: #fff;
    }

    .light-version .menu li a {
        border-color: #e5e5e5;
    }

    .light-version .menu li a.cmn--btn {
        color: #fff;
    }
}

.light-version .choose__item .choose__icon {
    background: #fff;
    border-color: #e5e5e5;
    color: #FF6A00;
}

.light-version .counter__item {
    background: #fff;
    border-color: #e5e5e5;
    color: #172941;
}

.light-version .counter__item .icon {
    color: #172941;
}

.light-version .bg--section .counter__item {
    background: #f0f5fc;
}

.light-version .footer-links li a {
    color: #172941;
}

.light-version .footer-top {
    border-bottom: 1px solid rgba(23, 41, 65, 0.1);
}

.light-version footer .social-icons li a {
    background: #ff6a00;
}

.light-version .form--control {
    background: #fff;
    border-color: #e5e5e5;
    color: #172941 !important;
}

.light-version .form--control::placeholder {
    color: #172941 !important;
}

.light-version .form--control:focus {
    background: #fff;
}

.light-version .bg--section .form--control {
    background: #f0f5fc;
}

.light-version .account-section .left {
    background-color: #fff;
}

.light-version .form--label {
    color: #172941;
}

.light-version .account-section p {
    color: #e6edff;
}

.light-version .form--label i {
    color: #FF6A00;
}

.light-version .contact__item {
    border-color: #e5e5e5;
}

.light-version .contact__item .contact__icon {
    background: #f0f5fc;
    border-color: #e5e5e5;
}

.light-version .contact__item:hover .contact__icon {
    background: #FF6A00;
}

.light-version .bg--section .contact__item .contact__icon {
    background: #fff;
}

.light-version .profile-wrapper,
.light-version .contact__wrapper__1,
.light-version .contact__wrapper__2 .contact__wrapper__2_inner {
    border-color: #e5e5e5;
}

.light-version .dashboard__item {
    border-color: #e5e5e5;
    box-shadow: none;
}

.light-version .dashboard__item a {
    color: rgba(23, 41, 65, 0.9);
}

.light-version .dashboard__item:hover .dashboard__icon {
    background: #172941 !important;
}

.light-version .custom--card {
    background: #fff;
}

.light-version .custom--card .card-header {
    background: rgba(23, 41, 65, 0.01);
}

.light-version .custom--card .card-header .card-title {
    color: #172941;
}

.light-version .custom--card .form--control[readonly] {
    background: #f0f5fc;
}

.light-version .post__item {
    border-color: #e5e5e5;
    background: #fff;
}

.light-version .post__item .post__content .meta__date {
    background: #f0f5fc;
}

.light-version .bg--section .custom--card {
    background: #f0f5fc;
}

.light-version .bg--section .post__item {
    background: #f0f5fc;
}

.light-version .bg--section .post__item .post__content .meta__date {
    background: #fff;
}

.light-version .two-factor-content .subtitle {
    border-color: #e5e5e5;
}

.light-version .deposit-item {
    background: #fff;
    border-color: #e5e5e5;
}

.light-version .deposit-item .deposit-content ul li {
    border-color: #e5e5e5;
}

.light-version .deposit-item .deposit-content ul li:first-child {
    border-color: #e5e5e5;
}

.light-version .pagination .page-item a,
.light-version .pagination .page-item span {
    background: #fff;
    color: #172941;
}

.light-version .pagination .page-item a.active,
.light-version .pagination .page-item span.active {
    background: #FF6A00;
    color: #fff;
}

.light-version .pagination .page-item.active span,
.light-version .pagination .page-item.active a,
.light-version .pagination .page-item:hover span,
.light-version .pagination .page-item:hover a {
    background: #FF6A00;
    color: #fff;
    border-color: #e5e5e5;
}

.light-version .pagination .page-item.disabled span {
    background: rgba(255, 106, 0, 0.3);
    color: #172941;
}

.light-version .message__chatbox__header {
    background: rgba(23, 41, 65, 0.01);
}

.light-version .deposit-thumb,
.light-version .message__chatbox {
    border-color: #e5e5e5;
}

.light-version .reply-item {
    border-color: #e5e5e5;
    background: #fff;
}

.light-version .cmn--table {
    background: #fff;
}

.light-version .cmn--table thead tr th {
    color: #fff;
}

.light-version .cmn--table thead tr th:not(:last-child) {
    border-color: #e5e5e5;
}

.light-version .cmn--table tbody tr td {
    color: #555555;
    border-color: #e5e5e5;
}

.light-version .cmn--table tbody tr td:not(:last-child) {
    border-color: #e5e5e5;
}

.light-version .langSel {
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #777;
}

@media (min-width: 992px) {
    .light-version .cmn--table {
        border-color: #e5e5e5;
    }
}

@media (max-width: 991px) {
    .light-version .cmn--table tbody tr:first-child {
        border-color: #e5e5e5;
    }

    .light-version .cmn--table tbody tr td {
        border-color: #e5e5e5;
    }

    .light-version .cmn--table tbody tr td::before {
        content: attr(data-label);
        margin-right: 10px;
        color: #172941;
    }

    .light-version .cmn--table tbody tr:nth-child(even) {
        background: #f0f5fc;
    }
}

.light-version .bg--section .cmn--table tbody tr:nth-child(even) {
    background: #fff;
}

.light-version .bg--section .cmn--table,
.light-version .bg--section .reply-item {
    background: #f0f5fc;
}

.light-version .message__chatbox .add-area .cmn--btn {
    color: #fff !important;
}

.light-version .post__quote {
    color: #172941;
}

.light-version .widget.widget__tags ul li a,
.light-version .post__tag li a {
    background: #fff;
    color: #172941;
    border-color: #e5e5e5;
}

.light-version .widget.widget__tags ul li a.active,
.light-version .widget.widget__tags ul li a:hover,
.light-version .post__tag li a.active,
.light-version .post__tag li a:hover {
    color: #fff;
    background: #FF6A00;
    border-color: transparent;
}

.light-version .widget.widget__category ul li a {
    color: #172941;
    border-color: #e5e5e5;
}

.light-version .bg--section .widget.widget__tags ul li a,
.light-version .bg--section .post__tag li a {
    background: #f0f5fc;
}

.light-version .bg--section .widget.widget__tags ul li a.active,
.light-version .bg--section .widget.widget__tags ul li a:hover,
.light-version .bg--section .post__tag li a.active,
.light-version .bg--section .post__tag li a:hover {
    background: #FF6A00;
}

.light-version .bg--section .bg--body .widget.widget__tags ul li a,
.light-version .bg--section .bg--body .post__tag li a {
    background: #fff;
}

.light-version .bg--section .bg--body .widget.widget__tags ul li a.active,
.light-version .bg--section .bg--body .widget.widget__tags ul li a:hover,
.light-version .bg--section .bg--body .post__tag li a.active,
.light-version .bg--section .bg--body .post__tag li a:hover {
    background: #FF6A00;
}

.bg-trans {
    background: transparent;
}

/* Language custom-dropdown */

/* Custom Dropdown Css Start */
@media (max-width: 991px) {
    .header-section .custom--dropdown {
        display: inline-block;
    }
}

.custom--dropdown {
    position: relative;
    width: auto;
    min-width: max-content;
    border-radius: 5px;
    padding-right: 20px;
}


.custom--dropdown:after {
    content: "\f107";
    position: absolute;
    font-weight: 900;
    font-family: 'Line Awesome Free';
    top: 50%;
    right: 0;
    transition: auto;
    transform: translateY(-50%);
    transition: .3s ease-in-out;
    font-size: 0.875rem;
    color: #fff;
}

.custom--dropdown.open:after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.custom--dropdown>.custom--dropdown__selected {
    cursor: pointer;
    font-size: 0.875rem;
    color: #fff !important;
}

.custom--dropdown>.dropdown-list {
    position: absolute;
    background-color: #fff;
    width: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
    box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
    opacity: 0;
    overflow: hidden;
    transition: .25s ease-in-out;
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    top: 100%;
    margin-top: 10px;
    z-index: -1;
    visibility: hidden;
    max-height: 230px;
    overflow-y: auto !important;
}

.custom--dropdown>.dropdown-list::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.custom--dropdown.open>.dropdown-list {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    z-index: 999 !important;
    background: #fff !important
}

.dropdown-list>.dropdown-list__item {
    padding: 10px 15px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 0.875rem;
    margin-right: 0 !important;
}

.dropdown-list>.dropdown-list__item:hover {
    background-color: #FF6A00;
    color: #fff !important;
}

.dropdown-list>.dropdown-list__item,
.custom--dropdown>.custom--dropdown__selected {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.dropdown-list>.dropdown-list__item .thumb,
.custom--dropdown>.custom--dropdown__selected .thumb {
    max-width: 30px;
}

.dropdown-list__item .thumb img {
    border-radius: 50%;
    height: 20px;
    width: 20px;
}

.dropdown-list>.dropdown-list__item .text,
.custom--dropdown>.custom--dropdown__selected .text {
    width: calc(100% - 30px);
}

.custom--dropdown__selected.dropdown-list__item .thumb .flag {
    border-radius: 50%;
    height: 20px;
    width: 20px;
}

/* dark vesion new css */

.dark-mode .custom--dropdown>.dropdown-list {
    background: #0c152a !important;
}

.langSel {
    border: 0 !important;
}

.selected-lang {
    color: #000;
}

.dark-mode .selected-lang {
    color: #fff;
}

.custom--dropdown>.dropdown-list {
    min-width: max-content;
}




.deposit-preview {
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.supported-title {
    color: black;
}

.dark-mode .supported-title {
    color: white;
}

.account-section .form-check {
    padding-left: 2.1em;
}

.menu li.active a {
    color: #346dff;
}


.form-control:disabled{
    background-color: #2c3856;
    opacity: 1;
    color: #bbb !important;
    cursor: no-drop;
}

.custom-radius div {
    border-radius: 8px !important;
}
