@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap");

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #a4bdce;
  line-height: 1.4;
  overflow-x: hidden;
  font-family: "Nunito", sans-serif;
  background: #0a1227;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: #dcf3ff;
  font-family: "Nunito", sans-serif;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #dcf3ff;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: hsl(var(--base));
}

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 a {
  color: hsl(var(--base));
}

p a:hover {
  color: hsl(var(--base));
}

@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;
}

.post__tag,
.widget__post,
.widget.widget__tags ul,
.meta__date,
.post__share,
.testimonial-item .testimonial-thumb,
.testimonial-item,
.contact__item,
.reply-item,
.custom--card .meta-info,
.dashboard-item,
.dashboard-item .dashboard-header,
.header-wrapper,
.footer-social,
.social-icons {
  display: flex;
  flex-wrap: wrap;
}

.testimonial-item .testimonial-content::before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  content: "";
}

.pt-120 {
  padding-top: 80px;
}

.pb-120 {
  padding-bottom: 80px;
}

.pt-60 {
  padding-top: 40px;
}

.pb-60 {
  padding-bottom: 40px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  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;
}

body *::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

body *::-webkit-scrollbar {
  width: 6px;
  height: 4px;
  background-color: #000;
}

body *::-webkit-scrollbar-button {
  background-color: #000;
}

body *::-webkit-scrollbar-thumb {
  background-color: #000000;
}

*::selection {
  background-color: hsl(var(--base));
  color: #fff;
}

.mb-30 {
  margin-bottom: 30px;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(13, 22, 46, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

.mb--50 {
  margin-bottom: -50px;
}

.mb-40 {
  margin-bottom: 40px;
}

.social-icons {
  justify-content: center;
  margin: -3px;
}

.social-icons li {
  padding: 3px;
}

.social-icons li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-icons li a i {
  color: #fff;
}

.social-icons li a:hover {
  background: hsl(var(--base));
}

.social-icons li a:hover i {
  color: #fff;
}

a {
  text-decoration: none;
}

strong,
b {
  font-family: "Nunito", sans-serif;
}

.section__header .title {
  margin-bottom: 15px;
}

.bg--body {
  background-color: #0a1227 !important;
}

.bg--section {
  background-color: #0d162e !important;
}

.btn:focus {
  outline: none;
  box-shadow: unset;
}

.btn--base,
.badge--base,
.bg--base {
  background-color: hsl(var(--base)) !important;
}

.btn-outline--base {
  border: 1px solid hsl(var(--base));
  color: hsl(var(--base));
}

.btn-outline--base:hover {
  border: 1px solid hsl(var(--base));
  color: #fff;
  background-color: hsl(var(--base));
}

.table-action-btn {
  padding: 3px 15px;
}

.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--warning {
  color: #192a56 !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: #dcf3ff;
}

.btn--warning:hover,
.badge--warning:hover,
.btn--white:hover,
.badge--white:hover {
  color: #dcf3ff;
}

.btn--black,
.badge--black,
.bg--black {
  background-color: #000 !important;
}

.btn--title,
.badge--title,
.bg--title {
  background-color: #dcf3ff !important;
}

.btn--1,
.badge--1,
.bg--1 {
  background-color: hsl(var(--base)) !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: #ddd;
}

.text--black {
  color: #000 !important;
}

.text--body {
  color: #a4bdce !important;
}

.text--base {
  color: hsl(var(--base)) !important;
}

.text--title {
  color: #dcf3ff !important;
}

.text--1 {
  color: hsl(var(--base)) !important;
}

.bg--transparent {
  background-color: transparent !important;
}

.bg--none {
  background: none !important;
}

.text--star {
  color: #e9ba17;
}

.footer-widget {
  width: 100%;
  max-width: 275px;
  padding: 0 10px 45px;
}

.footer-widget .title {
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

.footer-widget .title:after,
.footer-widget .title::before {
  content: "";
  height: 2px;
  background: hsl(var(--base));
  position: absolute;
  width: 70px;
  left: 0;
}

.footer-widget .title::after {
  top: 100%;
}

.footer-widget .title::before {
  width: 50px;
  top: calc(100% + 5px);
}

@media (min-width: 1400px) {
  .footer-widget.widget-social {
    max-width: calc(275px);
  }
}

@media (max-width: 1399px) and (min-width: 1200px) {
  .footer-widget {
    max-width: 220px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .footer-widget {
    max-width: calc(100% / 5);
  }
}

@media (max-width: 991px) {
  .footer-widget {
    max-width: calc(100% / 3);
  }

  .footer-widget.widget-social {
    max-width: calc((100% / 4) * 2);
  }
}

@media (max-width: 575px) {
  .footer-widget {
    max-width: 100%;
  }

  .footer-widget.widget-social {
    max-width: 300px;
  }
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px -45px;
}

.footer-links li {
  padding: 0;
}

.footer-links li:not(:last-child) {
  margin-bottom: 8px;
}

.footer-links li a {
  color: #a4bdce;
  padding-left: 20px;
  position: relative;
}

.footer-links li a:hover {
  color: hsl(var(--base));
}

.footer-links li a::before {
  background: hsl(var(--base));
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  left: 0;
  top: 8px;
}

.footer-social {
  margin: -5px;
}

.footer-social li {
  padding: 5px;
}

.footer-social li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social li a:hover {
  color: hsl(var(--base));
}

.footer-top {
  padding: 100px 0;

  @media (max-width: 991px) {
    padding: 60px 0;
  }
}

.cookie-policy {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0d162e;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  z-index: 99;
}

.cookie-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.cookie-wrapper .cmn--btn {
  font-size: 12px;
}

.cookie-wrapper .cookie-cont {
  max-width: 650px;
}

@media (max-width: 991px) {
  .cookie-wrapper {
    text-align: center;
  }

  .cookie-wrapper .cmn--btn {
    margin-top: 30px;
  }
}

footer {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.change-language {
  display: flex;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.change-language span {
  color: hsl(var(--base));
  margin-right: 2px;
}

.change-language a {
  color: #dcf3ff;
}


.change-language .language {
  height: 32px;
  padding-left: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin-left: 15px;
  outline: none;
  background: transparent;
  color: #fff;
}

.change-language .language option {
  background: #0d162e;
}

.change-language .language:focus {
  box-shadow: none;
}

.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: 700;
  font-family: "Line Awesome Free";
  margin-left: 5px;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  display: inline-block;
}

@media (max-width: 991px) {
  .menu-item-has-children>a::after {
    margin-left: auto;
  }
}

.menu-item-has-children:hover>a::after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

@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 (min-width: 576px) {
  .header-bar {
    margin-right: 20px;
  }
}

.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: #dcf3ff;
  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: 575px) {
  .header-bar {
    margin-right: 15px;
    width: 15px;
    height: 16px;
  }

  .header-bar span {
    height: 2px;
    width: 20px;
  }

  .header-bar.active span:first-child {
    -webkit-transform: rotate(45deg) translate(4px, 6px);
    -ms-transform: rotate(45deg) translate(4px, 6px);
    transform: rotate(45deg) translate(4px, 6px);
  }

  .header-bar.active span:nth-child(2) {
    opacity: 0;
  }

  .header-bar.active span:last-child {
    -webkit-transform: rotate(-45deg) translate(4px, -6px);
    -ms-transform: rotate(-45deg) translate(4px, -6px);
    transform: rotate(-45deg) translate(4px, -6px);
  }
}

.header-bottom {
  position: sticky;
  top: 0;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-top: 1px solid rgba(236, 129, 13, 0.1);
  border-bottom: 1px solid rgba(236, 129, 13, 0.1);
  z-index: 999;
  background: #0a1227;
}

@media (min-width: 1200px) {
  .header-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header-wrapper {
  justify-content: space-between;
  align-items: center;
}

.header-wrapper .logo {
  width: 200px;
}

.header-wrapper .logo a {
  display: block;
  height: 70px;
}

.header-wrapper .logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 767px) {
  .header-wrapper .logo {
    width: 150px;
  }

  .header-wrapper .logo a {
    height: 60px;
  }
}

@media screen and (max-width: 450px) {
  .header-wrapper .logo {
    width: 140px;
  }

  .header-wrapper .logo a {
    height: 60px;
  }
}

.menu-area .menu li a {
  color: #fff;
  text-transform: capitalize;
  font-family: "Nunito", sans-serif;
}

@media (max-width: 991px) {
  .menu-area .menu li {
    padding: 0;
  }

  .menu-area .menu li a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 15px 5px;
    color: #fff;
    display: block;
    border-radius: 3px;
  }

  .menu-area .menu li.menu-item-has-children>a {
    display: flex;
    justify-content: space-between;
  }

  .menu-area .menu li .submenu {
    display: none;
    margin-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .menu-area .menu li .submenu li {
    background: rgba(255, 255, 255, 0.1);
  }

  .menu-area .menu li .submenu li:last-child {
    border: none;
  }

  .menu-area .menu li .submenu li a {
    text-transform: capitalize;
    padding: 8px 15px 5px;
  }

  .menu-area .menu li .submenu li:first-child {
    border-radius: 5px 5px 0 0;
  }

  .menu-area .menu li .submenu li:last-child {
    border-radius: 0 0 5px 5px;
  }

  .menu-area .menu li:hover,
  .menu-area .menu li.open {
    border-color: hsl(var(--base));
  }

  .menu-area .menu li:hover>a,
  .menu-area .menu li.open>a {
    background: hsl(var(--base));
    color: #fff;
  }

  .menu-area .menu li:hover>a::after,
  .menu-area .menu li.open>a::after {
    color: #fff;
  }

  .menu-area .menu>li:first-child>a {
    border-top: 1px solid hsl(var(--base) / 0.2);
  }

  .menu-area .menu .login-reg-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }

  .menu-area .menu .login-reg-btn>a {
    border-radius: 5px;
    margin: 0 5px;
    background: hsl(var(--base));
  }

  .menu-area .menu .login-reg-btn>a:nth-of-type(even) {
    background: #fff;
    color: #dcf3ff;
  }

  .menu-area .menu .login-reg-btn .logout--btn {
    border-radius: 5px;
    margin: 10px 10px 0;
    background: hsl(var(--base));
    width: unset;
    display: inline-block;
  }

  .menu-area .menu .login-reg-btn .logout--btn:nth-of-type(even) {
    background: #fff;
    color: #dcf3ff;
  }
}

.menu-area .menu .submenu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 3px;
}

.menu-area .menu .submenu li a .icon {
  font-size: 24px;
  color: hsl(var(--base));
  width: 30px;
}

.menu-area .menu .submenu li a .cont {
  padding-left: 10px;
  width: calc(100% - 30px);
}

.menu-area .menu .submenu li a .cont .subtitle {
  margin: 0;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-area .menu .submenu li a .cont .info {
  font-size: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #a4bdce;
}

.menu-area .menu .submenu li:hover>a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.menu-area .menu .submenu li:hover>a::after {
  color: #fff;
}

@media (min-width: 992px) {
  .menu-area .menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .menu-area .menu li {
    padding: 5px;
    position: relative;
  }

  .menu-area .menu li .badge {
    font-size: 10px;
    padding: 2px 5px;
    margin-right: -7px;
  }

  .menu-area .menu li a {
    font-size: 14px;
    padding: 5px;
    font-weight: 500;
    color: #dcf3ff;
  }
}

@media (min-width: 992px) and (min-width: 1200px) {
  .menu-area .menu li a {
    padding: 10px;
  }
}

@media (min-width: 992px) and (min-width: 1400px) {
  .menu-area .menu li a {
    padding: 5px 10px;
  }
}

@media (min-width: 992px) {
  .menu-area .menu li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0d162e;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }

  .menu-area .menu li .submenu li {
    width: 100%;
    padding: 0;
    border-radius: 3px;
  }

  .menu-area .menu li .submenu li a {
    padding: 10px;
    color: #dcf3ff;
    text-transform: capitalize;
  }

  .menu-area .menu li .submenu li:last-child {
    border: none;
  }

  .menu-area .menu li .submenu li .submenu {
    top: -1px;
    left: 100%;
  }
}

@media (min-width: 992px) {
  .menu-area .menu li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
}

.menu-area .menu-close {
  display: none;
}

@media (max-width: 991px) {
  .menu-area {
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: right;
    z-index: 99;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    overflow-y: scroll;
    background: #0a1227;
    padding: 20px;
  }

  .menu-area::-webkit-scrollbar {
    display: none;
  }

  .menu-area .menu-close {
    color: #ea5455;
    font-size: 30px;
    position: absolute;
    left: 30px;
    top: 25px;
    display: block;
    z-index: 1;
  }

  .menu-area .badge {
    margin-left: 5px;
  }

  .menu-area.active {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }

  .menu-area .mega-menu-icon {
    padding: 5px !important;
    background: #0d162e;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 5px;
    margin-bottom: 40px;
  }
}

.remove-header-top {
  color: #ea5455;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
}

@media (min-width: 768px) {
  .remove-header-top {
    transform: translateY(-50%);
    top: 50%;
    right: 6px;
  }
}

.mega-menu-icon {
  position: relative;
}

.mega-menu-icon .mega-icon {
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: hsl(var(--base));
}

@media (min-width: 992px) {
  .mega-menu-icon .mega-menu {
    position: absolute;
    width: auto;
  }
}

.mega-menu {
  display: none;
  background: #0d162e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.mega-menu .mega-sub {
  margin: 10px;
  width: 870px;
  display: flex;
  flex-wrap: wrap;
}

.mega-menu .mega-sub li {
  padding: 0;
  width: calc(100% / 3);
}

@media (max-width: 991px) {
  .mega-menu .mega-sub li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.mega-menu .mega-sub li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 3px;
  padding: 10px 7px;
  border: none;
}

.mega-menu .mega-sub li a .icon {
  font-size: 24px;
  color: hsl(var(--base));
  width: 30px;
}

.mega-menu .mega-sub li a .cont {
  padding-left: 10px;
  width: calc(100% - 30px);
}

.mega-menu .mega-sub li a .cont .subtitle {
  margin: 0;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-menu .mega-sub li a .cont .info {
  font-size: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #a4bdce;
}

.mega-menu .mega-sub li a:hover {
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1199px) {
  .mega-menu .mega-sub {
    width: 700px;
  }
}

@media (max-width: 991px) {
  .mega-menu {
    border: none;
    padding: 0;
  }

  .mega-menu .mega-sub {
    width: 100%;
    border: 0;
    margin: 0;
  }

  .mega-menu .mega-sub li {
    width: 100%;
  }
}

.banner-section {
  padding: 100px 0;
  background-size: cover;
}

@media (max-width: 575px) {
  .banner-section {
    padding: 80px 0;
  }
}

.banner-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.banner-content .title {
  margin: 0;
  margin-bottom: 40px;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 40px;
}

.crp__item {
  padding: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(103, 113, 133, 0.2);
}

.crp__item .crp__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.crp__item .crp__top .thumb {
  margin-right: auto;
}

.crp__item .crp__top .thumb img {
  width: 40px;
}

.crp__item .crp__top .buy-trade {
  display: flex;
  margin: -5px;
  align-items: center;
}

.crp__item .crp__top .buy-trade a {
  font-size: 14px;
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.2);
  font-weight: 500;
  text-transform: capitalize;
  margin: 5px;
  padding: 2px 15px;
  font-family: "Nunito", sans-serif;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.crp__item .crp__top .buy-trade a:nth-child(2) {
  color: #28c76f;
  background: rgba(40, 199, 111, 0.2);
}

.crp__item .crp__top .buy-trade a:nth-child(2):hover {
  color: #fff;
  background: #28c76f;
}

.crp__item .crp__top .buy-trade a:hover {
  color: #fff;
  background: hsl(var(--base));
}

.crp__item .price {
  font-size: 15px;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .crp__item {
    padding: 20px 15px;
  }
}

@media screen and (max-width: 991px) and (min-width: 500px) {
  .crp__item {
    padding: 20px 15px;
  }

  .crp__item .subtitle {
    font-size: 16px;
  }
}

.banner-slider-wrapper {
  margin: -12px;
  margin-top: 68px;
}

.banner-slider-wrapper .slide-item {
  padding: 12px;
}

.apps-thumb img {
  width: 100%;
}

.hero-section {
  padding: 70px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.hero-section .title {
  margin: 0;
}

@media (min-width: 768px) {
  .hero-section .title {
    font-size: 42px;
  }
}

.hero-section {
  background: url(./img/banner-shape.png) #0d162e no-repeat center center;
  background-size: cover;
}

.dashboard-menu {
  background: #0a1227;
  padding-bottom: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  box-shadow: 0 0 15px rgba(220, 243, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-menu .user .title {
  margin-top: 20px;
}

.dashboard-menu .user .title a {
  color: #dcf3ff;
}

.dashboard-menu ul li {
  padding: 0;
}

.dashboard-menu ul li a {
  display: block;
  padding: 10px 30px;
  font-size: 16px;
  line-height: 1.5;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  font-family: "Nunito", sans-serif;
  color: #a4bdce;
}

.dashboard-menu ul li a i {
  margin-right: 7px;
  color: hsl(var(--base));
}

.dashboard-menu ul li a:hover,
.dashboard-menu ul li a.active {
  background: rgba(220, 243, 255, 0.1);
  color: hsl(var(--base));
  border-color: hsl(var(--base));
}

.dashboard-menu .side-sidebar-close-btn {
  right: 25px;
  top: 25px;
  display: none;
}

@media (max-width: 1199px) {
  .dashboard-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    -webkit-transition: 0.7s ease;
    -moz-transition: 0.7s ease;
    transition: 0.7s ease;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    overflow-y: auto;
    z-index: 9999;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  .dashboard-menu.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .dashboard-menu .side-sidebar-close-btn {
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
    color: #ea5455;
    font-size: 30px;
  }

  .dashboard-menu .user .title {
    margin-top: 20px;
  }

  .dashboard-menu ul li a:hover,
  .dashboard-menu ul li a.active {
    background: rgba(220, 243, 255, 0.1);
    color: hsl(var(--base));
    border-color: hsl(var(--base));
  }
}

.user {
  text-align: center;
  padding: 30px;
}

.user .thumb {
  width: 120px;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.user .thumb a {
  display: block;
}

.user .thumb img {
  width: 100%;
}

.user .content {
  text-transform: capitalize;
}

.dashboard-item {
  padding: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  box-shadow: 0 0 15px rgba(220, 243, 255, 0.1);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d162e;
  align-items: center;
  text-align: left;
}

.dashboard-item .dashboard-header {
  justify-content: center;
  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: #dcf3ff;
  background: hsl(var(--base));
  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(220, 243, 255, 0.9);
}

@media (max-width: 575px) {
  .dashboard-item {
    margin: 0 auto;
    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: flex-start;
}

.dashboard-item .cont .dashboard-header .title {
  font-size: 20px;
  line-height: 1;
}

.dashboard-item:hover {
  background: hsl(var(--base));
}

.dashboard-item:hover .title,
.dashboard-item:hover a {
  color: #fff;
}

.dashboard-item:hover .dashboard-icon {
  background: #fff !important;
  color: hsl(var(--base));
}

[class*="badge--"] {
  font-family: "Nunito", sans-serif;
}

.d-title {
  text-transform: capitalize;
  margin: 0;
  margin-bottom: 15px;
}

.user-profile {
  max-width: 350px;
}

@media (max-width: 991px) {
  .user-profile {
    margin: 0 auto 30px;
  }
}

.user-profile img {
  width: 100%;
}

.user-profile .thumb {
  position: relative;
  margin: 0 auto -50px;
  max-width: calc(100% - 30px);
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  height: 220px;
}

.user-profile .thumb img {
  width: 100%;
}

.user-profile .content {
  background: #0a1227;
  text-align: center;
  padding: 80px 15px 30px;
  -webkit-border-radius: 30px 30px 0 0;
  -moz-border-radius: 30px 30px 0 0;
  border-radius: 30px 30px 0 0;
}

.user-profile .content .title {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 22px;
}

.profile-area {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

@media (max-width: 575px) {
  .profile-area {
    padding: 0;
    background: transparent;
    border: none;
  }
}

.mb-20 {
  margin-bottom: 20px;
}

.select-item-2 .select-bar {
  height: 50px;
}

.select-item-2 .select-bar .current {
  line-height: 50px;
}

.select-item-2 .list {
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
}

.custom--card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(220, 243, 255, 0.1);
  background: #0d162e;
}

.custom--card .card-header,
.custom--card .card-footer {
  border: none;
  background: #0d162e;
  padding: 10px 15px;
  text-align: center;
}

.custom--card .card-header *,
.custom--card .card-footer * {
  margin: 0;
}

.custom--card .card-header {
  background: rgba(255, 255, 255, 0.1);
}

.custom--card .card-header .title {
  color: #fff;
}

.custom--card .card-body {
  border: none;
  padding: 24px;
}

.custom--card .card-body img {
  width: 100%;
}

.custom--card button.form--control {
  background: hsl(var(--base)) !important;
  border: none;
  color: #fff !important;
}

.custom--card .form--control[readonly] {
  background: #0d162e !important;
}

.custom--modal .modal-content {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(220, 243, 255, 0.1);
  background: #0d162e;
}

.custom--modal .modal-content .modal-header,
.custom--modal .modal-content .modal-footer {
  background: #0d162e;
  padding: 10px 15px;
  text-align: center;
}

.custom--modal .modal-content .modal-footer {
  border-top: 1px solid rgba(220, 243, 255, 0.1);
}

.custom--modal .modal-content .modal-header {
  background: rgba(255, 255, 255, 0.1);
  border: none;
}

.custom--modal .modal-content .modal-header .title {
  margin: 0;
  color: #fff;
}

.custom--modal .modal-content .modal-body {
  border: none;
}

.custom--modal .modal-content .modal-body img {
  width: 100%;
}

.custom--modal .modal-content button.form--control {
  background: hsl(var(--base)) !important;
  border: none;
  color: #fff !important;
}

.custom--modal .modal-content .form--control[readonly] {
  background: #0d162e !important;
}

.custom--modal .modal-content .btn-close {
  background-color: #fff;
}

.two-factor-content {
  padding: 20px;
}

.two-factor-content .two__fact__text {
  margin-bottom: 25px;
}

@media (max-width: 575px) {
  .two-factor-content {
    padding: 0;
  }
}

.subtitle--bordered {
  margin: 0;
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chart--size {
  width: 100%;
  height: 400px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  background: #0d162e;
}

@media (max-width: 1399px) {
  .chart--size {
    height: 350px;
  }
}

@media (max-width: 1199px) {
  .chart--size {
    height: 250px;
  }
}

.badge {
  font-weight: 400;
  padding: 6px 10px 4px;
  display: inline-block;
}

.dashboard-menu-open {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin-left: auto;
  background: hsl(var(--base));
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.custom--card .meta-info {
  justify-content: space-between;
  padding: 10px 10px 0;
}

.custom--card .meta-info .item {
  margin-bottom: 10px;
  color: #dcf3ff;
  font-weight: 500;
  font-family: "Nunito", sans-serif;
}

.deposit-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.deposit-group .input-group {
  width: calc(100% - 200px);
}

.deposit-group .deposit--label {
  max-width: 200px;
  font-family: "Nunito", sans-serif;
}

@media (max-width: 767px) {
  .deposit-group .input-group {
    width: calc(100% - 160px);
  }

  .deposit-group .deposit--label {
    max-width: 160px;
  }
}

@media (max-width: 575px) {

  .deposit-group .input-group,
  .deposit-group .deposit--label {
    width: 100%;
  }

  .deposit-group .deposit--label {
    margin-bottom: 10px;
  }
}

.input-group .input-group-text {
  color: #fff;
  border: none;
}

.remove-image {
  position: absolute;
  right: 25px;
  top: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #ea5455;
  color: #fff;
  border-radius: 3px;
  display: none;
  z-index: 9;
  cursor: pointer;
}

.user-profile {
  position: relative;
}

.two-factor-scan {
  width: 180px;
  margin-left: auto;
  margin-right: auto;
}

.change-wrapper {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

@media (max-width: 575px) {
  .change-wrapper {
    padding: 20px;
  }
}

.change-wrapper,
.profile-area {
  box-shadow: 0 0 15px rgba(220, 243, 255, 0.1);
}

.widget__ticket {
  background: #0a1227;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(220, 243, 255, 0.1);
}

.widget__ticket-title {
  margin: 0;
  margin-bottom: 25px;
}

.widget__ticket-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: hsl(var(--base));
}

.widget__ticket .track-form .form-control {
  height: 50px;
  box-shadow: none;
  padding: 0 15px;
  font-size: 14px;
}

.widget__ticket .track-form .cmn--btn {
  height: 45px;
  width: 100%;
}

.widget__ticket:not(:last-child) {
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 450px) {
  .widget__ticket {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.form--group {
  margin-bottom: 20px;
}

.form--label {
  margin-bottom: 10px;
}

.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: #0d162e;
}

.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;
  border-left: 1px solid rgba(220, 243, 255, 0.1);
}

.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--section .reply-item {
  background: #0a1227;
}

.modal-title {
  margin: 0;
}

.cmn--table {
  color: #a4bdce;
  text-align: center;
}

.cmn--table thead th {
  background: hsl(var(--base));
  font-family: "Nunito", sans-serif;
  text-align: center;
  border: none !important;
  color: #fff;
  padding: 1rem 0.5rem 0.9rem;
  font-weight: 500;
  text-transform: capitalize;
}

.cmn--table thead th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.cmn--table .thumb img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.cmn--table .price {
  color: #28c76f;
}

.cmn--table tbody tr td {
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
  .cmn--table tbody tr {
    box-shadow: 0 0 5px rgba(220, 243, 255, 0.05);
    border: none;
  }

  .cmn--table tbody tr td {
    border-bottom: none;
    border-top: none;
  }

  .cmn--table tbody tr td:last-child {
    border-right: none;
  }

  .cmn--table tbody tr td:first-child {
    border-left: none;
  }

  .cmn--table tr.d-block {
    height: 15px;
    box-shadow: none;
  }
}

@media (max-width: 991px) {
  .cmn--table thead {
    display: none;
  }

  .cmn--table tbody tr {
    display: block;
  }

  .cmn--table tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none;
  }

  .cmn--table tbody tr td::before {
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    color: #dcf3ff;
    content: attr(data-label);
    text-align: left;
  }

  .cmn--table tbody tr:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cmn--table tbody tr:nth-of-type(2n + 1) {
    background: #0d162e;
  }
}

.badge {
  text-transform: capitalize;
  font-family: "Nunito", sans-serif;
}

.h--50px {
  height: 50px;
}

.how__item {
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.how__item .shape-bg {
  position: absolute;
  left: 100%;
  transform: translateX(-50%);
  width: 100%;
  top: 33px;
  height: 25px;
  background: url(./icons/how-shape.png) no-repeat center center;
  background-size: contain;
}

@media (max-width: 991px) {
  .how__item .shape-bg {
    display: none;
  }
}

.how__item .shape-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.how__item.active .how__thumb {
  background: #28c76f;
  border-color: transparent;
  transform: scale(1);
}

.how__item.active .how__thumb * {
  display: none;
}

.how__item.active .how__thumb::after {
  content: "\f00c";
  font-family: "Line Awesome Free";
  font-weight: 700;
  position: relative;
  color: #fff;
}

.how__item .title {
  margin-bottom: 20px;
}

.how__item p {
  font-size: 14px;
}

.how__item .btn {
  font-size: 14px;
  padding: 0px 10px;
}

div[class*="col"]:nth-of-type(2n)>.how__item .shape-bg {
  background: url(./icons/how-shape2.png) no-repeat center center;
}

.how__thumb {
  width: 80px;
  height: 80px;
  font-size: 30px;
  text-align: center;
  line-height: 78px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: rotate(45deg);
  color: hsl(var(--base));
  background: #0d162e;
  margin: 0 auto 25px;
}

.how__thumb i {
  transform: rotate(-45deg);
}

div[class*="col"]:nth-of-type(3n + 3) .how__item .shape-bg {
  display: none;
}

.how__wrapper {
  padding: 50px 0;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
}

.service-item {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}

.service-item a {
  display: block;
}

.service-slider {
  position: relative;
}

.service-slider .owl-prev,
.service-slider .owl-next {
  height: 50px;
  margin-top: -25px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  top: 50%;
  z-index: 9;
  background: #0d162e;
  border: 1px solid rgba(236, 129, 13, 0.4);
  font-size: 20px;
  color: hsl(var(--base));
  border-radius: 5px;
}

.service-slider .owl-prev:hover,
.service-slider .owl-next:hover {
  background: #fff;
}

@media screen and (max-width: 575px) {

  .service-slider .owl-prev,
  .service-slider .owl-next {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
}

.service-slider .owl-prev {
  left: -10px;
}

.service-slider .owl-next {
  right: -10px;
}

@media screen and (min-width: 576px) {
  .service-slider .owl-prev {
    left: -25px;
  }

  .service-slider .owl-next {
    right: -25px;
  }
}

@media screen and (min-width: 1500px) {
  .service-slider .owl-next {
    right: -40px;
  }

  .service-slider .owl-prev {
    left: -40px;
  }
}

.about-content .title {
  margin-bottom: 10px;
}

.about-content .section__header {
  margin-bottom: 40px;
}

.about-content ul {
  margin-bottom: 10px;
}

.about-content ul li {
  padding: 0;
  position: relative;
}

.about-content ul li:not(:last-child) {
  margin-bottom: 10px;
}

.about-content ul li::before {
  position: absolute;
  content: "\f111";
  font-family: "Line Awesome Free";
  font-weight: 600;
  left: 0;
  top: 4px;
  color: hsl(var(--base));
  font-size: 12px;
}

.about-content ul li a {
  color: #a4bdce;
  padding-left: 25px;
}

.about-content ul li a:hover {
  color: hsl(var(--base));
  text-decoration: underline;
}

.market--table {
  color: #a4bdce;
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
}

.market--table thead {
  background-color: hsl(var(--base)) !important;
}

.market--table thead th {
  font-family: "Nunito", sans-serif;
  text-align: center;
  border: none !important;
  font-weight: 600;
  text-transform: capitalize;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
}

.market--table thead th:first-child {
  text-align: left;
  padding-left: 20px;
}

.market--table thead th:last-child {
  text-align: right;
  padding-right: 20px;
}

@media (max-width: 991px) {
  .market--table thead th {
    font-size: 14px;
  }

  .market--table tbody td {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .market--table thead {
    font-size: 22px;
  }
}

.market--table .crypto-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.market--table .crypto-name h6 {
  padding-left: 10px;
  font-size: 16px;
}

@media (min-width: 768px) {
  .market--table .crypto-name {
    max-width: 200px;
    justify-content: flex-start;
    padding-left: 12px;
  }
}

.market--table .thumb img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .market--table .thumb img {
    width: 20px;
    height: 20px;
  }
}

.market--table .price {
  color: #28c76f;
}

.market--table tbody tr td {
  vertical-align: middle;
}

@media (min-width: 768px) {
  .market--table tbody tr {
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.03);
  }

  .market--table tbody tr td {
    border-bottom: none;
    border-top: none;
  }

  .market--table tbody tr td:last-child {
    border-right: none;
    text-align: right;
    padding-right: 20px;
  }

  .market--table tbody tr td:first-child {
    border-left: none;
  }

  .market--table tbody tr:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .market--table tr.d-block {
    height: 10px;
    box-shadow: none !important;
    background: transparent !important;
  }
}

@media (max-width: 767px) {
  .market--table thead {
    display: none;
  }

  .market--table tbody tr {
    display: block;
  }

  .market--table tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: none;
  }

  .market--table tbody tr td:not(:last-child) {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  }

  .market--table tbody tr td::before {
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    color: #dcf3ff;
    content: attr(data-label);
  }

  .market--table tbody tr:nth-child(even) {
    border-bottom: none;
  }

  .market--table tbody tr:nth-of-type(2n + 1) {
    background: rgba(255, 255, 255, 0.05);
  }
}

.badge {
  font-family: "Nunito", sans-serif;
}

.section__header {
  max-width: 720px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .section__header {
    margin-bottom: 50px;
  }

  .section__header p {
    font-size: 20px;
  }
}

.section__header .title {
  margin-bottom: 20px;
}

.section__header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.chart-1 {
  height: 60px;
}

@media (min-width: 768px) {
  .chart-1 {
    max-width: 200px;
    margin: 0 auto;
  }
}

.about-thumb img {
  width: 100%;
}

.app-btn-area {
  display: flex;
  margin: -5px;
  flex-wrap: wrap;
}

.app-btn-area>div {
  padding: 5px;
  width: calc(100% / 3);
}

.app-btn-area>div:nth-child(2) .app-btn {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
  .app-btn-area>div {
    width: calc(100% / 4);
  }
}

@media screen and (max-width: 425px) {
  .app-btn-area>div {
    width: calc(100% / 3);
  }
}

.app-btn {
  padding: 20px 10px;
  display: block;
  color: #a4bdce;
  font-size: 14px;
  text-align: center;
  text-transform: capitalize;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.app-btn span {
  display: block;
  margin-top: 5px;
}

.app-btn i {
  font-size: 30px;
  color: hsl(var(--base));
}

.app-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.agent-wrapper {
  position: relative;
  background: #0d162e;
  min-height: 490px;
  overflow: hidden;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.agent-wrapper .btn-area {
  position: relative;
  z-index: 1;
}

@media (max-width: 575px) {
  .agent-wrapper {
    min-height: 200px;
    padding: 60px 20px;
  }
}

.agent-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: img_up 30s linear infinite;
  -webkit-animation: img_up 30s linear infinite;
  -moz-animation: img_up 30s linear infinite;
}

.agent-area img {
  width: 100%;
  min-width: 1170px;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.agent-area:nth-of-type(2) {
  top: -100%;
}

.agent-area:nth-of-type(3) {
  top: 100%;
}

@keyframes img_up {
  0% {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.9;
  }

  99.99% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.account-section {
  height: 100vh;
  overflow-y: auto;
}

.account__section-wrapper {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  justify-content: space-between;
}

.account__section-wrapper .account__section-content {
  width: 100%;
  max-width: 500px;
  padding: 80px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.account__section-wrapper .account__section-content .section__header .section__title {
  display: flex;
  align-items: flex-end;
}

.account__section-wrapper .account__section-content .section__header .section__title::after {
  display: inline-block;
  content: "";
  height: 2px;
  width: 40px;
  background: hsl(var(--base));
  margin-top: 10px;
}

@media screen and (max-width: 390px) {
  .account__section-wrapper .account__section-content {
    padding: 50px 20px;
  }
}

.account__section-wrapper .account__section-content.account__section-content-reg {
  max-width: 600px;
}

.account__section-wrapper .account__section-content .logo {
  max-width: 300px;
}

.account__section-wrapper .account__section-content .logo a {
  display: block;
  height: 60px;
}

.account__section-wrapper .account__section-content .logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}

@media (max-width: 575px) {
  .account__section-wrapper .account__section-content .logo {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.account__section-wrapper .account__section-thumb {
  flex-grow: 1;
}

.account__section-wrapper .account__section-thumb .logo {
  margin: 0 auto;
  padding: 30px;
  max-width: 300px;
}

.account__section-wrapper .account__section-thumb .logo a {
  display: block;
  height: 60px;
}

.account__section-wrapper .account__section-thumb .logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form--label-2 {
  text-transform: capitalize;
  font-family: "Nunito", sans-serif;
  color: #fff;
  display: block;
  margin-bottom: 0;
}

.form--control-2 {
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0;
  height: 30px;
}

.form--control-2::placeholder {
  color: #fff;
}

.form--control-2:focus {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(236, 129, 13, 0.8);
  outline: none;
  box-shadow: none;
  color: #fff;
}

.or {
  margin: 35px 0;
  color: #fff;
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
  position: relative;
  text-align: center;
}

.or::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  height: 1px;
}

.or span {
  padding: 10px;
  position: relative;
  z-index: 1;
}

.nav--links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.nav--links li {
  padding: 5px 12px;
}

.nav--links li a {
  font-size: 14px;
  color: #a4bdce;
  padding: 5px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.nav--links li a:hover {
  color: hsl(var(--base));
  border-color: hsl(var(--base));
}

.nav--links li a.active {
  background: hsl(var(--base));
  font-weight: 600;
  color: #fff;
}

.hero-content .title {
  text-transform: capitalize;
}

.contact__wrapper__1,
.contact__wrapper__2 .contact__wrapper__2_inner {
  padding: 50px 30px 30px;
  border: 1px dashed 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: 100%;
}

@media (min-width: 992px) {
  .contact__wrapper__1 {
    max-width: 900px;
    padding-right: 300px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .contact__wrapper__1 {
    max-width: 800px;
  }
}

@media (max-width: 991px) {
  .contact__wrapper__1 {
    margin-bottom: 40px;
  }
}

.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: 100%;
}

@media (min-width: 992px) {
  .contact__wrapper__2 {
    position: relative;
    z-index: 1;
    width: calc(100% - 900px);
  }

  .contact__wrapper__2 .contact__wrapper__2_inner {
    margin-left: -270px;
    margin-top: 270px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .contact__wrapper__2 {
    width: calc(100% - 800px);
  }
}

@media (max-width: 991px) {
  .contact__wrapper__2 .contact__wrapper__2_inner {
    background: #0a1227 !important;
  }

  .contact__wrapper__2 .contact__wrapper__2_inner.bg--body {
    background: #0d162e !important;
  }
}

.maps {
  min-height: 300px;
}

.maps iframe {
  width: 100%;
  height: 380px;
}

.form--control {
  background: #0d162e !important;
  height: 52px;
  box-shadow: none !important;
  outline: none !important;
}

.form--control[readonly] {
  background: #0a1227 !important;
}

textarea.form--control {
  height: 120px;
}

.bg--section .form--control {
  background: #0a1227 !important;
}

.bg--section .form--control[readonly] {
  background: #0a1227 !important;
}

.input-group .input-group-text {
  color: #fff;
  border: none;
  background: hsl(var(--base));
  ;
}

.form--label {
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
}

select.form--control {
  appearance: auto;
}

.select-bar.form--control {
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  margin: 0;
  color: #fff;
}

.form--control {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.form--control::placeholder {
  color: #a4bdce7e;
}

.form--control:focus {
  color: #fff;
}

.form--control .current {
  color: #fff;
}

.form--control[type="file"] {
  height: unset;
  line-height: 50px;
  padding: 0 10px;
}

.contact__item {
  height: 100%;
  padding: 32px 30px;
  border: 1px dashed 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: #0a1227;
  font-size: 24px;
  color: hsl(var(--base));
  -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: hsl(var(--base));
}

.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: hsl(var(--base));
  color: #fff;
}

.middle-chart {
  height: 480px;
}

.chart-2 {
  height: 398px;
}

.chart-2 iframe {
  width: 100%;
}

.chart-middle-bottom {
  height: 370px;
}

@media (min-width: 992px) {
  .chart-middle-bottom {
    height: 320px;
  }
}

.exchange__widget {
  background: #0a1227;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 30px;
  border: 1px dashed hsl(var(--base) / 0.2);
}

.exchange__widget-title {
  margin: 0;
  margin-bottom: 25px;
}

.exchange__widget-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: hsl(var(--base));
}

.exchange__widget .track-form .form-control {
  height: 50px;
  box-shadow: none;
  padding: 0 15px;
  font-size: 14px;
}

.exchange__widget .track-form .cmn--btn {
  height: 45px;
  width: 100%;
}

.exchange__widget:not(:last-child) {
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 450px) {
  .exchange__widget {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.form--control {
  height: 50px;
  box-shadow: none;
  outline: none;
}

.form--control:focus {
  box-shadow: none;
}

.exchange__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.exchange__item-thumb {
  width: 90px;
  height: 90px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 5px solid rgba(236, 129, 13, 0.3);
  overflow: hidden;
}

.exchange__item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exchange__item-content {
  width: calc(100% - 120px);
}

.exchange__item-content .rate--txt {
  font-weight: 500;
  font-family: "Nunito", sans-serif;
  font-size: 15px;
}

@media screen and (max-width: 450px) {
  .exchange__item .exchange__item-thumb {
    display: none;
  }

  .exchange__item .exchange__item-content {
    width: 100%;
  }
}

@media (min-width: 768px) {
  div[class*="col"]:nth-of-type(even)>.exchange__item {
    flex-direction: row-reverse;
  }
}

.exchange__wrapper {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 450px) {
  .exchange__wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.faq__item .faq__title {
  cursor: pointer;
  padding-right: 45px;
  position: relative;
}

.faq__item .faq__title .title {
  line-height: 1.2;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  font-size: 18px;
}

.faq__item .faq__title .right--icon {
  position: absolute;
  top: 50%;
  right: 0;
}

.faq__item .faq__title .right--icon::before,
.faq__item .faq__title .right--icon::after {
  right: 0;
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background: #dcf3ff;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.faq__item .faq__title .right--icon::before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.faq__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
}

.faq__item:not(:first-child) {
  padding-top: 20px;
}

.faq__item .faq__title .title {
  margin: 0;
}

.faq__item .faq__content {
  display: none;
  padding-top: 25px;
  padding-bottom: 5px;
}

.faq__item .faq__content p:not(:last-child) {
  margin-bottom: 20px;
}

.faq__item.open .faq__title .title {
  color: hsl(var(--base));
}

.faq__item.open .faq__title .right--icon::before {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  background: hsl(var(--base));
  z-index: 1;
}

.faq__item.active .faq__content {
  display: block;
}

.sliderContainer {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 25px;
  z-index: 1;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  height: 10px !important;
  width: 100%;
  border-radius: 10px;
  background-color: hsl(var(--base) / 0.2);
  outline: none;
  margin-top: 25px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: hsl(var(--base));
  cursor: pointer;
  border: 3px solid #fff;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  border: 3px solid hsl(var(--base));
}

.output {
  color: hsl(var(--base));
  font-size: 14px;
  line-height: 1;
  position: absolute;
  bottom: calc(100% + 12px);
  transform: translateX(50%);
  right: 0;
}

.output-fill {
  height: 10px !important;
  border-radius: 10px;
  background-color: hsl(var(--base));
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  z-index: -1;
}

.why__item {
  padding: 35px 25px 40px;
  background: #0d162e;
  border: 1px solid rgba(236, 129, 13, 0.1);
  height: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.why__item .why__title {
  margin-bottom: 25px;
  font-size: 20px;
  color: hsl(var(--base));
}

.partner-thumb {
  position: relative;
  height: 80px;
  overflow: hidden;
  display: block;
  text-align: center;
}

@media (max-width: 575px) {
  .partner-thumb {
    height: 60px;
  }
}

.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);
}

.testimonial-item {
  text-align: center;
  margin: 15px;
}

.testimonial-item .testimonial-thumb {
  margin: 0 auto;
  width: 120px;
}

.testimonial-item .testimonial-thumb a {
  height: 120px;
  display: block;
}

.testimonial-item .testimonial-thumb img {
  height: 120px;
  width: 120px;
  object-fit: cover;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.testimonial-item .testimonial-thumb .shape {
  display: block;
  height: 40px;
  width: 4px;
  background: hsl(var(--base));
  margin: 10px auto 20px;
}

@media (max-width: 575px) {
  .testimonial-item .testimonial-thumb .shape {
    height: 30px;
  }
}

.testimonial-item .testimonial-content {
  width: 100%;
  position: relative;
}

.testimonial-item .testimonial-content::before {
  top: 70%;
  line-height: 1;
  font-family: "Line Awesome Free";
  content: "\f10d";
  font-weight: 900;
  font-size: 200px;
  z-index: -1;
  color: rgba(236, 129, 13, 0.1);
}

.testimonial-item .testimonial-content .title {
  margin-top: 0;
  font-size: 22px;
  text-transform: capitalize;
}

.testimonial-item .testimonial-content span {
  display: block;
  margin-bottom: 24px;
}

.testimonial-item .testimonial-content p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0 !important;
  color: rgba(255, 255, 255, 0.9);
}

.owl-item:nth-of-type(even) .testimonial-item {
  flex-direction: column-reverse;
}

.owl-item:nth-of-type(even) .testimonial-item .testimonial-thumb {
  flex-direction: column-reverse;
}

.owl-item:nth-of-type(even) .testimonial-item .testimonial-thumb .shape {
  margin: 20px auto 10px;
}

.owl-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 9;
  width: 100%;
  margin: -5px;
  margin-top: 30px;
}

.owl-dots .owl-dot {
  width: 10px;
  height: 8px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: rgba(236, 129, 13, 0.3);
  margin: 4px;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.owl-dots .owl-dot.active {
  background: hsl(var(--base));
  width: 25px;
}

.counter-item {
  padding: 40px 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #0d162e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  overflow: hidden;
  color: #fff;
  position: relative;
}

.counter-item .counter-header {
  display: flex;
  align-items: center;
}

.counter-item .counter-header .title {
  margin: 0;
  color: hsl(var(--base));
}

.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: 0.2;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.counter-item:hover .icon {
  opacity: 0.4;
  -webkit-transform: scale(1.8);
  -ms-transform: scale(1.8);
  transform: scale(1.8);
}

.preloader {
  background: #0d162e;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#preloader {
  height: 40px;
  width: 40px;
  position: relative;
}

#preloader:before {
  content: "";
  display: block;
  position: absolute;
  left: -1px;
  top: -1px;
  height: 100%;
  width: 100%;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
  border: 1px solid hsl(var(--base));
  border-top: 1px solid transparent;
  border-radius: 100%;
}

#preloader>.icon {
  position: absolute;
  top: 22%;
  left: 22%;
  height: 56%;
  width: 56%;
  object-fit: contain;
  -webkit-animation: wink 1s ease-in-out infinite alternate;
  animation: wink 1s ease-in-out infinite alternate;
}

@media only screen and (min-width: 768px) {
  #preloader {
    height: 60px;
    width: 60px;
  }

  #preloader:before {
    left: -2px;
    top: -2px;
    border-top-width: 2px;
    border-left-width: 2px;
    border-bottom-width: 2px;
    border-right-width: 2px;
  }
}

@media only screen and (min-width: 1200px) {
  #preloader {
    height: 80px;
    width: 80px;
  }
}

@-webkit-keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

@-webkit-keyframes wink {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes wink {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*Blog Section Starts Here*/
.post__item {
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid hsl(var(--base) / 0.1);
  /* border: 1px solid rgba(236, 129, 13, 0.1); */
  background: #0d162e;
}

.post__item:hover {
  box-shadow: 0 0 0.075rem hsl(var(--base) / 0.8),
    0 0 0.075rem hsl(var(--base) / 0.8), 0 0 0.75rem hsl(var(--base) / 0.2),
    0 0 0.3rem hsl(var(--base) / 0.2), 0 0 0.9rem hsl(var(--base) / 0.2),
    inset 0 0 0.6rem hsl(var(--base) / 0.2) !important;
  background: rgba(255, 255, 255, 0.05);
}

.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;
  top: 40px;
  left: 0;
  z-index: 1;
  padding: 4px 15px;
  -webkit-border-radius: 0 15px 15px 0;
  -moz-border-radius: 0 15px 15px 0;
  border-radius: 0 15px 15px 0;
  background: hsl(var(--base));
  color: #192a56;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  line-height: 24px;
  min-width: 100px;
  text-align: center;
}

.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:hover .post__thumb img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.post__item .post__read {
  font-family: "Nunito", sans-serif;
  margin-top: 25px;
  color: hsl(var(--base));
}

@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: hsl(var(--base));
  -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;
}

.meta__date {
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-left: 5px solid hsl(var(--base));
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  justify-content: space-between;
  padding: 5px;
  background: #0a1227;
}

.meta__date .meta__item {
  font-size: 14px;
  padding: 5px;
  display: flex;
  align-items: center;
}

.meta__date .meta__item i {
  font-size: 20px;
  color: hsl(var(--base));
  margin-right: 6px;
}

/*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;
}

/*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__title::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 2px;
  background: hsl(var(--base));
  margin-left: 5px;
}

.widget {
  border: 1px dashed rgba(236, 129, 13, 0.3);
  background: #0d162e;
}

.widget:not(:last-child) {
  margin-bottom: 30px;
}

.widget.widget__category ul li {
  padding: 0;
}

.widget.widget__category ul li a {
  text-decoration: none;
  color: #dcf3ff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(220, 243, 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__post__area ul li:last-child {
  padding-bottom: 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: #dcf3ff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.widget.widget__tags ul li a:hover,
.widget.widget__tags ul li a.active {
  background: hsl(var(--base));
  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: hsl(var(--base));
}

/*Blog Single*/
.post__details .post__header {
  margin-bottom: 40px;
}

.post__details .post__header .post__title {
  margin-bottom: 25px;
}

.post__details p {
  margin-bottom: 30px;
}

.post__details .post__thumb {
  height: 420px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  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: "Nunito", sans-serif;
  color: #dcf3ff;
  font-style: italic;
  text-align: center;
  padding: 0 30px;
  border-left: 3px solid hsl(var(--base));
}

@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: #0d162e;
  color: #dcf3ff;
  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: hsl(var(--base));
  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: hsl(var(--base));
  -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;
}

.widget {
  background: #0a1227;
  padding: 40px 30px 30px;
  border-radius: 5px;
  box-shadow: 0px 0px 20px rgba(22, 26, 57, 0.1);
  margin-bottom: 30px;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget .category-link li {
  padding: 0;
}

.widget .category-link li a {
  text-decoration: none;
  color: #dcf3ff;
  padding: 10px 0;
  border-bottom: 1px dashed hsl(var(--base) / 0.2);
  display: flex;
  justify-content: space-between;
}

.widget .category-link li a:hover {
  padding-left: 5px;
}

.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: hsl(var(--base));
  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__btn {
  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: hsl(var(--base));
  line-height: 75px;
  text-align: center;
}

.video__btn img {
  width: 100%;
}

.video__btn i {
  font-size: 24px;
  color: #fff;
}

.video__btn::before,
.video__btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 74px;
  background: hsl(var(--base));
  opacity: 0.15;
  z-index: -10;
}

.video__btn::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__btn::after {
  z-index: -10;
  -webkit-animation: outer-ripple 2000ms linear infinite;
  -moz-animation: outer-ripple 2000ms linear infinite;
  animation: outer-ripple 2000ms linear infinite;
}

.video__btn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cmn--btn {
  color: #fff;
  border-radius: 5px;
  line-height: 24px;
  font-weight: 700;
  padding: 14px 30px 12px;
  background-color: hsl(var(--base));
  /* background: hsl(var(--base)); */
  border: 1px solid hsl(var(--base) / 0.2);
  text-transform: uppercase;
  font-size: 16px;
  overflow: hidden;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Nunito", sans-serif;
}

.cmn--btn:hover {
  background: transparent;
  color: #dcf3ff;
}

.cmn--btn.btn--sm {
  padding: 7px 20px;
}

.cmn--btn.btn--md {
  padding: 10px 25px;
}

.cmn--btn.btn--lg {
  padding: 13px 35px;
}

.cmn--btn.btn--block {
  padding: 10px 25px;
  display: block;
}

.button-area {
  margin: -5px;
}

.button-area a {
  margin: 5px;
}

button.cmn--btn:hover {
  background: hsl(var(--base));
  border-color: hsl(var(--base)) !important;
  color: #fff;
}

.btn__grp {
  margin: -5px;
}

.btn__grp .cmn--btn {
  margin: 5px;
}

.btn__grp .cmn--btn:nth-of-type(2n) {
  background: transparent;
  color: hsl(var(--base));
  border: none;
  text-decoration: underline;
  font-size: 20px;
  text-transform: capitalize;
  padding: 0;
}

@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);
  }
}

.menu>li:nth-last-of-type(1) .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: 40px;
  height: 40px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  color: #dcf3ff;
  padding: 0;
  line-height: 40px;
  display: block;
  margin: 0;
  border: 1px solid rgba(220, 243, 255, 0.2);
  background: #0d162e;
}

.pagination .page-item a.active,
.pagination .page-item span.active {
  background: hsl(var(--base));
}

.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: hsl(var(--base));
  color: #fff;
  border-color: rgba(220, 243, 255, 0.2);
}

/* Todo: Disabled Pagination Color */
.pagination .page-item.disabled span {
  background: hsl(var(--base) / 0.3);
  border: none;
  color: #fff;
}

.border-bottom-color {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  background-color: transparent !important;
}

@media (max-width: 991px) {
  .cmn--table tbody tr:nth-child(odd) {
    background-color: #262d40;
  }

  .cmn--table tr th,
  .cmn--table tr td {
    display: block !important;
    padding-left: 45% !important;
    text-align: right !important;
    position: relative;
    padding-right: 15px;
  }

  .cmn--table tr th:first-child,
  .cmn--table tr td:first-child {
    border-top: none !important;
  }

  .cmn--table [data-label]::before {
    position: absolute;
    left: 15px;
    display: block;
    max-width: calc(43% - 15px);
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
  }
}

.menu-area .menu li a.active {
  color: hsl(var(--base));
}

.form-group {
  margin-bottom: 1rem;
}

.sidebar-submenu {
  display: none;
}

.sidebar-submenu.open-submenu {
  display: block;
}

.sidebar-submenu-list {
  padding: 5px 0;
  background: #12192d;
  border-radius: 6px;
  margin-top: 6px;
}

.sidebar-submenu-list__item {
  margin-bottom: 6px;
}

.sidebar-submenu-list__item.active>a {
  color: #fff;
  background-color: rgb(255 255 255 / 10%);
}

.sidebar-submenu-list__link {
  padding: 12px 15px;
  display: flex !important;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  position: relative;
}

.sidebar-submenu-list__link:hover {
  background-color: #000;
}

.sidebar-submenu-list__link .icon {
  display: flex;
}

.sidebar-menu-list__item.has-dropdown.active .sidebar-submenu {
  display: block;
}

.sidebar-menu-list__item.has-dropdown.active .sidebar-menu-list__link {
  background: rgba(220, 243, 255, 0.1);
  color: hsl(var(--base));
  border-color: hsl(var(--base));
}

.cmn--table thead th:first-child {
  border-radius: 6px 0 0 0;
}

@media (min-width: 992px) {
  .cmn--table thead th:first-child {
    text-align: left;
  }

  .cmn--table thead th:last-child {
    text-align: right;
  }

  .cmn--table tbody tr td:first-child {
    text-align: left;
  }

  .cmn--table tbody tr td:last-child {
    text-align: right;
  }
}

.cmn--table thead th:last-child {
  border-radius: 0 6px 0 0;
}

.cmn--table {
  background: rgb(17 25 46);
  border-radius: 6px;
}

.cmn--table tbody tr td,
.cmn--table thead tr th {
  font-size: 14px;
}

.input-group .form--control.flex-fill {
  border-radius: 0.25rem;
}

.list-group-item {
  color: #d5d5d5;
  background-color: transparent;
  border: 1px solid rgb(177 177 177 / 13%);
}

.support-card {
  border: 1px solid hsl(var(--base) / 0.2);
  border-radius: 16px;
  background: hsl(var(--white));
  margin-bottom: 15px;
}

.support-card__title {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .support-card__title {
    margin-bottom: 0;
  }
}

.support-card__head {
  padding: 12px 15px;
  border-bottom: 1px solid hsl(var(--base) / 0.2);
}

@media screen and (min-width: 768px) {
  .support-card__head {
    display: flex;
    justify-content: space-between;
  }
}

.support-card__date {
  display: block;
  line-height: 1;
}

.support-card__date i {
  margin-right: 4px;
}

.support-card__body {
  padding: 12px 15px;
}

.support-card__body-text {
  font-size: 14px;
  margin-bottom: 0;
  color: hsl(var(--dark) / 0.8);
}

.support-card__list {
  --gap: 0.5rem;
}

@media screen and (min-width: 768px) {
  .support-card__list {
    margin-top: 1rem;
  }
}

.support-card__file {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1;
  color: hsl(var(--base));
}

.support-list {
  padding: 0;
}

/*=========== Language Start =========== */

.dropdown-lang {
  margin-left: 30px !important;
}

@media (max-width: 1199px) {
  .dropdown-lang {
    margin-left: 0px !important;
  }
}

.dropdown-lang .language-btn .flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
}

.dropdown-lang .language-btn::after {
  color: #fff !important;
}

.dropdown-lang .language-text {
  color: hsl(var(--white));
  font-size: 16px;
}

.dropdown-lang .dropdown-menu {
  width: 112px !important;
  border: 1px solid rgb(31 43 77);
  border-radius: 8px;
  padding: 0px !important;
  max-height: 370px;
  overflow-y: auto;
  background-color: #ddd;
  z-index: 999;
  box-shadow: var(--box-shadow);
  transform: inherit;
  min-width: 130px !important;
}

.dropdown-lang .dropdown-menu.show {
  opacity: 1 !important;
  visibility: visible !important;
}

.dropdown-lang .dropdown-menu a {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: hsl(var(--white)) !important;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .dropdown-lang .dropdown-menu a:last-child {
    border-bottom: none;
  }
}

.dropdown-lang .dropdown-menu li:hover {
  color: #fff !important;
  background-color: hsl(var(--base)) !important;
}

.dropdown-lang .dropdown-menu li {
  border-bottom: none !important;
  padding: 4px 8px !important;
  background-color: #0a1227;
  color: white;
}

.dropdown-lang .dropdown-menu li:last-child a {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.dropdown-lang .dropdown-menu a .flag {
  width: 20px;
  margin-right: 10px;
  height: 15px;
}

.dropdown-lang .dropdown-menu li:last-child a {
  margin-bottom: 0px;
}

.dropdown-lang .a {
  color: #fff !important;
}

@media (max-width: 575px) {
  .dropdown-lang .dropdown-menu a {
    padding: 0px !important;
  }
}

/*=========== Language End =========== */

.sign-in-up a:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin: 0 5px;
  color: #dcf3ff;
}