.dark-theme {
  --background: #14151a;
  --bg-primary: #0b0e11;
  --bg-lighter: #14151a;
  --bg-shadow: rgba(231, 190, 27, 0.15);
  --card-bg: #2b2f36;
  --newbanner-bg:#14151a;
  --card-color: #2b2f36;
  --card-border: #0b0e11;
  --icon-color: #e7be1b;
  --title: #ffffff;
  --title-2: #ffffff;
  --banner-bg: #0b0e11;
  --text: #d4d4d4;
  --text-primary: #e7be1b;
  --text-nav: #ffffff;
  --text-2: #a8a7a7;
  --text-3: #ffffff;
  --text-4: #c6c6c6;
  --text-light: #a8a7a7;
  --footer-bg: transparent;
  --white-theme: none;
  --dark-theme: inline-block;
  --bg-1: #2b2f36;
  --bg-2: #111317;
  --form-border: #0b0e11;
  --dotted: #cfa809;
  --toggle-menu: rgb(255 255 255 / 90%);
  --yellow-white: #ffffff;
  --blue-white: #ffffff;
  --text-grey: #D9D9D9;
  --testimonial-card:#2B2F36;
  --hubsection:  rgba(11, 14, 17, 0.3);
  
}


.light-theme {
  --background: #ffffff;
  --bg-primary: #25346a;
  --bg-soft-primary: #e8e9eb;
  --bg-shadow: #344378;
  --bg-lighter: #485890;
  --card-bg: #ffffff;
  --card-color: #25346a;
  --card-border: #d4d4ed;
  --icon-color: #25346a;
  --title: #343a40;
  --title-2: #2e2e2e;
  --newbanner-bg:#25346A;
  --banner-bg: linear-gradient(100.71deg, #25346a 28.71%, #141558 87.17%);
  --text: #6f6f6f;
  --text-primary: #25346a;
  --text-nav: rgba(52, 58, 64, 0.9);
  --text-2: #6f6f6f;
  --text-3: #2e2e2e;
  --text-4: #c6c6c6;
  --text-light: #d0d1ff;
  --footer-bg: #fafafa;
  --white-theme: inline-block;
  --dark-theme: none;
  --bg-1: #f4f4f4;
  --bg-2: #f4f4f4;
  --form-border: #ced4da;
  --dotted: #9fa0e8;
  --toggle-menu: rgba(52, 58, 64, 0.9);
  --yellow-white: #e7be1b;
  --blue-white: #25346a;
  --text-grey: #D9D9D9;
  --testimonial-card: #FFFFFF;
  --hubsection: rgba(243, 246, 255, 0.4);

}

/*******************************
1.General
2.Helper
3.Navbar
4.Hero section
5.Testimonial
6.Pricing
7.Subscribe
8.Footer
9.Responsive
********************************/
/* @import url("https://fonts.googleapis.com/css?family=Rubik:400,500,700&display=swap"); */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap");

/*******************
    1.General
*******************/
html {
  scroll-behavior: smooth;
  box-sizing:border-box !important;
}
*,*::before,*::after{
box-sizing:inherit !important;
}
body {
  font-size: 0.9rem;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background: var(--background);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

a {
  color: var(--text-primary);
  text-decoration: none !important;
  outline: none;
}

a:hover {
  color: var(--text-primary);
  text-decoration: none !important;
  outline: none;
}

p {
  line-height: 1.8;
  font-size: 16px;
}

h1 {
  line-height: 54px;
  font-size: 2.35rem;
  font-weight: 700;
}
h2 {
  line-height: 1.4;
  font-size: 2.1rem;
  font-weight: 600;
}
h3 {
  line-height: 1.45;
  font-weight: 700;
  font-size: 1.8rem;
}
h4 {
  /* line-height: 1.4; */
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--title);
}
h5 {
  line-height: 1.6;
  font-size: 1.25rem;
}

.mt-7{
  margin-top: 7rem;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.pos-rel {
  position: relative;
  z-index: 1;
}

/*******************
    2.Helper
*******************/
.white-theme {
  display: var(--white-theme);
}
.black-theme {
  display: var(--dark-theme);
}
.card {
  border: none;
  -webkit-box-shadow: 0px 8px 35px 0px var(--card-border);
  box-shadow: 0px 8px 35px 0px var(--card-border);
  border-radius: 7px;
  margin-bottom: 30px;
  background: var(--card-bg);
}
.calculator-card {
  border: 1px solid var(--card-border);
  border-radius: 15px !important;
  max-width: 440px;
}
.section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.vertical-content {
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.bg-overlay {
  background-color: rgba(35, 37, 47, 0.7);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.small-title {
  letter-spacing: 1px;
  font-size: 14px;
}
.w-100 {
  width: 100%;
}
.btn {
  font-size: 0.9rem;
  padding: 0.58rem 1.4rem;
  font-weight: 500;
  min-width: 160px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 7px;
}

.btn:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  outline: none;
  text-decoration: none;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.btn-rounded {
  border-radius: 40px;
}
.rounded-bg {
  border-radius: 9px;
}

.bg-primary {
  background-color: var(--bg-primary) !important;
}

.bg-soft-primary {
  background-color: var(--bg-soft-primary) !important;
}
.text-underline {
  text-decoration: underline !important;
}
.bold {
  font-weight: 500;
}
.text-primary {
  color: var(--text-primary) !important;
}
.text-secondary {
  color: #e7be1b !important;
}

a.text-secondary:focus,
a.text-secondary:hover {
  color: #efc41c !important;
}

.icon-dual-primary {
  color: #2f55d4;
  fill: rgba(47, 85, 212, 0.2);
}

.btn-primary {
  color: #ffffff;
  background: #344684;
  border-color: #344684;
  -webkit-box-shadow: 0 8px 14px rgba(47, 85, 212, 0.2);
  box-shadow: 0 8px 14px rgba(47, 85, 212, 0.2);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #2f55d4;
  box-shadow: 0px 16px 31px -16px #2f55d4;
  background: #25346a;
  border-color: #25346a;
}

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

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.focus,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #2f55d4;
  box-shadow: 0px 16px 31px -16px #2f55d4;
  background: #294dc6;
  border-color: #294dc6;
}

.btn-secondary {
  color: #ffffff;
  background: #e7be1b;
  border-color: #e7be1b;
  -webkit-box-shadow: 0 8px 14px rgba(180, 149, 26, 0.2);
  box-shadow: 0 8px 14px rgba(180, 149, 26, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary.focus,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary .open > .dropdown-toggle.btn-secondary {
  box-shadow: 0px 16px 31px -16px rgba(180, 149, 26, 0.2);
  background: #e7bc13;
  border-color: #e7bc13;
}

.btn-outline-secondary {
  color: #e7be1b;
  border-color: #e7be1b;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary .open > .dropdown-toggle.btn-secondary {
  -webkit-box-shadow: 0px 16px 31px -16px #e7be1b;
  box-shadow: 0px 16px 31px -16px #e7be1b;
  background: #e7be1b;
  border-color: #e7be1b;
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  border-color: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.bg-success {
  background-color: #34d1bf !important;
}

.bg-soft-success {
  background-color: rgba(52, 209, 191, 0.1) !important;
}

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

.icon-dual-success {
  color: #28a745;
  fill: rgba(52, 209, 191, 0.2);
}

.btn-success {
  color: #ffffff;
  background: #34d1bf;
  border-color: #34d1bf;
  -webkit-box-shadow: 0 8px 14px rgba(52, 209, 191, 0.2);
  box-shadow: 0 8px 14px rgba(52, 209, 191, 0.2);
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.focus,
.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #34d1bf;
  box-shadow: 0px 16px 31px -16px #34d1bf;
  background: #2cc4b3;
  border-color: #2cc4b3;
}

.btn-outline-success {
  color: #34d1bf;
  border-color: #34d1bf;
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active,
.btn-outline-success.active,
.btn-outline-success.focus,
.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #34d1bf;
  box-shadow: 0px 16px 31px -16px #34d1bf;
  background: #2cc4b3;
  border-color: #2cc4b3;
}

.bg-info {
  background-color: #57b8ff !important;
}

.bg-soft-info {
  background-color: rgba(87, 184, 255, 0.1) !important;
}

.text-info {
  color: #57b8ff !important;
}

.icon-dual-info {
  color: #57b8ff;
  fill: rgba(87, 184, 255, 0.2);
}

.btn-info {
  color: #ffffff;
  background: #57b8ff;
  border-color: #57b8ff;
  -webkit-box-shadow: 0 8px 14px rgba(87, 184, 255, 0.2);
  box-shadow: 0 8px 14px rgba(87, 184, 255, 0.2);
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.focus,
.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #57b8ff;
  box-shadow: 0px 16px 31px -16px #57b8ff;
  background: #43afff;
  border-color: #43afff;
}

.btn-outline-info {
  color: #57b8ff;
  border-color: #57b8ff;
}

.btn-outline-info:hover,
.btn-outline-info:focus,
.btn-outline-info:active,
.btn-outline-info.active,
.btn-outline-info.focus,
.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #57b8ff;
  box-shadow: 0px 16px 31px -16px #57b8ff;
  background: #43afff;
  border-color: #43afff;
}

.bg-warning {
  background-color: #fbb13c !important;
}

.bg-soft-warning {
  background-color: rgba(251, 177, 60, 0.1) !important;
}

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

.icon-dual-warning {
  color: #fbb13c;
  fill: rgba(251, 177, 60, 0.2);
}

.btn-warning {
  color: #ffffff;
  background: #fbb13c;
  border-color: #fbb13c;
  -webkit-box-shadow: 0 8px 14px rgba(251, 177, 60, 0.2);
  box-shadow: 0 8px 14px rgba(251, 177, 60, 0.2);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.focus,
.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #fbb13c;
  box-shadow: 0px 16px 31px -16px #fbb13c;
  background: #fba928;
  border-color: #fba928;
}

.btn-outline-warning {
  color: #fbb13c;
  border-color: #fbb13c;
}

.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:active,
.btn-outline-warning.active,
.btn-outline-warning.focus,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #fbb13c;
  box-shadow: 0px 16px 31px -16px #fbb13c;
  background: #fba928;
  border-color: #fba928;
}

.bg-danger {
  background-color: #fe6847 !important;
}

.bg-soft-danger {
  background-color: rgba(254, 104, 71, 0.1) !important;
}

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

.icon-dual-danger {
  color: #fe6847;
  fill: rgba(254, 104, 71, 0.2);
}

.btn-danger {
  color: #ffffff;
  background: #fe6847;
  border-color: #fe6847;
  -webkit-box-shadow: 0 8px 14px rgba(254, 104, 71, 0.2);
  box-shadow: 0 8px 14px rgba(254, 104, 71, 0.2);
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.focus,
.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #fe6847;
  box-shadow: 0px 16px 31px -16px #fe6847;
  background: #fe5733;
  border-color: #fe5733;
}

.btn-outline-danger {
  color: #fe6847;
  border-color: #fe6847;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:active,
.btn-outline-danger.active,
.btn-outline-danger.focus,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #fe6847;
  box-shadow: 0px 16px 31px -16px #fe6847;
  background: #fe5733;
  border-color: #fe5733;
}

.bg-dark {
  background-color: #343a40 !important;
}

.bg-soft-dark {
  background-color: rgba(52, 58, 64, 0.1) !important;
}

.text-body {
  color: var(--text-2) !important;
}
.text-dark {
  color: var(--title) !important;
}

.icon-dual-dark {
  color: #343a40;
  fill: rgba(52, 58, 64, 0.2);
}

.btn-dark {
  color: #ffffff;
  background: #343a40;
  border-color: #343a40;
  -webkit-box-shadow: 0 8px 14px rgba(52, 58, 64, 0.2);
  box-shadow: 0 8px 14px rgba(52, 58, 64, 0.2);
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active,
.btn-dark.focus,
.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #343a40;
  box-shadow: 0px 16px 31px -16px #343a40;
  background: #2b3035;
  border-color: #2b3035;
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active,
.btn-outline-dark.active,
.btn-outline-dark.focus,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #343a40;
  box-shadow: 0px 16px 31px -16px #343a40;
  background: #2b3035;
  border-color: #2b3035;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef !important;
  opacity: 1;
}


.bg-muted {
  background-color: #a0a9b1 !important;
}

.bg-soft-muted {
  background-color: rgba(160, 169, 177, 0.1) !important;
}

.text-muted {
  color: #a0a9b1 !important;
}

.icon-dual-muted {
  color: #a0a9b1;
  fill: rgba(160, 169, 177, 0.2);
}

.btn-muted {
  color: #ffffff;
  background: #ffffff26;
  /* border-color: #a0a9b1; */
  /* -webkit-box-shadow: 0 8px 14px rgba(160, 169, 177, 0.2); */
  /* box-shadow: 0 8px 14px rgba(160, 169, 177, 0.2);*/
}

.btn-muted:hover,
.btn-muted:focus,
.btn-muted:active,
.btn-muted.active,
.btn-muted.focus,
.btn-muted:not(:disabled):not(.disabled):active,
.btn-muted:not(:disabled):not(.disabled):active:focus,
.btn-muted .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #a0a9b1;
  box-shadow: 0px 16px 31px -16px #a0a9b1;
  background: #959fa8;
  border-color: #959fa8;
}

.btn-outline-muted {
  color: #a0a9b1;
  border-color: #a0a9b1;
}

.btn-outline-muted:hover,
.btn-outline-muted:focus,
.btn-outline-muted:active,
.btn-outline-muted.active,
.btn-outline-muted.focus,
.btn-outline-muted:not(:disabled):not(.disabled):active,
.btn-outline-muted:not(:disabled):not(.disabled):active:focus,
.btn-outline-muted .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #a0a9b1;
  box-shadow: 0px 16px 31px -16px #a0a9b1;
  background: #959fa8;
  border-color: #959fa8;
}

.bg-purple {
  background-color: #9261c6 !important;
}

.bg-soft-purple {
  background-color: rgba(146, 97, 198, 0.1) !important;
}

.text-purple {
  color: #9261c6 !important;
}

.icon-dual-purple {
  color: #9261c6;
  fill: rgba(146, 97, 198, 0.2);
}

.btn-purple {
  color: #ffffff;
  background: #9261c6;
  border-color: #9261c6;
  -webkit-box-shadow: 0 8px 14px rgba(146, 97, 198, 0.2);
  box-shadow: 0 8px 14px rgba(146, 97, 198, 0.2);
}

.btn-purple:hover,
.btn-purple:focus,
.btn-purple:active,
.btn-purple.active,
.btn-purple.focus,
.btn-purple:not(:disabled):not(.disabled):active,
.btn-purple:not(:disabled):not(.disabled):active:focus,
.btn-purple .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #9261c6;
  box-shadow: 0px 16px 31px -16px #9261c6;
  background: #8852c1;
  border-color: #8852c1;
}

.btn-outline-purple {
  color: #9261c6;
  border-color: #9261c6;
}

.btn-outline-purple:hover,
.btn-outline-purple:focus,
.btn-outline-purple:active,
.btn-outline-purple.active,
.btn-outline-purple.focus,
.btn-outline-purple:not(:disabled):not(.disabled):active,
.btn-outline-purple:not(:disabled):not(.disabled):active:focus,
.btn-outline-purple .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #9261c6;
  box-shadow: 0px 16px 31px -16px #9261c6;
  background: #8852c1;
  border-color: #8852c1;
}

.bg-pink {
  background-color: #ff7aa3 !important;
}

.bg-soft-pink {
  background-color: rgba(255, 122, 163, 0.1) !important;
}

.text-pink {
  color: #ff7aa3 !important;
}

.icon-dual-pink {
  color: #ff7aa3;
  fill: rgba(255, 122, 163, 0.2);
}

.btn-pink {
  color: #ffffff;
  background: #ff7aa3;
  border-color: #ff7aa3;
  -webkit-box-shadow: 0 8px 14px rgba(255, 122, 163, 0.2);
  box-shadow: 0 8px 14px rgba(255, 122, 163, 0.2);
}

.btn-pink:hover,
.btn-pink:focus,
.btn-pink:active,
.btn-pink.active,
.btn-pink.focus,
.btn-pink:not(:disabled):not(.disabled):active,
.btn-pink:not(:disabled):not(.disabled):active:focus,
.btn-pink .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #ff7aa3;
  box-shadow: 0px 16px 31px -16px #ff7aa3;
  background: #ff6695;
  border-color: #ff6695;
}

.btn-outline-pink {
  color: #ff7aa3;
  border-color: #ff7aa3;
}

.btn-outline-pink:hover,
.btn-outline-pink:focus,
.btn-outline-pink:active,
.btn-outline-pink.active,
.btn-outline-pink.focus,
.btn-outline-pink:not(:disabled):not(.disabled):active,
.btn-outline-pink:not(:disabled):not(.disabled):active:focus,
.btn-outline-pink .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #ff7aa3;
  box-shadow: 0px 16px 31px -16px #ff7aa3;
  background: #ff6695;
  border-color: #ff6695;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-soft-white {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.text-white {
  color: #ffffff !important;
}
.text-white-70 {
  color: rgba(255, 255, 255, 0.7) !important;
}
.text-right{
  text-align: right;
}

.icon-dual-white {
  color: #ffffff;
  fill: rgba(255, 255, 255, 0.2);
}

.btn-white {
  background: #ffffff;
  border-color: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.btn-white.focus,
.btn-white:not(:disabled):not(.disabled):active,
.btn-white:not(:disabled):not(.disabled):active:focus,
.btn-white .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: whitesmoke;
  border-color: whitesmoke;
}

.btn-outline-white {
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:active,
.btn-outline-white.active,
.btn-outline-white.focus,
.btn-outline-white:not(:disabled):not(.disabled):active,
.btn-outline-white:not(:disabled):not(.disabled):active:focus,
.btn-outline-white .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #ffffff;
  box-shadow: 0px 16px 31px -16px #ffffff;
  background: whitesmoke;
  border-color: whitesmoke;
  color: #212529;
}

.bg-light {
  background-color: #f8fafe !important;
}

.bg-soft-light {
  background-color: rgba(248, 250, 254, 0.1) !important;
}

.text-light {
  color: #f8fafe !important;
}

.icon-dual-light {
  color: #f8fafe;
  fill: rgba(248, 250, 254, 0.2);
}

.btn-light {
  color: #ffffff;
  background: #f8fafe;
  border-color: #f8fafe;
  -webkit-box-shadow: 0 8px 14px rgba(248, 250, 254, 0.2);
  box-shadow: 0 8px 14px rgba(248, 250, 254, 0.2);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active,
.btn-light.active,
.btn-light.focus,
.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #f8fafe;
  box-shadow: 0px 16px 31px -16px #f8fafe;
  background: #e6edfb;
  border-color: #e6edfb;
}

.btn-outline-light {
  color: #f8fafe;
  border-color: #f8fafe;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active,
.btn-outline-light.active,
.btn-outline-light.focus,
.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light .open > .dropdown-toggle.btn-primary {
  -webkit-box-shadow: 0px 16px 31px -16px #f8fafe;
  box-shadow: 0px 16px 31px -16px #f8fafe;
  background: #e6edfb;
  border-color: #e6edfb;
}

.font-11 {
  font-size: 11px;
}

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

.font-16 {
  font-size: 16px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

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

.icons-sm {
  height: 16px;
  width: 16px;
}

.icons-md {
  height: 32px;
  width: 32px;
}

.icons-lg {
  height: 40px;
  width: 40px;
}

.box-shadow {
  -webkit-box-shadow: 0px 8px 35px 0px rgba(73, 80, 87, 0.05);
  box-shadow: 0px 8px 35px 0px rgba(73, 80, 87, 0.05);
}

.avatar-md {
  height: 3.5rem;
  width: 3.5rem;
}

.avatar-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #2f55d4;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

/******************
    3.Navbar
*******************/
.navbar-custom {
  padding: 20px 0px;
  width: 100%;
  z-index: 999;
  margin-bottom: 0px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navbar-custom .navbar-nav .nav-item .nav-link {
  line-height: 26px;
  color: white;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: transparent !important;
  padding: 6px 10px;
  margin: 0 2px;
  font-size: 14px;
}
.navbar-custom .navbar-nav .nav-item .nav-link span {
  font-size: 18px;
}

.navbar-custom .navbar-nav .nav-item .nav-link:hover,
.navbar-custom .navbar-nav .nav-item .nav-link:active {
  color: #e7be1b;
}

.navbar-custom .navbar-nav .nav-item.active .nav-link {
  color: #e7be1b;
}

.navbar-custom .navbar-btn {
  margin-left: 10px;
  color: #34d1bf;
  background: rgba(52, 209, 191, 0.2);
  border-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar-custom .navbar-btn:hover {
  color: #ffffff;
  -webkit-box-shadow: 0px 16px 31px -16px #34d1bf;
  box-shadow: 0px 16px 31px -16px #34d1bf;
  background: #2cc4b3;
  border-color: #2cc4b3;
}

.navbar-toggler {
  font-size: 24px;
  margin-top: 5px;
  margin-bottom: 0px;
  color: #ffffff;
}

/*--- navbar Light ---*/
.navbar-light .navbar-nav .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link:active {
  color: #ffffff;
}

.navbar-light .navbar-nav .nav-item.active .nav-link {
  color: #ffffff;
}

.navbar-light .logo .logo-light {
  display: inline-block;
}

.navbar-light .logo .logo-dark {
  display: none;
}

.navbar-light .nav-sticky .logo .logo-dark {
  display: inline-block;
}

.navbar-light .nav-sticky .logo .logo-light {
  display: none;
}

/*--- navbar sticky ---*/
.nav-sticky.navbar-custom {
  margin-top: 0px;
  padding: 10px 0px;
  background-color: var(--background);
  -webkit-box-shadow: 0 10px 33px -14px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 33px -14px rgba(0, 0, 0, 0.1);
}
.navbar-custom .logo-dark {
  display: none;
}

.nav-sticky.navbar-custom .logo-light {
  display: none;
}

.nav-sticky.navbar-custom .logo-dark {
  display: inline-block;
}

.nav-sticky.navbar-custom .navbar-nav .nav-item .nav-link {
  color: var(--text-nav);
}

.nav-sticky.navbar-custom .navbar-nav .nav-item .nav-link:hover,
.nav-sticky.navbar-custom .navbar-nav .nav-item .nav-link:active {
  color: #e7be1b;
}

.nav-sticky.navbar-custom .navbar-nav .nav-item.active .nav-link {
  color: #e7be1b;
}

/******************
    4.Hero section
*******************/
.hero-section {
  padding-top: 9rem;
  height: 100%;
  background: url(../images/hero.svg), var(--banner-bg);
  background-size: cover;
  background-position: center;
}
.hero-wrapper {
  max-width: 480px;
}
.hero-title {
  font-size: 36px;
  position: relative;
  z-index: 1;
}
.index-title:before {
  position: absolute;
  content: "";
  display: block;
  width: 214px;
  height: 14px;
  background: #e7be1b;
  top: 30px;
  left: calc(50% - 107px);
  z-index: -1;
}
.hero-subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
}
.hero-wrapper p {
  font-size: 18px;
  line-height: 27px;
}
.home-img {
  position: relative;
}
.hero-title-bold {
  font-size: 64px;
  line-height: 86px;
}
.hero-announcement {
  max-width: 775px;
  background: var(--bg-lighter);
  margin: 0 auto;
  margin-bottom: 80px;
  border-radius: 50px;
  font-weight: 600;
  padding: 0.5rem 1.5rem !important;
  text-align: center;
}

.cta {
  background: url(../images/hero.svg), var(--banner-bg);
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}
.network-left {
  position: relative;
  width: 50vw;
  padding: 3rem 3rem 3rem 12rem;
}
.network-left:before {
  content: "";
  position: absolute;
  width: 104%;
  height: 380px;
  top: -10%;
  left: -6%;
  z-index: -1;
  background: linear-gradient(16deg, black, transparent),
    url(../images/start-network.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: skew(-8deg);
}
.network-right {
  position: relative;
  width: 50vw;
  padding: 3rem;
}
.network-right:before {
  content: "";
  position: absolute;
  width: 110%;
  height: 380px;
  top: -10%;
  left: 0%;
  z-index: -1;
  background: url(../images/satellite-view.png) 0 0 no-repeat;
  background-size: cover;
  transform: skew(-8deg);
}

.featured-video {
  margin-top: 5px;
  position: relative;
  margin-bottom: 40px;
}
.featured-video:before {
  display: block;
  content: "";
  background: url(../images/dotted-home.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 44%;
  left: -90px;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-section-3 {
  padding: 200px 0px 40px 0px;
  background: url(../images/hero.svg), var(--banner-bg);
  background-position: center;
  background-size: cover;
}

.home-img::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 33%;
  top: 50%;
  height: 66%;
  width: 94%;
  background: radial-gradient(
    circle at 10px 7px,
    var(--dotted) 5px,
    transparent 5px
  );
  background-size: 24px 24px;
  background-position: 100%;
  background-repeat: repeat;
}

.registration-form .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.registration-form .form-control:focus {
  border-color: #2f55d4;
}


/* =========================
Calculate form
============================*/
#roi-calculator.calculator-form .form-control:valid{
color:#cfa809;
}
  
#roi-calculator.calculator-form .form-control:invalid{
color:#a0a9b1;
}

.calculator-form .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  display: inline-block;
  width: auto;
  background: transparent;
  border: 1px solid var(--form-border);
}
.calculator-form .form-control:focus {
  border-color: #2f55d4;
}
.calculator-form label {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}
#roi-calculator .form-control {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--form-border);
  border-radius: 0;
}
#roi-calculator fieldset {
  position: relative;
}
#roi-calculator .desc {
  position: absolute;
  right: 10px;
  top: 8px;
}

.play-icon-circle {
  height: 50px;
  width: 50px;
  background-color: #34d1bf;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.play-iconbar {
  color: #ffffff;
  font-size: 17px;
}

.feature-item {
  text-align: center;
  padding: 30px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-sizing: border-box;
  border-radius: 5px;
  min-height: 256px;
  height: 100%;
}
.feature-item:hover {
  box-shadow: 0px 19px 20px rgba(0, 0, 0, 0.05);
}
.feature-item span {
  margin-bottom: 20px;
  font-size: 40px;
  color: var(--icon-color);
}

.feature-item img {
  margin-bottom: 20px;
  max-height: 40px;
}
.feature-item-use img {
  max-height: 140px;
}
.feature-item-use span {
  font-size: 140px;
  margin-bottom: 20px;
}
.feature-item-use p {
  min-height: 8.5em;
}
.feature-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  margin-top: 24px;
  color: var(--title-2);
}
.feature-item p {
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 24px;
  color: var(--text);
}

.title {
  font-weight: 600;
  position: relative;
  font-size: 26px;
  max-width: 470px;
  margin: 0 auto;
  color: var(--title);
}
.title:before {
  position: absolute;
  content: "";
  display: block;
  width: 110px;
  height: 14px;
  background: #e7be1b;
  bottom: 2px;
  left: calc(50% - 55px);
  z-index: -1;
}

.sub-title {
  max-width: 490px;
  margin: 0 auto;
}

.collapse-item {
  margin-bottom: 15px;
}
.collapse-header {
  background: var(--bg-1);
  border-radius: 3px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
}
.collapse-header h4 {
  margin-bottom: 0px;
  font-size: 18px;
}
.collapse-header i {
  color: #e7be1b;
  font-weight: bold;
  height: 24px;
  width: 24px;
  border: 1px solid #e7be1b;
  text-align: center;
  border-radius: 50%;
  margin-left: 15px;
  display: inline-table;
}
.collapse {
  padding: 10px 20px;
}
.collapse li {
  line-height: 24px;
  /* margin-bottom: 10px; */
}

.dotted-bg,
.dotted-bg-2 {
  position: relative;
}

.dotted-bg:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 22%;
  top: 58%;
  height: 72%;
  width: 108%;
  background: radial-gradient(
    circle at 10px 7px,
    var(--dotted) 5px,
    transparent 5px
  );
  background-size: 24px 24px;
  background-position: 100%;
  background-repeat: repeat;
}
.dotted-bg-2:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 6%;
  top: 120%;
  height: 180%;
  width: 125%;
  background: radial-gradient(
    circle at 10px 7px,
    var(--dotted) 5px,
    transparent 5px
  );
  background-size: 24px 24px;
  background-position: 100%;
  background-repeat: repeat;
}

/******************
    5.Testimonial
*******************/
.testi-carousel .owl-nav {
  position: absolute;
  top: -67px;
  right: 0;
  margin-top: 0px;
}

.testi-carousel .owl-nav button {
  outline: 0;
  border-radius: 50% !important;
}

.testi-carousel .owl-nav button span {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 32px;
  background: transparent;
  color: #e7be1b;
  border: 1px solid #e7be1b;
  border-radius: 50%;
  font-size: 26px;
}

.testi-carousel .owl-nav button:hover span {
  background: #e7be1b;
  color: #ffffff;
}

.testi-carousel .owl-item {
  padding: 0px 10px;
}

.testi-carousel .owl-dots .owl-dot:focus {
  outline: 0;
}

.testi-carousel .owl-dots .owl-dot span {
  background: #c4c4c4;
  border: 2px solid #c4c4c4;
}

.testi-carousel .owl-dots .owl-dot.active span,
.testi-carousel .owl-dots .owl-dot:hover span {
  background: var(--text-primary);
  border: 2px solid var(--text-primary);
}
.testi-carousel .item .card {
  height:250px;
  /* border:1px solid red; */
}

/********** Clients ***********/
.client-images {
  border: 1px solid rgba(196, 196, 196, 0.5);
  border-radius: 4px;
  height: 100px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}
.client-images img {
  max-width: 136px;
  margin: 0 auto;
  text-align: center;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.85;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.client-images img:hover {
  filter: none;
  opacity: 0.95;
}

/******************
    6.Pricing
*******************/
.pricing-nav-tabs {
  display: inline-block;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 8px 35px 0px rgba(73, 80, 87, 0.05);
  box-shadow: 0px 8px 35px 0px rgba(73, 80, 87, 0.05);
  padding: 5px;
  border-radius: 7px;
}

.pricing-nav-tabs li {
  display: inline-block;
}

.pricing-nav-tabs li .nav-link {
  border-radius: 7px;
  color: #a0a9b1;
  padding: 0.6rem 1.4rem;
}

.pricing-nav-tabs li .nav-link.active {
  background-color: #2f55d4;
}

.pricing-plan {
  max-width: 415px;
  margin: 0px auto;
  margin-top: 30px;
}

/******************
    7.Subscribe
*******************/
.subscribe .form-control {
  height: 46px;
  border-radius: 7px;
  font-size: 15px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.subscribe .form-control:focus {
  border-color: #2f55d4;
}

/******************
    8.Footer
*******************/
.footer {
  padding-top: 55px;
  padding-bottom: 40px;
  background: var(--footer-bg);
}

.footer-list-title {
  font-size: 1.2rem;
}

.footer-list-menu li a {
  display: inline-block;
  font-size: 15px;

  margin-bottom: 14px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.footer-list-menu li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-icons {
  list-style: none;
  padding: 0;
  margin-bottom: 70px;
  padding-top: 12px;
}

.footer-icons li {
  float: left;
  margin: 0 6px 15px 0px;
}

.footer-icons li a {
  font-size: 26px;
  padding: 7px 20px;
  color: var(--text-primary);
  padding-left: 0;
}
.footer-icons li a:hover {
  color: var(--text-primary) !important;
}
.download-btn {
  max-width: 120px;
}
.image-mobile {
  transform: rotate(-6deg);
  max-height: 650px;
  box-shadow: -1px 7px 51px 0px rgba(75, 81, 91, 0.18);
}

.h-underline:hover {
  text-decoration: underline !important;
}
.home-float {
  position: absolute;
  z-index: 10;
  /* top: 115px; */
  top: 7.5rem;
}

.image-section1 {
  height: 100%;
  background: url(../images/features/img-1.png);
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  border: 1px solid #5152bf1c;
}

.image-section2 {
  height: 100%;
  background: url(../images/features/business.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  border: 1px solid #5152bf1c;
}

.footer-item h6 {
  color: var(--text-primary);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.footer-item p {
  line-height: 1.8;
  font-size: 14px;
}
.footer-item p span {
  color: var(--text-3);
  font-weight: 500;
  display: block;
}
.toggle-title {
  display: flex;
  justify-content: space-between;
}
.footnotes {
  color: var(--text-4);
}

/******************
    9.Responsive
*******************/
@media screen and (min-width: 1040px) and (max-width: 1298px) {
  .network-left {
    padding: 3rem 3rem 3rem 6rem;
  }
}
@media screen and (min-width: 991px) and (max-width: 1040px) {
  .network-left:before {
    width: 120%;
  }
  .network-left {
    position: relative;
    width: 50vw;
    padding: 3rem 3rem 3rem 6rem;
  }
}
@media (max-width: 991px) {
  .navbar-custom {
    margin-top: 0px;
    padding: 10px 0px !important;
    background: var(--bg-primary);
    -webkit-box-shadow: 0 10px 33px -14px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 33px -14px rgba(0, 0, 0, 0.1);
  }
  .navbar-custom.navbar-expand-lg > .container {
    width: 90%;
  }
  .navbar-custom .logo img {
    height: 32px;
  }
  .navbar-custom .navbar-nav .nav-item .nav-link {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    margin: 0px;
    padding: 14px 0px;
    color: #ffffff;
  }
  .navbar-custom .navbar-nav .nav-item.active .nav-link {
    color: #e7be1b;
  }
  .navbar-custom .navbar-btn {
    margin-left: 0px;
  }
  .navbar-toggler {
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: white;
  }
  .nav-sticky button.navbar-toggler {
    color: var(--toggle-menu);
  }
  .hero-section {
    padding-top: 90px;
    height: 100%;
  }
  .nav-sticky.navbar-custom button.nav-item.btn.btn-secondary.btn-rounded {
    margin: 14px 0;
  }
  .image-section1,
  .image-section2 {
    height: 250px;
  }
  .home-float {
    position: relative;
  }
  .home-float img {
    max-height: 420px;
  }
  .network-left {
    padding: 3rem 3rem 3rem 5rem;
  }
}

@media (max-width: 767.98px) {
  .more-stats{
    margin-top: 120px;
  }
  .hero-title {
    font-size: 32px;
  }
  .toggle-title {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .network-left {
    position: relative;
    width: 100%;
  }
  .network-left:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -10%;
    left: 0%;
    z-index: -1;
    background: linear-gradient(16deg, black, transparent),
      url(../images/start-network.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: skew(0deg);
  }
  .network-right {
    position: relative;
    width: 100%;
  }
  .network-right:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 120%;
    top: -10%;
    left: 0%;
    z-index: -1;
    background: url(../images/satellite-view.png) 0 0 no-repeat;
    transform: skew(0deg);
  }
}

@media (max-width: 575.98px) {
  .testi-carousel .owl-nav {
    display: none;
  }
  .download-btn {
    max-width: 95px;
  }
  .image-mobile {
    transform: rotate(0deg);
    max-height: 500px;
  }
  .list__item {
    padding-left: 30px !important;
  }
  .list__item:before {
    width: 18px !important;
    height: 18px !important;
    left: 1% !important;
    top: 14% !important;
  }
  .hero-section {
    height: 100%;
  }
  .hero-section-3 {
    padding: 90px 0px 70px 0px;
    overflow: hidden;
  }
  .hero-announcement {
    margin-bottom: 50px;
  }
  .hero-title-bold {
    font-size: 40px;
    line-height: 58px;
    margin-bottom: 0;
  }
  .business-features {
    padding: 0px !important;
  }
  .home-float {
    position: relative;
    top: 28px;
  }
  .network-left {
    position: relative;
    width: 100%;
  }
  .network-left:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 120%;
    top: -10%;
    left: 0%;
    z-index: -1;
    background: linear-gradient(16deg, black, transparent),
      url(../images/start-network.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: skew(0deg);
  }
  .network-right {
    position: relative;
    width: 100%;
  }
  .network-right:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 120%;
    top: -10%;
    left: 0%;
    z-index: -1;
    background: url(../images/satellite-view.png) 0 0 no-repeat;
    transform: skew(0deg);
  }
  .featured-video:before {
    display: block;
    content: "";
    height: 70%;
  }
  .home-float img {
    width: 100%;
  }
  .network-left {
    padding: 3rem 3rem 3rem 3rem;
  }
}

.list__item {
  margin-bottom: 45px;
  padding-left: 16px;
  position: relative;
}
.list__item:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  background-size: cover;
  background-position: center;
  left: -5%;
  top: 17%;
  transform: translateY(-50%);
}
.list__item.item1:before {
  background-image: url(../images/icons/security.png);
}
.list__item.item2:before {
  background-image: url(../images/icons/billing.png);
}
.list__item.item3:before {
  background-image: url(../images/icons/wi-wallet.png);
}
.list__item.item4:before {
  background-image: url(../images/icons/router.png);
}
.list--check {
  max-width: 580px;
  list-style: none;
  padding: 0;
}

.video-popup-icon {
  background: rgba(183, 184, 252, 0.62);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 30px;
  text-align: center;
  border: 5px solid;
  border-color: rgba(183, 184, 252, 0.48);
}
.video-box .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.play-btn {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #25346a;
  color: #ffffff;
  line-height: 100px;
  font-size: 50px;
  -webkit-box-shadow: 0 0 0 0 #25346a;
  box-shadow: 0 0 0 0 #25346a;
  padding-left: 6px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.play-btn:hover {
  background-color: #ffffff;
  color: #25346a;
  line-height: 100px;
  -webkit-box-shadow: 0px 2px 20px 0px #25346a;
  box-shadow: 0px 2px 20px 0px #25346a;
}
h3.form-title {
  font-size: 22px;
}
h3.form-title:before {
  content: "";
  height: 10px;
  display: block;
  background: #e7be1b;
  position: absolute;
  bottom: 3px;
  /* width: calc(100% - 55px); */
  width: 60%;
  z-index: -1;
}
.business-feature {
  position: relative;
}
.business-feature p {
  margin-bottom: 2rem;
}
.business-feature::before {
  display: inline-block;
  margin-left: -1em;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  background-size: cover;
  left: -4%;
  top: 6px;
  background-color: #e7be1b;
  border-radius: 50%;
}
.modal-content {
  background-color: transparent;
  border: none;
  outline: 0;
}
button.close {
  color: #fff;
  border: none;
}
button.close:hover {
  color: #e7be1b;
  border: none;
}

.timer {
  display: flex;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  margin-top: 20px;
  color: #343a40;
  justify-content: center;
}
.timer-day {
  font-size: 13px;
  display: block;
}
.timer-box {
  border: 1px solid #000;
  padding: 6px;
  margin-right: 12px;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #cfa809;
  text-decoration: none;
  background-color: rgba(207, 168, 9, 0.08);
}

.dropbtn {
  background-color: #4caf50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover,
.dropbtn:focus {
  background-color: #3e8e41;
}

#myInput {
  box-sizing: border-box;
  background-image: url("searchicon.png");
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
}

#myInput:focus {
  outline: 3px solid #ddd;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f6f6f6;
  min-width: 230px;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

.navbar-nav .dropdown-menu {
  margin-bottom: 15px;
  font-size: 14px;
}
.dropdown-item {
  padding: 0.5rem 1.5rem;
  color: var(--title);
}
.dropdown-menu .dropdown-item:hover {
  background: rgb(231 190 27 / 21%);
  color: var(--title);
}

.dropdown-menu {
  display: none;
  float: left;
  min-width: 10rem;
  font-size: 1rem;
  background-color: var(--background);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/* toggle currency switch */

.switch-button {
  background: #eeeeee;
  border-radius: 30px;
  overflow: hidden;
  width: 120px;
  text-align: center;
  font-size: 18px;
  color: #515151;
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
  position: relative;
  padding-right: 60px;
  position: relative;
}
.switch-button:before {
  content: "USD";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}
.switch-button-checkbox {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
}
.switch-button-checkbox:checked + .switch-button-label {
  color: #515151;
}
.switch-button-checkbox:checked + .switch-button-label:before {
  transform: translateX(60px);
  transition: transform 300ms linear;
}
.switch-button-checkbox + .switch-button-label {
  position: relative;
  padding: 10px 0;
  display: block;
  user-select: none;
  pointer-events: none;
  margin: 0;
  width: 60px;
  color: #fff;
}
/* .switch-button-checkbox + .switch-button:before{
  color: #fff;
} */
.switch-button-checkbox + .switch-button-label:before {
  content: "";
  background: #cfa809;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 30px;
  transform: translateX(0);
  transition: transform 300ms;
}
.switch-button-checkbox + .switch-button-label .switch-button-label-span {
  position: relative;
}

.product-description h2 {
  font-weight: 600;
  font-size: 48px;
}
.product-description ul li {
  line-height: 22px;
  margin-bottom: 6px;
}

.product-description ul li li {
  padding-left: 10px;
}

.routers-section {
  background: var(--banner-bg);
}

.pos-rel {
  position: relative !important;
}
.roadmap-card {
  padding: 30px 24px;
  padding-left: 30px;
  background: var(--card-color);
  border: 1px solid var(--card-border);
  color: #fff;
  box-sizing: border-box;
  border-radius: 5px;
  height: 100%;
  font-size: 16px;
  line-height: 24px;
}
.roadmap-card li {
  margin-bottom: 15px;
  margin-left: 20px;
}
.roadmap-icon {
  font-size: 45px;
}
.border-top {
  border-top: 1px solid;
}
.roadmap-nav-1 {
  font-weight: 600;
  font-size: 22px;
  line-height: 36px;
  text-decoration: none;
  list-style: none;
  padding: 0;
}
.roadmap-nav-1 a {
  color: var(--text-2);
}
.roadmap-nav-2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 54px;
  text-decoration: none;
  list-style: none;
  padding: 0;
}
.roadmap-nav-2 li a {
  margin-bottom: 2px;
  color: var(--text-2);
}
.roadmap-right .nav-pills {
  flex-direction: row-reverse;
}
.roadmap-right .nav-pills li a {
  font-size: 1.25rem;
  color: var(--text-2);
}
.roadmap-right .nav-pills li.active a,
.roadmap-right h5 {
  color: var(--yellow-white);
}

#roadmapCarousel .owl-item a,
#roadmapCarousel .owl-item.active a {
  color: var(--text-light);
}
#roadmapCarousel .owl-item {
  font-size: 32px;
}
#roadmapCarousel .owl-item .active-page {
  font-size: 56px;
  font-weight: bold;
  line-height: 56px;
}
#roadmapCarousel .owl-item .active-page a {
  color: #fff;
}
.owl-carousel .owl-nav [class*="owl-"] {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.owl-carousel .owl-nav [class*="owl-"].disabled:hover {
  background-color: #d6d6d6;
}
.owl-carousel {
  position: relative;
}
#roadmapCarousel .owl-next,
#roadmapCarousel .owl-prev {
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50% !important;
  position: absolute;
  top: 5%;
  font-size: 20px;
  color: #e7be1b;
  border: 1px solid #e7be1b !important;
  text-align: center;
  z-index: 1;
}
#roadmapCarousel .owl-prev,
#adsCarousel .owl-prev {
  left: -70px;
}
#roadmapCarousel .owl-next,
#adsCarousel .owl-next {
  right: -70px;
}
#roadmapCarousel .owl-next:hover,
#adsCarousel .owl-next:hover,
#roadmapCarousel .owl-next:focus,
#adsCarousel .owl-next:focus,
#roadmapCarousel .owl-prev:focus,
#adsCarousel .owl-prev:focus {
  border: none;
  background: transparent;
}

/* ============================
Modified Section
===============================*/
#adsCarousel .carousel-box .carousel-card{
  padding:0.8rem;

}
#adsCarousel .carousel-box .carousel-top,
#adsCarousel .carousel-box .carousel-bottom{
display:flex;
flex-flow:row wrap;
gap:4%;
/* justify-content:center; */
}
#adsCarousel .carousel-box .carousel-bottom{
justify-content:center;
align-items:center;
gap:8%;
}
#adsCarousel .carousel-box .carousel-bottom>*:first-child{
margin:auto;
}
#adsCarousel .carousel-box .carousel-top>*:first-child{
flex-basis:100%;
}
/* #adsCarousel .box .card .top>*:last-child{
height:100px;
} */
/* #adsCarousel .box .card .top .text-content{
flex-basis:100%;
} */

#adsCarousel .carousel-box .img-container{
/* height:80px; */
}

#adsCarousel .carousel-box .carousel-top img{
width:100%;
}

#adsCarousel h4 {
  /* min-height: 64px;*/
  min-height:0px;
  font-weight:700;
  color:red;

}
#adsCarousel p{
font-size:0.87rem;
font-weight:600;
}

#adsCarousel .device-information small{
font-weight:600;
font-size:0.895rem;
color:#000000;
}
#adsCarousel .device-information p{
font-weight:600;
font-size:0.956rem;
color:#000000;
}
#adsCarousel .device-information span{
text-decoration:line-through;
font-size:0.72rem;
color: #6B6B6B;
margin-right:0.4rem;
}

/*================= for the boxes with no image================== */
.carousel-box.no-banner .one,
.carousel-box.no-banner .two
{
position: relative;
}
.carousel-box.no-banner .one .btn-rounded,
.carousel-box.no-banner .two .btn-rounded
{
/* position: absolute;
bottom:0px;
right:20px; */
}


/* ===============Product Page added Styles================= */
.left-lynx-image,
.right-spider-image{
background: rgba(37, 52, 106, 0.05);
border-radius:14px !important;
}
.device-carousel .box-container{
cursor: pointer;
}
.device-carousel .box-container .card{
height:100% !important;
background-color:transparent;
margin:0;
}
#device-carousel .owl-next,
#device-carousel .owl-prev{
width:30px;
height:30px;
position:absolute;
color:#E7BE1B;
z-index:1;
font-size:1.4rem;
font-weight:400;
line-height:0.6;
top:40%;
border-radius:50% !important;
border:2px solid #E7BE1B !important;
text-align:center;
transform:translateY(-50%);
}
#device-carousel .owl-prev{
left:-15px;
}
#device-carousel .owl-next{
right:-15px;
}





@media(min-width:450px){
#adsCarousel .carousel-box .carousel-top>*:first-child{
flex-basis:auto;
order:2;
}
#adsCarousel .carousel-box .carousel-top>*{
flex-basis:48%;
}
/* #adsCarousel .one,
#adsCarousel .two,
#adsCarousel .three{
height:250px;
} */
}



/* ===========================
Modified code End
=============================*/



#adsCarousel .one {
background:url(../images/features/nft-bg.png);
background-size: cover;
background-repeat: no-repeat;
/* height:350px; */
}

#adsCarousel .two {
  background: url(../images/features/ido-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  /* height:240px; */
}
#adsCarousel .two{
/* height:100%; */
}
#adsCarousel .three {
  background: url(../images/features/testnet.png);
  background-size: cover;
  background-repeat: no-repeat;
  /* min-height:240px; */
}
#adsCarousel .owl-next,
#adsCarousel .owl-prev {
  width:40px;
  height:40px;
  line-height:20px;
  border-radius:50% !important;
  position: absolute;
  top:40%;
  font-size:28px;
  vertical-align:middle !important;
  color: #e7be1b;
  border: 2px solid #e7be1b !important;
  text-align:center;
  z-index: 1;
}
#adsCarousel .owl-next:hover,
#adsCarousel .owl-prev:hover{
border:2px solid #fff !important;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: var(--icon-color);
  fill: var(--icon-color);
}
.svg-icon {
  stroke: var(--icon-color);
}
.svg-icon.path path {
  fill: var(--icon-color);
}

.wicrypt-token-bg {
  height: 248px;
  width: 248px;
  border-radius: 50%;
  background-color: var(--blue-white);
  margin: 0 auto;
}
.wicrypt-token-bg img {
  max-height: 110px;
  width: auto;
}


.goog-te-combo {
  border: 1px solid rgb(161, 150, 150) !important;
  padding: 10px !important;
}

.how-it-works-icon {
  width: 90px;
  height: 90px;
  /* background-color: var(--card-border); */
  border-radius: 50%;
  border: 7px solid var(--bg-1);
  text-align: center;
  margin-bottom: 4px;
  line-height: 68px;
}

.how-it-works-icon svg {
  stroke: var(--icon-color);
}

.how-it-works-indicator {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.how-it-works-indicator .circle {
  height: 24px;
  width: 24px;
  background-color: var(--bg-primary);
  border-radius: 50%;
}
.how-it-works-indicator .dotted-line {
  border: none;
  border-top: 2px dotted var(--bg-lighter);
  color: #fff;
  background-color: #fff;
  height: 2px;
  width: 90%;
  margin-left: 8px;
}

.webinar-topic-list {
  list-style: none;
  padding: 0;
}
.webinar-topic-list li {
  padding: 6px 16px;
  border: 2px solid var(--text-primary);
  border-radius: 32px;
  display: table;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.speakers-item {
  padding: 24px;
  background: var(--bg-primary);
  background-size: cover;
  background-position: center;
  max-height: 560px;
  height: 560px;
  border-radius: 20px;
  position: relative;
  margin-bottom: 20px;
  background-repeat: no-repeat;
}
.speakers-item.a {
  background-image: url(../images/features/ugochukwu.png);
}
.speakers-item.b {
  background-image: url(../images/features/oluwaseun.png);
}
.speakers-item .desc {
  background-color: #fff;
  padding: 12px 16px;
  border-radius: 20px;
  position: relative;
  top: 65%;
  left: 0%;
  right: 14%;
}
.speakers-item .desc h5 {
  color: #343a40;
}
.speakers-item .desc h5 span {
  color: #e5b910;
  font-size: 14px;
}
.speakers-item .desc p {
  font-size: 14px;
  color: #6f6f6f;
}

.tooltip {
  position: relative;
  display: inline-block;
  opacity: 1;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.contract-btn {
  padding: 8px;
  border: 1px solid #e5b910;
  border-radius: 8px;
  font-size: 14px;
  margin-left: 8px;
  background: transparent;
  color: var(--text);
}

#inputAddress {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #c4c4c4;
  font-size: 14px;
  background: transparent;
  color: var(--text);
}

#arbitrumAddress {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #c4c4c4;
  font-size: 14px;
  background: transparent;
  color: var(--text);
}

.manual-img {
  height: 120px;
}

#get-started-carousel .owl-dots {
  text-align: center;
}

#get-started-carousel .owl-dots .owl-dot span {
  background: #c4c4c4;
  border: 2px solid #c4c4c4;
}

#get-started-carousel .owl-dots .owl-dot.active span,
#get-started-carousel .owl-dots .owl-dot:hover span {
  background: #e7be1b;
  border: 2px solid #e7be1b;
}
.item-step {
  background: var(--blue-white);
  border-radius: 0px 12px 12px 0px;
  display: inline-block;
  padding: 6px 20px;
  color: var(--background);
  font-style: italic;
  font-weight: 700;
}
.calc_result {
  background: var(--bg-2);
}
.carousel-container-flex{
  width: 100%;
  display: flex;
  gap: 10px;
}
.carousel-image-container{
  width: 40%;
  
}
.carousel-content-container{
  width: 60%;
}

.announcementTitle{
  font-weight: 700;
  font-size: 21.1702px;
  line-height: 32px;
}

.yellow-announcement-subtitle{
  font-weight: 600;
  font-size: 10.5851px;
  line-height: 16px;
  color: #fefefe;
}
.blue-announcement-subtitle{
  font-weight: 600;
  font-size: 10.5851px;
  line-height: 16px;
  color: var(--text-grey);
}
.no-banner-title{
  font-weight: 500 !important;
  font-size: 24px;
}

.carousel-card{
  min-height: 229px;
}
.adsCarousel-cta-btn{
  position: absolute;
  bottom: 10%;
  right: 5%;
}



/*************************
  index2  Custom Styles
**************************/


/*==============Custom Default Styles===========*/
.capitalize{
text-transform:capitalize;
}
.capitalize.h1{
font-weight:700;
font-size:2rem;
}
.sm-font{
font-size:1.2rem;
font-weight:500;
}
.md-font{
font-size: 18px;
font-weight:500;
}
.container-fluid.newindex-container{
  padding-left:4rem;
  margin-bottom:6rem;
  
}
.container-fluid.nav-wrapper{
margin-bottom:0rem;
}
.bg-soft-primary .calculator-card{
border:1px solid red;
/* position:absolute; */
}




/* =====================Main section styles================ */
#newindex-main-section{
border:0px solid red;
}
#newindex-main-section img{
/* border:1px solid yellow */
/* width:100%; */
}
#newindex-main-section .newindex-hero-section{
padding-top: 9rem;
height: 100%;
background:var(--newbanner-bg);
background-size: cover;
background-position: center;
}
.newindex-hero-section .container-fluid{
}
.newindex-hero-section .flex-wrapper>*{
margin-top:2rem;
position: relative;
}
.newindex-hero-section .right{
padding-top:10rem;
/* padding-top:5rem; */
padding-left:2rem;
}
.newindex-hero-section .right .coin-badge-container{
position:absolute;
top:0px;
left:0px;
width:100%;
}
.newindex-hero-section .right .coin-badge{
border:2px solid #E5B910;
height:140px;
width:140px;
border-radius:50%;
}
.newindex-hero-section .right .coin-badge img{
height:100%;
object-fit:cover;
border-radius:inherit;
}
.newindex-hero-section .right{
display:flex;
flex-direction:column;
justify-content:flex-end;
align-items:flex-start;
}
.newindex-hero-section .right .coin-circle{
height:25px;
width:25px;
border:2px solid #E5B910;
border-radius:50%;
position:relative;
/* top:-25px; */
left:50px;
margin-top:1rem;
}
.newindex-hero-section .right .coin-circle.circle-2{
left:70px;
height:15px;
width:15px;
border:3px solid #E5B910;
}

#newindex-main-section .newsletter-section{
  font-weight:600;
}

#newindex-main-section .newsletter-section h2,
#newindex-main-section .hotspot-hub .left h2
{
  color: var(--blue-white);
font-size:2.4rem;
text-align: center;
}
#newindex-main-section .newsletter-section p,
#newindex-main-section .hotspot-hub .left p
{
font-size:1.4rem;
}
#newindex-main-section .newsletter-section a,
#newindex-main-section .hotspot-hub .left a
{
font-size:1.1rem;
}

#newindex-main-section .hotspot-hub .flex-wrapper>*{
position: relative;
}
#newindex-main-section .hotspot-hub .flex-wrapper .right{
border:0px solid brown;
/* display:flex; */
}
#newindex-main-section .hotspot-hub .flex-wrapper .inner-flex-wrapper{
display:flex;
position:relative;
align-items:center;
}
#newindex-main-section .hotspot-hub .flex-wrapper .inner-flex-wrapper>*{
background: #F4F2EA;
border:1px solid rgba(196, 196, 196, 0.4);
/* padding:1rem; */
padding:2rem;
border-radius: 31.5484px;

}
#newindex-main-section .hotspot-hub .flex-wrapper .inner-flex-wrapper>*:first-child{
margin:auto;
}

#newindex-main-section .comment-section .carousel-container{
  background:var(--testimonial-card);
  padding:2rem;
  box-shadow: 0px 5px 21px rgba(29, 29, 29, 0.07);
  border-radius: 14px;
  margin-bottom:1rem;
}
#newindex-main-section .comment-section .carousel-container>*{
  /* height:100%; */
}
#newindex-main-section .comment-section .carousel-container .img-container{
  height:100px;
  width:100px;
  border-radius:50%;
  margin-bottom:1rem;
}
#newindex-main-section .comment-section .carousel-container .img-container img{
border-radius:inherit;
}

#newindex-main-section #comment-carousel .owl-dots {
text-align: center;
}

#newindex-main-section #comment-carousel .owl-dots .owl-dot span {
  background: #c4c4c4;
  border:2px solid #c4c4c4;
}

#newindex-main-section #comment-carousel .owl-dots .owl-dot.active span,
#newindex-main-section #comment-carousel .owl-dots .owl-dot:hover span {
  background: #e7be1b;
  border: 2px solid #e7be1b;
}


#newindex-main-section .about-wicrypt-section .flex-wrapper>*:first-child{
  background:url("../images/features/dotted-bg-img.svg") no-repeat left bottom/cover;
  position: relative;
  padding:0rem 0rem 2rem 4rem;
}

#newindex-main-section .about-wicrypt-section .flex-wrapper>*:first-child .video-iframe{
  border-radius:25px;
  /* width: 567px;
  height: 307px; */
}

#newindex-main-section .about-wicrypt-container{
  padding:0rem 1rem;
}

#newindex-main-section .about-wicrypt-section .flex-wrapper{
  margin-bottom:6rem;
}

.section .right-border{
  border-right:1px solid #c4c4c4;
}
.section.calculate-wnt-reward{
position: relative;
}
.section.calculate-wnt-reward .soft-background{
height:340px;
position:absolute;
transform:translate(-50%,-50%);
top:45%;
left:50%;
width:100%;
}





/* =========================
Custom Media Queries
============================*/
/*==============================
 Tablet Device
===============================*/
@media(min-width:380px){
.newindex-hero-section .right{
align-items:initial;
}
.newindex-hero-section .right .coin-circle{
left:100px;
}
.newindex-hero-section .right .coin-circle.circle-2{
left:150px;
}

#newindex-main-section .hotspot-hub .flex-wrapper .inner-flex-wrapper>*:last-child{
flex-basis:125px;
position:absolute;
left:215px;
bottom:-60px;
}

}


/*============================
 Large Desktop Device
=============================*/
@media(min-width:650px){
  #newindex-main-section .hotspot-hub .left h2 {
    text-align: left;
  }
}







/*============================
 Large Desktop Device
=============================*/
@media(min-width:980px){
.newindex-hero-section .flex-wrapper{
display:flex;
flex-flow:row wrap;
justify-content:space-between;
align-items:flex-end;
gap:4%;
align-items:flex-start;
}  
.newindex-hero-section .flex-wrapper>*{
flex-basis:48%;
}
.newindex-hero-section .flex-wrapper>*:last-child{
/* flex-basis:32%; */
/* height:240px; */
}

#newindex-main-section .hotspot-hub .flex-wrapper{
  display:flex;
  flex-flow:row wrap;
  justify-content:space-between;
  align-items:flex-start;
}
#newindex-main-section .hotspot-hub .flex-wrapper .inner-flex-wrapper>*:last-child{
left:180px;
}
#newindex-main-section .hotspot-hub .flex-wrapper .strong-text{
font-weight:700;
color:#E5B910;
}
#newindex-main-section .hotspot-hub .flex-wrapper>*{
flex-basis:48%;
}
#newindex-main-section .comment-section .carousel-container{
height:450px;
}
#newindex-main-section .about-wicrypt-section .flex-wrapper{
  display:flex;
  /* flex-flow:row wrap; */
  gap:8%;
  align-items:flex-start;
  /* justify-content:center; */
} 
/* #newindex-main-section .about-wicrypt-section .container{
margin:0;
} */
#newindex-main-section .about-wicrypt-section .flex-wrapper>*{
flex-basis:35%;
}
#newindex-main-section .about-wicrypt-section .flex-wrapper>*:first-child{
/* flex-basis:60%; */
}

}

.t-36{
  font-size: 36px;
}


.ad-section{
  padding-top: 5rem;
  height: 100%;
}

.ad-float{
  position: absolute;
  z-index: 10;
  right: -26%;
  bottom: 0;
}

.shadow{
  width: 352px;
  height: 352px;
  background: var(--bg-shadow);
  border-radius: 100%;
  bottom: 0;
  z-index: 1;
  position: absolute;
  right: -15%;
}

.round-1{
  width: 29px;
  height: 29px;
  border: 2px solid #E5B910;
  transform: rotate(-11.91deg);
  border-radius: 100%;
  position: absolute;
  right: -35%;
  top: 66%;
}

.round-2{
  width: 19px;
  height: 19px;
  border: 2px solid #E5B910;
  transform: rotate(-11.91deg);
  border-radius: 100%;
  position: absolute;
  right: -64%;
  top: 87%;

}

.the-dream{
  position: absolute;
  right: 90%;
  top: -22%;
}

.letter-box{
  display: none;
  
}

.d-hide-block{
  display: none;
}

@media only screen and (min-width: 600px) {
  .d-hide-block{
    display: block;
  }
  .letter-box{
    display: block;
    position: absolute;
    right: -11.5%;
    
  }
  #newindex-main-section .about-wicrypt-section .flex-wrapper>*:first-child .video-iframe{
    border-radius:25px;
    width: 567px;
    height: 307px;
  }
  .ad-section{
    padding-top: 13rem;
    
  }
}

.body-section > p{
  line-height: 21px;
  font-size: 14px;
}

.username{
  margin-bottom: 5px;
}

.all-hubs{
  position: relative;
}
.hub-container{
  background: #F4F2EA;
  border: 1.2134px solid #C4C4C4;
  border-radius: 31.5484px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
 
}

.hub-2{
  top: 150px;
  right: -181px;
}
.hub-details{
  text-align: left;
}
.hub-details > p{
  margin-bottom: 0px;
}
.hub-name{
  font-weight: 700;
  font-size: 31.2342px;
  line-height: 47px;
  color: var(--text-primary);
}
.newprice{
  color: #e7be1b;
  font-weight: 700;
  font-size: 20.5266px;
  line-height: 46px;
}
.old-price{
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #C4C4C4;
}
.hotspot-hub{
  background-color: var(--hubsection);
  min-height: 700px;
  padding: 20px;

}

@media only screen and (min-width: 600px) {

  .hotspot-hub{
    
    height: 596px;
  
  }

  .hub-container{
    background: #F4F2EA;
    border: 1.2134px solid #C4C4C4;
    border-radius: 31.5484px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    position: absolute;
    width: 326.4px;
    height: 326.4px;
  }
}

.shopify-btn{
  background: #25346a;
  border-color: #25346a;
}